]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/missing.h
import: prefer usec_t over time_t
[thirdparty/systemd.git] / src / shared / missing.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
15ae422b 2
c2f1db8f 3#pragma once
b9f880f4 4
15ae422b
LP
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
5430f7f2
LP
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
15ae422b
LP
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
5430f7f2 18 Lesser General Public License for more details.
15ae422b 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
15ae422b
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
b9f880f4
LP
24/* Missing glibc definitions to access certain kernel APIs */
25
26#include <sys/resource.h>
15ae422b 27#include <sys/syscall.h>
16c42ce1 28#include <fcntl.h>
4db17f29 29#include <stdlib.h>
82c121a4 30#include <unistd.h>
3b794314 31#include <errno.h>
dd6c17b1 32#include <linux/oom.h>
118ecf32 33#include <linux/input.h>
d5eff740 34#include <linux/if_link.h>
a853c45d 35#include <linux/loop.h>
875c2e22 36#include <linux/audit.h>
2822da4f 37#include <linux/capability.h>
dd6c17b1
LP
38
39#ifdef HAVE_AUDIT
40#include <libaudit.h>
41#endif
b9f880f4 42
d59d0a2b 43#ifdef ARCH_MIPS
44#include <asm/sgidefs.h>
45#endif
46
700c6087
LP
47#ifdef HAVE_LINUX_BTRFS_H
48#include <linux/btrfs.h>
49#endif
50
a60e9f7f
LP
51#include "macro.h"
52
b9f880f4
LP
53#ifndef RLIMIT_RTTIME
54#define RLIMIT_RTTIME 15
55#endif
56
517d56b1
LP
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
4fd5948e
LP
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
a6082d77
DM
72#ifndef F_ADD_SEALS
73#define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
a6082d77 74#define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
a6082d77 75
a6082d77 76#define F_SEAL_SEAL 0x0001 /* prevent further seals from being set */
a6082d77 77#define F_SEAL_SHRINK 0x0002 /* prevent file from shrinking */
a6082d77 78#define F_SEAL_GROW 0x0004 /* prevent file from growing */
a6082d77
DM
79#define F_SEAL_WRITE 0x0008 /* prevent writes */
80#endif
81
82#ifndef MFD_ALLOW_SEALING
45071fca
LP
83#define MFD_ALLOW_SEALING 0x0002U
84#endif
85
86#ifndef MFD_CLOEXEC
87#define MFD_CLOEXEC 0x0001U
a6082d77
DM
88#endif
89
16c42ce1
KS
90#ifndef IP_FREEBIND
91#define IP_FREEBIND 15
92#endif
93
dd6c17b1
LP
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
15ae422b 101
4927fcae 102#ifndef AUDIT_SERVICE_START
dd6c17b1 103#define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
4927fcae
LP
104#endif
105
106#ifndef AUDIT_SERVICE_STOP
dd6c17b1 107#define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
4927fcae
LP
108#endif
109
6ea832a2
LP
110#ifndef TIOCVHANGUP
111#define TIOCVHANGUP 0x5437
112#endif
113
b90865ba
KS
114#ifndef IP_TRANSPARENT
115#define IP_TRANSPARENT 19
116#endif
117
66269b05
TG
118#ifndef SOL_NETLINK
119#define SOL_NETLINK 270
120#endif
121
a8348796 122#if !HAVE_DECL_PIVOT_ROOT
dd6c17b1
LP
123static inline int pivot_root(const char *new_root, const char *put_old) {
124 return syscall(SYS_pivot_root, new_root, put_old);
125}
a8348796 126#endif
dd6c17b1 127
b244d9f3
LP
128#ifndef __NR_memfd_create
129# if defined __x86_64__
a6082d77 130# define __NR_memfd_create 319
b244d9f3 131# elif defined __arm__
a6082d77 132# define __NR_memfd_create 385
b244d9f3 133# elif defined _MIPS_SIM
e6c01902
VOR
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
03e8fdb3 143# elif defined __i386__
a6082d77 144# define __NR_memfd_create 356
03e8fdb3
DH
145# else
146# warning "__NR_memfd_create unknown for your architecture"
147# define __NR_memfd_create 0xffffffff
a6082d77 148# endif
22be093f
LP
149#endif
150
a6082d77 151#ifndef HAVE_MEMFD_CREATE
06b7f7bd 152static inline int memfd_create(const char *name, unsigned int flags) {
46327770 153 return syscall(__NR_memfd_create, name, flags);
a6082d77
DM
154}
155#endif
156
539618a0
LP
157#ifndef __NR_getrandom
158# if defined __x86_64__
74a550c5 159# define __NR_getrandom 318
568981d2
ZJS
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
539618a0
LP
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
177static inline int getrandom(void *buffer, size_t count, unsigned flags) {
178 return syscall(__NR_getrandom, buffer, count, flags);
179}
180#endif
181
97768fc5
LP
182#ifndef GRND_NONBLOCK
183#define GRND_NONBLOCK 0x0001
184#endif
185
186#ifndef GRND_RANDOM
187#define GRND_RANDOM 0x0002
188#endif
189
4b357e15
MM
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
211struct btrfs_ioctl_vol_args {
212 int64_t fd;
213 char name[BTRFS_PATH_NAME_MAX + 1];
214};
215
216struct 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
225struct 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
7bed7f0e
ZJS
234#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
235 struct btrfs_ioctl_vol_args)
4b357e15
MM
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, \
7bed7f0e
ZJS
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)
4b357e15
MM
251#endif
252
746f8906
LP
253#ifndef BTRFS_SUPER_MAGIC
254#define BTRFS_SUPER_MAGIC 0x9123683E
255#endif
256
94d82985
LP
257#ifndef MS_MOVE
258#define MS_MOVE 8192
259#endif
260
7cb1094a
HH
261#ifndef MS_PRIVATE
262#define MS_PRIVATE (1 << 18)
263#endif
264
a8348796 265#if !HAVE_DECL_GETTID
4d14be09
LP
266static inline pid_t gettid(void) {
267 return (pid_t) syscall(SYS_gettid);
268}
a8348796 269#endif
4d14be09 270
54ecda32
LP
271#ifndef SCM_SECURITY
272#define SCM_SECURITY 0x03
273#endif
274
48ac500b
LP
275#ifndef MS_STRICTATIME
276#define MS_STRICTATIME (1<<24)
277#endif
278
a9621528
AM
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
8351ceae
LP
287#ifndef PR_SET_NO_NEW_PRIVS
288#define PR_SET_NO_NEW_PRIVS 38
289#endif
d4447f4d
AK
290
291#ifndef PR_SET_CHILD_SUBREAPER
292#define PR_SET_CHILD_SUBREAPER 36
293#endif
a8348796
LP
294
295#ifndef MAX_HANDLE_SZ
296#define MAX_HANDLE_SZ 128
297#endif
298
66330455
LP
299#ifndef __NR_name_to_handle_at
300# if defined(__x86_64__)
848af055 301# define __NR_name_to_handle_at 303
66330455 302# elif defined(__i386__)
848af055 303# define __NR_name_to_handle_at 341
66330455 304# elif defined(__arm__)
f527b6b8 305# define __NR_name_to_handle_at 370
66330455 306# elif defined(__powerpc__)
f527b6b8 307# define __NR_name_to_handle_at 345
66330455
LP
308# else
309# error "__NR_name_to_handle_at is not defined"
f527b6b8 310# endif
a8348796
LP
311#endif
312
9388e99e 313#if !HAVE_DECL_NAME_TO_HANDLE_AT
a8348796
LP
314struct file_handle {
315 unsigned int handle_bytes;
316 int handle_type;
317 unsigned char f_handle[0];
318};
319
320static 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
4db17f29
ZJS
324
325#ifndef HAVE_SECURE_GETENV
326# ifdef HAVE___SECURE_GETENV
327# define secure_getenv __secure_getenv
328# else
66330455 329# error "neither secure_getenv nor __secure_getenv are available"
4db17f29
ZJS
330# endif
331#endif
85210bff
LP
332
333#ifndef CIFS_MAGIC_NUMBER
65b3903f 334# define CIFS_MAGIC_NUMBER 0xFF534D42
85210bff 335#endif
8742514c
LP
336
337#ifndef TFD_TIMER_CANCEL_ON_SET
65b3903f 338# define TFD_TIMER_CANCEL_ON_SET (1 << 1)
8742514c 339#endif
f7db7a69
SL
340
341#ifndef SO_REUSEPORT
65b3903f 342# define SO_REUSEPORT 15
f7db7a69 343#endif
118ecf32
DH
344
345#ifndef EVIOCREVOKE
65b3903f 346# define EVIOCREVOKE _IOW('E', 0x91, int)
118ecf32
DH
347#endif
348
349#ifndef DRM_IOCTL_SET_MASTER
65b3903f 350# define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
118ecf32
DH
351#endif
352
353#ifndef DRM_IOCTL_DROP_MASTER
65b3903f
ZJS
354# define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
355#endif
356
c09918f9
LP
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
3b794314
HS
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
384static inline int setns(int fd, int nstype) {
385 return syscall(__NR_setns, fd, nstype);
386}
387#endif
5f381b35
LP
388
389#if !HAVE_DECL_LO_FLAGS_PARTSCAN
390#define LO_FLAGS_PARTSCAN 8
391#endif
a853c45d
LP
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
0830ba61 400
75616a13
ZJS
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
6589d0db
JAS
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
81577dc2
ZJS
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
0830ba61 460
79306206 461#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
0830ba61 462#endif
81577dc2
ZJS
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
623a4c97 529
8ecec322
ZJS
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
623a4c97
LP
546#ifndef IPV6_UNICAST_IF
547#define IPV6_UNICAST_IF 76
548#endif
ec2c5e43 549
04d180c8
TG
550#ifndef IFF_MULTI_QUEUE
551#define IFF_MULTI_QUEUE 0x100
552#endif
553
ec2c5e43
LP
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
91988149
LP
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
04b67d49
TG
569
570#ifndef NET_ADDR_RANDOM
571# define NET_ADDR_RANDOM 1
572#endif
573
1cb636d9
CW
574#ifndef NET_NAME_UNKNOWN
575# define NET_NAME_UNKNOWN 0
576#endif
577
04b67d49
TG
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
7965435e
MO
593
594#ifndef BPF_XOR
595# define BPF_XOR 0xa0
596#endif
a5f03596
LP
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
875c2e22
LP
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
2822da4f
LP
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
60e1651a 638
ee05e779 639static inline int raw_clone(unsigned long flags, void *child_stack) {
60e1651a
KW
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. */
ee05e779 643 return (int) syscall(__NR_clone, child_stack, flags);
60e1651a 644#else
ee05e779 645 return (int) syscall(__NR_clone, flags, child_stack);
60e1651a
KW
646#endif
647}
ee05e779
ZJS
648
649static inline pid_t raw_getpid(void) {
650 return (pid_t) syscall(__NR_getpid);
651}