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