blob: b722d559c54487643e987c8f2d9d578057672f3c [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>
R. Parameswaranb784e7e2017-04-05 17:00:07 -070033#include <linux/ip.h>
34#include <linux/ipv6.h>
35#include <linux/udp.h>
James Chapmand9e31d12010-04-02 06:19:26 +000036
37#include "l2tp_core.h"
38
39/* Default device name. May be overridden by name specified by user */
40#define L2TP_ETH_DEV_NAME "l2tpeth%d"
41
42/* via netdev_priv() */
43struct l2tp_eth {
44 struct net_device *dev;
45 struct sock *tunnel_sock;
46 struct l2tp_session *session;
47 struct list_head list;
Eric Dumazeta2842a12012-06-25 05:35:45 +000048 atomic_long_t tx_bytes;
49 atomic_long_t tx_packets;
Eric Dumazetb8c84302012-06-28 20:15:13 +000050 atomic_long_t tx_dropped;
Eric Dumazeta2842a12012-06-25 05:35:45 +000051 atomic_long_t rx_bytes;
52 atomic_long_t rx_packets;
53 atomic_long_t rx_errors;
James Chapmand9e31d12010-04-02 06:19:26 +000054};
55
56/* via l2tp_session_priv() */
57struct l2tp_eth_sess {
58 struct net_device *dev;
59};
60
61/* per-net private data for this module */
62static unsigned int l2tp_eth_net_id;
63struct l2tp_eth_net {
64 struct list_head l2tp_eth_dev_list;
65 spinlock_t l2tp_eth_lock;
66};
67
68static inline struct l2tp_eth_net *l2tp_eth_pernet(struct net *net)
69{
70 return net_generic(net, l2tp_eth_net_id);
71}
72
73static int l2tp_eth_dev_init(struct net_device *dev)
74{
75 struct l2tp_eth *priv = netdev_priv(dev);
76
77 priv->dev = dev;
Danny Kukawkaf2cedb62012-02-15 06:45:39 +000078 eth_hw_addr_random(dev);
Joe Perches1cea7e22015-03-02 19:54:59 -080079 eth_broadcast_addr(dev->broadcast);
Eric Dumazetd3fff6c2016-06-09 07:45:12 -070080 netdev_lockdep_set_classes(dev);
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -070081
James Chapmand9e31d12010-04-02 06:19:26 +000082 return 0;
83}
84
85static void l2tp_eth_dev_uninit(struct net_device *dev)
86{
87 struct l2tp_eth *priv = netdev_priv(dev);
88 struct l2tp_eth_net *pn = l2tp_eth_pernet(dev_net(dev));
89
90 spin_lock(&pn->l2tp_eth_lock);
91 list_del_init(&priv->list);
92 spin_unlock(&pn->l2tp_eth_lock);
93 dev_put(dev);
94}
95
96static int l2tp_eth_dev_xmit(struct sk_buff *skb, struct net_device *dev)
97{
98 struct l2tp_eth *priv = netdev_priv(dev);
99 struct l2tp_session *session = priv->session;
Eric Dumazetb8c84302012-06-28 20:15:13 +0000100 unsigned int len = skb->len;
101 int ret = l2tp_xmit_skb(session, skb, session->hdr_len);
James Chapmand9e31d12010-04-02 06:19:26 +0000102
WANG Conga4cd0272016-11-21 23:24:43 -0800103 if (likely(ret == NET_XMIT_SUCCESS)) {
Eric Dumazetb8c84302012-06-28 20:15:13 +0000104 atomic_long_add(len, &priv->tx_bytes);
105 atomic_long_inc(&priv->tx_packets);
106 } else {
107 atomic_long_inc(&priv->tx_dropped);
108 }
Eric Dumazetaa214de02012-06-25 00:45:14 +0000109 return NETDEV_TX_OK;
James Chapmand9e31d12010-04-02 06:19:26 +0000110}
111
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800112static void l2tp_eth_get_stats64(struct net_device *dev,
113 struct rtnl_link_stats64 *stats)
Eric Dumazeta2842a12012-06-25 05:35:45 +0000114{
115 struct l2tp_eth *priv = netdev_priv(dev);
116
117 stats->tx_bytes = atomic_long_read(&priv->tx_bytes);
118 stats->tx_packets = atomic_long_read(&priv->tx_packets);
Eric Dumazetb8c84302012-06-28 20:15:13 +0000119 stats->tx_dropped = atomic_long_read(&priv->tx_dropped);
Eric Dumazeta2842a12012-06-25 05:35:45 +0000120 stats->rx_bytes = atomic_long_read(&priv->rx_bytes);
121 stats->rx_packets = atomic_long_read(&priv->rx_packets);
122 stats->rx_errors = atomic_long_read(&priv->rx_errors);
Eric Dumazeta2842a12012-06-25 05:35:45 +0000123}
124
Julia Lawalleb947372016-09-15 22:23:26 +0200125static const struct net_device_ops l2tp_eth_netdev_ops = {
James Chapmand9e31d12010-04-02 06:19:26 +0000126 .ndo_init = l2tp_eth_dev_init,
127 .ndo_uninit = l2tp_eth_dev_uninit,
128 .ndo_start_xmit = l2tp_eth_dev_xmit,
Eric Dumazeta2842a12012-06-25 05:35:45 +0000129 .ndo_get_stats64 = l2tp_eth_get_stats64,
Alexander Couzensfe159122014-11-19 13:24:39 +0100130 .ndo_set_mac_address = eth_mac_addr,
James Chapmand9e31d12010-04-02 06:19:26 +0000131};
132
133static void l2tp_eth_dev_setup(struct net_device *dev)
134{
135 ether_setup(dev);
Eric Dumazeta2842a12012-06-25 05:35:45 +0000136 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
137 dev->features |= NETIF_F_LLTX;
James Chapmand9e31d12010-04-02 06:19:26 +0000138 dev->netdev_ops = &l2tp_eth_netdev_ops;
139 dev->destructor = free_netdev;
140}
141
142static void l2tp_eth_dev_recv(struct l2tp_session *session, struct sk_buff *skb, int data_len)
143{
144 struct l2tp_eth_sess *spriv = l2tp_session_priv(session);
145 struct net_device *dev = spriv->dev;
Eric Dumazeta2842a12012-06-25 05:35:45 +0000146 struct l2tp_eth *priv = netdev_priv(dev);
James Chapmand9e31d12010-04-02 06:19:26 +0000147
148 if (session->debug & L2TP_MSG_DATA) {
149 unsigned int length;
James Chapmand9e31d12010-04-02 06:19:26 +0000150
151 length = min(32u, skb->len);
152 if (!pskb_may_pull(skb, length))
153 goto error;
154
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000155 pr_debug("%s: eth recv\n", session->name);
Eric Dumazeta2842a12012-06-25 05:35:45 +0000156 print_hex_dump_bytes("", DUMP_PREFIX_OFFSET, skb->data, length);
James Chapmand9e31d12010-04-02 06:19:26 +0000157 }
158
Eric Dumazetc0cc88a2012-09-04 15:54:55 -0400159 if (!pskb_may_pull(skb, ETH_HLEN))
James Chapmand9e31d12010-04-02 06:19:26 +0000160 goto error;
161
162 secpath_reset(skb);
163
164 /* checksums verified by L2TP */
165 skb->ip_summed = CHECKSUM_NONE;
166
167 skb_dst_drop(skb);
168 nf_reset(skb);
169
170 if (dev_forward_skb(dev, skb) == NET_RX_SUCCESS) {
Eric Dumazeta2842a12012-06-25 05:35:45 +0000171 atomic_long_inc(&priv->rx_packets);
172 atomic_long_add(data_len, &priv->rx_bytes);
173 } else {
174 atomic_long_inc(&priv->rx_errors);
175 }
James Chapmand9e31d12010-04-02 06:19:26 +0000176 return;
177
178error:
Eric Dumazeta2842a12012-06-25 05:35:45 +0000179 atomic_long_inc(&priv->rx_errors);
James Chapmand9e31d12010-04-02 06:19:26 +0000180 kfree_skb(skb);
181}
182
183static void l2tp_eth_delete(struct l2tp_session *session)
184{
185 struct l2tp_eth_sess *spriv;
186 struct net_device *dev;
187
188 if (session) {
189 spriv = l2tp_session_priv(session);
190 dev = spriv->dev;
191 if (dev) {
192 unregister_netdev(dev);
193 spriv->dev = NULL;
Eric Dumazeta06998b2012-06-07 00:07:20 +0000194 module_put(THIS_MODULE);
James Chapmand9e31d12010-04-02 06:19:26 +0000195 }
196 }
197}
198
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400199#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000200static void l2tp_eth_show(struct seq_file *m, void *arg)
201{
202 struct l2tp_session *session = arg;
203 struct l2tp_eth_sess *spriv = l2tp_session_priv(session);
204 struct net_device *dev = spriv->dev;
205
206 seq_printf(m, " interface %s\n", dev->name);
207}
208#endif
209
R. Parameswaranb784e7e2017-04-05 17:00:07 -0700210static void l2tp_eth_adjust_mtu(struct l2tp_tunnel *tunnel,
211 struct l2tp_session *session,
212 struct net_device *dev)
213{
214 unsigned int overhead = 0;
215 struct dst_entry *dst;
216 u32 l3_overhead = 0;
217
218 /* if the encap is UDP, account for UDP header size */
219 if (tunnel->encap == L2TP_ENCAPTYPE_UDP) {
220 overhead += sizeof(struct udphdr);
221 dev->needed_headroom += sizeof(struct udphdr);
222 }
223 if (session->mtu != 0) {
224 dev->mtu = session->mtu;
225 dev->needed_headroom += session->hdr_len;
226 return;
227 }
R. Parameswaran57240d02017-04-12 18:31:04 -0700228 lock_sock(tunnel->sock);
R. Parameswaranb784e7e2017-04-05 17:00:07 -0700229 l3_overhead = kernel_sock_ip_overhead(tunnel->sock);
R. Parameswaran57240d02017-04-12 18:31:04 -0700230 release_sock(tunnel->sock);
R. Parameswaranb784e7e2017-04-05 17:00:07 -0700231 if (l3_overhead == 0) {
232 /* L3 Overhead couldn't be identified, this could be
233 * because tunnel->sock was NULL or the socket's
234 * address family was not IPv4 or IPv6,
235 * dev mtu stays at 1500.
236 */
237 return;
238 }
239 /* Adjust MTU, factor overhead - underlay L3, overlay L2 hdr
240 * UDP overhead, if any, was already factored in above.
241 */
242 overhead += session->hdr_len + ETH_HLEN + l3_overhead;
243
244 /* If PMTU discovery was enabled, use discovered MTU on L2TP device */
245 dst = sk_dst_get(tunnel->sock);
246 if (dst) {
247 /* dst_mtu will use PMTU if found, else fallback to intf MTU */
248 u32 pmtu = dst_mtu(dst);
249
250 if (pmtu != 0)
251 dev->mtu = pmtu;
252 dst_release(dst);
253 }
254 session->mtu = dev->mtu - overhead;
255 dev->mtu = session->mtu;
256 dev->needed_headroom += session->hdr_len;
257}
258
James Chapmand9e31d12010-04-02 06:19:26 +0000259static int l2tp_eth_create(struct net *net, u32 tunnel_id, u32 session_id, u32 peer_session_id, struct l2tp_session_cfg *cfg)
260{
261 struct net_device *dev;
262 char name[IFNAMSIZ];
263 struct l2tp_tunnel *tunnel;
264 struct l2tp_session *session;
265 struct l2tp_eth *priv;
266 struct l2tp_eth_sess *spriv;
267 int rc;
268 struct l2tp_eth_net *pn;
269
270 tunnel = l2tp_tunnel_find(net, tunnel_id);
271 if (!tunnel) {
272 rc = -ENODEV;
273 goto out;
274 }
275
James Chapmand9e31d12010-04-02 06:19:26 +0000276 if (cfg->ifname) {
277 dev = dev_get_by_name(net, cfg->ifname);
278 if (dev) {
279 dev_put(dev);
280 rc = -EEXIST;
281 goto out;
282 }
283 strlcpy(name, cfg->ifname, IFNAMSIZ);
284 } else
285 strcpy(name, L2TP_ETH_DEV_NAME);
286
287 session = l2tp_session_create(sizeof(*spriv), tunnel, session_id,
288 peer_session_id, cfg);
Guillaume Naultdbdbc732017-03-31 13:02:27 +0200289 if (IS_ERR(session)) {
290 rc = PTR_ERR(session);
James Chapmand9e31d12010-04-02 06:19:26 +0000291 goto out;
292 }
293
Tom Gundersenc835a672014-07-14 16:37:24 +0200294 dev = alloc_netdev(sizeof(*priv), name, NET_NAME_UNKNOWN,
295 l2tp_eth_dev_setup);
James Chapmand9e31d12010-04-02 06:19:26 +0000296 if (!dev) {
297 rc = -ENOMEM;
298 goto out_del_session;
299 }
300
301 dev_net_set(dev, net);
Jarod Wilson8b1efc02016-10-20 23:25:27 -0400302 dev->min_mtu = 0;
303 dev->max_mtu = ETH_MAX_MTU;
R. Parameswaranb784e7e2017-04-05 17:00:07 -0700304 l2tp_eth_adjust_mtu(tunnel, session, dev);
James Chapmand9e31d12010-04-02 06:19:26 +0000305
306 priv = netdev_priv(dev);
307 priv->dev = dev;
308 priv->session = session;
309 INIT_LIST_HEAD(&priv->list);
310
311 priv->tunnel_sock = tunnel->sock;
312 session->recv_skb = l2tp_eth_dev_recv;
313 session->session_close = l2tp_eth_delete;
Javier Martinez Canillas9dd79942016-09-09 08:43:17 -0400314#if IS_ENABLED(CONFIG_L2TP_DEBUGFS)
James Chapman0ad66142010-04-02 06:19:33 +0000315 session->show = l2tp_eth_show;
316#endif
James Chapmand9e31d12010-04-02 06:19:26 +0000317
318 spriv = l2tp_session_priv(session);
319 spriv->dev = dev;
320
321 rc = register_netdev(dev);
322 if (rc < 0)
323 goto out_del_dev;
324
Eric Dumazeta06998b2012-06-07 00:07:20 +0000325 __module_get(THIS_MODULE);
James Chapmand9e31d12010-04-02 06:19:26 +0000326 /* Must be done after register_netdev() */
327 strlcpy(session->ifname, dev->name, IFNAMSIZ);
328
329 dev_hold(dev);
330 pn = l2tp_eth_pernet(dev_net(dev));
331 spin_lock(&pn->l2tp_eth_lock);
332 list_add(&priv->list, &pn->l2tp_eth_dev_list);
333 spin_unlock(&pn->l2tp_eth_lock);
334
335 return 0;
336
337out_del_dev:
338 free_netdev(dev);
Tom Parkin78933632012-10-29 23:41:48 +0000339 spriv->dev = NULL;
James Chapmand9e31d12010-04-02 06:19:26 +0000340out_del_session:
341 l2tp_session_delete(session);
342out:
343 return rc;
344}
345
346static __net_init int l2tp_eth_init_net(struct net *net)
347{
Jiri Pirko3a737022010-04-23 01:01:52 +0000348 struct l2tp_eth_net *pn = net_generic(net, l2tp_eth_net_id);
James Chapmand9e31d12010-04-02 06:19:26 +0000349
350 INIT_LIST_HEAD(&pn->l2tp_eth_dev_list);
351 spin_lock_init(&pn->l2tp_eth_lock);
352
James Chapmand9e31d12010-04-02 06:19:26 +0000353 return 0;
James Chapmand9e31d12010-04-02 06:19:26 +0000354}
355
James Chapman8aa525a2011-03-21 18:10:25 -0700356static struct pernet_operations l2tp_eth_net_ops = {
James Chapmand9e31d12010-04-02 06:19:26 +0000357 .init = l2tp_eth_init_net,
James Chapmand9e31d12010-04-02 06:19:26 +0000358 .id = &l2tp_eth_net_id,
359 .size = sizeof(struct l2tp_eth_net),
360};
361
362
363static const struct l2tp_nl_cmd_ops l2tp_eth_nl_cmd_ops = {
364 .session_create = l2tp_eth_create,
365 .session_delete = l2tp_session_delete,
366};
367
368
369static int __init l2tp_eth_init(void)
370{
371 int err = 0;
372
373 err = l2tp_nl_register_ops(L2TP_PWTYPE_ETH, &l2tp_eth_nl_cmd_ops);
374 if (err)
375 goto out;
376
377 err = register_pernet_device(&l2tp_eth_net_ops);
378 if (err)
379 goto out_unreg;
380
Joe Perchesa4ca44f2012-05-16 09:55:56 +0000381 pr_info("L2TP ethernet pseudowire support (L2TPv3)\n");
James Chapmand9e31d12010-04-02 06:19:26 +0000382
383 return 0;
384
385out_unreg:
386 l2tp_nl_unregister_ops(L2TP_PWTYPE_ETH);
387out:
388 return err;
389}
390
391static void __exit l2tp_eth_exit(void)
392{
393 unregister_pernet_device(&l2tp_eth_net_ops);
394 l2tp_nl_unregister_ops(L2TP_PWTYPE_ETH);
395}
396
397module_init(l2tp_eth_init);
398module_exit(l2tp_eth_exit);
399
400MODULE_LICENSE("GPL");
401MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
402MODULE_DESCRIPTION("L2TP ethernet pseudowire driver");
403MODULE_VERSION("1.0");
stephen hemmingerf1f39f92015-09-23 21:33:34 -0700404MODULE_ALIAS_L2TP_PWTYPE(5);