]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/shared/missing.h
man: document ARM root partition types
[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>
dd6c17b1
LP
35
36#ifdef HAVE_AUDIT
37#include <libaudit.h>
38#endif
b9f880f4 39
ad780f19
LP
40#include "macro.h"
41
d59d0a2b 42#ifdef ARCH_MIPS
43#include <asm/sgidefs.h>
44#endif
45
b9f880f4
LP
46#ifndef RLIMIT_RTTIME
47#define RLIMIT_RTTIME 15
48#endif
49
517d56b1
LP
50/* If RLIMIT_RTTIME is not defined, then we cannot use RLIMIT_NLIMITS as is */
51#define _RLIMIT_MAX (RLIMIT_RTTIME+1 > RLIMIT_NLIMITS ? RLIMIT_RTTIME+1 : RLIMIT_NLIMITS)
52
4fd5948e
LP
53#ifndef F_LINUX_SPECIFIC_BASE
54#define F_LINUX_SPECIFIC_BASE 1024
55#endif
56
57#ifndef F_SETPIPE_SZ
58#define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7)
59#endif
60
61#ifndef F_GETPIPE_SZ
62#define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
63#endif
64
16c42ce1
KS
65#ifndef IP_FREEBIND
66#define IP_FREEBIND 15
67#endif
68
dd6c17b1
LP
69#ifndef OOM_SCORE_ADJ_MIN
70#define OOM_SCORE_ADJ_MIN (-1000)
71#endif
72
73#ifndef OOM_SCORE_ADJ_MAX
74#define OOM_SCORE_ADJ_MAX 1000
75#endif
15ae422b 76
4927fcae 77#ifndef AUDIT_SERVICE_START
dd6c17b1 78#define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
4927fcae
LP
79#endif
80
81#ifndef AUDIT_SERVICE_STOP
dd6c17b1 82#define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
4927fcae
LP
83#endif
84
6ea832a2
LP
85#ifndef TIOCVHANGUP
86#define TIOCVHANGUP 0x5437
87#endif
88
b90865ba
KS
89#ifndef IP_TRANSPARENT
90#define IP_TRANSPARENT 19
91#endif
92
d5eff740
TG
93#ifndef IFLA_CARRIER
94 #define IFLA_CARRIER 33
95 #ifndef IFLA_NUM_RX_QUEUES
96 #define IFLA_NUM_RX_QUEUES 32
97 #ifndef IFLA_NUM_TX_QUEUES
98 #define IFLA_NUM_TX_QUEUES 31
99 #ifndef IFLA_PROMISCUITY
100 #define IFLA_PROMISCUITY 30
101 #endif
102 #endif
103 #endif
104#endif
105
a8348796 106#if !HAVE_DECL_PIVOT_ROOT
dd6c17b1
LP
107static inline int pivot_root(const char *new_root, const char *put_old) {
108 return syscall(SYS_pivot_root, new_root, put_old);
109}
a8348796 110#endif
dd6c17b1 111
22be093f 112#ifdef __x86_64__
d59d0a2b 113# ifndef __NR_fanotify_init
114# define __NR_fanotify_init 300
115# endif
116# ifndef __NR_fanotify_mark
117# define __NR_fanotify_mark 301
118# endif
119#elif defined _MIPS_SIM
120# if _MIPS_SIM == _MIPS_SIM_ABI32
121# ifndef __NR_fanotify_init
122# define __NR_fanotify_init 4336
123# endif
124# ifndef __NR_fanotify_mark
125# define __NR_fanotify_mark 4337
126# endif
127# elif _MIPS_SIM == _MIPS_SIM_NABI32
128# ifndef __NR_fanotify_init
129# define __NR_fanotify_init 6300
130# endif
131# ifndef __NR_fanotify_mark
132# define __NR_fanotify_mark 6301
133# endif
134# elif _MIPS_SIM == _MIPS_SIM_ABI64
135# ifndef __NR_fanotify_init
136# define __NR_fanotify_init 5295
137# endif
138# ifndef __NR_fanotify_mark
139# define __NR_fanotify_mark 5296
140# endif
141# endif
22be093f 142#else
d59d0a2b 143# ifndef __NR_fanotify_init
144# define __NR_fanotify_init 338
145# endif
146# ifndef __NR_fanotify_mark
147# define __NR_fanotify_mark 339
148# endif
22be093f
LP
149#endif
150
a8348796 151#ifndef HAVE_FANOTIFY_INIT
22be093f 152static inline int fanotify_init(unsigned int flags, unsigned int event_f_flags) {
05115020 153 return syscall(__NR_fanotify_init, flags, event_f_flags);
22be093f 154}
a8348796 155#endif
22be093f 156
a8348796 157#ifndef HAVE_FANOTIFY_MARK
05115020 158static inline int fanotify_mark(int fanotify_fd, unsigned int flags, uint64_t mask,
22be093f 159 int dfd, const char *pathname) {
28f30cf2 160#if defined _MIPS_SIM && _MIPS_SIM == _MIPS_SIM_ABI32 || defined __powerpc__ && !defined __powerpc64__ \
e9c1ea9d 161 || defined __arm__ && !defined __aarch64__
373c23b2 162 union {
163 uint64_t _64;
164 uint32_t _32[2];
165 } _mask;
166 _mask._64 = mask;
167
168 return syscall(__NR_fanotify_mark, fanotify_fd, flags,
169 _mask._32[0], _mask._32[1], dfd, pathname);
170#else
05115020 171 return syscall(__NR_fanotify_mark, fanotify_fd, flags, mask, dfd, pathname);
373c23b2 172#endif
22be093f 173}
a8348796 174#endif
22be093f 175
4b357e15
MM
176#ifndef BTRFS_IOCTL_MAGIC
177#define BTRFS_IOCTL_MAGIC 0x94
178#endif
179
180#ifndef BTRFS_PATH_NAME_MAX
181#define BTRFS_PATH_NAME_MAX 4087
182#endif
183
184#ifndef BTRFS_DEVICE_PATH_NAME_MAX
185#define BTRFS_DEVICE_PATH_NAME_MAX 1024
186#endif
187
188#ifndef BTRFS_FSID_SIZE
189#define BTRFS_FSID_SIZE 16
190#endif
191
192#ifndef BTRFS_UUID_SIZE
193#define BTRFS_UUID_SIZE 16
194#endif
195
196#ifndef HAVE_LINUX_BTRFS_H
197struct btrfs_ioctl_vol_args {
198 int64_t fd;
199 char name[BTRFS_PATH_NAME_MAX + 1];
200};
201
202struct btrfs_ioctl_dev_info_args {
203 uint64_t devid; /* in/out */
204 uint8_t uuid[BTRFS_UUID_SIZE]; /* in/out */
205 uint64_t bytes_used; /* out */
206 uint64_t total_bytes; /* out */
207 uint64_t unused[379]; /* pad to 4k */
208 char path[BTRFS_DEVICE_PATH_NAME_MAX]; /* out */
209};
210
211struct btrfs_ioctl_fs_info_args {
212 uint64_t max_id; /* out */
213 uint64_t num_devices; /* out */
214 uint8_t fsid[BTRFS_FSID_SIZE]; /* out */
215 uint64_t reserved[124]; /* pad to 1k */
216};
217#endif
218
219#ifndef BTRFS_IOC_DEFRAG
220#define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, struct btrfs_ioctl_vol_args)
221#endif
222
223#ifndef BTRFS_IOC_DEV_INFO
224#define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
225 struct btrfs_ioctl_dev_info_args)
226#endif
227
228#ifndef BTRFS_IOC_FS_INFO
229#define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
230 struct btrfs_ioctl_fs_info_args)
231#endif
232
746f8906
LP
233#ifndef BTRFS_SUPER_MAGIC
234#define BTRFS_SUPER_MAGIC 0x9123683E
235#endif
236
94d82985
LP
237#ifndef MS_MOVE
238#define MS_MOVE 8192
239#endif
240
7cb1094a
HH
241#ifndef MS_PRIVATE
242#define MS_PRIVATE (1 << 18)
243#endif
244
a8348796 245#if !HAVE_DECL_GETTID
4d14be09
LP
246static inline pid_t gettid(void) {
247 return (pid_t) syscall(SYS_gettid);
248}
a8348796 249#endif
4d14be09 250
54ecda32
LP
251#ifndef SCM_SECURITY
252#define SCM_SECURITY 0x03
253#endif
254
48ac500b
LP
255#ifndef MS_STRICTATIME
256#define MS_STRICTATIME (1<<24)
257#endif
258
a9621528
AM
259#ifndef MS_REC
260#define MS_REC 16384
261#endif
262
263#ifndef MS_SHARED
264#define MS_SHARED (1<<20)
265#endif
266
8351ceae
LP
267#ifndef PR_SET_NO_NEW_PRIVS
268#define PR_SET_NO_NEW_PRIVS 38
269#endif
d4447f4d
AK
270
271#ifndef PR_SET_CHILD_SUBREAPER
272#define PR_SET_CHILD_SUBREAPER 36
273#endif
a8348796
LP
274
275#ifndef MAX_HANDLE_SZ
276#define MAX_HANDLE_SZ 128
277#endif
278
66330455
LP
279#ifndef __NR_name_to_handle_at
280# if defined(__x86_64__)
848af055 281# define __NR_name_to_handle_at 303
66330455 282# elif defined(__i386__)
848af055 283# define __NR_name_to_handle_at 341
66330455 284# elif defined(__arm__)
f527b6b8 285# define __NR_name_to_handle_at 370
66330455 286# elif defined(__powerpc__)
f527b6b8 287# define __NR_name_to_handle_at 345
66330455
LP
288# else
289# error "__NR_name_to_handle_at is not defined"
f527b6b8 290# endif
a8348796
LP
291#endif
292
9388e99e 293#if !HAVE_DECL_NAME_TO_HANDLE_AT
a8348796
LP
294struct file_handle {
295 unsigned int handle_bytes;
296 int handle_type;
297 unsigned char f_handle[0];
298};
299
300static inline int name_to_handle_at(int fd, const char *name, struct file_handle *handle, int *mnt_id, int flags) {
301 return syscall(__NR_name_to_handle_at, fd, name, handle, mnt_id, flags);
302}
303#endif
4db17f29
ZJS
304
305#ifndef HAVE_SECURE_GETENV
306# ifdef HAVE___SECURE_GETENV
307# define secure_getenv __secure_getenv
308# else
66330455 309# error "neither secure_getenv nor __secure_getenv are available"
4db17f29
ZJS
310# endif
311#endif
85210bff
LP
312
313#ifndef CIFS_MAGIC_NUMBER
65b3903f 314# define CIFS_MAGIC_NUMBER 0xFF534D42
85210bff 315#endif
8742514c
LP
316
317#ifndef TFD_TIMER_CANCEL_ON_SET
65b3903f 318# define TFD_TIMER_CANCEL_ON_SET (1 << 1)
8742514c 319#endif
f7db7a69
SL
320
321#ifndef SO_REUSEPORT
65b3903f 322# define SO_REUSEPORT 15
f7db7a69 323#endif
118ecf32
DH
324
325#ifndef EVIOCREVOKE
65b3903f 326# define EVIOCREVOKE _IOW('E', 0x91, int)
118ecf32
DH
327#endif
328
329#ifndef DRM_IOCTL_SET_MASTER
65b3903f 330# define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
118ecf32
DH
331#endif
332
333#ifndef DRM_IOCTL_DROP_MASTER
65b3903f
ZJS
334# define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
335#endif
336
c09918f9
LP
337#if defined(__i386__) || defined(__x86_64__)
338
339/* The precise definition of __O_TMPFILE is arch specific, so let's
340 * just define this on x86 where we know the value. */
341
342#ifndef __O_TMPFILE
343#define __O_TMPFILE 020000000
344#endif
345
346/* a horrid kludge trying to make sure that this will fail on old kernels */
347#ifndef O_TMPFILE
348#define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
349#endif
350
351#endif
3b794314
HS
352
353#ifndef __NR_setns
354# if defined(__x86_64__)
355# define __NR_setns 308
356# elif defined(__i386__)
357# define __NR_setns 346
358# else
359# error "__NR_setns is not defined"
360# endif
361#endif
362
363#if !HAVE_DECL_SETNS
364static inline int setns(int fd, int nstype) {
365 return syscall(__NR_setns, fd, nstype);
366}
367#endif
5f381b35
LP
368
369#if !HAVE_DECL_LO_FLAGS_PARTSCAN
370#define LO_FLAGS_PARTSCAN 8
371#endif