1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296
|
#define _GNU_SOURCE
#include <stdarg.h>
#include <stdio.h>
void
ulp_warn(const char *format, ...)
{
va_list args;
va_start(args, format);
vprintf(format, args);
va_end(args);
}
void
ulp_debug(const char *format, ...)
{
va_list args;
va_start(args, format);
vprintf(format, args);
va_end(args);
}
void
msgq_push(const char *format, ...)
{
va_list arglist;
va_start(arglist, format);
vprintf(format, arglist);
va_end(arglist);
}
/* Disable the poisoning in error.h. */
#define DISABLE_ERR_POISON
/* Disable some functions from libpulp side. */
#define DISABLE_INSNQ_FUNCS_FOR_TESTING
#include "../lib/error.c"
#include "../lib/insn_queue.c"
#include "../tools/insn_queue.c"
#include "../common/insn_queue.c"
#include "../tools/ptrace.c"
/* Set a two-way communcation channel between child and parent. */
static int fd[2][2];
static int is_child = false;
/* Send message. */
static void
send(char c)
{
int r;
if (is_child) {
r = write(fd[0][1], &c, 1);
}
else {
r = write(fd[1][1], &c, 1);
}
assert(r == 1);
}
/* Wait for message. */
static void
wait_for(char x)
{
int r;
char c;
do {
if (is_child) {
r = read(fd[1][0], &c, 1);
}
else {
r = read(fd[0][0], &c, 1);
}
}
while (c != x);
assert(r == 1);
}
/* Test1: Fill the queue with print messages. All messages should be inserted
successfully. */
static void
test1_parent(int child_pid)
{
printf("Test 1 start\n");
wait_for('a');
int stdout_copy = dup(1);
close(1);
if (insnq_interpret_from_process_(child_pid,
(Elf64_Addr)&__ulp_insn_queue)) {
abort();
}
fflush(stdout);
dup2(stdout_copy, 1);
send('b');
}
static void
test1_child(void)
{
int n = INSN_BUFFER_MAX / 8;
const char *string = "abc";
for (int i = 0; i < n; i++) {
insnq_insert_print(string);
}
send('a');
wait_for('b');
}
/* Test2: Check if the queue correctly fails if it detects that the client is
outdated. */
static void
test2_parent(int child_pid)
{
printf("Test 2 start\n");
wait_for('c');
if (insnq_interpret_from_process_(
child_pid, (Elf64_Addr)&__ulp_insn_queue) != EOLDULP) {
abort();
}
send('d');
wait_for('1');
}
void
test2_child(void)
{
/* Modify the queue version. */
int old_ver = __ulp_insn_queue.version;
__ulp_insn_queue.version = 1 << 30;
send('c');
wait_for('d');
__ulp_insn_queue.version = old_ver;
send('1');
}
/* Test3: Fill the queue with write messages. All messages should be inserted
successfully, and there should be a write into the target process related to
the address we passed. */
volatile char write_frame[8];
static void
test3_parent(int child_pid)
{
printf("Test 3 start\n");
wait_for('e');
/* We need to attach to proess in the test. On the ULP tool that would
already be done. */
attach(child_pid);
ulp_error_t ret =
insnq_interpret_from_process_(child_pid, (Elf64_Addr)&__ulp_insn_queue);
if (ret) {
printf("Error interpreting queue on test 3\n");
abort();
}
detach(child_pid);
send('f');
}
static void
test3_child(void)
{
char buf[8];
for (int i = 0; i < 8; i++) {
buf[i] = 'a';
}
int n = INSN_BUFFER_MAX / align_to(sizeof(struct ulp_insn_write) + 8, 8);
for (int i = 0; i < n; i++) {
insnq_insert_write((void *)write_frame, 8, buf);
}
send('e');
wait_for('f');
if (memcmp(buf, (void *)write_frame, 8) != 0) {
abort();
}
}
/* Test4: Try to add more messages than supported in the queue. It should fail.
*/
static void
test4_child(void)
{
char buf[8];
for (int i = 0; i < 8; i++) {
buf[i] = 'a';
}
int n = (INSN_BUFFER_MAX) / align_to(sizeof(struct ulp_insn_write) + 8, 8);
for (int i = 0; i < n; i++) {
insnq_insert_write((void *)write_frame, 8, buf);
}
/* Last write should be blocked. */
ulp_error_t ret = insnq_insert_write((void *)write_frame, 8, buf);
/* Should detect that we are out of memory in the queue and fail. */
if (ret != EINSNQ) {
abort();
}
send('g');
wait_for('h');
}
static void
test4_parent(int child_pid)
{
printf("Test 4 start\n");
wait_for('g');
/* We need to attach to proess in the test. On the ULP tool that would
already be done. */
attach(child_pid);
ulp_error_t ret =
insnq_interpret_from_process_(child_pid, (Elf64_Addr)&__ulp_insn_queue);
if (ret) {
printf("Error interpreting queue on test 3\n");
abort();
}
detach(child_pid);
send('h');
}
static int
parent(pid_t child_pid)
{
test1_parent(child_pid);
test2_parent(child_pid);
test3_parent(child_pid);
test4_parent(child_pid);
if (insnq_ensure_emptiness()) {
/* Ensure that the queue ends empty. */
abort();
}
return 0;
}
static void
child(void)
{
test1_child();
test2_child();
test3_child();
test4_child();
}
int
main(void)
{
pid_t pid;
assert(pipe(fd[0]) == 0);
assert(pipe(fd[1]) == 0);
pid = fork();
if (pid == 0) {
is_child = true;
child();
}
else {
parent(pid);
int wstatus;
waitpid(pid, &wstatus, 0);
if (WIFEXITED(wstatus)) {
int r = WEXITSTATUS(wstatus);
if (r) {
printf("Process %d returned non-zero: %d\n", pid, r);
return 1;
}
}
else {
printf("Process %d ended without calling exit\n", pid);
return 1;
}
}
close(fd[0][0]);
close(fd[0][1]);
close(fd[1][0]);
close(fd[1][1]);
printf("Success\n");
return 0;
}
|