2023-11-26 15:07:29 -08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
#include <linux/mutex.h>
|
2023-11-26 15:07:30 -08:00
|
|
|
#include <linux/netdevice.h>
|
2023-11-26 15:07:29 -08:00
|
|
|
#include <linux/xarray.h>
|
2023-11-26 15:07:30 -08:00
|
|
|
#include <net/net_debug.h>
|
2023-11-26 15:07:29 -08:00
|
|
|
#include <net/page_pool/types.h>
|
net: page_pool: implement GET in the netlink API
Expose the very basic page pool information via netlink.
Example using ynl-py for a system with 9 queues:
$ ./cli.py --no-schema --spec netlink/specs/netdev.yaml \
--dump page-pool-get
[{'id': 19, 'ifindex': 2, 'napi-id': 147},
{'id': 18, 'ifindex': 2, 'napi-id': 146},
{'id': 17, 'ifindex': 2, 'napi-id': 145},
{'id': 16, 'ifindex': 2, 'napi-id': 144},
{'id': 15, 'ifindex': 2, 'napi-id': 143},
{'id': 14, 'ifindex': 2, 'napi-id': 142},
{'id': 13, 'ifindex': 2, 'napi-id': 141},
{'id': 12, 'ifindex': 2, 'napi-id': 140},
{'id': 11, 'ifindex': 2, 'napi-id': 139},
{'id': 10, 'ifindex': 2, 'napi-id': 138}]
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
2023-11-26 15:07:34 -08:00
|
|
|
#include <net/sock.h>
|
2023-11-26 15:07:29 -08:00
|
|
|
|
|
|
|
#include "page_pool_priv.h"
|
net: page_pool: implement GET in the netlink API
Expose the very basic page pool information via netlink.
Example using ynl-py for a system with 9 queues:
$ ./cli.py --no-schema --spec netlink/specs/netdev.yaml \
--dump page-pool-get
[{'id': 19, 'ifindex': 2, 'napi-id': 147},
{'id': 18, 'ifindex': 2, 'napi-id': 146},
{'id': 17, 'ifindex': 2, 'napi-id': 145},
{'id': 16, 'ifindex': 2, 'napi-id': 144},
{'id': 15, 'ifindex': 2, 'napi-id': 143},
{'id': 14, 'ifindex': 2, 'napi-id': 142},
{'id': 13, 'ifindex': 2, 'napi-id': 141},
{'id': 12, 'ifindex': 2, 'napi-id': 140},
{'id': 11, 'ifindex': 2, 'napi-id': 139},
{'id': 10, 'ifindex': 2, 'napi-id': 138}]
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
2023-11-26 15:07:34 -08:00
|
|
|
#include "netdev-genl-gen.h"
|
2023-11-26 15:07:29 -08:00
|
|
|
|
|
|
|
static DEFINE_XARRAY_FLAGS(page_pools, XA_FLAGS_ALLOC1);
|
2023-11-26 15:07:30 -08:00
|
|
|
/* Protects: page_pools, netdevice->page_pools, pool->slow.netdev, pool->user.
|
|
|
|
* Ordering: inside rtnl_lock
|
|
|
|
*/
|
2023-11-26 15:07:29 -08:00
|
|
|
static DEFINE_MUTEX(page_pools_lock);
|
|
|
|
|
2023-11-26 15:07:30 -08:00
|
|
|
/* Page pools are only reachable from user space (via netlink) if they are
|
|
|
|
* linked to a netdev at creation time. Following page pool "visibility"
|
|
|
|
* states are possible:
|
|
|
|
* - normal
|
|
|
|
* - user.list: linked to real netdev, netdev: real netdev
|
|
|
|
* - orphaned - real netdev has disappeared
|
|
|
|
* - user.list: linked to lo, netdev: lo
|
|
|
|
* - invisible - either (a) created without netdev linking, (b) unlisted due
|
|
|
|
* to error, or (c) the entire namespace which owned this pool disappeared
|
|
|
|
* - user.list: unhashed, netdev: unknown
|
|
|
|
*/
|
|
|
|
|
net: page_pool: implement GET in the netlink API
Expose the very basic page pool information via netlink.
Example using ynl-py for a system with 9 queues:
$ ./cli.py --no-schema --spec netlink/specs/netdev.yaml \
--dump page-pool-get
[{'id': 19, 'ifindex': 2, 'napi-id': 147},
{'id': 18, 'ifindex': 2, 'napi-id': 146},
{'id': 17, 'ifindex': 2, 'napi-id': 145},
{'id': 16, 'ifindex': 2, 'napi-id': 144},
{'id': 15, 'ifindex': 2, 'napi-id': 143},
{'id': 14, 'ifindex': 2, 'napi-id': 142},
{'id': 13, 'ifindex': 2, 'napi-id': 141},
{'id': 12, 'ifindex': 2, 'napi-id': 140},
{'id': 11, 'ifindex': 2, 'napi-id': 139},
{'id': 10, 'ifindex': 2, 'napi-id': 138}]
Reviewed-by: Eric Dumazet <edumazet@google.com>
Acked-by: Jesper Dangaard Brouer <hawk@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
2023-11-26 15:07:34 -08:00
|
|
|
typedef int (*pp_nl_fill_cb)(struct sk_buff *rsp, const struct page_pool *pool,
|
|
|
|
const struct genl_info *info);
|
|
|
|
|
|
|
|
static int
|
|
|
|
netdev_nl_page_pool_get_do(struct genl_info *info, u32 id, pp_nl_fill_cb fill)
|
|
|
|
{
|
|
|
|
struct page_pool *pool;
|
|
|
|
struct sk_buff *rsp;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&page_pools_lock);
|
|
|
|
pool = xa_load(&page_pools, id);
|
|
|
|
if (!pool || hlist_unhashed(&pool->user.list) ||
|
|
|
|
!net_eq(dev_net(pool->slow.netdev), genl_info_net(info))) {
|
|
|
|
err = -ENOENT;
|
|
|
|
goto err_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
rsp = genlmsg_new(GENLMSG_DEFAULT_SIZE, GFP_KERNEL);
|
|
|
|
if (!rsp) {
|
|
|
|
err = -ENOMEM;
|
|
|
|
goto err_unlock;
|
|
|
|
}
|
|
|
|
|
|
|
|
err = fill(rsp, pool, info);
|
|
|
|
if (err)
|
|
|
|
goto err_free_msg;
|
|
|
|
|
|
|
|
mutex_unlock(&page_pools_lock);
|
|
|
|
|
|
|
|
return genlmsg_reply(rsp, info);
|
|
|
|
|
|
|
|
err_free_msg:
|
|
|
|
nlmsg_free(rsp);
|
|
|
|
err_unlock:
|
|
|
|
mutex_unlock(&page_pools_lock);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct page_pool_dump_cb {
|
|
|
|
unsigned long ifindex;
|
|
|
|
u32 pp_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
netdev_nl_page_pool_get_dump(struct sk_buff *skb, struct netlink_callback *cb,
|
|
|
|
pp_nl_fill_cb fill)
|
|
|
|
{
|
|
|
|
struct page_pool_dump_cb *state = (void *)cb->ctx;
|
|
|
|
const struct genl_info *info = genl_info_dump(cb);
|
|
|
|
struct net *net = sock_net(skb->sk);
|
|
|
|
struct net_device *netdev;
|
|
|
|
struct page_pool *pool;
|
|
|
|
int err = 0;
|
|
|
|
|
|
|
|
rtnl_lock();
|
|
|
|
mutex_lock(&page_pools_lock);
|
|
|
|
for_each_netdev_dump(net, netdev, state->ifindex) {
|
|
|
|
hlist_for_each_entry(pool, &netdev->page_pools, user.list) {
|
|
|
|
if (state->pp_id && state->pp_id < pool->user.id)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
state->pp_id = pool->user.id;
|
|
|
|
err = fill(skb, pool, info);
|
|
|
|
if (err)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->pp_id = 0;
|
|
|
|
}
|
|
|
|
mutex_unlock(&page_pools_lock);
|
|
|
|
rtnl_unlock();
|
|
|
|
|
|
|
|
if (skb->len && err == -EMSGSIZE)
|
|
|
|
return skb->len;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
page_pool_nl_fill(struct sk_buff *rsp, const struct page_pool *pool,
|
|
|
|
const struct genl_info *info)
|
|
|
|
{
|
|
|
|
void *hdr;
|
|
|
|
|
|
|
|
hdr = genlmsg_iput(rsp, info);
|
|
|
|
if (!hdr)
|
|
|
|
return -EMSGSIZE;
|
|
|
|
|
|
|
|
if (nla_put_uint(rsp, NETDEV_A_PAGE_POOL_ID, pool->user.id))
|
|
|
|
goto err_cancel;
|
|
|
|
|
|
|
|
if (pool->slow.netdev->ifindex != LOOPBACK_IFINDEX &&
|
|
|
|
nla_put_u32(rsp, NETDEV_A_PAGE_POOL_IFINDEX,
|
|
|
|
pool->slow.netdev->ifindex))
|
|
|
|
goto err_cancel;
|
|
|
|
if (pool->user.napi_id &&
|
|
|
|
nla_put_uint(rsp, NETDEV_A_PAGE_POOL_NAPI_ID, pool->user.napi_id))
|
|
|
|
goto err_cancel;
|
|
|
|
|
|
|
|
genlmsg_end(rsp, hdr);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
err_cancel:
|
|
|
|
genlmsg_cancel(rsp, hdr);
|
|
|
|
return -EMSGSIZE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int netdev_nl_page_pool_get_doit(struct sk_buff *skb, struct genl_info *info)
|
|
|
|
{
|
|
|
|
u32 id;
|
|
|
|
|
|
|
|
if (GENL_REQ_ATTR_CHECK(info, NETDEV_A_PAGE_POOL_ID))
|
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
id = nla_get_uint(info->attrs[NETDEV_A_PAGE_POOL_ID]);
|
|
|
|
|
|
|
|
return netdev_nl_page_pool_get_do(info, id, page_pool_nl_fill);
|
|
|
|
}
|
|
|
|
|
|
|
|
int netdev_nl_page_pool_get_dumpit(struct sk_buff *skb,
|
|
|
|
struct netlink_callback *cb)
|
|
|
|
{
|
|
|
|
return netdev_nl_page_pool_get_dump(skb, cb, page_pool_nl_fill);
|
|
|
|
}
|
|
|
|
|
2023-11-26 15:07:29 -08:00
|
|
|
int page_pool_list(struct page_pool *pool)
|
|
|
|
{
|
|
|
|
static u32 id_alloc_next;
|
|
|
|
int err;
|
|
|
|
|
|
|
|
mutex_lock(&page_pools_lock);
|
|
|
|
err = xa_alloc_cyclic(&page_pools, &pool->user.id, pool, xa_limit_32b,
|
|
|
|
&id_alloc_next, GFP_KERNEL);
|
|
|
|
if (err < 0)
|
|
|
|
goto err_unlock;
|
|
|
|
|
2023-11-26 15:07:31 -08:00
|
|
|
if (pool->slow.netdev) {
|
2023-11-26 15:07:30 -08:00
|
|
|
hlist_add_head(&pool->user.list,
|
|
|
|
&pool->slow.netdev->page_pools);
|
2023-11-26 15:07:31 -08:00
|
|
|
pool->user.napi_id = pool->p.napi ? pool->p.napi->napi_id : 0;
|
|
|
|
}
|
2023-11-26 15:07:30 -08:00
|
|
|
|
2023-11-26 15:07:29 -08:00
|
|
|
mutex_unlock(&page_pools_lock);
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
err_unlock:
|
|
|
|
mutex_unlock(&page_pools_lock);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
void page_pool_unlist(struct page_pool *pool)
|
|
|
|
{
|
|
|
|
mutex_lock(&page_pools_lock);
|
|
|
|
xa_erase(&page_pools, pool->user.id);
|
2023-11-26 15:07:30 -08:00
|
|
|
hlist_del(&pool->user.list);
|
|
|
|
mutex_unlock(&page_pools_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void page_pool_unreg_netdev_wipe(struct net_device *netdev)
|
|
|
|
{
|
|
|
|
struct page_pool *pool;
|
|
|
|
struct hlist_node *n;
|
|
|
|
|
|
|
|
mutex_lock(&page_pools_lock);
|
|
|
|
hlist_for_each_entry_safe(pool, n, &netdev->page_pools, user.list) {
|
|
|
|
hlist_del_init(&pool->user.list);
|
|
|
|
pool->slow.netdev = NET_PTR_POISON;
|
|
|
|
}
|
|
|
|
mutex_unlock(&page_pools_lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void page_pool_unreg_netdev(struct net_device *netdev)
|
|
|
|
{
|
|
|
|
struct page_pool *pool, *last;
|
|
|
|
struct net_device *lo;
|
|
|
|
|
|
|
|
lo = dev_net(netdev)->loopback_dev;
|
|
|
|
|
|
|
|
mutex_lock(&page_pools_lock);
|
|
|
|
last = NULL;
|
|
|
|
hlist_for_each_entry(pool, &netdev->page_pools, user.list) {
|
|
|
|
pool->slow.netdev = lo;
|
|
|
|
last = pool;
|
|
|
|
}
|
|
|
|
if (last)
|
|
|
|
hlist_splice_init(&netdev->page_pools, &last->user.list,
|
|
|
|
&lo->page_pools);
|
2023-11-26 15:07:29 -08:00
|
|
|
mutex_unlock(&page_pools_lock);
|
|
|
|
}
|
2023-11-26 15:07:30 -08:00
|
|
|
|
|
|
|
static int
|
|
|
|
page_pool_netdevice_event(struct notifier_block *nb,
|
|
|
|
unsigned long event, void *ptr)
|
|
|
|
{
|
|
|
|
struct net_device *netdev = netdev_notifier_info_to_dev(ptr);
|
|
|
|
|
|
|
|
if (event != NETDEV_UNREGISTER)
|
|
|
|
return NOTIFY_DONE;
|
|
|
|
|
|
|
|
if (hlist_empty(&netdev->page_pools))
|
|
|
|
return NOTIFY_OK;
|
|
|
|
|
|
|
|
if (netdev->ifindex != LOOPBACK_IFINDEX)
|
|
|
|
page_pool_unreg_netdev(netdev);
|
|
|
|
else
|
|
|
|
page_pool_unreg_netdev_wipe(netdev);
|
|
|
|
return NOTIFY_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct notifier_block page_pool_netdevice_nb = {
|
|
|
|
.notifier_call = page_pool_netdevice_event,
|
|
|
|
};
|
|
|
|
|
|
|
|
static int __init page_pool_user_init(void)
|
|
|
|
{
|
|
|
|
return register_netdevice_notifier(&page_pool_netdevice_nb);
|
|
|
|
}
|
|
|
|
|
|
|
|
subsys_initcall(page_pool_user_init);
|