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