blob: a16d3017fdc3df59d507ab3e1dec5c5a2e81d298 [file] [log] [blame]
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -08001/* Copyright (c) 2014 Mahesh Bandewar <maheshb@google.com>
2 *
3 * This program is free software; you can redistribute it and/or
4 * modify it under the terms of the GNU General Public License as
5 * published by the Free Software Foundation; either version 2 of
6 * the License, or (at your option) any later version.
7 *
8 */
9
10#include "ipvlan.h"
11
12void ipvlan_adjust_mtu(struct ipvl_dev *ipvlan, struct net_device *dev)
13{
14 ipvlan->dev->mtu = dev->mtu - ipvlan->mtu_adj;
15}
16
17void ipvlan_set_port_mode(struct ipvl_port *port, u32 nval)
18{
19 struct ipvl_dev *ipvlan;
20
21 if (port->mode != nval) {
22 list_for_each_entry(ipvlan, &port->ipvlans, pnode) {
23 if (nval == IPVLAN_MODE_L3)
24 ipvlan->dev->flags |= IFF_NOARP;
25 else
26 ipvlan->dev->flags &= ~IFF_NOARP;
27 }
28 port->mode = nval;
29 }
30}
31
32static int ipvlan_port_create(struct net_device *dev)
33{
34 struct ipvl_port *port;
35 int err, idx;
36
37 if (dev->type != ARPHRD_ETHER || dev->flags & IFF_LOOPBACK) {
38 netdev_err(dev, "Master is either lo or non-ether device\n");
39 return -EINVAL;
40 }
Mahesh Bandewar764e4332014-12-06 15:53:19 -080041
42 if (netif_is_macvlan_port(dev)) {
43 netdev_err(dev, "Master is a macvlan port.\n");
44 return -EBUSY;
45 }
46
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -080047 port = kzalloc(sizeof(struct ipvl_port), GFP_KERNEL);
48 if (!port)
49 return -ENOMEM;
50
51 port->dev = dev;
52 port->mode = IPVLAN_MODE_L3;
53 INIT_LIST_HEAD(&port->ipvlans);
54 for (idx = 0; idx < IPVLAN_HASH_SIZE; idx++)
55 INIT_HLIST_HEAD(&port->hlhead[idx]);
56
Mahesh Bandewarba35f852015-05-04 17:06:03 -070057 skb_queue_head_init(&port->backlog);
58 INIT_WORK(&port->wq, ipvlan_process_multicast);
59
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -080060 err = netdev_rx_handler_register(dev, ipvlan_handle_frame, port);
61 if (err)
62 goto err;
63
64 dev->priv_flags |= IFF_IPVLAN_MASTER;
65 return 0;
66
67err:
68 kfree_rcu(port, rcu);
69 return err;
70}
71
72static void ipvlan_port_destroy(struct net_device *dev)
73{
74 struct ipvl_port *port = ipvlan_port_get_rtnl(dev);
75
76 dev->priv_flags &= ~IFF_IPVLAN_MASTER;
77 netdev_rx_handler_unregister(dev);
Mahesh Bandewarba35f852015-05-04 17:06:03 -070078 cancel_work_sync(&port->wq);
79 __skb_queue_purge(&port->backlog);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -080080 kfree_rcu(port, rcu);
81}
82
83/* ipvlan network devices have devices nesting below it and are a special
84 * "super class" of normal network devices; split their locks off into a
85 * separate class since they always nest.
86 */
87static struct lock_class_key ipvlan_netdev_xmit_lock_key;
88static struct lock_class_key ipvlan_netdev_addr_lock_key;
89
90#define IPVLAN_FEATURES \
91 (NETIF_F_SG | NETIF_F_ALL_CSUM | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | \
92 NETIF_F_GSO | NETIF_F_TSO | NETIF_F_UFO | NETIF_F_GSO_ROBUST | \
93 NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_GRO | NETIF_F_RXCSUM | \
94 NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_STAG_FILTER)
95
96#define IPVLAN_STATE_MASK \
97 ((1<<__LINK_STATE_NOCARRIER) | (1<<__LINK_STATE_DORMANT))
98
99static void ipvlan_set_lockdep_class_one(struct net_device *dev,
100 struct netdev_queue *txq,
101 void *_unused)
102{
103 lockdep_set_class(&txq->_xmit_lock, &ipvlan_netdev_xmit_lock_key);
104}
105
106static void ipvlan_set_lockdep_class(struct net_device *dev)
107{
108 lockdep_set_class(&dev->addr_list_lock, &ipvlan_netdev_addr_lock_key);
109 netdev_for_each_tx_queue(dev, ipvlan_set_lockdep_class_one, NULL);
110}
111
112static int ipvlan_init(struct net_device *dev)
113{
114 struct ipvl_dev *ipvlan = netdev_priv(dev);
115 const struct net_device *phy_dev = ipvlan->phy_dev;
116
117 dev->state = (dev->state & ~IPVLAN_STATE_MASK) |
118 (phy_dev->state & IPVLAN_STATE_MASK);
119 dev->features = phy_dev->features & IPVLAN_FEATURES;
120 dev->features |= NETIF_F_LLTX;
121 dev->gso_max_size = phy_dev->gso_max_size;
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800122 dev->hard_header_len = phy_dev->hard_header_len;
123
124 ipvlan_set_lockdep_class(dev);
125
126 ipvlan->pcpu_stats = alloc_percpu(struct ipvl_pcpu_stats);
127 if (!ipvlan->pcpu_stats)
128 return -ENOMEM;
129
130 return 0;
131}
132
133static void ipvlan_uninit(struct net_device *dev)
134{
135 struct ipvl_dev *ipvlan = netdev_priv(dev);
136 struct ipvl_port *port = ipvlan->port;
137
Markus Elfring04901ce2014-11-29 16:23:20 +0100138 free_percpu(ipvlan->pcpu_stats);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800139
140 port->count -= 1;
141 if (!port->count)
142 ipvlan_port_destroy(port->dev);
143}
144
145static int ipvlan_open(struct net_device *dev)
146{
147 struct ipvl_dev *ipvlan = netdev_priv(dev);
148 struct net_device *phy_dev = ipvlan->phy_dev;
149 struct ipvl_addr *addr;
150
151 if (ipvlan->port->mode == IPVLAN_MODE_L3)
152 dev->flags |= IFF_NOARP;
153 else
154 dev->flags &= ~IFF_NOARP;
155
156 if (ipvlan->ipv6cnt > 0 || ipvlan->ipv4cnt > 0) {
157 list_for_each_entry(addr, &ipvlan->addrs, anode)
158 ipvlan_ht_addr_add(ipvlan, addr);
159 }
160 return dev_uc_add(phy_dev, phy_dev->dev_addr);
161}
162
163static int ipvlan_stop(struct net_device *dev)
164{
165 struct ipvl_dev *ipvlan = netdev_priv(dev);
166 struct net_device *phy_dev = ipvlan->phy_dev;
167 struct ipvl_addr *addr;
168
169 dev_uc_unsync(phy_dev, dev);
170 dev_mc_unsync(phy_dev, dev);
171
172 dev_uc_del(phy_dev, phy_dev->dev_addr);
173
174 if (ipvlan->ipv6cnt > 0 || ipvlan->ipv4cnt > 0) {
175 list_for_each_entry(addr, &ipvlan->addrs, anode)
176 ipvlan_ht_addr_del(addr, !dev->dismantle);
177 }
178 return 0;
179}
180
Mahesh Bandewar92c7b0d2014-11-25 21:24:43 -0800181static netdev_tx_t ipvlan_start_xmit(struct sk_buff *skb,
182 struct net_device *dev)
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800183{
184 const struct ipvl_dev *ipvlan = netdev_priv(dev);
185 int skblen = skb->len;
186 int ret;
187
188 ret = ipvlan_queue_xmit(skb, dev);
189 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
190 struct ipvl_pcpu_stats *pcptr;
191
192 pcptr = this_cpu_ptr(ipvlan->pcpu_stats);
193
194 u64_stats_update_begin(&pcptr->syncp);
195 pcptr->tx_pkts++;
196 pcptr->tx_bytes += skblen;
197 u64_stats_update_end(&pcptr->syncp);
198 } else {
199 this_cpu_inc(ipvlan->pcpu_stats->tx_drps);
200 }
201 return ret;
202}
203
204static netdev_features_t ipvlan_fix_features(struct net_device *dev,
205 netdev_features_t features)
206{
207 struct ipvl_dev *ipvlan = netdev_priv(dev);
208
209 return features & (ipvlan->sfeatures | ~IPVLAN_FEATURES);
210}
211
212static void ipvlan_change_rx_flags(struct net_device *dev, int change)
213{
214 struct ipvl_dev *ipvlan = netdev_priv(dev);
215 struct net_device *phy_dev = ipvlan->phy_dev;
216
217 if (change & IFF_ALLMULTI)
218 dev_set_allmulti(phy_dev, dev->flags & IFF_ALLMULTI? 1 : -1);
219}
220
221static void ipvlan_set_broadcast_mac_filter(struct ipvl_dev *ipvlan, bool set)
222{
223 struct net_device *dev = ipvlan->dev;
224 unsigned int hashbit = ipvlan_mac_hash(dev->broadcast);
225
226 if (set && !test_bit(hashbit, ipvlan->mac_filters))
227 __set_bit(hashbit, ipvlan->mac_filters);
228 else if (!set && test_bit(hashbit, ipvlan->mac_filters))
229 __clear_bit(hashbit, ipvlan->mac_filters);
230}
231
232static void ipvlan_set_multicast_mac_filter(struct net_device *dev)
233{
234 struct ipvl_dev *ipvlan = netdev_priv(dev);
235
236 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
237 bitmap_fill(ipvlan->mac_filters, IPVLAN_MAC_FILTER_SIZE);
238 } else {
239 struct netdev_hw_addr *ha;
240 DECLARE_BITMAP(mc_filters, IPVLAN_MAC_FILTER_SIZE);
241
242 bitmap_zero(mc_filters, IPVLAN_MAC_FILTER_SIZE);
243 netdev_for_each_mc_addr(ha, dev)
244 __set_bit(ipvlan_mac_hash(ha->addr), mc_filters);
245
246 bitmap_copy(ipvlan->mac_filters, mc_filters,
247 IPVLAN_MAC_FILTER_SIZE);
248 }
249 dev_uc_sync(ipvlan->phy_dev, dev);
250 dev_mc_sync(ipvlan->phy_dev, dev);
251}
252
253static struct rtnl_link_stats64 *ipvlan_get_stats64(struct net_device *dev,
254 struct rtnl_link_stats64 *s)
255{
256 struct ipvl_dev *ipvlan = netdev_priv(dev);
257
258 if (ipvlan->pcpu_stats) {
259 struct ipvl_pcpu_stats *pcptr;
260 u64 rx_pkts, rx_bytes, rx_mcast, tx_pkts, tx_bytes;
261 u32 rx_errs = 0, tx_drps = 0;
262 u32 strt;
263 int idx;
264
265 for_each_possible_cpu(idx) {
266 pcptr = per_cpu_ptr(ipvlan->pcpu_stats, idx);
267 do {
268 strt= u64_stats_fetch_begin_irq(&pcptr->syncp);
269 rx_pkts = pcptr->rx_pkts;
270 rx_bytes = pcptr->rx_bytes;
271 rx_mcast = pcptr->rx_mcast;
272 tx_pkts = pcptr->tx_pkts;
273 tx_bytes = pcptr->tx_bytes;
274 } while (u64_stats_fetch_retry_irq(&pcptr->syncp,
275 strt));
276
277 s->rx_packets += rx_pkts;
278 s->rx_bytes += rx_bytes;
279 s->multicast += rx_mcast;
280 s->tx_packets += tx_pkts;
281 s->tx_bytes += tx_bytes;
282
283 /* u32 values are updated without syncp protection. */
284 rx_errs += pcptr->rx_errs;
285 tx_drps += pcptr->tx_drps;
286 }
287 s->rx_errors = rx_errs;
288 s->rx_dropped = rx_errs;
289 s->tx_dropped = tx_drps;
290 }
291 return s;
292}
293
294static int ipvlan_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
295{
296 struct ipvl_dev *ipvlan = netdev_priv(dev);
297 struct net_device *phy_dev = ipvlan->phy_dev;
298
299 return vlan_vid_add(phy_dev, proto, vid);
300}
301
302static int ipvlan_vlan_rx_kill_vid(struct net_device *dev, __be16 proto,
303 u16 vid)
304{
305 struct ipvl_dev *ipvlan = netdev_priv(dev);
306 struct net_device *phy_dev = ipvlan->phy_dev;
307
308 vlan_vid_del(phy_dev, proto, vid);
309 return 0;
310}
311
Nicolas Dichtel7c411652015-04-02 17:07:06 +0200312static int ipvlan_get_iflink(const struct net_device *dev)
313{
314 struct ipvl_dev *ipvlan = netdev_priv(dev);
315
316 return ipvlan->phy_dev->ifindex;
317}
318
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800319static const struct net_device_ops ipvlan_netdev_ops = {
320 .ndo_init = ipvlan_init,
321 .ndo_uninit = ipvlan_uninit,
322 .ndo_open = ipvlan_open,
323 .ndo_stop = ipvlan_stop,
324 .ndo_start_xmit = ipvlan_start_xmit,
325 .ndo_fix_features = ipvlan_fix_features,
326 .ndo_change_rx_flags = ipvlan_change_rx_flags,
327 .ndo_set_rx_mode = ipvlan_set_multicast_mac_filter,
328 .ndo_get_stats64 = ipvlan_get_stats64,
329 .ndo_vlan_rx_add_vid = ipvlan_vlan_rx_add_vid,
330 .ndo_vlan_rx_kill_vid = ipvlan_vlan_rx_kill_vid,
Nicolas Dichtel7c411652015-04-02 17:07:06 +0200331 .ndo_get_iflink = ipvlan_get_iflink,
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800332};
333
334static int ipvlan_hard_header(struct sk_buff *skb, struct net_device *dev,
335 unsigned short type, const void *daddr,
336 const void *saddr, unsigned len)
337{
338 const struct ipvl_dev *ipvlan = netdev_priv(dev);
339 struct net_device *phy_dev = ipvlan->phy_dev;
340
341 /* TODO Probably use a different field than dev_addr so that the
342 * mac-address on the virtual device is portable and can be carried
343 * while the packets use the mac-addr on the physical device.
344 */
345 return dev_hard_header(skb, phy_dev, type, daddr,
346 saddr ? : dev->dev_addr, len);
347}
348
349static const struct header_ops ipvlan_header_ops = {
350 .create = ipvlan_hard_header,
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800351 .parse = eth_header_parse,
352 .cache = eth_header_cache,
353 .cache_update = eth_header_cache_update,
354};
355
356static int ipvlan_ethtool_get_settings(struct net_device *dev,
357 struct ethtool_cmd *cmd)
358{
359 const struct ipvl_dev *ipvlan = netdev_priv(dev);
360
361 return __ethtool_get_settings(ipvlan->phy_dev, cmd);
362}
363
364static void ipvlan_ethtool_get_drvinfo(struct net_device *dev,
365 struct ethtool_drvinfo *drvinfo)
366{
367 strlcpy(drvinfo->driver, IPVLAN_DRV, sizeof(drvinfo->driver));
368 strlcpy(drvinfo->version, IPV_DRV_VER, sizeof(drvinfo->version));
369}
370
371static u32 ipvlan_ethtool_get_msglevel(struct net_device *dev)
372{
373 const struct ipvl_dev *ipvlan = netdev_priv(dev);
374
375 return ipvlan->msg_enable;
376}
377
378static void ipvlan_ethtool_set_msglevel(struct net_device *dev, u32 value)
379{
380 struct ipvl_dev *ipvlan = netdev_priv(dev);
381
382 ipvlan->msg_enable = value;
383}
384
385static const struct ethtool_ops ipvlan_ethtool_ops = {
386 .get_link = ethtool_op_get_link,
387 .get_settings = ipvlan_ethtool_get_settings,
388 .get_drvinfo = ipvlan_ethtool_get_drvinfo,
389 .get_msglevel = ipvlan_ethtool_get_msglevel,
390 .set_msglevel = ipvlan_ethtool_set_msglevel,
391};
392
393static int ipvlan_nl_changelink(struct net_device *dev,
394 struct nlattr *tb[], struct nlattr *data[])
395{
396 struct ipvl_dev *ipvlan = netdev_priv(dev);
397 struct ipvl_port *port = ipvlan_port_get_rtnl(ipvlan->phy_dev);
398
399 if (data && data[IFLA_IPVLAN_MODE]) {
400 u16 nmode = nla_get_u16(data[IFLA_IPVLAN_MODE]);
401
402 ipvlan_set_port_mode(port, nmode);
403 }
404 return 0;
405}
406
407static size_t ipvlan_nl_getsize(const struct net_device *dev)
408{
409 return (0
410 + nla_total_size(2) /* IFLA_IPVLAN_MODE */
411 );
412}
413
414static int ipvlan_nl_validate(struct nlattr *tb[], struct nlattr *data[])
415{
416 if (data && data[IFLA_IPVLAN_MODE]) {
417 u16 mode = nla_get_u16(data[IFLA_IPVLAN_MODE]);
418
419 if (mode < IPVLAN_MODE_L2 || mode >= IPVLAN_MODE_MAX)
420 return -EINVAL;
421 }
422 return 0;
423}
424
425static int ipvlan_nl_fillinfo(struct sk_buff *skb,
426 const struct net_device *dev)
427{
428 struct ipvl_dev *ipvlan = netdev_priv(dev);
429 struct ipvl_port *port = ipvlan_port_get_rtnl(ipvlan->phy_dev);
430 int ret = -EINVAL;
431
432 if (!port)
433 goto err;
434
435 ret = -EMSGSIZE;
436 if (nla_put_u16(skb, IFLA_IPVLAN_MODE, port->mode))
437 goto err;
438
439 return 0;
440
441err:
442 return ret;
443}
444
445static int ipvlan_link_new(struct net *src_net, struct net_device *dev,
446 struct nlattr *tb[], struct nlattr *data[])
447{
448 struct ipvl_dev *ipvlan = netdev_priv(dev);
449 struct ipvl_port *port;
450 struct net_device *phy_dev;
451 int err;
452
453 if (!tb[IFLA_LINK])
454 return -EINVAL;
455
456 phy_dev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
457 if (!phy_dev)
458 return -ENODEV;
459
Mahesh Bandewar5933fea2014-12-06 15:53:33 -0800460 if (netif_is_ipvlan(phy_dev)) {
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800461 struct ipvl_dev *tmp = netdev_priv(phy_dev);
462
463 phy_dev = tmp->phy_dev;
Mahesh Bandewar5933fea2014-12-06 15:53:33 -0800464 } else if (!netif_is_ipvlan_port(phy_dev)) {
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800465 err = ipvlan_port_create(phy_dev);
466 if (err < 0)
467 return err;
468 }
469
470 port = ipvlan_port_get_rtnl(phy_dev);
471 if (data && data[IFLA_IPVLAN_MODE])
472 port->mode = nla_get_u16(data[IFLA_IPVLAN_MODE]);
473
474 ipvlan->phy_dev = phy_dev;
475 ipvlan->dev = dev;
476 ipvlan->port = port;
477 ipvlan->sfeatures = IPVLAN_FEATURES;
478 INIT_LIST_HEAD(&ipvlan->addrs);
479 ipvlan->ipv4cnt = 0;
480 ipvlan->ipv6cnt = 0;
481
482 /* TODO Probably put random address here to be presented to the
483 * world but keep using the physical-dev address for the outgoing
484 * packets.
485 */
486 memcpy(dev->dev_addr, phy_dev->dev_addr, ETH_ALEN);
487
488 dev->priv_flags |= IFF_IPVLAN_SLAVE;
489
490 port->count += 1;
491 err = register_netdevice(dev);
492 if (err < 0)
493 goto ipvlan_destroy_port;
494
495 err = netdev_upper_dev_link(phy_dev, dev);
496 if (err)
497 goto ipvlan_destroy_port;
498
499 list_add_tail_rcu(&ipvlan->pnode, &port->ipvlans);
500 netif_stacked_transfer_operstate(phy_dev, dev);
501 return 0;
502
503ipvlan_destroy_port:
504 port->count -= 1;
505 if (!port->count)
506 ipvlan_port_destroy(phy_dev);
507
508 return err;
509}
510
511static void ipvlan_link_delete(struct net_device *dev, struct list_head *head)
512{
513 struct ipvl_dev *ipvlan = netdev_priv(dev);
514 struct ipvl_addr *addr, *next;
515
516 if (ipvlan->ipv6cnt > 0 || ipvlan->ipv4cnt > 0) {
517 list_for_each_entry_safe(addr, next, &ipvlan->addrs, anode) {
518 ipvlan_ht_addr_del(addr, !dev->dismantle);
Jiri Benc40891e82015-03-28 19:13:24 +0100519 list_del(&addr->anode);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800520 }
521 }
522 list_del_rcu(&ipvlan->pnode);
523 unregister_netdevice_queue(dev, head);
524 netdev_upper_dev_unlink(ipvlan->phy_dev, dev);
525}
526
527static void ipvlan_link_setup(struct net_device *dev)
528{
529 ether_setup(dev);
530
531 dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
532 dev->priv_flags |= IFF_UNICAST_FLT;
533 dev->netdev_ops = &ipvlan_netdev_ops;
534 dev->destructor = free_netdev;
535 dev->header_ops = &ipvlan_header_ops;
536 dev->ethtool_ops = &ipvlan_ethtool_ops;
537 dev->tx_queue_len = 0;
538}
539
540static const struct nla_policy ipvlan_nl_policy[IFLA_IPVLAN_MAX + 1] =
541{
542 [IFLA_IPVLAN_MODE] = { .type = NLA_U16 },
543};
544
545static struct rtnl_link_ops ipvlan_link_ops = {
546 .kind = "ipvlan",
547 .priv_size = sizeof(struct ipvl_dev),
548
549 .get_size = ipvlan_nl_getsize,
550 .policy = ipvlan_nl_policy,
551 .validate = ipvlan_nl_validate,
552 .fill_info = ipvlan_nl_fillinfo,
553 .changelink = ipvlan_nl_changelink,
554 .maxtype = IFLA_IPVLAN_MAX,
555
556 .setup = ipvlan_link_setup,
557 .newlink = ipvlan_link_new,
558 .dellink = ipvlan_link_delete,
559};
560
Mahesh Bandewar92c7b0d2014-11-25 21:24:43 -0800561static int ipvlan_link_register(struct rtnl_link_ops *ops)
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800562{
563 return rtnl_link_register(ops);
564}
565
566static int ipvlan_device_event(struct notifier_block *unused,
567 unsigned long event, void *ptr)
568{
569 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
570 struct ipvl_dev *ipvlan, *next;
571 struct ipvl_port *port;
572 LIST_HEAD(lst_kill);
573
Mahesh Bandewar5933fea2014-12-06 15:53:33 -0800574 if (!netif_is_ipvlan_port(dev))
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800575 return NOTIFY_DONE;
576
577 port = ipvlan_port_get_rtnl(dev);
578
579 switch (event) {
580 case NETDEV_CHANGE:
581 list_for_each_entry(ipvlan, &port->ipvlans, pnode)
582 netif_stacked_transfer_operstate(ipvlan->phy_dev,
583 ipvlan->dev);
584 break;
585
586 case NETDEV_UNREGISTER:
587 if (dev->reg_state != NETREG_UNREGISTERING)
588 break;
589
590 list_for_each_entry_safe(ipvlan, next, &port->ipvlans,
591 pnode)
592 ipvlan->dev->rtnl_link_ops->dellink(ipvlan->dev,
593 &lst_kill);
594 unregister_netdevice_many(&lst_kill);
595 break;
596
597 case NETDEV_FEAT_CHANGE:
598 list_for_each_entry(ipvlan, &port->ipvlans, pnode) {
599 ipvlan->dev->features = dev->features & IPVLAN_FEATURES;
600 ipvlan->dev->gso_max_size = dev->gso_max_size;
601 netdev_features_change(ipvlan->dev);
602 }
603 break;
604
605 case NETDEV_CHANGEMTU:
606 list_for_each_entry(ipvlan, &port->ipvlans, pnode)
607 ipvlan_adjust_mtu(ipvlan, dev);
608 break;
609
610 case NETDEV_PRE_TYPE_CHANGE:
611 /* Forbid underlying device to change its type. */
612 return NOTIFY_BAD;
613 }
614 return NOTIFY_DONE;
615}
616
617static int ipvlan_add_addr6(struct ipvl_dev *ipvlan, struct in6_addr *ip6_addr)
618{
619 struct ipvl_addr *addr;
620
Jiri Bence9997c22015-03-28 19:13:25 +0100621 if (ipvlan_addr_busy(ipvlan->port, ip6_addr, true)) {
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800622 netif_err(ipvlan, ifup, ipvlan->dev,
623 "Failed to add IPv6=%pI6c addr for %s intf\n",
624 ip6_addr, ipvlan->dev->name);
625 return -EINVAL;
626 }
627 addr = kzalloc(sizeof(struct ipvl_addr), GFP_ATOMIC);
628 if (!addr)
629 return -ENOMEM;
630
631 addr->master = ipvlan;
632 memcpy(&addr->ip6addr, ip6_addr, sizeof(struct in6_addr));
633 addr->atype = IPVL_IPV6;
Jiri Benc40891e82015-03-28 19:13:24 +0100634 list_add_tail(&addr->anode, &ipvlan->addrs);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800635 ipvlan->ipv6cnt++;
Jiri Benc27705f72015-03-28 19:13:22 +0100636 /* If the interface is not up, the address will be added to the hash
637 * list by ipvlan_open.
638 */
639 if (netif_running(ipvlan->dev))
640 ipvlan_ht_addr_add(ipvlan, addr);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800641
642 return 0;
643}
644
645static void ipvlan_del_addr6(struct ipvl_dev *ipvlan, struct in6_addr *ip6_addr)
646{
647 struct ipvl_addr *addr;
648
Jiri Bence9997c22015-03-28 19:13:25 +0100649 addr = ipvlan_find_addr(ipvlan, ip6_addr, true);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800650 if (!addr)
651 return;
652
653 ipvlan_ht_addr_del(addr, true);
Jiri Benc40891e82015-03-28 19:13:24 +0100654 list_del(&addr->anode);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800655 ipvlan->ipv6cnt--;
656 WARN_ON(ipvlan->ipv6cnt < 0);
657 kfree_rcu(addr, rcu);
658
659 return;
660}
661
662static int ipvlan_addr6_event(struct notifier_block *unused,
663 unsigned long event, void *ptr)
664{
665 struct inet6_ifaddr *if6 = (struct inet6_ifaddr *)ptr;
666 struct net_device *dev = (struct net_device *)if6->idev->dev;
667 struct ipvl_dev *ipvlan = netdev_priv(dev);
668
Mahesh Bandewar5933fea2014-12-06 15:53:33 -0800669 if (!netif_is_ipvlan(dev))
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800670 return NOTIFY_DONE;
671
672 if (!ipvlan || !ipvlan->port)
673 return NOTIFY_DONE;
674
675 switch (event) {
676 case NETDEV_UP:
677 if (ipvlan_add_addr6(ipvlan, &if6->addr))
678 return NOTIFY_BAD;
679 break;
680
681 case NETDEV_DOWN:
682 ipvlan_del_addr6(ipvlan, &if6->addr);
683 break;
684 }
685
686 return NOTIFY_OK;
687}
688
689static int ipvlan_add_addr4(struct ipvl_dev *ipvlan, struct in_addr *ip4_addr)
690{
691 struct ipvl_addr *addr;
692
Jiri Bence9997c22015-03-28 19:13:25 +0100693 if (ipvlan_addr_busy(ipvlan->port, ip4_addr, false)) {
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800694 netif_err(ipvlan, ifup, ipvlan->dev,
695 "Failed to add IPv4=%pI4 on %s intf.\n",
696 ip4_addr, ipvlan->dev->name);
697 return -EINVAL;
698 }
699 addr = kzalloc(sizeof(struct ipvl_addr), GFP_KERNEL);
700 if (!addr)
701 return -ENOMEM;
702
703 addr->master = ipvlan;
704 memcpy(&addr->ip4addr, ip4_addr, sizeof(struct in_addr));
705 addr->atype = IPVL_IPV4;
Jiri Benc40891e82015-03-28 19:13:24 +0100706 list_add_tail(&addr->anode, &ipvlan->addrs);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800707 ipvlan->ipv4cnt++;
Jiri Benc27705f72015-03-28 19:13:22 +0100708 /* If the interface is not up, the address will be added to the hash
709 * list by ipvlan_open.
710 */
711 if (netif_running(ipvlan->dev))
712 ipvlan_ht_addr_add(ipvlan, addr);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800713 ipvlan_set_broadcast_mac_filter(ipvlan, true);
714
715 return 0;
716}
717
718static void ipvlan_del_addr4(struct ipvl_dev *ipvlan, struct in_addr *ip4_addr)
719{
720 struct ipvl_addr *addr;
721
Jiri Bence9997c22015-03-28 19:13:25 +0100722 addr = ipvlan_find_addr(ipvlan, ip4_addr, false);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800723 if (!addr)
724 return;
725
726 ipvlan_ht_addr_del(addr, true);
Jiri Benc40891e82015-03-28 19:13:24 +0100727 list_del(&addr->anode);
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800728 ipvlan->ipv4cnt--;
729 WARN_ON(ipvlan->ipv4cnt < 0);
730 if (!ipvlan->ipv4cnt)
731 ipvlan_set_broadcast_mac_filter(ipvlan, false);
732 kfree_rcu(addr, rcu);
733
734 return;
735}
736
737static int ipvlan_addr4_event(struct notifier_block *unused,
738 unsigned long event, void *ptr)
739{
740 struct in_ifaddr *if4 = (struct in_ifaddr *)ptr;
741 struct net_device *dev = (struct net_device *)if4->ifa_dev->dev;
742 struct ipvl_dev *ipvlan = netdev_priv(dev);
743 struct in_addr ip4_addr;
744
Mahesh Bandewar5933fea2014-12-06 15:53:33 -0800745 if (!netif_is_ipvlan(dev))
Mahesh Bandewar2ad7bf32014-11-23 23:07:46 -0800746 return NOTIFY_DONE;
747
748 if (!ipvlan || !ipvlan->port)
749 return NOTIFY_DONE;
750
751 switch (event) {
752 case NETDEV_UP:
753 ip4_addr.s_addr = if4->ifa_address;
754 if (ipvlan_add_addr4(ipvlan, &ip4_addr))
755 return NOTIFY_BAD;
756 break;
757
758 case NETDEV_DOWN:
759 ip4_addr.s_addr = if4->ifa_address;
760 ipvlan_del_addr4(ipvlan, &ip4_addr);
761 break;
762 }
763
764 return NOTIFY_OK;
765}
766
767static struct notifier_block ipvlan_addr4_notifier_block __read_mostly = {
768 .notifier_call = ipvlan_addr4_event,
769};
770
771static struct notifier_block ipvlan_notifier_block __read_mostly = {
772 .notifier_call = ipvlan_device_event,
773};
774
775static struct notifier_block ipvlan_addr6_notifier_block __read_mostly = {
776 .notifier_call = ipvlan_addr6_event,
777};
778
779static int __init ipvlan_init_module(void)
780{
781 int err;
782
783 ipvlan_init_secret();
784 register_netdevice_notifier(&ipvlan_notifier_block);
785 register_inet6addr_notifier(&ipvlan_addr6_notifier_block);
786 register_inetaddr_notifier(&ipvlan_addr4_notifier_block);
787
788 err = ipvlan_link_register(&ipvlan_link_ops);
789 if (err < 0)
790 goto error;
791
792 return 0;
793error:
794 unregister_inetaddr_notifier(&ipvlan_addr4_notifier_block);
795 unregister_inet6addr_notifier(&ipvlan_addr6_notifier_block);
796 unregister_netdevice_notifier(&ipvlan_notifier_block);
797 return err;
798}
799
800static void __exit ipvlan_cleanup_module(void)
801{
802 rtnl_link_unregister(&ipvlan_link_ops);
803 unregister_netdevice_notifier(&ipvlan_notifier_block);
804 unregister_inetaddr_notifier(&ipvlan_addr4_notifier_block);
805 unregister_inet6addr_notifier(&ipvlan_addr6_notifier_block);
806}
807
808module_init(ipvlan_init_module);
809module_exit(ipvlan_cleanup_module);
810
811MODULE_LICENSE("GPL");
812MODULE_AUTHOR("Mahesh Bandewar <maheshb@google.com>");
813MODULE_DESCRIPTION("Driver for L3 (IPv6/IPv4) based VLANs");
814MODULE_ALIAS_RTNL_LINK("ipvlan");