]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/missing.h
missing: define correct syscall numbers for memfd_create() and getrandom() on aarch64
[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
f4a53250
MM
82#ifndef F_OFD_GETLK
83#define F_OFD_GETLK 36
84#define F_OFD_SETLK 37
85#define F_OFD_SETLKW 38
86#endif
87
a6082d77 88#ifndef MFD_ALLOW_SEALING
45071fca
LP
89#define MFD_ALLOW_SEALING 0x0002U
90#endif
91
92#ifndef MFD_CLOEXEC
93#define MFD_CLOEXEC 0x0001U
a6082d77
DM
94#endif
95
16c42ce1
KS
96#ifndef IP_FREEBIND
97#define IP_FREEBIND 15
98#endif
99
dd6c17b1
LP
100#ifndef OOM_SCORE_ADJ_MIN
101#define OOM_SCORE_ADJ_MIN (-1000)
102#endif
103
104#ifndef OOM_SCORE_ADJ_MAX
105#define OOM_SCORE_ADJ_MAX 1000
106#endif
15ae422b 107
4927fcae 108#ifndef AUDIT_SERVICE_START
dd6c17b1 109#define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
4927fcae
LP
110#endif
111
112#ifndef AUDIT_SERVICE_STOP
dd6c17b1 113#define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
4927fcae
LP
114#endif
115
6ea832a2
LP
116#ifndef TIOCVHANGUP
117#define TIOCVHANGUP 0x5437
118#endif
119
b90865ba
KS
120#ifndef IP_TRANSPARENT
121#define IP_TRANSPARENT 19
122#endif
123
66269b05
TG
124#ifndef SOL_NETLINK
125#define SOL_NETLINK 270
126#endif
127
a8348796 128#if !HAVE_DECL_PIVOT_ROOT
dd6c17b1
LP
129static inline int pivot_root(const char *new_root, const char *put_old) {
130 return syscall(SYS_pivot_root, new_root, put_old);
131}
a8348796 132#endif
dd6c17b1 133
b244d9f3
LP
134#ifndef __NR_memfd_create
135# if defined __x86_64__
a6082d77 136# define __NR_memfd_create 319
b244d9f3 137# elif defined __arm__
a6082d77 138# define __NR_memfd_create 385
7fd68245
MO
139# elif defined __aarch64__
140# define __NR_memfd_create 279
b244d9f3 141# elif defined _MIPS_SIM
e6c01902
VOR
142# if _MIPS_SIM == _MIPS_SIM_ABI32
143# define __NR_memfd_create 4354
144# endif
145# if _MIPS_SIM == _MIPS_SIM_NABI32
146# define __NR_memfd_create 6318
147# endif
148# if _MIPS_SIM == _MIPS_SIM_ABI64
149# define __NR_memfd_create 5314
150# endif
03e8fdb3 151# elif defined __i386__
a6082d77 152# define __NR_memfd_create 356
03e8fdb3
DH
153# else
154# warning "__NR_memfd_create unknown for your architecture"
155# define __NR_memfd_create 0xffffffff
a6082d77 156# endif
22be093f
LP
157#endif
158
a6082d77 159#ifndef HAVE_MEMFD_CREATE
06b7f7bd 160static inline int memfd_create(const char *name, unsigned int flags) {
46327770 161 return syscall(__NR_memfd_create, name, flags);
a6082d77
DM
162}
163#endif
164
539618a0
LP
165#ifndef __NR_getrandom
166# if defined __x86_64__
74a550c5 167# define __NR_getrandom 318
568981d2
ZJS
168# elif defined(__i386__)
169# define __NR_getrandom 355
7fd68245 170# elif defined(__arm__)
568981d2 171# define __NR_getrandom 384
7fd68245
MO
172# elif defined(__aarch64__)
173# define __NR_getrandom 278
568981d2
ZJS
174# elif defined(__ia64__)
175# define __NR_getrandom 1339
176# elif defined(__m68k__)
177# define __NR_getrandom 352
178# elif defined(__s390x__)
179# define __NR_getrandom 349
539618a0
LP
180# else
181# warning "__NR_getrandom unknown for your architecture"
182# define __NR_getrandom 0xffffffff
183# endif
184#endif
185
186#if !HAVE_DECL_GETRANDOM
187static inline int getrandom(void *buffer, size_t count, unsigned flags) {
188 return syscall(__NR_getrandom, buffer, count, flags);
189}
190#endif
191
97768fc5
LP
192#ifndef GRND_NONBLOCK
193#define GRND_NONBLOCK 0x0001
194#endif
195
196#ifndef GRND_RANDOM
197#define GRND_RANDOM 0x0002
198#endif
199
4b357e15
MM
200#ifndef BTRFS_IOCTL_MAGIC
201#define BTRFS_IOCTL_MAGIC 0x94
202#endif
203
204#ifndef BTRFS_PATH_NAME_MAX
205#define BTRFS_PATH_NAME_MAX 4087
206#endif
207
208#ifndef BTRFS_DEVICE_PATH_NAME_MAX
209#define BTRFS_DEVICE_PATH_NAME_MAX 1024
210#endif
211
212#ifndef BTRFS_FSID_SIZE
213#define BTRFS_FSID_SIZE 16
214#endif
215
216#ifndef BTRFS_UUID_SIZE
217#define BTRFS_UUID_SIZE 16
218#endif
219
220#ifndef HAVE_LINUX_BTRFS_H
221struct btrfs_ioctl_vol_args {
222 int64_t fd;
223 char name[BTRFS_PATH_NAME_MAX + 1];
224};
225
226struct btrfs_ioctl_dev_info_args {
227 uint64_t devid; /* in/out */
228 uint8_t uuid[BTRFS_UUID_SIZE]; /* in/out */
229 uint64_t bytes_used; /* out */
230 uint64_t total_bytes; /* out */
231 uint64_t unused[379]; /* pad to 4k */
232 char path[BTRFS_DEVICE_PATH_NAME_MAX]; /* out */
233};
234
235struct btrfs_ioctl_fs_info_args {
236 uint64_t max_id; /* out */
237 uint64_t num_devices; /* out */
238 uint8_t fsid[BTRFS_FSID_SIZE]; /* out */
239 uint64_t reserved[124]; /* pad to 1k */
240};
241#endif
242
243#ifndef BTRFS_IOC_DEFRAG
7bed7f0e
ZJS
244#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
245 struct btrfs_ioctl_vol_args)
4b357e15
MM
246#endif
247
248#ifndef BTRFS_IOC_DEV_INFO
249#define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
250 struct btrfs_ioctl_dev_info_args)
251#endif
252
253#ifndef BTRFS_IOC_FS_INFO
254#define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
7bed7f0e
ZJS
255 struct btrfs_ioctl_fs_info_args)
256#endif
257
258#ifndef BTRFS_IOC_DEVICES_READY
259#define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, \
260 struct btrfs_ioctl_vol_args)
4b357e15
MM
261#endif
262
10f9c755
LP
263#ifndef BTRFS_FIRST_FREE_OBJECTID
264#define BTRFS_FIRST_FREE_OBJECTID 256
265#endif
266
b6b18498
LP
267#ifndef BTRFS_ROOT_TREE_OBJECTID
268#define BTRFS_ROOT_TREE_OBJECTID 1
269#endif
270
271#ifndef BTRFS_QUOTA_TREE_OBJECTID
272#define BTRFS_QUOTA_TREE_OBJECTID 8ULL
273#endif
274
10f9c755
LP
275#ifndef BTRFS_ROOT_ITEM_KEY
276#define BTRFS_ROOT_ITEM_KEY 132
277#endif
278
b6b18498
LP
279#ifndef BTRFS_QGROUP_STATUS_KEY
280#define BTRFS_QGROUP_STATUS_KEY 240
281#endif
282
283#ifndef BTRFS_QGROUP_INFO_KEY
284#define BTRFS_QGROUP_INFO_KEY 242
285#endif
286
287#ifndef BTRFS_QGROUP_LIMIT_KEY
288#define BTRFS_QGROUP_LIMIT_KEY 244
289#endif
290
746f8906
LP
291#ifndef BTRFS_SUPER_MAGIC
292#define BTRFS_SUPER_MAGIC 0x9123683E
293#endif
294
94d82985
LP
295#ifndef MS_MOVE
296#define MS_MOVE 8192
297#endif
298
7cb1094a
HH
299#ifndef MS_PRIVATE
300#define MS_PRIVATE (1 << 18)
301#endif
302
a8348796 303#if !HAVE_DECL_GETTID
4d14be09
LP
304static inline pid_t gettid(void) {
305 return (pid_t) syscall(SYS_gettid);
306}
a8348796 307#endif
4d14be09 308
54ecda32
LP
309#ifndef SCM_SECURITY
310#define SCM_SECURITY 0x03
311#endif
312
48ac500b
LP
313#ifndef MS_STRICTATIME
314#define MS_STRICTATIME (1<<24)
315#endif
316
a9621528
AM
317#ifndef MS_REC
318#define MS_REC 16384
319#endif
320
321#ifndef MS_SHARED
322#define MS_SHARED (1<<20)
323#endif
324
8351ceae
LP
325#ifndef PR_SET_NO_NEW_PRIVS
326#define PR_SET_NO_NEW_PRIVS 38
327#endif
d4447f4d
AK
328
329#ifndef PR_SET_CHILD_SUBREAPER
330#define PR_SET_CHILD_SUBREAPER 36
331#endif
a8348796
LP
332
333#ifndef MAX_HANDLE_SZ
334#define MAX_HANDLE_SZ 128
335#endif
336
66330455
LP
337#ifndef __NR_name_to_handle_at
338# if defined(__x86_64__)
848af055 339# define __NR_name_to_handle_at 303
66330455 340# elif defined(__i386__)
848af055 341# define __NR_name_to_handle_at 341
66330455 342# elif defined(__arm__)
f527b6b8 343# define __NR_name_to_handle_at 370
66330455 344# elif defined(__powerpc__)
f527b6b8 345# define __NR_name_to_handle_at 345
66330455
LP
346# else
347# error "__NR_name_to_handle_at is not defined"
f527b6b8 348# endif
a8348796
LP
349#endif
350
9388e99e 351#if !HAVE_DECL_NAME_TO_HANDLE_AT
a8348796
LP
352struct file_handle {
353 unsigned int handle_bytes;
354 int handle_type;
355 unsigned char f_handle[0];
356};
357
358static inline int name_to_handle_at(int fd, const char *name, struct file_handle *handle, int *mnt_id, int flags) {
359 return syscall(__NR_name_to_handle_at, fd, name, handle, mnt_id, flags);
360}
361#endif
4db17f29
ZJS
362
363#ifndef HAVE_SECURE_GETENV
364# ifdef HAVE___SECURE_GETENV
365# define secure_getenv __secure_getenv
366# else
66330455 367# error "neither secure_getenv nor __secure_getenv are available"
4db17f29
ZJS
368# endif
369#endif
85210bff
LP
370
371#ifndef CIFS_MAGIC_NUMBER
65b3903f 372# define CIFS_MAGIC_NUMBER 0xFF534D42
85210bff 373#endif
8742514c
LP
374
375#ifndef TFD_TIMER_CANCEL_ON_SET
65b3903f 376# define TFD_TIMER_CANCEL_ON_SET (1 << 1)
8742514c 377#endif
f7db7a69
SL
378
379#ifndef SO_REUSEPORT
65b3903f 380# define SO_REUSEPORT 15
f7db7a69 381#endif
118ecf32
DH
382
383#ifndef EVIOCREVOKE
65b3903f 384# define EVIOCREVOKE _IOW('E', 0x91, int)
118ecf32
DH
385#endif
386
387#ifndef DRM_IOCTL_SET_MASTER
65b3903f 388# define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
118ecf32
DH
389#endif
390
391#ifndef DRM_IOCTL_DROP_MASTER
65b3903f
ZJS
392# define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
393#endif
394
c09918f9
LP
395#if defined(__i386__) || defined(__x86_64__)
396
397/* The precise definition of __O_TMPFILE is arch specific, so let's
398 * just define this on x86 where we know the value. */
399
400#ifndef __O_TMPFILE
401#define __O_TMPFILE 020000000
402#endif
403
404/* a horrid kludge trying to make sure that this will fail on old kernels */
405#ifndef O_TMPFILE
406#define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
407#endif
408
409#endif
3b794314
HS
410
411#ifndef __NR_setns
412# if defined(__x86_64__)
413# define __NR_setns 308
414# elif defined(__i386__)
415# define __NR_setns 346
416# else
417# error "__NR_setns is not defined"
418# endif
419#endif
420
421#if !HAVE_DECL_SETNS
422static inline int setns(int fd, int nstype) {
423 return syscall(__NR_setns, fd, nstype);
424}
425#endif
5f381b35
LP
426
427#if !HAVE_DECL_LO_FLAGS_PARTSCAN
428#define LO_FLAGS_PARTSCAN 8
429#endif
a853c45d
LP
430
431#ifndef LOOP_CTL_REMOVE
432#define LOOP_CTL_REMOVE 0x4C81
433#endif
434
435#ifndef LOOP_CTL_GET_FREE
436#define LOOP_CTL_GET_FREE 0x4C82
437#endif
0830ba61 438
75616a13
ZJS
439#if !HAVE_DECL_IFLA_MACVLAN_FLAGS
440#define IFLA_MACVLAN_UNSPEC 0
441#define IFLA_MACVLAN_MODE 1
442#define IFLA_MACVLAN_FLAGS 2
443#define __IFLA_MACVLAN_MAX 3
444
445#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
446#endif
447
c4a5ddc9
TG
448#if !HAVE_DECL_IFLA_IPVLAN_MODE
449#define IFLA_IPVLAN_UNSPEC 0
450#define IFLA_IPVLAN_MODE 1
451#define __IFLA_IPVLAN_MAX 2
452
453#define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
454
455#define IPVLAN_MODE_L2 0
456#define IPVLAN_MODE_L3 1
457#define IPVLAN_MAX 2
458#endif
459
6589d0db
JAS
460#if !HAVE_DECL_IFLA_VTI_REMOTE
461#define IFLA_VTI_UNSPEC 0
462#define IFLA_VTI_LINK 1
463#define IFLA_VTI_IKEY 2
464#define IFLA_VTI_OKEY 3
465#define IFLA_VTI_LOCAL 4
466#define IFLA_VTI_REMOTE 5
467#define __IFLA_VTI_MAX 6
468
469#define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
470#endif
471
81577dc2
ZJS
472#if !HAVE_DECL_IFLA_PHYS_PORT_ID
473#undef IFLA_PROMISCUITY
474#define IFLA_PROMISCUITY 30
475#define IFLA_NUM_TX_QUEUES 31
476#define IFLA_NUM_RX_QUEUES 32
477#define IFLA_CARRIER 33
478#define IFLA_PHYS_PORT_ID 34
479#define __IFLA_MAX 35
480
481#define IFLA_MAX (__IFLA_MAX - 1)
482#endif
483
484#if !HAVE_DECL_IFLA_BOND_AD_INFO
485#define IFLA_BOND_UNSPEC 0
486#define IFLA_BOND_MODE 1
487#define IFLA_BOND_ACTIVE_SLAVE 2
488#define IFLA_BOND_MIIMON 3
489#define IFLA_BOND_UPDELAY 4
490#define IFLA_BOND_DOWNDELAY 5
491#define IFLA_BOND_USE_CARRIER 6
492#define IFLA_BOND_ARP_INTERVAL 7
493#define IFLA_BOND_ARP_IP_TARGET 8
494#define IFLA_BOND_ARP_VALIDATE 9
495#define IFLA_BOND_ARP_ALL_TARGETS 10
496#define IFLA_BOND_PRIMARY 11
497#define IFLA_BOND_PRIMARY_RESELECT 12
498#define IFLA_BOND_FAIL_OVER_MAC 13
499#define IFLA_BOND_XMIT_HASH_POLICY 14
500#define IFLA_BOND_RESEND_IGMP 15
501#define IFLA_BOND_NUM_PEER_NOTIF 16
502#define IFLA_BOND_ALL_SLAVES_ACTIVE 17
503#define IFLA_BOND_MIN_LINKS 18
504#define IFLA_BOND_LP_INTERVAL 19
505#define IFLA_BOND_PACKETS_PER_SLAVE 20
506#define IFLA_BOND_AD_LACP_RATE 21
507#define IFLA_BOND_AD_SELECT 22
508#define IFLA_BOND_AD_INFO 23
509#define __IFLA_BOND_MAX 24
0830ba61 510
79306206 511#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
0830ba61 512#endif
81577dc2
ZJS
513
514#if !HAVE_DECL_IFLA_VLAN_PROTOCOL
515#define IFLA_VLAN_UNSPEC 0
516#define IFLA_VLAN_ID 1
517#define IFLA_VLAN_FLAGS 2
518#define IFLA_VLAN_EGRESS_QOS 3
519#define IFLA_VLAN_INGRESS_QOS 4
520#define IFLA_VLAN_PROTOCOL 5
521#define __IFLA_VLAN_MAX 6
522
523#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
524#endif
525
526#if !HAVE_DECL_IFLA_VXLAN_LOCAL6
527#define IFLA_VXLAN_UNSPEC 0
528#define IFLA_VXLAN_ID 1
529#define IFLA_VXLAN_GROUP 2
530#define IFLA_VXLAN_LINK 3
531#define IFLA_VXLAN_LOCAL 4
532#define IFLA_VXLAN_TTL 5
533#define IFLA_VXLAN_TOS 6
534#define IFLA_VXLAN_LEARNING 7
535#define IFLA_VXLAN_AGEING 8
536#define IFLA_VXLAN_LIMIT 9
537#define IFLA_VXLAN_PORT_RANGE 10
538#define IFLA_VXLAN_PROXY 11
539#define IFLA_VXLAN_RSC 12
540#define IFLA_VXLAN_L2MISS 13
541#define IFLA_VXLAN_L3MISS 14
542#define IFLA_VXLAN_PORT 15
543#define IFLA_VXLAN_GROUP6 16
544#define IFLA_VXLAN_LOCAL6 17
545#define __IFLA_VXLAN_MAX 18
546
547#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
548#endif
549
550#if !HAVE_DECL_IFLA_IPTUN_6RD_RELAY_PREFIXLEN
551#define IFLA_IPTUN_UNSPEC 0
552#define IFLA_IPTUN_LINK 1
553#define IFLA_IPTUN_LOCAL 2
554#define IFLA_IPTUN_REMOTE 3
555#define IFLA_IPTUN_TTL 4
556#define IFLA_IPTUN_TOS 5
557#define IFLA_IPTUN_ENCAP_LIMIT 6
558#define IFLA_IPTUN_FLOWINFO 7
559#define IFLA_IPTUN_FLAGS 8
560#define IFLA_IPTUN_PROTO 9
561#define IFLA_IPTUN_PMTUDISC 10
562#define IFLA_IPTUN_6RD_PREFIX 11
563#define IFLA_IPTUN_6RD_RELAY_PREFIX 12
564#define IFLA_IPTUN_6RD_PREFIXLEN 13
565#define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
566#define __IFLA_IPTUN_MAX 15
567
568#define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1)
569#endif
570
571#if !HAVE_DECL_IFLA_BRIDGE_VLAN_INFO
572#define IFLA_BRIDGE_FLAGS 0
573#define IFLA_BRIDGE_MODE 1
574#define IFLA_BRIDGE_VLAN_INFO 2
575#define __IFLA_BRIDGE_MAX 3
576
577#define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
578#endif
623a4c97 579
8ecec322
ZJS
580#if !HAVE_DECL_IFLA_BRPORT_UNICAST_FLOOD
581#define IFLA_BRPORT_UNSPEC 0
582#define IFLA_BRPORT_STATE 1
583#define IFLA_BRPORT_PRIORITY 2
584#define IFLA_BRPORT_COST 3
585#define IFLA_BRPORT_MODE 4
586#define IFLA_BRPORT_GUARD 5
587#define IFLA_BRPORT_PROTECT 6
588#define IFLA_BRPORT_FAST_LEAVE 7
589#define IFLA_BRPORT_LEARNING 8
590#define IFLA_BRPORT_UNICAST_FLOOD 9
591#define __IFLA_BRPORT_MAX 10
592
593#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
594#endif
595
623a4c97
LP
596#ifndef IPV6_UNICAST_IF
597#define IPV6_UNICAST_IF 76
598#endif
ec2c5e43 599
04d180c8
TG
600#ifndef IFF_MULTI_QUEUE
601#define IFF_MULTI_QUEUE 0x100
602#endif
603
ec2c5e43
LP
604#ifndef IFF_LOWER_UP
605#define IFF_LOWER_UP 0x10000
606#endif
607
608#ifndef IFF_DORMANT
609#define IFF_DORMANT 0x20000
610#endif
91988149
LP
611
612#ifndef BOND_XMIT_POLICY_ENCAP23
613#define BOND_XMIT_POLICY_ENCAP23 3
614#endif
615
616#ifndef BOND_XMIT_POLICY_ENCAP34
617#define BOND_XMIT_POLICY_ENCAP34 4
618#endif
04b67d49
TG
619
620#ifndef NET_ADDR_RANDOM
621# define NET_ADDR_RANDOM 1
622#endif
623
1cb636d9
CW
624#ifndef NET_NAME_UNKNOWN
625# define NET_NAME_UNKNOWN 0
626#endif
627
04b67d49
TG
628#ifndef NET_NAME_ENUM
629# define NET_NAME_ENUM 1
630#endif
631
632#ifndef NET_NAME_PREDICTABLE
633# define NET_NAME_PREDICTABLE 2
634#endif
635
636#ifndef NET_NAME_USER
637# define NET_NAME_USER 3
638#endif
639
640#ifndef NET_NAME_RENAMED
641# define NET_NAME_RENAMED 4
642#endif
7965435e
MO
643
644#ifndef BPF_XOR
645# define BPF_XOR 0xa0
646#endif
a5f03596
LP
647
648/* Note that LOOPBACK_IFINDEX is currently not exported by the
649 * kernel/glibc, but hardcoded internally by the kernel. However, as
650 * it is exported to userspace indirectly via rtnetlink and the
651 * ioctls, and made use of widely we define it here too, in a way that
652 * is compatible with the kernel's internal definition. */
653#ifndef LOOPBACK_IFINDEX
654#define LOOPBACK_IFINDEX 1
655#endif
875c2e22
LP
656
657#ifndef MAX_AUDIT_MESSAGE_LENGTH
658#define MAX_AUDIT_MESSAGE_LENGTH 8970
659#endif
660
661#ifndef AUDIT_NLGRP_MAX
662#define AUDIT_NLGRP_READLOG 1
663#endif
2822da4f
LP
664
665#ifndef CAP_MAC_OVERRIDE
666#define CAP_MAC_OVERRIDE 32
667#endif
668
669#ifndef CAP_MAC_ADMIN
670#define CAP_MAC_ADMIN 33
671#endif
672
673#ifndef CAP_SYSLOG
674#define CAP_SYSLOG 34
675#endif
676
677#ifndef CAP_WAKE_ALARM
678#define CAP_WAKE_ALARM 35
679#endif
680
681#ifndef CAP_BLOCK_SUSPEND
682#define CAP_BLOCK_SUSPEND 36
683#endif
684
685#ifndef CAP_AUDIT_READ
686#define CAP_AUDIT_READ 37
687#endif
60e1651a 688
ee05e779 689static inline int raw_clone(unsigned long flags, void *child_stack) {
60e1651a
KW
690#if defined(__s390__) || defined(__CRIS__)
691 /* On s390 and cris the order of the first and second arguments
692 * of the raw clone() system call is reversed. */
ee05e779 693 return (int) syscall(__NR_clone, child_stack, flags);
60e1651a 694#else
ee05e779 695 return (int) syscall(__NR_clone, flags, child_stack);
60e1651a
KW
696#endif
697}
ee05e779
ZJS
698
699static inline pid_t raw_getpid(void) {
700 return (pid_t) syscall(__NR_getpid);
701}
ebd93cb6
LP
702
703#if !HAVE_DECL_RENAMEAT2
e65ef51d
ZJS
704
705#ifndef __NR_renameat2
706# if defined __x86_64__
707# define __NR_renameat2 316
708# elif defined __arm__
709# define __NR_renameat2 382
710# elif defined _MIPS_SIM
711# if _MIPS_SIM == _MIPS_SIM_ABI32
712# define __NR_renameat2 4351
713# endif
714# if _MIPS_SIM == _MIPS_SIM_NABI32
715# define __NR_renameat2 6315
716# endif
717# if _MIPS_SIM == _MIPS_SIM_ABI64
718# define __NR_renameat2 5311
719# endif
720# elif defined __i386__
721# define __NR_renameat2 353
722# else
723# warning "__NR_renameat2 unknown for your architecture"
724# define __NR_renameat2 0xffffffff
725# endif
726#endif
727
ebd93cb6
LP
728static inline int renameat2(int oldfd, const char *oldname, int newfd, const char *newname, unsigned flags) {
729 return syscall(__NR_renameat2, oldfd, oldname, newfd, newname, flags);
730}
731#endif
732
733#ifndef RENAME_NOREPLACE
734#define RENAME_NOREPLACE (1 << 0)
735#endif
f7ad54a3
LP
736
737#if !HAVE_DECL_KCMP
738static inline int kcmp(pid_t pid1, pid_t pid2, int type, unsigned long idx1, unsigned long idx2) {
739 return syscall(__NR_kcmp, pid1, pid2, type, idx1, idx2);
740}
741#endif
742
743#ifndef KCMP_FILE
744#define KCMP_FILE 0
745#endif