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