blob: afb119f383252cc4c78e5456d12b7066eb26953f [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Daniel Borkmanne4fc4082013-06-21 19:38:08 +02002#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>
Jiri Pirko7e6d4da2013-07-02 10:55:31 +02008#include <net/rtnetlink.h>
Daniel Borkmanne4fc4082013-06-21 19:38:08 +02009
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020010static netdev_tx_t nlmon_xmit(struct sk_buff *skb, struct net_device *dev)
11{
Eric Dumazet3ed91222019-11-07 16:27:16 -080012 dev_lstats_add(dev, skb->len);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020013
14 dev_kfree_skb(skb);
15
16 return NETDEV_TX_OK;
17}
18
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020019static int nlmon_dev_init(struct net_device *dev)
20{
WANG Cong1c213bd2014-02-13 11:46:28 -080021 dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020022 return dev->lstats == NULL ? -ENOMEM : 0;
23}
24
25static void nlmon_dev_uninit(struct net_device *dev)
26{
27 free_percpu(dev->lstats);
28}
29
Jiri Pirko7e6d4da2013-07-02 10:55:31 +020030struct nlmon {
31 struct netlink_tap nt;
32};
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020033
34static int nlmon_open(struct net_device *dev)
35{
Jiri Pirko7e6d4da2013-07-02 10:55:31 +020036 struct nlmon *nlmon = netdev_priv(dev);
37
38 nlmon->nt.dev = dev;
39 nlmon->nt.module = THIS_MODULE;
40 return netlink_add_tap(&nlmon->nt);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020041}
42
43static int nlmon_close(struct net_device *dev)
44{
Jiri Pirko7e6d4da2013-07-02 10:55:31 +020045 struct nlmon *nlmon = netdev_priv(dev);
46
47 return netlink_remove_tap(&nlmon->nt);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020048}
49
stephen hemmingerbc1f4472017-01-06 19:12:52 -080050static void
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020051nlmon_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
52{
Eric Dumazet3ed91222019-11-07 16:27:16 -080053 u64 packets, bytes;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020054
Eric Dumazet3ed91222019-11-07 16:27:16 -080055 dev_lstats_read(dev, &packets, &bytes);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020056
57 stats->rx_packets = packets;
58 stats->tx_packets = 0;
59
60 stats->rx_bytes = bytes;
61 stats->tx_bytes = 0;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020062}
63
64static u32 always_on(struct net_device *dev)
65{
66 return 1;
67}
68
69static const struct ethtool_ops nlmon_ethtool_ops = {
70 .get_link = always_on,
71};
72
73static 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,
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020080};
81
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020082static void nlmon_setup(struct net_device *dev)
83{
84 dev->type = ARPHRD_NETLINK;
Phil Sutter85773a62015-08-18 10:30:33 +020085 dev->priv_flags |= IFF_NO_QUEUE;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020086
87 dev->netdev_ops = &nlmon_ops;
88 dev->ethtool_ops = &nlmon_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -040089 dev->needs_free_netdev = true;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020090
Daniel Borkmannb7d47ca2014-03-27 16:34:59 +010091 dev->features = NETIF_F_SG | NETIF_F_FRAGLIST |
92 NETIF_F_HIGHDMA | NETIF_F_LLTX;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020093 dev->flags = IFF_NOARP;
94
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.
98 */
99 dev->mtu = NLMSG_GOODSIZE;
Zhang Shengjue82621e2016-12-07 17:26:05 +0800100 dev->min_mtu = sizeof(struct nlmsghdr);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200101}
102
Matthias Schiffera8b8a8892017-06-25 23:56:01 +0200103static int nlmon_validate(struct nlattr *tb[], struct nlattr *data[],
104 struct netlink_ext_ack *extack)
Jiri Pirko7e6d4da2013-07-02 10:55:31 +0200105{
106 if (tb[IFLA_ADDRESS])
107 return -EINVAL;
108 return 0;
109}
110
111static struct rtnl_link_ops nlmon_link_ops __read_mostly = {
112 .kind = "nlmon",
113 .priv_size = sizeof(struct nlmon),
114 .setup = nlmon_setup,
115 .validate = nlmon_validate,
116};
117
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200118static __init int nlmon_register(void)
119{
Jiri Pirko7e6d4da2013-07-02 10:55:31 +0200120 return rtnl_link_register(&nlmon_link_ops);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200121}
122
123static __exit void nlmon_unregister(void)
124{
Jiri Pirko7e6d4da2013-07-02 10:55:31 +0200125 rtnl_link_unregister(&nlmon_link_ops);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200126}
127
128module_init(nlmon_register);
129module_exit(nlmon_unregister);
130
131MODULE_LICENSE("GPL v2");
132MODULE_AUTHOR("Daniel Borkmann <dborkman@redhat.com>");
133MODULE_AUTHOR("Mathieu Geli <geli@enseirb.fr>");
134MODULE_DESCRIPTION("Netlink monitoring device");
Jiri Pirko7e6d4da2013-07-02 10:55:31 +0200135MODULE_ALIAS_RTNL_LINK("nlmon");