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