chiark / gitweb /
machinectl/machined: implement "rename", "clone", "read-only" verbs for machine images
[elogind.git] / src / shared / missing.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6   This file is part of systemd.
7
8   Copyright 2010 Lennart Poettering
9
10   systemd is free software; you can redistribute it and/or modify it
11   under the terms of the GNU Lesser General Public License as published by
12   the Free Software Foundation; either version 2.1 of the License, or
13   (at your option) any later version.
14
15   systemd is distributed in the hope that it will be useful, but
16   WITHOUT ANY WARRANTY; without even the implied warranty of
17   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 /* Missing glibc definitions to access certain kernel APIs */
25
26 #include <sys/resource.h>
27 #include <sys/syscall.h>
28 #include <fcntl.h>
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <errno.h>
32 #include <linux/oom.h>
33 #include <linux/input.h>
34 #include <linux/if_link.h>
35 #include <linux/loop.h>
36 #include <linux/audit.h>
37 #include <linux/capability.h>
38
39 #ifdef HAVE_AUDIT
40 #include <libaudit.h>
41 #endif
42
43 #ifdef ARCH_MIPS
44 #include <asm/sgidefs.h>
45 #endif
46
47 #ifdef HAVE_LINUX_BTRFS_H
48 #include <linux/btrfs.h>
49 #endif
50
51 #include "macro.h"
52
53 #ifndef RLIMIT_RTTIME
54 #define RLIMIT_RTTIME 15
55 #endif
56
57 /* If RLIMIT_RTTIME is not defined, then we cannot use RLIMIT_NLIMITS as is */
58 #define _RLIMIT_MAX (RLIMIT_RTTIME+1 > RLIMIT_NLIMITS ? RLIMIT_RTTIME+1 : RLIMIT_NLIMITS)
59
60 #ifndef F_LINUX_SPECIFIC_BASE
61 #define F_LINUX_SPECIFIC_BASE 1024
62 #endif
63
64 #ifndef F_SETPIPE_SZ
65 #define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7)
66 #endif
67
68 #ifndef F_GETPIPE_SZ
69 #define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
70 #endif
71
72 #ifndef F_ADD_SEALS
73 #define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
74 #define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
75
76 #define F_SEAL_SEAL     0x0001  /* prevent further seals from being set */
77 #define F_SEAL_SHRINK   0x0002  /* prevent file from shrinking */
78 #define F_SEAL_GROW     0x0004  /* prevent file from growing */
79 #define F_SEAL_WRITE    0x0008  /* prevent writes */
80 #endif
81
82 #ifndef MFD_ALLOW_SEALING
83 #define MFD_ALLOW_SEALING 0x0002U
84 #endif
85
86 #ifndef MFD_CLOEXEC
87 #define MFD_CLOEXEC 0x0001U
88 #endif
89
90 #ifndef IP_FREEBIND
91 #define IP_FREEBIND 15
92 #endif
93
94 #ifndef OOM_SCORE_ADJ_MIN
95 #define OOM_SCORE_ADJ_MIN (-1000)
96 #endif
97
98 #ifndef OOM_SCORE_ADJ_MAX
99 #define OOM_SCORE_ADJ_MAX 1000
100 #endif
101
102 #ifndef AUDIT_SERVICE_START
103 #define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
104 #endif
105
106 #ifndef AUDIT_SERVICE_STOP
107 #define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
108 #endif
109
110 #ifndef TIOCVHANGUP
111 #define TIOCVHANGUP 0x5437
112 #endif
113
114 #ifndef IP_TRANSPARENT
115 #define IP_TRANSPARENT 19
116 #endif
117
118 #ifndef SOL_NETLINK
119 #define SOL_NETLINK 270
120 #endif
121
122 #if !HAVE_DECL_PIVOT_ROOT
123 static inline int pivot_root(const char *new_root, const char *put_old) {
124         return syscall(SYS_pivot_root, new_root, put_old);
125 }
126 #endif
127
128 #ifndef __NR_memfd_create
129 #  if defined __x86_64__
130 #    define __NR_memfd_create 319
131 #  elif defined __arm__
132 #    define __NR_memfd_create 385
133 #  elif defined _MIPS_SIM
134 #    if _MIPS_SIM == _MIPS_SIM_ABI32
135 #      define __NR_memfd_create 4354
136 #    endif
137 #    if _MIPS_SIM == _MIPS_SIM_NABI32
138 #      define __NR_memfd_create 6318
139 #    endif
140 #    if _MIPS_SIM == _MIPS_SIM_ABI64
141 #      define __NR_memfd_create 5314
142 #    endif
143 #  elif defined __i386__
144 #    define __NR_memfd_create 356
145 #  else
146 #    warning "__NR_memfd_create unknown for your architecture"
147 #    define __NR_memfd_create 0xffffffff
148 #  endif
149 #endif
150
151 #ifndef HAVE_MEMFD_CREATE
152 static inline int memfd_create(const char *name, unsigned int flags) {
153         return syscall(__NR_memfd_create, name, flags);
154 }
155 #endif
156
157 #ifndef __NR_getrandom
158 #  if defined __x86_64__
159 #    define __NR_getrandom 318
160 #  elif defined(__i386__)
161 #    define __NR_getrandom 355
162 #  elif defined(__arm__) || defined(__aarch64__)
163 #    define __NR_getrandom 384
164 #  elif defined(__ia64__)
165 #    define __NR_getrandom 1339
166 #  elif defined(__m68k__)
167 #    define __NR_getrandom 352
168 #  elif defined(__s390x__)
169 #    define __NR_getrandom 349
170 #  else
171 #    warning "__NR_getrandom unknown for your architecture"
172 #    define __NR_getrandom 0xffffffff
173 #  endif
174 #endif
175
176 #if !HAVE_DECL_GETRANDOM
177 static inline int getrandom(void *buffer, size_t count, unsigned flags) {
178         return syscall(__NR_getrandom, buffer, count, flags);
179 }
180 #endif
181
182 #ifndef GRND_NONBLOCK
183 #define GRND_NONBLOCK 0x0001
184 #endif
185
186 #ifndef GRND_RANDOM
187 #define GRND_RANDOM 0x0002
188 #endif
189
190 #ifndef BTRFS_IOCTL_MAGIC
191 #define BTRFS_IOCTL_MAGIC 0x94
192 #endif
193
194 #ifndef BTRFS_PATH_NAME_MAX
195 #define BTRFS_PATH_NAME_MAX 4087
196 #endif
197
198 #ifndef BTRFS_DEVICE_PATH_NAME_MAX
199 #define BTRFS_DEVICE_PATH_NAME_MAX 1024
200 #endif
201
202 #ifndef BTRFS_FSID_SIZE
203 #define BTRFS_FSID_SIZE 16
204 #endif
205
206 #ifndef BTRFS_UUID_SIZE
207 #define BTRFS_UUID_SIZE 16
208 #endif
209
210 #ifndef HAVE_LINUX_BTRFS_H
211 struct btrfs_ioctl_vol_args {
212         int64_t fd;
213         char name[BTRFS_PATH_NAME_MAX + 1];
214 };
215
216 struct btrfs_ioctl_dev_info_args {
217         uint64_t devid;                         /* in/out */
218         uint8_t uuid[BTRFS_UUID_SIZE];          /* in/out */
219         uint64_t bytes_used;                    /* out */
220         uint64_t total_bytes;                   /* out */
221         uint64_t unused[379];                   /* pad to 4k */
222         char path[BTRFS_DEVICE_PATH_NAME_MAX];  /* out */
223 };
224
225 struct btrfs_ioctl_fs_info_args {
226         uint64_t max_id;                        /* out */
227         uint64_t num_devices;                   /* out */
228         uint8_t fsid[BTRFS_FSID_SIZE];          /* out */
229         uint64_t reserved[124];                 /* pad to 1k */
230 };
231 #endif
232
233 #ifndef BTRFS_IOC_DEFRAG
234 #define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
235                                  struct btrfs_ioctl_vol_args)
236 #endif
237
238 #ifndef BTRFS_IOC_DEV_INFO
239 #define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
240                                  struct btrfs_ioctl_dev_info_args)
241 #endif
242
243 #ifndef BTRFS_IOC_FS_INFO
244 #define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
245                                  struct btrfs_ioctl_fs_info_args)
246 #endif
247
248 #ifndef BTRFS_IOC_DEVICES_READY
249 #define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, \
250                                  struct btrfs_ioctl_vol_args)
251 #endif
252
253 #ifndef BTRFS_FIRST_FREE_OBJECTID
254 #define BTRFS_FIRST_FREE_OBJECTID 256
255 #endif
256
257 #ifndef BTRFS_ROOT_ITEM_KEY
258 #define BTRFS_ROOT_ITEM_KEY 132
259 #endif
260
261 #ifndef BTRFS_SUPER_MAGIC
262 #define BTRFS_SUPER_MAGIC 0x9123683E
263 #endif
264
265 #ifndef MS_MOVE
266 #define MS_MOVE 8192
267 #endif
268
269 #ifndef MS_PRIVATE
270 #define MS_PRIVATE  (1 << 18)
271 #endif
272
273 #if !HAVE_DECL_GETTID
274 static inline pid_t gettid(void) {
275         return (pid_t) syscall(SYS_gettid);
276 }
277 #endif
278
279 #ifndef SCM_SECURITY
280 #define SCM_SECURITY 0x03
281 #endif
282
283 #ifndef MS_STRICTATIME
284 #define MS_STRICTATIME (1<<24)
285 #endif
286
287 #ifndef MS_REC
288 #define MS_REC 16384
289 #endif
290
291 #ifndef MS_SHARED
292 #define MS_SHARED (1<<20)
293 #endif
294
295 #ifndef PR_SET_NO_NEW_PRIVS
296 #define PR_SET_NO_NEW_PRIVS 38
297 #endif
298
299 #ifndef PR_SET_CHILD_SUBREAPER
300 #define PR_SET_CHILD_SUBREAPER 36
301 #endif
302
303 #ifndef MAX_HANDLE_SZ
304 #define MAX_HANDLE_SZ 128
305 #endif
306
307 #ifndef __NR_name_to_handle_at
308 #  if defined(__x86_64__)
309 #    define __NR_name_to_handle_at 303
310 #  elif defined(__i386__)
311 #    define __NR_name_to_handle_at 341
312 #  elif defined(__arm__)
313 #    define __NR_name_to_handle_at 370
314 #  elif defined(__powerpc__)
315 #    define __NR_name_to_handle_at 345
316 #  else
317 #    error "__NR_name_to_handle_at is not defined"
318 #  endif
319 #endif
320
321 #if !HAVE_DECL_NAME_TO_HANDLE_AT
322 struct file_handle {
323         unsigned int handle_bytes;
324         int handle_type;
325         unsigned char f_handle[0];
326 };
327
328 static inline int name_to_handle_at(int fd, const char *name, struct file_handle *handle, int *mnt_id, int flags) {
329         return syscall(__NR_name_to_handle_at, fd, name, handle, mnt_id, flags);
330 }
331 #endif
332
333 #ifndef HAVE_SECURE_GETENV
334 #  ifdef HAVE___SECURE_GETENV
335 #    define secure_getenv __secure_getenv
336 #  else
337 #    error "neither secure_getenv nor __secure_getenv are available"
338 #  endif
339 #endif
340
341 #ifndef CIFS_MAGIC_NUMBER
342 #  define CIFS_MAGIC_NUMBER 0xFF534D42
343 #endif
344
345 #ifndef TFD_TIMER_CANCEL_ON_SET
346 #  define TFD_TIMER_CANCEL_ON_SET (1 << 1)
347 #endif
348
349 #ifndef SO_REUSEPORT
350 #  define SO_REUSEPORT 15
351 #endif
352
353 #ifndef EVIOCREVOKE
354 #  define EVIOCREVOKE _IOW('E', 0x91, int)
355 #endif
356
357 #ifndef DRM_IOCTL_SET_MASTER
358 #  define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
359 #endif
360
361 #ifndef DRM_IOCTL_DROP_MASTER
362 #  define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
363 #endif
364
365 #if defined(__i386__) || defined(__x86_64__)
366
367 /* The precise definition of __O_TMPFILE is arch specific, so let's
368  * just define this on x86 where we know the value. */
369
370 #ifndef __O_TMPFILE
371 #define __O_TMPFILE     020000000
372 #endif
373
374 /* a horrid kludge trying to make sure that this will fail on old kernels */
375 #ifndef O_TMPFILE
376 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
377 #endif
378
379 #endif
380
381 #ifndef __NR_setns
382 #  if defined(__x86_64__)
383 #    define __NR_setns 308
384 #  elif defined(__i386__)
385 #    define __NR_setns 346
386 #  else
387 #    error "__NR_setns is not defined"
388 #  endif
389 #endif
390
391 #if !HAVE_DECL_SETNS
392 static inline int setns(int fd, int nstype) {
393         return syscall(__NR_setns, fd, nstype);
394 }
395 #endif
396
397 #if !HAVE_DECL_LO_FLAGS_PARTSCAN
398 #define LO_FLAGS_PARTSCAN 8
399 #endif
400
401 #ifndef LOOP_CTL_REMOVE
402 #define LOOP_CTL_REMOVE 0x4C81
403 #endif
404
405 #ifndef LOOP_CTL_GET_FREE
406 #define LOOP_CTL_GET_FREE 0x4C82
407 #endif
408
409 #if !HAVE_DECL_IFLA_MACVLAN_FLAGS
410 #define IFLA_MACVLAN_UNSPEC 0
411 #define IFLA_MACVLAN_MODE 1
412 #define IFLA_MACVLAN_FLAGS 2
413 #define __IFLA_MACVLAN_MAX 3
414
415 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
416 #endif
417
418 #if !HAVE_DECL_IFLA_VTI_REMOTE
419 #define IFLA_VTI_UNSPEC 0
420 #define IFLA_VTI_LINK 1
421 #define IFLA_VTI_IKEY 2
422 #define IFLA_VTI_OKEY 3
423 #define IFLA_VTI_LOCAL 4
424 #define IFLA_VTI_REMOTE 5
425 #define __IFLA_VTI_MAX 6
426
427 #define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
428 #endif
429
430 #if !HAVE_DECL_IFLA_PHYS_PORT_ID
431 #undef IFLA_PROMISCUITY
432 #define IFLA_PROMISCUITY 30
433 #define IFLA_NUM_TX_QUEUES 31
434 #define IFLA_NUM_RX_QUEUES 32
435 #define IFLA_CARRIER 33
436 #define IFLA_PHYS_PORT_ID 34
437 #define __IFLA_MAX 35
438
439 #define IFLA_MAX (__IFLA_MAX - 1)
440 #endif
441
442 #if !HAVE_DECL_IFLA_BOND_AD_INFO
443 #define IFLA_BOND_UNSPEC 0
444 #define IFLA_BOND_MODE 1
445 #define IFLA_BOND_ACTIVE_SLAVE 2
446 #define IFLA_BOND_MIIMON 3
447 #define IFLA_BOND_UPDELAY 4
448 #define IFLA_BOND_DOWNDELAY 5
449 #define IFLA_BOND_USE_CARRIER 6
450 #define IFLA_BOND_ARP_INTERVAL 7
451 #define IFLA_BOND_ARP_IP_TARGET 8
452 #define IFLA_BOND_ARP_VALIDATE 9
453 #define IFLA_BOND_ARP_ALL_TARGETS 10
454 #define IFLA_BOND_PRIMARY 11
455 #define IFLA_BOND_PRIMARY_RESELECT 12
456 #define IFLA_BOND_FAIL_OVER_MAC 13
457 #define IFLA_BOND_XMIT_HASH_POLICY 14
458 #define IFLA_BOND_RESEND_IGMP 15
459 #define IFLA_BOND_NUM_PEER_NOTIF 16
460 #define IFLA_BOND_ALL_SLAVES_ACTIVE 17
461 #define IFLA_BOND_MIN_LINKS 18
462 #define IFLA_BOND_LP_INTERVAL 19
463 #define IFLA_BOND_PACKETS_PER_SLAVE 20
464 #define IFLA_BOND_AD_LACP_RATE 21
465 #define IFLA_BOND_AD_SELECT 22
466 #define IFLA_BOND_AD_INFO 23
467 #define __IFLA_BOND_MAX 24
468
469 #define IFLA_BOND_MAX   (__IFLA_BOND_MAX - 1)
470 #endif
471
472 #if !HAVE_DECL_IFLA_VLAN_PROTOCOL
473 #define IFLA_VLAN_UNSPEC 0
474 #define IFLA_VLAN_ID 1
475 #define IFLA_VLAN_FLAGS 2
476 #define IFLA_VLAN_EGRESS_QOS 3
477 #define IFLA_VLAN_INGRESS_QOS 4
478 #define IFLA_VLAN_PROTOCOL 5
479 #define __IFLA_VLAN_MAX 6
480
481 #define IFLA_VLAN_MAX   (__IFLA_VLAN_MAX - 1)
482 #endif
483
484 #if !HAVE_DECL_IFLA_VXLAN_LOCAL6
485 #define IFLA_VXLAN_UNSPEC 0
486 #define IFLA_VXLAN_ID 1
487 #define IFLA_VXLAN_GROUP 2
488 #define IFLA_VXLAN_LINK 3
489 #define IFLA_VXLAN_LOCAL 4
490 #define IFLA_VXLAN_TTL 5
491 #define IFLA_VXLAN_TOS 6
492 #define IFLA_VXLAN_LEARNING 7
493 #define IFLA_VXLAN_AGEING 8
494 #define IFLA_VXLAN_LIMIT 9
495 #define IFLA_VXLAN_PORT_RANGE 10
496 #define IFLA_VXLAN_PROXY 11
497 #define IFLA_VXLAN_RSC 12
498 #define IFLA_VXLAN_L2MISS 13
499 #define IFLA_VXLAN_L3MISS 14
500 #define IFLA_VXLAN_PORT 15
501 #define IFLA_VXLAN_GROUP6 16
502 #define IFLA_VXLAN_LOCAL6 17
503 #define __IFLA_VXLAN_MAX 18
504
505 #define IFLA_VXLAN_MAX  (__IFLA_VXLAN_MAX - 1)
506 #endif
507
508 #if !HAVE_DECL_IFLA_IPTUN_6RD_RELAY_PREFIXLEN
509 #define IFLA_IPTUN_UNSPEC 0
510 #define IFLA_IPTUN_LINK 1
511 #define IFLA_IPTUN_LOCAL 2
512 #define IFLA_IPTUN_REMOTE 3
513 #define IFLA_IPTUN_TTL 4
514 #define IFLA_IPTUN_TOS 5
515 #define IFLA_IPTUN_ENCAP_LIMIT 6
516 #define IFLA_IPTUN_FLOWINFO 7
517 #define IFLA_IPTUN_FLAGS 8
518 #define IFLA_IPTUN_PROTO 9
519 #define IFLA_IPTUN_PMTUDISC 10
520 #define IFLA_IPTUN_6RD_PREFIX 11
521 #define IFLA_IPTUN_6RD_RELAY_PREFIX 12
522 #define IFLA_IPTUN_6RD_PREFIXLEN 13
523 #define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
524 #define __IFLA_IPTUN_MAX 15
525
526 #define IFLA_IPTUN_MAX  (__IFLA_IPTUN_MAX - 1)
527 #endif
528
529 #if !HAVE_DECL_IFLA_BRIDGE_VLAN_INFO
530 #define IFLA_BRIDGE_FLAGS 0
531 #define IFLA_BRIDGE_MODE 1
532 #define IFLA_BRIDGE_VLAN_INFO 2
533 #define __IFLA_BRIDGE_MAX 3
534
535 #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
536 #endif
537
538 #if !HAVE_DECL_IFLA_BRPORT_UNICAST_FLOOD
539 #define IFLA_BRPORT_UNSPEC 0
540 #define IFLA_BRPORT_STATE 1
541 #define IFLA_BRPORT_PRIORITY 2
542 #define IFLA_BRPORT_COST 3
543 #define IFLA_BRPORT_MODE 4
544 #define IFLA_BRPORT_GUARD 5
545 #define IFLA_BRPORT_PROTECT 6
546 #define IFLA_BRPORT_FAST_LEAVE 7
547 #define IFLA_BRPORT_LEARNING 8
548 #define IFLA_BRPORT_UNICAST_FLOOD 9
549 #define __IFLA_BRPORT_MAX 10
550
551 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
552 #endif
553
554 #ifndef IPV6_UNICAST_IF
555 #define IPV6_UNICAST_IF 76
556 #endif
557
558 #ifndef IFF_MULTI_QUEUE
559 #define IFF_MULTI_QUEUE 0x100
560 #endif
561
562 #ifndef IFF_LOWER_UP
563 #define IFF_LOWER_UP 0x10000
564 #endif
565
566 #ifndef IFF_DORMANT
567 #define IFF_DORMANT 0x20000
568 #endif
569
570 #ifndef BOND_XMIT_POLICY_ENCAP23
571 #define BOND_XMIT_POLICY_ENCAP23 3
572 #endif
573
574 #ifndef BOND_XMIT_POLICY_ENCAP34
575 #define BOND_XMIT_POLICY_ENCAP34 4
576 #endif
577
578 #ifndef NET_ADDR_RANDOM
579 #  define NET_ADDR_RANDOM 1
580 #endif
581
582 #ifndef NET_NAME_UNKNOWN
583 #  define NET_NAME_UNKNOWN 0
584 #endif
585
586 #ifndef NET_NAME_ENUM
587 #  define NET_NAME_ENUM 1
588 #endif
589
590 #ifndef NET_NAME_PREDICTABLE
591 #  define NET_NAME_PREDICTABLE 2
592 #endif
593
594 #ifndef NET_NAME_USER
595 #  define NET_NAME_USER 3
596 #endif
597
598 #ifndef NET_NAME_RENAMED
599 #  define NET_NAME_RENAMED 4
600 #endif
601
602 #ifndef BPF_XOR
603 #  define BPF_XOR 0xa0
604 #endif
605
606 /* Note that LOOPBACK_IFINDEX is currently not exported by the
607  * kernel/glibc, but hardcoded internally by the kernel.  However, as
608  * it is exported to userspace indirectly via rtnetlink and the
609  * ioctls, and made use of widely we define it here too, in a way that
610  * is compatible with the kernel's internal definition. */
611 #ifndef LOOPBACK_IFINDEX
612 #define LOOPBACK_IFINDEX 1
613 #endif
614
615 #ifndef MAX_AUDIT_MESSAGE_LENGTH
616 #define MAX_AUDIT_MESSAGE_LENGTH 8970
617 #endif
618
619 #ifndef AUDIT_NLGRP_MAX
620 #define AUDIT_NLGRP_READLOG 1
621 #endif
622
623 #ifndef CAP_MAC_OVERRIDE
624 #define CAP_MAC_OVERRIDE 32
625 #endif
626
627 #ifndef CAP_MAC_ADMIN
628 #define CAP_MAC_ADMIN 33
629 #endif
630
631 #ifndef CAP_SYSLOG
632 #define CAP_SYSLOG 34
633 #endif
634
635 #ifndef CAP_WAKE_ALARM
636 #define CAP_WAKE_ALARM 35
637 #endif
638
639 #ifndef CAP_BLOCK_SUSPEND
640 #define CAP_BLOCK_SUSPEND 36
641 #endif
642
643 #ifndef CAP_AUDIT_READ
644 #define CAP_AUDIT_READ 37
645 #endif
646
647 static inline int raw_clone(unsigned long flags, void *child_stack) {
648 #if defined(__s390__) || defined(__CRIS__)
649         /* On s390 and cris the order of the first and second arguments
650          * of the raw clone() system call is reversed. */
651         return (int) syscall(__NR_clone, child_stack, flags);
652 #else
653         return (int) syscall(__NR_clone, flags, child_stack);
654 #endif
655 }
656
657 static inline pid_t raw_getpid(void) {
658         return (pid_t) syscall(__NR_getpid);
659 }
660
661 #if !HAVE_DECL_RENAMEAT2
662 static inline int renameat2(int oldfd, const char *oldname, int newfd, const char *newname, unsigned flags) {
663         return syscall(__NR_renameat2, oldfd, oldname, newfd, newname, flags);
664 }
665 #endif
666
667 #ifndef RENAME_NOREPLACE
668 #define RENAME_NOREPLACE (1 << 0)
669 #endif