chiark / gitweb /
networkd: introduce vxcan netdev. (#7150)
[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 <inttypes.h>
27 #include <linux/audit.h>
28 #include <linux/capability.h>
29 #include <linux/if_link.h>
30 #include <linux/input.h>
31 #include <linux/loop.h>
32 #include <linux/neighbour.h>
33 #include <linux/oom.h>
34 #include <linux/rtnetlink.h>
35 #include <net/ethernet.h>
36 #include <stdlib.h>
37 #include <sys/resource.h>
38 #include <sys/socket.h>
39 #include <sys/syscall.h>
40 #include <uchar.h>
41 #include <unistd.h>
42
43 /// Additional includes needed by elogind
44 #include "musl_missing.h"
45
46 #if HAVE_AUDIT
47 #include <libaudit.h>
48 #endif
49
50 #ifdef ARCH_MIPS
51 #include <asm/sgidefs.h>
52 #endif
53
54 #if HAVE_LINUX_BTRFS_H
55 #include <linux/btrfs.h>
56 #endif
57
58 #if HAVE_LINUX_VM_SOCKETS_H
59 #include <linux/vm_sockets.h>
60 #else
61 #define VMADDR_CID_ANY -1U
62 struct sockaddr_vm {
63         unsigned short svm_family;
64         unsigned short svm_reserved1;
65         unsigned int svm_port;
66         unsigned int svm_cid;
67         unsigned char svm_zero[sizeof(struct sockaddr) -
68                                sizeof(unsigned short) -
69                                sizeof(unsigned short) -
70                                sizeof(unsigned int) -
71                                sizeof(unsigned int)];
72 };
73 #endif /* !HAVE_LINUX_VM_SOCKETS_H */
74
75 #ifndef RLIMIT_RTTIME
76 #define RLIMIT_RTTIME 15
77 #endif
78
79 /* If RLIMIT_RTTIME is not defined, then we cannot use RLIMIT_NLIMITS as is */
80 #define _RLIMIT_MAX (RLIMIT_RTTIME+1 > RLIMIT_NLIMITS ? RLIMIT_RTTIME+1 : RLIMIT_NLIMITS)
81
82 #ifndef F_LINUX_SPECIFIC_BASE
83 #define F_LINUX_SPECIFIC_BASE 1024
84 #endif
85
86 #ifndef F_SETPIPE_SZ
87 #define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7)
88 #endif
89
90 #ifndef F_GETPIPE_SZ
91 #define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
92 #endif
93
94 #ifndef F_ADD_SEALS
95 #define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
96 #define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
97
98 #define F_SEAL_SEAL     0x0001  /* prevent further seals from being set */
99 #define F_SEAL_SHRINK   0x0002  /* prevent file from shrinking */
100 #define F_SEAL_GROW     0x0004  /* prevent file from growing */
101 #define F_SEAL_WRITE    0x0008  /* prevent writes */
102 #endif
103
104 #ifndef F_OFD_GETLK
105 #define F_OFD_GETLK     36
106 #define F_OFD_SETLK     37
107 #define F_OFD_SETLKW    38
108 #endif
109
110 #ifndef MFD_ALLOW_SEALING
111 #define MFD_ALLOW_SEALING 0x0002U
112 #endif
113
114 #ifndef MFD_CLOEXEC
115 #define MFD_CLOEXEC 0x0001U
116 #endif
117
118 #ifndef IP_FREEBIND
119 #define IP_FREEBIND 15
120 #endif
121
122 #ifndef OOM_SCORE_ADJ_MIN
123 #define OOM_SCORE_ADJ_MIN (-1000)
124 #endif
125
126 #ifndef OOM_SCORE_ADJ_MAX
127 #define OOM_SCORE_ADJ_MAX 1000
128 #endif
129
130 #ifndef AUDIT_SERVICE_START
131 #define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
132 #endif
133
134 #ifndef AUDIT_SERVICE_STOP
135 #define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
136 #endif
137
138 #ifndef TIOCVHANGUP
139 #define TIOCVHANGUP 0x5437
140 #endif
141
142 #ifndef IP_TRANSPARENT
143 #define IP_TRANSPARENT 19
144 #endif
145
146 #ifndef SOL_NETLINK
147 #define SOL_NETLINK 270
148 #endif
149
150 #ifndef NETLINK_LIST_MEMBERSHIPS
151 #define NETLINK_LIST_MEMBERSHIPS 9
152 #endif
153
154 #ifndef SOL_SCTP
155 #define SOL_SCTP 132
156 #endif
157
158 #ifndef GRND_NONBLOCK
159 #define GRND_NONBLOCK 0x0001
160 #endif
161
162 #ifndef GRND_RANDOM
163 #define GRND_RANDOM 0x0002
164 #endif
165
166 #ifndef FS_NOCOW_FL
167 #define FS_NOCOW_FL 0x00800000
168 #endif
169
170 #ifndef BTRFS_IOCTL_MAGIC
171 #define BTRFS_IOCTL_MAGIC 0x94
172 #endif
173
174 #ifndef BTRFS_PATH_NAME_MAX
175 #define BTRFS_PATH_NAME_MAX 4087
176 #endif
177
178 #ifndef BTRFS_DEVICE_PATH_NAME_MAX
179 #define BTRFS_DEVICE_PATH_NAME_MAX 1024
180 #endif
181
182 #ifndef BTRFS_FSID_SIZE
183 #define BTRFS_FSID_SIZE 16
184 #endif
185
186 #ifndef BTRFS_UUID_SIZE
187 #define BTRFS_UUID_SIZE 16
188 #endif
189
190 #ifndef BTRFS_SUBVOL_RDONLY
191 #define BTRFS_SUBVOL_RDONLY (1ULL << 1)
192 #endif
193
194 #ifndef BTRFS_SUBVOL_NAME_MAX
195 #define BTRFS_SUBVOL_NAME_MAX 4039
196 #endif
197
198 #ifndef BTRFS_INO_LOOKUP_PATH_MAX
199 #define BTRFS_INO_LOOKUP_PATH_MAX 4080
200 #endif
201
202 #ifndef BTRFS_SEARCH_ARGS_BUFSIZE
203 #define BTRFS_SEARCH_ARGS_BUFSIZE (4096 - sizeof(struct btrfs_ioctl_search_key))
204 #endif
205
206 #ifndef BTRFS_QGROUP_LEVEL_SHIFT
207 #define BTRFS_QGROUP_LEVEL_SHIFT 48
208 #endif
209
210 #if 0 /// UNNEEDED by elogind (It can not support BTRFS at all)
211 #if ! HAVE_LINUX_BTRFS_H
212 struct btrfs_ioctl_vol_args {
213         int64_t fd;
214         char name[BTRFS_PATH_NAME_MAX + 1];
215 };
216
217 struct btrfs_qgroup_limit {
218         __u64 flags;
219         __u64 max_rfer;
220         __u64 max_excl;
221         __u64 rsv_rfer;
222         __u64 rsv_excl;
223 };
224
225 struct btrfs_qgroup_inherit {
226         __u64 flags;
227         __u64 num_qgroups;
228         __u64 num_ref_copies;
229         __u64 num_excl_copies;
230         struct btrfs_qgroup_limit lim;
231         __u64 qgroups[0];
232 };
233
234 struct btrfs_ioctl_qgroup_limit_args {
235         __u64 qgroupid;
236         struct btrfs_qgroup_limit lim;
237 };
238
239 struct btrfs_ioctl_vol_args_v2 {
240         __s64 fd;
241         __u64 transid;
242         __u64 flags;
243         union {
244                 struct {
245                         __u64 size;
246                         struct btrfs_qgroup_inherit *qgroup_inherit;
247                 };
248                 __u64 unused[4];
249         };
250         char name[BTRFS_SUBVOL_NAME_MAX + 1];
251 };
252
253 struct btrfs_ioctl_dev_info_args {
254         uint64_t devid;                         /* in/out */
255         uint8_t uuid[BTRFS_UUID_SIZE];          /* in/out */
256         uint64_t bytes_used;                    /* out */
257         uint64_t total_bytes;                   /* out */
258         uint64_t unused[379];                   /* pad to 4k */
259         char path[BTRFS_DEVICE_PATH_NAME_MAX];  /* out */
260 };
261
262 struct btrfs_ioctl_fs_info_args {
263         uint64_t max_id;                        /* out */
264         uint64_t num_devices;                   /* out */
265         uint8_t fsid[BTRFS_FSID_SIZE];          /* out */
266         uint64_t reserved[124];                 /* pad to 1k */
267 };
268
269 struct btrfs_ioctl_ino_lookup_args {
270         __u64 treeid;
271         __u64 objectid;
272         char name[BTRFS_INO_LOOKUP_PATH_MAX];
273 };
274
275 struct btrfs_ioctl_search_key {
276         /* which root are we searching.  0 is the tree of tree roots */
277         __u64 tree_id;
278
279         /* keys returned will be >= min and <= max */
280         __u64 min_objectid;
281         __u64 max_objectid;
282
283         /* keys returned will be >= min and <= max */
284         __u64 min_offset;
285         __u64 max_offset;
286
287         /* max and min transids to search for */
288         __u64 min_transid;
289         __u64 max_transid;
290
291         /* keys returned will be >= min and <= max */
292         __u32 min_type;
293         __u32 max_type;
294
295         /*
296          * how many items did userland ask for, and how many are we
297          * returning
298          */
299         __u32 nr_items;
300
301         /* align to 64 bits */
302         __u32 unused;
303
304         /* some extra for later */
305         __u64 unused1;
306         __u64 unused2;
307         __u64 unused3;
308         __u64 unused4;
309 };
310
311 struct btrfs_ioctl_search_header {
312         __u64 transid;
313         __u64 objectid;
314         __u64 offset;
315         __u32 type;
316         __u32 len;
317 };
318
319
320 struct btrfs_ioctl_search_args {
321         struct btrfs_ioctl_search_key key;
322         char buf[BTRFS_SEARCH_ARGS_BUFSIZE];
323 };
324
325 struct btrfs_ioctl_clone_range_args {
326         __s64 src_fd;
327         __u64 src_offset, src_length;
328         __u64 dest_offset;
329 };
330
331 #define BTRFS_QUOTA_CTL_ENABLE  1
332 #define BTRFS_QUOTA_CTL_DISABLE 2
333 #define BTRFS_QUOTA_CTL_RESCAN__NOTUSED 3
334 struct btrfs_ioctl_quota_ctl_args {
335         __u64 cmd;
336         __u64 status;
337 };
338 #endif
339
340 #ifndef BTRFS_IOC_DEFRAG
341 #define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
342                                  struct btrfs_ioctl_vol_args)
343 #endif
344
345 #ifndef BTRFS_IOC_RESIZE
346 #define BTRFS_IOC_RESIZE _IOW(BTRFS_IOCTL_MAGIC, 3, \
347                                  struct btrfs_ioctl_vol_args)
348 #endif
349
350 #ifndef BTRFS_IOC_CLONE
351 #define BTRFS_IOC_CLONE _IOW(BTRFS_IOCTL_MAGIC, 9, int)
352 #endif
353
354 #ifndef BTRFS_IOC_CLONE_RANGE
355 #define BTRFS_IOC_CLONE_RANGE _IOW(BTRFS_IOCTL_MAGIC, 13, \
356                                  struct btrfs_ioctl_clone_range_args)
357 #endif
358
359 #ifndef BTRFS_IOC_SUBVOL_CREATE
360 #define BTRFS_IOC_SUBVOL_CREATE _IOW(BTRFS_IOCTL_MAGIC, 14, \
361                                  struct btrfs_ioctl_vol_args)
362 #endif
363
364 #ifndef BTRFS_IOC_SNAP_DESTROY
365 #define BTRFS_IOC_SNAP_DESTROY _IOW(BTRFS_IOCTL_MAGIC, 15, \
366                                  struct btrfs_ioctl_vol_args)
367 #endif
368
369 #ifndef BTRFS_IOC_TREE_SEARCH
370 #define BTRFS_IOC_TREE_SEARCH _IOWR(BTRFS_IOCTL_MAGIC, 17, \
371                                  struct btrfs_ioctl_search_args)
372 #endif
373
374 #ifndef BTRFS_IOC_INO_LOOKUP
375 #define BTRFS_IOC_INO_LOOKUP _IOWR(BTRFS_IOCTL_MAGIC, 18, \
376                                  struct btrfs_ioctl_ino_lookup_args)
377 #endif
378
379 #ifndef BTRFS_IOC_SNAP_CREATE_V2
380 #define BTRFS_IOC_SNAP_CREATE_V2 _IOW(BTRFS_IOCTL_MAGIC, 23, \
381                                  struct btrfs_ioctl_vol_args_v2)
382 #endif
383
384 #ifndef BTRFS_IOC_SUBVOL_GETFLAGS
385 #define BTRFS_IOC_SUBVOL_GETFLAGS _IOR(BTRFS_IOCTL_MAGIC, 25, __u64)
386 #endif
387
388 #ifndef BTRFS_IOC_SUBVOL_SETFLAGS
389 #define BTRFS_IOC_SUBVOL_SETFLAGS _IOW(BTRFS_IOCTL_MAGIC, 26, __u64)
390 #endif
391
392 #ifndef BTRFS_IOC_DEV_INFO
393 #define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
394                                  struct btrfs_ioctl_dev_info_args)
395 #endif
396
397 #ifndef BTRFS_IOC_FS_INFO
398 #define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
399                                  struct btrfs_ioctl_fs_info_args)
400 #endif
401
402 #ifndef BTRFS_IOC_DEVICES_READY
403 #define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, \
404                                  struct btrfs_ioctl_vol_args)
405 #endif
406
407 #ifndef BTRFS_IOC_QUOTA_CTL
408 #define BTRFS_IOC_QUOTA_CTL _IOWR(BTRFS_IOCTL_MAGIC, 40, \
409                                struct btrfs_ioctl_quota_ctl_args)
410 #endif
411
412 #ifndef BTRFS_IOC_QGROUP_LIMIT
413 #define BTRFS_IOC_QGROUP_LIMIT _IOR(BTRFS_IOCTL_MAGIC, 43, \
414                                struct btrfs_ioctl_qgroup_limit_args)
415 #endif
416
417 #ifndef BTRFS_IOC_QUOTA_RESCAN_WAIT
418 #define BTRFS_IOC_QUOTA_RESCAN_WAIT _IO(BTRFS_IOCTL_MAGIC, 46)
419 #endif
420
421 #ifndef BTRFS_FIRST_FREE_OBJECTID
422 #define BTRFS_FIRST_FREE_OBJECTID 256
423 #endif
424
425 #ifndef BTRFS_LAST_FREE_OBJECTID
426 #define BTRFS_LAST_FREE_OBJECTID -256ULL
427 #endif
428
429 #ifndef BTRFS_ROOT_TREE_OBJECTID
430 #define BTRFS_ROOT_TREE_OBJECTID 1
431 #endif
432
433 #ifndef BTRFS_QUOTA_TREE_OBJECTID
434 #define BTRFS_QUOTA_TREE_OBJECTID 8ULL
435 #endif
436
437 #ifndef BTRFS_ROOT_ITEM_KEY
438 #define BTRFS_ROOT_ITEM_KEY 132
439 #endif
440
441 #ifndef BTRFS_QGROUP_STATUS_KEY
442 #define BTRFS_QGROUP_STATUS_KEY 240
443 #endif
444
445 #ifndef BTRFS_QGROUP_INFO_KEY
446 #define BTRFS_QGROUP_INFO_KEY 242
447 #endif
448
449 #ifndef BTRFS_QGROUP_LIMIT_KEY
450 #define BTRFS_QGROUP_LIMIT_KEY 244
451 #endif
452
453 #ifndef BTRFS_QGROUP_RELATION_KEY
454 #define BTRFS_QGROUP_RELATION_KEY 246
455 #endif
456
457 #ifndef BTRFS_ROOT_BACKREF_KEY
458 #define BTRFS_ROOT_BACKREF_KEY 144
459 #endif
460
461 #ifndef BTRFS_SUPER_MAGIC
462 #define BTRFS_SUPER_MAGIC 0x9123683E
463 #endif
464
465 #endif // 0
466 #ifndef CGROUP_SUPER_MAGIC
467 #define CGROUP_SUPER_MAGIC 0x27e0eb
468 #endif
469
470 #ifndef CGROUP2_SUPER_MAGIC
471 #define CGROUP2_SUPER_MAGIC 0x63677270
472 #endif
473
474 #ifndef CLONE_NEWCGROUP
475 #define CLONE_NEWCGROUP 0x02000000
476 #endif
477
478 #ifndef TMPFS_MAGIC
479 #define TMPFS_MAGIC 0x01021994
480 #endif
481
482 #ifndef MQUEUE_MAGIC
483 #define MQUEUE_MAGIC 0x19800202
484 #endif
485
486 #ifndef SECURITYFS_MAGIC
487 #define SECURITYFS_MAGIC 0x73636673
488 #endif
489
490 #ifndef TRACEFS_MAGIC
491 #define TRACEFS_MAGIC 0x74726163
492 #endif
493
494 #ifndef BPF_FS_MAGIC
495 #define BPF_FS_MAGIC 0xcafe4a11
496 #endif
497
498 #ifndef MS_MOVE
499 #define MS_MOVE 8192
500 #endif
501
502 #ifndef MS_REC
503 #define MS_REC 16384
504 #endif
505
506 #ifndef MS_PRIVATE
507 #define MS_PRIVATE      (1<<18)
508 #endif
509
510 #ifndef MS_REC
511 #define MS_REC          (1<<19)
512 #endif
513
514 #ifndef MS_SHARED
515 #define MS_SHARED       (1<<20)
516 #endif
517
518 #ifndef MS_RELATIME
519 #define MS_RELATIME     (1<<21)
520 #endif
521
522 #ifndef MS_KERNMOUNT
523 #define MS_KERNMOUNT    (1<<22)
524 #endif
525
526 #ifndef MS_I_VERSION
527 #define MS_I_VERSION    (1<<23)
528 #endif
529
530 #ifndef MS_STRICTATIME
531 #define MS_STRICTATIME  (1<<24)
532 #endif
533
534 #ifndef MS_LAZYTIME
535 #define MS_LAZYTIME     (1<<25)
536 #endif
537
538 #ifndef SCM_SECURITY
539 #define SCM_SECURITY 0x03
540 #endif
541
542 #ifndef PR_SET_NO_NEW_PRIVS
543 #define PR_SET_NO_NEW_PRIVS 38
544 #endif
545
546 #ifndef PR_SET_CHILD_SUBREAPER
547 #define PR_SET_CHILD_SUBREAPER 36
548 #endif
549
550 #ifndef MAX_HANDLE_SZ
551 #define MAX_HANDLE_SZ 128
552 #endif
553
554 #if ! HAVE_SECURE_GETENV
555 #  if HAVE___SECURE_GETENV
556 #    define secure_getenv __secure_getenv
557 #  else
558 #    error "neither secure_getenv nor __secure_getenv are available"
559 #  endif
560 #endif
561
562 #ifndef CIFS_MAGIC_NUMBER
563 #  define CIFS_MAGIC_NUMBER 0xFF534D42
564 #endif
565
566 #ifndef TFD_TIMER_CANCEL_ON_SET
567 #  define TFD_TIMER_CANCEL_ON_SET (1 << 1)
568 #endif
569
570 #ifndef SO_REUSEPORT
571 #  define SO_REUSEPORT 15
572 #endif
573
574 #ifndef EVIOCREVOKE
575 #  define EVIOCREVOKE _IOW('E', 0x91, int)
576 #endif
577
578 #ifndef EVIOCSMASK
579
580 struct input_mask {
581         uint32_t type;
582         uint32_t codes_size;
583         uint64_t codes_ptr;
584 };
585
586 #define EVIOCSMASK _IOW('E', 0x93, struct input_mask)
587 #endif
588
589 #ifndef DRM_IOCTL_SET_MASTER
590 #  define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
591 #endif
592
593 #ifndef DRM_IOCTL_DROP_MASTER
594 #  define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
595 #endif
596
597 /* The precise definition of __O_TMPFILE is arch specific; use the
598  * values defined by the kernel (note: some are hexa, some are octal,
599  * duplicated as-is from the kernel definitions):
600  * - alpha, parisc, sparc: each has a specific value;
601  * - others: they use the "generic" value.
602  */
603
604 #ifndef __O_TMPFILE
605 #if defined(__alpha__)
606 #define __O_TMPFILE     0100000000
607 #elif defined(__parisc__) || defined(__hppa__)
608 #define __O_TMPFILE     0400000000
609 #elif defined(__sparc__) || defined(__sparc64__)
610 #define __O_TMPFILE     0x2000000
611 #else
612 #define __O_TMPFILE     020000000
613 #endif
614 #endif
615
616 /* a horrid kludge trying to make sure that this will fail on old kernels */
617 #ifndef O_TMPFILE
618 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
619 #endif
620
621 #if !HAVE_LO_FLAGS_PARTSCAN
622 #define LO_FLAGS_PARTSCAN 8
623 #endif
624
625 #ifndef LOOP_CTL_REMOVE
626 #define LOOP_CTL_REMOVE 0x4C81
627 #endif
628
629 #ifndef LOOP_CTL_GET_FREE
630 #define LOOP_CTL_GET_FREE 0x4C82
631 #endif
632
633 #if !HAVE_IFLA_INET6_ADDR_GEN_MODE
634 #define IFLA_INET6_UNSPEC 0
635 #define IFLA_INET6_FLAGS 1
636 #define IFLA_INET6_CONF 2
637 #define IFLA_INET6_STATS 3
638 #define IFLA_INET6_MCAST 4
639 #define IFLA_INET6_CACHEINFO 5
640 #define IFLA_INET6_ICMP6STATS 6
641 #define IFLA_INET6_TOKEN 7
642 #define IFLA_INET6_ADDR_GEN_MODE 8
643 #define __IFLA_INET6_MAX 9
644
645 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
646
647 #define IN6_ADDR_GEN_MODE_EUI64 0
648 #define IN6_ADDR_GEN_MODE_NONE 1
649 #endif
650
651 #if !HAVE_IN6_ADDR_GEN_MODE_STABLE_PRIVACY
652 #define IN6_ADDR_GEN_MODE_STABLE_PRIVACY 2
653 #endif
654
655 #if !HAVE_IFLA_MACVLAN_FLAGS
656 #define IFLA_MACVLAN_UNSPEC 0
657 #define IFLA_MACVLAN_MODE 1
658 #define IFLA_MACVLAN_FLAGS 2
659 #define __IFLA_MACVLAN_MAX 3
660
661 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
662 #endif
663
664 #if !HAVE_IFLA_IPVLAN_MODE
665 #define IFLA_IPVLAN_UNSPEC 0
666 #define IFLA_IPVLAN_MODE 1
667 #define __IFLA_IPVLAN_MAX 2
668
669 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
670
671 #define IPVLAN_MODE_L2 0
672 #define IPVLAN_MODE_L3 1
673 #define IPVLAN_MAX 2
674 #endif
675
676 #if !HAVE_IFLA_VTI_REMOTE
677 #define IFLA_VTI_UNSPEC 0
678 #define IFLA_VTI_LINK 1
679 #define IFLA_VTI_IKEY 2
680 #define IFLA_VTI_OKEY 3
681 #define IFLA_VTI_LOCAL 4
682 #define IFLA_VTI_REMOTE 5
683 #define __IFLA_VTI_MAX 6
684
685 #define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
686 #endif
687
688 #if !HAVE_IFLA_PHYS_PORT_ID
689 #define IFLA_EXT_MASK 29
690 #undef IFLA_PROMISCUITY
691 #define IFLA_PROMISCUITY 30
692 #define IFLA_NUM_TX_QUEUES 31
693 #define IFLA_NUM_RX_QUEUES 32
694 #define IFLA_CARRIER 33
695 #define IFLA_PHYS_PORT_ID 34
696 #define __IFLA_MAX 35
697
698 #define IFLA_MAX (__IFLA_MAX - 1)
699 #endif
700
701 #if !HAVE_IFLA_BOND_AD_INFO
702 #define IFLA_BOND_UNSPEC 0
703 #define IFLA_BOND_MODE 1
704 #define IFLA_BOND_ACTIVE_SLAVE 2
705 #define IFLA_BOND_MIIMON 3
706 #define IFLA_BOND_UPDELAY 4
707 #define IFLA_BOND_DOWNDELAY 5
708 #define IFLA_BOND_USE_CARRIER 6
709 #define IFLA_BOND_ARP_INTERVAL 7
710 #define IFLA_BOND_ARP_IP_TARGET 8
711 #define IFLA_BOND_ARP_VALIDATE 9
712 #define IFLA_BOND_ARP_ALL_TARGETS 10
713 #define IFLA_BOND_PRIMARY 11
714 #define IFLA_BOND_PRIMARY_RESELECT 12
715 #define IFLA_BOND_FAIL_OVER_MAC 13
716 #define IFLA_BOND_XMIT_HASH_POLICY 14
717 #define IFLA_BOND_RESEND_IGMP 15
718 #define IFLA_BOND_NUM_PEER_NOTIF 16
719 #define IFLA_BOND_ALL_SLAVES_ACTIVE 17
720 #define IFLA_BOND_MIN_LINKS 18
721 #define IFLA_BOND_LP_INTERVAL 19
722 #define IFLA_BOND_PACKETS_PER_SLAVE 20
723 #define IFLA_BOND_AD_LACP_RATE 21
724 #define IFLA_BOND_AD_SELECT 22
725 #define IFLA_BOND_AD_INFO 23
726 #define __IFLA_BOND_MAX 24
727
728 #define IFLA_BOND_MAX   (__IFLA_BOND_MAX - 1)
729 #endif
730
731 #if !HAVE_IFLA_VLAN_PROTOCOL
732 #define IFLA_VLAN_UNSPEC 0
733 #define IFLA_VLAN_ID 1
734 #define IFLA_VLAN_FLAGS 2
735 #define IFLA_VLAN_EGRESS_QOS 3
736 #define IFLA_VLAN_INGRESS_QOS 4
737 #define IFLA_VLAN_PROTOCOL 5
738 #define __IFLA_VLAN_MAX 6
739
740 #define IFLA_VLAN_MAX   (__IFLA_VLAN_MAX - 1)
741 #endif
742
743 #if !HAVE_IFLA_VXLAN_GPE
744 #define IFLA_VXLAN_UNSPEC 0
745 #define IFLA_VXLAN_ID 1
746 #define IFLA_VXLAN_GROUP 2
747 #define IFLA_VXLAN_LINK 3
748 #define IFLA_VXLAN_LOCAL 4
749 #define IFLA_VXLAN_TTL 5
750 #define IFLA_VXLAN_TOS 6
751 #define IFLA_VXLAN_LEARNING 7
752 #define IFLA_VXLAN_AGEING 8
753 #define IFLA_VXLAN_LIMIT 9
754 #define IFLA_VXLAN_PORT_RANGE 10
755 #define IFLA_VXLAN_PROXY 11
756 #define IFLA_VXLAN_RSC 12
757 #define IFLA_VXLAN_L2MISS 13
758 #define IFLA_VXLAN_L3MISS 14
759 #define IFLA_VXLAN_PORT 15
760 #define IFLA_VXLAN_GROUP6 16
761 #define IFLA_VXLAN_LOCAL6 17
762 #define IFLA_VXLAN_UDP_CSUM 18
763 #define IFLA_VXLAN_UDP_ZERO_CSUM6_TX 19
764 #define IFLA_VXLAN_UDP_ZERO_CSUM6_RX 20
765 #define IFLA_VXLAN_REMCSUM_TX 21
766 #define IFLA_VXLAN_REMCSUM_RX 22
767 #define IFLA_VXLAN_GBP 23
768 #define IFLA_VXLAN_REMCSUM_NOPARTIAL 24
769 #define IFLA_VXLAN_COLLECT_METADATA 25
770 #define IFLA_VXLAN_LABEL 26
771 #define IFLA_VXLAN_GPE 27
772
773 #define __IFLA_VXLAN_MAX 28
774
775 #define IFLA_VXLAN_MAX  (__IFLA_VXLAN_MAX - 1)
776 #endif
777
778 #if !HAVE_IFLA_GENEVE_LABEL
779 #define IFLA_GENEVE_UNSPEC 0
780 #define IFLA_GENEVE_ID 1
781 #define IFLA_GENEVE_REMOTE 2
782 #define IFLA_GENEVE_TTL 3
783 #define IFLA_GENEVE_TOS 4
784 #define IFLA_GENEVE_PORT 5
785 #define IFLA_GENEVE_COLLECT_METADATA 6
786 #define IFLA_GENEVE_REMOTE6 7
787 #define IFLA_GENEVE_UDP_CSUM 8
788 #define IFLA_GENEVE_UDP_ZERO_CSUM6_TX 9
789 #define IFLA_GENEVE_UDP_ZERO_CSUM6_RX 10
790 #define IFLA_GENEVE_LABEL 11
791
792 #define __IFLA_GENEVE_MAX 12
793
794 #define IFLA_GENEVE_MAX  (__IFLA_GENEVE_MAX - 1)
795 #endif
796
797 #if !HAVE_IFLA_IPTUN_ENCAP_DPORT
798 #define IFLA_IPTUN_UNSPEC 0
799 #define IFLA_IPTUN_LINK 1
800 #define IFLA_IPTUN_LOCAL 2
801 #define IFLA_IPTUN_REMOTE 3
802 #define IFLA_IPTUN_TTL 4
803 #define IFLA_IPTUN_TOS 5
804 #define IFLA_IPTUN_ENCAP_LIMIT 6
805 #define IFLA_IPTUN_FLOWINFO 7
806 #define IFLA_IPTUN_FLAGS 8
807 #define IFLA_IPTUN_PROTO 9
808 #define IFLA_IPTUN_PMTUDISC 10
809 #define IFLA_IPTUN_6RD_PREFIX 11
810 #define IFLA_IPTUN_6RD_RELAY_PREFIX 12
811 #define IFLA_IPTUN_6RD_PREFIXLEN 13
812 #define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
813 #define IFLA_IPTUN_ENCAP_TYPE 15
814 #define IFLA_IPTUN_ENCAP_FLAGS 16
815 #define IFLA_IPTUN_ENCAP_SPORT 17
816 #define IFLA_IPTUN_ENCAP_DPORT 18
817
818 #define __IFLA_IPTUN_MAX 19
819
820 #define IFLA_IPTUN_MAX  (__IFLA_IPTUN_MAX - 1)
821 #endif
822
823 #if !HAVE_IFLA_GRE_ENCAP_DPORT
824 #define IFLA_GRE_UNSPEC 0
825 #define IFLA_GRE_LINK 1
826 #define IFLA_GRE_IFLAGS 2
827 #define IFLA_GRE_OFLAGS 3
828 #define IFLA_GRE_IKEY 4
829 #define IFLA_GRE_OKEY 5
830 #define IFLA_GRE_LOCAL 6
831 #define IFLA_GRE_REMOTE 7
832 #define IFLA_GRE_TTL 8
833 #define IFLA_GRE_TOS 9
834 #define IFLA_GRE_PMTUDISC 10
835 #define IFLA_GRE_ENCAP_LIMIT 11
836 #define IFLA_GRE_FLOWINFO 12
837 #define IFLA_GRE_FLAGS 13
838 #define IFLA_GRE_ENCAP_TYPE 14
839 #define IFLA_GRE_ENCAP_FLAGS 15
840 #define IFLA_GRE_ENCAP_SPORT 16
841 #define IFLA_GRE_ENCAP_DPORT 17
842
843 #define __IFLA_GRE_MAX 18
844
845 #define IFLA_GRE_MAX  (__IFLA_GRE_MAX - 1)
846 #endif
847
848 #if !HAVE_IFLA_BRIDGE_VLAN_INFO
849 #define IFLA_BRIDGE_FLAGS 0
850 #define IFLA_BRIDGE_MODE 1
851 #define IFLA_BRIDGE_VLAN_INFO 2
852 #define __IFLA_BRIDGE_MAX 3
853
854 #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
855 #endif
856
857 #ifndef BRIDGE_VLAN_INFO_RANGE_BEGIN
858 #define BRIDGE_VLAN_INFO_RANGE_BEGIN (1<<3) /* VLAN is start of vlan range */
859 #endif
860
861 #ifndef BRIDGE_VLAN_INFO_RANGE_END
862 #define BRIDGE_VLAN_INFO_RANGE_END (1<<4) /* VLAN is end of vlan range */
863 #endif
864
865 #if !HAVE_IFLA_BR_VLAN_DEFAULT_PVID
866 #define IFLA_BR_UNSPEC 0
867 #define IFLA_BR_FORWARD_DELAY 1
868 #define IFLA_BR_HELLO_TIME 2
869 #define IFLA_BR_MAX_AGE 3
870 #define IFLA_BR_AGEING_TIME 4
871 #define IFLA_BR_STP_STATE 5
872 #define IFLA_BR_PRIORITY 6
873 #define IFLA_BR_VLAN_FILTERING 7
874 #define IFLA_BR_VLAN_PROTOCOL 8
875 #define IFLA_BR_GROUP_FWD_MASK 9
876 #define IFLA_BR_ROOT_ID 10
877 #define IFLA_BR_BRIDGE_ID 11
878 #define IFLA_BR_ROOT_PORT 12
879 #define IFLA_BR_ROOT_PATH_COST 13
880 #define IFLA_BR_TOPOLOGY_CHANGE 14
881 #define IFLA_BR_TOPOLOGY_CHANGE_DETECTED 15
882 #define IFLA_BR_HELLO_TIMER 16
883 #define IFLA_BR_TCN_TIMER 17
884 #define IFLA_BR_TOPOLOGY_CHANGE_TIMER 18
885 #define IFLA_BR_GC_TIMER 19
886 #define IFLA_BR_GROUP_ADDR 20
887 #define IFLA_BR_FDB_FLUSH 21
888 #define IFLA_BR_MCAST_ROUTER 22
889 #define IFLA_BR_MCAST_SNOOPING 23
890 #define IFLA_BR_MCAST_QUERY_USE_IFADDR 24
891 #define IFLA_BR_MCAST_QUERIER 25
892 #define IFLA_BR_MCAST_HASH_ELASTICITY 26
893 #define IFLA_BR_MCAST_HASH_MAX 27
894 #define IFLA_BR_MCAST_LAST_MEMBER_CNT 28
895 #define IFLA_BR_MCAST_STARTUP_QUERY_CNT 29
896 #define IFLA_BR_MCAST_LAST_MEMBER_INTVL 30
897 #define IFLA_BR_MCAST_MEMBERSHIP_INTVL 31
898 #define IFLA_BR_MCAST_QUERIER_INTVL 32
899 #define IFLA_BR_MCAST_QUERY_INTVL 33
900 #define IFLA_BR_MCAST_QUERY_RESPONSE_INTVL 34
901 #define IFLA_BR_MCAST_STARTUP_QUERY_INTVL 35
902 #define IFLA_BR_NF_CALL_IPTABLES 36
903 #define IFLA_BR_NF_CALL_IP6TABLES 37
904 #define IFLA_BR_NF_CALL_ARPTABLES 38
905 #define IFLA_BR_VLAN_DEFAULT_PVID 39
906 #define __IFLA_BR_MAX 40
907
908 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
909 #endif
910
911 #if !HAVE_IFLA_BRPORT_LEARNING_SYNC
912 #define IFLA_BRPORT_UNSPEC 0
913 #define IFLA_BRPORT_STATE 1
914 #define IFLA_BRPORT_PRIORITY 2
915 #define IFLA_BRPORT_COST 3
916 #define IFLA_BRPORT_MODE 4
917 #define IFLA_BRPORT_GUARD 5
918 #define IFLA_BRPORT_PROTECT 6
919 #define IFLA_BRPORT_FAST_LEAVE 7
920 #define IFLA_BRPORT_LEARNING 8
921 #define IFLA_BRPORT_UNICAST_FLOOD 9
922 #define IFLA_BRPORT_LEARNING_SYNC 11
923 #define __IFLA_BRPORT_MAX 12
924
925 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
926 #endif
927
928 #if !HAVE_FRA_UID_RANGE
929 #define FRA_UNSPEC 0
930 #define FRA_DST 1
931 #define FRA_SRC 2
932 #define FRA_IIFNAME 3
933 #define FRA_GOTO 4
934 #define FRA_UNUSED2 5
935 #define FRA_PRIORITY 6
936 #define FRA_UNUSED3 7
937 #define FRA_UNUSED4 8
938 #define FRA_UNUSED5 9
939 #define FRA_FWMARK 10
940 #define FRA_FLOW 11
941 #define FRA_TUN_ID 12
942 #define FRA_SUPPRESS_IFGROUP 13
943 #define FRA_SUPPRESS_PREFIXLEN 14
944 #define FRA_TABLE 15
945 #define FRA_FWMASK 16
946 #define FRA_OIFNAME 17
947 #define FRA_PAD 18
948 #define FRA_L3MDEV 19
949 #define FRA_UID_RANGE 20
950 #define __FRA_MAX 12
951
952 #define FRA_MAX (__FRA_MAX - 1)
953 #endif
954
955 #if !HAVE_IFLA_BRPORT_PROXYARP
956 #define IFLA_BRPORT_PROXYARP 10
957 #endif
958
959 #if !HAVE_IFLA_VRF_TABLE
960 #define IFLA_VRF_TABLE 1
961 #endif
962
963 #if !HAVE_VXCAN_INFO_PEER
964 #define VXCAN_INFO_PEER 1
965 #endif
966
967 #if !HAVE_NDA_IFINDEX
968 #define NDA_UNSPEC 0
969 #define NDA_DST 1
970 #define NDA_LLADDR 2
971 #define NDA_CACHEINFO 3
972 #define NDA_PROBES 4
973 #define NDA_VLAN 5
974 #define NDA_PORT 6
975 #define NDA_VNI 7
976 #define NDA_IFINDEX 8
977 #define __NDA_MAX 9
978
979 #define NDA_MAX (__NDA_MAX - 1)
980 #endif
981
982 #ifndef RTA_PREF
983 #define RTA_PREF 20
984 #endif
985
986 #ifndef IPV6_UNICAST_IF
987 #define IPV6_UNICAST_IF 76
988 #endif
989
990 #ifndef IPV6_MIN_MTU
991 #define IPV6_MIN_MTU 1280
992 #endif
993
994 #ifndef IFF_MULTI_QUEUE
995 #define IFF_MULTI_QUEUE 0x100
996 #endif
997
998 #ifndef IFF_LOWER_UP
999 #define IFF_LOWER_UP 0x10000
1000 #endif
1001
1002 #ifndef IFF_DORMANT
1003 #define IFF_DORMANT 0x20000
1004 #endif
1005
1006 #ifndef BOND_XMIT_POLICY_ENCAP23
1007 #define BOND_XMIT_POLICY_ENCAP23 3
1008 #endif
1009
1010 #ifndef BOND_XMIT_POLICY_ENCAP34
1011 #define BOND_XMIT_POLICY_ENCAP34 4
1012 #endif
1013
1014 #ifndef NET_ADDR_RANDOM
1015 #  define NET_ADDR_RANDOM 1
1016 #endif
1017
1018 #ifndef NET_NAME_UNKNOWN
1019 #  define NET_NAME_UNKNOWN 0
1020 #endif
1021
1022 #ifndef NET_NAME_ENUM
1023 #  define NET_NAME_ENUM 1
1024 #endif
1025
1026 #ifndef NET_NAME_PREDICTABLE
1027 #  define NET_NAME_PREDICTABLE 2
1028 #endif
1029
1030 #ifndef NET_NAME_USER
1031 #  define NET_NAME_USER 3
1032 #endif
1033
1034 #ifndef NET_NAME_RENAMED
1035 #  define NET_NAME_RENAMED 4
1036 #endif
1037
1038 #ifndef BPF_XOR
1039 #  define BPF_XOR 0xa0
1040 #endif
1041
1042 /* Note that LOOPBACK_IFINDEX is currently not exported by the
1043  * kernel/glibc, but hardcoded internally by the kernel.  However, as
1044  * it is exported to userspace indirectly via rtnetlink and the
1045  * ioctls, and made use of widely we define it here too, in a way that
1046  * is compatible with the kernel's internal definition. */
1047 #ifndef LOOPBACK_IFINDEX
1048 #define LOOPBACK_IFINDEX 1
1049 #endif
1050
1051 #if !HAVE_IFA_FLAGS
1052 #define IFA_FLAGS 8
1053 #endif
1054
1055 #ifndef IFA_F_MANAGETEMPADDR
1056 #define IFA_F_MANAGETEMPADDR 0x100
1057 #endif
1058
1059 #ifndef IFA_F_NOPREFIXROUTE
1060 #define IFA_F_NOPREFIXROUTE 0x200
1061 #endif
1062
1063 #ifndef MAX_AUDIT_MESSAGE_LENGTH
1064 #define MAX_AUDIT_MESSAGE_LENGTH 8970
1065 #endif
1066
1067 #ifndef AUDIT_NLGRP_MAX
1068 #define AUDIT_NLGRP_READLOG 1
1069 #endif
1070
1071 #ifndef CAP_MAC_OVERRIDE
1072 #define CAP_MAC_OVERRIDE 32
1073 #endif
1074
1075 #ifndef CAP_MAC_ADMIN
1076 #define CAP_MAC_ADMIN 33
1077 #endif
1078
1079 #ifndef CAP_SYSLOG
1080 #define CAP_SYSLOG 34
1081 #endif
1082
1083 #ifndef CAP_WAKE_ALARM
1084 #define CAP_WAKE_ALARM 35
1085 #endif
1086
1087 #ifndef CAP_BLOCK_SUSPEND
1088 #define CAP_BLOCK_SUSPEND 36
1089 #endif
1090
1091 #ifndef CAP_AUDIT_READ
1092 #define CAP_AUDIT_READ 37
1093 #endif
1094
1095 #if 0 /// UNNEEDED by elogind
1096 #ifndef RENAME_NOREPLACE
1097 #define RENAME_NOREPLACE (1 << 0)
1098 #endif
1099
1100 #ifndef KCMP_FILE
1101 #define KCMP_FILE 0
1102 #endif
1103
1104 #ifndef INPUT_PROP_POINTING_STICK
1105 #define INPUT_PROP_POINTING_STICK 0x05
1106 #endif
1107
1108 #ifndef INPUT_PROP_ACCELEROMETER
1109 #define INPUT_PROP_ACCELEROMETER  0x06
1110 #endif
1111
1112 #ifndef BTN_DPAD_UP
1113 #define BTN_DPAD_UP 0x220
1114 #define BTN_DPAD_RIGHT 0x223
1115 #endif
1116
1117 #ifndef KEY_ALS_TOGGLE
1118 #define KEY_ALS_TOGGLE 0x230
1119 #endif
1120 #endif // 0
1121
1122 #if ! HAVE_KEY_SERIAL_T
1123 typedef int32_t key_serial_t;
1124 #endif
1125
1126 #ifndef KEYCTL_JOIN_SESSION_KEYRING
1127 #define KEYCTL_JOIN_SESSION_KEYRING 1
1128 #endif
1129
1130 #ifndef KEYCTL_CHOWN
1131 #define KEYCTL_CHOWN 4
1132 #endif
1133
1134 #ifndef KEYCTL_SETPERM
1135 #define KEYCTL_SETPERM 5
1136 #endif
1137
1138 #ifndef KEYCTL_DESCRIBE
1139 #define KEYCTL_DESCRIBE 6
1140 #endif
1141
1142 #ifndef KEYCTL_LINK
1143 #define KEYCTL_LINK 8
1144 #endif
1145
1146 #ifndef KEYCTL_READ
1147 #define KEYCTL_READ 11
1148 #endif
1149
1150 #ifndef KEYCTL_SET_TIMEOUT
1151 #define KEYCTL_SET_TIMEOUT 15
1152 #endif
1153
1154 #ifndef KEY_POS_VIEW
1155 #define KEY_POS_VIEW    0x01000000
1156 #define KEY_POS_READ    0x02000000
1157 #define KEY_POS_WRITE   0x04000000
1158 #define KEY_POS_SEARCH  0x08000000
1159 #define KEY_POS_LINK    0x10000000
1160 #define KEY_POS_SETATTR 0x20000000
1161
1162 #define KEY_USR_VIEW    0x00010000
1163 #define KEY_USR_READ    0x00020000
1164 #define KEY_USR_WRITE   0x00040000
1165 #define KEY_USR_SEARCH  0x00080000
1166 #define KEY_USR_LINK    0x00100000
1167 #define KEY_USR_SETATTR 0x00200000
1168
1169 #define KEY_GRP_VIEW    0x00000100
1170 #define KEY_GRP_READ    0x00000200
1171 #define KEY_GRP_WRITE   0x00000400
1172 #define KEY_GRP_SEARCH  0x00000800
1173 #define KEY_GRP_LINK    0x00001000
1174 #define KEY_GRP_SETATTR 0x00002000
1175
1176 #define KEY_OTH_VIEW    0x00000001
1177 #define KEY_OTH_READ    0x00000002
1178 #define KEY_OTH_WRITE   0x00000004
1179 #define KEY_OTH_SEARCH  0x00000008
1180 #define KEY_OTH_LINK    0x00000010
1181 #define KEY_OTH_SETATTR 0x00000020
1182 #endif
1183
1184 #ifndef KEY_SPEC_USER_KEYRING
1185 #define KEY_SPEC_USER_KEYRING -4
1186 #endif
1187
1188 #ifndef KEY_SPEC_SESSION_KEYRING
1189 #define KEY_SPEC_SESSION_KEYRING -3
1190 #endif
1191
1192 #ifndef PR_CAP_AMBIENT
1193 #define PR_CAP_AMBIENT 47
1194 #endif
1195
1196 #ifndef PR_CAP_AMBIENT_IS_SET
1197 #define PR_CAP_AMBIENT_IS_SET 1
1198 #endif
1199
1200 #ifndef PR_CAP_AMBIENT_RAISE
1201 #define PR_CAP_AMBIENT_RAISE 2
1202 #endif
1203
1204 #ifndef PR_CAP_AMBIENT_CLEAR_ALL
1205 #define PR_CAP_AMBIENT_CLEAR_ALL 4
1206 #endif
1207
1208 /* The following two defines are actually available in the kernel headers for longer, but we define them here anyway,
1209  * since that makes it easier to use them in conjunction with the glibc net/if.h header which conflicts with
1210  * linux/if.h. */
1211 #ifndef IF_OPER_UNKNOWN
1212 #define IF_OPER_UNKNOWN 0
1213 #endif
1214
1215 #ifndef IF_OPER_UP
1216 #define IF_OPER_UP 6
1217
1218 #if ! HAVE_CHAR32_T
1219 #define char32_t uint32_t
1220 #endif
1221
1222 #if ! HAVE_CHAR16_T
1223 #define char16_t uint16_t
1224 #endif
1225
1226 #ifndef ETHERTYPE_LLDP
1227 #define ETHERTYPE_LLDP 0x88cc
1228 #endif
1229
1230 #ifndef IFA_F_MCAUTOJOIN
1231 #define IFA_F_MCAUTOJOIN 0x400
1232 #endif
1233
1234 #if 0 /// UNNEEDED by elogind
1235 #if ! HAVE_STRUCT_ETHTOOL_LINK_SETTINGS
1236
1237 #define ETHTOOL_GLINKSETTINGS   0x0000004c /* Get ethtool_link_settings */
1238 #define ETHTOOL_SLINKSETTINGS   0x0000004d /* Set ethtool_link_settings */
1239
1240 struct ethtool_link_settings {
1241         __u32   cmd;
1242         __u32   speed;
1243         __u8    duplex;
1244         __u8    port;
1245         __u8    phy_address;
1246         __u8    autoneg;
1247         __u8    mdio_support;
1248         __u8    eth_tp_mdix;
1249         __u8    eth_tp_mdix_ctrl;
1250         __s8    link_mode_masks_nwords;
1251         __u32   reserved[8];
1252         __u32   link_mode_masks[0];
1253         /* layout of link_mode_masks fields:
1254          * __u32 map_supported[link_mode_masks_nwords];
1255          * __u32 map_advertising[link_mode_masks_nwords];
1256          * __u32 map_lp_advertising[link_mode_masks_nwords];
1257          */
1258 };
1259
1260 #endif
1261 #endif // 0
1262
1263 #if ! HAVE_STRUCT_FIB_RULE_UID_RANGE
1264
1265 struct fib_rule_uid_range {
1266         __u32 start;
1267         __u32 end;
1268 };
1269
1270 #endif
1271
1272 #endif
1273
1274 #ifndef SOL_ALG
1275 #define SOL_ALG 279
1276 #endif
1277
1278 #ifndef AF_VSOCK
1279 #define AF_VSOCK 40
1280 #endif
1281
1282 #include "missing_syscall.h"