]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/missing.h
update TODO
[thirdparty/systemd.git] / src / shared / missing.h
CommitLineData
03467c88 1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
15ae422b 2
c2f1db8f 3#pragma once
b9f880f4 4
15ae422b
LP
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
5430f7f2
LP
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
15ae422b
LP
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
5430f7f2 18 Lesser General Public License for more details.
15ae422b 19
5430f7f2 20 You should have received a copy of the GNU Lesser General Public License
15ae422b
LP
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22***/
23
b9f880f4
LP
24/* Missing glibc definitions to access certain kernel APIs */
25
26#include <sys/resource.h>
15ae422b 27#include <sys/syscall.h>
16c42ce1 28#include <fcntl.h>
4db17f29 29#include <stdlib.h>
82c121a4 30#include <unistd.h>
3b794314 31#include <errno.h>
dd6c17b1 32#include <linux/oom.h>
118ecf32 33#include <linux/input.h>
d5eff740 34#include <linux/if_link.h>
a853c45d 35#include <linux/loop.h>
875c2e22 36#include <linux/audit.h>
dd6c17b1
LP
37
38#ifdef HAVE_AUDIT
39#include <libaudit.h>
40#endif
b9f880f4 41
ad780f19
LP
42#include "macro.h"
43
d59d0a2b 44#ifdef ARCH_MIPS
45#include <asm/sgidefs.h>
46#endif
47
b9f880f4
LP
48#ifndef RLIMIT_RTTIME
49#define RLIMIT_RTTIME 15
50#endif
51
517d56b1
LP
52/* If RLIMIT_RTTIME is not defined, then we cannot use RLIMIT_NLIMITS as is */
53#define _RLIMIT_MAX (RLIMIT_RTTIME+1 > RLIMIT_NLIMITS ? RLIMIT_RTTIME+1 : RLIMIT_NLIMITS)
54
4fd5948e
LP
55#ifndef F_LINUX_SPECIFIC_BASE
56#define F_LINUX_SPECIFIC_BASE 1024
57#endif
58
59#ifndef F_SETPIPE_SZ
60#define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7)
61#endif
62
63#ifndef F_GETPIPE_SZ
64#define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
65#endif
66
a6082d77
DM
67#ifndef F_ADD_SEALS
68#define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
a6082d77 69#define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
a6082d77 70
a6082d77 71#define F_SEAL_SEAL 0x0001 /* prevent further seals from being set */
a6082d77 72#define F_SEAL_SHRINK 0x0002 /* prevent file from shrinking */
a6082d77 73#define F_SEAL_GROW 0x0004 /* prevent file from growing */
a6082d77
DM
74#define F_SEAL_WRITE 0x0008 /* prevent writes */
75#endif
76
77#ifndef MFD_ALLOW_SEALING
45071fca
LP
78#define MFD_ALLOW_SEALING 0x0002U
79#endif
80
81#ifndef MFD_CLOEXEC
82#define MFD_CLOEXEC 0x0001U
a6082d77
DM
83#endif
84
16c42ce1
KS
85#ifndef IP_FREEBIND
86#define IP_FREEBIND 15
87#endif
88
dd6c17b1
LP
89#ifndef OOM_SCORE_ADJ_MIN
90#define OOM_SCORE_ADJ_MIN (-1000)
91#endif
92
93#ifndef OOM_SCORE_ADJ_MAX
94#define OOM_SCORE_ADJ_MAX 1000
95#endif
15ae422b 96
4927fcae 97#ifndef AUDIT_SERVICE_START
dd6c17b1 98#define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
4927fcae
LP
99#endif
100
101#ifndef AUDIT_SERVICE_STOP
dd6c17b1 102#define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
4927fcae
LP
103#endif
104
6ea832a2
LP
105#ifndef TIOCVHANGUP
106#define TIOCVHANGUP 0x5437
107#endif
108
b90865ba
KS
109#ifndef IP_TRANSPARENT
110#define IP_TRANSPARENT 19
111#endif
112
66269b05
TG
113#ifndef SOL_NETLINK
114#define SOL_NETLINK 270
115#endif
116
a8348796 117#if !HAVE_DECL_PIVOT_ROOT
dd6c17b1
LP
118static inline int pivot_root(const char *new_root, const char *put_old) {
119 return syscall(SYS_pivot_root, new_root, put_old);
120}
a8348796 121#endif
dd6c17b1 122
b244d9f3
LP
123#ifndef __NR_memfd_create
124# if defined __x86_64__
a6082d77 125# define __NR_memfd_create 319
b244d9f3 126# elif defined __arm__
a6082d77 127# define __NR_memfd_create 385
b244d9f3 128# elif defined _MIPS_SIM
e6c01902
VOR
129# if _MIPS_SIM == _MIPS_SIM_ABI32
130# define __NR_memfd_create 4354
131# endif
132# if _MIPS_SIM == _MIPS_SIM_NABI32
133# define __NR_memfd_create 6318
134# endif
135# if _MIPS_SIM == _MIPS_SIM_ABI64
136# define __NR_memfd_create 5314
137# endif
03e8fdb3 138# elif defined __i386__
a6082d77 139# define __NR_memfd_create 356
03e8fdb3
DH
140# else
141# warning "__NR_memfd_create unknown for your architecture"
142# define __NR_memfd_create 0xffffffff
a6082d77 143# endif
22be093f
LP
144#endif
145
a6082d77 146#ifndef HAVE_MEMFD_CREATE
06b7f7bd 147static inline int memfd_create(const char *name, unsigned int flags) {
46327770 148 return syscall(__NR_memfd_create, name, flags);
a6082d77
DM
149}
150#endif
151
539618a0
LP
152#ifndef __NR_getrandom
153# if defined __x86_64__
74a550c5 154# define __NR_getrandom 318
568981d2
ZJS
155# elif defined(__i386__)
156# define __NR_getrandom 355
157# elif defined(__arm__) || defined(__aarch64__)
158# define __NR_getrandom 384
159# elif defined(__ia64__)
160# define __NR_getrandom 1339
161# elif defined(__m68k__)
162# define __NR_getrandom 352
163# elif defined(__s390x__)
164# define __NR_getrandom 349
539618a0
LP
165# else
166# warning "__NR_getrandom unknown for your architecture"
167# define __NR_getrandom 0xffffffff
168# endif
169#endif
170
171#if !HAVE_DECL_GETRANDOM
172static inline int getrandom(void *buffer, size_t count, unsigned flags) {
173 return syscall(__NR_getrandom, buffer, count, flags);
174}
175#endif
176
97768fc5
LP
177#ifndef GRND_NONBLOCK
178#define GRND_NONBLOCK 0x0001
179#endif
180
181#ifndef GRND_RANDOM
182#define GRND_RANDOM 0x0002
183#endif
184
4b357e15
MM
185#ifndef BTRFS_IOCTL_MAGIC
186#define BTRFS_IOCTL_MAGIC 0x94
187#endif
188
189#ifndef BTRFS_PATH_NAME_MAX
190#define BTRFS_PATH_NAME_MAX 4087
191#endif
192
193#ifndef BTRFS_DEVICE_PATH_NAME_MAX
194#define BTRFS_DEVICE_PATH_NAME_MAX 1024
195#endif
196
197#ifndef BTRFS_FSID_SIZE
198#define BTRFS_FSID_SIZE 16
199#endif
200
201#ifndef BTRFS_UUID_SIZE
202#define BTRFS_UUID_SIZE 16
203#endif
204
205#ifndef HAVE_LINUX_BTRFS_H
206struct btrfs_ioctl_vol_args {
207 int64_t fd;
208 char name[BTRFS_PATH_NAME_MAX + 1];
209};
210
211struct btrfs_ioctl_dev_info_args {
212 uint64_t devid; /* in/out */
213 uint8_t uuid[BTRFS_UUID_SIZE]; /* in/out */
214 uint64_t bytes_used; /* out */
215 uint64_t total_bytes; /* out */
216 uint64_t unused[379]; /* pad to 4k */
217 char path[BTRFS_DEVICE_PATH_NAME_MAX]; /* out */
218};
219
220struct btrfs_ioctl_fs_info_args {
221 uint64_t max_id; /* out */
222 uint64_t num_devices; /* out */
223 uint8_t fsid[BTRFS_FSID_SIZE]; /* out */
224 uint64_t reserved[124]; /* pad to 1k */
225};
226#endif
227
228#ifndef BTRFS_IOC_DEFRAG
7bed7f0e
ZJS
229#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
230 struct btrfs_ioctl_vol_args)
4b357e15
MM
231#endif
232
233#ifndef BTRFS_IOC_DEV_INFO
234#define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
235 struct btrfs_ioctl_dev_info_args)
236#endif
237
238#ifndef BTRFS_IOC_FS_INFO
239#define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
7bed7f0e
ZJS
240 struct btrfs_ioctl_fs_info_args)
241#endif
242
243#ifndef BTRFS_IOC_DEVICES_READY
244#define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, \
245 struct btrfs_ioctl_vol_args)
4b357e15
MM
246#endif
247
746f8906
LP
248#ifndef BTRFS_SUPER_MAGIC
249#define BTRFS_SUPER_MAGIC 0x9123683E
250#endif
251
94d82985
LP
252#ifndef MS_MOVE
253#define MS_MOVE 8192
254#endif
255
7cb1094a
HH
256#ifndef MS_PRIVATE
257#define MS_PRIVATE (1 << 18)
258#endif
259
a8348796 260#if !HAVE_DECL_GETTID
4d14be09
LP
261static inline pid_t gettid(void) {
262 return (pid_t) syscall(SYS_gettid);
263}
a8348796 264#endif
4d14be09 265
54ecda32
LP
266#ifndef SCM_SECURITY
267#define SCM_SECURITY 0x03
268#endif
269
48ac500b
LP
270#ifndef MS_STRICTATIME
271#define MS_STRICTATIME (1<<24)
272#endif
273
a9621528
AM
274#ifndef MS_REC
275#define MS_REC 16384
276#endif
277
278#ifndef MS_SHARED
279#define MS_SHARED (1<<20)
280#endif
281
8351ceae
LP
282#ifndef PR_SET_NO_NEW_PRIVS
283#define PR_SET_NO_NEW_PRIVS 38
284#endif
d4447f4d
AK
285
286#ifndef PR_SET_CHILD_SUBREAPER
287#define PR_SET_CHILD_SUBREAPER 36
288#endif
a8348796
LP
289
290#ifndef MAX_HANDLE_SZ
291#define MAX_HANDLE_SZ 128
292#endif
293
66330455
LP
294#ifndef __NR_name_to_handle_at
295# if defined(__x86_64__)
848af055 296# define __NR_name_to_handle_at 303
66330455 297# elif defined(__i386__)
848af055 298# define __NR_name_to_handle_at 341
66330455 299# elif defined(__arm__)
f527b6b8 300# define __NR_name_to_handle_at 370
66330455 301# elif defined(__powerpc__)
f527b6b8 302# define __NR_name_to_handle_at 345
66330455
LP
303# else
304# error "__NR_name_to_handle_at is not defined"
f527b6b8 305# endif
a8348796
LP
306#endif
307
9388e99e 308#if !HAVE_DECL_NAME_TO_HANDLE_AT
a8348796
LP
309struct file_handle {
310 unsigned int handle_bytes;
311 int handle_type;
312 unsigned char f_handle[0];
313};
314
315static inline int name_to_handle_at(int fd, const char *name, struct file_handle *handle, int *mnt_id, int flags) {
316 return syscall(__NR_name_to_handle_at, fd, name, handle, mnt_id, flags);
317}
318#endif
4db17f29
ZJS
319
320#ifndef HAVE_SECURE_GETENV
321# ifdef HAVE___SECURE_GETENV
322# define secure_getenv __secure_getenv
323# else
66330455 324# error "neither secure_getenv nor __secure_getenv are available"
4db17f29
ZJS
325# endif
326#endif
85210bff
LP
327
328#ifndef CIFS_MAGIC_NUMBER
65b3903f 329# define CIFS_MAGIC_NUMBER 0xFF534D42
85210bff 330#endif
8742514c
LP
331
332#ifndef TFD_TIMER_CANCEL_ON_SET
65b3903f 333# define TFD_TIMER_CANCEL_ON_SET (1 << 1)
8742514c 334#endif
f7db7a69
SL
335
336#ifndef SO_REUSEPORT
65b3903f 337# define SO_REUSEPORT 15
f7db7a69 338#endif
118ecf32
DH
339
340#ifndef EVIOCREVOKE
65b3903f 341# define EVIOCREVOKE _IOW('E', 0x91, int)
118ecf32
DH
342#endif
343
344#ifndef DRM_IOCTL_SET_MASTER
65b3903f 345# define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
118ecf32
DH
346#endif
347
348#ifndef DRM_IOCTL_DROP_MASTER
65b3903f
ZJS
349# define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
350#endif
351
c09918f9
LP
352#if defined(__i386__) || defined(__x86_64__)
353
354/* The precise definition of __O_TMPFILE is arch specific, so let's
355 * just define this on x86 where we know the value. */
356
357#ifndef __O_TMPFILE
358#define __O_TMPFILE 020000000
359#endif
360
361/* a horrid kludge trying to make sure that this will fail on old kernels */
362#ifndef O_TMPFILE
363#define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
364#endif
365
366#endif
3b794314
HS
367
368#ifndef __NR_setns
369# if defined(__x86_64__)
370# define __NR_setns 308
371# elif defined(__i386__)
372# define __NR_setns 346
373# else
374# error "__NR_setns is not defined"
375# endif
376#endif
377
378#if !HAVE_DECL_SETNS
379static inline int setns(int fd, int nstype) {
380 return syscall(__NR_setns, fd, nstype);
381}
382#endif
5f381b35
LP
383
384#if !HAVE_DECL_LO_FLAGS_PARTSCAN
385#define LO_FLAGS_PARTSCAN 8
386#endif
a853c45d
LP
387
388#ifndef LOOP_CTL_REMOVE
389#define LOOP_CTL_REMOVE 0x4C81
390#endif
391
392#ifndef LOOP_CTL_GET_FREE
393#define LOOP_CTL_GET_FREE 0x4C82
394#endif
0830ba61 395
75616a13
ZJS
396#if !HAVE_DECL_IFLA_MACVLAN_FLAGS
397#define IFLA_MACVLAN_UNSPEC 0
398#define IFLA_MACVLAN_MODE 1
399#define IFLA_MACVLAN_FLAGS 2
400#define __IFLA_MACVLAN_MAX 3
401
402#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
403#endif
404
6589d0db
JAS
405#if !HAVE_DECL_IFLA_VTI_REMOTE
406#define IFLA_VTI_UNSPEC 0
407#define IFLA_VTI_LINK 1
408#define IFLA_VTI_IKEY 2
409#define IFLA_VTI_OKEY 3
410#define IFLA_VTI_LOCAL 4
411#define IFLA_VTI_REMOTE 5
412#define __IFLA_VTI_MAX 6
413
414#define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
415#endif
416
81577dc2
ZJS
417#if !HAVE_DECL_IFLA_PHYS_PORT_ID
418#undef IFLA_PROMISCUITY
419#define IFLA_PROMISCUITY 30
420#define IFLA_NUM_TX_QUEUES 31
421#define IFLA_NUM_RX_QUEUES 32
422#define IFLA_CARRIER 33
423#define IFLA_PHYS_PORT_ID 34
424#define __IFLA_MAX 35
425
426#define IFLA_MAX (__IFLA_MAX - 1)
427#endif
428
429#if !HAVE_DECL_IFLA_BOND_AD_INFO
430#define IFLA_BOND_UNSPEC 0
431#define IFLA_BOND_MODE 1
432#define IFLA_BOND_ACTIVE_SLAVE 2
433#define IFLA_BOND_MIIMON 3
434#define IFLA_BOND_UPDELAY 4
435#define IFLA_BOND_DOWNDELAY 5
436#define IFLA_BOND_USE_CARRIER 6
437#define IFLA_BOND_ARP_INTERVAL 7
438#define IFLA_BOND_ARP_IP_TARGET 8
439#define IFLA_BOND_ARP_VALIDATE 9
440#define IFLA_BOND_ARP_ALL_TARGETS 10
441#define IFLA_BOND_PRIMARY 11
442#define IFLA_BOND_PRIMARY_RESELECT 12
443#define IFLA_BOND_FAIL_OVER_MAC 13
444#define IFLA_BOND_XMIT_HASH_POLICY 14
445#define IFLA_BOND_RESEND_IGMP 15
446#define IFLA_BOND_NUM_PEER_NOTIF 16
447#define IFLA_BOND_ALL_SLAVES_ACTIVE 17
448#define IFLA_BOND_MIN_LINKS 18
449#define IFLA_BOND_LP_INTERVAL 19
450#define IFLA_BOND_PACKETS_PER_SLAVE 20
451#define IFLA_BOND_AD_LACP_RATE 21
452#define IFLA_BOND_AD_SELECT 22
453#define IFLA_BOND_AD_INFO 23
454#define __IFLA_BOND_MAX 24
0830ba61 455
79306206 456#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
0830ba61 457#endif
81577dc2
ZJS
458
459#if !HAVE_DECL_IFLA_VLAN_PROTOCOL
460#define IFLA_VLAN_UNSPEC 0
461#define IFLA_VLAN_ID 1
462#define IFLA_VLAN_FLAGS 2
463#define IFLA_VLAN_EGRESS_QOS 3
464#define IFLA_VLAN_INGRESS_QOS 4
465#define IFLA_VLAN_PROTOCOL 5
466#define __IFLA_VLAN_MAX 6
467
468#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
469#endif
470
471#if !HAVE_DECL_IFLA_VXLAN_LOCAL6
472#define IFLA_VXLAN_UNSPEC 0
473#define IFLA_VXLAN_ID 1
474#define IFLA_VXLAN_GROUP 2
475#define IFLA_VXLAN_LINK 3
476#define IFLA_VXLAN_LOCAL 4
477#define IFLA_VXLAN_TTL 5
478#define IFLA_VXLAN_TOS 6
479#define IFLA_VXLAN_LEARNING 7
480#define IFLA_VXLAN_AGEING 8
481#define IFLA_VXLAN_LIMIT 9
482#define IFLA_VXLAN_PORT_RANGE 10
483#define IFLA_VXLAN_PROXY 11
484#define IFLA_VXLAN_RSC 12
485#define IFLA_VXLAN_L2MISS 13
486#define IFLA_VXLAN_L3MISS 14
487#define IFLA_VXLAN_PORT 15
488#define IFLA_VXLAN_GROUP6 16
489#define IFLA_VXLAN_LOCAL6 17
490#define __IFLA_VXLAN_MAX 18
491
492#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
493#endif
494
495#if !HAVE_DECL_IFLA_IPTUN_6RD_RELAY_PREFIXLEN
496#define IFLA_IPTUN_UNSPEC 0
497#define IFLA_IPTUN_LINK 1
498#define IFLA_IPTUN_LOCAL 2
499#define IFLA_IPTUN_REMOTE 3
500#define IFLA_IPTUN_TTL 4
501#define IFLA_IPTUN_TOS 5
502#define IFLA_IPTUN_ENCAP_LIMIT 6
503#define IFLA_IPTUN_FLOWINFO 7
504#define IFLA_IPTUN_FLAGS 8
505#define IFLA_IPTUN_PROTO 9
506#define IFLA_IPTUN_PMTUDISC 10
507#define IFLA_IPTUN_6RD_PREFIX 11
508#define IFLA_IPTUN_6RD_RELAY_PREFIX 12
509#define IFLA_IPTUN_6RD_PREFIXLEN 13
510#define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
511#define __IFLA_IPTUN_MAX 15
512
513#define IFLA_IPTUN_MAX (__IFLA_IPTUN_MAX - 1)
514#endif
515
516#if !HAVE_DECL_IFLA_BRIDGE_VLAN_INFO
517#define IFLA_BRIDGE_FLAGS 0
518#define IFLA_BRIDGE_MODE 1
519#define IFLA_BRIDGE_VLAN_INFO 2
520#define __IFLA_BRIDGE_MAX 3
521
522#define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
523#endif
623a4c97 524
8ecec322
ZJS
525#if !HAVE_DECL_IFLA_BRPORT_UNICAST_FLOOD
526#define IFLA_BRPORT_UNSPEC 0
527#define IFLA_BRPORT_STATE 1
528#define IFLA_BRPORT_PRIORITY 2
529#define IFLA_BRPORT_COST 3
530#define IFLA_BRPORT_MODE 4
531#define IFLA_BRPORT_GUARD 5
532#define IFLA_BRPORT_PROTECT 6
533#define IFLA_BRPORT_FAST_LEAVE 7
534#define IFLA_BRPORT_LEARNING 8
535#define IFLA_BRPORT_UNICAST_FLOOD 9
536#define __IFLA_BRPORT_MAX 10
537
538#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
539#endif
540
623a4c97
LP
541#ifndef IPV6_UNICAST_IF
542#define IPV6_UNICAST_IF 76
543#endif
ec2c5e43 544
04d180c8
TG
545#ifndef IFF_MULTI_QUEUE
546#define IFF_MULTI_QUEUE 0x100
547#endif
548
ec2c5e43
LP
549#ifndef IFF_LOWER_UP
550#define IFF_LOWER_UP 0x10000
551#endif
552
553#ifndef IFF_DORMANT
554#define IFF_DORMANT 0x20000
555#endif
91988149
LP
556
557#ifndef BOND_XMIT_POLICY_ENCAP23
558#define BOND_XMIT_POLICY_ENCAP23 3
559#endif
560
561#ifndef BOND_XMIT_POLICY_ENCAP34
562#define BOND_XMIT_POLICY_ENCAP34 4
563#endif
04b67d49
TG
564
565#ifndef NET_ADDR_RANDOM
566# define NET_ADDR_RANDOM 1
567#endif
568
1cb636d9
CW
569#ifndef NET_NAME_UNKNOWN
570# define NET_NAME_UNKNOWN 0
571#endif
572
04b67d49
TG
573#ifndef NET_NAME_ENUM
574# define NET_NAME_ENUM 1
575#endif
576
577#ifndef NET_NAME_PREDICTABLE
578# define NET_NAME_PREDICTABLE 2
579#endif
580
581#ifndef NET_NAME_USER
582# define NET_NAME_USER 3
583#endif
584
585#ifndef NET_NAME_RENAMED
586# define NET_NAME_RENAMED 4
587#endif
7965435e
MO
588
589#ifndef BPF_XOR
590# define BPF_XOR 0xa0
591#endif
a5f03596
LP
592
593/* Note that LOOPBACK_IFINDEX is currently not exported by the
594 * kernel/glibc, but hardcoded internally by the kernel. However, as
595 * it is exported to userspace indirectly via rtnetlink and the
596 * ioctls, and made use of widely we define it here too, in a way that
597 * is compatible with the kernel's internal definition. */
598#ifndef LOOPBACK_IFINDEX
599#define LOOPBACK_IFINDEX 1
600#endif
875c2e22
LP
601
602#ifndef MAX_AUDIT_MESSAGE_LENGTH
603#define MAX_AUDIT_MESSAGE_LENGTH 8970
604#endif
605
606#ifndef AUDIT_NLGRP_MAX
607#define AUDIT_NLGRP_READLOG 1
608#endif