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