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