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
|
/*
* sys_clone2(u64 flags, u64 ustack_base, u64 ustack_size, u64 parent_tidptr, u64 child_tidptr, u64 tls)
*
* On success, the thread ID of the child process is returned in the caller's thread of execution.
* On failure, -1 is returned in the caller's context, no child process will be created, and errno will be set appropriately.
*/
#include <linux/sched.h>
#include "sanitise.h"
struct syscall syscall_clone2 = {
.name = "clone",
.num_args = 6,
.flags = AVOID_SYSCALL,
.arg1name = "flags",
.arg1type = ARG_LIST,
.arg1list = {
.num = 23,
.values = { CSIGNAL,
CLONE_VM, CLONE_FS, CLONE_FILES, CLONE_SIGHAND,
CLONE_PTRACE, CLONE_VFORK, CLONE_PARENT, CLONE_THREAD,
CLONE_NEWNS, CLONE_SYSVSEM, CLONE_SETTLS, CLONE_PARENT_SETTID,
CLONE_CHILD_CLEARTID, CLONE_DETACHED, CLONE_UNTRACED, CLONE_CHILD_SETTID,
CLONE_NEWUTS, CLONE_NEWIPC, CLONE_NEWUSER, CLONE_NEWPID,
CLONE_NEWNET, CLONE_IO },
},
.arg2name = "ustack_base",
.arg2type = ARG_ADDRESS,
.arg3name = "ustack_size",
.arg3type = ARG_LEN,
.arg4name = "parent_tidptr",
.arg4type = ARG_ADDRESS,
.arg5name = "child_tidptr",
.arg5type = ARG_ADDRESS,
.arg6name = "tls",
.arg6type = ARG_ADDRESS,
.rettype = RET_PID_T,
};
|