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