]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/missing_syscall.h
Merge pull request #33013 from yuwata/journal-flush
[thirdparty/systemd.git] / src / basic / missing_syscall.h
1 /* SPDX-License-Identifier: LGPL-2.1-or-later */
2 #pragma once
3
4 /* Missing glibc definitions to access certain kernel APIs */
5
6 #include <errno.h>
7 #include <fcntl.h>
8 #if HAVE_LINUX_TIME_TYPES_H
9 /* This header defines __kernel_timespec for us, but is only available since Linux 5.1, hence conditionally
10 * include this. */
11 #include <linux/time_types.h>
12 #endif
13 #include <signal.h>
14 #include <sys/syscall.h>
15 #include <sys/types.h>
16 #include <sys/wait.h>
17 #include <unistd.h>
18
19 #ifdef ARCH_MIPS
20 #include <asm/sgidefs.h>
21 #endif
22
23 #include "macro.h"
24 #include "missing_keyctl.h"
25 #include "missing_stat.h"
26 #include "missing_syscall_def.h"
27
28 /* linux/kcmp.h */
29 #ifndef KCMP_FILE /* 3f4994cfc15f38a3159c6e3a4b3ab2e1481a6b02 (3.19) */
30 #define KCMP_FILE 0
31 #endif
32
33 /* ======================================================================= */
34
35 #if !HAVE_FCHMODAT2
36 static inline int missing_fchmodat2(int dirfd, const char *path, mode_t mode, int flags) {
37 # ifdef __NR_fchmodat2
38 return syscall(__NR_fchmodat2, dirfd, path, mode, flags);
39 # else
40 errno = ENOSYS;
41 return -1;
42 # endif
43 }
44
45 # define fchmodat2 missing_fchmodat2
46 #endif
47
48 /* ======================================================================= */
49
50 #if !HAVE_PIVOT_ROOT
51 static inline int missing_pivot_root(const char *new_root, const char *put_old) {
52 return syscall(__NR_pivot_root, new_root, put_old);
53 }
54
55 # define pivot_root missing_pivot_root
56 #endif
57
58 /* ======================================================================= */
59
60 #if !HAVE_IOPRIO_GET
61 static inline int missing_ioprio_get(int which, int who) {
62 return syscall(__NR_ioprio_get, which, who);
63 }
64
65 # define ioprio_get missing_ioprio_get
66 #endif
67
68 /* ======================================================================= */
69
70 #if !HAVE_IOPRIO_SET
71 static inline int missing_ioprio_set(int which, int who, int ioprio) {
72 return syscall(__NR_ioprio_set, which, who, ioprio);
73 }
74
75 # define ioprio_set missing_ioprio_set
76 #endif
77
78 /* ======================================================================= */
79
80 #if !HAVE_MEMFD_CREATE
81 static inline int missing_memfd_create(const char *name, unsigned int flags) {
82 # ifdef __NR_memfd_create
83 return syscall(__NR_memfd_create, name, flags);
84 # else
85 errno = ENOSYS;
86 return -1;
87 # endif
88 }
89
90 # define memfd_create missing_memfd_create
91 #endif
92
93 /* ======================================================================= */
94
95 #if !HAVE_GETRANDOM
96 /* glibc says getrandom() returns ssize_t */
97 static inline ssize_t missing_getrandom(void *buffer, size_t count, unsigned flags) {
98 # ifdef __NR_getrandom
99 return syscall(__NR_getrandom, buffer, count, flags);
100 # else
101 errno = ENOSYS;
102 return -1;
103 # endif
104 }
105
106 # define getrandom missing_getrandom
107 #endif
108
109 /* ======================================================================= */
110
111 /* The syscall has been defined since forever, but the glibc wrapper was missing. */
112 #if !HAVE_GETTID
113 static inline pid_t missing_gettid(void) {
114 # if defined __NR_gettid && __NR_gettid >= 0
115 return (pid_t) syscall(__NR_gettid);
116 # else
117 # error "__NR_gettid not defined"
118 # endif
119 }
120
121 # define gettid missing_gettid
122 #endif
123
124 /* ======================================================================= */
125
126 #if !HAVE_NAME_TO_HANDLE_AT
127 struct file_handle {
128 unsigned int handle_bytes;
129 int handle_type;
130 unsigned char f_handle[0];
131 };
132
133 static inline int missing_name_to_handle_at(int fd, const char *name, struct file_handle *handle, int *mnt_id, int flags) {
134 # ifdef __NR_name_to_handle_at
135 return syscall(__NR_name_to_handle_at, fd, name, handle, mnt_id, flags);
136 # else
137 errno = ENOSYS;
138 return -1;
139 # endif
140 }
141
142 # define name_to_handle_at missing_name_to_handle_at
143 #endif
144
145 /* ======================================================================= */
146
147 #if !HAVE_SETNS
148 static inline int missing_setns(int fd, int nstype) {
149 # ifdef __NR_setns
150 return syscall(__NR_setns, fd, nstype);
151 # else
152 errno = ENOSYS;
153 return -1;
154 # endif
155 }
156
157 # define setns missing_setns
158 #endif
159
160 /* ======================================================================= */
161
162 static inline pid_t raw_getpid(void) {
163 #if defined(__alpha__)
164 return (pid_t) syscall(__NR_getxpid);
165 #else
166 return (pid_t) syscall(__NR_getpid);
167 #endif
168 }
169
170 /* ======================================================================= */
171
172 #if !HAVE_RENAMEAT2
173 static inline int missing_renameat2(int oldfd, const char *oldname, int newfd, const char *newname, unsigned flags) {
174 # ifdef __NR_renameat2
175 return syscall(__NR_renameat2, oldfd, oldname, newfd, newname, flags);
176 # else
177 errno = ENOSYS;
178 return -1;
179 # endif
180 }
181
182 # define renameat2 missing_renameat2
183 #endif
184
185 /* ======================================================================= */
186
187 #if !HAVE_KCMP
188 static inline int missing_kcmp(pid_t pid1, pid_t pid2, int type, unsigned long idx1, unsigned long idx2) {
189 # if defined __NR_kcmp && __NR_kcmp >= 0
190 return syscall(__NR_kcmp, pid1, pid2, type, idx1, idx2);
191 # else
192 errno = ENOSYS;
193 return -1;
194 # endif
195 }
196
197 # define kcmp missing_kcmp
198 #endif
199
200 /* ======================================================================= */
201
202 #if !HAVE_KEYCTL
203 static inline long missing_keyctl(int cmd, unsigned long arg2, unsigned long arg3, unsigned long arg4, unsigned long arg5) {
204 # if defined __NR_keyctl && __NR_keyctl >= 0
205 return syscall(__NR_keyctl, cmd, arg2, arg3, arg4, arg5);
206 # else
207 errno = ENOSYS;
208 return -1;
209 # endif
210
211 # define keyctl missing_keyctl
212 }
213
214 static inline key_serial_t missing_add_key(const char *type, const char *description, const void *payload, size_t plen, key_serial_t ringid) {
215 # if defined __NR_add_key && __NR_add_key >= 0
216 return syscall(__NR_add_key, type, description, payload, plen, ringid);
217 # else
218 errno = ENOSYS;
219 return -1;
220 # endif
221
222 # define add_key missing_add_key
223 }
224
225 static inline key_serial_t missing_request_key(const char *type, const char *description, const char * callout_info, key_serial_t destringid) {
226 # if defined __NR_request_key && __NR_request_key >= 0
227 return syscall(__NR_request_key, type, description, callout_info, destringid);
228 # else
229 errno = ENOSYS;
230 return -1;
231 # endif
232
233 # define request_key missing_request_key
234 }
235 #endif
236
237 /* ======================================================================= */
238
239 #if !HAVE_COPY_FILE_RANGE
240 static inline ssize_t missing_copy_file_range(int fd_in, loff_t *off_in,
241 int fd_out, loff_t *off_out,
242 size_t len,
243 unsigned int flags) {
244 # ifdef __NR_copy_file_range
245 return syscall(__NR_copy_file_range, fd_in, off_in, fd_out, off_out, len, flags);
246 # else
247 errno = ENOSYS;
248 return -1;
249 # endif
250 }
251
252 # define copy_file_range missing_copy_file_range
253 #endif
254
255 /* ======================================================================= */
256
257 #if !HAVE_BPF
258 union bpf_attr;
259
260 static inline int missing_bpf(int cmd, union bpf_attr *attr, size_t size) {
261 #ifdef __NR_bpf
262 return (int) syscall(__NR_bpf, cmd, attr, size);
263 #else
264 errno = ENOSYS;
265 return -1;
266 #endif
267 }
268
269 # define bpf missing_bpf
270 #endif
271
272 /* ======================================================================= */
273
274 #if !HAVE_STATX
275 struct statx;
276
277 static inline ssize_t missing_statx(int dfd, const char *filename, unsigned flags, unsigned int mask, struct statx *buffer) {
278 # ifdef __NR_statx
279 return syscall(__NR_statx, dfd, filename, flags, mask, buffer);
280 # else
281 errno = ENOSYS;
282 return -1;
283 # endif
284 }
285 #endif
286
287 /* This typedef is supposed to be always defined. */
288 typedef struct statx struct_statx;
289
290 #if !HAVE_STATX
291 # define statx(dfd, filename, flags, mask, buffer) missing_statx(dfd, filename, flags, mask, buffer)
292 #endif
293
294 /* ======================================================================= */
295
296 #if !HAVE_SET_MEMPOLICY
297 enum {
298 MPOL_DEFAULT,
299 MPOL_PREFERRED,
300 MPOL_BIND,
301 MPOL_INTERLEAVE,
302 MPOL_LOCAL,
303 };
304
305 static inline long missing_set_mempolicy(int mode, const unsigned long *nodemask,
306 unsigned long maxnode) {
307 long i;
308 # if defined __NR_set_mempolicy && __NR_set_mempolicy >= 0
309 i = syscall(__NR_set_mempolicy, mode, nodemask, maxnode);
310 # else
311 errno = ENOSYS;
312 i = -1;
313 # endif
314 return i;
315 }
316
317 # define set_mempolicy missing_set_mempolicy
318 #endif
319
320 #if !HAVE_GET_MEMPOLICY
321 static inline long missing_get_mempolicy(int *mode, unsigned long *nodemask,
322 unsigned long maxnode, void *addr,
323 unsigned long flags) {
324 long i;
325 # if defined __NR_get_mempolicy && __NR_get_mempolicy >= 0
326 i = syscall(__NR_get_mempolicy, mode, nodemask, maxnode, addr, flags);
327 # else
328 errno = ENOSYS;
329 i = -1;
330 # endif
331 return i;
332 }
333
334 # define get_mempolicy missing_get_mempolicy
335 #endif
336
337 /* ======================================================================= */
338
339 #if !HAVE_PIDFD_SEND_SIGNAL
340 static inline int missing_pidfd_send_signal(int fd, int sig, siginfo_t *info, unsigned flags) {
341 # ifdef __NR_pidfd_send_signal
342 return syscall(__NR_pidfd_send_signal, fd, sig, info, flags);
343 # else
344 errno = ENOSYS;
345 return -1;
346 # endif
347 }
348
349 # define pidfd_send_signal missing_pidfd_send_signal
350 #endif
351
352 #if !HAVE_PIDFD_OPEN
353 static inline int missing_pidfd_open(pid_t pid, unsigned flags) {
354 # ifdef __NR_pidfd_open
355 return syscall(__NR_pidfd_open, pid, flags);
356 # else
357 errno = ENOSYS;
358 return -1;
359 # endif
360 }
361
362 # define pidfd_open missing_pidfd_open
363 #endif
364
365 /* ======================================================================= */
366
367 #if !HAVE_RT_SIGQUEUEINFO
368 static inline int missing_rt_sigqueueinfo(pid_t tgid, int sig, siginfo_t *info) {
369 # if defined __NR_rt_sigqueueinfo && __NR_rt_sigqueueinfo >= 0
370 return syscall(__NR_rt_sigqueueinfo, tgid, sig, info);
371 # else
372 # error "__NR_rt_sigqueueinfo not defined"
373 # endif
374 }
375
376 # define rt_sigqueueinfo missing_rt_sigqueueinfo
377 #endif
378
379 /* ======================================================================= */
380
381 #if !HAVE_RT_TGSIGQUEUEINFO
382 static inline int missing_rt_tgsigqueueinfo(pid_t tgid, pid_t tid, int sig, siginfo_t *info) {
383 # if defined __NR_rt_tgsigqueueinfo && __NR_rt_tgsigqueueinfo >= 0
384 return syscall(__NR_rt_tgsigqueueinfo, tgid, tid, sig, info);
385 # else
386 # error "__NR_rt_tgsigqueueinfo not defined"
387 # endif
388 }
389
390 # define rt_tgsigqueueinfo missing_rt_tgsigqueueinfo
391 #endif
392
393 /* ======================================================================= */
394
395 #if !HAVE_EXECVEAT
396 static inline int missing_execveat(int dirfd, const char *pathname,
397 char *const argv[], char *const envp[],
398 int flags) {
399 # if defined __NR_execveat && __NR_execveat >= 0
400 return syscall(__NR_execveat, dirfd, pathname, argv, envp, flags);
401 # else
402 errno = ENOSYS;
403 return -1;
404 # endif
405 }
406
407 # undef AT_EMPTY_PATH
408 # define AT_EMPTY_PATH 0x1000
409 # define execveat missing_execveat
410 #endif
411
412 /* ======================================================================= */
413
414 #if !HAVE_CLOSE_RANGE
415 static inline int missing_close_range(unsigned first_fd, unsigned end_fd, unsigned flags) {
416 # ifdef __NR_close_range
417 /* Kernel-side the syscall expects fds as unsigned integers (just like close() actually), while
418 * userspace exclusively uses signed integers for fds. glibc chose to expose it 1:1 however, hence we
419 * do so here too, even if we end up passing signed fds to it most of the time. */
420 return syscall(__NR_close_range,
421 first_fd,
422 end_fd,
423 flags);
424 # else
425 errno = ENOSYS;
426 return -1;
427 # endif
428 }
429
430 # define close_range missing_close_range
431 #endif
432
433 /* ======================================================================= */
434
435 #if !HAVE_MOUNT_SETATTR
436
437 #if !HAVE_STRUCT_MOUNT_ATTR
438 struct mount_attr {
439 uint64_t attr_set;
440 uint64_t attr_clr;
441 uint64_t propagation;
442 uint64_t userns_fd;
443 };
444 #else
445 struct mount_attr;
446 #endif
447
448 #ifndef MOUNT_ATTR_RDONLY
449 #define MOUNT_ATTR_RDONLY 0x00000001 /* Mount read-only */
450 #endif
451
452 #ifndef MOUNT_ATTR_NOSUID
453 #define MOUNT_ATTR_NOSUID 0x00000002 /* Ignore suid and sgid bits */
454 #endif
455
456 #ifndef MOUNT_ATTR_NODEV
457 #define MOUNT_ATTR_NODEV 0x00000004 /* Disallow access to device special files */
458 #endif
459
460 #ifndef MOUNT_ATTR_NOEXEC
461 #define MOUNT_ATTR_NOEXEC 0x00000008 /* Disallow program execution */
462 #endif
463
464 #ifndef MOUNT_ATTR__ATIME
465 #define MOUNT_ATTR__ATIME 0x00000070 /* Setting on how atime should be updated */
466 #endif
467
468 #ifndef MOUNT_ATTR_RELATIME
469 #define MOUNT_ATTR_RELATIME 0x00000000 /* - Update atime relative to mtime/ctime. */
470 #endif
471
472 #ifndef MOUNT_ATTR_NOATIME
473 #define MOUNT_ATTR_NOATIME 0x00000010 /* - Do not update access times. */
474 #endif
475
476 #ifndef MOUNT_ATTR_STRICTATIME
477 #define MOUNT_ATTR_STRICTATIME 0x00000020 /* - Always perform atime updates */
478 #endif
479
480 #ifndef MOUNT_ATTR_NODIRATIME
481 #define MOUNT_ATTR_NODIRATIME 0x00000080 /* Do not update directory access times */
482 #endif
483
484 #ifndef MOUNT_ATTR_IDMAP
485 #define MOUNT_ATTR_IDMAP 0x00100000 /* Idmap mount to @userns_fd in struct mount_attr. */
486 #endif
487
488 #ifndef MOUNT_ATTR_NOSYMFOLLOW
489 #define MOUNT_ATTR_NOSYMFOLLOW 0x00200000 /* Do not follow symlinks */
490 #endif
491
492 #ifndef MOUNT_ATTR_SIZE_VER0
493 #define MOUNT_ATTR_SIZE_VER0 32 /* sizeof first published struct */
494 #endif
495
496 #ifndef AT_RECURSIVE
497 #define AT_RECURSIVE 0x8000
498 #endif
499
500 static inline int missing_mount_setattr(
501 int dfd,
502 const char *path,
503 unsigned flags,
504 struct mount_attr *attr,
505 size_t size) {
506
507 # if defined __NR_mount_setattr && __NR_mount_setattr >= 0
508 return syscall(__NR_mount_setattr, dfd, path, flags, attr, size);
509 # else
510 errno = ENOSYS;
511 return -1;
512 # endif
513 }
514
515 # define mount_setattr missing_mount_setattr
516 #endif
517
518 /* ======================================================================= */
519
520 #if !HAVE_OPEN_TREE
521
522 #ifndef OPEN_TREE_CLONE
523 #define OPEN_TREE_CLONE 1
524 #endif
525
526 #ifndef OPEN_TREE_CLOEXEC
527 #define OPEN_TREE_CLOEXEC O_CLOEXEC
528 #endif
529
530 static inline int missing_open_tree(
531 int dfd,
532 const char *filename,
533 unsigned flags) {
534
535 # if defined __NR_open_tree && __NR_open_tree >= 0
536 return syscall(__NR_open_tree, dfd, filename, flags);
537 # else
538 errno = ENOSYS;
539 return -1;
540 # endif
541 }
542
543 # define open_tree missing_open_tree
544 #endif
545
546 /* ======================================================================= */
547
548 #ifndef MOVE_MOUNT_BENEATH
549 #define MOVE_MOUNT_BENEATH 0x00000200
550 #endif
551
552 #if !HAVE_MOVE_MOUNT
553
554 #ifndef MOVE_MOUNT_F_EMPTY_PATH
555 #define MOVE_MOUNT_F_EMPTY_PATH 0x00000004 /* Empty from path permitted */
556 #endif
557
558 #ifndef MOVE_MOUNT_T_EMPTY_PATH
559 #define MOVE_MOUNT_T_EMPTY_PATH 0x00000040 /* Empty to path permitted */
560 #endif
561
562 static inline int missing_move_mount(
563 int from_dfd,
564 const char *from_pathname,
565 int to_dfd,
566 const char *to_pathname,
567 unsigned flags) {
568
569 # if defined __NR_move_mount && __NR_move_mount >= 0
570 return syscall(__NR_move_mount, from_dfd, from_pathname, to_dfd, to_pathname, flags);
571 # else
572 errno = ENOSYS;
573 return -1;
574 # endif
575 }
576
577 # define move_mount missing_move_mount
578 #endif
579
580 /* ======================================================================= */
581
582 #if !HAVE_FSOPEN
583
584 #ifndef FSOPEN_CLOEXEC
585 #define FSOPEN_CLOEXEC 0x00000001
586 #endif
587
588 static inline int missing_fsopen(const char *fsname, unsigned flags) {
589 # if defined __NR_fsopen && __NR_fsopen >= 0
590 return syscall(__NR_fsopen, fsname, flags);
591 # else
592 errno = ENOSYS;
593 return -1;
594 # endif
595 }
596
597 # define fsopen missing_fsopen
598 #endif
599
600 /* ======================================================================= */
601
602 #if !HAVE_FSCONFIG
603
604 #ifndef FSCONFIG_SET_FLAG
605 #define FSCONFIG_SET_FLAG 0 /* Set parameter, supplying no value */
606 #endif
607
608 #ifndef FSCONFIG_SET_STRING
609 #define FSCONFIG_SET_STRING 1 /* Set parameter, supplying a string value */
610 #endif
611
612 #ifndef FSCONFIG_SET_FD
613 #define FSCONFIG_SET_FD 5 /* Set parameter, supplying an object by fd */
614 #endif
615
616 #ifndef FSCONFIG_CMD_CREATE
617 #define FSCONFIG_CMD_CREATE 6 /* Invoke superblock creation */
618 #endif
619
620 static inline int missing_fsconfig(int fd, unsigned cmd, const char *key, const void *value, int aux) {
621 # if defined __NR_fsconfig && __NR_fsconfig >= 0
622 return syscall(__NR_fsconfig, fd, cmd, key, value, aux);
623 # else
624 errno = ENOSYS;
625 return -1;
626 # endif
627 }
628
629 # define fsconfig missing_fsconfig
630 #endif
631
632 /* ======================================================================= */
633
634 #if !HAVE_FSMOUNT
635
636 #ifndef FSMOUNT_CLOEXEC
637 #define FSMOUNT_CLOEXEC 0x00000001
638 #endif
639
640 static inline int missing_fsmount(int fd, unsigned flags, unsigned ms_flags) {
641 # if defined __NR_fsmount && __NR_fsmount >= 0
642 return syscall(__NR_fsmount, fd, flags, ms_flags);
643 # else
644 errno = ENOSYS;
645 return -1;
646 # endif
647 }
648
649 # define fsmount missing_fsmount
650 #endif
651
652 /* ======================================================================= */
653
654 #if !HAVE_GETDENTS64
655
656 static inline ssize_t missing_getdents64(int fd, void *buffer, size_t length) {
657 # if defined __NR_getdents64 && __NR_getdents64 >= 0
658 return syscall(__NR_getdents64, fd, buffer, length);
659 # else
660 errno = ENOSYS;
661 return -1;
662 # endif
663 }
664
665 # define getdents64 missing_getdents64
666 #endif
667
668 /* ======================================================================= */
669
670 /* glibc does not provide clone() on ia64, only clone2(). Not only that, but it also doesn't provide a
671 * prototype, only the symbol in the shared library (it provides a prototype for clone(), but not the
672 * symbol in the shared library). */
673 #if defined(__ia64__)
674 int __clone2(int (*fn)(void *), void *stack_base, size_t stack_size, int flags, void *arg);
675 #define HAVE_CLONE 0
676 #else
677 /* We know that everywhere else clone() is available, so we don't bother with a meson check (that takes time
678 * at build time) and just define it. Once the kernel drops ia64 support, we can drop this too. */
679 #define HAVE_CLONE 1
680 #endif