]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/missing.h
build-sys: fail if python support requested but not found
[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>
0830ba61 36#include <linux/if_link.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
16c42ce1
KS
67#ifndef IP_FREEBIND
68#define IP_FREEBIND 15
69#endif
70
dd6c17b1
LP
71#ifndef OOM_SCORE_ADJ_MIN
72#define OOM_SCORE_ADJ_MIN (-1000)
73#endif
74
75#ifndef OOM_SCORE_ADJ_MAX
76#define OOM_SCORE_ADJ_MAX 1000
77#endif
15ae422b 78
4927fcae 79#ifndef AUDIT_SERVICE_START
dd6c17b1 80#define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
4927fcae
LP
81#endif
82
83#ifndef AUDIT_SERVICE_STOP
dd6c17b1 84#define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
4927fcae
LP
85#endif
86
6ea832a2
LP
87#ifndef TIOCVHANGUP
88#define TIOCVHANGUP 0x5437
89#endif
90
b90865ba
KS
91#ifndef IP_TRANSPARENT
92#define IP_TRANSPARENT 19
93#endif
94
d5eff740
TG
95#ifndef IFLA_CARRIER
96 #define IFLA_CARRIER 33
97 #ifndef IFLA_NUM_RX_QUEUES
98 #define IFLA_NUM_RX_QUEUES 32
99 #ifndef IFLA_NUM_TX_QUEUES
100 #define IFLA_NUM_TX_QUEUES 31
101 #ifndef IFLA_PROMISCUITY
102 #define IFLA_PROMISCUITY 30
103 #endif
104 #endif
105 #endif
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
22be093f 118#ifdef __x86_64__
d59d0a2b 119# ifndef __NR_fanotify_init
120# define __NR_fanotify_init 300
121# endif
122# ifndef __NR_fanotify_mark
123# define __NR_fanotify_mark 301
124# endif
125#elif defined _MIPS_SIM
126# if _MIPS_SIM == _MIPS_SIM_ABI32
127# ifndef __NR_fanotify_init
128# define __NR_fanotify_init 4336
129# endif
130# ifndef __NR_fanotify_mark
131# define __NR_fanotify_mark 4337
132# endif
133# elif _MIPS_SIM == _MIPS_SIM_NABI32
134# ifndef __NR_fanotify_init
135# define __NR_fanotify_init 6300
136# endif
137# ifndef __NR_fanotify_mark
138# define __NR_fanotify_mark 6301
139# endif
140# elif _MIPS_SIM == _MIPS_SIM_ABI64
141# ifndef __NR_fanotify_init
142# define __NR_fanotify_init 5295
143# endif
144# ifndef __NR_fanotify_mark
145# define __NR_fanotify_mark 5296
146# endif
147# endif
22be093f 148#else
d59d0a2b 149# ifndef __NR_fanotify_init
150# define __NR_fanotify_init 338
151# endif
152# ifndef __NR_fanotify_mark
153# define __NR_fanotify_mark 339
154# endif
22be093f
LP
155#endif
156
a8348796 157#ifndef HAVE_FANOTIFY_INIT
22be093f 158static inline int fanotify_init(unsigned int flags, unsigned int event_f_flags) {
05115020 159 return syscall(__NR_fanotify_init, flags, event_f_flags);
22be093f 160}
a8348796 161#endif
22be093f 162
a8348796 163#ifndef HAVE_FANOTIFY_MARK
05115020 164static inline int fanotify_mark(int fanotify_fd, unsigned int flags, uint64_t mask,
22be093f 165 int dfd, const char *pathname) {
28f30cf2 166#if defined _MIPS_SIM && _MIPS_SIM == _MIPS_SIM_ABI32 || defined __powerpc__ && !defined __powerpc64__ \
e9c1ea9d 167 || defined __arm__ && !defined __aarch64__
373c23b2 168 union {
169 uint64_t _64;
170 uint32_t _32[2];
171 } _mask;
172 _mask._64 = mask;
173
174 return syscall(__NR_fanotify_mark, fanotify_fd, flags,
175 _mask._32[0], _mask._32[1], dfd, pathname);
176#else
05115020 177 return syscall(__NR_fanotify_mark, fanotify_fd, flags, mask, dfd, pathname);
373c23b2 178#endif
22be093f 179}
a8348796 180#endif
22be093f 181
4b357e15
MM
182#ifndef BTRFS_IOCTL_MAGIC
183#define BTRFS_IOCTL_MAGIC 0x94
184#endif
185
186#ifndef BTRFS_PATH_NAME_MAX
187#define BTRFS_PATH_NAME_MAX 4087
188#endif
189
190#ifndef BTRFS_DEVICE_PATH_NAME_MAX
191#define BTRFS_DEVICE_PATH_NAME_MAX 1024
192#endif
193
194#ifndef BTRFS_FSID_SIZE
195#define BTRFS_FSID_SIZE 16
196#endif
197
198#ifndef BTRFS_UUID_SIZE
199#define BTRFS_UUID_SIZE 16
200#endif
201
202#ifndef HAVE_LINUX_BTRFS_H
203struct btrfs_ioctl_vol_args {
204 int64_t fd;
205 char name[BTRFS_PATH_NAME_MAX + 1];
206};
207
208struct btrfs_ioctl_dev_info_args {
209 uint64_t devid; /* in/out */
210 uint8_t uuid[BTRFS_UUID_SIZE]; /* in/out */
211 uint64_t bytes_used; /* out */
212 uint64_t total_bytes; /* out */
213 uint64_t unused[379]; /* pad to 4k */
214 char path[BTRFS_DEVICE_PATH_NAME_MAX]; /* out */
215};
216
217struct btrfs_ioctl_fs_info_args {
218 uint64_t max_id; /* out */
219 uint64_t num_devices; /* out */
220 uint8_t fsid[BTRFS_FSID_SIZE]; /* out */
221 uint64_t reserved[124]; /* pad to 1k */
222};
223#endif
224
225#ifndef BTRFS_IOC_DEFRAG
226#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, struct btrfs_ioctl_vol_args)
227#endif
228
229#ifndef BTRFS_IOC_DEV_INFO
230#define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
231 struct btrfs_ioctl_dev_info_args)
232#endif
233
234#ifndef BTRFS_IOC_FS_INFO
235#define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
236 struct btrfs_ioctl_fs_info_args)
237#endif
238
746f8906
LP
239#ifndef BTRFS_SUPER_MAGIC
240#define BTRFS_SUPER_MAGIC 0x9123683E
241#endif
242
94d82985
LP
243#ifndef MS_MOVE
244#define MS_MOVE 8192
245#endif
246
7cb1094a
HH
247#ifndef MS_PRIVATE
248#define MS_PRIVATE (1 << 18)
249#endif
250
a8348796 251#if !HAVE_DECL_GETTID
4d14be09
LP
252static inline pid_t gettid(void) {
253 return (pid_t) syscall(SYS_gettid);
254}
a8348796 255#endif
4d14be09 256
54ecda32
LP
257#ifndef SCM_SECURITY
258#define SCM_SECURITY 0x03
259#endif
260
48ac500b
LP
261#ifndef MS_STRICTATIME
262#define MS_STRICTATIME (1<<24)
263#endif
264
a9621528
AM
265#ifndef MS_REC
266#define MS_REC 16384
267#endif
268
269#ifndef MS_SHARED
270#define MS_SHARED (1<<20)
271#endif
272
8351ceae
LP
273#ifndef PR_SET_NO_NEW_PRIVS
274#define PR_SET_NO_NEW_PRIVS 38
275#endif
d4447f4d
AK
276
277#ifndef PR_SET_CHILD_SUBREAPER
278#define PR_SET_CHILD_SUBREAPER 36
279#endif
a8348796
LP
280
281#ifndef MAX_HANDLE_SZ
282#define MAX_HANDLE_SZ 128
283#endif
284
66330455
LP
285#ifndef __NR_name_to_handle_at
286# if defined(__x86_64__)
848af055 287# define __NR_name_to_handle_at 303
66330455 288# elif defined(__i386__)
848af055 289# define __NR_name_to_handle_at 341
66330455 290# elif defined(__arm__)
f527b6b8 291# define __NR_name_to_handle_at 370
66330455 292# elif defined(__powerpc__)
f527b6b8 293# define __NR_name_to_handle_at 345
66330455
LP
294# else
295# error "__NR_name_to_handle_at is not defined"
f527b6b8 296# endif
a8348796
LP
297#endif
298
9388e99e 299#if !HAVE_DECL_NAME_TO_HANDLE_AT
a8348796
LP
300struct file_handle {
301 unsigned int handle_bytes;
302 int handle_type;
303 unsigned char f_handle[0];
304};
305
306static inline int name_to_handle_at(int fd, const char *name, struct file_handle *handle, int *mnt_id, int flags) {
307 return syscall(__NR_name_to_handle_at, fd, name, handle, mnt_id, flags);
308}
309#endif
4db17f29
ZJS
310
311#ifndef HAVE_SECURE_GETENV
312# ifdef HAVE___SECURE_GETENV
313# define secure_getenv __secure_getenv
314# else
66330455 315# error "neither secure_getenv nor __secure_getenv are available"
4db17f29
ZJS
316# endif
317#endif
85210bff
LP
318
319#ifndef CIFS_MAGIC_NUMBER
65b3903f 320# define CIFS_MAGIC_NUMBER 0xFF534D42
85210bff 321#endif
8742514c
LP
322
323#ifndef TFD_TIMER_CANCEL_ON_SET
65b3903f 324# define TFD_TIMER_CANCEL_ON_SET (1 << 1)
8742514c 325#endif
f7db7a69
SL
326
327#ifndef SO_REUSEPORT
65b3903f 328# define SO_REUSEPORT 15
f7db7a69 329#endif
118ecf32
DH
330
331#ifndef EVIOCREVOKE
65b3903f 332# define EVIOCREVOKE _IOW('E', 0x91, int)
118ecf32
DH
333#endif
334
335#ifndef DRM_IOCTL_SET_MASTER
65b3903f 336# define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
118ecf32
DH
337#endif
338
339#ifndef DRM_IOCTL_DROP_MASTER
65b3903f
ZJS
340# define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
341#endif
342
c09918f9
LP
343#if defined(__i386__) || defined(__x86_64__)
344
345/* The precise definition of __O_TMPFILE is arch specific, so let's
346 * just define this on x86 where we know the value. */
347
348#ifndef __O_TMPFILE
349#define __O_TMPFILE 020000000
350#endif
351
352/* a horrid kludge trying to make sure that this will fail on old kernels */
353#ifndef O_TMPFILE
354#define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
355#endif
356
357#endif
3b794314
HS
358
359#ifndef __NR_setns
360# if defined(__x86_64__)
361# define __NR_setns 308
362# elif defined(__i386__)
363# define __NR_setns 346
364# else
365# error "__NR_setns is not defined"
366# endif
367#endif
368
369#if !HAVE_DECL_SETNS
370static inline int setns(int fd, int nstype) {
371 return syscall(__NR_setns, fd, nstype);
372}
373#endif
5f381b35
LP
374
375#if !HAVE_DECL_LO_FLAGS_PARTSCAN
376#define LO_FLAGS_PARTSCAN 8
377#endif
a853c45d
LP
378
379#ifndef LOOP_CTL_REMOVE
380#define LOOP_CTL_REMOVE 0x4C81
381#endif
382
383#ifndef LOOP_CTL_GET_FREE
384#define LOOP_CTL_GET_FREE 0x4C82
385#endif
0830ba61
ZJS
386
387#ifndef IFLA_BOND_MAX
388enum {
389 IFLA_BOND_UNSPEC,
390 IFLA_BOND_MODE,
391 IFLA_BOND_ACTIVE_SLAVE,
392 IFLA_BOND_MIIMON,
393 IFLA_BOND_UPDELAY,
394 IFLA_BOND_DOWNDELAY,
395 IFLA_BOND_USE_CARRIER,
396 IFLA_BOND_ARP_INTERVAL,
397 IFLA_BOND_ARP_IP_TARGET,
398 IFLA_BOND_ARP_VALIDATE,
399 IFLA_BOND_ARP_ALL_TARGETS,
400 IFLA_BOND_PRIMARY,
401 IFLA_BOND_PRIMARY_RESELECT,
402 IFLA_BOND_FAIL_OVER_MAC,
403 IFLA_BOND_XMIT_HASH_POLICY,
404 IFLA_BOND_RESEND_IGMP,
405 IFLA_BOND_NUM_PEER_NOTIF,
406 IFLA_BOND_ALL_SLAVES_ACTIVE,
407 IFLA_BOND_MIN_LINKS,
408 IFLA_BOND_LP_INTERVAL,
409 IFLA_BOND_PACKETS_PER_SLAVE,
410 IFLA_BOND_AD_LACP_RATE,
411 IFLA_BOND_AD_SELECT,
412 IFLA_BOND_AD_INFO,
413 __IFLA_BOND_MAX,
414};
415
416#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
417#endif