chiark / gitweb /
verbs: fix typo in error message
[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_SUPER_MAGIC
254 #define BTRFS_SUPER_MAGIC 0x9123683E
255 #endif
256
257 #ifndef MS_MOVE
258 #define MS_MOVE 8192
259 #endif
260
261 #ifndef MS_PRIVATE
262 #define MS_PRIVATE  (1 << 18)
263 #endif
264
265 #if !HAVE_DECL_GETTID
266 static inline pid_t gettid(void) {
267         return (pid_t) syscall(SYS_gettid);
268 }
269 #endif
270
271 #ifndef SCM_SECURITY
272 #define SCM_SECURITY 0x03
273 #endif
274
275 #ifndef MS_STRICTATIME
276 #define MS_STRICTATIME (1<<24)
277 #endif
278
279 #ifndef MS_REC
280 #define MS_REC 16384
281 #endif
282
283 #ifndef MS_SHARED
284 #define MS_SHARED (1<<20)
285 #endif
286
287 #ifndef PR_SET_NO_NEW_PRIVS
288 #define PR_SET_NO_NEW_PRIVS 38
289 #endif
290
291 #ifndef PR_SET_CHILD_SUBREAPER
292 #define PR_SET_CHILD_SUBREAPER 36
293 #endif
294
295 #ifndef MAX_HANDLE_SZ
296 #define MAX_HANDLE_SZ 128
297 #endif
298
299 #ifndef __NR_name_to_handle_at
300 #  if defined(__x86_64__)
301 #    define __NR_name_to_handle_at 303
302 #  elif defined(__i386__)
303 #    define __NR_name_to_handle_at 341
304 #  elif defined(__arm__)
305 #    define __NR_name_to_handle_at 370
306 #  elif defined(__powerpc__)
307 #    define __NR_name_to_handle_at 345
308 #  else
309 #    error "__NR_name_to_handle_at is not defined"
310 #  endif
311 #endif
312
313 #if !HAVE_DECL_NAME_TO_HANDLE_AT
314 struct file_handle {
315         unsigned int handle_bytes;
316         int handle_type;
317         unsigned char f_handle[0];
318 };
319
320 static inline int name_to_handle_at(int fd, const char *name, struct file_handle *handle, int *mnt_id, int flags) {
321         return syscall(__NR_name_to_handle_at, fd, name, handle, mnt_id, flags);
322 }
323 #endif
324
325 #ifndef HAVE_SECURE_GETENV
326 #  ifdef HAVE___SECURE_GETENV
327 #    define secure_getenv __secure_getenv
328 #  else
329 #    error "neither secure_getenv nor __secure_getenv are available"
330 #  endif
331 #endif
332
333 #ifndef CIFS_MAGIC_NUMBER
334 #  define CIFS_MAGIC_NUMBER 0xFF534D42
335 #endif
336
337 #ifndef TFD_TIMER_CANCEL_ON_SET
338 #  define TFD_TIMER_CANCEL_ON_SET (1 << 1)
339 #endif
340
341 #ifndef SO_REUSEPORT
342 #  define SO_REUSEPORT 15
343 #endif
344
345 #ifndef EVIOCREVOKE
346 #  define EVIOCREVOKE _IOW('E', 0x91, int)
347 #endif
348
349 #ifndef DRM_IOCTL_SET_MASTER
350 #  define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
351 #endif
352
353 #ifndef DRM_IOCTL_DROP_MASTER
354 #  define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
355 #endif
356
357 #if defined(__i386__) || defined(__x86_64__)
358
359 /* The precise definition of __O_TMPFILE is arch specific, so let's
360  * just define this on x86 where we know the value. */
361
362 #ifndef __O_TMPFILE
363 #define __O_TMPFILE     020000000
364 #endif
365
366 /* a horrid kludge trying to make sure that this will fail on old kernels */
367 #ifndef O_TMPFILE
368 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
369 #endif
370
371 #endif
372
373 #ifndef __NR_setns
374 #  if defined(__x86_64__)
375 #    define __NR_setns 308
376 #  elif defined(__i386__)
377 #    define __NR_setns 346
378 #  else
379 #    error "__NR_setns is not defined"
380 #  endif
381 #endif
382
383 #if !HAVE_DECL_SETNS
384 static inline int setns(int fd, int nstype) {
385         return syscall(__NR_setns, fd, nstype);
386 }
387 #endif
388
389 #if !HAVE_DECL_LO_FLAGS_PARTSCAN
390 #define LO_FLAGS_PARTSCAN 8
391 #endif
392
393 #ifndef LOOP_CTL_REMOVE
394 #define LOOP_CTL_REMOVE 0x4C81
395 #endif
396
397 #ifndef LOOP_CTL_GET_FREE
398 #define LOOP_CTL_GET_FREE 0x4C82
399 #endif
400
401 #if !HAVE_DECL_IFLA_MACVLAN_FLAGS
402 #define IFLA_MACVLAN_UNSPEC 0
403 #define IFLA_MACVLAN_MODE 1
404 #define IFLA_MACVLAN_FLAGS 2
405 #define __IFLA_MACVLAN_MAX 3
406
407 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
408 #endif
409
410 #if !HAVE_DECL_IFLA_VTI_REMOTE
411 #define IFLA_VTI_UNSPEC 0
412 #define IFLA_VTI_LINK 1
413 #define IFLA_VTI_IKEY 2
414 #define IFLA_VTI_OKEY 3
415 #define IFLA_VTI_LOCAL 4
416 #define IFLA_VTI_REMOTE 5
417 #define __IFLA_VTI_MAX 6
418
419 #define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
420 #endif
421
422 #if !HAVE_DECL_IFLA_PHYS_PORT_ID
423 #undef IFLA_PROMISCUITY
424 #define IFLA_PROMISCUITY 30
425 #define IFLA_NUM_TX_QUEUES 31
426 #define IFLA_NUM_RX_QUEUES 32
427 #define IFLA_CARRIER 33
428 #define IFLA_PHYS_PORT_ID 34
429 #define __IFLA_MAX 35
430
431 #define IFLA_MAX (__IFLA_MAX - 1)
432 #endif
433
434 #if !HAVE_DECL_IFLA_BOND_AD_INFO
435 #define IFLA_BOND_UNSPEC 0
436 #define IFLA_BOND_MODE 1
437 #define IFLA_BOND_ACTIVE_SLAVE 2
438 #define IFLA_BOND_MIIMON 3
439 #define IFLA_BOND_UPDELAY 4
440 #define IFLA_BOND_DOWNDELAY 5
441 #define IFLA_BOND_USE_CARRIER 6
442 #define IFLA_BOND_ARP_INTERVAL 7
443 #define IFLA_BOND_ARP_IP_TARGET 8
444 #define IFLA_BOND_ARP_VALIDATE 9
445 #define IFLA_BOND_ARP_ALL_TARGETS 10
446 #define IFLA_BOND_PRIMARY 11
447 #define IFLA_BOND_PRIMARY_RESELECT 12
448 #define IFLA_BOND_FAIL_OVER_MAC 13
449 #define IFLA_BOND_XMIT_HASH_POLICY 14
450 #define IFLA_BOND_RESEND_IGMP 15
451 #define IFLA_BOND_NUM_PEER_NOTIF 16
452 #define IFLA_BOND_ALL_SLAVES_ACTIVE 17
453 #define IFLA_BOND_MIN_LINKS 18
454 #define IFLA_BOND_LP_INTERVAL 19
455 #define IFLA_BOND_PACKETS_PER_SLAVE 20
456 #define IFLA_BOND_AD_LACP_RATE 21
457 #define IFLA_BOND_AD_SELECT 22
458 #define IFLA_BOND_AD_INFO 23
459 #define __IFLA_BOND_MAX 24
460
461 #define IFLA_BOND_MAX   (__IFLA_BOND_MAX - 1)
462 #endif
463
464 #if !HAVE_DECL_IFLA_VLAN_PROTOCOL
465 #define IFLA_VLAN_UNSPEC 0
466 #define IFLA_VLAN_ID 1
467 #define IFLA_VLAN_FLAGS 2
468 #define IFLA_VLAN_EGRESS_QOS 3
469 #define IFLA_VLAN_INGRESS_QOS 4
470 #define IFLA_VLAN_PROTOCOL 5
471 #define __IFLA_VLAN_MAX 6
472
473 #define IFLA_VLAN_MAX   (__IFLA_VLAN_MAX - 1)
474 #endif
475
476 #if !HAVE_DECL_IFLA_VXLAN_LOCAL6
477 #define IFLA_VXLAN_UNSPEC 0
478 #define IFLA_VXLAN_ID 1
479 #define IFLA_VXLAN_GROUP 2
480 #define IFLA_VXLAN_LINK 3
481 #define IFLA_VXLAN_LOCAL 4
482 #define IFLA_VXLAN_TTL 5
483 #define IFLA_VXLAN_TOS 6
484 #define IFLA_VXLAN_LEARNING 7
485 #define IFLA_VXLAN_AGEING 8
486 #define IFLA_VXLAN_LIMIT 9
487 #define IFLA_VXLAN_PORT_RANGE 10
488 #define IFLA_VXLAN_PROXY 11
489 #define IFLA_VXLAN_RSC 12
490 #define IFLA_VXLAN_L2MISS 13
491 #define IFLA_VXLAN_L3MISS 14
492 #define IFLA_VXLAN_PORT 15
493 #define IFLA_VXLAN_GROUP6 16
494 #define IFLA_VXLAN_LOCAL6 17
495 #define __IFLA_VXLAN_MAX 18
496
497 #define IFLA_VXLAN_MAX  (__IFLA_VXLAN_MAX - 1)
498 #endif
499
500 #if !HAVE_DECL_IFLA_IPTUN_6RD_RELAY_PREFIXLEN
501 #define IFLA_IPTUN_UNSPEC 0
502 #define IFLA_IPTUN_LINK 1
503 #define IFLA_IPTUN_LOCAL 2
504 #define IFLA_IPTUN_REMOTE 3
505 #define IFLA_IPTUN_TTL 4
506 #define IFLA_IPTUN_TOS 5
507 #define IFLA_IPTUN_ENCAP_LIMIT 6
508 #define IFLA_IPTUN_FLOWINFO 7
509 #define IFLA_IPTUN_FLAGS 8
510 #define IFLA_IPTUN_PROTO 9
511 #define IFLA_IPTUN_PMTUDISC 10
512 #define IFLA_IPTUN_6RD_PREFIX 11
513 #define IFLA_IPTUN_6RD_RELAY_PREFIX 12
514 #define IFLA_IPTUN_6RD_PREFIXLEN 13
515 #define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
516 #define __IFLA_IPTUN_MAX 15
517
518 #define IFLA_IPTUN_MAX  (__IFLA_IPTUN_MAX - 1)
519 #endif
520
521 #if !HAVE_DECL_IFLA_BRIDGE_VLAN_INFO
522 #define IFLA_BRIDGE_FLAGS 0
523 #define IFLA_BRIDGE_MODE 1
524 #define IFLA_BRIDGE_VLAN_INFO 2
525 #define __IFLA_BRIDGE_MAX 3
526
527 #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
528 #endif
529
530 #if !HAVE_DECL_IFLA_BRPORT_UNICAST_FLOOD
531 #define IFLA_BRPORT_UNSPEC 0
532 #define IFLA_BRPORT_STATE 1
533 #define IFLA_BRPORT_PRIORITY 2
534 #define IFLA_BRPORT_COST 3
535 #define IFLA_BRPORT_MODE 4
536 #define IFLA_BRPORT_GUARD 5
537 #define IFLA_BRPORT_PROTECT 6
538 #define IFLA_BRPORT_FAST_LEAVE 7
539 #define IFLA_BRPORT_LEARNING 8
540 #define IFLA_BRPORT_UNICAST_FLOOD 9
541 #define __IFLA_BRPORT_MAX 10
542
543 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
544 #endif
545
546 #ifndef IPV6_UNICAST_IF
547 #define IPV6_UNICAST_IF 76
548 #endif
549
550 #ifndef IFF_MULTI_QUEUE
551 #define IFF_MULTI_QUEUE 0x100
552 #endif
553
554 #ifndef IFF_LOWER_UP
555 #define IFF_LOWER_UP 0x10000
556 #endif
557
558 #ifndef IFF_DORMANT
559 #define IFF_DORMANT 0x20000
560 #endif
561
562 #ifndef BOND_XMIT_POLICY_ENCAP23
563 #define BOND_XMIT_POLICY_ENCAP23 3
564 #endif
565
566 #ifndef BOND_XMIT_POLICY_ENCAP34
567 #define BOND_XMIT_POLICY_ENCAP34 4
568 #endif
569
570 #ifndef NET_ADDR_RANDOM
571 #  define NET_ADDR_RANDOM 1
572 #endif
573
574 #ifndef NET_NAME_UNKNOWN
575 #  define NET_NAME_UNKNOWN 0
576 #endif
577
578 #ifndef NET_NAME_ENUM
579 #  define NET_NAME_ENUM 1
580 #endif
581
582 #ifndef NET_NAME_PREDICTABLE
583 #  define NET_NAME_PREDICTABLE 2
584 #endif
585
586 #ifndef NET_NAME_USER
587 #  define NET_NAME_USER 3
588 #endif
589
590 #ifndef NET_NAME_RENAMED
591 #  define NET_NAME_RENAMED 4
592 #endif
593
594 #ifndef BPF_XOR
595 #  define BPF_XOR 0xa0
596 #endif
597
598 /* Note that LOOPBACK_IFINDEX is currently not exported by the
599  * kernel/glibc, but hardcoded internally by the kernel.  However, as
600  * it is exported to userspace indirectly via rtnetlink and the
601  * ioctls, and made use of widely we define it here too, in a way that
602  * is compatible with the kernel's internal definition. */
603 #ifndef LOOPBACK_IFINDEX
604 #define LOOPBACK_IFINDEX 1
605 #endif
606
607 #ifndef MAX_AUDIT_MESSAGE_LENGTH
608 #define MAX_AUDIT_MESSAGE_LENGTH 8970
609 #endif
610
611 #ifndef AUDIT_NLGRP_MAX
612 #define AUDIT_NLGRP_READLOG 1
613 #endif
614
615 #ifndef CAP_MAC_OVERRIDE
616 #define CAP_MAC_OVERRIDE 32
617 #endif
618
619 #ifndef CAP_MAC_ADMIN
620 #define CAP_MAC_ADMIN 33
621 #endif
622
623 #ifndef CAP_SYSLOG
624 #define CAP_SYSLOG 34
625 #endif
626
627 #ifndef CAP_WAKE_ALARM
628 #define CAP_WAKE_ALARM 35
629 #endif
630
631 #ifndef CAP_BLOCK_SUSPEND
632 #define CAP_BLOCK_SUSPEND 36
633 #endif
634
635 #ifndef CAP_AUDIT_READ
636 #define CAP_AUDIT_READ 37
637 #endif
638
639 static inline int raw_clone(unsigned long flags, void *child_stack) {
640 #if defined(__s390__) || defined(__CRIS__)
641         /* On s390 and cris the order of the first and second arguments
642          * of the raw clone() system call is reversed. */
643         return (int) syscall(__NR_clone, child_stack, flags);
644 #else
645         return (int) syscall(__NR_clone, flags, child_stack);
646 #endif
647 }
648
649 static inline pid_t raw_getpid(void) {
650         return (pid_t) syscall(__NR_getpid);
651 }