]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/basic/missing.h
Merge pull request #4877 from evverx/fix-machine-id
[thirdparty/systemd.git] / src / basic / missing.h
CommitLineData
c2f1db8f 1#pragma once
b9f880f4 2
15ae422b
LP
3/***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
5430f7f2
LP
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
15ae422b
LP
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
5430f7f2 16 Lesser General Public License for more details.
15ae422b 17
5430f7f2 18 You should have received a copy of the GNU Lesser General Public License
15ae422b
LP
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
b9f880f4
LP
22/* Missing glibc definitions to access certain kernel APIs */
23
3b794314 24#include <errno.h>
8ae4b6d1 25#include <fcntl.h>
875c2e22 26#include <linux/audit.h>
2822da4f 27#include <linux/capability.h>
8ae4b6d1
TG
28#include <linux/if_link.h>
29#include <linux/input.h>
30#include <linux/loop.h>
cf1755ba 31#include <linux/neighbour.h>
8ae4b6d1
TG
32#include <linux/oom.h>
33#include <linux/rtnetlink.h>
43a6a52e 34#include <net/ethernet.h>
8ae4b6d1
TG
35#include <stdlib.h>
36#include <sys/resource.h>
37#include <sys/syscall.h>
c932fb71 38#include <uchar.h>
8ae4b6d1 39#include <unistd.h>
dd6c17b1
LP
40
41#ifdef HAVE_AUDIT
42#include <libaudit.h>
43#endif
b9f880f4 44
d59d0a2b 45#ifdef ARCH_MIPS
46#include <asm/sgidefs.h>
47#endif
48
700c6087
LP
49#ifdef HAVE_LINUX_BTRFS_H
50#include <linux/btrfs.h>
51#endif
52
a60e9f7f
LP
53#include "macro.h"
54
b9f880f4
LP
55#ifndef RLIMIT_RTTIME
56#define RLIMIT_RTTIME 15
57#endif
58
517d56b1
LP
59/* If RLIMIT_RTTIME is not defined, then we cannot use RLIMIT_NLIMITS as is */
60#define _RLIMIT_MAX (RLIMIT_RTTIME+1 > RLIMIT_NLIMITS ? RLIMIT_RTTIME+1 : RLIMIT_NLIMITS)
61
4fd5948e
LP
62#ifndef F_LINUX_SPECIFIC_BASE
63#define F_LINUX_SPECIFIC_BASE 1024
64#endif
65
66#ifndef F_SETPIPE_SZ
67#define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7)
68#endif
69
70#ifndef F_GETPIPE_SZ
71#define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
72#endif
73
a6082d77
DM
74#ifndef F_ADD_SEALS
75#define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
a6082d77 76#define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
a6082d77 77
a6082d77 78#define F_SEAL_SEAL 0x0001 /* prevent further seals from being set */
a6082d77 79#define F_SEAL_SHRINK 0x0002 /* prevent file from shrinking */
a6082d77 80#define F_SEAL_GROW 0x0004 /* prevent file from growing */
a6082d77
DM
81#define F_SEAL_WRITE 0x0008 /* prevent writes */
82#endif
83
f4a53250
MM
84#ifndef F_OFD_GETLK
85#define F_OFD_GETLK 36
86#define F_OFD_SETLK 37
87#define F_OFD_SETLKW 38
88#endif
89
a6082d77 90#ifndef MFD_ALLOW_SEALING
45071fca
LP
91#define MFD_ALLOW_SEALING 0x0002U
92#endif
93
94#ifndef MFD_CLOEXEC
95#define MFD_CLOEXEC 0x0001U
a6082d77
DM
96#endif
97
16c42ce1
KS
98#ifndef IP_FREEBIND
99#define IP_FREEBIND 15
100#endif
101
dd6c17b1
LP
102#ifndef OOM_SCORE_ADJ_MIN
103#define OOM_SCORE_ADJ_MIN (-1000)
104#endif
105
106#ifndef OOM_SCORE_ADJ_MAX
107#define OOM_SCORE_ADJ_MAX 1000
108#endif
15ae422b 109
4927fcae 110#ifndef AUDIT_SERVICE_START
dd6c17b1 111#define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
4927fcae
LP
112#endif
113
114#ifndef AUDIT_SERVICE_STOP
dd6c17b1 115#define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
4927fcae
LP
116#endif
117
6ea832a2
LP
118#ifndef TIOCVHANGUP
119#define TIOCVHANGUP 0x5437
120#endif
121
b90865ba
KS
122#ifndef IP_TRANSPARENT
123#define IP_TRANSPARENT 19
124#endif
125
66269b05
TG
126#ifndef SOL_NETLINK
127#define SOL_NETLINK 270
128#endif
129
9c5a882b
TG
130#ifndef NETLINK_LIST_MEMBERSHIPS
131#define NETLINK_LIST_MEMBERSHIPS 9
132#endif
133
62bc4efc
SS
134#ifndef SOL_SCTP
135#define SOL_SCTP 132
136#endif
137
97768fc5
LP
138#ifndef GRND_NONBLOCK
139#define GRND_NONBLOCK 0x0001
140#endif
141
142#ifndef GRND_RANDOM
143#define GRND_RANDOM 0x0002
144#endif
145
0f3be6ca
LP
146#ifndef FS_NOCOW_FL
147#define FS_NOCOW_FL 0x00800000
148#endif
149
4b357e15
MM
150#ifndef BTRFS_IOCTL_MAGIC
151#define BTRFS_IOCTL_MAGIC 0x94
152#endif
153
154#ifndef BTRFS_PATH_NAME_MAX
155#define BTRFS_PATH_NAME_MAX 4087
156#endif
157
158#ifndef BTRFS_DEVICE_PATH_NAME_MAX
159#define BTRFS_DEVICE_PATH_NAME_MAX 1024
160#endif
161
162#ifndef BTRFS_FSID_SIZE
163#define BTRFS_FSID_SIZE 16
164#endif
165
166#ifndef BTRFS_UUID_SIZE
167#define BTRFS_UUID_SIZE 16
168#endif
169
8e8ba792
MO
170#ifndef BTRFS_SUBVOL_RDONLY
171#define BTRFS_SUBVOL_RDONLY (1ULL << 1)
172#endif
173
174#ifndef BTRFS_SUBVOL_NAME_MAX
175#define BTRFS_SUBVOL_NAME_MAX 4039
176#endif
177
178#ifndef BTRFS_INO_LOOKUP_PATH_MAX
179#define BTRFS_INO_LOOKUP_PATH_MAX 4080
180#endif
181
182#ifndef BTRFS_SEARCH_ARGS_BUFSIZE
183#define BTRFS_SEARCH_ARGS_BUFSIZE (4096 - sizeof(struct btrfs_ioctl_search_key))
184#endif
185
3f952f92
LP
186#ifndef BTRFS_QGROUP_LEVEL_SHIFT
187#define BTRFS_QGROUP_LEVEL_SHIFT 48
188#endif
189
4b357e15
MM
190#ifndef HAVE_LINUX_BTRFS_H
191struct btrfs_ioctl_vol_args {
192 int64_t fd;
193 char name[BTRFS_PATH_NAME_MAX + 1];
194};
195
8e8ba792
MO
196struct btrfs_qgroup_limit {
197 __u64 flags;
198 __u64 max_rfer;
199 __u64 max_excl;
200 __u64 rsv_rfer;
201 __u64 rsv_excl;
202};
203
204struct btrfs_qgroup_inherit {
205 __u64 flags;
206 __u64 num_qgroups;
207 __u64 num_ref_copies;
208 __u64 num_excl_copies;
209 struct btrfs_qgroup_limit lim;
210 __u64 qgroups[0];
211};
212
d97fb408
MO
213struct btrfs_ioctl_qgroup_limit_args {
214 __u64 qgroupid;
215 struct btrfs_qgroup_limit lim;
216};
217
8e8ba792
MO
218struct btrfs_ioctl_vol_args_v2 {
219 __s64 fd;
220 __u64 transid;
221 __u64 flags;
222 union {
223 struct {
224 __u64 size;
225 struct btrfs_qgroup_inherit *qgroup_inherit;
226 };
227 __u64 unused[4];
228 };
229 char name[BTRFS_SUBVOL_NAME_MAX + 1];
230};
231
4b357e15
MM
232struct btrfs_ioctl_dev_info_args {
233 uint64_t devid; /* in/out */
234 uint8_t uuid[BTRFS_UUID_SIZE]; /* in/out */
235 uint64_t bytes_used; /* out */
236 uint64_t total_bytes; /* out */
237 uint64_t unused[379]; /* pad to 4k */
238 char path[BTRFS_DEVICE_PATH_NAME_MAX]; /* out */
239};
240
241struct btrfs_ioctl_fs_info_args {
242 uint64_t max_id; /* out */
243 uint64_t num_devices; /* out */
244 uint8_t fsid[BTRFS_FSID_SIZE]; /* out */
245 uint64_t reserved[124]; /* pad to 1k */
246};
8e8ba792
MO
247
248struct btrfs_ioctl_ino_lookup_args {
249 __u64 treeid;
250 __u64 objectid;
251 char name[BTRFS_INO_LOOKUP_PATH_MAX];
252};
253
254struct btrfs_ioctl_search_key {
255 /* which root are we searching. 0 is the tree of tree roots */
256 __u64 tree_id;
257
258 /* keys returned will be >= min and <= max */
259 __u64 min_objectid;
260 __u64 max_objectid;
261
262 /* keys returned will be >= min and <= max */
263 __u64 min_offset;
264 __u64 max_offset;
265
266 /* max and min transids to search for */
267 __u64 min_transid;
268 __u64 max_transid;
269
270 /* keys returned will be >= min and <= max */
271 __u32 min_type;
272 __u32 max_type;
273
274 /*
275 * how many items did userland ask for, and how many are we
276 * returning
277 */
278 __u32 nr_items;
279
280 /* align to 64 bits */
281 __u32 unused;
282
283 /* some extra for later */
284 __u64 unused1;
285 __u64 unused2;
286 __u64 unused3;
287 __u64 unused4;
288};
289
290struct btrfs_ioctl_search_header {
291 __u64 transid;
292 __u64 objectid;
293 __u64 offset;
294 __u32 type;
295 __u32 len;
296};
297
298
299struct btrfs_ioctl_search_args {
300 struct btrfs_ioctl_search_key key;
301 char buf[BTRFS_SEARCH_ARGS_BUFSIZE];
302};
303
304struct btrfs_ioctl_clone_range_args {
305 __s64 src_fd;
306 __u64 src_offset, src_length;
307 __u64 dest_offset;
308};
d97fb408
MO
309
310#define BTRFS_QUOTA_CTL_ENABLE 1
311#define BTRFS_QUOTA_CTL_DISABLE 2
312#define BTRFS_QUOTA_CTL_RESCAN__NOTUSED 3
313struct btrfs_ioctl_quota_ctl_args {
314 __u64 cmd;
315 __u64 status;
316};
4b357e15
MM
317#endif
318
319#ifndef BTRFS_IOC_DEFRAG
7bed7f0e
ZJS
320#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
321 struct btrfs_ioctl_vol_args)
4b357e15
MM
322#endif
323
d97fb408
MO
324#ifndef BTRFS_IOC_RESIZE
325#define BTRFS_IOC_RESIZE _IOW(BTRFS_IOCTL_MAGIC, 3, \
326 struct btrfs_ioctl_vol_args)
327#endif
328
8e8ba792
MO
329#ifndef BTRFS_IOC_CLONE
330#define BTRFS_IOC_CLONE _IOW(BTRFS_IOCTL_MAGIC, 9, int)
331#endif
332
333#ifndef BTRFS_IOC_CLONE_RANGE
334#define BTRFS_IOC_CLONE_RANGE _IOW(BTRFS_IOCTL_MAGIC, 13, \
335 struct btrfs_ioctl_clone_range_args)
336#endif
337
338#ifndef BTRFS_IOC_SUBVOL_CREATE
339#define BTRFS_IOC_SUBVOL_CREATE _IOW(BTRFS_IOCTL_MAGIC, 14, \
340 struct btrfs_ioctl_vol_args)
341#endif
342
343#ifndef BTRFS_IOC_SNAP_DESTROY
344#define BTRFS_IOC_SNAP_DESTROY _IOW(BTRFS_IOCTL_MAGIC, 15, \
345 struct btrfs_ioctl_vol_args)
346#endif
347
348#ifndef BTRFS_IOC_TREE_SEARCH
349#define BTRFS_IOC_TREE_SEARCH _IOWR(BTRFS_IOCTL_MAGIC, 17, \
350 struct btrfs_ioctl_search_args)
351#endif
352
353#ifndef BTRFS_IOC_INO_LOOKUP
354#define BTRFS_IOC_INO_LOOKUP _IOWR(BTRFS_IOCTL_MAGIC, 18, \
355 struct btrfs_ioctl_ino_lookup_args)
356#endif
357
358#ifndef BTRFS_IOC_SNAP_CREATE_V2
359#define BTRFS_IOC_SNAP_CREATE_V2 _IOW(BTRFS_IOCTL_MAGIC, 23, \
360 struct btrfs_ioctl_vol_args_v2)
361#endif
362
363#ifndef BTRFS_IOC_SUBVOL_GETFLAGS
364#define BTRFS_IOC_SUBVOL_GETFLAGS _IOR(BTRFS_IOCTL_MAGIC, 25, __u64)
365#endif
366
367#ifndef BTRFS_IOC_SUBVOL_SETFLAGS
368#define BTRFS_IOC_SUBVOL_SETFLAGS _IOW(BTRFS_IOCTL_MAGIC, 26, __u64)
369#endif
370
4b357e15
MM
371#ifndef BTRFS_IOC_DEV_INFO
372#define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
373 struct btrfs_ioctl_dev_info_args)
374#endif
375
376#ifndef BTRFS_IOC_FS_INFO
377#define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
7bed7f0e
ZJS
378 struct btrfs_ioctl_fs_info_args)
379#endif
380
381#ifndef BTRFS_IOC_DEVICES_READY
382#define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, \
383 struct btrfs_ioctl_vol_args)
4b357e15
MM
384#endif
385
d97fb408
MO
386#ifndef BTRFS_IOC_QUOTA_CTL
387#define BTRFS_IOC_QUOTA_CTL _IOWR(BTRFS_IOCTL_MAGIC, 40, \
388 struct btrfs_ioctl_quota_ctl_args)
389#endif
390
391#ifndef BTRFS_IOC_QGROUP_LIMIT
392#define BTRFS_IOC_QGROUP_LIMIT _IOR(BTRFS_IOCTL_MAGIC, 43, \
393 struct btrfs_ioctl_qgroup_limit_args)
394#endif
395
306578e5
SS
396#ifndef BTRFS_IOC_QUOTA_RESCAN_WAIT
397#define BTRFS_IOC_QUOTA_RESCAN_WAIT _IO(BTRFS_IOCTL_MAGIC, 46)
398#endif
399
10f9c755
LP
400#ifndef BTRFS_FIRST_FREE_OBJECTID
401#define BTRFS_FIRST_FREE_OBJECTID 256
402#endif
403
d9e2daaf
LP
404#ifndef BTRFS_LAST_FREE_OBJECTID
405#define BTRFS_LAST_FREE_OBJECTID -256ULL
406#endif
407
b6b18498
LP
408#ifndef BTRFS_ROOT_TREE_OBJECTID
409#define BTRFS_ROOT_TREE_OBJECTID 1
410#endif
411
412#ifndef BTRFS_QUOTA_TREE_OBJECTID
413#define BTRFS_QUOTA_TREE_OBJECTID 8ULL
414#endif
415
10f9c755
LP
416#ifndef BTRFS_ROOT_ITEM_KEY
417#define BTRFS_ROOT_ITEM_KEY 132
418#endif
419
b6b18498
LP
420#ifndef BTRFS_QGROUP_STATUS_KEY
421#define BTRFS_QGROUP_STATUS_KEY 240
422#endif
423
424#ifndef BTRFS_QGROUP_INFO_KEY
425#define BTRFS_QGROUP_INFO_KEY 242
426#endif
427
428#ifndef BTRFS_QGROUP_LIMIT_KEY
429#define BTRFS_QGROUP_LIMIT_KEY 244
430#endif
431
5bcd08db
LP
432#ifndef BTRFS_QGROUP_RELATION_KEY
433#define BTRFS_QGROUP_RELATION_KEY 246
434#endif
435
d9e2daaf
LP
436#ifndef BTRFS_ROOT_BACKREF_KEY
437#define BTRFS_ROOT_BACKREF_KEY 144
438#endif
439
746f8906
LP
440#ifndef BTRFS_SUPER_MAGIC
441#define BTRFS_SUPER_MAGIC 0x9123683E
442#endif
443
efdb0237
LP
444#ifndef CGROUP_SUPER_MAGIC
445#define CGROUP_SUPER_MAGIC 0x27e0eb
446#endif
447
09961995
AC
448#ifndef CGROUP2_SUPER_MAGIC
449#define CGROUP2_SUPER_MAGIC 0x63677270
450#endif
451
3228995c
CB
452#ifndef CLONE_NEWCGROUP
453#define CLONE_NEWCGROUP 0x02000000
454#endif
455
efdb0237
LP
456#ifndef TMPFS_MAGIC
457#define TMPFS_MAGIC 0x01021994
458#endif
459
88cd066e
LP
460#ifndef MQUEUE_MAGIC
461#define MQUEUE_MAGIC 0x19800202
462#endif
463
87c05f36
DH
464#ifndef SECURITYFS_MAGIC
465#define SECURITYFS_MAGIC 0x73636673
466#endif
467
468#ifndef TRACEFS_MAGIC
469#define TRACEFS_MAGIC 0x74726163
470#endif
471
472#ifndef BPF_FS_MAGIC
473#define BPF_FS_MAGIC 0xcafe4a11
474#endif
475
94d82985
LP
476#ifndef MS_MOVE
477#define MS_MOVE 8192
478#endif
479
7ef71470
ZJS
480#ifndef MS_REC
481#define MS_REC 16384
482#endif
483
7cb1094a 484#ifndef MS_PRIVATE
7ef71470 485#define MS_PRIVATE (1<<18)
7cb1094a
HH
486#endif
487
7ef71470
ZJS
488#ifndef MS_REC
489#define MS_REC (1<<19)
490#endif
491
492#ifndef MS_SHARED
493#define MS_SHARED (1<<20)
494#endif
495
496#ifndef MS_RELATIME
497#define MS_RELATIME (1<<21)
498#endif
499
500#ifndef MS_KERNMOUNT
501#define MS_KERNMOUNT (1<<22)
502#endif
503
504#ifndef MS_I_VERSION
505#define MS_I_VERSION (1<<23)
54ecda32
LP
506#endif
507
48ac500b 508#ifndef MS_STRICTATIME
7ef71470 509#define MS_STRICTATIME (1<<24)
48ac500b
LP
510#endif
511
7ef71470
ZJS
512#ifndef MS_LAZYTIME
513#define MS_LAZYTIME (1<<25)
a9621528
AM
514#endif
515
7ef71470
ZJS
516#ifndef SCM_SECURITY
517#define SCM_SECURITY 0x03
a9621528
AM
518#endif
519
8351ceae
LP
520#ifndef PR_SET_NO_NEW_PRIVS
521#define PR_SET_NO_NEW_PRIVS 38
522#endif
d4447f4d
AK
523
524#ifndef PR_SET_CHILD_SUBREAPER
525#define PR_SET_CHILD_SUBREAPER 36
526#endif
a8348796
LP
527
528#ifndef MAX_HANDLE_SZ
529#define MAX_HANDLE_SZ 128
530#endif
531
4db17f29
ZJS
532#ifndef HAVE_SECURE_GETENV
533# ifdef HAVE___SECURE_GETENV
534# define secure_getenv __secure_getenv
535# else
66330455 536# error "neither secure_getenv nor __secure_getenv are available"
4db17f29
ZJS
537# endif
538#endif
85210bff
LP
539
540#ifndef CIFS_MAGIC_NUMBER
65b3903f 541# define CIFS_MAGIC_NUMBER 0xFF534D42
85210bff 542#endif
8742514c
LP
543
544#ifndef TFD_TIMER_CANCEL_ON_SET
65b3903f 545# define TFD_TIMER_CANCEL_ON_SET (1 << 1)
8742514c 546#endif
f7db7a69
SL
547
548#ifndef SO_REUSEPORT
65b3903f 549# define SO_REUSEPORT 15
f7db7a69 550#endif
118ecf32
DH
551
552#ifndef EVIOCREVOKE
65b3903f 553# define EVIOCREVOKE _IOW('E', 0x91, int)
118ecf32
DH
554#endif
555
556#ifndef DRM_IOCTL_SET_MASTER
65b3903f 557# define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
118ecf32
DH
558#endif
559
560#ifndef DRM_IOCTL_DROP_MASTER
65b3903f
ZJS
561# define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
562#endif
563
daad709a
YM
564/* The precise definition of __O_TMPFILE is arch specific; use the
565 * values defined by the kernel (note: some are hexa, some are octal,
566 * duplicated as-is from the kernel definitions):
567 * - alpha, parisc, sparc: each has a specific value;
568 * - others: they use the "generic" value.
569 */
c09918f9
LP
570
571#ifndef __O_TMPFILE
daad709a
YM
572#if defined(__alpha__)
573#define __O_TMPFILE 0100000000
574#elif defined(__parisc__) || defined(__hppa__)
575#define __O_TMPFILE 0400000000
576#elif defined(__sparc__) || defined(__sparc64__)
577#define __O_TMPFILE 0x2000000
578#else
c09918f9
LP
579#define __O_TMPFILE 020000000
580#endif
581
582/* a horrid kludge trying to make sure that this will fail on old kernels */
583#ifndef O_TMPFILE
584#define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
585#endif
586
587#endif
3b794314 588
5f381b35
LP
589#if !HAVE_DECL_LO_FLAGS_PARTSCAN
590#define LO_FLAGS_PARTSCAN 8
591#endif
a853c45d
LP
592
593#ifndef LOOP_CTL_REMOVE
594#define LOOP_CTL_REMOVE 0x4C81
595#endif
596
597#ifndef LOOP_CTL_GET_FREE
598#define LOOP_CTL_GET_FREE 0x4C82
599#endif
0830ba61 600
84dd59b5
DH
601#if !HAVE_DECL_IFLA_INET6_ADDR_GEN_MODE
602#define IFLA_INET6_UNSPEC 0
603#define IFLA_INET6_FLAGS 1
604#define IFLA_INET6_CONF 2
605#define IFLA_INET6_STATS 3
606#define IFLA_INET6_MCAST 4
607#define IFLA_INET6_CACHEINFO 5
608#define IFLA_INET6_ICMP6STATS 6
609#define IFLA_INET6_TOKEN 7
610#define IFLA_INET6_ADDR_GEN_MODE 8
611#define __IFLA_INET6_MAX 9
612
3282493a 613#define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
84dd59b5
DH
614
615#define IN6_ADDR_GEN_MODE_EUI64 0
616#define IN6_ADDR_GEN_MODE_NONE 1
f4f5e50a
AJ
617#endif
618
619#if !HAVE_DECL_IN6_ADDR_GEN_MODE_STABLE_PRIVACY
fbc38f23 620#define IN6_ADDR_GEN_MODE_STABLE_PRIVACY 2
84dd59b5
DH
621#endif
622
75616a13
ZJS
623#if !HAVE_DECL_IFLA_MACVLAN_FLAGS
624#define IFLA_MACVLAN_UNSPEC 0
625#define IFLA_MACVLAN_MODE 1
626#define IFLA_MACVLAN_FLAGS 2
627#define __IFLA_MACVLAN_MAX 3
628
629#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
630#endif
631
c4a5ddc9
TG
632#if !HAVE_DECL_IFLA_IPVLAN_MODE
633#define IFLA_IPVLAN_UNSPEC 0
634#define IFLA_IPVLAN_MODE 1
635#define __IFLA_IPVLAN_MAX 2
636
637#define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
638
639#define IPVLAN_MODE_L2 0
640#define IPVLAN_MODE_L3 1
641#define IPVLAN_MAX 2
642#endif
643
6589d0db
JAS
644#if !HAVE_DECL_IFLA_VTI_REMOTE
645#define IFLA_VTI_UNSPEC 0
646#define IFLA_VTI_LINK 1
647#define IFLA_VTI_IKEY 2
648#define IFLA_VTI_OKEY 3
649#define IFLA_VTI_LOCAL 4
650#define IFLA_VTI_REMOTE 5
651#define __IFLA_VTI_MAX 6
652
653#define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
654#endif
655
81577dc2 656#if !HAVE_DECL_IFLA_PHYS_PORT_ID
bacef2a2 657#define IFLA_EXT_MASK 29
81577dc2
ZJS
658#undef IFLA_PROMISCUITY
659#define IFLA_PROMISCUITY 30
660#define IFLA_NUM_TX_QUEUES 31
661#define IFLA_NUM_RX_QUEUES 32
662#define IFLA_CARRIER 33
663#define IFLA_PHYS_PORT_ID 34
664#define __IFLA_MAX 35
665
666#define IFLA_MAX (__IFLA_MAX - 1)
667#endif
668
669#if !HAVE_DECL_IFLA_BOND_AD_INFO
670#define IFLA_BOND_UNSPEC 0
671#define IFLA_BOND_MODE 1
672#define IFLA_BOND_ACTIVE_SLAVE 2
673#define IFLA_BOND_MIIMON 3
674#define IFLA_BOND_UPDELAY 4
675#define IFLA_BOND_DOWNDELAY 5
676#define IFLA_BOND_USE_CARRIER 6
677#define IFLA_BOND_ARP_INTERVAL 7
678#define IFLA_BOND_ARP_IP_TARGET 8
679#define IFLA_BOND_ARP_VALIDATE 9
680#define IFLA_BOND_ARP_ALL_TARGETS 10
681#define IFLA_BOND_PRIMARY 11
682#define IFLA_BOND_PRIMARY_RESELECT 12
683#define IFLA_BOND_FAIL_OVER_MAC 13
684#define IFLA_BOND_XMIT_HASH_POLICY 14
685#define IFLA_BOND_RESEND_IGMP 15
686#define IFLA_BOND_NUM_PEER_NOTIF 16
687#define IFLA_BOND_ALL_SLAVES_ACTIVE 17
688#define IFLA_BOND_MIN_LINKS 18
689#define IFLA_BOND_LP_INTERVAL 19
690#define IFLA_BOND_PACKETS_PER_SLAVE 20
691#define IFLA_BOND_AD_LACP_RATE 21
692#define IFLA_BOND_AD_SELECT 22
693#define IFLA_BOND_AD_INFO 23
694#define __IFLA_BOND_MAX 24
0830ba61 695
79306206 696#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
0830ba61 697#endif
81577dc2
ZJS
698
699#if !HAVE_DECL_IFLA_VLAN_PROTOCOL
700#define IFLA_VLAN_UNSPEC 0
701#define IFLA_VLAN_ID 1
702#define IFLA_VLAN_FLAGS 2
703#define IFLA_VLAN_EGRESS_QOS 3
704#define IFLA_VLAN_INGRESS_QOS 4
705#define IFLA_VLAN_PROTOCOL 5
706#define __IFLA_VLAN_MAX 6
707
708#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
709#endif
710
583c14fc 711#if !HAVE_DECL_IFLA_VXLAN_REMCSUM_NOPARTIAL
81577dc2
ZJS
712#define IFLA_VXLAN_UNSPEC 0
713#define IFLA_VXLAN_ID 1
714#define IFLA_VXLAN_GROUP 2
715#define IFLA_VXLAN_LINK 3
716#define IFLA_VXLAN_LOCAL 4
717#define IFLA_VXLAN_TTL 5
718#define IFLA_VXLAN_TOS 6
719#define IFLA_VXLAN_LEARNING 7
720#define IFLA_VXLAN_AGEING 8
721#define IFLA_VXLAN_LIMIT 9
722#define IFLA_VXLAN_PORT_RANGE 10
723#define IFLA_VXLAN_PROXY 11
724#define IFLA_VXLAN_RSC 12
725#define IFLA_VXLAN_L2MISS 13
726#define IFLA_VXLAN_L3MISS 14
727#define IFLA_VXLAN_PORT 15
728#define IFLA_VXLAN_GROUP6 16
729#define IFLA_VXLAN_LOCAL6 17
583c14fc
MO
730#define IFLA_VXLAN_UDP_CSUM 18
731#define IFLA_VXLAN_UDP_ZERO_CSUM6_TX 19
732#define IFLA_VXLAN_UDP_ZERO_CSUM6_RX 20
733#define IFLA_VXLAN_REMCSUM_TX 21
734#define IFLA_VXLAN_REMCSUM_RX 22
735#define IFLA_VXLAN_GBP 23
736#define IFLA_VXLAN_REMCSUM_NOPARTIAL 24
737#define __IFLA_VXLAN_MAX 25
81577dc2
ZJS
738
739#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
740#endif
741
56bf3853 742#if !HAVE_DECL_IFLA_IPTUN_ENCAP_DPORT
81577dc2
ZJS
743#define IFLA_IPTUN_UNSPEC 0
744#define IFLA_IPTUN_LINK 1
745#define IFLA_IPTUN_LOCAL 2
746#define IFLA_IPTUN_REMOTE 3
747#define IFLA_IPTUN_TTL 4
748#define IFLA_IPTUN_TOS 5
749#define IFLA_IPTUN_ENCAP_LIMIT 6
750#define IFLA_IPTUN_FLOWINFO 7
751#define IFLA_IPTUN_FLAGS 8
752#define IFLA_IPTUN_PROTO 9
753#define IFLA_IPTUN_PMTUDISC 10
754#define IFLA_IPTUN_6RD_PREFIX 11
755#define IFLA_IPTUN_6RD_RELAY_PREFIX 12
756#define IFLA_IPTUN_6RD_PREFIXLEN 13
757#define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
56bf3853
SS
758#define IFLA_IPTUN_ENCAP_TYPE 15
759#define IFLA_IPTUN_ENCAP_FLAGS 16
760#define IFLA_IPTUN_ENCAP_SPORT 17
761#define IFLA_IPTUN_ENCAP_DPORT 18
762
763#define __IFLA_IPTUN_MAX 19
81577dc2
ZJS
764
765#define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1)
766#endif
767
66f4bc77
SS
768#if !HAVE_DECL_IFLA_GRE_ENCAP_DPORT
769#define IFLA_GRE_UNSPEC 0
770#define IFLA_GRE_LINK 1
771#define IFLA_GRE_IFLAGS 2
772#define IFLA_GRE_OFLAGS 3
773#define IFLA_GRE_IKEY 4
774#define IFLA_GRE_OKEY 5
775#define IFLA_GRE_LOCAL 6
776#define IFLA_GRE_REMOTE 7
777#define IFLA_GRE_TTL 8
778#define IFLA_GRE_TOS 9
779#define IFLA_GRE_PMTUDISC 10
780#define IFLA_GRE_ENCAP_LIMIT 11
781#define IFLA_GRE_FLOWINFO 12
782#define IFLA_GRE_FLAGS 13
783#define IFLA_GRE_ENCAP_TYPE 14
784#define IFLA_GRE_ENCAP_FLAGS 15
785#define IFLA_GRE_ENCAP_SPORT 16
786#define IFLA_GRE_ENCAP_DPORT 17
787
788#define __IFLA_GRE_MAX 18
789
790#define IFLA_GRE_MAX (__IFLA_GRE_MAX - 1)
791#endif
792
81577dc2
ZJS
793#if !HAVE_DECL_IFLA_BRIDGE_VLAN_INFO
794#define IFLA_BRIDGE_FLAGS 0
795#define IFLA_BRIDGE_MODE 1
796#define IFLA_BRIDGE_VLAN_INFO 2
797#define __IFLA_BRIDGE_MAX 3
798
799#define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
800#endif
623a4c97 801
13b498f9
TJ
802#ifndef BRIDGE_VLAN_INFO_RANGE_BEGIN
803#define BRIDGE_VLAN_INFO_RANGE_BEGIN (1<<3) /* VLAN is start of vlan range */
804#endif
805
806#ifndef BRIDGE_VLAN_INFO_RANGE_END
807#define BRIDGE_VLAN_INFO_RANGE_END (1<<4) /* VLAN is end of vlan range */
808#endif
809
3282493a 810#if !HAVE_DECL_IFLA_BR_VLAN_DEFAULT_PVID
c3eae485
SS
811#define IFLA_BR_UNSPEC 0
812#define IFLA_BR_FORWARD_DELAY 1
813#define IFLA_BR_HELLO_TIME 2
814#define IFLA_BR_MAX_AGE 3
815#define IFLA_BR_AGEING_TIME 4
816#define IFLA_BR_STP_STATE 5
817#define IFLA_BR_PRIORITY 6
3fef7a3f
SS
818#define IFLA_BR_VLAN_FILTERING 7
819#define IFLA_BR_VLAN_PROTOCOL 8
820#define IFLA_BR_GROUP_FWD_MASK 9
821#define IFLA_BR_ROOT_ID 10
822#define IFLA_BR_BRIDGE_ID 11
823#define IFLA_BR_ROOT_PORT 12
824#define IFLA_BR_ROOT_PATH_COST 13
825#define IFLA_BR_TOPOLOGY_CHANGE 14
826#define IFLA_BR_TOPOLOGY_CHANGE_DETECTED 15
827#define IFLA_BR_HELLO_TIMER 16
828#define IFLA_BR_TCN_TIMER 17
829#define IFLA_BR_TOPOLOGY_CHANGE_TIMER 18
830#define IFLA_BR_GC_TIMER 19
831#define IFLA_BR_GROUP_ADDR 20
832#define IFLA_BR_FDB_FLUSH 21
833#define IFLA_BR_MCAST_ROUTER 22
834#define IFLA_BR_MCAST_SNOOPING 23
835#define IFLA_BR_MCAST_QUERY_USE_IFADDR 24
836#define IFLA_BR_MCAST_QUERIER 25
837#define IFLA_BR_MCAST_HASH_ELASTICITY 26
838#define IFLA_BR_MCAST_HASH_MAX 27
839#define IFLA_BR_MCAST_LAST_MEMBER_CNT 28
840#define IFLA_BR_MCAST_STARTUP_QUERY_CNT 29
841#define IFLA_BR_MCAST_LAST_MEMBER_INTVL 30
842#define IFLA_BR_MCAST_MEMBERSHIP_INTVL 31
843#define IFLA_BR_MCAST_QUERIER_INTVL 32
844#define IFLA_BR_MCAST_QUERY_INTVL 33
845#define IFLA_BR_MCAST_QUERY_RESPONSE_INTVL 34
846#define IFLA_BR_MCAST_STARTUP_QUERY_INTVL 35
847#define IFLA_BR_NF_CALL_IPTABLES 36
848#define IFLA_BR_NF_CALL_IP6TABLES 37
849#define IFLA_BR_NF_CALL_ARPTABLES 38
850#define IFLA_BR_VLAN_DEFAULT_PVID 39
851#define __IFLA_BR_MAX 40
c3eae485
SS
852
853#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
854#endif
855
38a0245f 856#if !HAVE_DECL_IFLA_BRPORT_LEARNING_SYNC
8ecec322
ZJS
857#define IFLA_BRPORT_UNSPEC 0
858#define IFLA_BRPORT_STATE 1
859#define IFLA_BRPORT_PRIORITY 2
860#define IFLA_BRPORT_COST 3
861#define IFLA_BRPORT_MODE 4
862#define IFLA_BRPORT_GUARD 5
863#define IFLA_BRPORT_PROTECT 6
864#define IFLA_BRPORT_FAST_LEAVE 7
865#define IFLA_BRPORT_LEARNING 8
866#define IFLA_BRPORT_UNICAST_FLOOD 9
38a0245f
SS
867#define IFLA_BRPORT_LEARNING_SYNC 11
868#define __IFLA_BRPORT_MAX 12
8ecec322
ZJS
869
870#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
871#endif
872
26c34ab4
DM
873#if !HAVE_DECL_IFLA_BRPORT_PROXYARP
874#define IFLA_BRPORT_PROXYARP 10
875#endif
876
20897a0d
AR
877#if !HAVE_DECL_IFLA_VRF_TABLE
878#define IFLA_VRF_TABLE 1
879#endif
880
cf1755ba
MO
881#if !HAVE_DECL_NDA_IFINDEX
882#define NDA_UNSPEC 0
883#define NDA_DST 1
884#define NDA_LLADDR 2
885#define NDA_CACHEINFO 3
886#define NDA_PROBES 4
887#define NDA_VLAN 5
888#define NDA_PORT 6
889#define NDA_VNI 7
890#define NDA_IFINDEX 8
891#define __NDA_MAX 9
892
893#define NDA_MAX (__NDA_MAX - 1)
894#endif
895
b69015ef
TG
896#ifndef RTA_PREF
897#define RTA_PREF 20
898#endif
899
623a4c97
LP
900#ifndef IPV6_UNICAST_IF
901#define IPV6_UNICAST_IF 76
902#endif
ec2c5e43 903
439689c6
SS
904#ifndef IPV6_MIN_MTU
905#define IPV6_MIN_MTU 1280
906#endif
907
04d180c8
TG
908#ifndef IFF_MULTI_QUEUE
909#define IFF_MULTI_QUEUE 0x100
910#endif
911
ec2c5e43
LP
912#ifndef IFF_LOWER_UP
913#define IFF_LOWER_UP 0x10000
914#endif
915
916#ifndef IFF_DORMANT
917#define IFF_DORMANT 0x20000
918#endif
91988149
LP
919
920#ifndef BOND_XMIT_POLICY_ENCAP23
921#define BOND_XMIT_POLICY_ENCAP23 3
922#endif
923
924#ifndef BOND_XMIT_POLICY_ENCAP34
925#define BOND_XMIT_POLICY_ENCAP34 4
926#endif
04b67d49
TG
927
928#ifndef NET_ADDR_RANDOM
929# define NET_ADDR_RANDOM 1
930#endif
931
1cb636d9
CW
932#ifndef NET_NAME_UNKNOWN
933# define NET_NAME_UNKNOWN 0
934#endif
935
04b67d49
TG
936#ifndef NET_NAME_ENUM
937# define NET_NAME_ENUM 1
938#endif
939
940#ifndef NET_NAME_PREDICTABLE
941# define NET_NAME_PREDICTABLE 2
942#endif
943
944#ifndef NET_NAME_USER
945# define NET_NAME_USER 3
946#endif
947
948#ifndef NET_NAME_RENAMED
949# define NET_NAME_RENAMED 4
950#endif
7965435e
MO
951
952#ifndef BPF_XOR
953# define BPF_XOR 0xa0
954#endif
a5f03596
LP
955
956/* Note that LOOPBACK_IFINDEX is currently not exported by the
957 * kernel/glibc, but hardcoded internally by the kernel. However, as
958 * it is exported to userspace indirectly via rtnetlink and the
959 * ioctls, and made use of widely we define it here too, in a way that
960 * is compatible with the kernel's internal definition. */
961#ifndef LOOPBACK_IFINDEX
962#define LOOPBACK_IFINDEX 1
963#endif
875c2e22 964
34f7b9f9
LP
965#if !HAVE_DECL_IFA_FLAGS
966#define IFA_FLAGS 8
967#endif
968
f217be19
DH
969#ifndef IFA_F_MANAGETEMPADDR
970#define IFA_F_MANAGETEMPADDR 0x100
971#endif
972
b06ac35c
AS
973#ifndef IFA_F_NOPREFIXROUTE
974#define IFA_F_NOPREFIXROUTE 0x200
975#endif
976
875c2e22
LP
977#ifndef MAX_AUDIT_MESSAGE_LENGTH
978#define MAX_AUDIT_MESSAGE_LENGTH 8970
979#endif
980
981#ifndef AUDIT_NLGRP_MAX
982#define AUDIT_NLGRP_READLOG 1
983#endif
2822da4f
LP
984
985#ifndef CAP_MAC_OVERRIDE
986#define CAP_MAC_OVERRIDE 32
987#endif
988
989#ifndef CAP_MAC_ADMIN
990#define CAP_MAC_ADMIN 33
991#endif
992
993#ifndef CAP_SYSLOG
994#define CAP_SYSLOG 34
995#endif
996
997#ifndef CAP_WAKE_ALARM
998#define CAP_WAKE_ALARM 35
999#endif
1000
1001#ifndef CAP_BLOCK_SUSPEND
1002#define CAP_BLOCK_SUSPEND 36
1003#endif
1004
1005#ifndef CAP_AUDIT_READ
1006#define CAP_AUDIT_READ 37
1007#endif
60e1651a 1008
ebd93cb6
LP
1009#ifndef RENAME_NOREPLACE
1010#define RENAME_NOREPLACE (1 << 0)
1011#endif
f7ad54a3 1012
f7ad54a3
LP
1013#ifndef KCMP_FILE
1014#define KCMP_FILE 0
1015#endif
606df97b
PH
1016
1017#ifndef INPUT_PROP_POINTING_STICK
1018#define INPUT_PROP_POINTING_STICK 0x05
1019#endif
bd1acc9f
HG
1020
1021#ifndef INPUT_PROP_ACCELEROMETER
1022#define INPUT_PROP_ACCELEROMETER 0x06
1023#endif
e287086b 1024
de085700 1025#ifndef HAVE_KEY_SERIAL_T
e287086b
LP
1026typedef int32_t key_serial_t;
1027#endif
1028
e287086b
LP
1029#ifndef KEYCTL_READ
1030#define KEYCTL_READ 11
1031#endif
1032
1033#ifndef KEYCTL_SET_TIMEOUT
1034#define KEYCTL_SET_TIMEOUT 15
1035#endif
1036
1037#ifndef KEY_SPEC_USER_KEYRING
1038#define KEY_SPEC_USER_KEYRING -4
1039#endif
755d4b67
IP
1040
1041#ifndef PR_CAP_AMBIENT
1042#define PR_CAP_AMBIENT 47
1043#endif
1044
1045#ifndef PR_CAP_AMBIENT_IS_SET
1046#define PR_CAP_AMBIENT_IS_SET 1
1047#endif
1048
1049#ifndef PR_CAP_AMBIENT_RAISE
1050#define PR_CAP_AMBIENT_RAISE 2
1051#endif
1052
1053#ifndef PR_CAP_AMBIENT_CLEAR_ALL
1054#define PR_CAP_AMBIENT_CLEAR_ALL 4
1055#endif
6955a3ba
LP
1056
1057/* The following two defines are actually available in the kernel headers for longer, but we define them here anyway,
1058 * since that makes it easier to use them in conjunction with the glibc net/if.h header which conflicts with
1059 * linux/if.h. */
1060#ifndef IF_OPER_UNKNOWN
1061#define IF_OPER_UNKNOWN 0
1062#endif
1063
1064#ifndef IF_OPER_UP
1065#define IF_OPER_UP 6
c932fb71 1066
de085700 1067#ifndef HAVE_CHAR32_T
c932fb71
SL
1068#define char32_t uint32_t
1069#endif
1070
de085700 1071#ifndef HAVE_CHAR16_T
c932fb71
SL
1072#define char16_t uint16_t
1073#endif
1074
43a6a52e
LP
1075#ifndef ETHERTYPE_LLDP
1076#define ETHERTYPE_LLDP 0x88cc
1077#endif
1078
e63be084
SS
1079#ifndef IFA_F_MCAUTOJOIN
1080#define IFA_F_MCAUTOJOIN 0x400
1081#endif
1082
a39f92d3
SS
1083#ifndef HAVE_STRUCT_ETHTOOL_LINK_SETTINGS
1084
1085#define ETHTOOL_GLINKSETTINGS 0x0000004c /* Get ethtool_link_settings */
1086#define ETHTOOL_SLINKSETTINGS 0x0000004d /* Set ethtool_link_settings */
1087
1088struct ethtool_link_settings {
1089 __u32 cmd;
1090 __u32 speed;
1091 __u8 duplex;
1092 __u8 port;
1093 __u8 phy_address;
1094 __u8 autoneg;
1095 __u8 mdio_support;
1096 __u8 eth_tp_mdix;
1097 __u8 eth_tp_mdix_ctrl;
1098 __s8 link_mode_masks_nwords;
1099 __u32 reserved[8];
1100 __u32 link_mode_masks[0];
1101 /* layout of link_mode_masks fields:
1102 * __u32 map_supported[link_mode_masks_nwords];
1103 * __u32 map_advertising[link_mode_masks_nwords];
1104 * __u32 map_lp_advertising[link_mode_masks_nwords];
1105 */
1106};
1107
1108#endif
1109
6955a3ba 1110#endif
1d4b557d 1111
0fe5f3c5
LP
1112#ifndef SOL_ALG
1113#define SOL_ALG 279
1114#endif
1115
2f368e4a 1116#include "missing_syscall.h"