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