blob: eecc64e138deeb9bb02d85968f4efc07f74d7de1 [file] [log] [blame]
James Chapmand9e31d12010-04-02 06:19:26 +00001/*
2 * L2TPv3 ethernet pseudowire driver
3 *
4 * Copyright (c) 2008,2009,2010 Katalix Systems Ltd
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
Joe Perchesa4ca44f2012-05-16 09:55:56 +000012#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
13
James Chapmand9e31d12010-04-02 06:19:26 +000014#include <linux/module.h>
15#include <linux/skbuff.h>
16#include <linux/socket.h>
17#include <linux/hash.h>
18#include <linux/l2tp.h>
19#include <linux/in.h>
20#include <linux/etherdevice.h>
21#include <linux/spinlock.h>
22#include <net/sock.h>
23#include <net/ip.h>
24#include <net/icmp.h>
25#include <net/udp.h>
26#include <net/inet_common.h>
27#include <net/inet_hashtables.h>
28#include <net/tcp_states.h>
29#include <net/protocol.h>
30#include <net/xfrm.h>
31#include <net/net_namespace.h>
32#include <net/netns/generic.h>
33
34#include "l2tp_core.h"
35
36/* Default device name. May be overridden by name specified by user */
37#define L2TP_ETH_DEV_NAME "l2tpeth%d"
38
39/* via netdev_priv() */
40struct l2tp_eth {
41 struct net_device *dev;
42 struct sock *tunnel_sock;
43 struct l2tp_session *session;
44 struct list_head list;
Eric Dumazeta2842a12012-06-25 05:35:45 +000045 atomic_long_t tx_bytes;
46 atomic_long_t tx_packets;
Eric Dumazetb8c84302012-06-28 20:15:13 +000047 atomic_long_t tx_dropped;
Eric Dumazeta2842a12012-06-25 05:35:45 +000048 atomic_long_t rx_bytes;
49 atomic_long_t rx_packets;
50 atomic_long_t rx_errors;
James Chapmand9e31d12010-04-02 06:19:26 +000051};
52
53/* via l2tp_session_priv() */
54struct l2tp_eth_sess {
55 struct net_device *dev;
56};
57
58/* per-net private data for this module */
59static unsigned int l2tp_eth_net_id;
60struct l2tp_eth_net {
61 struct list_head l2tp_eth_dev_list;
62 spinlock_t l2tp_eth_lock;
63};
64
65static inline struct l2tp_eth_net *l2tp_eth_pernet(struct net *net)
66{
67 return net_generic(net, l2tp_eth_net_id);
68}
69
70static int l2tp_eth_dev_init(struct net_device *dev)
71{
72 struct l2tp_eth *priv = netdev_priv(dev);
73
74 priv->dev = dev;
Danny Kukawkaf2cedb62012-02-15 06:45:39 +000075 eth_hw_addr_random(dev);
Joe Perches1cea7e22015-03-02 19:54:59 -080076 eth_broadcast_addr(dev->broadcast);
Eric Dumazetd3fff6c2016-06-09 07:45:12 -070077 netdev_lockdep_set_classes(dev);
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -070078
James Chapmand9e31d12010-04-02 06:19:26 +000079 return 0;
80}
81
82static void l2tp_eth_dev_uninit(struct net_device *dev)
83{
84 struct l2tp_eth *priv = netdev_priv(dev);
85 struct l2tp_eth_net *pn = l2tp_eth_pernet(dev_net(dev));
86
87 spin_lock(&pn->l2tp_eth_lock);
88 list_del_init(&priv->list);
89 spin_unlock(&pn->l2tp_eth_lock);
90 dev_put(dev);
91}
92
93static int l2tp_eth_dev_xmit(struct sk_buff *skb, struct net_device *dev)
94{
95 struct l2tp_eth *priv = netdev_priv(dev);
96 struct l2tp_session *session = priv->session;
Eric Dumazetb8c84302012-06-28 20:15:13 +000097 unsigned int len = skb->len;
98 int ret = l2tp_xmit_skb(session, skb, session->hdr_len);
James Chapmand9e31d12010-04-02 06:19:26 +000099
WANG Conga4cd0272016-11-21 23:24:43 -0800100 if (likely(ret == NET_XMIT_SUCCESS)) {
Eric Dumazetb8c84302012-06-28 20:15:13 +0000101 atomic_long_add(len, &priv->tx_bytes);
102 atomic_long_inc(&priv->tx_packets);
103 } else {
104 atomic_long_inc(&priv->tx_dropped);
105 }
Eric Dumazetaa214de02012-06-25 00:45:14 +0000106 return NETDEV_TX_OK;
James Chapmand9e31d12010-04-02 06:19:26 +0000107}
108
Eric Dumazeta2842a12012-06-25 05:35:45 +0000109static struct rtnl_link_stats64 *l2tp_eth_get_stats64(struct net_device *dev,
110 struct rtnl_link_stats64 *stats)
111{
112 struct l2tp_eth *priv = netdev_priv(dev);
113
114 stats->tx_bytes = atomic_long_read(&priv->tx_bytes);
115 stats->tx_packets = atomic_long_read(&priv->tx_packets);
Eric Dumazetb8c84302012-06-28 20:15:13 +0000116 stats->tx_dropped = atomic_long_read(&priv->tx_dropped);
Eric Dumazeta2842a12012-06-25 05:35:45 +0000117 stats->rx_bytes = atomic_long_read(&priv->rx_bytes);
118 stats->rx_packets = atomic_long_read(&priv->rx_packets);
119 stats->rx_errors = atomic_long_read(&priv->rx_errors);
120 return stats;
121}
122
123
Julia Lawalleb947372016-09-15 22:23:26 +0200124static const struct net_device_ops l2tp_eth_netdev_ops = {
James Chapmand9e31d12010-04-02 06:19:26 +0000125 .ndo_init = l2tp_eth_dev_init,
126 .ndo_uninit = l2tp_eth_dev_uninit,
127 .ndo_start_xmit = l2tp_eth_dev_xmit,
Eric Dumazeta2842a12012-06-25 05:35:45 +0000128 .ndo_get_stats64 = l2tp_eth_get_stats64,
Alexander Couzensfe159122014-11-19 13:24:39 +0100129 .ndo_set_mac_address = eth_mac_addr,
James Chapmand9e31d12010-04-02 06:19:26 +0000130};
131
132static void l2tp_eth_dev_setup(struct net_device *dev)
133{
134 ether_setup(dev);
Eric Dumazeta2842a12012-06-25 05:35:45 +0000135 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
136 dev->features |= NETIF_F_LLTX;
James Chapmand9e31d12010-04-02 06:19:26 +0000137 dev->netdev_ops = &l2tp_eth_netdev_ops;
138 dev->destructor = free_netdev;
139}
140
141static void l2tp_eth_dev_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len)
142{
143 struct l2tp_eth_sess *spriv = l2tp_session_priv(session);
144 struct net_device *dev = spriv->dev;
Eric Dumazeta2842a12012-06-25 05:35:45 +0000145 struct l2tp_eth *priv = netdev_priv(dev);
James Chapmand9e31d12010-04-02 06:19:26 +0000146
147 if (session->debug & L2TP_MSG_DATA) {
148 unsigned int length;
James Chapmand9e31d12010-04-02 06:19:26 +0000149
150 length = min(32u, skb->len);
151 if (!pskb_may_pull(skb, length))
152 goto error;
153
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000154 pr_debug("%s: eth recv\n", session->name);
Eric Dumazeta2842a12012-06-25 05:35:45 +0000155 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, skb->data, length);
James Chapmand9e31d12010-04-02 06:19:26 +0000156 }
157
Eric Dumazetc0cc88a2012-09-04 15:54:55 -0400158 if (!pskb_may_pull(skb, ETH_HLEN))
James Chapmand9e31d12010-04-02 06:19:26 +0000159 goto error;
160
161 secpath_reset(skb);
162
163 /* checksums verified by L2TP */
164 skb->ip_summed = CHECKSUM_NONE;
165
166 skb_dst_drop(skb);
167 nf_reset(skb);
168
169 if (dev_forward_skb(dev, skb) == NET_RX_SUCCESS) {
Eric Dumazeta2842a12012-06-25 05:35:45 +0000170 atomic_long_inc(&priv->rx_packets);
171 atomic_long_add(data_len, &priv->rx_bytes);
172 } else {
173 atomic_long_inc(&priv->rx_errors);
174 }
James Chapmand9e31d12010-04-02 06:19:26 +0000175 return;
176
177error:
Eric Dumazeta2842a12012-06-25 05:35:45 +0000178 atomic_long_inc(&priv->rx_errors);
James Chapmand9e31d12010-04-02 06:19:26 +0000179 kfree_skb(skb);
180}
181
182static void l2tp_eth_delete(struct l2tp_session *session)
183{
184 struct l2tp_eth_sess *spriv;
185 struct net_device *dev;
186
187 if (session) {
188 spriv = l2tp_session_priv(session);
189 dev = spriv->dev;
190 if (dev) {
191 unregister_netdev(dev);
192 spriv->dev = NULL;
Eric Dumazeta06998b2012-06-07 00:07:20 +0000193 module_put(THIS_MODULE);
James Chapmand9e31d12010-04-02 06:19:26 +0000194 }
195 }
196}
197
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400198#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000199static void l2tp_eth_show(struct seq_file *m, void *arg)
200{
201 struct l2tp_session *session = arg;
202 struct l2tp_eth_sess *spriv = l2tp_session_priv(session);
203 struct net_device *dev = spriv->dev;
204
205 seq_printf(m, " interface %s\n", dev->name);
206}
207#endif
208
James Chapmand9e31d12010-04-02 06:19:26 +0000209static int l2tp_eth_create(struct net *net, u32 tunnel_id, u32 session_id, u32 peer_session_id, struct l2tp_session_cfg *cfg)
210{
211 struct net_device *dev;
212 char name[IFNAMSIZ];
213 struct l2tp_tunnel *tunnel;
214 struct l2tp_session *session;
215 struct l2tp_eth *priv;
216 struct l2tp_eth_sess *spriv;
217 int rc;
218 struct l2tp_eth_net *pn;
219
220 tunnel = l2tp_tunnel_find(net, tunnel_id);
221 if (!tunnel) {
222 rc = -ENODEV;
223 goto out;
224 }
225
James Chapmand9e31d12010-04-02 06:19:26 +0000226 if (cfg->ifname) {
227 dev = dev_get_by_name(net, cfg->ifname);
228 if (dev) {
229 dev_put(dev);
230 rc = -EEXIST;
231 goto out;
232 }
233 strlcpy(name, cfg->ifname, IFNAMSIZ);
234 } else
235 strcpy(name, L2TP_ETH_DEV_NAME);
236
237 session = l2tp_session_create(sizeof(*spriv), tunnel, session_id,
238 peer_session_id, cfg);
Guillaume Naultd9face62017-03-31 13:02:27 +0200239 if (IS_ERR(session)) {
240 rc = PTR_ERR(session);
James Chapmand9e31d12010-04-02 06:19:26 +0000241 goto out;
242 }
243
Tom Gundersenc835a672014-07-14 16:37:24 +0200244 dev = alloc_netdev(sizeof(*priv), name, NET_NAME_UNKNOWN,
245 l2tp_eth_dev_setup);
James Chapmand9e31d12010-04-02 06:19:26 +0000246 if (!dev) {
247 rc = -ENOMEM;
248 goto out_del_session;
249 }
250
251 dev_net_set(dev, net);
252 if (session->mtu == 0)
253 session->mtu = dev->mtu - session->hdr_len;
254 dev->mtu = session->mtu;
255 dev->needed_headroom += session->hdr_len;
256
257 priv = netdev_priv(dev);
258 priv->dev = dev;
259 priv->session = session;
260 INIT_LIST_HEAD(&priv->list);
261
262 priv->tunnel_sock = tunnel->sock;
263 session->recv_skb = l2tp_eth_dev_recv;
264 session->session_close = l2tp_eth_delete;
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400265#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000266 session->show = l2tp_eth_show;
267#endif
James Chapmand9e31d12010-04-02 06:19:26 +0000268
269 spriv = l2tp_session_priv(session);
270 spriv->dev = dev;
271
272 rc = register_netdev(dev);
273 if (rc < 0)
274 goto out_del_dev;
275
Eric Dumazeta06998b2012-06-07 00:07:20 +0000276 __module_get(THIS_MODULE);
James Chapmand9e31d12010-04-02 06:19:26 +0000277 /* Must be done after register_netdev() */
278 strlcpy(session->ifname, dev->name, IFNAMSIZ);
279
280 dev_hold(dev);
281 pn = l2tp_eth_pernet(dev_net(dev));
282 spin_lock(&pn->l2tp_eth_lock);
283 list_add(&priv->list, &pn->l2tp_eth_dev_list);
284 spin_unlock(&pn->l2tp_eth_lock);
285
286 return 0;
287
288out_del_dev:
289 free_netdev(dev);
Tom Parkin78933632012-10-29 23:41:48 +0000290 spriv->dev = NULL;
James Chapmand9e31d12010-04-02 06:19:26 +0000291out_del_session:
292 l2tp_session_delete(session);
293out:
294 return rc;
295}
296
297static __net_init int l2tp_eth_init_net(struct net *net)
298{
Jiri Pirko3a737022010-04-23 01:01:52 +0000299 struct l2tp_eth_net *pn = net_generic(net, l2tp_eth_net_id);
James Chapmand9e31d12010-04-02 06:19:26 +0000300
301 INIT_LIST_HEAD(&pn->l2tp_eth_dev_list);
302 spin_lock_init(&pn->l2tp_eth_lock);
303
James Chapmand9e31d12010-04-02 06:19:26 +0000304 return 0;
James Chapmand9e31d12010-04-02 06:19:26 +0000305}
306
James Chapman8aa525a2011-03-21 18:10:25 -0700307static struct pernet_operations l2tp_eth_net_ops = {
James Chapmand9e31d12010-04-02 06:19:26 +0000308 .init = l2tp_eth_init_net,
James Chapmand9e31d12010-04-02 06:19:26 +0000309 .id = &l2tp_eth_net_id,
310 .size = sizeof(struct l2tp_eth_net),
311};
312
313
314static const struct l2tp_nl_cmd_ops l2tp_eth_nl_cmd_ops = {
315 .session_create = l2tp_eth_create,
316 .session_delete = l2tp_session_delete,
317};
318
319
320static int __init l2tp_eth_init(void)
321{
322 int err = 0;
323
324 err = l2tp_nl_register_ops(L2TP_PWTYPE_ETH, &l2tp_eth_nl_cmd_ops);
325 if (err)
326 goto out;
327
328 err = register_pernet_device(&l2tp_eth_net_ops);
329 if (err)
330 goto out_unreg;
331
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000332 pr_info("L2TP ethernet pseudowire support (L2TPv3)\n");
James Chapmand9e31d12010-04-02 06:19:26 +0000333
334 return 0;
335
336out_unreg:
337 l2tp_nl_unregister_ops(L2TP_PWTYPE_ETH);
338out:
339 return err;
340}
341
342static void __exit l2tp_eth_exit(void)
343{
344 unregister_pernet_device(&l2tp_eth_net_ops);
345 l2tp_nl_unregister_ops(L2TP_PWTYPE_ETH);
346}
347
348module_init(l2tp_eth_init);
349module_exit(l2tp_eth_exit);
350
351MODULE_LICENSE("GPL");
352MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
353MODULE_DESCRIPTION("L2TP ethernet pseudowire driver");
354MODULE_VERSION("1.0");
stephen hemmingerf1f39f92015-09-23 21:33:34 -0700355MODULE_ALIAS_L2TP_PWTYPE(5);