aboutgitcodelistschat:MatrixIRC
path: root/cooker/calls/process.c
blob: 7c0f36e1c966a8566748a53a787f392791fdc68d (plain) (blame)
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
// SPDX-License-Identifier: GPL-3.0-or-later

/* seitan - Syscall Expressive Interpreter, Transformer and Notifier
 *
 * cooker/calls/process.c - Description of known process-related system calls
 *
 * Copyright 2023 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

/*
clone
fork
vfork
execve
exit
wait3
wait4
waitid
kill
exit_group
unshare
kcmp
clone3
*/

#include <asm-generic/unistd.h>
#include <sys/syscall.h>

#include <unistd.h>
#include <sched.h>
#include <linux/kcmp.h>
#include <sys/wait.h>

#include "../cooker.h"
#include "../calls.h"

static struct arg unshare_args[] = {
	{
		0,	"flags",	INTFLAGS,	0,
		{ 0 /* TODO */ }
	},
};

struct call syscalls_process[] = {
	{ __NR_unshare, "unshare", unshare_args },
	{ 0 },
};