blob: 68771b2f351a228860cdfbc7ab3f028665b2590e [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{
12 int len = skb->len;
13 struct pcpu_lstats *stats = this_cpu_ptr(dev->lstats);
14
15 u64_stats_update_begin(&stats->syncp);
16 stats->bytes += len;
17 stats->packets++;
18 u64_stats_update_end(&stats->syncp);
19
20 dev_kfree_skb(skb);
21
22 return NETDEV_TX_OK;
23}
24
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020025static int nlmon_dev_init(struct net_device *dev)
26{
WANG Cong1c213bd2014-02-13 11:46:28 -080027 dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020028 return dev->lstats == NULL ? -ENOMEM : 0;
29}
30
31static void nlmon_dev_uninit(struct net_device *dev)
32{
33 free_percpu(dev->lstats);
34}
35
Jiri Pirko7e6d4da2013-07-02 10:55:31 +020036struct nlmon {
37 struct netlink_tap nt;
38};
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020039
40static int nlmon_open(struct net_device *dev)
41{
Jiri Pirko7e6d4da2013-07-02 10:55:31 +020042 struct nlmon *nlmon = netdev_priv(dev);
43
44 nlmon->nt.dev = dev;
45 nlmon->nt.module = THIS_MODULE;
46 return netlink_add_tap(&nlmon->nt);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020047}
48
49static int nlmon_close(struct net_device *dev)
50{
Jiri Pirko7e6d4da2013-07-02 10:55:31 +020051 struct nlmon *nlmon = netdev_priv(dev);
52
53 return netlink_remove_tap(&nlmon->nt);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020054}
55
stephen hemmingerbc1f4472017-01-06 19:12:52 -080056static void
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020057nlmon_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
58{
59 int i;
60 u64 bytes = 0, packets = 0;
61
62 for_each_possible_cpu(i) {
63 const struct pcpu_lstats *nl_stats;
64 u64 tbytes, tpackets;
65 unsigned int start;
66
67 nl_stats = per_cpu_ptr(dev->lstats, i);
68
69 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -070070 start = u64_stats_fetch_begin_irq(&nl_stats->syncp);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020071 tbytes = nl_stats->bytes;
72 tpackets = nl_stats->packets;
Eric W. Biederman57a77442014-03-13 21:26:42 -070073 } while (u64_stats_fetch_retry_irq(&nl_stats->syncp, start));
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020074
75 packets += tpackets;
76 bytes += tbytes;
77 }
78
79 stats->rx_packets = packets;
80 stats->tx_packets = 0;
81
82 stats->rx_bytes = bytes;
83 stats->tx_bytes = 0;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +020084}
85
86static u32 always_on(struct net_device *dev)
87{
88 return 1;
89}
90
91static const struct ethtool_ops nlmon_ethtool_ops = {
92 .get_link = always_on,
93};
94
95static const struct net_device_ops nlmon_ops = {
96 .ndo_init = nlmon_dev_init,
97 .ndo_uninit = nlmon_dev_uninit,
98 .ndo_open = nlmon_open,
99 .ndo_stop = nlmon_close,
100 .ndo_start_xmit = nlmon_xmit,
101 .ndo_get_stats64 = nlmon_get_stats64,
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200102};
103
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200104static void nlmon_setup(struct net_device *dev)
105{
106 dev->type = ARPHRD_NETLINK;
Phil Sutter85773a62015-08-18 10:30:33 +0200107 dev->priv_flags |= IFF_NO_QUEUE;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200108
109 dev->netdev_ops = &nlmon_ops;
110 dev->ethtool_ops = &nlmon_ethtool_ops;
David S. Millercf124db2017-05-08 12:52:56 -0400111 dev->needs_free_netdev = true;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200112
Daniel Borkmannb7d47ca2014-03-27 16:34:59 +0100113 dev->features = NETIF_F_SG | NETIF_F_FRAGLIST |
114 NETIF_F_HIGHDMA | NETIF_F_LLTX;
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200115 dev->flags = IFF_NOARP;
116
117 /* That's rather a softlimit here, which, of course,
118 * can be altered. Not a real MTU, but what is to be
119 * expected in most cases.
120 */
121 dev->mtu = NLMSG_GOODSIZE;
Zhang Shengjue82621e2016-12-07 17:26:05 +0800122 dev->min_mtu = sizeof(struct nlmsghdr);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200123}
124
Matthias Schiffera8b8a8892017-06-25 23:56:01 +0200125static int nlmon_validate(struct nlattr *tb[], struct nlattr *data[],
126 struct netlink_ext_ack *extack)
Jiri Pirko7e6d4da2013-07-02 10:55:31 +0200127{
128 if (tb[IFLA_ADDRESS])
129 return -EINVAL;
130 return 0;
131}
132
133static struct rtnl_link_ops nlmon_link_ops __read_mostly = {
134 .kind = "nlmon",
135 .priv_size = sizeof(struct nlmon),
136 .setup = nlmon_setup,
137 .validate = nlmon_validate,
138};
139
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200140static __init int nlmon_register(void)
141{
Jiri Pirko7e6d4da2013-07-02 10:55:31 +0200142 return rtnl_link_register(&nlmon_link_ops);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200143}
144
145static __exit void nlmon_unregister(void)
146{
Jiri Pirko7e6d4da2013-07-02 10:55:31 +0200147 rtnl_link_unregister(&nlmon_link_ops);
Daniel Borkmanne4fc4082013-06-21 19:38:08 +0200148}
149
150module_init(nlmon_register);
151module_exit(nlmon_unregister);
152
153MODULE_LICENSE("GPL v2");
154MODULE_AUTHOR("Daniel Borkmann <dborkman@redhat.com>");
155MODULE_AUTHOR("Mathieu Geli <geli@enseirb.fr>");
156MODULE_DESCRIPTION("Netlink monitoring device");
Jiri Pirko7e6d4da2013-07-02 10:55:31 +0200157MODULE_ALIAS_RTNL_LINK("nlmon");