chiark / gitweb /
gpt-auto-generator: print debug messages when we ignore a block device
[elogind.git] / src / shared / missing.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
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
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
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
18   Lesser General Public License for more details.
19
20   You should have received a copy of the GNU Lesser General Public License
21   along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 /* Missing glibc definitions to access certain kernel APIs */
25
26 #include <sys/resource.h>
27 #include <sys/syscall.h>
28 #include <fcntl.h>
29 #include <stdlib.h>
30 #include <unistd.h>
31 #include <errno.h>
32 #include <linux/oom.h>
33 #include <linux/input.h>
34 #include <linux/if_link.h>
35
36 #ifdef HAVE_AUDIT
37 #include <libaudit.h>
38 #endif
39
40 #include "macro.h"
41
42 #ifdef ARCH_MIPS
43 #include <asm/sgidefs.h>
44 #endif
45
46 #ifndef RLIMIT_RTTIME
47 #define RLIMIT_RTTIME 15
48 #endif
49
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
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
65 #ifndef IP_FREEBIND
66 #define IP_FREEBIND 15
67 #endif
68
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
76
77 #ifndef AUDIT_SERVICE_START
78 #define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
79 #endif
80
81 #ifndef AUDIT_SERVICE_STOP
82 #define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
83 #endif
84
85 #ifndef TIOCVHANGUP
86 #define TIOCVHANGUP 0x5437
87 #endif
88
89 #ifndef IP_TRANSPARENT
90 #define IP_TRANSPARENT 19
91 #endif
92
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
106 #if !HAVE_DECL_PIVOT_ROOT
107 static inline int pivot_root(const char *new_root, const char *put_old) {
108         return syscall(SYS_pivot_root, new_root, put_old);
109 }
110 #endif
111
112 #ifdef __x86_64__
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
142 #else
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
149 #endif
150
151 #ifndef HAVE_FANOTIFY_INIT
152 static inline int fanotify_init(unsigned int flags, unsigned int event_f_flags) {
153         return syscall(__NR_fanotify_init, flags, event_f_flags);
154 }
155 #endif
156
157 #ifndef HAVE_FANOTIFY_MARK
158 static inline int fanotify_mark(int fanotify_fd, unsigned int flags, uint64_t mask,
159                                 int dfd, const char *pathname) {
160 #if defined _MIPS_SIM && _MIPS_SIM == _MIPS_SIM_ABI32 || defined __powerpc__ && !defined __powerpc64__ \
161     || defined __arm__ && !defined __aarch64__
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
171         return syscall(__NR_fanotify_mark, fanotify_fd, flags, mask, dfd, pathname);
172 #endif
173 }
174 #endif
175
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
197 struct btrfs_ioctl_vol_args {
198         int64_t fd;
199         char name[BTRFS_PATH_NAME_MAX + 1];
200 };
201
202 struct 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
211 struct 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
233 #ifndef BTRFS_SUPER_MAGIC
234 #define BTRFS_SUPER_MAGIC 0x9123683E
235 #endif
236
237 #ifndef MS_MOVE
238 #define MS_MOVE 8192
239 #endif
240
241 #ifndef MS_PRIVATE
242 #define MS_PRIVATE  (1 << 18)
243 #endif
244
245 #if !HAVE_DECL_GETTID
246 static inline pid_t gettid(void) {
247         return (pid_t) syscall(SYS_gettid);
248 }
249 #endif
250
251 #ifndef SCM_SECURITY
252 #define SCM_SECURITY 0x03
253 #endif
254
255 #ifndef MS_STRICTATIME
256 #define MS_STRICTATIME (1<<24)
257 #endif
258
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
267 #ifndef PR_SET_NO_NEW_PRIVS
268 #define PR_SET_NO_NEW_PRIVS 38
269 #endif
270
271 #ifndef PR_SET_CHILD_SUBREAPER
272 #define PR_SET_CHILD_SUBREAPER 36
273 #endif
274
275 #ifndef MAX_HANDLE_SZ
276 #define MAX_HANDLE_SZ 128
277 #endif
278
279 #ifndef __NR_name_to_handle_at
280 #  if defined(__x86_64__)
281 #    define __NR_name_to_handle_at 303
282 #  elif defined(__i386__)
283 #    define __NR_name_to_handle_at 341
284 #  elif defined(__arm__)
285 #    define __NR_name_to_handle_at 370
286 #  elif defined(__powerpc__)
287 #    define __NR_name_to_handle_at 345
288 #  else
289 #    error "__NR_name_to_handle_at is not defined"
290 #  endif
291 #endif
292
293 #if !HAVE_DECL_NAME_TO_HANDLE_AT
294 struct file_handle {
295         unsigned int handle_bytes;
296         int handle_type;
297         unsigned char f_handle[0];
298 };
299
300 static 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
304
305 #ifndef HAVE_SECURE_GETENV
306 #  ifdef HAVE___SECURE_GETENV
307 #    define secure_getenv __secure_getenv
308 #  else
309 #    error "neither secure_getenv nor __secure_getenv are available"
310 #  endif
311 #endif
312
313 #ifndef CIFS_MAGIC_NUMBER
314 #  define CIFS_MAGIC_NUMBER 0xFF534D42
315 #endif
316
317 #ifndef TFD_TIMER_CANCEL_ON_SET
318 #  define TFD_TIMER_CANCEL_ON_SET (1 << 1)
319 #endif
320
321 #ifndef SO_REUSEPORT
322 #  define SO_REUSEPORT 15
323 #endif
324
325 #ifndef EVIOCREVOKE
326 #  define EVIOCREVOKE _IOW('E', 0x91, int)
327 #endif
328
329 #ifndef DRM_IOCTL_SET_MASTER
330 #  define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
331 #endif
332
333 #ifndef DRM_IOCTL_DROP_MASTER
334 #  define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
335 #endif
336
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
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
364 static inline int setns(int fd, int nstype) {
365         return syscall(__NR_setns, fd, nstype);
366 }
367 #endif