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