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