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