chiark / gitweb /
logind: make use of EVIOCSMASK input ioctl to mask out events we aren't interested in
[elogind.git] / src / basic / missing.h
1 #pragma once
2
3 /***
4   This file is part of systemd.
5
6   Copyright 2010 Lennart Poettering
7
8   systemd is free software; you can redistribute it and/or modify it
9   under the terms of the GNU Lesser General Public License as published by
10   the Free Software Foundation; either version 2.1 of the License, or
11   (at your option) any later version.
12
13   systemd is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   Lesser General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with systemd; If not, see <http://www.gnu.org/licenses/>.
20 ***/
21
22 /* Missing glibc definitions to access certain kernel APIs */
23
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <inttypes.h>
27 #include <linux/audit.h>
28 #include <linux/capability.h>
29 #include <linux/if_link.h>
30 #include <linux/input.h>
31 #include <linux/loop.h>
32 #include <linux/neighbour.h>
33 #include <linux/oom.h>
34 #include <linux/rtnetlink.h>
35 #include <net/ethernet.h>
36 #include <stdlib.h>
37 #include <sys/resource.h>
38 #include <sys/socket.h>
39 #include <sys/syscall.h>
40 #include <uchar.h>
41 #include <unistd.h>
42
43 /// Additional includes needed by elogind
44 #include "musl_missing.h"
45
46 #ifdef HAVE_AUDIT
47 #include <libaudit.h>
48 #endif
49
50 #ifdef ARCH_MIPS
51 #include <asm/sgidefs.h>
52 #endif
53
54 #ifdef HAVE_LINUX_BTRFS_H
55 #include <linux/btrfs.h>
56 #endif
57
58 #if 0 /// UNNEEDED by elogind
59 #ifdef HAVE_LINUX_VM_SOCKETS_H
60 #include <linux/vm_sockets.h>
61 #else
62 #define VMADDR_CID_ANY -1U
63 struct sockaddr_vm {
64         unsigned short svm_family;
65         unsigned short svm_reserved1;
66         unsigned int svm_port;
67         unsigned int svm_cid;
68         unsigned char svm_zero[sizeof(struct sockaddr) -
69                                sizeof(unsigned short) -
70                                sizeof(unsigned short) -
71                                sizeof(unsigned int) -
72                                sizeof(unsigned int)];
73 };
74 #endif /* !HAVE_LINUX_VM_SOCKETS_H */
75 #endif // 0
76
77 #ifndef RLIMIT_RTTIME
78 #define RLIMIT_RTTIME 15
79 #endif
80
81 /* If RLIMIT_RTTIME is not defined, then we cannot use RLIMIT_NLIMITS as is */
82 #define _RLIMIT_MAX (RLIMIT_RTTIME+1 > RLIMIT_NLIMITS ? RLIMIT_RTTIME+1 : RLIMIT_NLIMITS)
83
84 #ifndef F_LINUX_SPECIFIC_BASE
85 #define F_LINUX_SPECIFIC_BASE 1024
86 #endif
87
88 #ifndef F_SETPIPE_SZ
89 #define F_SETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 7)
90 #endif
91
92 #ifndef F_GETPIPE_SZ
93 #define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
94 #endif
95
96 #ifndef F_ADD_SEALS
97 #define F_ADD_SEALS (F_LINUX_SPECIFIC_BASE + 9)
98 #define F_GET_SEALS (F_LINUX_SPECIFIC_BASE + 10)
99
100 #define F_SEAL_SEAL     0x0001  /* prevent further seals from being set */
101 #define F_SEAL_SHRINK   0x0002  /* prevent file from shrinking */
102 #define F_SEAL_GROW     0x0004  /* prevent file from growing */
103 #define F_SEAL_WRITE    0x0008  /* prevent writes */
104 #endif
105
106 #ifndef F_OFD_GETLK
107 #define F_OFD_GETLK     36
108 #define F_OFD_SETLK     37
109 #define F_OFD_SETLKW    38
110 #endif
111
112 #ifndef MFD_ALLOW_SEALING
113 #define MFD_ALLOW_SEALING 0x0002U
114 #endif
115
116 #ifndef MFD_CLOEXEC
117 #define MFD_CLOEXEC 0x0001U
118 #endif
119
120 #ifndef IP_FREEBIND
121 #define IP_FREEBIND 15
122 #endif
123
124 #ifndef OOM_SCORE_ADJ_MIN
125 #define OOM_SCORE_ADJ_MIN (-1000)
126 #endif
127
128 #ifndef OOM_SCORE_ADJ_MAX
129 #define OOM_SCORE_ADJ_MAX 1000
130 #endif
131
132 #ifndef AUDIT_SERVICE_START
133 #define AUDIT_SERVICE_START 1130 /* Service (daemon) start */
134 #endif
135
136 #ifndef AUDIT_SERVICE_STOP
137 #define AUDIT_SERVICE_STOP 1131 /* Service (daemon) stop */
138 #endif
139
140 #ifndef TIOCVHANGUP
141 #define TIOCVHANGUP 0x5437
142 #endif
143
144 #ifndef IP_TRANSPARENT
145 #define IP_TRANSPARENT 19
146 #endif
147
148 #ifndef SOL_NETLINK
149 #define SOL_NETLINK 270
150 #endif
151
152 #ifndef NETLINK_LIST_MEMBERSHIPS
153 #define NETLINK_LIST_MEMBERSHIPS 9
154 #endif
155
156 #ifndef SOL_SCTP
157 #define SOL_SCTP 132
158 #endif
159
160 #ifndef GRND_NONBLOCK
161 #define GRND_NONBLOCK 0x0001
162 #endif
163
164 #ifndef GRND_RANDOM
165 #define GRND_RANDOM 0x0002
166 #endif
167
168 #ifndef FS_NOCOW_FL
169 #define FS_NOCOW_FL 0x00800000
170 #endif
171
172 #ifndef BTRFS_IOCTL_MAGIC
173 #define BTRFS_IOCTL_MAGIC 0x94
174 #endif
175
176 #ifndef BTRFS_PATH_NAME_MAX
177 #define BTRFS_PATH_NAME_MAX 4087
178 #endif
179
180 #ifndef BTRFS_DEVICE_PATH_NAME_MAX
181 #define BTRFS_DEVICE_PATH_NAME_MAX 1024
182 #endif
183
184 #ifndef BTRFS_FSID_SIZE
185 #define BTRFS_FSID_SIZE 16
186 #endif
187
188 #ifndef BTRFS_UUID_SIZE
189 #define BTRFS_UUID_SIZE 16
190 #endif
191
192 #ifndef BTRFS_SUBVOL_RDONLY
193 #define BTRFS_SUBVOL_RDONLY (1ULL << 1)
194 #endif
195
196 #ifndef BTRFS_SUBVOL_NAME_MAX
197 #define BTRFS_SUBVOL_NAME_MAX 4039
198 #endif
199
200 #ifndef BTRFS_INO_LOOKUP_PATH_MAX
201 #define BTRFS_INO_LOOKUP_PATH_MAX 4080
202 #endif
203
204 #ifndef BTRFS_SEARCH_ARGS_BUFSIZE
205 #define BTRFS_SEARCH_ARGS_BUFSIZE (4096 - sizeof(struct btrfs_ioctl_search_key))
206 #endif
207
208 #ifndef BTRFS_QGROUP_LEVEL_SHIFT
209 #define BTRFS_QGROUP_LEVEL_SHIFT 48
210 #endif
211
212 #if 0 /// UNNEEDED by elogind (It can not support BTRFS at all)
213 #ifndef HAVE_LINUX_BTRFS_H
214 struct btrfs_ioctl_vol_args {
215         int64_t fd;
216         char name[BTRFS_PATH_NAME_MAX + 1];
217 };
218
219 struct btrfs_qgroup_limit {
220         __u64 flags;
221         __u64 max_rfer;
222         __u64 max_excl;
223         __u64 rsv_rfer;
224         __u64 rsv_excl;
225 };
226
227 struct btrfs_qgroup_inherit {
228         __u64 flags;
229         __u64 num_qgroups;
230         __u64 num_ref_copies;
231         __u64 num_excl_copies;
232         struct btrfs_qgroup_limit lim;
233         __u64 qgroups[0];
234 };
235
236 struct btrfs_ioctl_qgroup_limit_args {
237         __u64 qgroupid;
238         struct btrfs_qgroup_limit lim;
239 };
240
241 struct btrfs_ioctl_vol_args_v2 {
242         __s64 fd;
243         __u64 transid;
244         __u64 flags;
245         union {
246                 struct {
247                         __u64 size;
248                         struct btrfs_qgroup_inherit *qgroup_inherit;
249                 };
250                 __u64 unused[4];
251         };
252         char name[BTRFS_SUBVOL_NAME_MAX + 1];
253 };
254
255 struct btrfs_ioctl_dev_info_args {
256         uint64_t devid;                         /* in/out */
257         uint8_t uuid[BTRFS_UUID_SIZE];          /* in/out */
258         uint64_t bytes_used;                    /* out */
259         uint64_t total_bytes;                   /* out */
260         uint64_t unused[379];                   /* pad to 4k */
261         char path[BTRFS_DEVICE_PATH_NAME_MAX];  /* out */
262 };
263
264 struct btrfs_ioctl_fs_info_args {
265         uint64_t max_id;                        /* out */
266         uint64_t num_devices;                   /* out */
267         uint8_t fsid[BTRFS_FSID_SIZE];          /* out */
268         uint64_t reserved[124];                 /* pad to 1k */
269 };
270
271 struct btrfs_ioctl_ino_lookup_args {
272         __u64 treeid;
273         __u64 objectid;
274         char name[BTRFS_INO_LOOKUP_PATH_MAX];
275 };
276
277 struct btrfs_ioctl_search_key {
278         /* which root are we searching.  0 is the tree of tree roots */
279         __u64 tree_id;
280
281         /* keys returned will be >= min and <= max */
282         __u64 min_objectid;
283         __u64 max_objectid;
284
285         /* keys returned will be >= min and <= max */
286         __u64 min_offset;
287         __u64 max_offset;
288
289         /* max and min transids to search for */
290         __u64 min_transid;
291         __u64 max_transid;
292
293         /* keys returned will be >= min and <= max */
294         __u32 min_type;
295         __u32 max_type;
296
297         /*
298          * how many items did userland ask for, and how many are we
299          * returning
300          */
301         __u32 nr_items;
302
303         /* align to 64 bits */
304         __u32 unused;
305
306         /* some extra for later */
307         __u64 unused1;
308         __u64 unused2;
309         __u64 unused3;
310         __u64 unused4;
311 };
312
313 struct btrfs_ioctl_search_header {
314         __u64 transid;
315         __u64 objectid;
316         __u64 offset;
317         __u32 type;
318         __u32 len;
319 };
320
321
322 struct btrfs_ioctl_search_args {
323         struct btrfs_ioctl_search_key key;
324         char buf[BTRFS_SEARCH_ARGS_BUFSIZE];
325 };
326
327 struct btrfs_ioctl_clone_range_args {
328         __s64 src_fd;
329         __u64 src_offset, src_length;
330         __u64 dest_offset;
331 };
332
333 #define BTRFS_QUOTA_CTL_ENABLE  1
334 #define BTRFS_QUOTA_CTL_DISABLE 2
335 #define BTRFS_QUOTA_CTL_RESCAN__NOTUSED 3
336 struct btrfs_ioctl_quota_ctl_args {
337         __u64 cmd;
338         __u64 status;
339 };
340 #endif
341
342 #ifndef BTRFS_IOC_DEFRAG
343 #define BTRFS_IOC_DEFRAG _IOW(BTRFS_IOCTL_MAGIC, 2, \
344                                  struct btrfs_ioctl_vol_args)
345 #endif
346
347 #ifndef BTRFS_IOC_RESIZE
348 #define BTRFS_IOC_RESIZE _IOW(BTRFS_IOCTL_MAGIC, 3, \
349                                  struct btrfs_ioctl_vol_args)
350 #endif
351
352 #ifndef BTRFS_IOC_CLONE
353 #define BTRFS_IOC_CLONE _IOW(BTRFS_IOCTL_MAGIC, 9, int)
354 #endif
355
356 #ifndef BTRFS_IOC_CLONE_RANGE
357 #define BTRFS_IOC_CLONE_RANGE _IOW(BTRFS_IOCTL_MAGIC, 13, \
358                                  struct btrfs_ioctl_clone_range_args)
359 #endif
360
361 #ifndef BTRFS_IOC_SUBVOL_CREATE
362 #define BTRFS_IOC_SUBVOL_CREATE _IOW(BTRFS_IOCTL_MAGIC, 14, \
363                                  struct btrfs_ioctl_vol_args)
364 #endif
365
366 #ifndef BTRFS_IOC_SNAP_DESTROY
367 #define BTRFS_IOC_SNAP_DESTROY _IOW(BTRFS_IOCTL_MAGIC, 15, \
368                                  struct btrfs_ioctl_vol_args)
369 #endif
370
371 #ifndef BTRFS_IOC_TREE_SEARCH
372 #define BTRFS_IOC_TREE_SEARCH _IOWR(BTRFS_IOCTL_MAGIC, 17, \
373                                  struct btrfs_ioctl_search_args)
374 #endif
375
376 #ifndef BTRFS_IOC_INO_LOOKUP
377 #define BTRFS_IOC_INO_LOOKUP _IOWR(BTRFS_IOCTL_MAGIC, 18, \
378                                  struct btrfs_ioctl_ino_lookup_args)
379 #endif
380
381 #ifndef BTRFS_IOC_SNAP_CREATE_V2
382 #define BTRFS_IOC_SNAP_CREATE_V2 _IOW(BTRFS_IOCTL_MAGIC, 23, \
383                                  struct btrfs_ioctl_vol_args_v2)
384 #endif
385
386 #ifndef BTRFS_IOC_SUBVOL_GETFLAGS
387 #define BTRFS_IOC_SUBVOL_GETFLAGS _IOR(BTRFS_IOCTL_MAGIC, 25, __u64)
388 #endif
389
390 #ifndef BTRFS_IOC_SUBVOL_SETFLAGS
391 #define BTRFS_IOC_SUBVOL_SETFLAGS _IOW(BTRFS_IOCTL_MAGIC, 26, __u64)
392 #endif
393
394 #ifndef BTRFS_IOC_DEV_INFO
395 #define BTRFS_IOC_DEV_INFO _IOWR(BTRFS_IOCTL_MAGIC, 30, \
396                                  struct btrfs_ioctl_dev_info_args)
397 #endif
398
399 #ifndef BTRFS_IOC_FS_INFO
400 #define BTRFS_IOC_FS_INFO _IOR(BTRFS_IOCTL_MAGIC, 31, \
401                                  struct btrfs_ioctl_fs_info_args)
402 #endif
403
404 #ifndef BTRFS_IOC_DEVICES_READY
405 #define BTRFS_IOC_DEVICES_READY _IOR(BTRFS_IOCTL_MAGIC, 39, \
406                                  struct btrfs_ioctl_vol_args)
407 #endif
408
409 #ifndef BTRFS_IOC_QUOTA_CTL
410 #define BTRFS_IOC_QUOTA_CTL _IOWR(BTRFS_IOCTL_MAGIC, 40, \
411                                struct btrfs_ioctl_quota_ctl_args)
412 #endif
413
414 #ifndef BTRFS_IOC_QGROUP_LIMIT
415 #define BTRFS_IOC_QGROUP_LIMIT _IOR(BTRFS_IOCTL_MAGIC, 43, \
416                                struct btrfs_ioctl_qgroup_limit_args)
417 #endif
418
419 #ifndef BTRFS_IOC_QUOTA_RESCAN_WAIT
420 #define BTRFS_IOC_QUOTA_RESCAN_WAIT _IO(BTRFS_IOCTL_MAGIC, 46)
421 #endif
422
423 #ifndef BTRFS_FIRST_FREE_OBJECTID
424 #define BTRFS_FIRST_FREE_OBJECTID 256
425 #endif
426
427 #ifndef BTRFS_LAST_FREE_OBJECTID
428 #define BTRFS_LAST_FREE_OBJECTID -256ULL
429 #endif
430
431 #ifndef BTRFS_ROOT_TREE_OBJECTID
432 #define BTRFS_ROOT_TREE_OBJECTID 1
433 #endif
434
435 #ifndef BTRFS_QUOTA_TREE_OBJECTID
436 #define BTRFS_QUOTA_TREE_OBJECTID 8ULL
437 #endif
438
439 #ifndef BTRFS_ROOT_ITEM_KEY
440 #define BTRFS_ROOT_ITEM_KEY 132
441 #endif
442
443 #ifndef BTRFS_QGROUP_STATUS_KEY
444 #define BTRFS_QGROUP_STATUS_KEY 240
445 #endif
446
447 #ifndef BTRFS_QGROUP_INFO_KEY
448 #define BTRFS_QGROUP_INFO_KEY 242
449 #endif
450
451 #ifndef BTRFS_QGROUP_LIMIT_KEY
452 #define BTRFS_QGROUP_LIMIT_KEY 244
453 #endif
454
455 #ifndef BTRFS_QGROUP_RELATION_KEY
456 #define BTRFS_QGROUP_RELATION_KEY 246
457 #endif
458
459 #ifndef BTRFS_ROOT_BACKREF_KEY
460 #define BTRFS_ROOT_BACKREF_KEY 144
461 #endif
462
463 #ifndef BTRFS_SUPER_MAGIC
464 #define BTRFS_SUPER_MAGIC 0x9123683E
465 #endif
466
467 #endif // 0
468 #ifndef CGROUP_SUPER_MAGIC
469 #define CGROUP_SUPER_MAGIC 0x27e0eb
470 #endif
471
472 #ifndef CGROUP2_SUPER_MAGIC
473 #define CGROUP2_SUPER_MAGIC 0x63677270
474 #endif
475
476 #ifndef CLONE_NEWCGROUP
477 #define CLONE_NEWCGROUP 0x02000000
478 #endif
479
480 #ifndef TMPFS_MAGIC
481 #define TMPFS_MAGIC 0x01021994
482 #endif
483
484 #ifndef MQUEUE_MAGIC
485 #define MQUEUE_MAGIC 0x19800202
486 #endif
487
488 #ifndef SECURITYFS_MAGIC
489 #define SECURITYFS_MAGIC 0x73636673
490 #endif
491
492 #ifndef TRACEFS_MAGIC
493 #define TRACEFS_MAGIC 0x74726163
494 #endif
495
496 #ifndef BPF_FS_MAGIC
497 #define BPF_FS_MAGIC 0xcafe4a11
498 #endif
499
500 #ifndef MS_MOVE
501 #define MS_MOVE 8192
502 #endif
503
504 #ifndef MS_REC
505 #define MS_REC 16384
506 #endif
507
508 #ifndef MS_PRIVATE
509 #define MS_PRIVATE      (1<<18)
510 #endif
511
512 #ifndef MS_REC
513 #define MS_REC          (1<<19)
514 #endif
515
516 #ifndef MS_SHARED
517 #define MS_SHARED       (1<<20)
518 #endif
519
520 #ifndef MS_RELATIME
521 #define MS_RELATIME     (1<<21)
522 #endif
523
524 #ifndef MS_KERNMOUNT
525 #define MS_KERNMOUNT    (1<<22)
526 #endif
527
528 #ifndef MS_I_VERSION
529 #define MS_I_VERSION    (1<<23)
530 #endif
531
532 #ifndef MS_STRICTATIME
533 #define MS_STRICTATIME  (1<<24)
534 #endif
535
536 #ifndef MS_LAZYTIME
537 #define MS_LAZYTIME     (1<<25)
538 #endif
539
540 #ifndef SCM_SECURITY
541 #define SCM_SECURITY 0x03
542 #endif
543
544 #ifndef PR_SET_NO_NEW_PRIVS
545 #define PR_SET_NO_NEW_PRIVS 38
546 #endif
547
548 #ifndef PR_SET_CHILD_SUBREAPER
549 #define PR_SET_CHILD_SUBREAPER 36
550 #endif
551
552 #ifndef MAX_HANDLE_SZ
553 #define MAX_HANDLE_SZ 128
554 #endif
555
556 #ifndef HAVE_SECURE_GETENV
557 #  ifdef HAVE___SECURE_GETENV
558 #    define secure_getenv __secure_getenv
559 #  else
560 #    error "neither secure_getenv nor __secure_getenv are available"
561 #  endif
562 #endif
563
564 #ifndef CIFS_MAGIC_NUMBER
565 #  define CIFS_MAGIC_NUMBER 0xFF534D42
566 #endif
567
568 #ifndef TFD_TIMER_CANCEL_ON_SET
569 #  define TFD_TIMER_CANCEL_ON_SET (1 << 1)
570 #endif
571
572 #ifndef SO_REUSEPORT
573 #  define SO_REUSEPORT 15
574 #endif
575
576 #ifndef EVIOCREVOKE
577 #  define EVIOCREVOKE _IOW('E', 0x91, int)
578 #endif
579
580 #ifndef EVIOCSMASK
581
582 struct input_mask {
583         uint32_t type;
584         uint32_t codes_size;
585         uint64_t codes_ptr;
586 };
587
588 #define EVIOCSMASK _IOW('E', 0x93, struct input_mask)
589 #endif
590
591 #ifndef DRM_IOCTL_SET_MASTER
592 #  define DRM_IOCTL_SET_MASTER _IO('d', 0x1e)
593 #endif
594
595 #ifndef DRM_IOCTL_DROP_MASTER
596 #  define DRM_IOCTL_DROP_MASTER _IO('d', 0x1f)
597 #endif
598
599 /* The precise definition of __O_TMPFILE is arch specific; use the
600  * values defined by the kernel (note: some are hexa, some are octal,
601  * duplicated as-is from the kernel definitions):
602  * - alpha, parisc, sparc: each has a specific value;
603  * - others: they use the "generic" value.
604  */
605
606 #ifndef __O_TMPFILE
607 #if defined(__alpha__)
608 #define __O_TMPFILE     0100000000
609 #elif defined(__parisc__) || defined(__hppa__)
610 #define __O_TMPFILE     0400000000
611 #elif defined(__sparc__) || defined(__sparc64__)
612 #define __O_TMPFILE     0x2000000
613 #else
614 #define __O_TMPFILE     020000000
615 #endif
616
617 /* a horrid kludge trying to make sure that this will fail on old kernels */
618 #ifndef O_TMPFILE
619 #define O_TMPFILE (__O_TMPFILE | O_DIRECTORY)
620 #endif
621
622 #endif
623
624 #if !HAVE_DECL_LO_FLAGS_PARTSCAN
625 #define LO_FLAGS_PARTSCAN 8
626 #endif
627
628 #ifndef LOOP_CTL_REMOVE
629 #define LOOP_CTL_REMOVE 0x4C81
630 #endif
631
632 #ifndef LOOP_CTL_GET_FREE
633 #define LOOP_CTL_GET_FREE 0x4C82
634 #endif
635
636 #if !HAVE_DECL_IFLA_INET6_ADDR_GEN_MODE
637 #define IFLA_INET6_UNSPEC 0
638 #define IFLA_INET6_FLAGS 1
639 #define IFLA_INET6_CONF 2
640 #define IFLA_INET6_STATS 3
641 #define IFLA_INET6_MCAST 4
642 #define IFLA_INET6_CACHEINFO 5
643 #define IFLA_INET6_ICMP6STATS 6
644 #define IFLA_INET6_TOKEN 7
645 #define IFLA_INET6_ADDR_GEN_MODE 8
646 #define __IFLA_INET6_MAX 9
647
648 #define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
649
650 #define IN6_ADDR_GEN_MODE_EUI64 0
651 #define IN6_ADDR_GEN_MODE_NONE 1
652 #endif
653
654 #if !HAVE_DECL_IN6_ADDR_GEN_MODE_STABLE_PRIVACY
655 #define IN6_ADDR_GEN_MODE_STABLE_PRIVACY 2
656 #endif
657
658 #if !HAVE_DECL_IFLA_MACVLAN_FLAGS
659 #define IFLA_MACVLAN_UNSPEC 0
660 #define IFLA_MACVLAN_MODE 1
661 #define IFLA_MACVLAN_FLAGS 2
662 #define __IFLA_MACVLAN_MAX 3
663
664 #define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
665 #endif
666
667 #if !HAVE_DECL_IFLA_IPVLAN_MODE
668 #define IFLA_IPVLAN_UNSPEC 0
669 #define IFLA_IPVLAN_MODE 1
670 #define __IFLA_IPVLAN_MAX 2
671
672 #define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
673
674 #define IPVLAN_MODE_L2 0
675 #define IPVLAN_MODE_L3 1
676 #define IPVLAN_MAX 2
677 #endif
678
679 #if !HAVE_DECL_IFLA_VTI_REMOTE
680 #define IFLA_VTI_UNSPEC 0
681 #define IFLA_VTI_LINK 1
682 #define IFLA_VTI_IKEY 2
683 #define IFLA_VTI_OKEY 3
684 #define IFLA_VTI_LOCAL 4
685 #define IFLA_VTI_REMOTE 5
686 #define __IFLA_VTI_MAX 6
687
688 #define IFLA_VTI_MAX (__IFLA_VTI_MAX - 1)
689 #endif
690
691 #if !HAVE_DECL_IFLA_PHYS_PORT_ID
692 #define IFLA_EXT_MASK 29
693 #undef IFLA_PROMISCUITY
694 #define IFLA_PROMISCUITY 30
695 #define IFLA_NUM_TX_QUEUES 31
696 #define IFLA_NUM_RX_QUEUES 32
697 #define IFLA_CARRIER 33
698 #define IFLA_PHYS_PORT_ID 34
699 #define __IFLA_MAX 35
700
701 #define IFLA_MAX (__IFLA_MAX - 1)
702 #endif
703
704 #if !HAVE_DECL_IFLA_BOND_AD_INFO
705 #define IFLA_BOND_UNSPEC 0
706 #define IFLA_BOND_MODE 1
707 #define IFLA_BOND_ACTIVE_SLAVE 2
708 #define IFLA_BOND_MIIMON 3
709 #define IFLA_BOND_UPDELAY 4
710 #define IFLA_BOND_DOWNDELAY 5
711 #define IFLA_BOND_USE_CARRIER 6
712 #define IFLA_BOND_ARP_INTERVAL 7
713 #define IFLA_BOND_ARP_IP_TARGET 8
714 #define IFLA_BOND_ARP_VALIDATE 9
715 #define IFLA_BOND_ARP_ALL_TARGETS 10
716 #define IFLA_BOND_PRIMARY 11
717 #define IFLA_BOND_PRIMARY_RESELECT 12
718 #define IFLA_BOND_FAIL_OVER_MAC 13
719 #define IFLA_BOND_XMIT_HASH_POLICY 14
720 #define IFLA_BOND_RESEND_IGMP 15
721 #define IFLA_BOND_NUM_PEER_NOTIF 16
722 #define IFLA_BOND_ALL_SLAVES_ACTIVE 17
723 #define IFLA_BOND_MIN_LINKS 18
724 #define IFLA_BOND_LP_INTERVAL 19
725 #define IFLA_BOND_PACKETS_PER_SLAVE 20
726 #define IFLA_BOND_AD_LACP_RATE 21
727 #define IFLA_BOND_AD_SELECT 22
728 #define IFLA_BOND_AD_INFO 23
729 #define __IFLA_BOND_MAX 24
730
731 #define IFLA_BOND_MAX   (__IFLA_BOND_MAX - 1)
732 #endif
733
734 #if !HAVE_DECL_IFLA_VLAN_PROTOCOL
735 #define IFLA_VLAN_UNSPEC 0
736 #define IFLA_VLAN_ID 1
737 #define IFLA_VLAN_FLAGS 2
738 #define IFLA_VLAN_EGRESS_QOS 3
739 #define IFLA_VLAN_INGRESS_QOS 4
740 #define IFLA_VLAN_PROTOCOL 5
741 #define __IFLA_VLAN_MAX 6
742
743 #define IFLA_VLAN_MAX   (__IFLA_VLAN_MAX - 1)
744 #endif
745
746 #if !HAVE_DECL_IFLA_VXLAN_GPE
747 #define IFLA_VXLAN_UNSPEC 0
748 #define IFLA_VXLAN_ID 1
749 #define IFLA_VXLAN_GROUP 2
750 #define IFLA_VXLAN_LINK 3
751 #define IFLA_VXLAN_LOCAL 4
752 #define IFLA_VXLAN_TTL 5
753 #define IFLA_VXLAN_TOS 6
754 #define IFLA_VXLAN_LEARNING 7
755 #define IFLA_VXLAN_AGEING 8
756 #define IFLA_VXLAN_LIMIT 9
757 #define IFLA_VXLAN_PORT_RANGE 10
758 #define IFLA_VXLAN_PROXY 11
759 #define IFLA_VXLAN_RSC 12
760 #define IFLA_VXLAN_L2MISS 13
761 #define IFLA_VXLAN_L3MISS 14
762 #define IFLA_VXLAN_PORT 15
763 #define IFLA_VXLAN_GROUP6 16
764 #define IFLA_VXLAN_LOCAL6 17
765 #define IFLA_VXLAN_UDP_CSUM 18
766 #define IFLA_VXLAN_UDP_ZERO_CSUM6_TX 19
767 #define IFLA_VXLAN_UDP_ZERO_CSUM6_RX 20
768 #define IFLA_VXLAN_REMCSUM_TX 21
769 #define IFLA_VXLAN_REMCSUM_RX 22
770 #define IFLA_VXLAN_GBP 23
771 #define IFLA_VXLAN_REMCSUM_NOPARTIAL 24
772 #define IFLA_VXLAN_COLLECT_METADATA 25
773 #define IFLA_VXLAN_LABEL 26
774 #define IFLA_VXLAN_GPE 27
775
776 #define __IFLA_VXLAN_MAX 28
777
778 #define IFLA_VXLAN_MAX  (__IFLA_VXLAN_MAX - 1)
779 #endif
780
781 #if !HAVE_DECL_IFLA_GENEVE_LABEL
782 #define IFLA_GENEVE_UNSPEC 0
783 #define IFLA_GENEVE_ID 1
784 #define IFLA_GENEVE_REMOTE 2
785 #define IFLA_GENEVE_TTL 3
786 #define IFLA_GENEVE_TOS 4
787 #define IFLA_GENEVE_PORT 5
788 #define IFLA_GENEVE_COLLECT_METADATA 6
789 #define IFLA_GENEVE_REMOTE6 7
790 #define IFLA_GENEVE_UDP_CSUM 8
791 #define IFLA_GENEVE_UDP_ZERO_CSUM6_TX 9
792 #define IFLA_GENEVE_UDP_ZERO_CSUM6_RX 10
793 #define IFLA_GENEVE_LABEL 11
794
795 #define __IFLA_GENEVE_MAX 12
796
797 #define IFLA_GENEVE_MAX  (__IFLA_GENEVE_MAX - 1)
798 #endif
799
800 #if !HAVE_DECL_IFLA_IPTUN_ENCAP_DPORT
801 #define IFLA_IPTUN_UNSPEC 0
802 #define IFLA_IPTUN_LINK 1
803 #define IFLA_IPTUN_LOCAL 2
804 #define IFLA_IPTUN_REMOTE 3
805 #define IFLA_IPTUN_TTL 4
806 #define IFLA_IPTUN_TOS 5
807 #define IFLA_IPTUN_ENCAP_LIMIT 6
808 #define IFLA_IPTUN_FLOWINFO 7
809 #define IFLA_IPTUN_FLAGS 8
810 #define IFLA_IPTUN_PROTO 9
811 #define IFLA_IPTUN_PMTUDISC 10
812 #define IFLA_IPTUN_6RD_PREFIX 11
813 #define IFLA_IPTUN_6RD_RELAY_PREFIX 12
814 #define IFLA_IPTUN_6RD_PREFIXLEN 13
815 #define IFLA_IPTUN_6RD_RELAY_PREFIXLEN 14
816 #define IFLA_IPTUN_ENCAP_TYPE 15
817 #define IFLA_IPTUN_ENCAP_FLAGS 16
818 #define IFLA_IPTUN_ENCAP_SPORT 17
819 #define IFLA_IPTUN_ENCAP_DPORT 18
820
821 #define __IFLA_IPTUN_MAX 19
822
823 #define IFLA_IPTUN_MAX  (__IFLA_IPTUN_MAX - 1)
824 #endif
825
826 #if !HAVE_DECL_IFLA_GRE_ENCAP_DPORT
827 #define IFLA_GRE_UNSPEC 0
828 #define IFLA_GRE_LINK 1
829 #define IFLA_GRE_IFLAGS 2
830 #define IFLA_GRE_OFLAGS 3
831 #define IFLA_GRE_IKEY 4
832 #define IFLA_GRE_OKEY 5
833 #define IFLA_GRE_LOCAL 6
834 #define IFLA_GRE_REMOTE 7
835 #define IFLA_GRE_TTL 8
836 #define IFLA_GRE_TOS 9
837 #define IFLA_GRE_PMTUDISC 10
838 #define IFLA_GRE_ENCAP_LIMIT 11
839 #define IFLA_GRE_FLOWINFO 12
840 #define IFLA_GRE_FLAGS 13
841 #define IFLA_GRE_ENCAP_TYPE 14
842 #define IFLA_GRE_ENCAP_FLAGS 15
843 #define IFLA_GRE_ENCAP_SPORT 16
844 #define IFLA_GRE_ENCAP_DPORT 17
845
846 #define __IFLA_GRE_MAX 18
847
848 #define IFLA_GRE_MAX  (__IFLA_GRE_MAX - 1)
849 #endif
850
851 #if !HAVE_DECL_IFLA_BRIDGE_VLAN_INFO
852 #define IFLA_BRIDGE_FLAGS 0
853 #define IFLA_BRIDGE_MODE 1
854 #define IFLA_BRIDGE_VLAN_INFO 2
855 #define __IFLA_BRIDGE_MAX 3
856
857 #define IFLA_BRIDGE_MAX (__IFLA_BRIDGE_MAX - 1)
858 #endif
859
860 #ifndef BRIDGE_VLAN_INFO_RANGE_BEGIN
861 #define BRIDGE_VLAN_INFO_RANGE_BEGIN (1<<3) /* VLAN is start of vlan range */
862 #endif
863
864 #ifndef BRIDGE_VLAN_INFO_RANGE_END
865 #define BRIDGE_VLAN_INFO_RANGE_END (1<<4) /* VLAN is end of vlan range */
866 #endif
867
868 #if !HAVE_DECL_IFLA_BR_VLAN_DEFAULT_PVID
869 #define IFLA_BR_UNSPEC 0
870 #define IFLA_BR_FORWARD_DELAY 1
871 #define IFLA_BR_HELLO_TIME 2
872 #define IFLA_BR_MAX_AGE 3
873 #define IFLA_BR_AGEING_TIME 4
874 #define IFLA_BR_STP_STATE 5
875 #define IFLA_BR_PRIORITY 6
876 #define IFLA_BR_VLAN_FILTERING 7
877 #define IFLA_BR_VLAN_PROTOCOL 8
878 #define IFLA_BR_GROUP_FWD_MASK 9
879 #define IFLA_BR_ROOT_ID 10
880 #define IFLA_BR_BRIDGE_ID 11
881 #define IFLA_BR_ROOT_PORT 12
882 #define IFLA_BR_ROOT_PATH_COST 13
883 #define IFLA_BR_TOPOLOGY_CHANGE 14
884 #define IFLA_BR_TOPOLOGY_CHANGE_DETECTED 15
885 #define IFLA_BR_HELLO_TIMER 16
886 #define IFLA_BR_TCN_TIMER 17
887 #define IFLA_BR_TOPOLOGY_CHANGE_TIMER 18
888 #define IFLA_BR_GC_TIMER 19
889 #define IFLA_BR_GROUP_ADDR 20
890 #define IFLA_BR_FDB_FLUSH 21
891 #define IFLA_BR_MCAST_ROUTER 22
892 #define IFLA_BR_MCAST_SNOOPING 23
893 #define IFLA_BR_MCAST_QUERY_USE_IFADDR 24
894 #define IFLA_BR_MCAST_QUERIER 25
895 #define IFLA_BR_MCAST_HASH_ELASTICITY 26
896 #define IFLA_BR_MCAST_HASH_MAX 27
897 #define IFLA_BR_MCAST_LAST_MEMBER_CNT 28
898 #define IFLA_BR_MCAST_STARTUP_QUERY_CNT 29
899 #define IFLA_BR_MCAST_LAST_MEMBER_INTVL 30
900 #define IFLA_BR_MCAST_MEMBERSHIP_INTVL 31
901 #define IFLA_BR_MCAST_QUERIER_INTVL 32
902 #define IFLA_BR_MCAST_QUERY_INTVL 33
903 #define IFLA_BR_MCAST_QUERY_RESPONSE_INTVL 34
904 #define IFLA_BR_MCAST_STARTUP_QUERY_INTVL 35
905 #define IFLA_BR_NF_CALL_IPTABLES 36
906 #define IFLA_BR_NF_CALL_IP6TABLES 37
907 #define IFLA_BR_NF_CALL_ARPTABLES 38
908 #define IFLA_BR_VLAN_DEFAULT_PVID 39
909 #define __IFLA_BR_MAX 40
910
911 #define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
912 #endif
913
914 #if !HAVE_DECL_IFLA_BRPORT_LEARNING_SYNC
915 #define IFLA_BRPORT_UNSPEC 0
916 #define IFLA_BRPORT_STATE 1
917 #define IFLA_BRPORT_PRIORITY 2
918 #define IFLA_BRPORT_COST 3
919 #define IFLA_BRPORT_MODE 4
920 #define IFLA_BRPORT_GUARD 5
921 #define IFLA_BRPORT_PROTECT 6
922 #define IFLA_BRPORT_FAST_LEAVE 7
923 #define IFLA_BRPORT_LEARNING 8
924 #define IFLA_BRPORT_UNICAST_FLOOD 9
925 #define IFLA_BRPORT_LEARNING_SYNC 11
926 #define __IFLA_BRPORT_MAX 12
927
928 #define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
929 #endif
930
931 #if !HAVE_DECL_IFLA_BRPORT_PROXYARP
932 #define IFLA_BRPORT_PROXYARP 10
933 #endif
934
935 #if !HAVE_DECL_IFLA_VRF_TABLE
936 #define IFLA_VRF_TABLE 1
937 #endif
938
939 #if !HAVE_DECL_NDA_IFINDEX
940 #define NDA_UNSPEC 0
941 #define NDA_DST 1
942 #define NDA_LLADDR 2
943 #define NDA_CACHEINFO 3
944 #define NDA_PROBES 4
945 #define NDA_VLAN 5
946 #define NDA_PORT 6
947 #define NDA_VNI 7
948 #define NDA_IFINDEX 8
949 #define __NDA_MAX 9
950
951 #define NDA_MAX (__NDA_MAX - 1)
952 #endif
953
954 #ifndef RTA_PREF
955 #define RTA_PREF 20
956 #endif
957
958 #ifndef IPV6_UNICAST_IF
959 #define IPV6_UNICAST_IF 76
960 #endif
961
962 #ifndef IPV6_MIN_MTU
963 #define IPV6_MIN_MTU 1280
964 #endif
965
966 #ifndef IFF_MULTI_QUEUE
967 #define IFF_MULTI_QUEUE 0x100
968 #endif
969
970 #ifndef IFF_LOWER_UP
971 #define IFF_LOWER_UP 0x10000
972 #endif
973
974 #ifndef IFF_DORMANT
975 #define IFF_DORMANT 0x20000
976 #endif
977
978 #ifndef BOND_XMIT_POLICY_ENCAP23
979 #define BOND_XMIT_POLICY_ENCAP23 3
980 #endif
981
982 #ifndef BOND_XMIT_POLICY_ENCAP34
983 #define BOND_XMIT_POLICY_ENCAP34 4
984 #endif
985
986 #ifndef NET_ADDR_RANDOM
987 #  define NET_ADDR_RANDOM 1
988 #endif
989
990 #ifndef NET_NAME_UNKNOWN
991 #  define NET_NAME_UNKNOWN 0
992 #endif
993
994 #ifndef NET_NAME_ENUM
995 #  define NET_NAME_ENUM 1
996 #endif
997
998 #ifndef NET_NAME_PREDICTABLE
999 #  define NET_NAME_PREDICTABLE 2
1000 #endif
1001
1002 #ifndef NET_NAME_USER
1003 #  define NET_NAME_USER 3
1004 #endif
1005
1006 #ifndef NET_NAME_RENAMED
1007 #  define NET_NAME_RENAMED 4
1008 #endif
1009
1010 #ifndef BPF_XOR
1011 #  define BPF_XOR 0xa0
1012 #endif
1013
1014 /* Note that LOOPBACK_IFINDEX is currently not exported by the
1015  * kernel/glibc, but hardcoded internally by the kernel.  However, as
1016  * it is exported to userspace indirectly via rtnetlink and the
1017  * ioctls, and made use of widely we define it here too, in a way that
1018  * is compatible with the kernel's internal definition. */
1019 #ifndef LOOPBACK_IFINDEX
1020 #define LOOPBACK_IFINDEX 1
1021 #endif
1022
1023 #if !HAVE_DECL_IFA_FLAGS
1024 #define IFA_FLAGS 8
1025 #endif
1026
1027 #ifndef IFA_F_MANAGETEMPADDR
1028 #define IFA_F_MANAGETEMPADDR 0x100
1029 #endif
1030
1031 #ifndef IFA_F_NOPREFIXROUTE
1032 #define IFA_F_NOPREFIXROUTE 0x200
1033 #endif
1034
1035 #ifndef MAX_AUDIT_MESSAGE_LENGTH
1036 #define MAX_AUDIT_MESSAGE_LENGTH 8970
1037 #endif
1038
1039 #ifndef AUDIT_NLGRP_MAX
1040 #define AUDIT_NLGRP_READLOG 1
1041 #endif
1042
1043 #ifndef CAP_MAC_OVERRIDE
1044 #define CAP_MAC_OVERRIDE 32
1045 #endif
1046
1047 #ifndef CAP_MAC_ADMIN
1048 #define CAP_MAC_ADMIN 33
1049 #endif
1050
1051 #ifndef CAP_SYSLOG
1052 #define CAP_SYSLOG 34
1053 #endif
1054
1055 #ifndef CAP_WAKE_ALARM
1056 #define CAP_WAKE_ALARM 35
1057 #endif
1058
1059 #ifndef CAP_BLOCK_SUSPEND
1060 #define CAP_BLOCK_SUSPEND 36
1061 #endif
1062
1063 #ifndef CAP_AUDIT_READ
1064 #define CAP_AUDIT_READ 37
1065 #endif
1066
1067 #if 0 /// UNNEEDED by elogind
1068 #ifndef RENAME_NOREPLACE
1069 #define RENAME_NOREPLACE (1 << 0)
1070 #endif
1071
1072 #ifndef KCMP_FILE
1073 #define KCMP_FILE 0
1074 #endif
1075
1076 #ifndef INPUT_PROP_POINTING_STICK
1077 #define INPUT_PROP_POINTING_STICK 0x05
1078 #endif
1079
1080 #ifndef INPUT_PROP_ACCELEROMETER
1081 #define INPUT_PROP_ACCELEROMETER  0x06
1082 #endif
1083 #endif // 0
1084
1085 #ifndef HAVE_KEY_SERIAL_T
1086 typedef int32_t key_serial_t;
1087 #endif
1088
1089 #ifndef KEYCTL_JOIN_SESSION_KEYRING
1090 #define KEYCTL_JOIN_SESSION_KEYRING 1
1091 #endif
1092
1093 #ifndef KEYCTL_CHOWN
1094 #define KEYCTL_CHOWN 4
1095 #endif
1096
1097 #ifndef KEYCTL_SETPERM
1098 #define KEYCTL_SETPERM 5
1099 #endif
1100
1101 #ifndef KEYCTL_DESCRIBE
1102 #define KEYCTL_DESCRIBE 6
1103 #endif
1104
1105 #ifndef KEYCTL_READ
1106 #define KEYCTL_READ 11
1107 #endif
1108
1109 #ifndef KEYCTL_SET_TIMEOUT
1110 #define KEYCTL_SET_TIMEOUT 15
1111 #endif
1112
1113 #ifndef KEY_POS_VIEW
1114 #define KEY_POS_VIEW    0x01000000
1115 #define KEY_POS_READ    0x02000000
1116 #define KEY_POS_WRITE   0x04000000
1117 #define KEY_POS_SEARCH  0x08000000
1118 #define KEY_POS_LINK    0x10000000
1119 #define KEY_POS_SETATTR 0x20000000
1120
1121 #define KEY_USR_VIEW    0x00010000
1122 #define KEY_USR_READ    0x00020000
1123 #define KEY_USR_WRITE   0x00040000
1124 #define KEY_USR_SEARCH  0x00080000
1125 #define KEY_USR_LINK    0x00100000
1126 #define KEY_USR_SETATTR 0x00200000
1127
1128 #define KEY_GRP_VIEW    0x00000100
1129 #define KEY_GRP_READ    0x00000200
1130 #define KEY_GRP_WRITE   0x00000400
1131 #define KEY_GRP_SEARCH  0x00000800
1132 #define KEY_GRP_LINK    0x00001000
1133 #define KEY_GRP_SETATTR 0x00002000
1134
1135 #define KEY_OTH_VIEW    0x00000001
1136 #define KEY_OTH_READ    0x00000002
1137 #define KEY_OTH_WRITE   0x00000004
1138 #define KEY_OTH_SEARCH  0x00000008
1139 #define KEY_OTH_LINK    0x00000010
1140 #define KEY_OTH_SETATTR 0x00000020
1141 #endif
1142
1143 #ifndef KEY_SPEC_USER_KEYRING
1144 #define KEY_SPEC_USER_KEYRING -4
1145 #endif
1146
1147 #ifndef KEY_SPEC_SESSION_KEYRING
1148 #define KEY_SPEC_SESSION_KEYRING -3
1149 #endif
1150
1151 #ifndef PR_CAP_AMBIENT
1152 #define PR_CAP_AMBIENT 47
1153 #endif
1154
1155 #ifndef PR_CAP_AMBIENT_IS_SET
1156 #define PR_CAP_AMBIENT_IS_SET 1
1157 #endif
1158
1159 #ifndef PR_CAP_AMBIENT_RAISE
1160 #define PR_CAP_AMBIENT_RAISE 2
1161 #endif
1162
1163 #ifndef PR_CAP_AMBIENT_CLEAR_ALL
1164 #define PR_CAP_AMBIENT_CLEAR_ALL 4
1165 #endif
1166
1167 /* The following two defines are actually available in the kernel headers for longer, but we define them here anyway,
1168  * since that makes it easier to use them in conjunction with the glibc net/if.h header which conflicts with
1169  * linux/if.h. */
1170 #ifndef IF_OPER_UNKNOWN
1171 #define IF_OPER_UNKNOWN 0
1172 #endif
1173
1174 #ifndef IF_OPER_UP
1175 #define IF_OPER_UP 6
1176
1177 #ifndef HAVE_CHAR32_T
1178 #define char32_t uint32_t
1179 #endif
1180
1181 #ifndef HAVE_CHAR16_T
1182 #define char16_t uint16_t
1183 #endif
1184
1185 #ifndef ETHERTYPE_LLDP
1186 #define ETHERTYPE_LLDP 0x88cc
1187 #endif
1188
1189 #ifndef IFA_F_MCAUTOJOIN
1190 #define IFA_F_MCAUTOJOIN 0x400
1191 #endif
1192
1193 #if 0 /// UNNEEDED by elogind
1194 #ifndef HAVE_STRUCT_ETHTOOL_LINK_SETTINGS
1195
1196 #define ETHTOOL_GLINKSETTINGS   0x0000004c /* Get ethtool_link_settings */
1197 #define ETHTOOL_SLINKSETTINGS   0x0000004d /* Set ethtool_link_settings */
1198
1199 struct ethtool_link_settings {
1200         __u32   cmd;
1201         __u32   speed;
1202         __u8    duplex;
1203         __u8    port;
1204         __u8    phy_address;
1205         __u8    autoneg;
1206         __u8    mdio_support;
1207         __u8    eth_tp_mdix;
1208         __u8    eth_tp_mdix_ctrl;
1209         __s8    link_mode_masks_nwords;
1210         __u32   reserved[8];
1211         __u32   link_mode_masks[0];
1212         /* layout of link_mode_masks fields:
1213          * __u32 map_supported[link_mode_masks_nwords];
1214          * __u32 map_advertising[link_mode_masks_nwords];
1215          * __u32 map_lp_advertising[link_mode_masks_nwords];
1216          */
1217 };
1218
1219 #endif
1220 #endif // 0
1221
1222 #endif
1223
1224 #ifndef SOL_ALG
1225 #define SOL_ALG 279
1226 #endif
1227
1228 #ifndef AF_VSOCK
1229 #define AF_VSOCK 40
1230 #endif
1231
1232 #include "missing_syscall.h"