2023-03-15 23:03:50 +00:00
|
|
|
/* SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) */
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
/* Do not edit directly, auto-generated from: */
|
|
|
|
|
/* Documentation/netlink/specs/netdev.yaml */
|
|
|
|
|
/* YNL-GEN uapi header */
|
|
|
|
|
|
|
|
|
|
#ifndef _UAPI_LINUX_NETDEV_H
|
|
|
|
|
#define _UAPI_LINUX_NETDEV_H
|
|
|
|
|
|
|
|
|
|
#define NETDEV_FAMILY_NAME "netdev"
|
|
|
|
|
#define NETDEV_FAMILY_VERSION 1
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* enum netdev_xdp_act
|
2023-07-27 16:30:00 +00:00
|
|
|
* @NETDEV_XDP_ACT_BASIC: XDP features set supported by all drivers
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
* (XDP_ABORTED, XDP_DROP, XDP_PASS, XDP_TX)
|
|
|
|
|
* @NETDEV_XDP_ACT_REDIRECT: The netdev supports XDP_REDIRECT
|
|
|
|
|
* @NETDEV_XDP_ACT_NDO_XMIT: This feature informs if netdev implements
|
|
|
|
|
* ndo_xdp_xmit callback.
|
|
|
|
|
* @NETDEV_XDP_ACT_XSK_ZEROCOPY: This feature informs if netdev supports AF_XDP
|
|
|
|
|
* in zero copy mode.
|
|
|
|
|
* @NETDEV_XDP_ACT_HW_OFFLOAD: This feature informs if netdev supports XDP hw
|
2023-02-23 07:26:56 +00:00
|
|
|
* offloading.
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
* @NETDEV_XDP_ACT_RX_SG: This feature informs if netdev implements non-linear
|
|
|
|
|
* XDP buffer support in the driver napi callback.
|
|
|
|
|
* @NETDEV_XDP_ACT_NDO_XMIT_SG: This feature informs if netdev implements
|
|
|
|
|
* non-linear XDP buffer support in ndo_xdp_xmit callback.
|
|
|
|
|
*/
|
|
|
|
|
enum netdev_xdp_act {
|
|
|
|
|
NETDEV_XDP_ACT_BASIC = 1,
|
|
|
|
|
NETDEV_XDP_ACT_REDIRECT = 2,
|
|
|
|
|
NETDEV_XDP_ACT_NDO_XMIT = 4,
|
|
|
|
|
NETDEV_XDP_ACT_XSK_ZEROCOPY = 8,
|
|
|
|
|
NETDEV_XDP_ACT_HW_OFFLOAD = 16,
|
|
|
|
|
NETDEV_XDP_ACT_RX_SG = 32,
|
|
|
|
|
NETDEV_XDP_ACT_NDO_XMIT_SG = 64,
|
2023-03-09 12:25:27 +00:00
|
|
|
|
2023-07-27 16:30:00 +00:00
|
|
|
/* private: */
|
2023-03-09 12:25:27 +00:00
|
|
|
NETDEV_XDP_ACT_MASK = 127,
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
};
|
|
|
|
|
|
2023-09-13 17:13:49 +00:00
|
|
|
/**
|
|
|
|
|
* enum netdev_xdp_rx_metadata
|
|
|
|
|
* @NETDEV_XDP_RX_METADATA_TIMESTAMP: Device is capable of exposing receive HW
|
|
|
|
|
* timestamp via bpf_xdp_metadata_rx_timestamp().
|
|
|
|
|
* @NETDEV_XDP_RX_METADATA_HASH: Device is capable of exposing receive packet
|
|
|
|
|
* hash via bpf_xdp_metadata_rx_hash().
|
|
|
|
|
*/
|
|
|
|
|
enum netdev_xdp_rx_metadata {
|
|
|
|
|
NETDEV_XDP_RX_METADATA_TIMESTAMP = 1,
|
|
|
|
|
NETDEV_XDP_RX_METADATA_HASH = 2,
|
|
|
|
|
};
|
|
|
|
|
|
2023-11-27 19:03:08 +00:00
|
|
|
/**
|
|
|
|
|
* enum netdev_xsk_flags
|
|
|
|
|
* @NETDEV_XSK_FLAGS_TX_TIMESTAMP: HW timestamping egress packets is supported
|
|
|
|
|
* by the driver.
|
|
|
|
|
* @NETDEV_XSK_FLAGS_TX_CHECKSUM: L3 checksum HW offload is supported by the
|
|
|
|
|
* driver.
|
|
|
|
|
*/
|
|
|
|
|
enum netdev_xsk_flags {
|
|
|
|
|
NETDEV_XSK_FLAGS_TX_TIMESTAMP = 1,
|
|
|
|
|
NETDEV_XSK_FLAGS_TX_CHECKSUM = 2,
|
2023-09-13 17:13:49 +00:00
|
|
|
};
|
|
|
|
|
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
enum {
|
|
|
|
|
NETDEV_A_DEV_IFINDEX = 1,
|
|
|
|
|
NETDEV_A_DEV_PAD,
|
|
|
|
|
NETDEV_A_DEV_XDP_FEATURES,
|
2023-07-19 13:24:07 +00:00
|
|
|
NETDEV_A_DEV_XDP_ZC_MAX_SEGS,
|
2023-09-13 17:13:49 +00:00
|
|
|
NETDEV_A_DEV_XDP_RX_METADATA_FEATURES,
|
2023-11-27 19:03:08 +00:00
|
|
|
NETDEV_A_DEV_XSK_FEATURES,
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
|
|
|
|
|
__NETDEV_A_DEV_MAX,
|
|
|
|
|
NETDEV_A_DEV_MAX = (__NETDEV_A_DEV_MAX - 1)
|
|
|
|
|
};
|
|
|
|
|
|
2023-11-26 23:07:40 +00:00
|
|
|
enum {
|
|
|
|
|
NETDEV_A_PAGE_POOL_ID = 1,
|
|
|
|
|
NETDEV_A_PAGE_POOL_IFINDEX,
|
|
|
|
|
NETDEV_A_PAGE_POOL_NAPI_ID,
|
|
|
|
|
NETDEV_A_PAGE_POOL_INFLIGHT,
|
|
|
|
|
NETDEV_A_PAGE_POOL_INFLIGHT_MEM,
|
|
|
|
|
NETDEV_A_PAGE_POOL_DETACH_TIME,
|
|
|
|
|
|
|
|
|
|
__NETDEV_A_PAGE_POOL_MAX,
|
|
|
|
|
NETDEV_A_PAGE_POOL_MAX = (__NETDEV_A_PAGE_POOL_MAX - 1)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
enum {
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_INFO = 1,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_FAST = 8,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_SLOW_HIGH_ORDER,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_EMPTY,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_REFILL,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_ALLOC_WAIVE,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHED,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_CACHE_FULL,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_RING_FULL,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_RECYCLE_RELEASED_REFCNT,
|
|
|
|
|
|
|
|
|
|
__NETDEV_A_PAGE_POOL_STATS_MAX,
|
|
|
|
|
NETDEV_A_PAGE_POOL_STATS_MAX = (__NETDEV_A_PAGE_POOL_STATS_MAX - 1)
|
|
|
|
|
};
|
|
|
|
|
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
enum {
|
|
|
|
|
NETDEV_CMD_DEV_GET = 1,
|
|
|
|
|
NETDEV_CMD_DEV_ADD_NTF,
|
|
|
|
|
NETDEV_CMD_DEV_DEL_NTF,
|
|
|
|
|
NETDEV_CMD_DEV_CHANGE_NTF,
|
2023-11-26 23:07:40 +00:00
|
|
|
NETDEV_CMD_PAGE_POOL_GET,
|
|
|
|
|
NETDEV_CMD_PAGE_POOL_ADD_NTF,
|
|
|
|
|
NETDEV_CMD_PAGE_POOL_DEL_NTF,
|
|
|
|
|
NETDEV_CMD_PAGE_POOL_CHANGE_NTF,
|
|
|
|
|
NETDEV_CMD_PAGE_POOL_STATS_GET,
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
|
|
|
|
|
__NETDEV_CMD_MAX,
|
|
|
|
|
NETDEV_CMD_MAX = (__NETDEV_CMD_MAX - 1)
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#define NETDEV_MCGRP_MGMT "mgmt"
|
2023-11-26 23:07:40 +00:00
|
|
|
#define NETDEV_MCGRP_PAGE_POOL "page-pool"
|
netdev-genl: create a simple family for netdev stuff
Add a Netlink spec-compatible family for netdevs.
This is a very simple implementation without much
thought going into it.
It allows us to reap all the benefits of Netlink specs,
one can use the generic client to issue the commands:
$ ./cli.py --spec netdev.yaml --dump dev_get
[{'ifindex': 1, 'xdp-features': set()},
{'ifindex': 2, 'xdp-features': {'basic', 'ndo-xmit', 'redirect'}},
{'ifindex': 3, 'xdp-features': {'rx-sg'}}]
the generic python library does not have flags-by-name
support, yet, but we also don't have to carry strings
in the messages, as user space can get the names from
the spec.
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Co-developed-by: Lorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Co-developed-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Signed-off-by: Kumar Kartikeya Dwivedi <memxor@gmail.com>
Co-developed-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Marek Majtyka <alardam@gmail.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Link: https://lore.kernel.org/r/327ad9c9868becbe1e601b580c962549c8cd81f2.1675245258.git.lorenzo@kernel.org
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
2023-02-01 10:24:17 +00:00
|
|
|
|
|
|
|
|
#endif /* _UAPI_LINUX_NETDEV_H */
|