1 #include <linux/module.h>
2 #include <linux/kernel.h>
3 #include <linux/netdevice.h>
4 #include <linux/netlink.h>
5 #include <net/net_namespace.h>
6 #include <linux/if_arp.h>
7 #include <net/rtnetlink.h>
12 struct u64_stats_sync syncp
;
15 static netdev_tx_t
nlmon_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
18 struct pcpu_lstats
*stats
= this_cpu_ptr(dev
->lstats
);
20 u64_stats_update_begin(&stats
->syncp
);
23 u64_stats_update_end(&stats
->syncp
);
30 static int nlmon_is_valid_mtu(int new_mtu
)
32 /* Note that in netlink we do not really have an upper limit. On
33 * default, we use NLMSG_GOODSIZE. Here at least we should make
34 * sure that it's at least the header size.
36 return new_mtu
>= (int) sizeof(struct nlmsghdr
);
39 static int nlmon_change_mtu(struct net_device
*dev
, int new_mtu
)
41 if (!nlmon_is_valid_mtu(new_mtu
))
48 static int nlmon_dev_init(struct net_device
*dev
)
50 dev
->lstats
= netdev_alloc_pcpu_stats(struct pcpu_lstats
);
51 return dev
->lstats
== NULL
? -ENOMEM
: 0;
54 static void nlmon_dev_uninit(struct net_device
*dev
)
56 free_percpu(dev
->lstats
);
60 struct netlink_tap nt
;
63 static int nlmon_open(struct net_device
*dev
)
65 struct nlmon
*nlmon
= netdev_priv(dev
);
68 nlmon
->nt
.module
= THIS_MODULE
;
69 return netlink_add_tap(&nlmon
->nt
);
72 static int nlmon_close(struct net_device
*dev
)
74 struct nlmon
*nlmon
= netdev_priv(dev
);
76 return netlink_remove_tap(&nlmon
->nt
);
79 static struct rtnl_link_stats64
*
80 nlmon_get_stats64(struct net_device
*dev
, struct rtnl_link_stats64
*stats
)
83 u64 bytes
= 0, packets
= 0;
85 for_each_possible_cpu(i
) {
86 const struct pcpu_lstats
*nl_stats
;
90 nl_stats
= per_cpu_ptr(dev
->lstats
, i
);
93 start
= u64_stats_fetch_begin_irq(&nl_stats
->syncp
);
94 tbytes
= nl_stats
->bytes
;
95 tpackets
= nl_stats
->packets
;
96 } while (u64_stats_fetch_retry_irq(&nl_stats
->syncp
, start
));
102 stats
->rx_packets
= packets
;
103 stats
->tx_packets
= 0;
105 stats
->rx_bytes
= bytes
;
111 static u32
always_on(struct net_device
*dev
)
116 static const struct ethtool_ops nlmon_ethtool_ops
= {
117 .get_link
= always_on
,
120 static const struct net_device_ops nlmon_ops
= {
121 .ndo_init
= nlmon_dev_init
,
122 .ndo_uninit
= nlmon_dev_uninit
,
123 .ndo_open
= nlmon_open
,
124 .ndo_stop
= nlmon_close
,
125 .ndo_start_xmit
= nlmon_xmit
,
126 .ndo_get_stats64
= nlmon_get_stats64
,
127 .ndo_change_mtu
= nlmon_change_mtu
,
130 static void nlmon_setup(struct net_device
*dev
)
132 dev
->type
= ARPHRD_NETLINK
;
133 dev
->tx_queue_len
= 0;
135 dev
->netdev_ops
= &nlmon_ops
;
136 dev
->ethtool_ops
= &nlmon_ethtool_ops
;
137 dev
->destructor
= free_netdev
;
139 dev
->features
= NETIF_F_SG
| NETIF_F_FRAGLIST
|
140 NETIF_F_HIGHDMA
| NETIF_F_LLTX
;
141 dev
->flags
= IFF_NOARP
;
143 /* That's rather a softlimit here, which, of course,
144 * can be altered. Not a real MTU, but what is to be
145 * expected in most cases.
147 dev
->mtu
= NLMSG_GOODSIZE
;
150 static int nlmon_validate(struct nlattr
*tb
[], struct nlattr
*data
[])
152 if (tb
[IFLA_ADDRESS
])
157 static struct rtnl_link_ops nlmon_link_ops __read_mostly
= {
159 .priv_size
= sizeof(struct nlmon
),
160 .setup
= nlmon_setup
,
161 .validate
= nlmon_validate
,
164 static __init
int nlmon_register(void)
166 return rtnl_link_register(&nlmon_link_ops
);
169 static __exit
void nlmon_unregister(void)
171 rtnl_link_unregister(&nlmon_link_ops
);
174 module_init(nlmon_register
);
175 module_exit(nlmon_unregister
);
177 MODULE_LICENSE("GPL v2");
178 MODULE_AUTHOR("Daniel Borkmann <dborkman@redhat.com>");
179 MODULE_AUTHOR("Mathieu Geli <geli@enseirb.fr>");
180 MODULE_DESCRIPTION("Netlink monitoring device");
181 MODULE_ALIAS_RTNL_LINK("nlmon");