]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/basic/missing.h
Merge pull request #4879 from poettering/systemd
[thirdparty/systemd.git] / src / basic / missing.h
1 #pragma once
2
3 /***
4 This file is part of systemd.
5
6 Copyright 2010 Lennart Poettering
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 /* Missing glibc definitions to access certain kernel APIs */
23
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <linux/audit.h>
27 #include <linux/capability.h>
28 #include <linux/if_link.h>
29 #include <linux/input.h>
30 #include <linux/loop.h>
31 #include <linux/neighbour.h>
32 #include <linux/oom.h>
33 #include <linux/rtnetlink.h>
34 #include <net/ethernet.h>
35 #include <stdlib.h>
36 #include <sys/resource.h>
37 #include <sys/socket.h>
38 #include <sys/syscall.h>
39 #include <uchar.h>
40 #include <unistd.h>
41
42 #ifdef HAVE_AUDIT
43 #include <libaudit.h>
44 #endif
45
46 #ifdef ARCH_MIPS
47 #include <asm/sgidefs.h>
48 #endif
49
50 #ifdef HAVE_LINUX_BTRFS_H
51 #include <linux/btrfs.h>
52 #endif
53
54 #ifdef HAVE_LINUX_VM_SOCKETS_H
55 #include <linux/vm_sockets.h>
56 #else
57 #define VMADDR_CID_ANY -1U
58 struct sockaddr_vm {
59 unsigned short svm_family;
60 unsigned short svm_reserved1;
61 unsigned int svm_port;
62 unsigned int svm_cid;
63 unsigned char svm_zero[sizeof(struct sockaddr) -
64 sizeof(unsigned short) -
65 sizeof(unsigned short) -
66 sizeof(unsigned int) -
67 sizeof(unsigned int)];
68 };
69 #endif /* !HAVE_LINUX_VM_SOCKETS_H */
70
71 #include "macro.h"
72
73 #ifndef RLIMIT_RTTIME
74 #define RLIMIT_RTTIME 15
75 #endif
76
77 /* If RLIMIT_RTTIME is not defined, then we cannot use RLIMIT_NLIMITS as is */
78 #define _RLIMIT_MAX (RLIMIT_RTTIME+1 > RLIMIT_NLIMITS ? RLIMIT_RTTIME+1 : RLIMIT_NLIMITS)
79
80 #ifndef F_LINUX_SPECIFIC_BASE
81 #define F_LINUX_SPECIFIC_BASE 1024
82 #endif
83
84 #ifndef F_SETPIPE_SZ
85 #define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7)
86 #endif
87
88 #ifndef F_GETPIPE_SZ
89 #define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
90 #endif
91
92 #ifndef F_ADD_SEALS
93 #define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
94 #define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
95
96 #define F_SEAL_SEAL 0x0001 /* prevent further seals from being set */
97 #define F_SEAL_SHRINK 0x0002 /* prevent file from shrinking */
98 #define F_SEAL_GROW 0x0004 /* prevent file from growing */
99 #define F_SEAL_WRITE 0x0008 /* prevent writes */
100 #endif
101
102 #ifndef F_OFD_GETLK
103 #define F_OFD_GETLK 36
104 #define F_OFD_SETLK 37
105 #define F_OFD_SETLKW 38
106 #endif
107
108 #ifndef MFD_ALLOW_SEALING
109 #define MFD_ALLOW_SEALING 0x0002U
110 #endif
111
112 #ifndef MFD_CLOEXEC
113 #define MFD_CLOEXEC 0x0001U
114 #endif
115
116 #ifndef IP_FREEBIND
117 #define IP_FREEBIND 15
118 #endif
119
120 #ifndef OOM_SCORE_ADJ_MIN
121 #define OOM_SCORE_ADJ_MIN (-1000)
122 #endif
123
124 #ifndef OOM_SCORE_ADJ_MAX
125 #define OOM_SCORE_ADJ_MAX 1000
126 #endif
127
128 #ifndef AUDIT_SERVICE_START
129 #define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
130 #endif
131
132 #ifndef AUDIT_SERVICE_STOP
133 #define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
134 #endif
135
136 #ifndef TIOCVHANGUP
137 #define TIOCVHANGUP 0x5437
138 #endif
139
140 #ifndef IP_TRANSPARENT
141 #define IP_TRANSPARENT 19
142 #endif
143
144 #ifndef SOL_NETLINK
145 #define SOL_NETLINK 270
146 #endif
147
148 #ifndef NETLINK_LIST_MEMBERSHIPS
149 #define NETLINK_LIST_MEMBERSHIPS 9
150 #endif
151
152 #ifndef SOL_SCTP
153 #define SOL_SCTP 132
154 #endif
155
156 #ifndef GRND_NONBLOCK
157 #define GRND_NONBLOCK 0x0001
158 #endif
159
160 #ifndef GRND_RANDOM
161 #define GRND_RANDOM 0x0002
162 #endif
163
164 #ifndef FS_NOCOW_FL
165 #define FS_NOCOW_FL 0x00800000
166 #endif
167
168 #ifndef BTRFS_IOCTL_MAGIC
169 #define BTRFS_IOCTL_MAGIC 0x94
170 #endif
171
172 #ifndef BTRFS_PATH_NAME_MAX
173 #define BTRFS_PATH_NAME_MAX 4087
174 #endif
175
176 #ifndef BTRFS_DEVICE_PATH_NAME_MAX
177 #define BTRFS_DEVICE_PATH_NAME_MAX 1024
178 #endif
179
180 #ifndef BTRFS_FSID_SIZE
181 #define BTRFS_FSID_SIZE 16
182 #endif
183
184 #ifndef BTRFS_UUID_SIZE
185 #define BTRFS_UUID_SIZE 16
186 #endif
187
188 #ifndef BTRFS_SUBVOL_RDONLY
189 #define BTRFS_SUBVOL_RDONLY (1ULL << 1)
190 #endif
191
192 #ifndef BTRFS_SUBVOL_NAME_MAX
193 #define BTRFS_SUBVOL_NAME_MAX 4039
194 #endif
195
196 #ifndef BTRFS_INO_LOOKUP_PATH_MAX
197 #define BTRFS_INO_LOOKUP_PATH_MAX 4080
198 #endif
199
200 #ifndef BTRFS_SEARCH_ARGS_BUFSIZE
201 #define BTRFS_SEARCH_ARGS_BUFSIZE (4096 - sizeof(struct btrfs_ioctl_search_key))
202 #endif
203
204 #ifndef BTRFS_QGROUP_LEVEL_SHIFT
205 #define BTRFS_QGROUP_LEVEL_SHIFT 48
206 #endif
207
208 #ifndef HAVE_LINUX_BTRFS_H
209 struct btrfs_ioctl_vol_args {
210 int64_t fd;
211 char name[BTRFS_PATH_NAME_MAX + 1];
212 };
213
214 struct btrfs_qgroup_limit {
215 __u64 flags;
216 __u64 max_rfer;
217 __u64 max_excl;
218 __u64 rsv_rfer;
219 __u64 rsv_excl;
220 };
221
222 struct btrfs_qgroup_inherit {
223 __u64 flags;
224 __u64 num_qgroups;
225 __u64 num_ref_copies;
226 __u64 num_excl_copies;
227 struct btrfs_qgroup_limit lim;
228 __u64 qgroups[0];
229 };
230
231 struct btrfs_ioctl_qgroup_limit_args {
232 __u64 qgroupid;
233 struct btrfs_qgroup_limit lim;
234 };
235
236 struct btrfs_ioctl_vol_args_v2 {
237 __s64 fd;
238 __u64 transid;
239 __u64 flags;
240 union {
241 struct {
242 __u64 size;
243 struct btrfs_qgroup_inherit *qgroup_inherit;
244 };
245 __u64 unused[4];
246 };
247 char name[BTRFS_SUBVOL_NAME_MAX + 1];
248 };
249
250 struct btrfs_ioctl_dev_info_args {
251 uint64_t devid; /* in/out */
252 uint8_t uuid[BTRFS_UUID_SIZE]; /* in/out */
253 uint64_t bytes_used; /* out */
254 uint64_t total_bytes; /* out */
255 uint64_t unused[379]; /* pad to 4k */
256 char path[BTRFS_DEVICE_PATH_NAME_MAX]; /* out */
257 };
258
259 struct btrfs_ioctl_fs_info_args {
260 uint64_t max_id; /* out */
261 uint64_t num_devices; /* out */
262 uint8_t fsid[BTRFS_FSID_SIZE]; /* out */
263 uint64_t reserved[124]; /* pad to 1k */
264 };
265
266 struct btrfs_ioctl_ino_lookup_args {
267 __u64 treeid;
268 __u64 objectid;
269 char name[BTRFS_INO_LOOKUP_PATH_MAX];
270 };
271
272 struct btrfs_ioctl_search_key {
273 /* which root are we searching. 0 is the tree of tree roots */
274 __u64 tree_id;
275
276 /* keys returned will be >= min and <= max */
277 __u64 min_objectid;
278 __u64 max_objectid;
279
280 /* keys returned will be >= min and <= max */
281 __u64 min_offset;
282 __u64 max_offset;
283
284 /* max and min transids to search for */
285 __u64 min_transid;
286 __u64 max_transid;
287
288 /* keys returned will be >= min and <= max */
289 __u32 min_type;
290 __u32 max_type;
291
292 /*
293 * how many items did userland ask for, and how many are we
294 * returning
295 */
296 __u32 nr_items;
297
298 /* align to 64 bits */
299 __u32 unused;
300
301 /* some extra for later */
302 __u64 unused1;
303 __u64 unused2;
304 __u64 unused3;
305 __u64 unused4;
306 };
307
308 struct btrfs_ioctl_search_header {
309 __u64 transid;
310 __u64 objectid;
311 __u64 offset;
312 __u32 type;
313 __u32 len;
314 };
315
316
317 struct btrfs_ioctl_search_args {
318 struct btrfs_ioctl_search_key key;
319 char buf[BTRFS_SEARCH_ARGS_BUFSIZE];
320 };
321
322 struct btrfs_ioctl_clone_range_args {
323 __s64 src_fd;
324 __u64 src_offset, src_length;
325 __u64 dest_offset;
326 };
327
328 #define BTRFS_QUOTA_CTL_ENABLE 1
329 #define BTRFS_QUOTA_CTL_DISABLE 2
330 #define BTRFS_QUOTA_CTL_RESCAN__NOTUSED 3
331 struct btrfs_ioctl_quota_ctl_args {
332 __u64 cmd;
333 __u64 status;
334 };
335 #endif
336
337 #ifndef BTRFS_IOC_DEFRAG
338 #define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
339 struct btrfs_ioctl_vol_args)
340 #endif
341
342 #ifndef BTRFS_IOC_RESIZE
343 #define BTRFS_IOC_RESIZE _IOW(BTRFS_IOCTL_MAGIC, 3, \
344 struct btrfs_ioctl_vol_args)
345 #endif
346
347 #ifndef BTRFS_IOC_CLONE
348 #define BTRFS_IOC_CLONE _IOW(BTRFS_IOCTL_MAGIC, 9, int)
349 #endif
350
351 #ifndef BTRFS_IOC_CLONE_RANGE
352 #define BTRFS_IOC_CLONE_RANGE _IOW(BTRFS_IOCTL_MAGIC, 13, \
353 struct btrfs_ioctl_clone_range_args)
354 #endif
355
356 #ifndef BTRFS_IOC_SUBVOL_CREATE
357 #define BTRFS_IOC_SUBVOL_CREATE _IOW(BTRFS_IOCTL_MAGIC, 14, \
358 struct btrfs_ioctl_vol_args)
359 #endif
360
361 #ifndef BTRFS_IOC_SNAP_DESTROY
362 #define BTRFS_IOC_SNAP_DESTROY _IOW(BTRFS_IOCTL_MAGIC, 15, \
363 struct btrfs_ioctl_vol_args)
364 #endif
365
366 #ifndef BTRFS_IOC_TREE_SEARCH
367 #define BTRFS_IOC_TREE_SEARCH _IOWR(BTRFS_IOCTL_MAGIC, 17, \
368 struct btrfs_ioctl_search_args)
369 #endif
370
371 #ifndef BTRFS_IOC_INO_LOOKUP
372 #define BTRFS_IOC_INO_LOOKUP _IOWR(BTRFS_IOCTL_MAGIC, 18, \
373 struct btrfs_ioctl_ino_lookup_args)
374 #endif
375
376 #ifndef BTRFS_IOC_SNAP_CREATE_V2
377 #define BTRFS_IOC_SNAP_CREATE_V2 _IOW(BTRFS_IOCTL_MAGIC, 23, \
378 struct btrfs_ioctl_vol_args_v2)
379 #endif
380
381 #ifndef BTRFS_IOC_SUBVOL_GETFLAGS
382 #define BTRFS_IOC_SUBVOL_GETFLAGS _IOR(BTRFS_IOCTL_MAGIC, 25, __u64)
383 #endif
384
385 #ifndef BTRFS_IOC_SUBVOL_SETFLAGS
386 #define BTRFS_IOC_SUBVOL_SETFLAGS _IOW(BTRFS_IOCTL_MAGIC, 26, __u64)
387 #endif
388
389 #ifndef BTRFS_IOC_DEV_INFO
390 #define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
391 struct btrfs_ioctl_dev_info_args)
392 #endif
393
394 #ifndef BTRFS_IOC_FS_INFO
395 #define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
396 struct btrfs_ioctl_fs_info_args)
397 #endif
398
399 #ifndef BTRFS_IOC_DEVICES_READY
400 #define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, \
401 struct btrfs_ioctl_vol_args)
402 #endif
403
404 #ifndef BTRFS_IOC_QUOTA_CTL
405 #define BTRFS_IOC_QUOTA_CTL _IOWR(BTRFS_IOCTL_MAGIC, 40, \
406 struct btrfs_ioctl_quota_ctl_args)
407 #endif
408
409 #ifndef BTRFS_IOC_QGROUP_LIMIT
410 #define BTRFS_IOC_QGROUP_LIMIT _IOR(BTRFS_IOCTL_MAGIC, 43, \
411 struct btrfs_ioctl_qgroup_limit_args)
412 #endif
413
414 #ifndef BTRFS_IOC_QUOTA_RESCAN_WAIT
415 #define BTRFS_IOC_QUOTA_RESCAN_WAIT _IO(BTRFS_IOCTL_MAGIC, 46)
416 #endif
417
418 #ifndef BTRFS_FIRST_FREE_OBJECTID
419 #define BTRFS_FIRST_FREE_OBJECTID 256
420 #endif
421
422 #ifndef BTRFS_LAST_FREE_OBJECTID
423 #define BTRFS_LAST_FREE_OBJECTID -256ULL
424 #endif
425
426 #ifndef BTRFS_ROOT_TREE_OBJECTID
427 #define BTRFS_ROOT_TREE_OBJECTID 1
428 #endif
429
430 #ifndef BTRFS_QUOTA_TREE_OBJECTID
431 #define BTRFS_QUOTA_TREE_OBJECTID 8ULL
432 #endif
433
434 #ifndef BTRFS_ROOT_ITEM_KEY
435 #define BTRFS_ROOT_ITEM_KEY 132
436 #endif
437
438 #ifndef BTRFS_QGROUP_STATUS_KEY
439 #define BTRFS_QGROUP_STATUS_KEY 240
440 #endif
441
442 #ifndef BTRFS_QGROUP_INFO_KEY
443 #define BTRFS_QGROUP_INFO_KEY 242
444 #endif
445
446 #ifndef BTRFS_QGROUP_LIMIT_KEY
447 #define BTRFS_QGROUP_LIMIT_KEY 244
448 #endif
449
450 #ifndef BTRFS_QGROUP_RELATION_KEY
451 #define BTRFS_QGROUP_RELATION_KEY 246
452 #endif
453
454 #ifndef BTRFS_ROOT_BACKREF_KEY
455 #define BTRFS_ROOT_BACKREF_KEY 144
456 #endif
457
458 #ifndef BTRFS_SUPER_MAGIC
459 #define BTRFS_SUPER_MAGIC 0x9123683E
460 #endif
461
462 #ifndef CGROUP_SUPER_MAGIC
463 #define CGROUP_SUPER_MAGIC 0x27e0eb
464 #endif
465
466 #ifndef CGROUP2_SUPER_MAGIC
467 #define CGROUP2_SUPER_MAGIC 0x63677270
468 #endif
469
470 #ifndef CLONE_NEWCGROUP
471 #define CLONE_NEWCGROUP 0x02000000
472 #endif
473
474 #ifndef TMPFS_MAGIC
475 #define TMPFS_MAGIC 0x01021994
476 #endif
477
478 #ifndef MQUEUE_MAGIC
479 #define MQUEUE_MAGIC 0x19800202
480 #endif
481
482 #ifndef SECURITYFS_MAGIC
483 #define SECURITYFS_MAGIC 0x73636673
484 #endif
485
486 #ifndef TRACEFS_MAGIC
487 #define TRACEFS_MAGIC 0x74726163
488 #endif
489
490 #ifndef BPF_FS_MAGIC
491 #define BPF_FS_MAGIC 0xcafe4a11
492 #endif
493
494 #ifndef MS_MOVE
495 #define MS_MOVE 8192
496 #endif
497
498 #ifndef MS_REC
499 #define MS_REC 16384
500 #endif
501
502 #ifndef MS_PRIVATE
503 #define MS_PRIVATE (1<<18)
504 #endif
505
506 #ifndef MS_REC
507 #define MS_REC (1<<19)
508 #endif
509
510 #ifndef MS_SHARED
511 #define MS_SHARED (1<<20)
512 #endif
513
514 #ifndef MS_RELATIME
515 #define MS_RELATIME (1<<21)
516 #endif
517
518 #ifndef MS_KERNMOUNT
519 #define MS_KERNMOUNT (1<<22)
520 #endif
521
522 #ifndef MS_I_VERSION
523 #define MS_I_VERSION (1<<23)
524 #endif
525
526 #ifndef MS_STRICTATIME
527 #define MS_STRICTATIME (1<<24)
528 #endif
529
530 #ifndef MS_LAZYTIME
531 #define MS_LAZYTIME (1<<25)
532 #endif
533
534 #ifndef SCM_SECURITY
535 #define SCM_SECURITY 0x03
536 #endif
537
538 #ifndef PR_SET_NO_NEW_PRIVS
539 #define PR_SET_NO_NEW_PRIVS 38
540 #endif
541
542 #ifndef PR_SET_CHILD_SUBREAPER
543 #define PR_SET_CHILD_SUBREAPER 36
544 #endif
545
546 #ifndef MAX_HANDLE_SZ
547 #define MAX_HANDLE_SZ 128
548 #endif
549
550 #ifndef HAVE_SECURE_GETENV
551 # ifdef HAVE___SECURE_GETENV
552 # define secure_getenv __secure_getenv
553 # else
554 # error "neither secure_getenv nor __secure_getenv are available"
555 # endif
556 #endif
557
558 #ifndef CIFS_MAGIC_NUMBER
559 # define CIFS_MAGIC_NUMBER 0xFF534D42
560 #endif
561
562 #ifndef TFD_TIMER_CANCEL_ON_SET
563 # define TFD_TIMER_CANCEL_ON_SET (1 << 1)
564 #endif
565
566 #ifndef SO_REUSEPORT
567 # define SO_REUSEPORT 15
568 #endif
569
570 #ifndef EVIOCREVOKE
571 # define EVIOCREVOKE _IOW('E', 0x91, int)
572 #endif
573
574 #ifndef DRM_IOCTL_SET_MASTER
575 # define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
576 #endif
577
578 #ifndef DRM_IOCTL_DROP_MASTER
579 # define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
580 #endif
581
582 /* The precise definition of __O_TMPFILE is arch specific; use the
583 * values defined by the kernel (note: some are hexa, some are octal,
584 * duplicated as-is from the kernel definitions):
585 * - alpha, parisc, sparc: each has a specific value;
586 * - others: they use the "generic" value.
587 */
588
589 #ifndef __O_TMPFILE
590 #if defined(__alpha__)
591 #define __O_TMPFILE 0100000000
592 #elif defined(__parisc__) || defined(__hppa__)
593 #define __O_TMPFILE 0400000000
594 #elif defined(__sparc__) || defined(__sparc64__)
595 #define __O_TMPFILE 0x2000000
596 #else
597 #define __O_TMPFILE 020000000
598 #endif
599
600 /* a horrid kludge trying to make sure that this will fail on old kernels */
601 #ifndef O_TMPFILE
602 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
603 #endif
604
605 #endif
606
607 #if !HAVE_DECL_LO_FLAGS_PARTSCAN
608 #define LO_FLAGS_PARTSCAN 8
609 #endif
610
611 #ifndef LOOP_CTL_REMOVE
612 #define LOOP_CTL_REMOVE 0x4C81
613 #endif
614
615 #ifndef LOOP_CTL_GET_FREE
616 #define LOOP_CTL_GET_FREE 0x4C82
617 #endif
618
619 #if !HAVE_DECL_IFLA_INET6_ADDR_GEN_MODE
620 #define IFLA_INET6_UNSPEC 0
621 #define IFLA_INET6_FLAGS 1
622 #define IFLA_INET6_CONF 2
623 #define IFLA_INET6_STATS 3
624 #define IFLA_INET6_MCAST 4
625 #define IFLA_INET6_CACHEINFO 5
626 #define IFLA_INET6_ICMP6STATS 6
627 #define IFLA_INET6_TOKEN 7
628 #define IFLA_INET6_ADDR_GEN_MODE 8
629 #define __IFLA_INET6_MAX 9
630
631 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
632
633 #define IN6_ADDR_GEN_MODE_EUI64 0
634 #define IN6_ADDR_GEN_MODE_NONE 1
635 #endif
636
637 #if !HAVE_DECL_IN6_ADDR_GEN_MODE_STABLE_PRIVACY
638 #define IN6_ADDR_GEN_MODE_STABLE_PRIVACY 2
639 #endif
640
641 #if !HAVE_DECL_IFLA_MACVLAN_FLAGS
642 #define IFLA_MACVLAN_UNSPEC 0
643 #define IFLA_MACVLAN_MODE 1
644 #define IFLA_MACVLAN_FLAGS 2
645 #define __IFLA_MACVLAN_MAX 3
646
647 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
648 #endif
649
650 #if !HAVE_DECL_IFLA_IPVLAN_MODE
651 #define IFLA_IPVLAN_UNSPEC 0
652 #define IFLA_IPVLAN_MODE 1
653 #define __IFLA_IPVLAN_MAX 2
654
655 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
656
657 #define IPVLAN_MODE_L2 0
658 #define IPVLAN_MODE_L3 1
659 #define IPVLAN_MAX 2
660 #endif
661
662 #if !HAVE_DECL_IFLA_VTI_REMOTE
663 #define IFLA_VTI_UNSPEC 0
664 #define IFLA_VTI_LINK 1
665 #define IFLA_VTI_IKEY 2
666 #define IFLA_VTI_OKEY 3
667 #define IFLA_VTI_LOCAL 4
668 #define IFLA_VTI_REMOTE 5
669 #define __IFLA_VTI_MAX 6
670
671 #define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
672 #endif
673
674 #if !HAVE_DECL_IFLA_PHYS_PORT_ID
675 #define IFLA_EXT_MASK 29
676 #undef IFLA_PROMISCUITY
677 #define IFLA_PROMISCUITY 30
678 #define IFLA_NUM_TX_QUEUES 31
679 #define IFLA_NUM_RX_QUEUES 32
680 #define IFLA_CARRIER 33
681 #define IFLA_PHYS_PORT_ID 34
682 #define __IFLA_MAX 35
683
684 #define IFLA_MAX (__IFLA_MAX - 1)
685 #endif
686
687 #if !HAVE_DECL_IFLA_BOND_AD_INFO
688 #define IFLA_BOND_UNSPEC 0
689 #define IFLA_BOND_MODE 1
690 #define IFLA_BOND_ACTIVE_SLAVE 2
691 #define IFLA_BOND_MIIMON 3
692 #define IFLA_BOND_UPDELAY 4
693 #define IFLA_BOND_DOWNDELAY 5
694 #define IFLA_BOND_USE_CARRIER 6
695 #define IFLA_BOND_ARP_INTERVAL 7
696 #define IFLA_BOND_ARP_IP_TARGET 8
697 #define IFLA_BOND_ARP_VALIDATE 9
698 #define IFLA_BOND_ARP_ALL_TARGETS 10
699 #define IFLA_BOND_PRIMARY 11
700 #define IFLA_BOND_PRIMARY_RESELECT 12
701 #define IFLA_BOND_FAIL_OVER_MAC 13
702 #define IFLA_BOND_XMIT_HASH_POLICY 14
703 #define IFLA_BOND_RESEND_IGMP 15
704 #define IFLA_BOND_NUM_PEER_NOTIF 16
705 #define IFLA_BOND_ALL_SLAVES_ACTIVE 17
706 #define IFLA_BOND_MIN_LINKS 18
707 #define IFLA_BOND_LP_INTERVAL 19
708 #define IFLA_BOND_PACKETS_PER_SLAVE 20
709 #define IFLA_BOND_AD_LACP_RATE 21
710 #define IFLA_BOND_AD_SELECT 22
711 #define IFLA_BOND_AD_INFO 23
712 #define __IFLA_BOND_MAX 24
713
714 #define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
715 #endif
716
717 #if !HAVE_DECL_IFLA_VLAN_PROTOCOL
718 #define IFLA_VLAN_UNSPEC 0
719 #define IFLA_VLAN_ID 1
720 #define IFLA_VLAN_FLAGS 2
721 #define IFLA_VLAN_EGRESS_QOS 3
722 #define IFLA_VLAN_INGRESS_QOS 4
723 #define IFLA_VLAN_PROTOCOL 5
724 #define __IFLA_VLAN_MAX 6
725
726 #define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
727 #endif
728
729 #if !HAVE_DECL_IFLA_VXLAN_REMCSUM_NOPARTIAL
730 #define IFLA_VXLAN_UNSPEC 0
731 #define IFLA_VXLAN_ID 1
732 #define IFLA_VXLAN_GROUP 2
733 #define IFLA_VXLAN_LINK 3
734 #define IFLA_VXLAN_LOCAL 4
735 #define IFLA_VXLAN_TTL 5
736 #define IFLA_VXLAN_TOS 6
737 #define IFLA_VXLAN_LEARNING 7
738 #define IFLA_VXLAN_AGEING 8
739 #define IFLA_VXLAN_LIMIT 9
740 #define IFLA_VXLAN_PORT_RANGE 10
741 #define IFLA_VXLAN_PROXY 11
742 #define IFLA_VXLAN_RSC 12
743 #define IFLA_VXLAN_L2MISS 13
744 #define IFLA_VXLAN_L3MISS 14
745 #define IFLA_VXLAN_PORT 15
746 #define IFLA_VXLAN_GROUP6 16
747 #define IFLA_VXLAN_LOCAL6 17
748 #define IFLA_VXLAN_UDP_CSUM 18
749 #define IFLA_VXLAN_UDP_ZERO_CSUM6_TX 19
750 #define IFLA_VXLAN_UDP_ZERO_CSUM6_RX 20
751 #define IFLA_VXLAN_REMCSUM_TX 21
752 #define IFLA_VXLAN_REMCSUM_RX 22
753 #define IFLA_VXLAN_GBP 23
754 #define IFLA_VXLAN_REMCSUM_NOPARTIAL 24
755 #define __IFLA_VXLAN_MAX 25
756
757 #define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
758 #endif
759
760 #if !HAVE_DECL_IFLA_IPTUN_ENCAP_DPORT
761 #define IFLA_IPTUN_UNSPEC 0
762 #define IFLA_IPTUN_LINK 1
763 #define IFLA_IPTUN_LOCAL 2
764 #define IFLA_IPTUN_REMOTE 3
765 #define IFLA_IPTUN_TTL 4
766 #define IFLA_IPTUN_TOS 5
767 #define IFLA_IPTUN_ENCAP_LIMIT 6
768 #define IFLA_IPTUN_FLOWINFO 7
769 #define IFLA_IPTUN_FLAGS 8
770 #define IFLA_IPTUN_PROTO 9
771 #define IFLA_IPTUN_PMTUDISC 10
772 #define IFLA_IPTUN_6RD_PREFIX 11
773 #define IFLA_IPTUN_6RD_RELAY_PREFIX 12
774 #define IFLA_IPTUN_6RD_PREFIXLEN 13
775 #define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
776 #define IFLA_IPTUN_ENCAP_TYPE 15
777 #define IFLA_IPTUN_ENCAP_FLAGS 16
778 #define IFLA_IPTUN_ENCAP_SPORT 17
779 #define IFLA_IPTUN_ENCAP_DPORT 18
780
781 #define __IFLA_IPTUN_MAX 19
782
783 #define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1)
784 #endif
785
786 #if !HAVE_DECL_IFLA_GRE_ENCAP_DPORT
787 #define IFLA_GRE_UNSPEC 0
788 #define IFLA_GRE_LINK 1
789 #define IFLA_GRE_IFLAGS 2
790 #define IFLA_GRE_OFLAGS 3
791 #define IFLA_GRE_IKEY 4
792 #define IFLA_GRE_OKEY 5
793 #define IFLA_GRE_LOCAL 6
794 #define IFLA_GRE_REMOTE 7
795 #define IFLA_GRE_TTL 8
796 #define IFLA_GRE_TOS 9
797 #define IFLA_GRE_PMTUDISC 10
798 #define IFLA_GRE_ENCAP_LIMIT 11
799 #define IFLA_GRE_FLOWINFO 12
800 #define IFLA_GRE_FLAGS 13
801 #define IFLA_GRE_ENCAP_TYPE 14
802 #define IFLA_GRE_ENCAP_FLAGS 15
803 #define IFLA_GRE_ENCAP_SPORT 16
804 #define IFLA_GRE_ENCAP_DPORT 17
805
806 #define __IFLA_GRE_MAX 18
807
808 #define IFLA_GRE_MAX (__IFLA_GRE_MAX - 1)
809 #endif
810
811 #if !HAVE_DECL_IFLA_BRIDGE_VLAN_INFO
812 #define IFLA_BRIDGE_FLAGS 0
813 #define IFLA_BRIDGE_MODE 1
814 #define IFLA_BRIDGE_VLAN_INFO 2
815 #define __IFLA_BRIDGE_MAX 3
816
817 #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
818 #endif
819
820 #ifndef BRIDGE_VLAN_INFO_RANGE_BEGIN
821 #define BRIDGE_VLAN_INFO_RANGE_BEGIN (1<<3) /* VLAN is start of vlan range */
822 #endif
823
824 #ifndef BRIDGE_VLAN_INFO_RANGE_END
825 #define BRIDGE_VLAN_INFO_RANGE_END (1<<4) /* VLAN is end of vlan range */
826 #endif
827
828 #if !HAVE_DECL_IFLA_BR_VLAN_DEFAULT_PVID
829 #define IFLA_BR_UNSPEC 0
830 #define IFLA_BR_FORWARD_DELAY 1
831 #define IFLA_BR_HELLO_TIME 2
832 #define IFLA_BR_MAX_AGE 3
833 #define IFLA_BR_AGEING_TIME 4
834 #define IFLA_BR_STP_STATE 5
835 #define IFLA_BR_PRIORITY 6
836 #define IFLA_BR_VLAN_FILTERING 7
837 #define IFLA_BR_VLAN_PROTOCOL 8
838 #define IFLA_BR_GROUP_FWD_MASK 9
839 #define IFLA_BR_ROOT_ID 10
840 #define IFLA_BR_BRIDGE_ID 11
841 #define IFLA_BR_ROOT_PORT 12
842 #define IFLA_BR_ROOT_PATH_COST 13
843 #define IFLA_BR_TOPOLOGY_CHANGE 14
844 #define IFLA_BR_TOPOLOGY_CHANGE_DETECTED 15
845 #define IFLA_BR_HELLO_TIMER 16
846 #define IFLA_BR_TCN_TIMER 17
847 #define IFLA_BR_TOPOLOGY_CHANGE_TIMER 18
848 #define IFLA_BR_GC_TIMER 19
849 #define IFLA_BR_GROUP_ADDR 20
850 #define IFLA_BR_FDB_FLUSH 21
851 #define IFLA_BR_MCAST_ROUTER 22
852 #define IFLA_BR_MCAST_SNOOPING 23
853 #define IFLA_BR_MCAST_QUERY_USE_IFADDR 24
854 #define IFLA_BR_MCAST_QUERIER 25
855 #define IFLA_BR_MCAST_HASH_ELASTICITY 26
856 #define IFLA_BR_MCAST_HASH_MAX 27
857 #define IFLA_BR_MCAST_LAST_MEMBER_CNT 28
858 #define IFLA_BR_MCAST_STARTUP_QUERY_CNT 29
859 #define IFLA_BR_MCAST_LAST_MEMBER_INTVL 30
860 #define IFLA_BR_MCAST_MEMBERSHIP_INTVL 31
861 #define IFLA_BR_MCAST_QUERIER_INTVL 32
862 #define IFLA_BR_MCAST_QUERY_INTVL 33
863 #define IFLA_BR_MCAST_QUERY_RESPONSE_INTVL 34
864 #define IFLA_BR_MCAST_STARTUP_QUERY_INTVL 35
865 #define IFLA_BR_NF_CALL_IPTABLES 36
866 #define IFLA_BR_NF_CALL_IP6TABLES 37
867 #define IFLA_BR_NF_CALL_ARPTABLES 38
868 #define IFLA_BR_VLAN_DEFAULT_PVID 39
869 #define __IFLA_BR_MAX 40
870
871 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
872 #endif
873
874 #if !HAVE_DECL_IFLA_BRPORT_LEARNING_SYNC
875 #define IFLA_BRPORT_UNSPEC 0
876 #define IFLA_BRPORT_STATE 1
877 #define IFLA_BRPORT_PRIORITY 2
878 #define IFLA_BRPORT_COST 3
879 #define IFLA_BRPORT_MODE 4
880 #define IFLA_BRPORT_GUARD 5
881 #define IFLA_BRPORT_PROTECT 6
882 #define IFLA_BRPORT_FAST_LEAVE 7
883 #define IFLA_BRPORT_LEARNING 8
884 #define IFLA_BRPORT_UNICAST_FLOOD 9
885 #define IFLA_BRPORT_LEARNING_SYNC 11
886 #define __IFLA_BRPORT_MAX 12
887
888 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
889 #endif
890
891 #if !HAVE_DECL_IFLA_BRPORT_PROXYARP
892 #define IFLA_BRPORT_PROXYARP 10
893 #endif
894
895 #if !HAVE_DECL_IFLA_VRF_TABLE
896 #define IFLA_VRF_TABLE 1
897 #endif
898
899 #if !HAVE_DECL_NDA_IFINDEX
900 #define NDA_UNSPEC 0
901 #define NDA_DST 1
902 #define NDA_LLADDR 2
903 #define NDA_CACHEINFO 3
904 #define NDA_PROBES 4
905 #define NDA_VLAN 5
906 #define NDA_PORT 6
907 #define NDA_VNI 7
908 #define NDA_IFINDEX 8
909 #define __NDA_MAX 9
910
911 #define NDA_MAX (__NDA_MAX - 1)
912 #endif
913
914 #ifndef RTA_PREF
915 #define RTA_PREF 20
916 #endif
917
918 #ifndef IPV6_UNICAST_IF
919 #define IPV6_UNICAST_IF 76
920 #endif
921
922 #ifndef IPV6_MIN_MTU
923 #define IPV6_MIN_MTU 1280
924 #endif
925
926 #ifndef IFF_MULTI_QUEUE
927 #define IFF_MULTI_QUEUE 0x100
928 #endif
929
930 #ifndef IFF_LOWER_UP
931 #define IFF_LOWER_UP 0x10000
932 #endif
933
934 #ifndef IFF_DORMANT
935 #define IFF_DORMANT 0x20000
936 #endif
937
938 #ifndef BOND_XMIT_POLICY_ENCAP23
939 #define BOND_XMIT_POLICY_ENCAP23 3
940 #endif
941
942 #ifndef BOND_XMIT_POLICY_ENCAP34
943 #define BOND_XMIT_POLICY_ENCAP34 4
944 #endif
945
946 #ifndef NET_ADDR_RANDOM
947 # define NET_ADDR_RANDOM 1
948 #endif
949
950 #ifndef NET_NAME_UNKNOWN
951 # define NET_NAME_UNKNOWN 0
952 #endif
953
954 #ifndef NET_NAME_ENUM
955 # define NET_NAME_ENUM 1
956 #endif
957
958 #ifndef NET_NAME_PREDICTABLE
959 # define NET_NAME_PREDICTABLE 2
960 #endif
961
962 #ifndef NET_NAME_USER
963 # define NET_NAME_USER 3
964 #endif
965
966 #ifndef NET_NAME_RENAMED
967 # define NET_NAME_RENAMED 4
968 #endif
969
970 #ifndef BPF_XOR
971 # define BPF_XOR 0xa0
972 #endif
973
974 /* Note that LOOPBACK_IFINDEX is currently not exported by the
975 * kernel/glibc, but hardcoded internally by the kernel. However, as
976 * it is exported to userspace indirectly via rtnetlink and the
977 * ioctls, and made use of widely we define it here too, in a way that
978 * is compatible with the kernel's internal definition. */
979 #ifndef LOOPBACK_IFINDEX
980 #define LOOPBACK_IFINDEX 1
981 #endif
982
983 #if !HAVE_DECL_IFA_FLAGS
984 #define IFA_FLAGS 8
985 #endif
986
987 #ifndef IFA_F_MANAGETEMPADDR
988 #define IFA_F_MANAGETEMPADDR 0x100
989 #endif
990
991 #ifndef IFA_F_NOPREFIXROUTE
992 #define IFA_F_NOPREFIXROUTE 0x200
993 #endif
994
995 #ifndef MAX_AUDIT_MESSAGE_LENGTH
996 #define MAX_AUDIT_MESSAGE_LENGTH 8970
997 #endif
998
999 #ifndef AUDIT_NLGRP_MAX
1000 #define AUDIT_NLGRP_READLOG 1
1001 #endif
1002
1003 #ifndef CAP_MAC_OVERRIDE
1004 #define CAP_MAC_OVERRIDE 32
1005 #endif
1006
1007 #ifndef CAP_MAC_ADMIN
1008 #define CAP_MAC_ADMIN 33
1009 #endif
1010
1011 #ifndef CAP_SYSLOG
1012 #define CAP_SYSLOG 34
1013 #endif
1014
1015 #ifndef CAP_WAKE_ALARM
1016 #define CAP_WAKE_ALARM 35
1017 #endif
1018
1019 #ifndef CAP_BLOCK_SUSPEND
1020 #define CAP_BLOCK_SUSPEND 36
1021 #endif
1022
1023 #ifndef CAP_AUDIT_READ
1024 #define CAP_AUDIT_READ 37
1025 #endif
1026
1027 #ifndef RENAME_NOREPLACE
1028 #define RENAME_NOREPLACE (1 << 0)
1029 #endif
1030
1031 #ifndef KCMP_FILE
1032 #define KCMP_FILE 0
1033 #endif
1034
1035 #ifndef INPUT_PROP_POINTING_STICK
1036 #define INPUT_PROP_POINTING_STICK 0x05
1037 #endif
1038
1039 #ifndef INPUT_PROP_ACCELEROMETER
1040 #define INPUT_PROP_ACCELEROMETER 0x06
1041 #endif
1042
1043 #ifndef HAVE_KEY_SERIAL_T
1044 typedef int32_t key_serial_t;
1045 #endif
1046
1047 #ifndef KEYCTL_JOIN_SESSION_KEYRING
1048 #define KEYCTL_JOIN_SESSION_KEYRING 1
1049 #endif
1050
1051 #ifndef KEYCTL_CHOWN
1052 #define KEYCTL_CHOWN 4
1053 #endif
1054
1055 #ifndef KEYCTL_SETPERM
1056 #define KEYCTL_SETPERM 5
1057 #endif
1058
1059 #ifndef KEYCTL_DESCRIBE
1060 #define KEYCTL_DESCRIBE 6
1061 #endif
1062
1063 #ifndef KEYCTL_READ
1064 #define KEYCTL_READ 11
1065 #endif
1066
1067 #ifndef KEYCTL_SET_TIMEOUT
1068 #define KEYCTL_SET_TIMEOUT 15
1069 #endif
1070
1071 #ifndef KEY_POS_VIEW
1072 #define KEY_POS_VIEW 0x01000000
1073 #define KEY_POS_READ 0x02000000
1074 #define KEY_POS_WRITE 0x04000000
1075 #define KEY_POS_SEARCH 0x08000000
1076 #define KEY_POS_LINK 0x10000000
1077 #define KEY_POS_SETATTR 0x20000000
1078
1079 #define KEY_USR_VIEW 0x00010000
1080 #define KEY_USR_READ 0x00020000
1081 #define KEY_USR_WRITE 0x00040000
1082 #define KEY_USR_SEARCH 0x00080000
1083 #define KEY_USR_LINK 0x00100000
1084 #define KEY_USR_SETATTR 0x00200000
1085
1086 #define KEY_GRP_VIEW 0x00000100
1087 #define KEY_GRP_READ 0x00000200
1088 #define KEY_GRP_WRITE 0x00000400
1089 #define KEY_GRP_SEARCH 0x00000800
1090 #define KEY_GRP_LINK 0x00001000
1091 #define KEY_GRP_SETATTR 0x00002000
1092
1093 #define KEY_OTH_VIEW 0x00000001
1094 #define KEY_OTH_READ 0x00000002
1095 #define KEY_OTH_WRITE 0x00000004
1096 #define KEY_OTH_SEARCH 0x00000008
1097 #define KEY_OTH_LINK 0x00000010
1098 #define KEY_OTH_SETATTR 0x00000020
1099 #endif
1100
1101 #ifndef KEY_SPEC_USER_KEYRING
1102 #define KEY_SPEC_USER_KEYRING -4
1103 #endif
1104
1105 #ifndef KEY_SPEC_SESSION_KEYRING
1106 #define KEY_SPEC_SESSION_KEYRING -3
1107 #endif
1108
1109 #ifndef PR_CAP_AMBIENT
1110 #define PR_CAP_AMBIENT 47
1111 #endif
1112
1113 #ifndef PR_CAP_AMBIENT_IS_SET
1114 #define PR_CAP_AMBIENT_IS_SET 1
1115 #endif
1116
1117 #ifndef PR_CAP_AMBIENT_RAISE
1118 #define PR_CAP_AMBIENT_RAISE 2
1119 #endif
1120
1121 #ifndef PR_CAP_AMBIENT_CLEAR_ALL
1122 #define PR_CAP_AMBIENT_CLEAR_ALL 4
1123 #endif
1124
1125 /* The following two defines are actually available in the kernel headers for longer, but we define them here anyway,
1126 * since that makes it easier to use them in conjunction with the glibc net/if.h header which conflicts with
1127 * linux/if.h. */
1128 #ifndef IF_OPER_UNKNOWN
1129 #define IF_OPER_UNKNOWN 0
1130 #endif
1131
1132 #ifndef IF_OPER_UP
1133 #define IF_OPER_UP 6
1134
1135 #ifndef HAVE_CHAR32_T
1136 #define char32_t uint32_t
1137 #endif
1138
1139 #ifndef HAVE_CHAR16_T
1140 #define char16_t uint16_t
1141 #endif
1142
1143 #ifndef ETHERTYPE_LLDP
1144 #define ETHERTYPE_LLDP 0x88cc
1145 #endif
1146
1147 #ifndef IFA_F_MCAUTOJOIN
1148 #define IFA_F_MCAUTOJOIN 0x400
1149 #endif
1150
1151 #ifndef HAVE_STRUCT_ETHTOOL_LINK_SETTINGS
1152
1153 #define ETHTOOL_GLINKSETTINGS 0x0000004c /* Get ethtool_link_settings */
1154 #define ETHTOOL_SLINKSETTINGS 0x0000004d /* Set ethtool_link_settings */
1155
1156 struct ethtool_link_settings {
1157 __u32 cmd;
1158 __u32 speed;
1159 __u8 duplex;
1160 __u8 port;
1161 __u8 phy_address;
1162 __u8 autoneg;
1163 __u8 mdio_support;
1164 __u8 eth_tp_mdix;
1165 __u8 eth_tp_mdix_ctrl;
1166 __s8 link_mode_masks_nwords;
1167 __u32 reserved[8];
1168 __u32 link_mode_masks[0];
1169 /* layout of link_mode_masks fields:
1170 * __u32 map_supported[link_mode_masks_nwords];
1171 * __u32 map_advertising[link_mode_masks_nwords];
1172 * __u32 map_lp_advertising[link_mode_masks_nwords];
1173 */
1174 };
1175
1176 #endif
1177
1178 #endif
1179
1180 #ifndef SOL_ALG
1181 #define SOL_ALG 279
1182 #endif
1183
1184 #ifndef AF_VSOCK
1185 #define AF_VSOCK 40
1186 #endif
1187
1188 #include "missing_syscall.h"