aboutgitcodelistschat:MatrixIRC
path: root/cooker/calls/fs.c
blob: cfc009169c2f4507b6dcfd6266bb7c45fb24a423 (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
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
// SPDX-License-Identifier: GPL-2.0-or-later

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

/*
stat ?
fstat ?
lstat ?

lseek ?

fcntl ?
flock ~
fsync
fdatasync
truncate
ftruncate

getdents
getcwd
chdir
fchdir
mkdir
rmdir

rename

creat

link
unlink
symlink
readlink

chmod
fchmod
chown
fchown
fchownat
lchown
umask

mknod
mknodat

mount
umount2
swapon
swapoff
*/

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

#include <fcntl.h>
#include <sys/stat.h>
#include <linux/limits.h>

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

static struct arg mknod_args[] = {
	{ 0,
		{
			"path",		STRING,			0,
			0,	PATH_MAX,
			{ 0 }
		}
	},
	{ 1,
		{
			"mode",		U32 /* TODO */,	0,
			0,	0,
			{ 0 /* TODO */ },
		}
	},
	{ 2,
		{
			"major",	GNU_DEV_MAJOR,		0,
			0,	0,
			{ 0 },
		}
	},
	{ 2,
		{
			"minor",	GNU_DEV_MINOR,		0,
			0,	0,
			{ 0 },
		}
	},
	{ 0 }
};

static struct arg mknodat_args[] = {
	{ 0,
		{
			"dirfd",	UNDEF,			0,
			0,	1 /* TODO: PATH_MAX */,
			{ 0 }
		}
	},
	{ 1,
		{
			"path",		STRING,			0,
			0,	PATH_MAX,
			{ 0 }
		}
	},
	{ 2,
		{
			"mode",		UNDEF /* TODO */,	FLAGS,
			0,	0,
			{ 0 /* TODO */ },
		}
	},
	{ 3,
		{
			"major",	GNU_DEV_MAJOR,		0,
			0,	0,
			{ 0 },
		}
	},
	{ 3,
		{
			"minor",	GNU_DEV_MINOR,		0,
			0,	0,
			{ 0 },
		}
	},
	{ 0 }
};

struct call syscalls_fs[] = {
	{ __NR_mknod, "mknod", mknod_args },
	{ __NR_mknodat, "mknodat", mknodat_args },
	{ 0 },
};