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