forked from code-golf/code-golf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
run-lang.c
612 lines (526 loc) · 17.6 KB
/
run-lang.c
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
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
// +build none
#define _GNU_SOURCE
#include <linux/filter.h>
#include <linux/seccomp.h>
#include <sched.h>
#include <stddef.h>
#include <stdio.h>
#include <sys/mount.h>
#include <sys/prctl.h>
#include <sys/syscall.h>
#include <unistd.h>
// Not defined in alpine yet :-(
#define __NR_pidfd_open 434
#define __NR_clone3 435
#define __NR_openat2 437
#define __NR_pidfd_getfd 438
#define __NR_faccessat2 439
#define ALLOW(name) \
BPF_JUMP(BPF_JMP+BPF_JEQ+BPF_K, __NR_##name, 0, 1), \
BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_ALLOW)
#define STR_WITH_LEN(str) str, sizeof(str) - 1
int main(__attribute__((unused)) int argc, char *argv[]) {
if (mount(NULL, "/", NULL, MS_PRIVATE|MS_REC, NULL) < 0) {
perror("mount private");
return 1;
}
if (mount("rootfs", "rootfs", "bind", MS_BIND|MS_REC, NULL) < 0) {
perror("mount bind");
return 1;
}
if (syscall(SYS_pivot_root, "rootfs", "rootfs") < 0) {
perror("pivot_root");
return 1;
}
if (chdir("/") < 0) {
perror("chdir");
return 1;
}
if (umount2("/", MNT_DETACH) < 0) {
perror("umount2");
return 1;
}
if (mount(NULL, "/proc", "proc", MS_RDONLY, NULL) < 0) {
perror("mount proc");
return 1;
}
if (mount(NULL, "/tmp", "tmpfs", 0, NULL) < 0) {
perror("mount tmp");
return 1;
}
if (sethostname(STR_WITH_LEN("code-golf")) < 0) {
perror("sethostname");
return 1;
}
if (setgid(65534) < 0) {
perror("setgid");
return 1;
}
if (setuid(65534) < 0) {
perror("setuid");
return 1;
}
// sudo journalctl -f _AUDIT_TYPE_NAME=SECCOMP
// ... SECCOMP ... syscall=xxx ...
struct sock_filter filter[] = {
BPF_STMT(BPF_LD+BPF_W+BPF_ABS, offsetof(struct seccomp_data, nr)),
// FIXME Julia attempts this wildly high syscall :-S
// SECCOMP auid=x uid=65534 gid=65534 ses=x pid=x comm="julia" exe="/usr/bin/julia" sig=31 arch=c000003e syscall=1008 compat=0 ip=x code=0x0
#define __NR_julia 1008
ALLOW(julia),
/*************\
| File System |
\*************/
// File Operations
ALLOW(close), // 3
ALLOW(creat), // 85
ALLOW(fallocate), // 285
ALLOW(ftruncate), // 77
ALLOW(memfd_create), // 319
ALLOW(mknod), // 133
ALLOW(mknodat), // 259
ALLOW(name_to_handle_at), // 303
ALLOW(open), // 2
ALLOW(openat), // 257
ALLOW(openat2), // 437
ALLOW(open_by_handle_at), // 304
ALLOW(rename), // 82
ALLOW(renameat2), // 316
ALLOW(renameat), // 264
ALLOW(truncate), // 76
ALLOW(userfaultfd), // 323
// Directory Operations
ALLOW(chdir), // 80
ALLOW(chroot), // 161
ALLOW(fchdir), // 81
ALLOW(getcwd), // 79
ALLOW(getdents64), // 217
ALLOW(getdents), // 78
ALLOW(lookup_dcookie), // 212
ALLOW(mkdir), // 83
ALLOW(mkdirat), // 258
ALLOW(rmdir), // 84
// Link Operations
ALLOW(link), // 86
ALLOW(linkat), // 265
ALLOW(readlink), // 89
ALLOW(readlinkat), // 267
ALLOW(symlink), // 88
ALLOW(symlinkat), // 266
ALLOW(unlink), // 87
ALLOW(unlinkat), // 263
// Basic File Attributes
ALLOW(access), // 21
ALLOW(chmod), // 90
ALLOW(chown), // 92
ALLOW(faccessat), // 269
ALLOW(faccessat2), // 439
ALLOW(fchmod), // 91
ALLOW(fchmodat), // 268
ALLOW(fchown), // 93
ALLOW(fchownat), // 260
ALLOW(fstat), // 5
ALLOW(futimesat), // 261
ALLOW(lchown), // 94
ALLOW(lstat), // 6
ALLOW(newfstatat), // 262
ALLOW(stat), // 4
ALLOW(statx), // 332
ALLOW(umask), // 95
ALLOW(utime), // 132
ALLOW(utimensat), // 280
ALLOW(utimes), // 235
// Extended File Attributes
ALLOW(fgetxattr), // 193
ALLOW(flistxattr), // 196
ALLOW(fremovexattr), // 199
ALLOW(fsetxattr), // 190
ALLOW(getxattr), // 191
ALLOW(lgetxattr), // 192
ALLOW(listxattr), // 194
ALLOW(llistxattr), // 195
ALLOW(lremovexattr), // 198
ALLOW(lsetxattr), // 189
ALLOW(removexattr), // 197
ALLOW(setxattr), // 188
// File Descriptor Manipulations
ALLOW(dup2), // 33
ALLOW(dup), // 32
ALLOW(dup3), // 292
ALLOW(fcntl), // 72
ALLOW(flock), // 73
ALLOW(ioctl), // 16
// Read/Write
ALLOW(copy_file_range), // 326
ALLOW(lseek), // 8
ALLOW(pread64), // 17
ALLOW(preadv2), // 327
ALLOW(preadv), // 295
ALLOW(pwrite64), // 18
ALLOW(pwritev2), // 328
ALLOW(pwritev), // 296
ALLOW(read), // 0
ALLOW(readv), // 19
ALLOW(sendfile), // 40
ALLOW(write), // 1
ALLOW(writev), // 20
// Synchronized I/O
ALLOW(fdatasync), // 75
ALLOW(fsync), // 74
ALLOW(msync), // 26
ALLOW(sync), // 162
ALLOW(sync_file_range), // 277
ALLOW(syncfs), // 306
// Asynchronous I/O
ALLOW(io_pgetevents), // 333
ALLOW(io_cancel), // 210
ALLOW(io_destroy), // 207
ALLOW(io_getevents), // 208
ALLOW(io_setup), // 206
ALLOW(io_submit), // 209
// ALLOW(io_uring_enter), // 426
// ALLOW(io_uring_register), // 427
// ALLOW(io_uring_setup), // 425
// Multiplexed I/O
ALLOW(epoll_create), // 213
ALLOW(epoll_create1), // 291
ALLOW(epoll_ctl), // 233
ALLOW(epoll_pwait), // 281
ALLOW(epoll_wait), // 232
ALLOW(poll), // 7
ALLOW(ppoll), // 271
ALLOW(pselect6), // 270
ALLOW(select), // 23
// Monitoring File Events
// ALLOW(fanotify_init), // 300
// ALLOW(fanotify_mark), // 301
// ALLOW(inotify_add_watch), // 254
// ALLOW(inotify_init1), // 294
// ALLOW(inotify_init), // 253
// ALLOW(inotify_rm_watch), // 255
// Miscellaneous
ALLOW(fadvise64), // 221
ALLOW(getrandom), // 318
ALLOW(readahead), // 187
/*********\
| Network |
\*********/
// Socket Operations
ALLOW(accept), // 43
ALLOW(accept4), // 288
ALLOW(bind), // 49
ALLOW(connect), // 42
ALLOW(getpeername), // 52
ALLOW(getsockname), // 51
ALLOW(getsockopt), // 55
ALLOW(listen), // 50
ALLOW(setsockopt), // 54
ALLOW(shutdown), // 48
ALLOW(socket), // 41
ALLOW(socketpair), // 53
// Send/Receive
ALLOW(recvfrom), // 45
ALLOW(recvmmsg), // 299
ALLOW(recvmsg), // 47
ALLOW(sendmmsg), // 307
ALLOW(sendmsg), // 46
ALLOW(sendto), // 44
// Naming
// ALLOW(setdomainname), // 171
// ALLOW(sethostname), // 170
// Packet Filtering
// ALLOW(bpf), // 321
/******\
| Time |
\******/
// Current Time of Day
// ALLOW(gettimeofday), // 96
// ALLOW(settimeofday), // 164
// ALLOW(time), // 201
// POSIX Clocks
ALLOW(clock_adjtime), // 305
ALLOW(clock_getres), // 229
ALLOW(clock_gettime), // 228
ALLOW(clock_nanosleep), // 230
ALLOW(clock_settime), // 227
// Clocks Based Timers
ALLOW(timer_create), // 222
ALLOW(timer_delete), // 226
ALLOW(timer_getoverrun), // 225
ALLOW(timer_gettime), // 224
ALLOW(timer_settime), // 223
// Timers
ALLOW(alarm), // 37
ALLOW(getitimer), // 36
ALLOW(setitimer), // 38
// File Descriptor Based Timers
ALLOW(timerfd_create), // 283
ALLOW(timerfd_gettime), // 287
ALLOW(timerfd_settime), // 286
// Miscellaneous
// ALLOW(adjtimex), // 159
ALLOW(nanosleep), // 35
ALLOW(times), // 100
/***********\
| Processes |
\***********/
// Creation and Termination
ALLOW(clone), // 56
ALLOW(clone3), // 435
ALLOW(execve), // 59
ALLOW(execveat), // 322
ALLOW(exit), // 60
ALLOW(exit_group), // 231
ALLOW(fork), // 57
ALLOW(vfork), // 58
ALLOW(wait4), // 61
ALLOW(waitid), // 247
// Process ID
ALLOW(getpid), // 39
ALLOW(getppid), // 110
ALLOW(gettid), // 186
ALLOW(pidfd_getfd), // 438
ALLOW(pidfd_open), // 434
// Session ID
ALLOW(getsid), // 124
ALLOW(setsid), // 112
// Process Group ID
ALLOW(getpgid), // 121
ALLOW(getpgrp), // 111
ALLOW(setpgid), // 109
// Users and Groups
ALLOW(getegid), // 108
ALLOW(geteuid), // 107
ALLOW(getgid), // 104
ALLOW(getgroups), // 115
ALLOW(getresgid), // 120
ALLOW(getresuid), // 118
ALLOW(getuid), // 102
ALLOW(setfsgid), // 123
ALLOW(setfsuid), // 122
ALLOW(setgid), // 106
ALLOW(setgroups), // 116
ALLOW(setregid), // 114
ALLOW(setresgid), // 119
ALLOW(setresuid), // 117
ALLOW(setreuid), // 113
ALLOW(setuid), // 105
// Namespaces
// ALLOW(setns), // 308
// Resource Limits
ALLOW(getrlimit), // 97
ALLOW(getrusage), // 98
ALLOW(prlimit64), // 302
ALLOW(setrlimit), // 160
// Process Scheduling
ALLOW(getpriority), // 140
ALLOW(ioprio_get), // 252
ALLOW(ioprio_set), // 251
ALLOW(sched_getaffinity), // 204
ALLOW(sched_getattr), // 315
ALLOW(sched_getparam), // 143
ALLOW(sched_get_priority_max), // 146
ALLOW(sched_get_priority_min), // 147
ALLOW(sched_getscheduler), // 145
ALLOW(sched_rr_get_interval), // 148
ALLOW(sched_setaffinity), // 203
ALLOW(sched_setattr), // 314
ALLOW(sched_setparam), // 142
ALLOW(sched_setscheduler), // 144
ALLOW(sched_yield), // 24
ALLOW(setpriority), // 141
// Virtual Memory
ALLOW(brk), // 12
ALLOW(madvise), // 28
ALLOW(membarrier), // 324
ALLOW(mincore), // 27
ALLOW(mlock), // 149
ALLOW(mlock2), // 325
ALLOW(mlockall), // 151
ALLOW(mmap), // 9
ALLOW(modify_ldt), // 154
ALLOW(mprotect), // 10
ALLOW(mremap), // 25
ALLOW(munlock), // 150
ALLOW(munlockall), // 152
ALLOW(munmap), // 11
ALLOW(pkey_alloc), // 330
ALLOW(pkey_free), // 331
ALLOW(pkey_mprotect), // 329
// Threads
ALLOW(arch_prctl), // 158
ALLOW(capget), // 125
ALLOW(capset), // 126
ALLOW(get_thread_area), // 211
ALLOW(set_thread_area), // 205
ALLOW(set_tid_address), // 218
// Miscellaneous
// ALLOW(kcmp), // 312
ALLOW(prctl), // 157
// ALLOW(process_vm_readv), // 310
// ALLOW(process_vm_writev), // 311
// ALLOW(ptrace), // 101
// ALLOW(seccomp), // 317
// ALLOW(unshare), // 272
// ALLOW(uselib), // 134
/*********\
| Signals |
\*********/
// Standard Signals
ALLOW(kill), // 62
ALLOW(pause), // 34
ALLOW(tgkill), // 234
ALLOW(tkill), // 200
// Real-time Signals
ALLOW(rt_sigaction), // 13
ALLOW(rt_sigpending), // 127
ALLOW(rt_sigprocmask), // 14
ALLOW(rt_sigqueueinfo), // 129
ALLOW(rt_sigreturn), // 15
ALLOW(rt_sigsuspend), // 130
ALLOW(rt_sigtimedwait), // 128
ALLOW(rt_tgsigqueueinfo), // 297
ALLOW(sigaltstack), // 131
// File Descriptor Based Signals
ALLOW(eventfd), // 284
ALLOW(eventfd2), // 290
ALLOW(pidfd_send_signal), // 424
ALLOW(signalfd), // 282
ALLOW(signalfd4), // 289
// Miscellaneous
ALLOW(restart_syscall), // 219
/*****\
| IPC |
\*****/
// Pipe
ALLOW(pipe), // 22
ALLOW(pipe2), // 293
ALLOW(splice), // 275
ALLOW(tee), // 276
ALLOW(vmsplice), // 278
// Shared Memory
ALLOW(shmat), // 30
ALLOW(shmctl), // 31
ALLOW(shmdt), // 67
ALLOW(shmget), // 29
// Semaphores
// ALLOW(semctl), // 66
// ALLOW(semget), // 64
// ALLOW(semop), // 65
// ALLOW(semtimedop), // 220
// Futexes
ALLOW(futex), // 202
ALLOW(get_robust_list), // 274
ALLOW(set_robust_list), // 273
// System V Message Queue
// ALLOW(msgctl), // 71
// ALLOW(msgget), // 68
// ALLOW(msgrcv), // 70
// ALLOW(msgsnd), // 69
// POSIX Message Queue
// ALLOW(mq_getsetattr), // 245
// ALLOW(mq_notify), // 244
// ALLOW(mq_open), // 240
// ALLOW(mq_timedreceive), // 243
// ALLOW(mq_timedsend), // 242
// ALLOW(mq_unlink), // 241
/******\
| NUMA |
\******/
// CPU Node
// ALLOW(getcpu), // 309
// Memory Node
ALLOW(get_mempolicy), // 239
ALLOW(mbind), // 237
ALLOW(migrate_pages), // 256
ALLOW(move_pages), // 279
ALLOW(set_mempolicy), // 238
/****************\
| Key Management |
\****************/
// ALLOW(add_key), // 248
// ALLOW(keyctl), // 250
// ALLOW(request_key), // 249
/*************\
| System-Wide |
\*************/
// Loadable Modules
// ALLOW(create_module), // 174
// ALLOW(delete_module), // 176
// ALLOW(finit_module), // 313
// ALLOW(get_kernel_syms), // 177
// ALLOW(init_module), // 175
// ALLOW(query_module), // 178
// Accounting and Quota
// ALLOW(acct), // 163
// ALLOW(quotactl), // 179
// Filesystem (privileged)
// ALLOW(fsconfig), // 431
// ALLOW(fsmount), // 432
// ALLOW(fsopen), // 430
// ALLOW(fspick), // 433
// ALLOW(mount), // 165
// ALLOW(move_mount), // 429
// ALLOW(nfsservctl), // 180
// ALLOW(open_tree), // 428
// ALLOW(pivot_root), // 155
// ALLOW(swapoff), // 168
// ALLOW(swapon), // 167
// ALLOW(umount2), // 166
// Filesystem (unprivileged)
ALLOW(fstatfs), // 138
ALLOW(statfs), // 137
ALLOW(sysfs), // 139
ALLOW(ustat), // 136
// Miscellaneous (privileged)
// ALLOW(ioperm), // 173
// ALLOW(iopl), // 172
// ALLOW(kexec_file_load), // 320
// ALLOW(kexec_load), // 246
// ALLOW(perf_event_open), // 298
// ALLOW(personality), // 135
// ALLOW(reboot), // 169
// ALLOW(_sysctl), // 156
// ALLOW(syslog), // 103
// ALLOW(vhangup), // 153
// Miscellaneous (unprivileged)
ALLOW(rseq), // 334
ALLOW(sysinfo), // 99
ALLOW(uname), // 63
/************\
| Deprecated |
\************/
// ALLOW(remap_file_pages), // 216
/***************\
| Unimplemented |
\***************/
// ALLOW(afs_syscall), // 183
// ALLOW(create_module), // 174
// ALLOW(epoll_ctl_old), // 214
// ALLOW(epoll_wait_old), // 215
// ALLOW(get_kernel_syms), // 177
// ALLOW(getpmsg), // 181
// ALLOW(nfsservctl), // 180
// ALLOW(putpmsg), // 182
// ALLOW(query_module), // 178
// ALLOW(security), // 185
// ALLOW(tuxcall), // 184
// ALLOW(vserver), // 236
BPF_STMT(BPF_RET+BPF_K, SECCOMP_RET_KILL),
};
struct sock_fprog fprog = {
(unsigned short) (sizeof(filter) / sizeof(filter[0])),
filter,
};
if (prctl(PR_SET_NO_NEW_PRIVS, 1, 0, 0, 0)) {
perror("prctl(NO_NEW_PRIVS)");
return 1;
}
if (prctl(PR_SET_SECCOMP, SECCOMP_MODE_FILTER, &fprog)) {
perror("prctl(SECCOMP)");
return 1;
}
execvp(argv[0], argv);
perror("execvp");
return 1;
}