aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include
diff options
context:
space:
mode:
Diffstat (limited to 'tools/include')
-rw-r--r--tools/include/asm-generic/bitops/find.h16
-rw-r--r--tools/include/uapi/asm-generic/errno-base.h40
-rw-r--r--tools/include/uapi/asm-generic/errno.h123
-rw-r--r--tools/include/uapi/linux/bpf.h116
-rw-r--r--tools/include/uapi/linux/if_link.h943
-rw-r--r--tools/include/uapi/linux/kvm.h4
-rw-r--r--tools/include/uapi/linux/netlink.h251
-rw-r--r--tools/include/uapi/linux/perf_event.h32
-rw-r--r--tools/include/uapi/linux/sched.h5
-rw-r--r--tools/include/uapi/sound/asound.h9
10 files changed, 1531 insertions, 8 deletions
diff --git a/tools/include/asm-generic/bitops/find.h b/tools/include/asm-generic/bitops/find.h
index 9311fadaaab2..16ed1982cb34 100644
--- a/tools/include/asm-generic/bitops/find.h
+++ b/tools/include/asm-generic/bitops/find.h
@@ -16,6 +16,22 @@ extern unsigned long find_next_bit(const unsigned long *addr, unsigned long
16 size, unsigned long offset); 16 size, unsigned long offset);
17#endif 17#endif
18 18
19#ifndef find_next_and_bit
20/**
21 * find_next_and_bit - find the next set bit in both memory regions
22 * @addr1: The first address to base the search on
23 * @addr2: The second address to base the search on
24 * @offset: The bitnumber to start searching at
25 * @size: The bitmap size in bits
26 *
27 * Returns the bit number for the next set bit
28 * If no bits are set, returns @size.
29 */
30extern unsigned long find_next_and_bit(const unsigned long *addr1,
31 const unsigned long *addr2, unsigned long size,
32 unsigned long offset);
33#endif
34
19#ifndef find_next_zero_bit 35#ifndef find_next_zero_bit
20 36
21/** 37/**
diff --git a/tools/include/uapi/asm-generic/errno-base.h b/tools/include/uapi/asm-generic/errno-base.h
new file mode 100644
index 000000000000..9653140bff92
--- /dev/null
+++ b/tools/include/uapi/asm-generic/errno-base.h
@@ -0,0 +1,40 @@
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _ASM_GENERIC_ERRNO_BASE_H
3#define _ASM_GENERIC_ERRNO_BASE_H
4
5#define EPERM 1 /* Operation not permitted */
6#define ENOENT 2 /* No such file or directory */
7#define ESRCH 3 /* No such process */
8#define EINTR 4 /* Interrupted system call */
9#define EIO 5 /* I/O error */
10#define ENXIO 6 /* No such device or address */
11#define E2BIG 7 /* Argument list too long */
12#define ENOEXEC 8 /* Exec format error */
13#define EBADF 9 /* Bad file number */
14#define ECHILD 10 /* No child processes */
15#define EAGAIN 11 /* Try again */
16#define ENOMEM 12 /* Out of memory */
17#define EACCES 13 /* Permission denied */
18#define EFAULT 14 /* Bad address */
19#define ENOTBLK 15 /* Block device required */
20#define EBUSY 16 /* Device or resource busy */
21#define EEXIST 17 /* File exists */
22#define EXDEV 18 /* Cross-device link */
23#define ENODEV 19 /* No such device */
24#define ENOTDIR 20 /* Not a directory */
25#define EISDIR 21 /* Is a directory */
26#define EINVAL 22 /* Invalid argument */
27#define ENFILE 23 /* File table overflow */
28#define EMFILE 24 /* Too many open files */
29#define ENOTTY 25 /* Not a typewriter */
30#define ETXTBSY 26 /* Text file busy */
31#define EFBIG 27 /* File too large */
32#define ENOSPC 28 /* No space left on device */
33#define ESPIPE 29 /* Illegal seek */
34#define EROFS 30 /* Read-only file system */
35#define EMLINK 31 /* Too many links */
36#define EPIPE 32 /* Broken pipe */
37#define EDOM 33 /* Math argument out of domain of func */
38#define ERANGE 34 /* Math result not representable */
39
40#endif
diff --git a/tools/include/uapi/asm-generic/errno.h b/tools/include/uapi/asm-generic/errno.h
new file mode 100644
index 000000000000..cf9c51ac49f9
--- /dev/null
+++ b/tools/include/uapi/asm-generic/errno.h
@@ -0,0 +1,123 @@
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _ASM_GENERIC_ERRNO_H
3#define _ASM_GENERIC_ERRNO_H
4
5#include <asm-generic/errno-base.h>
6
7#define EDEADLK 35 /* Resource deadlock would occur */
8#define ENAMETOOLONG 36 /* File name too long */
9#define ENOLCK 37 /* No record locks available */
10
11/*
12 * This error code is special: arch syscall entry code will return
13 * -ENOSYS if users try to call a syscall that doesn't exist. To keep
14 * failures of syscalls that really do exist distinguishable from
15 * failures due to attempts to use a nonexistent syscall, syscall
16 * implementations should refrain from returning -ENOSYS.
17 */
18#define ENOSYS 38 /* Invalid system call number */
19
20#define ENOTEMPTY 39 /* Directory not empty */
21#define ELOOP 40 /* Too many symbolic links encountered */
22#define EWOULDBLOCK EAGAIN /* Operation would block */
23#define ENOMSG 42 /* No message of desired type */
24#define EIDRM 43 /* Identifier removed */
25#define ECHRNG 44 /* Channel number out of range */
26#define EL2NSYNC 45 /* Level 2 not synchronized */
27#define EL3HLT 46 /* Level 3 halted */
28#define EL3RST 47 /* Level 3 reset */
29#define ELNRNG 48 /* Link number out of range */
30#define EUNATCH 49 /* Protocol driver not attached */
31#define ENOCSI 50 /* No CSI structure available */
32#define EL2HLT 51 /* Level 2 halted */
33#define EBADE 52 /* Invalid exchange */
34#define EBADR 53 /* Invalid request descriptor */
35#define EXFULL 54 /* Exchange full */
36#define ENOANO 55 /* No anode */
37#define EBADRQC 56 /* Invalid request code */
38#define EBADSLT 57 /* Invalid slot */
39
40#define EDEADLOCK EDEADLK
41
42#define EBFONT 59 /* Bad font file format */
43#define ENOSTR 60 /* Device not a stream */
44#define ENODATA 61 /* No data available */
45#define ETIME 62 /* Timer expired */
46#define ENOSR 63 /* Out of streams resources */
47#define ENONET 64 /* Machine is not on the network */
48#define ENOPKG 65 /* Package not installed */
49#define EREMOTE 66 /* Object is remote */
50#define ENOLINK 67 /* Link has been severed */
51#define EADV 68 /* Advertise error */
52#define ESRMNT 69 /* Srmount error */
53#define ECOMM 70 /* Communication error on send */
54#define EPROTO 71 /* Protocol error */
55#define EMULTIHOP 72 /* Multihop attempted */
56#define EDOTDOT 73 /* RFS specific error */
57#define EBADMSG 74 /* Not a data message */
58#define EOVERFLOW 75 /* Value too large for defined data type */
59#define ENOTUNIQ 76 /* Name not unique on network */
60#define EBADFD 77 /* File descriptor in bad state */
61#define EREMCHG 78 /* Remote address changed */
62#define ELIBACC 79 /* Can not access a needed shared library */
63#define ELIBBAD 80 /* Accessing a corrupted shared library */
64#define ELIBSCN 81 /* .lib section in a.out corrupted */
65#define ELIBMAX 82 /* Attempting to link in too many shared libraries */
66#define ELIBEXEC 83 /* Cannot exec a shared library directly */
67#define EILSEQ 84 /* Illegal byte sequence */
68#define ERESTART 85 /* Interrupted system call should be restarted */
69#define ESTRPIPE 86 /* Streams pipe error */
70#define EUSERS 87 /* Too many users */
71#define ENOTSOCK 88 /* Socket operation on non-socket */
72#define EDESTADDRREQ 89 /* Destination address required */
73#define EMSGSIZE 90 /* Message too long */
74#define EPROTOTYPE 91 /* Protocol wrong type for socket */
75#define ENOPROTOOPT 92 /* Protocol not available */
76#define EPROTONOSUPPORT 93 /* Protocol not supported */
77#define ESOCKTNOSUPPORT 94 /* Socket type not supported */
78#define EOPNOTSUPP 95 /* Operation not supported on transport endpoint */
79#define EPFNOSUPPORT 96 /* Protocol family not supported */
80#define EAFNOSUPPORT 97 /* Address family not supported by protocol */
81#define EADDRINUSE 98 /* Address already in use */
82#define EADDRNOTAVAIL 99 /* Cannot assign requested address */
83#define ENETDOWN 100 /* Network is down */
84#define ENETUNREACH 101 /* Network is unreachable */
85#define ENETRESET 102 /* Network dropped connection because of reset */
86#define ECONNABORTED 103 /* Software caused connection abort */
87#define ECONNRESET 104 /* Connection reset by peer */
88#define ENOBUFS 105 /* No buffer space available */
89#define EISCONN 106 /* Transport endpoint is already connected */
90#define ENOTCONN 107 /* Transport endpoint is not connected */
91#define ESHUTDOWN 108 /* Cannot send after transport endpoint shutdown */
92#define ETOOMANYREFS 109 /* Too many references: cannot splice */
93#define ETIMEDOUT 110 /* Connection timed out */
94#define ECONNREFUSED 111 /* Connection refused */
95#define EHOSTDOWN 112 /* Host is down */
96#define EHOSTUNREACH 113 /* No route to host */
97#define EALREADY 114 /* Operation already in progress */
98#define EINPROGRESS 115 /* Operation now in progress */
99#define ESTALE 116 /* Stale file handle */
100#define EUCLEAN 117 /* Structure needs cleaning */
101#define ENOTNAM 118 /* Not a XENIX named type file */
102#define ENAVAIL 119 /* No XENIX semaphores available */
103#define EISNAM 120 /* Is a named type file */
104#define EREMOTEIO 121 /* Remote I/O error */
105#define EDQUOT 122 /* Quota exceeded */
106
107#define ENOMEDIUM 123 /* No medium found */
108#define EMEDIUMTYPE 124 /* Wrong medium type */
109#define ECANCELED 125 /* Operation Canceled */
110#define ENOKEY 126 /* Required key not available */
111#define EKEYEXPIRED 127 /* Key has expired */
112#define EKEYREVOKED 128 /* Key has been revoked */
113#define EKEYREJECTED 129 /* Key was rejected by service */
114
115/* for robust mutexes */
116#define EOWNERDEAD 130 /* Owner died */
117#define ENOTRECOVERABLE 131 /* State not recoverable */
118
119#define ERFKILL 132 /* Operation not possible due to RF-kill */
120
121#define EHWPOISON 133 /* Memory page has hardware error */
122
123#endif
diff --git a/tools/include/uapi/linux/bpf.h b/tools/include/uapi/linux/bpf.h
index 4c223ab30293..db6bdc375126 100644
--- a/tools/include/uapi/linux/bpf.h
+++ b/tools/include/uapi/linux/bpf.h
@@ -17,7 +17,7 @@
17#define BPF_ALU64 0x07 /* alu mode in double word width */ 17#define BPF_ALU64 0x07 /* alu mode in double word width */
18 18
19/* ld/ldx fields */ 19/* ld/ldx fields */
20#define BPF_DW 0x18 /* double word */ 20#define BPF_DW 0x18 /* double word (64-bit) */
21#define BPF_XADD 0xc0 /* exclusive add */ 21#define BPF_XADD 0xc0 /* exclusive add */
22 22
23/* alu/jmp fields */ 23/* alu/jmp fields */
@@ -197,8 +197,14 @@ enum bpf_attach_type {
197 */ 197 */
198#define BPF_F_STRICT_ALIGNMENT (1U << 0) 198#define BPF_F_STRICT_ALIGNMENT (1U << 0)
199 199
200/* when bpf_ldimm64->src_reg == BPF_PSEUDO_MAP_FD, bpf_ldimm64->imm == fd */
200#define BPF_PSEUDO_MAP_FD 1 201#define BPF_PSEUDO_MAP_FD 1
201 202
203/* when bpf_call->src_reg == BPF_PSEUDO_CALL, bpf_call->imm == pc-relative
204 * offset to another bpf function
205 */
206#define BPF_PSEUDO_CALL 1
207
202/* flags for BPF_MAP_UPDATE_ELEM command */ 208/* flags for BPF_MAP_UPDATE_ELEM command */
203#define BPF_ANY 0 /* create new element or update existing */ 209#define BPF_ANY 0 /* create new element or update existing */
204#define BPF_NOEXIST 1 /* create new element if it didn't exist */ 210#define BPF_NOEXIST 1 /* create new element if it didn't exist */
@@ -239,6 +245,7 @@ union bpf_attr {
239 * BPF_F_NUMA_NODE is set). 245 * BPF_F_NUMA_NODE is set).
240 */ 246 */
241 char map_name[BPF_OBJ_NAME_LEN]; 247 char map_name[BPF_OBJ_NAME_LEN];
248 __u32 map_ifindex; /* ifindex of netdev to create on */
242 }; 249 };
243 250
244 struct { /* anonymous struct used by BPF_MAP_*_ELEM commands */ 251 struct { /* anonymous struct used by BPF_MAP_*_ELEM commands */
@@ -635,6 +642,14 @@ union bpf_attr {
635 * @optlen: length of optval in bytes 642 * @optlen: length of optval in bytes
636 * Return: 0 or negative error 643 * Return: 0 or negative error
637 * 644 *
645 * int bpf_sock_ops_cb_flags_set(bpf_sock_ops, flags)
646 * Set callback flags for sock_ops
647 * @bpf_sock_ops: pointer to bpf_sock_ops_kern struct
648 * @flags: flags value
649 * Return: 0 for no error
650 * -EINVAL if there is no full tcp socket
651 * bits in flags that are not supported by current kernel
652 *
638 * int bpf_skb_adjust_room(skb, len_diff, mode, flags) 653 * int bpf_skb_adjust_room(skb, len_diff, mode, flags)
639 * Grow or shrink room in sk_buff. 654 * Grow or shrink room in sk_buff.
640 * @skb: pointer to skb 655 * @skb: pointer to skb
@@ -677,6 +692,10 @@ union bpf_attr {
677 * @buf: buf to fill 692 * @buf: buf to fill
678 * @buf_size: size of the buf 693 * @buf_size: size of the buf
679 * Return : 0 on success or negative error code 694 * Return : 0 on success or negative error code
695 *
696 * int bpf_override_return(pt_regs, rc)
697 * @pt_regs: pointer to struct pt_regs
698 * @rc: the return value to set
680 */ 699 */
681#define __BPF_FUNC_MAPPER(FN) \ 700#define __BPF_FUNC_MAPPER(FN) \
682 FN(unspec), \ 701 FN(unspec), \
@@ -736,7 +755,9 @@ union bpf_attr {
736 FN(xdp_adjust_meta), \ 755 FN(xdp_adjust_meta), \
737 FN(perf_event_read_value), \ 756 FN(perf_event_read_value), \
738 FN(perf_prog_read_value), \ 757 FN(perf_prog_read_value), \
739 FN(getsockopt), 758 FN(getsockopt), \
759 FN(override_return), \
760 FN(sock_ops_cb_flags_set),
740 761
741/* integer value in 'imm' field of BPF_CALL instruction selects which helper 762/* integer value in 'imm' field of BPF_CALL instruction selects which helper
742 * function eBPF program intends to call 763 * function eBPF program intends to call
@@ -888,6 +909,9 @@ struct xdp_md {
888 __u32 data; 909 __u32 data;
889 __u32 data_end; 910 __u32 data_end;
890 __u32 data_meta; 911 __u32 data_meta;
912 /* Below access go through struct xdp_rxq_info */
913 __u32 ingress_ifindex; /* rxq->dev->ifindex */
914 __u32 rx_queue_index; /* rxq->queue_index */
891}; 915};
892 916
893enum sk_action { 917enum sk_action {
@@ -910,6 +934,9 @@ struct bpf_prog_info {
910 __u32 nr_map_ids; 934 __u32 nr_map_ids;
911 __aligned_u64 map_ids; 935 __aligned_u64 map_ids;
912 char name[BPF_OBJ_NAME_LEN]; 936 char name[BPF_OBJ_NAME_LEN];
937 __u32 ifindex;
938 __u64 netns_dev;
939 __u64 netns_ino;
913} __attribute__((aligned(8))); 940} __attribute__((aligned(8)));
914 941
915struct bpf_map_info { 942struct bpf_map_info {
@@ -920,6 +947,9 @@ struct bpf_map_info {
920 __u32 max_entries; 947 __u32 max_entries;
921 __u32 map_flags; 948 __u32 map_flags;
922 char name[BPF_OBJ_NAME_LEN]; 949 char name[BPF_OBJ_NAME_LEN];
950 __u32 ifindex;
951 __u64 netns_dev;
952 __u64 netns_ino;
923} __attribute__((aligned(8))); 953} __attribute__((aligned(8)));
924 954
925/* User bpf_sock_ops struct to access socket values and specify request ops 955/* User bpf_sock_ops struct to access socket values and specify request ops
@@ -931,8 +961,9 @@ struct bpf_map_info {
931struct bpf_sock_ops { 961struct bpf_sock_ops {
932 __u32 op; 962 __u32 op;
933 union { 963 union {
934 __u32 reply; 964 __u32 args[4]; /* Optionally passed to bpf program */
935 __u32 replylong[4]; 965 __u32 reply; /* Returned by bpf program */
966 __u32 replylong[4]; /* Optionally returned by bpf prog */
936 }; 967 };
937 __u32 family; 968 __u32 family;
938 __u32 remote_ip4; /* Stored in network byte order */ 969 __u32 remote_ip4; /* Stored in network byte order */
@@ -941,8 +972,45 @@ struct bpf_sock_ops {
941 __u32 local_ip6[4]; /* Stored in network byte order */ 972 __u32 local_ip6[4]; /* Stored in network byte order */
942 __u32 remote_port; /* Stored in network byte order */ 973 __u32 remote_port; /* Stored in network byte order */
943 __u32 local_port; /* stored in host byte order */ 974 __u32 local_port; /* stored in host byte order */
975 __u32 is_fullsock; /* Some TCP fields are only valid if
976 * there is a full socket. If not, the
977 * fields read as zero.
978 */
979 __u32 snd_cwnd;
980 __u32 srtt_us; /* Averaged RTT << 3 in usecs */
981 __u32 bpf_sock_ops_cb_flags; /* flags defined in uapi/linux/tcp.h */
982 __u32 state;
983 __u32 rtt_min;
984 __u32 snd_ssthresh;
985 __u32 rcv_nxt;
986 __u32 snd_nxt;
987 __u32 snd_una;
988 __u32 mss_cache;
989 __u32 ecn_flags;
990 __u32 rate_delivered;
991 __u32 rate_interval_us;
992 __u32 packets_out;
993 __u32 retrans_out;
994 __u32 total_retrans;
995 __u32 segs_in;
996 __u32 data_segs_in;
997 __u32 segs_out;
998 __u32 data_segs_out;
999 __u32 lost_out;
1000 __u32 sacked_out;
1001 __u32 sk_txhash;
1002 __u64 bytes_received;
1003 __u64 bytes_acked;
944}; 1004};
945 1005
1006/* Definitions for bpf_sock_ops_cb_flags */
1007#define BPF_SOCK_OPS_RTO_CB_FLAG (1<<0)
1008#define BPF_SOCK_OPS_RETRANS_CB_FLAG (1<<1)
1009#define BPF_SOCK_OPS_STATE_CB_FLAG (1<<2)
1010#define BPF_SOCK_OPS_ALL_CB_FLAGS 0x7 /* Mask of all currently
1011 * supported cb flags
1012 */
1013
946/* List of known BPF sock_ops operators. 1014/* List of known BPF sock_ops operators.
947 * New entries can only be added at the end 1015 * New entries can only be added at the end
948 */ 1016 */
@@ -976,6 +1044,43 @@ enum {
976 * a congestion threshold. RTTs above 1044 * a congestion threshold. RTTs above
977 * this indicate congestion 1045 * this indicate congestion
978 */ 1046 */
1047 BPF_SOCK_OPS_RTO_CB, /* Called when an RTO has triggered.
1048 * Arg1: value of icsk_retransmits
1049 * Arg2: value of icsk_rto
1050 * Arg3: whether RTO has expired
1051 */
1052 BPF_SOCK_OPS_RETRANS_CB, /* Called when skb is retransmitted.
1053 * Arg1: sequence number of 1st byte
1054 * Arg2: # segments
1055 * Arg3: return value of
1056 * tcp_transmit_skb (0 => success)
1057 */
1058 BPF_SOCK_OPS_STATE_CB, /* Called when TCP changes state.
1059 * Arg1: old_state
1060 * Arg2: new_state
1061 */
1062};
1063
1064/* List of TCP states. There is a build check in net/ipv4/tcp.c to detect
1065 * changes between the TCP and BPF versions. Ideally this should never happen.
1066 * If it does, we need to add code to convert them before calling
1067 * the BPF sock_ops function.
1068 */
1069enum {
1070 BPF_TCP_ESTABLISHED = 1,
1071 BPF_TCP_SYN_SENT,
1072 BPF_TCP_SYN_RECV,
1073 BPF_TCP_FIN_WAIT1,
1074 BPF_TCP_FIN_WAIT2,
1075 BPF_TCP_TIME_WAIT,
1076 BPF_TCP_CLOSE,
1077 BPF_TCP_CLOSE_WAIT,
1078 BPF_TCP_LAST_ACK,
1079 BPF_TCP_LISTEN,
1080 BPF_TCP_CLOSING, /* Now a valid state */
1081 BPF_TCP_NEW_SYN_RECV,
1082
1083 BPF_TCP_MAX_STATES /* Leave at the end! */
979}; 1084};
980 1085
981#define TCP_BPF_IW 1001 /* Set TCP initial congestion window */ 1086#define TCP_BPF_IW 1001 /* Set TCP initial congestion window */
@@ -995,7 +1100,8 @@ struct bpf_perf_event_value {
995#define BPF_DEVCG_DEV_CHAR (1ULL << 1) 1100#define BPF_DEVCG_DEV_CHAR (1ULL << 1)
996 1101
997struct bpf_cgroup_dev_ctx { 1102struct bpf_cgroup_dev_ctx {
998 __u32 access_type; /* (access << 16) | type */ 1103 /* access_type encoded as (BPF_DEVCG_ACC_* << 16) | BPF_DEVCG_DEV_* */
1104 __u32 access_type;
999 __u32 major; 1105 __u32 major;
1000 __u32 minor; 1106 __u32 minor;
1001}; 1107};
diff --git a/tools/include/uapi/linux/if_link.h b/tools/include/uapi/linux/if_link.h
new file mode 100644
index 000000000000..8616131e2c61
--- /dev/null
+++ b/tools/include/uapi/linux/if_link.h
@@ -0,0 +1,943 @@
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _UAPI_LINUX_IF_LINK_H
3#define _UAPI_LINUX_IF_LINK_H
4
5#include <linux/types.h>
6#include <linux/netlink.h>
7
8/* This struct should be in sync with struct rtnl_link_stats64 */
9struct rtnl_link_stats {
10 __u32 rx_packets; /* total packets received */
11 __u32 tx_packets; /* total packets transmitted */
12 __u32 rx_bytes; /* total bytes received */
13 __u32 tx_bytes; /* total bytes transmitted */
14 __u32 rx_errors; /* bad packets received */
15 __u32 tx_errors; /* packet transmit problems */
16 __u32 rx_dropped; /* no space in linux buffers */
17 __u32 tx_dropped; /* no space available in linux */
18 __u32 multicast; /* multicast packets received */
19 __u32 collisions;
20
21 /* detailed rx_errors: */
22 __u32 rx_length_errors;
23 __u32 rx_over_errors; /* receiver ring buff overflow */
24 __u32 rx_crc_errors; /* recved pkt with crc error */
25 __u32 rx_frame_errors; /* recv'd frame alignment error */
26 __u32 rx_fifo_errors; /* recv'r fifo overrun */
27 __u32 rx_missed_errors; /* receiver missed packet */
28
29 /* detailed tx_errors */
30 __u32 tx_aborted_errors;
31 __u32 tx_carrier_errors;
32 __u32 tx_fifo_errors;
33 __u32 tx_heartbeat_errors;
34 __u32 tx_window_errors;
35
36 /* for cslip etc */
37 __u32 rx_compressed;
38 __u32 tx_compressed;
39
40 __u32 rx_nohandler; /* dropped, no handler found */
41};
42
43/* The main device statistics structure */
44struct rtnl_link_stats64 {
45 __u64 rx_packets; /* total packets received */
46 __u64 tx_packets; /* total packets transmitted */
47 __u64 rx_bytes; /* total bytes received */
48 __u64 tx_bytes; /* total bytes transmitted */
49 __u64 rx_errors; /* bad packets received */
50 __u64 tx_errors; /* packet transmit problems */
51 __u64 rx_dropped; /* no space in linux buffers */
52 __u64 tx_dropped; /* no space available in linux */
53 __u64 multicast; /* multicast packets received */
54 __u64 collisions;
55
56 /* detailed rx_errors: */
57 __u64 rx_length_errors;
58 __u64 rx_over_errors; /* receiver ring buff overflow */
59 __u64 rx_crc_errors; /* recved pkt with crc error */
60 __u64 rx_frame_errors; /* recv'd frame alignment error */
61 __u64 rx_fifo_errors; /* recv'r fifo overrun */
62 __u64 rx_missed_errors; /* receiver missed packet */
63
64 /* detailed tx_errors */
65 __u64 tx_aborted_errors;
66 __u64 tx_carrier_errors;
67 __u64 tx_fifo_errors;
68 __u64 tx_heartbeat_errors;
69 __u64 tx_window_errors;
70
71 /* for cslip etc */
72 __u64 rx_compressed;
73 __u64 tx_compressed;
74
75 __u64 rx_nohandler; /* dropped, no handler found */
76};
77
78/* The struct should be in sync with struct ifmap */
79struct rtnl_link_ifmap {
80 __u64 mem_start;
81 __u64 mem_end;
82 __u64 base_addr;
83 __u16 irq;
84 __u8 dma;
85 __u8 port;
86};
87
88/*
89 * IFLA_AF_SPEC
90 * Contains nested attributes for address family specific attributes.
91 * Each address family may create a attribute with the address family
92 * number as type and create its own attribute structure in it.
93 *
94 * Example:
95 * [IFLA_AF_SPEC] = {
96 * [AF_INET] = {
97 * [IFLA_INET_CONF] = ...,
98 * },
99 * [AF_INET6] = {
100 * [IFLA_INET6_FLAGS] = ...,
101 * [IFLA_INET6_CONF] = ...,
102 * }
103 * }
104 */
105
106enum {
107 IFLA_UNSPEC,
108 IFLA_ADDRESS,
109 IFLA_BROADCAST,
110 IFLA_IFNAME,
111 IFLA_MTU,
112 IFLA_LINK,
113 IFLA_QDISC,
114 IFLA_STATS,
115 IFLA_COST,
116#define IFLA_COST IFLA_COST
117 IFLA_PRIORITY,
118#define IFLA_PRIORITY IFLA_PRIORITY
119 IFLA_MASTER,
120#define IFLA_MASTER IFLA_MASTER
121 IFLA_WIRELESS, /* Wireless Extension event - see wireless.h */
122#define IFLA_WIRELESS IFLA_WIRELESS
123 IFLA_PROTINFO, /* Protocol specific information for a link */
124#define IFLA_PROTINFO IFLA_PROTINFO
125 IFLA_TXQLEN,
126#define IFLA_TXQLEN IFLA_TXQLEN
127 IFLA_MAP,
128#define IFLA_MAP IFLA_MAP
129 IFLA_WEIGHT,
130#define IFLA_WEIGHT IFLA_WEIGHT
131 IFLA_OPERSTATE,
132 IFLA_LINKMODE,
133 IFLA_LINKINFO,
134#define IFLA_LINKINFO IFLA_LINKINFO
135 IFLA_NET_NS_PID,
136 IFLA_IFALIAS,
137 IFLA_NUM_VF, /* Number of VFs if device is SR-IOV PF */
138 IFLA_VFINFO_LIST,
139 IFLA_STATS64,
140 IFLA_VF_PORTS,
141 IFLA_PORT_SELF,
142 IFLA_AF_SPEC,
143 IFLA_GROUP, /* Group the device belongs to */
144 IFLA_NET_NS_FD,
145 IFLA_EXT_MASK, /* Extended info mask, VFs, etc */
146 IFLA_PROMISCUITY, /* Promiscuity count: > 0 means acts PROMISC */
147#define IFLA_PROMISCUITY IFLA_PROMISCUITY
148 IFLA_NUM_TX_QUEUES,
149 IFLA_NUM_RX_QUEUES,
150 IFLA_CARRIER,
151 IFLA_PHYS_PORT_ID,
152 IFLA_CARRIER_CHANGES,
153 IFLA_PHYS_SWITCH_ID,
154 IFLA_LINK_NETNSID,
155 IFLA_PHYS_PORT_NAME,
156 IFLA_PROTO_DOWN,
157 IFLA_GSO_MAX_SEGS,
158 IFLA_GSO_MAX_SIZE,
159 IFLA_PAD,
160 IFLA_XDP,
161 IFLA_EVENT,
162 IFLA_NEW_NETNSID,
163 IFLA_IF_NETNSID,
164 IFLA_CARRIER_UP_COUNT,
165 IFLA_CARRIER_DOWN_COUNT,
166 __IFLA_MAX
167};
168
169
170#define IFLA_MAX (__IFLA_MAX - 1)
171
172/* backwards compatibility for userspace */
173#ifndef __KERNEL__
174#define IFLA_RTA(r) ((struct rtattr*)(((char*)(r)) + NLMSG_ALIGN(sizeof(struct ifinfomsg))))
175#define IFLA_PAYLOAD(n) NLMSG_PAYLOAD(n,sizeof(struct ifinfomsg))
176#endif
177
178enum {
179 IFLA_INET_UNSPEC,
180 IFLA_INET_CONF,
181 __IFLA_INET_MAX,
182};
183
184#define IFLA_INET_MAX (__IFLA_INET_MAX - 1)
185
186/* ifi_flags.
187
188 IFF_* flags.
189
190 The only change is:
191 IFF_LOOPBACK, IFF_BROADCAST and IFF_POINTOPOINT are
192 more not changeable by user. They describe link media
193 characteristics and set by device driver.
194
195 Comments:
196 - Combination IFF_BROADCAST|IFF_POINTOPOINT is invalid
197 - If neither of these three flags are set;
198 the interface is NBMA.
199
200 - IFF_MULTICAST does not mean anything special:
201 multicasts can be used on all not-NBMA links.
202 IFF_MULTICAST means that this media uses special encapsulation
203 for multicast frames. Apparently, all IFF_POINTOPOINT and
204 IFF_BROADCAST devices are able to use multicasts too.
205 */
206
207/* IFLA_LINK.
208 For usual devices it is equal ifi_index.
209 If it is a "virtual interface" (f.e. tunnel), ifi_link
210 can point to real physical interface (f.e. for bandwidth calculations),
211 or maybe 0, what means, that real media is unknown (usual
212 for IPIP tunnels, when route to endpoint is allowed to change)
213 */
214
215/* Subtype attributes for IFLA_PROTINFO */
216enum {
217 IFLA_INET6_UNSPEC,
218 IFLA_INET6_FLAGS, /* link flags */
219 IFLA_INET6_CONF, /* sysctl parameters */
220 IFLA_INET6_STATS, /* statistics */
221 IFLA_INET6_MCAST, /* MC things. What of them? */
222 IFLA_INET6_CACHEINFO, /* time values and max reasm size */
223 IFLA_INET6_ICMP6STATS, /* statistics (icmpv6) */
224 IFLA_INET6_TOKEN, /* device token */
225 IFLA_INET6_ADDR_GEN_MODE, /* implicit address generator mode */
226 __IFLA_INET6_MAX
227};
228
229#define IFLA_INET6_MAX (__IFLA_INET6_MAX - 1)
230
231enum in6_addr_gen_mode {
232 IN6_ADDR_GEN_MODE_EUI64,
233 IN6_ADDR_GEN_MODE_NONE,
234 IN6_ADDR_GEN_MODE_STABLE_PRIVACY,
235 IN6_ADDR_GEN_MODE_RANDOM,
236};
237
238/* Bridge section */
239
240enum {
241 IFLA_BR_UNSPEC,
242 IFLA_BR_FORWARD_DELAY,
243 IFLA_BR_HELLO_TIME,
244 IFLA_BR_MAX_AGE,
245 IFLA_BR_AGEING_TIME,
246 IFLA_BR_STP_STATE,
247 IFLA_BR_PRIORITY,
248 IFLA_BR_VLAN_FILTERING,
249 IFLA_BR_VLAN_PROTOCOL,
250 IFLA_BR_GROUP_FWD_MASK,
251 IFLA_BR_ROOT_ID,
252 IFLA_BR_BRIDGE_ID,
253 IFLA_BR_ROOT_PORT,
254 IFLA_BR_ROOT_PATH_COST,
255 IFLA_BR_TOPOLOGY_CHANGE,
256 IFLA_BR_TOPOLOGY_CHANGE_DETECTED,
257 IFLA_BR_HELLO_TIMER,
258 IFLA_BR_TCN_TIMER,
259 IFLA_BR_TOPOLOGY_CHANGE_TIMER,
260 IFLA_BR_GC_TIMER,
261 IFLA_BR_GROUP_ADDR,
262 IFLA_BR_FDB_FLUSH,
263 IFLA_BR_MCAST_ROUTER,
264 IFLA_BR_MCAST_SNOOPING,
265 IFLA_BR_MCAST_QUERY_USE_IFADDR,
266 IFLA_BR_MCAST_QUERIER,
267 IFLA_BR_MCAST_HASH_ELASTICITY,
268 IFLA_BR_MCAST_HASH_MAX,
269 IFLA_BR_MCAST_LAST_MEMBER_CNT,
270 IFLA_BR_MCAST_STARTUP_QUERY_CNT,
271 IFLA_BR_MCAST_LAST_MEMBER_INTVL,
272 IFLA_BR_MCAST_MEMBERSHIP_INTVL,
273 IFLA_BR_MCAST_QUERIER_INTVL,
274 IFLA_BR_MCAST_QUERY_INTVL,
275 IFLA_BR_MCAST_QUERY_RESPONSE_INTVL,
276 IFLA_BR_MCAST_STARTUP_QUERY_INTVL,
277 IFLA_BR_NF_CALL_IPTABLES,
278 IFLA_BR_NF_CALL_IP6TABLES,
279 IFLA_BR_NF_CALL_ARPTABLES,
280 IFLA_BR_VLAN_DEFAULT_PVID,
281 IFLA_BR_PAD,
282 IFLA_BR_VLAN_STATS_ENABLED,
283 IFLA_BR_MCAST_STATS_ENABLED,
284 IFLA_BR_MCAST_IGMP_VERSION,
285 IFLA_BR_MCAST_MLD_VERSION,
286 __IFLA_BR_MAX,
287};
288
289#define IFLA_BR_MAX (__IFLA_BR_MAX - 1)
290
291struct ifla_bridge_id {
292 __u8 prio[2];
293 __u8 addr[6]; /* ETH_ALEN */
294};
295
296enum {
297 BRIDGE_MODE_UNSPEC,
298 BRIDGE_MODE_HAIRPIN,
299};
300
301enum {
302 IFLA_BRPORT_UNSPEC,
303 IFLA_BRPORT_STATE, /* Spanning tree state */
304 IFLA_BRPORT_PRIORITY, /* " priority */
305 IFLA_BRPORT_COST, /* " cost */
306 IFLA_BRPORT_MODE, /* mode (hairpin) */
307 IFLA_BRPORT_GUARD, /* bpdu guard */
308 IFLA_BRPORT_PROTECT, /* root port protection */
309 IFLA_BRPORT_FAST_LEAVE, /* multicast fast leave */
310 IFLA_BRPORT_LEARNING, /* mac learning */
311 IFLA_BRPORT_UNICAST_FLOOD, /* flood unicast traffic */
312 IFLA_BRPORT_PROXYARP, /* proxy ARP */
313 IFLA_BRPORT_LEARNING_SYNC, /* mac learning sync from device */
314 IFLA_BRPORT_PROXYARP_WIFI, /* proxy ARP for Wi-Fi */
315 IFLA_BRPORT_ROOT_ID, /* designated root */
316 IFLA_BRPORT_BRIDGE_ID, /* designated bridge */
317 IFLA_BRPORT_DESIGNATED_PORT,
318 IFLA_BRPORT_DESIGNATED_COST,
319 IFLA_BRPORT_ID,
320 IFLA_BRPORT_NO,
321 IFLA_BRPORT_TOPOLOGY_CHANGE_ACK,
322 IFLA_BRPORT_CONFIG_PENDING,
323 IFLA_BRPORT_MESSAGE_AGE_TIMER,
324 IFLA_BRPORT_FORWARD_DELAY_TIMER,
325 IFLA_BRPORT_HOLD_TIMER,
326 IFLA_BRPORT_FLUSH,
327 IFLA_BRPORT_MULTICAST_ROUTER,
328 IFLA_BRPORT_PAD,
329 IFLA_BRPORT_MCAST_FLOOD,
330 IFLA_BRPORT_MCAST_TO_UCAST,
331 IFLA_BRPORT_VLAN_TUNNEL,
332 IFLA_BRPORT_BCAST_FLOOD,
333 IFLA_BRPORT_GROUP_FWD_MASK,
334 IFLA_BRPORT_NEIGH_SUPPRESS,
335 __IFLA_BRPORT_MAX
336};
337#define IFLA_BRPORT_MAX (__IFLA_BRPORT_MAX - 1)
338
339struct ifla_cacheinfo {
340 __u32 max_reasm_len;
341 __u32 tstamp; /* ipv6InterfaceTable updated timestamp */
342 __u32 reachable_time;
343 __u32 retrans_time;
344};
345
346enum {
347 IFLA_INFO_UNSPEC,
348 IFLA_INFO_KIND,
349 IFLA_INFO_DATA,
350 IFLA_INFO_XSTATS,
351 IFLA_INFO_SLAVE_KIND,
352 IFLA_INFO_SLAVE_DATA,
353 __IFLA_INFO_MAX,
354};
355
356#define IFLA_INFO_MAX (__IFLA_INFO_MAX - 1)
357
358/* VLAN section */
359
360enum {
361 IFLA_VLAN_UNSPEC,
362 IFLA_VLAN_ID,
363 IFLA_VLAN_FLAGS,
364 IFLA_VLAN_EGRESS_QOS,
365 IFLA_VLAN_INGRESS_QOS,
366 IFLA_VLAN_PROTOCOL,
367 __IFLA_VLAN_MAX,
368};
369
370#define IFLA_VLAN_MAX (__IFLA_VLAN_MAX - 1)
371
372struct ifla_vlan_flags {
373 __u32 flags;
374 __u32 mask;
375};
376
377enum {
378 IFLA_VLAN_QOS_UNSPEC,
379 IFLA_VLAN_QOS_MAPPING,
380 __IFLA_VLAN_QOS_MAX
381};
382
383#define IFLA_VLAN_QOS_MAX (__IFLA_VLAN_QOS_MAX - 1)
384
385struct ifla_vlan_qos_mapping {
386 __u32 from;
387 __u32 to;
388};
389
390/* MACVLAN section */
391enum {
392 IFLA_MACVLAN_UNSPEC,
393 IFLA_MACVLAN_MODE,
394 IFLA_MACVLAN_FLAGS,
395 IFLA_MACVLAN_MACADDR_MODE,
396 IFLA_MACVLAN_MACADDR,
397 IFLA_MACVLAN_MACADDR_DATA,
398 IFLA_MACVLAN_MACADDR_COUNT,
399 __IFLA_MACVLAN_MAX,
400};
401
402#define IFLA_MACVLAN_MAX (__IFLA_MACVLAN_MAX - 1)
403
404enum macvlan_mode {
405 MACVLAN_MODE_PRIVATE = 1, /* don't talk to other macvlans */
406 MACVLAN_MODE_VEPA = 2, /* talk to other ports through ext bridge */
407 MACVLAN_MODE_BRIDGE = 4, /* talk to bridge ports directly */
408 MACVLAN_MODE_PASSTHRU = 8,/* take over the underlying device */
409 MACVLAN_MODE_SOURCE = 16,/* use source MAC address list to assign */
410};
411
412enum macvlan_macaddr_mode {
413 MACVLAN_MACADDR_ADD,
414 MACVLAN_MACADDR_DEL,
415 MACVLAN_MACADDR_FLUSH,
416 MACVLAN_MACADDR_SET,
417};
418
419#define MACVLAN_FLAG_NOPROMISC 1
420
421/* VRF section */
422enum {
423 IFLA_VRF_UNSPEC,
424 IFLA_VRF_TABLE,
425 __IFLA_VRF_MAX
426};
427
428#define IFLA_VRF_MAX (__IFLA_VRF_MAX - 1)
429
430enum {
431 IFLA_VRF_PORT_UNSPEC,
432 IFLA_VRF_PORT_TABLE,
433 __IFLA_VRF_PORT_MAX
434};
435
436#define IFLA_VRF_PORT_MAX (__IFLA_VRF_PORT_MAX - 1)
437
438/* MACSEC section */
439enum {
440 IFLA_MACSEC_UNSPEC,
441 IFLA_MACSEC_SCI,
442 IFLA_MACSEC_PORT,
443 IFLA_MACSEC_ICV_LEN,
444 IFLA_MACSEC_CIPHER_SUITE,
445 IFLA_MACSEC_WINDOW,
446 IFLA_MACSEC_ENCODING_SA,
447 IFLA_MACSEC_ENCRYPT,
448 IFLA_MACSEC_PROTECT,
449 IFLA_MACSEC_INC_SCI,
450 IFLA_MACSEC_ES,
451 IFLA_MACSEC_SCB,
452 IFLA_MACSEC_REPLAY_PROTECT,
453 IFLA_MACSEC_VALIDATION,
454 IFLA_MACSEC_PAD,
455 __IFLA_MACSEC_MAX,
456};
457
458#define IFLA_MACSEC_MAX (__IFLA_MACSEC_MAX - 1)
459
460enum macsec_validation_type {
461 MACSEC_VALIDATE_DISABLED = 0,
462 MACSEC_VALIDATE_CHECK = 1,
463 MACSEC_VALIDATE_STRICT = 2,
464 __MACSEC_VALIDATE_END,
465 MACSEC_VALIDATE_MAX = __MACSEC_VALIDATE_END - 1,
466};
467
468/* IPVLAN section */
469enum {
470 IFLA_IPVLAN_UNSPEC,
471 IFLA_IPVLAN_MODE,
472 IFLA_IPVLAN_FLAGS,
473 __IFLA_IPVLAN_MAX
474};
475
476#define IFLA_IPVLAN_MAX (__IFLA_IPVLAN_MAX - 1)
477
478enum ipvlan_mode {
479 IPVLAN_MODE_L2 = 0,
480 IPVLAN_MODE_L3,
481 IPVLAN_MODE_L3S,
482 IPVLAN_MODE_MAX
483};
484
485#define IPVLAN_F_PRIVATE 0x01
486#define IPVLAN_F_VEPA 0x02
487
488/* VXLAN section */
489enum {
490 IFLA_VXLAN_UNSPEC,
491 IFLA_VXLAN_ID,
492 IFLA_VXLAN_GROUP, /* group or remote address */
493 IFLA_VXLAN_LINK,
494 IFLA_VXLAN_LOCAL,
495 IFLA_VXLAN_TTL,
496 IFLA_VXLAN_TOS,
497 IFLA_VXLAN_LEARNING,
498 IFLA_VXLAN_AGEING,
499 IFLA_VXLAN_LIMIT,
500 IFLA_VXLAN_PORT_RANGE, /* source port */
501 IFLA_VXLAN_PROXY,
502 IFLA_VXLAN_RSC,
503 IFLA_VXLAN_L2MISS,
504 IFLA_VXLAN_L3MISS,
505 IFLA_VXLAN_PORT, /* destination port */
506 IFLA_VXLAN_GROUP6,
507 IFLA_VXLAN_LOCAL6,
508 IFLA_VXLAN_UDP_CSUM,
509 IFLA_VXLAN_UDP_ZERO_CSUM6_TX,
510 IFLA_VXLAN_UDP_ZERO_CSUM6_RX,
511 IFLA_VXLAN_REMCSUM_TX,
512 IFLA_VXLAN_REMCSUM_RX,
513 IFLA_VXLAN_GBP,
514 IFLA_VXLAN_REMCSUM_NOPARTIAL,
515 IFLA_VXLAN_COLLECT_METADATA,
516 IFLA_VXLAN_LABEL,
517 IFLA_VXLAN_GPE,
518 __IFLA_VXLAN_MAX
519};
520#define IFLA_VXLAN_MAX (__IFLA_VXLAN_MAX - 1)
521
522struct ifla_vxlan_port_range {
523 __be16 low;
524 __be16 high;
525};
526
527/* GENEVE section */
528enum {
529 IFLA_GENEVE_UNSPEC,
530 IFLA_GENEVE_ID,
531 IFLA_GENEVE_REMOTE,
532 IFLA_GENEVE_TTL,
533 IFLA_GENEVE_TOS,
534 IFLA_GENEVE_PORT, /* destination port */
535 IFLA_GENEVE_COLLECT_METADATA,
536 IFLA_GENEVE_REMOTE6,
537 IFLA_GENEVE_UDP_CSUM,
538 IFLA_GENEVE_UDP_ZERO_CSUM6_TX,
539 IFLA_GENEVE_UDP_ZERO_CSUM6_RX,
540 IFLA_GENEVE_LABEL,
541 __IFLA_GENEVE_MAX
542};
543#define IFLA_GENEVE_MAX (__IFLA_GENEVE_MAX - 1)
544
545/* PPP section */
546enum {
547 IFLA_PPP_UNSPEC,
548 IFLA_PPP_DEV_FD,
549 __IFLA_PPP_MAX
550};
551#define IFLA_PPP_MAX (__IFLA_PPP_MAX - 1)
552
553/* GTP section */
554
555enum ifla_gtp_role {
556 GTP_ROLE_GGSN = 0,
557 GTP_ROLE_SGSN,
558};
559
560enum {
561 IFLA_GTP_UNSPEC,
562 IFLA_GTP_FD0,
563 IFLA_GTP_FD1,
564 IFLA_GTP_PDP_HASHSIZE,
565 IFLA_GTP_ROLE,
566 __IFLA_GTP_MAX,
567};
568#define IFLA_GTP_MAX (__IFLA_GTP_MAX - 1)
569
570/* Bonding section */
571
572enum {
573 IFLA_BOND_UNSPEC,
574 IFLA_BOND_MODE,
575 IFLA_BOND_ACTIVE_SLAVE,
576 IFLA_BOND_MIIMON,
577 IFLA_BOND_UPDELAY,
578 IFLA_BOND_DOWNDELAY,
579 IFLA_BOND_USE_CARRIER,
580 IFLA_BOND_ARP_INTERVAL,
581 IFLA_BOND_ARP_IP_TARGET,
582 IFLA_BOND_ARP_VALIDATE,
583 IFLA_BOND_ARP_ALL_TARGETS,
584 IFLA_BOND_PRIMARY,
585 IFLA_BOND_PRIMARY_RESELECT,
586 IFLA_BOND_FAIL_OVER_MAC,
587 IFLA_BOND_XMIT_HASH_POLICY,
588 IFLA_BOND_RESEND_IGMP,
589 IFLA_BOND_NUM_PEER_NOTIF,
590 IFLA_BOND_ALL_SLAVES_ACTIVE,
591 IFLA_BOND_MIN_LINKS,
592 IFLA_BOND_LP_INTERVAL,
593 IFLA_BOND_PACKETS_PER_SLAVE,
594 IFLA_BOND_AD_LACP_RATE,
595 IFLA_BOND_AD_SELECT,
596 IFLA_BOND_AD_INFO,
597 IFLA_BOND_AD_ACTOR_SYS_PRIO,
598 IFLA_BOND_AD_USER_PORT_KEY,
599 IFLA_BOND_AD_ACTOR_SYSTEM,
600 IFLA_BOND_TLB_DYNAMIC_LB,
601 __IFLA_BOND_MAX,
602};
603
604#define IFLA_BOND_MAX (__IFLA_BOND_MAX - 1)
605
606enum {
607 IFLA_BOND_AD_INFO_UNSPEC,
608 IFLA_BOND_AD_INFO_AGGREGATOR,
609 IFLA_BOND_AD_INFO_NUM_PORTS,
610 IFLA_BOND_AD_INFO_ACTOR_KEY,
611 IFLA_BOND_AD_INFO_PARTNER_KEY,
612 IFLA_BOND_AD_INFO_PARTNER_MAC,
613 __IFLA_BOND_AD_INFO_MAX,
614};
615
616#define IFLA_BOND_AD_INFO_MAX (__IFLA_BOND_AD_INFO_MAX - 1)
617
618enum {
619 IFLA_BOND_SLAVE_UNSPEC,
620 IFLA_BOND_SLAVE_STATE,
621 IFLA_BOND_SLAVE_MII_STATUS,
622 IFLA_BOND_SLAVE_LINK_FAILURE_COUNT,
623 IFLA_BOND_SLAVE_PERM_HWADDR,
624 IFLA_BOND_SLAVE_QUEUE_ID,
625 IFLA_BOND_SLAVE_AD_AGGREGATOR_ID,
626 IFLA_BOND_SLAVE_AD_ACTOR_OPER_PORT_STATE,
627 IFLA_BOND_SLAVE_AD_PARTNER_OPER_PORT_STATE,
628 __IFLA_BOND_SLAVE_MAX,
629};
630
631#define IFLA_BOND_SLAVE_MAX (__IFLA_BOND_SLAVE_MAX - 1)
632
633/* SR-IOV virtual function management section */
634
635enum {
636 IFLA_VF_INFO_UNSPEC,
637 IFLA_VF_INFO,
638 __IFLA_VF_INFO_MAX,
639};
640
641#define IFLA_VF_INFO_MAX (__IFLA_VF_INFO_MAX - 1)
642
643enum {
644 IFLA_VF_UNSPEC,
645 IFLA_VF_MAC, /* Hardware queue specific attributes */
646 IFLA_VF_VLAN, /* VLAN ID and QoS */
647 IFLA_VF_TX_RATE, /* Max TX Bandwidth Allocation */
648 IFLA_VF_SPOOFCHK, /* Spoof Checking on/off switch */
649 IFLA_VF_LINK_STATE, /* link state enable/disable/auto switch */
650 IFLA_VF_RATE, /* Min and Max TX Bandwidth Allocation */
651 IFLA_VF_RSS_QUERY_EN, /* RSS Redirection Table and Hash Key query
652 * on/off switch
653 */
654 IFLA_VF_STATS, /* network device statistics */
655 IFLA_VF_TRUST, /* Trust VF */
656 IFLA_VF_IB_NODE_GUID, /* VF Infiniband node GUID */
657 IFLA_VF_IB_PORT_GUID, /* VF Infiniband port GUID */
658 IFLA_VF_VLAN_LIST, /* nested list of vlans, option for QinQ */
659 __IFLA_VF_MAX,
660};
661
662#define IFLA_VF_MAX (__IFLA_VF_MAX - 1)
663
664struct ifla_vf_mac {
665 __u32 vf;
666 __u8 mac[32]; /* MAX_ADDR_LEN */
667};
668
669struct ifla_vf_vlan {
670 __u32 vf;
671 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
672 __u32 qos;
673};
674
675enum {
676 IFLA_VF_VLAN_INFO_UNSPEC,
677 IFLA_VF_VLAN_INFO, /* VLAN ID, QoS and VLAN protocol */
678 __IFLA_VF_VLAN_INFO_MAX,
679};
680
681#define IFLA_VF_VLAN_INFO_MAX (__IFLA_VF_VLAN_INFO_MAX - 1)
682#define MAX_VLAN_LIST_LEN 1
683
684struct ifla_vf_vlan_info {
685 __u32 vf;
686 __u32 vlan; /* 0 - 4095, 0 disables VLAN filter */
687 __u32 qos;
688 __be16 vlan_proto; /* VLAN protocol either 802.1Q or 802.1ad */
689};
690
691struct ifla_vf_tx_rate {
692 __u32 vf;
693 __u32 rate; /* Max TX bandwidth in Mbps, 0 disables throttling */
694};
695
696struct ifla_vf_rate {
697 __u32 vf;
698 __u32 min_tx_rate; /* Min Bandwidth in Mbps */
699 __u32 max_tx_rate; /* Max Bandwidth in Mbps */
700};
701
702struct ifla_vf_spoofchk {
703 __u32 vf;
704 __u32 setting;
705};
706
707struct ifla_vf_guid {
708 __u32 vf;
709 __u64 guid;
710};
711
712enum {
713 IFLA_VF_LINK_STATE_AUTO, /* link state of the uplink */
714 IFLA_VF_LINK_STATE_ENABLE, /* link always up */
715 IFLA_VF_LINK_STATE_DISABLE, /* link always down */
716 __IFLA_VF_LINK_STATE_MAX,
717};
718
719struct ifla_vf_link_state {
720 __u32 vf;
721 __u32 link_state;
722};
723
724struct ifla_vf_rss_query_en {
725 __u32 vf;
726 __u32 setting;
727};
728
729enum {
730 IFLA_VF_STATS_RX_PACKETS,
731 IFLA_VF_STATS_TX_PACKETS,
732 IFLA_VF_STATS_RX_BYTES,
733 IFLA_VF_STATS_TX_BYTES,
734 IFLA_VF_STATS_BROADCAST,
735 IFLA_VF_STATS_MULTICAST,
736 IFLA_VF_STATS_PAD,
737 IFLA_VF_STATS_RX_DROPPED,
738 IFLA_VF_STATS_TX_DROPPED,
739 __IFLA_VF_STATS_MAX,
740};
741
742#define IFLA_VF_STATS_MAX (__IFLA_VF_STATS_MAX - 1)
743
744struct ifla_vf_trust {
745 __u32 vf;
746 __u32 setting;
747};
748
749/* VF ports management section
750 *
751 * Nested layout of set/get msg is:
752 *
753 * [IFLA_NUM_VF]
754 * [IFLA_VF_PORTS]
755 * [IFLA_VF_PORT]
756 * [IFLA_PORT_*], ...
757 * [IFLA_VF_PORT]
758 * [IFLA_PORT_*], ...
759 * ...
760 * [IFLA_PORT_SELF]
761 * [IFLA_PORT_*], ...
762 */
763
764enum {
765 IFLA_VF_PORT_UNSPEC,
766 IFLA_VF_PORT, /* nest */
767 __IFLA_VF_PORT_MAX,
768};
769
770#define IFLA_VF_PORT_MAX (__IFLA_VF_PORT_MAX - 1)
771
772enum {
773 IFLA_PORT_UNSPEC,
774 IFLA_PORT_VF, /* __u32 */
775 IFLA_PORT_PROFILE, /* string */
776 IFLA_PORT_VSI_TYPE, /* 802.1Qbg (pre-)standard VDP */
777 IFLA_PORT_INSTANCE_UUID, /* binary UUID */
778 IFLA_PORT_HOST_UUID, /* binary UUID */
779 IFLA_PORT_REQUEST, /* __u8 */
780 IFLA_PORT_RESPONSE, /* __u16, output only */
781 __IFLA_PORT_MAX,
782};
783
784#define IFLA_PORT_MAX (__IFLA_PORT_MAX - 1)
785
786#define PORT_PROFILE_MAX 40
787#define PORT_UUID_MAX 16
788#define PORT_SELF_VF -1
789
790enum {
791 PORT_REQUEST_PREASSOCIATE = 0,
792 PORT_REQUEST_PREASSOCIATE_RR,
793 PORT_REQUEST_ASSOCIATE,
794 PORT_REQUEST_DISASSOCIATE,
795};
796
797enum {
798 PORT_VDP_RESPONSE_SUCCESS = 0,
799 PORT_VDP_RESPONSE_INVALID_FORMAT,
800 PORT_VDP_RESPONSE_INSUFFICIENT_RESOURCES,
801 PORT_VDP_RESPONSE_UNUSED_VTID,
802 PORT_VDP_RESPONSE_VTID_VIOLATION,
803 PORT_VDP_RESPONSE_VTID_VERSION_VIOALTION,
804 PORT_VDP_RESPONSE_OUT_OF_SYNC,
805 /* 0x08-0xFF reserved for future VDP use */
806 PORT_PROFILE_RESPONSE_SUCCESS = 0x100,
807 PORT_PROFILE_RESPONSE_INPROGRESS,
808 PORT_PROFILE_RESPONSE_INVALID,
809 PORT_PROFILE_RESPONSE_BADSTATE,
810 PORT_PROFILE_RESPONSE_INSUFFICIENT_RESOURCES,
811 PORT_PROFILE_RESPONSE_ERROR,
812};
813
814struct ifla_port_vsi {
815 __u8 vsi_mgr_id;
816 __u8 vsi_type_id[3];
817 __u8 vsi_type_version;
818 __u8 pad[3];
819};
820
821
822/* IPoIB section */
823
824enum {
825 IFLA_IPOIB_UNSPEC,
826 IFLA_IPOIB_PKEY,
827 IFLA_IPOIB_MODE,
828 IFLA_IPOIB_UMCAST,
829 __IFLA_IPOIB_MAX
830};
831
832enum {
833 IPOIB_MODE_DATAGRAM = 0, /* using unreliable datagram QPs */
834 IPOIB_MODE_CONNECTED = 1, /* using connected QPs */
835};
836
837#define IFLA_IPOIB_MAX (__IFLA_IPOIB_MAX - 1)
838
839
840/* HSR section */
841
842enum {
843 IFLA_HSR_UNSPEC,
844 IFLA_HSR_SLAVE1,
845 IFLA_HSR_SLAVE2,
846 IFLA_HSR_MULTICAST_SPEC, /* Last byte of supervision addr */
847 IFLA_HSR_SUPERVISION_ADDR, /* Supervision frame multicast addr */
848 IFLA_HSR_SEQ_NR,
849 IFLA_HSR_VERSION, /* HSR version */
850 __IFLA_HSR_MAX,
851};
852
853#define IFLA_HSR_MAX (__IFLA_HSR_MAX - 1)
854
855/* STATS section */
856
857struct if_stats_msg {
858 __u8 family;
859 __u8 pad1;
860 __u16 pad2;
861 __u32 ifindex;
862 __u32 filter_mask;
863};
864
865/* A stats attribute can be netdev specific or a global stat.
866 * For netdev stats, lets use the prefix IFLA_STATS_LINK_*
867 */
868enum {
869 IFLA_STATS_UNSPEC, /* also used as 64bit pad attribute */
870 IFLA_STATS_LINK_64,
871 IFLA_STATS_LINK_XSTATS,
872 IFLA_STATS_LINK_XSTATS_SLAVE,
873 IFLA_STATS_LINK_OFFLOAD_XSTATS,
874 IFLA_STATS_AF_SPEC,
875 __IFLA_STATS_MAX,
876};
877
878#define IFLA_STATS_MAX (__IFLA_STATS_MAX - 1)
879
880#define IFLA_STATS_FILTER_BIT(ATTR) (1 << (ATTR - 1))
881
882/* These are embedded into IFLA_STATS_LINK_XSTATS:
883 * [IFLA_STATS_LINK_XSTATS]
884 * -> [LINK_XSTATS_TYPE_xxx]
885 * -> [rtnl link type specific attributes]
886 */
887enum {
888 LINK_XSTATS_TYPE_UNSPEC,
889 LINK_XSTATS_TYPE_BRIDGE,
890 __LINK_XSTATS_TYPE_MAX
891};
892#define LINK_XSTATS_TYPE_MAX (__LINK_XSTATS_TYPE_MAX - 1)
893
894/* These are stats embedded into IFLA_STATS_LINK_OFFLOAD_XSTATS */
895enum {
896 IFLA_OFFLOAD_XSTATS_UNSPEC,
897 IFLA_OFFLOAD_XSTATS_CPU_HIT, /* struct rtnl_link_stats64 */
898 __IFLA_OFFLOAD_XSTATS_MAX
899};
900#define IFLA_OFFLOAD_XSTATS_MAX (__IFLA_OFFLOAD_XSTATS_MAX - 1)
901
902/* XDP section */
903
904#define XDP_FLAGS_UPDATE_IF_NOEXIST (1U << 0)
905#define XDP_FLAGS_SKB_MODE (1U << 1)
906#define XDP_FLAGS_DRV_MODE (1U << 2)
907#define XDP_FLAGS_HW_MODE (1U << 3)
908#define XDP_FLAGS_MODES (XDP_FLAGS_SKB_MODE | \
909 XDP_FLAGS_DRV_MODE | \
910 XDP_FLAGS_HW_MODE)
911#define XDP_FLAGS_MASK (XDP_FLAGS_UPDATE_IF_NOEXIST | \
912 XDP_FLAGS_MODES)
913
914/* These are stored into IFLA_XDP_ATTACHED on dump. */
915enum {
916 XDP_ATTACHED_NONE = 0,
917 XDP_ATTACHED_DRV,
918 XDP_ATTACHED_SKB,
919 XDP_ATTACHED_HW,
920};
921
922enum {
923 IFLA_XDP_UNSPEC,
924 IFLA_XDP_FD,
925 IFLA_XDP_ATTACHED,
926 IFLA_XDP_FLAGS,
927 IFLA_XDP_PROG_ID,
928 __IFLA_XDP_MAX,
929};
930
931#define IFLA_XDP_MAX (__IFLA_XDP_MAX - 1)
932
933enum {
934 IFLA_EVENT_NONE,
935 IFLA_EVENT_REBOOT, /* internal reset / reboot */
936 IFLA_EVENT_FEATURES, /* change in offload features */
937 IFLA_EVENT_BONDING_FAILOVER, /* change in active slave */
938 IFLA_EVENT_NOTIFY_PEERS, /* re-sent grat. arp/ndisc */
939 IFLA_EVENT_IGMP_RESEND, /* re-sent IGMP JOIN */
940 IFLA_EVENT_BONDING_OPTIONS, /* change in bonding options */
941};
942
943#endif /* _UAPI_LINUX_IF_LINK_H */
diff --git a/tools/include/uapi/linux/kvm.h b/tools/include/uapi/linux/kvm.h
index 496e59a2738b..8fb90a0819c3 100644
--- a/tools/include/uapi/linux/kvm.h
+++ b/tools/include/uapi/linux/kvm.h
@@ -932,6 +932,8 @@ struct kvm_ppc_resize_hpt {
932#define KVM_CAP_HYPERV_SYNIC2 148 932#define KVM_CAP_HYPERV_SYNIC2 148
933#define KVM_CAP_HYPERV_VP_INDEX 149 933#define KVM_CAP_HYPERV_VP_INDEX 149
934#define KVM_CAP_S390_AIS_MIGRATION 150 934#define KVM_CAP_S390_AIS_MIGRATION 150
935#define KVM_CAP_PPC_GET_CPU_CHAR 151
936#define KVM_CAP_S390_BPB 152
935 937
936#ifdef KVM_CAP_IRQ_ROUTING 938#ifdef KVM_CAP_IRQ_ROUTING
937 939
@@ -1261,6 +1263,8 @@ struct kvm_s390_ucas_mapping {
1261#define KVM_PPC_CONFIGURE_V3_MMU _IOW(KVMIO, 0xaf, struct kvm_ppc_mmuv3_cfg) 1263#define KVM_PPC_CONFIGURE_V3_MMU _IOW(KVMIO, 0xaf, struct kvm_ppc_mmuv3_cfg)
1262/* Available with KVM_CAP_PPC_RADIX_MMU */ 1264/* Available with KVM_CAP_PPC_RADIX_MMU */
1263#define KVM_PPC_GET_RMMU_INFO _IOW(KVMIO, 0xb0, struct kvm_ppc_rmmu_info) 1265#define KVM_PPC_GET_RMMU_INFO _IOW(KVMIO, 0xb0, struct kvm_ppc_rmmu_info)
1266/* Available with KVM_CAP_PPC_GET_CPU_CHAR */
1267#define KVM_PPC_GET_CPU_CHAR _IOR(KVMIO, 0xb1, struct kvm_ppc_cpu_char)
1264 1268
1265/* ioctl for vm fd */ 1269/* ioctl for vm fd */
1266#define KVM_CREATE_DEVICE _IOWR(KVMIO, 0xe0, struct kvm_create_device) 1270#define KVM_CREATE_DEVICE _IOWR(KVMIO, 0xe0, struct kvm_create_device)
diff --git a/tools/include/uapi/linux/netlink.h b/tools/include/uapi/linux/netlink.h
new file mode 100644
index 000000000000..776bc92e9118
--- /dev/null
+++ b/tools/include/uapi/linux/netlink.h
@@ -0,0 +1,251 @@
1/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
2#ifndef _UAPI__LINUX_NETLINK_H
3#define _UAPI__LINUX_NETLINK_H
4
5#include <linux/kernel.h>
6#include <linux/socket.h> /* for __kernel_sa_family_t */
7#include <linux/types.h>
8
9#define NETLINK_ROUTE 0 /* Routing/device hook */
10#define NETLINK_UNUSED 1 /* Unused number */
11#define NETLINK_USERSOCK 2 /* Reserved for user mode socket protocols */
12#define NETLINK_FIREWALL 3 /* Unused number, formerly ip_queue */
13#define NETLINK_SOCK_DIAG 4 /* socket monitoring */
14#define NETLINK_NFLOG 5 /* netfilter/iptables ULOG */
15#define NETLINK_XFRM 6 /* ipsec */
16#define NETLINK_SELINUX 7 /* SELinux event notifications */
17#define NETLINK_ISCSI 8 /* Open-iSCSI */
18#define NETLINK_AUDIT 9 /* auditing */
19#define NETLINK_FIB_LOOKUP 10
20#define NETLINK_CONNECTOR 11
21#define NETLINK_NETFILTER 12 /* netfilter subsystem */
22#define NETLINK_IP6_FW 13
23#define NETLINK_DNRTMSG 14 /* DECnet routing messages */
24#define NETLINK_KOBJECT_UEVENT 15 /* Kernel messages to userspace */
25#define NETLINK_GENERIC 16
26/* leave room for NETLINK_DM (DM Events) */
27#define NETLINK_SCSITRANSPORT 18 /* SCSI Transports */
28#define NETLINK_ECRYPTFS 19
29#define NETLINK_RDMA 20
30#define NETLINK_CRYPTO 21 /* Crypto layer */
31#define NETLINK_SMC 22 /* SMC monitoring */
32
33#define NETLINK_INET_DIAG NETLINK_SOCK_DIAG
34
35#define MAX_LINKS 32
36
37struct sockaddr_nl {
38 __kernel_sa_family_t nl_family; /* AF_NETLINK */
39 unsigned short nl_pad; /* zero */
40 __u32 nl_pid; /* port ID */
41 __u32 nl_groups; /* multicast groups mask */
42};
43
44struct nlmsghdr {
45 __u32 nlmsg_len; /* Length of message including header */
46 __u16 nlmsg_type; /* Message content */
47 __u16 nlmsg_flags; /* Additional flags */
48 __u32 nlmsg_seq; /* Sequence number */
49 __u32 nlmsg_pid; /* Sending process port ID */
50};
51
52/* Flags values */
53
54#define NLM_F_REQUEST 0x01 /* It is request message. */
55#define NLM_F_MULTI 0x02 /* Multipart message, terminated by NLMSG_DONE */
56#define NLM_F_ACK 0x04 /* Reply with ack, with zero or error code */
57#define NLM_F_ECHO 0x08 /* Echo this request */
58#define NLM_F_DUMP_INTR 0x10 /* Dump was inconsistent due to sequence change */
59#define NLM_F_DUMP_FILTERED 0x20 /* Dump was filtered as requested */
60
61/* Modifiers to GET request */
62#define NLM_F_ROOT 0x100 /* specify tree root */
63#define NLM_F_MATCH 0x200 /* return all matching */
64#define NLM_F_ATOMIC 0x400 /* atomic GET */
65#define NLM_F_DUMP (NLM_F_ROOT|NLM_F_MATCH)
66
67/* Modifiers to NEW request */
68#define NLM_F_REPLACE 0x100 /* Override existing */
69#define NLM_F_EXCL 0x200 /* Do not touch, if it exists */
70#define NLM_F_CREATE 0x400 /* Create, if it does not exist */
71#define NLM_F_APPEND 0x800 /* Add to end of list */
72
73/* Modifiers to DELETE request */
74#define NLM_F_NONREC 0x100 /* Do not delete recursively */
75
76/* Flags for ACK message */
77#define NLM_F_CAPPED 0x100 /* request was capped */
78#define NLM_F_ACK_TLVS 0x200 /* extended ACK TVLs were included */
79
80/*
81 4.4BSD ADD NLM_F_CREATE|NLM_F_EXCL
82 4.4BSD CHANGE NLM_F_REPLACE
83
84 True CHANGE NLM_F_CREATE|NLM_F_REPLACE
85 Append NLM_F_CREATE
86 Check NLM_F_EXCL
87 */
88
89#define NLMSG_ALIGNTO 4U
90#define NLMSG_ALIGN(len) ( ((len)+NLMSG_ALIGNTO-1) & ~(NLMSG_ALIGNTO-1) )
91#define NLMSG_HDRLEN ((int) NLMSG_ALIGN(sizeof(struct nlmsghdr)))
92#define NLMSG_LENGTH(len) ((len) + NLMSG_HDRLEN)
93#define NLMSG_SPACE(len) NLMSG_ALIGN(NLMSG_LENGTH(len))
94#define NLMSG_DATA(nlh) ((void*)(((char*)nlh) + NLMSG_LENGTH(0)))
95#define NLMSG_NEXT(nlh,len) ((len) -= NLMSG_ALIGN((nlh)->nlmsg_len), \
96 (struct nlmsghdr*)(((char*)(nlh)) + NLMSG_ALIGN((nlh)->nlmsg_len)))
97#define NLMSG_OK(nlh,len) ((len) >= (int)sizeof(struct nlmsghdr) && \
98 (nlh)->nlmsg_len >= sizeof(struct nlmsghdr) && \
99 (nlh)->nlmsg_len <= (len))
100#define NLMSG_PAYLOAD(nlh,len) ((nlh)->nlmsg_len - NLMSG_SPACE((len)))
101
102#define NLMSG_NOOP 0x1 /* Nothing. */
103#define NLMSG_ERROR 0x2 /* Error */
104#define NLMSG_DONE 0x3 /* End of a dump */
105#define NLMSG_OVERRUN 0x4 /* Data lost */
106
107#define NLMSG_MIN_TYPE 0x10 /* < 0x10: reserved control messages */
108
109struct nlmsgerr {
110 int error;
111 struct nlmsghdr msg;
112 /*
113 * followed by the message contents unless NETLINK_CAP_ACK was set
114 * or the ACK indicates success (error == 0)
115 * message length is aligned with NLMSG_ALIGN()
116 */
117 /*
118 * followed by TLVs defined in enum nlmsgerr_attrs
119 * if NETLINK_EXT_ACK was set
120 */
121};
122
123/**
124 * enum nlmsgerr_attrs - nlmsgerr attributes
125 * @NLMSGERR_ATTR_UNUSED: unused
126 * @NLMSGERR_ATTR_MSG: error message string (string)
127 * @NLMSGERR_ATTR_OFFS: offset of the invalid attribute in the original
128 * message, counting from the beginning of the header (u32)
129 * @NLMSGERR_ATTR_COOKIE: arbitrary subsystem specific cookie to
130 * be used - in the success case - to identify a created
131 * object or operation or similar (binary)
132 * @__NLMSGERR_ATTR_MAX: number of attributes
133 * @NLMSGERR_ATTR_MAX: highest attribute number
134 */
135enum nlmsgerr_attrs {
136 NLMSGERR_ATTR_UNUSED,
137 NLMSGERR_ATTR_MSG,
138 NLMSGERR_ATTR_OFFS,
139 NLMSGERR_ATTR_COOKIE,
140
141 __NLMSGERR_ATTR_MAX,
142 NLMSGERR_ATTR_MAX = __NLMSGERR_ATTR_MAX - 1
143};
144
145#define NETLINK_ADD_MEMBERSHIP 1
146#define NETLINK_DROP_MEMBERSHIP 2
147#define NETLINK_PKTINFO 3
148#define NETLINK_BROADCAST_ERROR 4
149#define NETLINK_NO_ENOBUFS 5
150#ifndef __KERNEL__
151#define NETLINK_RX_RING 6
152#define NETLINK_TX_RING 7
153#endif
154#define NETLINK_LISTEN_ALL_NSID 8
155#define NETLINK_LIST_MEMBERSHIPS 9
156#define NETLINK_CAP_ACK 10
157#define NETLINK_EXT_ACK 11
158
159struct nl_pktinfo {
160 __u32 group;
161};
162
163struct nl_mmap_req {
164 unsigned int nm_block_size;
165 unsigned int nm_block_nr;
166 unsigned int nm_frame_size;
167 unsigned int nm_frame_nr;
168};
169
170struct nl_mmap_hdr {
171 unsigned int nm_status;
172 unsigned int nm_len;
173 __u32 nm_group;
174 /* credentials */
175 __u32 nm_pid;
176 __u32 nm_uid;
177 __u32 nm_gid;
178};
179
180#ifndef __KERNEL__
181enum nl_mmap_status {
182 NL_MMAP_STATUS_UNUSED,
183 NL_MMAP_STATUS_RESERVED,
184 NL_MMAP_STATUS_VALID,
185 NL_MMAP_STATUS_COPY,
186 NL_MMAP_STATUS_SKIP,
187};
188
189#define NL_MMAP_MSG_ALIGNMENT NLMSG_ALIGNTO
190#define NL_MMAP_MSG_ALIGN(sz) __ALIGN_KERNEL(sz, NL_MMAP_MSG_ALIGNMENT)
191#define NL_MMAP_HDRLEN NL_MMAP_MSG_ALIGN(sizeof(struct nl_mmap_hdr))
192#endif
193
194#define NET_MAJOR 36 /* Major 36 is reserved for networking */
195
196enum {
197 NETLINK_UNCONNECTED = 0,
198 NETLINK_CONNECTED,
199};
200
201/*
202 * <------- NLA_HDRLEN ------> <-- NLA_ALIGN(payload)-->
203 * +---------------------+- - -+- - - - - - - - - -+- - -+
204 * | Header | Pad | Payload | Pad |
205 * | (struct nlattr) | ing | | ing |
206 * +---------------------+- - -+- - - - - - - - - -+- - -+
207 * <-------------- nlattr->nla_len -------------->
208 */
209
210struct nlattr {
211 __u16 nla_len;
212 __u16 nla_type;
213};
214
215/*
216 * nla_type (16 bits)
217 * +---+---+-------------------------------+
218 * | N | O | Attribute Type |
219 * +---+---+-------------------------------+
220 * N := Carries nested attributes
221 * O := Payload stored in network byte order
222 *
223 * Note: The N and O flag are mutually exclusive.
224 */
225#define NLA_F_NESTED (1 << 15)
226#define NLA_F_NET_BYTEORDER (1 << 14)
227#define NLA_TYPE_MASK ~(NLA_F_NESTED | NLA_F_NET_BYTEORDER)
228
229#define NLA_ALIGNTO 4
230#define NLA_ALIGN(len) (((len) + NLA_ALIGNTO - 1) & ~(NLA_ALIGNTO - 1))
231#define NLA_HDRLEN ((int) NLA_ALIGN(sizeof(struct nlattr)))
232
233/* Generic 32 bitflags attribute content sent to the kernel.
234 *
235 * The value is a bitmap that defines the values being set
236 * The selector is a bitmask that defines which value is legit
237 *
238 * Examples:
239 * value = 0x0, and selector = 0x1
240 * implies we are selecting bit 1 and we want to set its value to 0.
241 *
242 * value = 0x2, and selector = 0x2
243 * implies we are selecting bit 2 and we want to set its value to 1.
244 *
245 */
246struct nla_bitfield32 {
247 __u32 value;
248 __u32 selector;
249};
250
251#endif /* _UAPI__LINUX_NETLINK_H */
diff --git a/tools/include/uapi/linux/perf_event.h b/tools/include/uapi/linux/perf_event.h
index b9a4953018ed..e0739a1aa4b2 100644
--- a/tools/include/uapi/linux/perf_event.h
+++ b/tools/include/uapi/linux/perf_event.h
@@ -418,6 +418,27 @@ struct perf_event_attr {
418 __u16 __reserved_2; /* align to __u64 */ 418 __u16 __reserved_2; /* align to __u64 */
419}; 419};
420 420
421/*
422 * Structure used by below PERF_EVENT_IOC_QUERY_BPF command
423 * to query bpf programs attached to the same perf tracepoint
424 * as the given perf event.
425 */
426struct perf_event_query_bpf {
427 /*
428 * The below ids array length
429 */
430 __u32 ids_len;
431 /*
432 * Set by the kernel to indicate the number of
433 * available programs
434 */
435 __u32 prog_cnt;
436 /*
437 * User provided buffer to store program ids
438 */
439 __u32 ids[0];
440};
441
421#define perf_flags(attr) (*(&(attr)->read_format + 1)) 442#define perf_flags(attr) (*(&(attr)->read_format + 1))
422 443
423/* 444/*
@@ -433,6 +454,7 @@ struct perf_event_attr {
433#define PERF_EVENT_IOC_ID _IOR('$', 7, __u64 *) 454#define PERF_EVENT_IOC_ID _IOR('$', 7, __u64 *)
434#define PERF_EVENT_IOC_SET_BPF _IOW('$', 8, __u32) 455#define PERF_EVENT_IOC_SET_BPF _IOW('$', 8, __u32)
435#define PERF_EVENT_IOC_PAUSE_OUTPUT _IOW('$', 9, __u32) 456#define PERF_EVENT_IOC_PAUSE_OUTPUT _IOW('$', 9, __u32)
457#define PERF_EVENT_IOC_QUERY_BPF _IOWR('$', 10, struct perf_event_query_bpf *)
436 458
437enum perf_event_ioc_flags { 459enum perf_event_ioc_flags {
438 PERF_IOC_FLAG_GROUP = 1U << 0, 460 PERF_IOC_FLAG_GROUP = 1U << 0,
@@ -612,9 +634,12 @@ struct perf_event_mmap_page {
612 */ 634 */
613#define PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT (1 << 12) 635#define PERF_RECORD_MISC_PROC_MAP_PARSE_TIMEOUT (1 << 12)
614/* 636/*
615 * PERF_RECORD_MISC_MMAP_DATA and PERF_RECORD_MISC_COMM_EXEC are used on 637 * Following PERF_RECORD_MISC_* are used on different
616 * different events so can reuse the same bit position. 638 * events, so can reuse the same bit position:
617 * Ditto PERF_RECORD_MISC_SWITCH_OUT. 639 *
640 * PERF_RECORD_MISC_MMAP_DATA - PERF_RECORD_MMAP* events
641 * PERF_RECORD_MISC_COMM_EXEC - PERF_RECORD_COMM event
642 * PERF_RECORD_MISC_SWITCH_OUT - PERF_RECORD_SWITCH* events
618 */ 643 */
619#define PERF_RECORD_MISC_MMAP_DATA (1 << 13) 644#define PERF_RECORD_MISC_MMAP_DATA (1 << 13)
620#define PERF_RECORD_MISC_COMM_EXEC (1 << 13) 645#define PERF_RECORD_MISC_COMM_EXEC (1 << 13)
@@ -864,6 +889,7 @@ enum perf_event_type {
864 * struct perf_event_header header; 889 * struct perf_event_header header;
865 * u32 pid; 890 * u32 pid;
866 * u32 tid; 891 * u32 tid;
892 * struct sample_id sample_id;
867 * }; 893 * };
868 */ 894 */
869 PERF_RECORD_ITRACE_START = 12, 895 PERF_RECORD_ITRACE_START = 12,
diff --git a/tools/include/uapi/linux/sched.h b/tools/include/uapi/linux/sched.h
index 30a9e51bbb1e..22627f80063e 100644
--- a/tools/include/uapi/linux/sched.h
+++ b/tools/include/uapi/linux/sched.h
@@ -49,5 +49,10 @@
49 */ 49 */
50#define SCHED_FLAG_RESET_ON_FORK 0x01 50#define SCHED_FLAG_RESET_ON_FORK 0x01
51#define SCHED_FLAG_RECLAIM 0x02 51#define SCHED_FLAG_RECLAIM 0x02
52#define SCHED_FLAG_DL_OVERRUN 0x04
53
54#define SCHED_FLAG_ALL (SCHED_FLAG_RESET_ON_FORK | \
55 SCHED_FLAG_RECLAIM | \
56 SCHED_FLAG_DL_OVERRUN)
52 57
53#endif /* _UAPI_LINUX_SCHED_H */ 58#endif /* _UAPI_LINUX_SCHED_H */
diff --git a/tools/include/uapi/sound/asound.h b/tools/include/uapi/sound/asound.h
index c227ccba60ae..07d61583fd02 100644
--- a/tools/include/uapi/sound/asound.h
+++ b/tools/include/uapi/sound/asound.h
@@ -214,6 +214,11 @@ typedef int __bitwise snd_pcm_format_t;
214#define SNDRV_PCM_FORMAT_IMA_ADPCM ((__force snd_pcm_format_t) 22) 214#define SNDRV_PCM_FORMAT_IMA_ADPCM ((__force snd_pcm_format_t) 22)
215#define SNDRV_PCM_FORMAT_MPEG ((__force snd_pcm_format_t) 23) 215#define SNDRV_PCM_FORMAT_MPEG ((__force snd_pcm_format_t) 23)
216#define SNDRV_PCM_FORMAT_GSM ((__force snd_pcm_format_t) 24) 216#define SNDRV_PCM_FORMAT_GSM ((__force snd_pcm_format_t) 24)
217#define SNDRV_PCM_FORMAT_S20_LE ((__force snd_pcm_format_t) 25) /* in four bytes, LSB justified */
218#define SNDRV_PCM_FORMAT_S20_BE ((__force snd_pcm_format_t) 26) /* in four bytes, LSB justified */
219#define SNDRV_PCM_FORMAT_U20_LE ((__force snd_pcm_format_t) 27) /* in four bytes, LSB justified */
220#define SNDRV_PCM_FORMAT_U20_BE ((__force snd_pcm_format_t) 28) /* in four bytes, LSB justified */
221/* gap in the numbering for a future standard linear format */
217#define SNDRV_PCM_FORMAT_SPECIAL ((__force snd_pcm_format_t) 31) 222#define SNDRV_PCM_FORMAT_SPECIAL ((__force snd_pcm_format_t) 31)
218#define SNDRV_PCM_FORMAT_S24_3LE ((__force snd_pcm_format_t) 32) /* in three bytes */ 223#define SNDRV_PCM_FORMAT_S24_3LE ((__force snd_pcm_format_t) 32) /* in three bytes */
219#define SNDRV_PCM_FORMAT_S24_3BE ((__force snd_pcm_format_t) 33) /* in three bytes */ 224#define SNDRV_PCM_FORMAT_S24_3BE ((__force snd_pcm_format_t) 33) /* in three bytes */
@@ -248,6 +253,8 @@ typedef int __bitwise snd_pcm_format_t;
248#define SNDRV_PCM_FORMAT_FLOAT SNDRV_PCM_FORMAT_FLOAT_LE 253#define SNDRV_PCM_FORMAT_FLOAT SNDRV_PCM_FORMAT_FLOAT_LE
249#define SNDRV_PCM_FORMAT_FLOAT64 SNDRV_PCM_FORMAT_FLOAT64_LE 254#define SNDRV_PCM_FORMAT_FLOAT64 SNDRV_PCM_FORMAT_FLOAT64_LE
250#define SNDRV_PCM_FORMAT_IEC958_SUBFRAME SNDRV_PCM_FORMAT_IEC958_SUBFRAME_LE 255#define SNDRV_PCM_FORMAT_IEC958_SUBFRAME SNDRV_PCM_FORMAT_IEC958_SUBFRAME_LE
256#define SNDRV_PCM_FORMAT_S20 SNDRV_PCM_FORMAT_S20_LE
257#define SNDRV_PCM_FORMAT_U20 SNDRV_PCM_FORMAT_U20_LE
251#endif 258#endif
252#ifdef SNDRV_BIG_ENDIAN 259#ifdef SNDRV_BIG_ENDIAN
253#define SNDRV_PCM_FORMAT_S16 SNDRV_PCM_FORMAT_S16_BE 260#define SNDRV_PCM_FORMAT_S16 SNDRV_PCM_FORMAT_S16_BE
@@ -259,6 +266,8 @@ typedef int __bitwise snd_pcm_format_t;
259#define SNDRV_PCM_FORMAT_FLOAT SNDRV_PCM_FORMAT_FLOAT_BE 266#define SNDRV_PCM_FORMAT_FLOAT SNDRV_PCM_FORMAT_FLOAT_BE
260#define SNDRV_PCM_FORMAT_FLOAT64 SNDRV_PCM_FORMAT_FLOAT64_BE 267#define SNDRV_PCM_FORMAT_FLOAT64 SNDRV_PCM_FORMAT_FLOAT64_BE
261#define SNDRV_PCM_FORMAT_IEC958_SUBFRAME SNDRV_PCM_FORMAT_IEC958_SUBFRAME_BE 268#define SNDRV_PCM_FORMAT_IEC958_SUBFRAME SNDRV_PCM_FORMAT_IEC958_SUBFRAME_BE
269#define SNDRV_PCM_FORMAT_S20 SNDRV_PCM_FORMAT_S20_BE
270#define SNDRV_PCM_FORMAT_U20 SNDRV_PCM_FORMAT_U20_BE
262#endif 271#endif
263 272
264typedef int __bitwise snd_pcm_subformat_t; 273typedef int __bitwise snd_pcm_subformat_t;