chiark / gitweb /
missing: Add DM_DEFERRED_REMOVE
[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_MODE
720 #define IFLA_IPVLAN_UNSPEC 0
721 #define IFLA_IPVLAN_MODE 1
722 #define __IFLA_IPVLAN_MAX 2
723
724 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
725
726 #define IPVLAN_MODE_L2 0
727 #define IPVLAN_MODE_L3 1
728 #define IPVLAN_MAX 2
729 #endif
730
731 #if !HAVE_IFLA_VTI_REMOTE
732 #define IFLA_VTI_UNSPEC 0
733 #define IFLA_VTI_LINK 1
734 #define IFLA_VTI_IKEY 2
735 #define IFLA_VTI_OKEY 3
736 #define IFLA_VTI_LOCAL 4
737 #define IFLA_VTI_REMOTE 5
738 #define __IFLA_VTI_MAX 6
739
740 #define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
741 #endif
742
743 #if !HAVE_IFLA_PHYS_PORT_ID
744 #define IFLA_EXT_MASK 29
745 #undef IFLA_PROMISCUITY
746 #define IFLA_PROMISCUITY 30
747 #define IFLA_NUM_TX_QUEUES 31
748 #define IFLA_NUM_RX_QUEUES 32
749 #define IFLA_CARRIER 33
750 #define IFLA_PHYS_PORT_ID 34
751 #define __IFLA_MAX 35
752
753 #define IFLA_MAX (__IFLA_MAX - 1)
754 #endif
755
756 #if !HAVE_IFLA_BOND_AD_INFO
757 #define IFLA_BOND_UNSPEC 0
758 #define IFLA_BOND_MODE 1
759 #define IFLA_BOND_ACTIVE_SLAVE 2
760 #define IFLA_BOND_MIIMON 3
761 #define IFLA_BOND_UPDELAY 4
762 #define IFLA_BOND_DOWNDELAY 5
763 #define IFLA_BOND_USE_CARRIER 6
764 #define IFLA_BOND_ARP_INTERVAL 7
765 #define IFLA_BOND_ARP_IP_TARGET 8
766 #define IFLA_BOND_ARP_VALIDATE 9
767 #define IFLA_BOND_ARP_ALL_TARGETS 10
768 #define IFLA_BOND_PRIMARY 11
769 #define IFLA_BOND_PRIMARY_RESELECT 12
770 #define IFLA_BOND_FAIL_OVER_MAC 13
771 #define IFLA_BOND_XMIT_HASH_POLICY 14
772 #define IFLA_BOND_RESEND_IGMP 15
773 #define IFLA_BOND_NUM_PEER_NOTIF 16
774 #define IFLA_BOND_ALL_SLAVES_ACTIVE 17
775 #define IFLA_BOND_MIN_LINKS 18
776 #define IFLA_BOND_LP_INTERVAL 19
777 #define IFLA_BOND_PACKETS_PER_SLAVE 20
778 #define IFLA_BOND_AD_LACP_RATE 21
779 #define IFLA_BOND_AD_SELECT 22
780 #define IFLA_BOND_AD_INFO 23
781 #define __IFLA_BOND_MAX 24
782
783 #define IFLA_BOND_MAX   (__IFLA_BOND_MAX - 1)
784 #endif
785
786 #if !HAVE_IFLA_VLAN_PROTOCOL
787 #define IFLA_VLAN_UNSPEC 0
788 #define IFLA_VLAN_ID 1
789 #define IFLA_VLAN_FLAGS 2
790 #define IFLA_VLAN_EGRESS_QOS 3
791 #define IFLA_VLAN_INGRESS_QOS 4
792 #define IFLA_VLAN_PROTOCOL 5
793 #define __IFLA_VLAN_MAX 6
794
795 #define IFLA_VLAN_MAX   (__IFLA_VLAN_MAX - 1)
796 #endif
797
798 #if !HAVE_IFLA_VXLAN_GPE
799 #define IFLA_VXLAN_UNSPEC 0
800 #define IFLA_VXLAN_ID 1
801 #define IFLA_VXLAN_GROUP 2
802 #define IFLA_VXLAN_LINK 3
803 #define IFLA_VXLAN_LOCAL 4
804 #define IFLA_VXLAN_TTL 5
805 #define IFLA_VXLAN_TOS 6
806 #define IFLA_VXLAN_LEARNING 7
807 #define IFLA_VXLAN_AGEING 8
808 #define IFLA_VXLAN_LIMIT 9
809 #define IFLA_VXLAN_PORT_RANGE 10
810 #define IFLA_VXLAN_PROXY 11
811 #define IFLA_VXLAN_RSC 12
812 #define IFLA_VXLAN_L2MISS 13
813 #define IFLA_VXLAN_L3MISS 14
814 #define IFLA_VXLAN_PORT 15
815 #define IFLA_VXLAN_GROUP6 16
816 #define IFLA_VXLAN_LOCAL6 17
817 #define IFLA_VXLAN_UDP_CSUM 18
818 #define IFLA_VXLAN_UDP_ZERO_CSUM6_TX 19
819 #define IFLA_VXLAN_UDP_ZERO_CSUM6_RX 20
820 #define IFLA_VXLAN_REMCSUM_TX 21
821 #define IFLA_VXLAN_REMCSUM_RX 22
822 #define IFLA_VXLAN_GBP 23
823 #define IFLA_VXLAN_REMCSUM_NOPARTIAL 24
824 #define IFLA_VXLAN_COLLECT_METADATA 25
825 #define IFLA_VXLAN_LABEL 26
826 #define IFLA_VXLAN_GPE 27
827
828 #define __IFLA_VXLAN_MAX 28
829
830 #define IFLA_VXLAN_MAX  (__IFLA_VXLAN_MAX - 1)
831 #endif
832
833 #if !HAVE_IFLA_GENEVE_LABEL
834 #define IFLA_GENEVE_UNSPEC 0
835 #define IFLA_GENEVE_ID 1
836 #define IFLA_GENEVE_REMOTE 2
837 #define IFLA_GENEVE_TTL 3
838 #define IFLA_GENEVE_TOS 4
839 #define IFLA_GENEVE_PORT 5
840 #define IFLA_GENEVE_COLLECT_METADATA 6
841 #define IFLA_GENEVE_REMOTE6 7
842 #define IFLA_GENEVE_UDP_CSUM 8
843 #define IFLA_GENEVE_UDP_ZERO_CSUM6_TX 9
844 #define IFLA_GENEVE_UDP_ZERO_CSUM6_RX 10
845 #define IFLA_GENEVE_LABEL 11
846
847 #define __IFLA_GENEVE_MAX 12
848
849 #define IFLA_GENEVE_MAX  (__IFLA_GENEVE_MAX - 1)
850 #endif
851
852 #if !HAVE_IFLA_IPTUN_ENCAP_DPORT
853 #define IFLA_IPTUN_UNSPEC 0
854 #define IFLA_IPTUN_LINK 1
855 #define IFLA_IPTUN_LOCAL 2
856 #define IFLA_IPTUN_REMOTE 3
857 #define IFLA_IPTUN_TTL 4
858 #define IFLA_IPTUN_TOS 5
859 #define IFLA_IPTUN_ENCAP_LIMIT 6
860 #define IFLA_IPTUN_FLOWINFO 7
861 #define IFLA_IPTUN_FLAGS 8
862 #define IFLA_IPTUN_PROTO 9
863 #define IFLA_IPTUN_PMTUDISC 10
864 #define IFLA_IPTUN_6RD_PREFIX 11
865 #define IFLA_IPTUN_6RD_RELAY_PREFIX 12
866 #define IFLA_IPTUN_6RD_PREFIXLEN 13
867 #define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
868 #define IFLA_IPTUN_ENCAP_TYPE 15
869 #define IFLA_IPTUN_ENCAP_FLAGS 16
870 #define IFLA_IPTUN_ENCAP_SPORT 17
871 #define IFLA_IPTUN_ENCAP_DPORT 18
872
873 #define __IFLA_IPTUN_MAX 19
874
875 #define IFLA_IPTUN_MAX  (__IFLA_IPTUN_MAX - 1)
876 #endif
877
878 #if !HAVE_IFLA_GRE_ENCAP_DPORT
879 #define IFLA_GRE_UNSPEC 0
880 #define IFLA_GRE_LINK 1
881 #define IFLA_GRE_IFLAGS 2
882 #define IFLA_GRE_OFLAGS 3
883 #define IFLA_GRE_IKEY 4
884 #define IFLA_GRE_OKEY 5
885 #define IFLA_GRE_LOCAL 6
886 #define IFLA_GRE_REMOTE 7
887 #define IFLA_GRE_TTL 8
888 #define IFLA_GRE_TOS 9
889 #define IFLA_GRE_PMTUDISC 10
890 #define IFLA_GRE_ENCAP_LIMIT 11
891 #define IFLA_GRE_FLOWINFO 12
892 #define IFLA_GRE_FLAGS 13
893 #define IFLA_GRE_ENCAP_TYPE 14
894 #define IFLA_GRE_ENCAP_FLAGS 15
895 #define IFLA_GRE_ENCAP_SPORT 16
896 #define IFLA_GRE_ENCAP_DPORT 17
897
898 #define __IFLA_GRE_MAX 18
899
900 #define IFLA_GRE_MAX  (__IFLA_GRE_MAX - 1)
901 #endif
902
903 #if !HAVE_IFLA_BRIDGE_VLAN_INFO
904 #define IFLA_BRIDGE_FLAGS 0
905 #define IFLA_BRIDGE_MODE 1
906 #define IFLA_BRIDGE_VLAN_INFO 2
907 #define __IFLA_BRIDGE_MAX 3
908
909 #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
910 #endif
911
912 #ifndef BRIDGE_VLAN_INFO_RANGE_BEGIN
913 #define BRIDGE_VLAN_INFO_RANGE_BEGIN (1<<3) /* VLAN is start of vlan range */
914 #endif
915
916 #ifndef BRIDGE_VLAN_INFO_RANGE_END
917 #define BRIDGE_VLAN_INFO_RANGE_END (1<<4) /* VLAN is end of vlan range */
918 #endif
919
920 #if !HAVE_IFLA_BR_VLAN_DEFAULT_PVID
921 #define IFLA_BR_UNSPEC 0
922 #define IFLA_BR_FORWARD_DELAY 1
923 #define IFLA_BR_HELLO_TIME 2
924 #define IFLA_BR_MAX_AGE 3
925 #define IFLA_BR_AGEING_TIME 4
926 #define IFLA_BR_STP_STATE 5
927 #define IFLA_BR_PRIORITY 6
928 #define IFLA_BR_VLAN_FILTERING 7
929 #define IFLA_BR_VLAN_PROTOCOL 8
930 #define IFLA_BR_GROUP_FWD_MASK 9
931 #define IFLA_BR_ROOT_ID 10
932 #define IFLA_BR_BRIDGE_ID 11
933 #define IFLA_BR_ROOT_PORT 12
934 #define IFLA_BR_ROOT_PATH_COST 13
935 #define IFLA_BR_TOPOLOGY_CHANGE 14
936 #define IFLA_BR_TOPOLOGY_CHANGE_DETECTED 15
937 #define IFLA_BR_HELLO_TIMER 16
938 #define IFLA_BR_TCN_TIMER 17
939 #define IFLA_BR_TOPOLOGY_CHANGE_TIMER 18
940 #define IFLA_BR_GC_TIMER 19
941 #define IFLA_BR_GROUP_ADDR 20
942 #define IFLA_BR_FDB_FLUSH 21
943 #define IFLA_BR_MCAST_ROUTER 22
944 #define IFLA_BR_MCAST_SNOOPING 23
945 #define IFLA_BR_MCAST_QUERY_USE_IFADDR 24
946 #define IFLA_BR_MCAST_QUERIER 25
947 #define IFLA_BR_MCAST_HASH_ELASTICITY 26
948 #define IFLA_BR_MCAST_HASH_MAX 27
949 #define IFLA_BR_MCAST_LAST_MEMBER_CNT 28
950 #define IFLA_BR_MCAST_STARTUP_QUERY_CNT 29
951 #define IFLA_BR_MCAST_LAST_MEMBER_INTVL 30
952 #define IFLA_BR_MCAST_MEMBERSHIP_INTVL 31
953 #define IFLA_BR_MCAST_QUERIER_INTVL 32
954 #define IFLA_BR_MCAST_QUERY_INTVL 33
955 #define IFLA_BR_MCAST_QUERY_RESPONSE_INTVL 34
956 #define IFLA_BR_MCAST_STARTUP_QUERY_INTVL 35
957 #define IFLA_BR_NF_CALL_IPTABLES 36
958 #define IFLA_BR_NF_CALL_IP6TABLES 37
959 #define IFLA_BR_NF_CALL_ARPTABLES 38
960 #define IFLA_BR_VLAN_DEFAULT_PVID 39
961 #define __IFLA_BR_MAX 40
962
963 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
964 #endif
965
966 #if !HAVE_IFLA_BRPORT_LEARNING_SYNC
967 #define IFLA_BRPORT_UNSPEC 0
968 #define IFLA_BRPORT_STATE 1
969 #define IFLA_BRPORT_PRIORITY 2
970 #define IFLA_BRPORT_COST 3
971 #define IFLA_BRPORT_MODE 4
972 #define IFLA_BRPORT_GUARD 5
973 #define IFLA_BRPORT_PROTECT 6
974 #define IFLA_BRPORT_FAST_LEAVE 7
975 #define IFLA_BRPORT_LEARNING 8
976 #define IFLA_BRPORT_UNICAST_FLOOD 9
977 #define IFLA_BRPORT_LEARNING_SYNC 11
978 #define __IFLA_BRPORT_MAX 12
979
980 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
981 #endif
982
983 #if !HAVE_FRA_UID_RANGE
984 #define FRA_UNSPEC 0
985 #define FRA_DST 1
986 #define FRA_SRC 2
987 #define FRA_IIFNAME 3
988 #define FRA_GOTO 4
989 #define FRA_UNUSED2 5
990 #define FRA_PRIORITY 6
991 #define FRA_UNUSED3 7
992 #define FRA_UNUSED4 8
993 #define FRA_UNUSED5 9
994 #define FRA_FWMARK 10
995 #define FRA_FLOW 11
996 #define FRA_TUN_ID 12
997 #define FRA_SUPPRESS_IFGROUP 13
998 #define FRA_SUPPRESS_PREFIXLEN 14
999 #define FRA_TABLE 15
1000 #define FRA_FWMASK 16
1001 #define FRA_OIFNAME 17
1002 #define FRA_PAD 18
1003 #define FRA_L3MDEV 19
1004 #define FRA_UID_RANGE 20
1005 #define __FRA_MAX 12
1006
1007 #define FRA_MAX (__FRA_MAX - 1)
1008 #endif
1009
1010 #if !HAVE_IFLA_BRPORT_PROXYARP
1011 #define IFLA_BRPORT_PROXYARP 10
1012 #endif
1013
1014 #if !HAVE_IFLA_VRF_TABLE
1015 #define IFLA_VRF_TABLE 1
1016 #endif
1017
1018 #if !HAVE_VXCAN_INFO_PEER
1019 #define VXCAN_INFO_PEER 1
1020 #endif
1021
1022 #if !HAVE_NDA_IFINDEX
1023 #define NDA_UNSPEC 0
1024 #define NDA_DST 1
1025 #define NDA_LLADDR 2
1026 #define NDA_CACHEINFO 3
1027 #define NDA_PROBES 4
1028 #define NDA_VLAN 5
1029 #define NDA_PORT 6
1030 #define NDA_VNI 7
1031 #define NDA_IFINDEX 8
1032 #define __NDA_MAX 9
1033
1034 #define NDA_MAX (__NDA_MAX - 1)
1035 #endif
1036
1037 #ifndef RTA_PREF
1038 #define RTA_PREF 20
1039 #endif
1040
1041 #ifndef IPV6_UNICAST_IF
1042 #define IPV6_UNICAST_IF 76
1043 #endif
1044
1045 #ifndef IPV6_MIN_MTU
1046 #define IPV6_MIN_MTU 1280
1047 #endif
1048
1049 #ifndef IFF_MULTI_QUEUE
1050 #define IFF_MULTI_QUEUE 0x100
1051 #endif
1052
1053 #ifndef IFF_LOWER_UP
1054 #define IFF_LOWER_UP 0x10000
1055 #endif
1056
1057 #ifndef IFF_DORMANT
1058 #define IFF_DORMANT 0x20000
1059 #endif
1060
1061 #ifndef BOND_XMIT_POLICY_ENCAP23
1062 #define BOND_XMIT_POLICY_ENCAP23 3
1063 #endif
1064
1065 #ifndef BOND_XMIT_POLICY_ENCAP34
1066 #define BOND_XMIT_POLICY_ENCAP34 4
1067 #endif
1068
1069 #ifndef NET_ADDR_RANDOM
1070 #  define NET_ADDR_RANDOM 1
1071 #endif
1072
1073 #ifndef NET_NAME_UNKNOWN
1074 #  define NET_NAME_UNKNOWN 0
1075 #endif
1076
1077 #ifndef NET_NAME_ENUM
1078 #  define NET_NAME_ENUM 1
1079 #endif
1080
1081 #ifndef NET_NAME_PREDICTABLE
1082 #  define NET_NAME_PREDICTABLE 2
1083 #endif
1084
1085 #ifndef NET_NAME_USER
1086 #  define NET_NAME_USER 3
1087 #endif
1088
1089 #ifndef NET_NAME_RENAMED
1090 #  define NET_NAME_RENAMED 4
1091 #endif
1092
1093 #ifndef BPF_XOR
1094 #  define BPF_XOR 0xa0
1095 #endif
1096
1097 /* Note that LOOPBACK_IFINDEX is currently not exported by the
1098  * kernel/glibc, but hardcoded internally by the kernel.  However, as
1099  * it is exported to userspace indirectly via rtnetlink and the
1100  * ioctls, and made use of widely we define it here too, in a way that
1101  * is compatible with the kernel's internal definition. */
1102 #ifndef LOOPBACK_IFINDEX
1103 #define LOOPBACK_IFINDEX 1
1104 #endif
1105
1106 #if !HAVE_IFA_FLAGS
1107 #define IFA_FLAGS 8
1108 #endif
1109
1110 #ifndef IFA_F_MANAGETEMPADDR
1111 #define IFA_F_MANAGETEMPADDR 0x100
1112 #endif
1113
1114 #ifndef IFA_F_NOPREFIXROUTE
1115 #define IFA_F_NOPREFIXROUTE 0x200
1116 #endif
1117
1118 #ifndef MAX_AUDIT_MESSAGE_LENGTH
1119 #define MAX_AUDIT_MESSAGE_LENGTH 8970
1120 #endif
1121
1122 #ifndef AUDIT_NLGRP_MAX
1123 #define AUDIT_NLGRP_READLOG 1
1124 #endif
1125
1126 #ifndef CAP_MAC_OVERRIDE
1127 #define CAP_MAC_OVERRIDE 32
1128 #endif
1129
1130 #ifndef CAP_MAC_ADMIN
1131 #define CAP_MAC_ADMIN 33
1132 #endif
1133
1134 #ifndef CAP_SYSLOG
1135 #define CAP_SYSLOG 34
1136 #endif
1137
1138 #ifndef CAP_WAKE_ALARM
1139 #define CAP_WAKE_ALARM 35
1140 #endif
1141
1142 #ifndef CAP_BLOCK_SUSPEND
1143 #define CAP_BLOCK_SUSPEND 36
1144 #endif
1145
1146 #ifndef CAP_AUDIT_READ
1147 #define CAP_AUDIT_READ 37
1148 #endif
1149
1150 #if 0 /// UNNEEDED by elogind
1151 #ifndef RENAME_NOREPLACE
1152 #define RENAME_NOREPLACE (1 << 0)
1153 #endif
1154
1155 #ifndef KCMP_FILE
1156 #define KCMP_FILE 0
1157 #endif
1158
1159 #ifndef INPUT_PROP_POINTING_STICK
1160 #define INPUT_PROP_POINTING_STICK 0x05
1161 #endif
1162
1163 #ifndef INPUT_PROP_ACCELEROMETER
1164 #define INPUT_PROP_ACCELEROMETER  0x06
1165 #endif
1166
1167 #ifndef BTN_DPAD_UP
1168 #define BTN_DPAD_UP 0x220
1169 #define BTN_DPAD_RIGHT 0x223
1170 #endif
1171
1172 #ifndef KEY_ALS_TOGGLE
1173 #define KEY_ALS_TOGGLE 0x230
1174 #endif
1175 #endif // 0
1176
1177 #if ! HAVE_KEY_SERIAL_T
1178 typedef int32_t key_serial_t;
1179 #endif
1180
1181 #ifndef KEYCTL_JOIN_SESSION_KEYRING
1182 #define KEYCTL_JOIN_SESSION_KEYRING 1
1183 #endif
1184
1185 #ifndef KEYCTL_CHOWN
1186 #define KEYCTL_CHOWN 4
1187 #endif
1188
1189 #ifndef KEYCTL_SETPERM
1190 #define KEYCTL_SETPERM 5
1191 #endif
1192
1193 #ifndef KEYCTL_DESCRIBE
1194 #define KEYCTL_DESCRIBE 6
1195 #endif
1196
1197 #ifndef KEYCTL_LINK
1198 #define KEYCTL_LINK 8
1199 #endif
1200
1201 #ifndef KEYCTL_READ
1202 #define KEYCTL_READ 11
1203 #endif
1204
1205 #ifndef KEYCTL_SET_TIMEOUT
1206 #define KEYCTL_SET_TIMEOUT 15
1207 #endif
1208
1209 #ifndef KEY_POS_VIEW
1210 #define KEY_POS_VIEW    0x01000000
1211 #define KEY_POS_READ    0x02000000
1212 #define KEY_POS_WRITE   0x04000000
1213 #define KEY_POS_SEARCH  0x08000000
1214 #define KEY_POS_LINK    0x10000000
1215 #define KEY_POS_SETATTR 0x20000000
1216
1217 #define KEY_USR_VIEW    0x00010000
1218 #define KEY_USR_READ    0x00020000
1219 #define KEY_USR_WRITE   0x00040000
1220 #define KEY_USR_SEARCH  0x00080000
1221 #define KEY_USR_LINK    0x00100000
1222 #define KEY_USR_SETATTR 0x00200000
1223
1224 #define KEY_GRP_VIEW    0x00000100
1225 #define KEY_GRP_READ    0x00000200
1226 #define KEY_GRP_WRITE   0x00000400
1227 #define KEY_GRP_SEARCH  0x00000800
1228 #define KEY_GRP_LINK    0x00001000
1229 #define KEY_GRP_SETATTR 0x00002000
1230
1231 #define KEY_OTH_VIEW    0x00000001
1232 #define KEY_OTH_READ    0x00000002
1233 #define KEY_OTH_WRITE   0x00000004
1234 #define KEY_OTH_SEARCH  0x00000008
1235 #define KEY_OTH_LINK    0x00000010
1236 #define KEY_OTH_SETATTR 0x00000020
1237 #endif
1238
1239 #ifndef KEY_SPEC_USER_KEYRING
1240 #define KEY_SPEC_USER_KEYRING -4
1241 #endif
1242
1243 #ifndef KEY_SPEC_SESSION_KEYRING
1244 #define KEY_SPEC_SESSION_KEYRING -3
1245 #endif
1246
1247 #ifndef PR_CAP_AMBIENT
1248 #define PR_CAP_AMBIENT 47
1249 #endif
1250
1251 #ifndef PR_CAP_AMBIENT_IS_SET
1252 #define PR_CAP_AMBIENT_IS_SET 1
1253 #endif
1254
1255 #ifndef PR_CAP_AMBIENT_RAISE
1256 #define PR_CAP_AMBIENT_RAISE 2
1257 #endif
1258
1259 #ifndef PR_CAP_AMBIENT_CLEAR_ALL
1260 #define PR_CAP_AMBIENT_CLEAR_ALL 4
1261 #endif
1262
1263 /* The following two defines are actually available in the kernel headers for longer, but we define them here anyway,
1264  * since that makes it easier to use them in conjunction with the glibc net/if.h header which conflicts with
1265  * linux/if.h. */
1266 #ifndef IF_OPER_UNKNOWN
1267 #define IF_OPER_UNKNOWN 0
1268 #endif
1269
1270 #ifndef IF_OPER_UP
1271 #define IF_OPER_UP 6
1272
1273 #if ! HAVE_CHAR32_T
1274 #define char32_t uint32_t
1275 #endif
1276
1277 #if ! HAVE_CHAR16_T
1278 #define char16_t uint16_t
1279 #endif
1280
1281 #ifndef ETHERTYPE_LLDP
1282 #define ETHERTYPE_LLDP 0x88cc
1283 #endif
1284
1285 #ifndef IFA_F_MCAUTOJOIN
1286 #define IFA_F_MCAUTOJOIN 0x400
1287 #endif
1288
1289 #if 0 /// UNNEEDED by elogind
1290 #if ! HAVE_STRUCT_ETHTOOL_LINK_SETTINGS
1291
1292 #define ETHTOOL_GLINKSETTINGS   0x0000004c /* Get ethtool_link_settings */
1293 #define ETHTOOL_SLINKSETTINGS   0x0000004d /* Set ethtool_link_settings */
1294
1295 struct ethtool_link_settings {
1296         __u32   cmd;
1297         __u32   speed;
1298         __u8    duplex;
1299         __u8    port;
1300         __u8    phy_address;
1301         __u8    autoneg;
1302         __u8    mdio_support;
1303         __u8    eth_tp_mdix;
1304         __u8    eth_tp_mdix_ctrl;
1305         __s8    link_mode_masks_nwords;
1306         __u32   reserved[8];
1307         __u32   link_mode_masks[0];
1308         /* layout of link_mode_masks fields:
1309          * __u32 map_supported[link_mode_masks_nwords];
1310          * __u32 map_advertising[link_mode_masks_nwords];
1311          * __u32 map_lp_advertising[link_mode_masks_nwords];
1312          */
1313 };
1314
1315 #endif
1316 #endif // 0
1317
1318 #if ! HAVE_STRUCT_FIB_RULE_UID_RANGE
1319
1320 struct fib_rule_uid_range {
1321         __u32 start;
1322         __u32 end;
1323 };
1324
1325 #endif
1326
1327 #endif
1328
1329 #ifndef SOL_ALG
1330 #define SOL_ALG 279
1331 #endif
1332
1333 #ifndef AF_VSOCK
1334 #define AF_VSOCK 40
1335 #endif
1336
1337 #ifndef EXT4_IOC_RESIZE_FS
1338 #  define EXT4_IOC_RESIZE_FS              _IOW('f', 16, __u64)
1339 #endif
1340
1341 #ifndef NSFS_MAGIC
1342 #define NSFS_MAGIC 0x6e736673
1343 #endif
1344
1345 #ifndef NS_GET_NSTYPE
1346 #define NS_GET_NSTYPE _IO(0xb7, 0x3)
1347 #endif
1348
1349 #include "missing_syscall.h"