2 * Each process that gets forked runs this code.
13 #include <sys/resource.h>
14 #include <sys/prctl.h>
21 #include "params.h" // for 'debug'
28 #include "trinity.h" // ARRAY_SIZE
29 #include "utils.h" // zmalloc
31 static void disable_coredumps(void)
33 struct rlimit limit
= { .rlim_cur
= 0, .rlim_max
= 0 };
36 (void)signal(SIGABRT
, SIG_DFL
);
37 (void)signal(SIGSEGV
, SIG_DFL
);
41 if (setrlimit(RLIMIT_CORE
, &limit
) != 0)
42 perror( "setrlimit(RLIMIT_CORE)" );
44 prctl(PR_SET_DUMPABLE
, FALSE
);
47 static void enable_coredumps(void)
49 struct rlimit limit
= {
50 .rlim_cur
= RLIM_INFINITY
,
51 .rlim_max
= RLIM_INFINITY
57 prctl(PR_SET_DUMPABLE
, TRUE
);
59 (void) setrlimit(RLIMIT_CORE
, &limit
);
61 static void set_make_it_fail(void)
64 const char *buf
= "1";
66 /* If we failed last time, don't bother trying in future. */
67 if (shm
->do_make_it_fail
== TRUE
)
70 fd
= open("/proc/self/make-it-fail", O_WRONLY
);
74 if (write(fd
, buf
, 1) == -1) {
76 outputerr("writing to /proc/self/make-it-fail failed! (%s)\n", strerror(errno
));
78 shm
->do_make_it_fail
= TRUE
;
84 * We call this occasionally to set some FPU state, in the hopes that we
85 * might tickle some weird FPU/scheduler related bugs
87 static void use_fpu(void)
90 asm volatile("":"+m" (x
));
92 asm volatile("":"+m" (x
));
97 static void setup_page_maps(void)
102 page
= (void *) page_maps
;
104 for (i
= 0; i
< page_size
/ sizeof(unsigned long); i
++) {
108 page
[i
] = (unsigned long) map
->ptr
;
112 void init_child(int childno
)
115 pid_t pid
= getpid();
117 this_child
= childno
;
121 shm
->kill_count
[childno
] = 0;
123 shm
->num_mappings
[childno
] = 0;
124 shm
->mappings
[childno
] = zmalloc(sizeof(struct map
));
125 INIT_LIST_HEAD(&shm
->mappings
[childno
]->list
);
129 if (sched_getaffinity(pid
, sizeof(set
), &set
) == 0) {
131 CPU_SET(childno
, &set
);
132 sched_setaffinity(pid
, sizeof(set
), &set
);
135 shm
->child_syscall_count
[childno
] = 0;
139 if (rand() % 100 < 50)
145 void check_parent_pid(void)
149 static unsigned int parent_check_time
= 10;
152 if (parent_check_time
!= 0)
155 parent_check_time
= 10;
157 if (getppid() == shm
->mainpid
)
162 //FIXME: Add locking so only one child does this output.
163 output(0, BUGTXT
"CHILD (pid:%d) GOT REPARENTED! "
164 "parent pid:%d. Watchdog pid:%d\n",
165 pid
, shm
->mainpid
, watchdog_pid
);
166 output(0, BUGTXT
"Last syscalls:\n");
168 for_each_pidslot(i
) {
169 // Skip over 'boring' entries.
170 if ((shm
->pids
[i
] == EMPTY_PIDSLOT
) &&
171 (shm
->previous_syscallno
[i
] == 0) &&
172 (shm
->child_syscall_count
[i
] == 0))
175 output(0, "[%d] pid:%d call:%s callno:%d\n",
177 print_syscall_name(shm
->previous_syscallno
[i
], shm
->do32bit
[i
]), // FIXME: need previous do32bit
178 shm
->child_syscall_count
[i
]);
180 shm
->exit_reason
= EXIT_REPARENT_PROBLEM
;
182 //TODO: Emergency logging.
188 int (*func
)(int childno
);
191 static const struct child_funcs child_functions
[] = {
192 { .type
= CHILD_RANDOM_SYSCALLS
, .name
= "rand_syscalls", .func
= child_random_syscalls
},
194 { .type
= CHILD_OPEN_ALL_FILES
, .name
= "read_all_files", .func
= child_read_all_files
},
198 int child_process(int childno
)
203 i
= rand() % ARRAY_SIZE(child_functions
);
206 output(0, "Chose %s.\n", child_functions
[i
].name
);
209 shm
->child_type
[childno
] = child_functions
[i
].type
;
210 ret
= child_functions
[i
].func(childno
);