1 // SPDX-License-Identifier: GPL-2.0-only
2 #include <linux/module.h>
3 #include <linux/kernel.h>
4 #include <linux/netdevice.h>
5 #include <linux/netlink.h>
6 #include <net/net_namespace.h>
7 #include <linux/if_arp.h>
8 #include <net/rtnetlink.h>
10 static netdev_tx_t
nlmon_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
12 dev_lstats_add(dev
, skb
->len
);
19 static int nlmon_dev_init(struct net_device
*dev
)
21 dev
->lstats
= netdev_alloc_pcpu_stats(struct pcpu_lstats
);
22 return dev
->lstats
== NULL
? -ENOMEM
: 0;
25 static void nlmon_dev_uninit(struct net_device
*dev
)
27 free_percpu(dev
->lstats
);
31 struct netlink_tap nt
;
34 static int nlmon_open(struct net_device
*dev
)
36 struct nlmon
*nlmon
= netdev_priv(dev
);
39 nlmon
->nt
.module
= THIS_MODULE
;
40 return netlink_add_tap(&nlmon
->nt
);
43 static int nlmon_close(struct net_device
*dev
)
45 struct nlmon
*nlmon
= netdev_priv(dev
);
47 return netlink_remove_tap(&nlmon
->nt
);
51 nlmon_get_stats64(struct net_device
*dev
, struct rtnl_link_stats64
*stats
)
55 dev_lstats_read(dev
, &packets
, &bytes
);
57 stats
->rx_packets
= packets
;
58 stats
->tx_packets
= 0;
60 stats
->rx_bytes
= bytes
;
64 static u32
always_on(struct net_device
*dev
)
69 static const struct ethtool_ops nlmon_ethtool_ops
= {
70 .get_link
= always_on
,
73 static const struct net_device_ops nlmon_ops
= {
74 .ndo_init
= nlmon_dev_init
,
75 .ndo_uninit
= nlmon_dev_uninit
,
76 .ndo_open
= nlmon_open
,
77 .ndo_stop
= nlmon_close
,
78 .ndo_start_xmit
= nlmon_xmit
,
79 .ndo_get_stats64
= nlmon_get_stats64
,
82 static void nlmon_setup(struct net_device
*dev
)
84 dev
->type
= ARPHRD_NETLINK
;
85 dev
->priv_flags
|= IFF_NO_QUEUE
;
87 dev
->netdev_ops
= &nlmon_ops
;
88 dev
->ethtool_ops
= &nlmon_ethtool_ops
;
89 dev
->needs_free_netdev
= true;
91 dev
->features
= NETIF_F_SG
| NETIF_F_FRAGLIST
|
92 NETIF_F_HIGHDMA
| NETIF_F_LLTX
;
93 dev
->flags
= IFF_NOARP
;
95 /* That's rather a softlimit here, which, of course,
96 * can be altered. Not a real MTU, but what is to be
97 * expected in most cases.
99 dev
->mtu
= NLMSG_GOODSIZE
;
100 dev
->min_mtu
= sizeof(struct nlmsghdr
);
103 static int nlmon_validate(struct nlattr
*tb
[], struct nlattr
*data
[],
104 struct netlink_ext_ack
*extack
)
106 if (tb
[IFLA_ADDRESS
])
111 static struct rtnl_link_ops nlmon_link_ops __read_mostly
= {
113 .priv_size
= sizeof(struct nlmon
),
114 .setup
= nlmon_setup
,
115 .validate
= nlmon_validate
,
118 static __init
int nlmon_register(void)
120 return rtnl_link_register(&nlmon_link_ops
);
123 static __exit
void nlmon_unregister(void)
125 rtnl_link_unregister(&nlmon_link_ops
);
128 module_init(nlmon_register
);
129 module_exit(nlmon_unregister
);
131 MODULE_LICENSE("GPL v2");
132 MODULE_AUTHOR("Daniel Borkmann <dborkman@redhat.com>");
133 MODULE_AUTHOR("Mathieu Geli <geli@enseirb.fr>");
134 MODULE_DESCRIPTION("Netlink monitoring device");
135 MODULE_ALIAS_RTNL_LINK("nlmon");