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