blob: 4edec38437d00e95390032c2f648f0b08bf273f1 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001// SPDX-License-Identifier: GPL-2.0-or-later
2/* Copyright (c) 2014 Mahesh Bandewar <maheshb@google.com>
3 */
4
5#include "ipvlan.h"
6
7static int ipvlan_set_port_mode(struct ipvl_port *port, u16 nval,
8 struct netlink_ext_ack *extack)
9{
10 struct ipvl_dev *ipvlan;
11 unsigned int flags;
12 int err;
13
14 ASSERT_RTNL();
15 if (port->mode != nval) {
16 list_for_each_entry(ipvlan, &port->ipvlans, pnode) {
17 flags = ipvlan->dev->flags;
18 if (nval == IPVLAN_MODE_L3 || nval == IPVLAN_MODE_L3S) {
19 err = dev_change_flags(ipvlan->dev,
20 flags | IFF_NOARP,
21 extack);
22 } else {
23 err = dev_change_flags(ipvlan->dev,
24 flags & ~IFF_NOARP,
25 extack);
26 }
27 if (unlikely(err))
28 goto fail;
29 }
30 if (nval == IPVLAN_MODE_L3S) {
31 /* New mode is L3S */
32 err = ipvlan_l3s_register(port);
33 if (err)
34 goto fail;
35 } else if (port->mode == IPVLAN_MODE_L3S) {
36 /* Old mode was L3S */
37 ipvlan_l3s_unregister(port);
38 }
39 port->mode = nval;
40 }
41 return 0;
42
43fail:
44 /* Undo the flags changes that have been done so far. */
45 list_for_each_entry_continue_reverse(ipvlan, &port->ipvlans, pnode) {
46 flags = ipvlan->dev->flags;
47 if (port->mode == IPVLAN_MODE_L3 ||
48 port->mode == IPVLAN_MODE_L3S)
49 dev_change_flags(ipvlan->dev, flags | IFF_NOARP,
50 NULL);
51 else
52 dev_change_flags(ipvlan->dev, flags & ~IFF_NOARP,
53 NULL);
54 }
55
56 return err;
57}
58
59static int ipvlan_port_create(struct net_device *dev)
60{
61 struct ipvl_port *port;
62 int err, idx;
63
64 port = kzalloc(sizeof(struct ipvl_port), GFP_KERNEL);
65 if (!port)
66 return -ENOMEM;
67
68 write_pnet(&port->pnet, dev_net(dev));
69 port->dev = dev;
70 port->mode = IPVLAN_MODE_L3;
71 INIT_LIST_HEAD(&port->ipvlans);
72 for (idx = 0; idx < IPVLAN_HASH_SIZE; idx++)
73 INIT_HLIST_HEAD(&port->hlhead[idx]);
74
75 skb_queue_head_init(&port->backlog);
76 INIT_WORK(&port->wq, ipvlan_process_multicast);
77 ida_init(&port->ida);
78 port->dev_id_start = 1;
79
80 err = netdev_rx_handler_register(dev, ipvlan_handle_frame, port);
81 if (err)
82 goto err;
83
84 return 0;
85
86err:
87 kfree(port);
88 return err;
89}
90
91static void ipvlan_port_destroy(struct net_device *dev)
92{
93 struct ipvl_port *port = ipvlan_port_get_rtnl(dev);
94 struct sk_buff *skb;
95
96 if (port->mode == IPVLAN_MODE_L3S)
97 ipvlan_l3s_unregister(port);
98 netdev_rx_handler_unregister(dev);
99 cancel_work_sync(&port->wq);
100 while ((skb = __skb_dequeue(&port->backlog)) != NULL) {
101 if (skb->dev)
102 dev_put(skb->dev);
103 kfree_skb(skb);
104 }
105 ida_destroy(&port->ida);
106 kfree(port);
107}
108
109#define IPVLAN_ALWAYS_ON_OFLOADS \
110 (NETIF_F_SG | NETIF_F_HW_CSUM | \
111 NETIF_F_GSO_ROBUST | NETIF_F_GSO_SOFTWARE | NETIF_F_GSO_ENCAP_ALL)
112
113#define IPVLAN_ALWAYS_ON \
114 (IPVLAN_ALWAYS_ON_OFLOADS | NETIF_F_LLTX | NETIF_F_VLAN_CHALLENGED)
115
116#define IPVLAN_FEATURES \
117 (NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | \
118 NETIF_F_GSO | NETIF_F_TSO | NETIF_F_GSO_ROBUST | \
119 NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_GRO | NETIF_F_RXCSUM | \
120 NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_STAG_FILTER)
121
122 /* NETIF_F_GSO_ENCAP_ALL NETIF_F_GSO_SOFTWARE Newly added */
123
124#define IPVLAN_STATE_MASK \
125 ((1<<__LINK_STATE_NOCARRIER) | (1<<__LINK_STATE_DORMANT))
126
127static int ipvlan_init(struct net_device *dev)
128{
129 struct ipvl_dev *ipvlan = netdev_priv(dev);
130 struct net_device *phy_dev = ipvlan->phy_dev;
131 struct ipvl_port *port;
132 int err;
133
134 dev->state = (dev->state & ~IPVLAN_STATE_MASK) |
135 (phy_dev->state & IPVLAN_STATE_MASK);
136 dev->features = phy_dev->features & IPVLAN_FEATURES;
137 dev->features |= IPVLAN_ALWAYS_ON;
138 dev->vlan_features = phy_dev->vlan_features & IPVLAN_FEATURES;
139 dev->vlan_features |= IPVLAN_ALWAYS_ON_OFLOADS;
140 dev->hw_enc_features |= dev->features;
141 dev->gso_max_size = phy_dev->gso_max_size;
142 dev->gso_max_segs = phy_dev->gso_max_segs;
143 dev->hard_header_len = phy_dev->hard_header_len;
144
145 ipvlan->pcpu_stats = netdev_alloc_pcpu_stats(struct ipvl_pcpu_stats);
146 if (!ipvlan->pcpu_stats)
147 return -ENOMEM;
148
149 if (!netif_is_ipvlan_port(phy_dev)) {
150 err = ipvlan_port_create(phy_dev);
151 if (err < 0) {
152 free_percpu(ipvlan->pcpu_stats);
153 return err;
154 }
155 }
156 port = ipvlan_port_get_rtnl(phy_dev);
157 port->count += 1;
158 return 0;
159}
160
161static void ipvlan_uninit(struct net_device *dev)
162{
163 struct ipvl_dev *ipvlan = netdev_priv(dev);
164 struct net_device *phy_dev = ipvlan->phy_dev;
165 struct ipvl_port *port;
166
167 free_percpu(ipvlan->pcpu_stats);
168
169 port = ipvlan_port_get_rtnl(phy_dev);
170 port->count -= 1;
171 if (!port->count)
172 ipvlan_port_destroy(port->dev);
173}
174
175static int ipvlan_open(struct net_device *dev)
176{
177 struct ipvl_dev *ipvlan = netdev_priv(dev);
178 struct ipvl_addr *addr;
179
180 if (ipvlan->port->mode == IPVLAN_MODE_L3 ||
181 ipvlan->port->mode == IPVLAN_MODE_L3S)
182 dev->flags |= IFF_NOARP;
183 else
184 dev->flags &= ~IFF_NOARP;
185
186 rcu_read_lock();
187 list_for_each_entry_rcu(addr, &ipvlan->addrs, anode)
188 ipvlan_ht_addr_add(ipvlan, addr);
189 rcu_read_unlock();
190
191 return 0;
192}
193
194static int ipvlan_stop(struct net_device *dev)
195{
196 struct ipvl_dev *ipvlan = netdev_priv(dev);
197 struct net_device *phy_dev = ipvlan->phy_dev;
198 struct ipvl_addr *addr;
199
200 dev_uc_unsync(phy_dev, dev);
201 dev_mc_unsync(phy_dev, dev);
202
203 rcu_read_lock();
204 list_for_each_entry_rcu(addr, &ipvlan->addrs, anode)
205 ipvlan_ht_addr_del(addr);
206 rcu_read_unlock();
207
208 return 0;
209}
210
211static netdev_tx_t ipvlan_start_xmit(struct sk_buff *skb,
212 struct net_device *dev)
213{
214 const struct ipvl_dev *ipvlan = netdev_priv(dev);
215 int skblen = skb->len;
216 int ret;
217
218 ret = ipvlan_queue_xmit(skb, dev);
219 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
220 struct ipvl_pcpu_stats *pcptr;
221
222 pcptr = this_cpu_ptr(ipvlan->pcpu_stats);
223
224 u64_stats_update_begin(&pcptr->syncp);
225 pcptr->tx_pkts++;
226 pcptr->tx_bytes += skblen;
227 u64_stats_update_end(&pcptr->syncp);
228 } else {
229 this_cpu_inc(ipvlan->pcpu_stats->tx_drps);
230 }
231 return ret;
232}
233
234static netdev_features_t ipvlan_fix_features(struct net_device *dev,
235 netdev_features_t features)
236{
237 struct ipvl_dev *ipvlan = netdev_priv(dev);
238
239 features |= NETIF_F_ALL_FOR_ALL;
240 features &= (ipvlan->sfeatures | ~IPVLAN_FEATURES);
241 features = netdev_increment_features(ipvlan->phy_dev->features,
242 features, features);
243 features |= IPVLAN_ALWAYS_ON;
244 features &= (IPVLAN_FEATURES | IPVLAN_ALWAYS_ON);
245
246 return features;
247}
248
249static void ipvlan_change_rx_flags(struct net_device *dev, int change)
250{
251 struct ipvl_dev *ipvlan = netdev_priv(dev);
252 struct net_device *phy_dev = ipvlan->phy_dev;
253
254 if (change & IFF_ALLMULTI)
255 dev_set_allmulti(phy_dev, dev->flags & IFF_ALLMULTI? 1 : -1);
256}
257
258static void ipvlan_set_multicast_mac_filter(struct net_device *dev)
259{
260 struct ipvl_dev *ipvlan = netdev_priv(dev);
261
262 if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) {
263 bitmap_fill(ipvlan->mac_filters, IPVLAN_MAC_FILTER_SIZE);
264 } else {
265 struct netdev_hw_addr *ha;
266 DECLARE_BITMAP(mc_filters, IPVLAN_MAC_FILTER_SIZE);
267
268 bitmap_zero(mc_filters, IPVLAN_MAC_FILTER_SIZE);
269 netdev_for_each_mc_addr(ha, dev)
270 __set_bit(ipvlan_mac_hash(ha->addr), mc_filters);
271
272 /* Turn-on broadcast bit irrespective of address family,
273 * since broadcast is deferred to a work-queue, hence no
274 * impact on fast-path processing.
275 */
276 __set_bit(ipvlan_mac_hash(dev->broadcast), mc_filters);
277
278 bitmap_copy(ipvlan->mac_filters, mc_filters,
279 IPVLAN_MAC_FILTER_SIZE);
280 }
281 dev_uc_sync(ipvlan->phy_dev, dev);
282 dev_mc_sync(ipvlan->phy_dev, dev);
283}
284
285static void ipvlan_get_stats64(struct net_device *dev,
286 struct rtnl_link_stats64 *s)
287{
288 struct ipvl_dev *ipvlan = netdev_priv(dev);
289
290 if (ipvlan->pcpu_stats) {
291 struct ipvl_pcpu_stats *pcptr;
292 u64 rx_pkts, rx_bytes, rx_mcast, tx_pkts, tx_bytes;
293 u32 rx_errs = 0, tx_drps = 0;
294 u32 strt;
295 int idx;
296
297 for_each_possible_cpu(idx) {
298 pcptr = per_cpu_ptr(ipvlan->pcpu_stats, idx);
299 do {
300 strt= u64_stats_fetch_begin_irq(&pcptr->syncp);
301 rx_pkts = pcptr->rx_pkts;
302 rx_bytes = pcptr->rx_bytes;
303 rx_mcast = pcptr->rx_mcast;
304 tx_pkts = pcptr->tx_pkts;
305 tx_bytes = pcptr->tx_bytes;
306 } while (u64_stats_fetch_retry_irq(&pcptr->syncp,
307 strt));
308
309 s->rx_packets += rx_pkts;
310 s->rx_bytes += rx_bytes;
311 s->multicast += rx_mcast;
312 s->tx_packets += tx_pkts;
313 s->tx_bytes += tx_bytes;
314
315 /* u32 values are updated without syncp protection. */
316 rx_errs += pcptr->rx_errs;
317 tx_drps += pcptr->tx_drps;
318 }
319 s->rx_errors = rx_errs;
320 s->rx_dropped = rx_errs;
321 s->tx_dropped = tx_drps;
322 }
323 s->tx_errors = DEV_STATS_READ(dev, tx_errors);
324}
325
326static int ipvlan_vlan_rx_add_vid(struct net_device *dev, __be16 proto, u16 vid)
327{
328 struct ipvl_dev *ipvlan = netdev_priv(dev);
329 struct net_device *phy_dev = ipvlan->phy_dev;
330
331 return vlan_vid_add(phy_dev, proto, vid);
332}
333
334static int ipvlan_vlan_rx_kill_vid(struct net_device *dev, __be16 proto,
335 u16 vid)
336{
337 struct ipvl_dev *ipvlan = netdev_priv(dev);
338 struct net_device *phy_dev = ipvlan->phy_dev;
339
340 vlan_vid_del(phy_dev, proto, vid);
341 return 0;
342}
343
344static int ipvlan_get_iflink(const struct net_device *dev)
345{
346 struct ipvl_dev *ipvlan = netdev_priv(dev);
347
348 return ipvlan->phy_dev->ifindex;
349}
350
351static const struct net_device_ops ipvlan_netdev_ops = {
352 .ndo_init = ipvlan_init,
353 .ndo_uninit = ipvlan_uninit,
354 .ndo_open = ipvlan_open,
355 .ndo_stop = ipvlan_stop,
356 .ndo_start_xmit = ipvlan_start_xmit,
357 .ndo_fix_features = ipvlan_fix_features,
358 .ndo_change_rx_flags = ipvlan_change_rx_flags,
359 .ndo_set_rx_mode = ipvlan_set_multicast_mac_filter,
360 .ndo_get_stats64 = ipvlan_get_stats64,
361 .ndo_vlan_rx_add_vid = ipvlan_vlan_rx_add_vid,
362 .ndo_vlan_rx_kill_vid = ipvlan_vlan_rx_kill_vid,
363 .ndo_get_iflink = ipvlan_get_iflink,
364};
365
366static int ipvlan_hard_header(struct sk_buff *skb, struct net_device *dev,
367 unsigned short type, const void *daddr,
368 const void *saddr, unsigned len)
369{
370 const struct ipvl_dev *ipvlan = netdev_priv(dev);
371 struct net_device *phy_dev = ipvlan->phy_dev;
372
373 /* TODO Probably use a different field than dev_addr so that the
374 * mac-address on the virtual device is portable and can be carried
375 * while the packets use the mac-addr on the physical device.
376 */
377 return dev_hard_header(skb, phy_dev, type, daddr,
378 saddr ? : phy_dev->dev_addr, len);
379}
380
381static const struct header_ops ipvlan_header_ops = {
382 .create = ipvlan_hard_header,
383 .parse = eth_header_parse,
384 .cache = eth_header_cache,
385 .cache_update = eth_header_cache_update,
386};
387
388static void ipvlan_adjust_mtu(struct ipvl_dev *ipvlan, struct net_device *dev)
389{
390 ipvlan->dev->mtu = dev->mtu;
391}
392
393static bool netif_is_ipvlan(const struct net_device *dev)
394{
395 /* both ipvlan and ipvtap devices use the same netdev_ops */
396 return dev->netdev_ops == &ipvlan_netdev_ops;
397}
398
399static int ipvlan_ethtool_get_link_ksettings(struct net_device *dev,
400 struct ethtool_link_ksettings *cmd)
401{
402 const struct ipvl_dev *ipvlan = netdev_priv(dev);
403
404 return __ethtool_get_link_ksettings(ipvlan->phy_dev, cmd);
405}
406
407static void ipvlan_ethtool_get_drvinfo(struct net_device *dev,
408 struct ethtool_drvinfo *drvinfo)
409{
410 strlcpy(drvinfo->driver, IPVLAN_DRV, sizeof(drvinfo->driver));
411 strlcpy(drvinfo->version, IPV_DRV_VER, sizeof(drvinfo->version));
412}
413
414static u32 ipvlan_ethtool_get_msglevel(struct net_device *dev)
415{
416 const struct ipvl_dev *ipvlan = netdev_priv(dev);
417
418 return ipvlan->msg_enable;
419}
420
421static void ipvlan_ethtool_set_msglevel(struct net_device *dev, u32 value)
422{
423 struct ipvl_dev *ipvlan = netdev_priv(dev);
424
425 ipvlan->msg_enable = value;
426}
427
428static const struct ethtool_ops ipvlan_ethtool_ops = {
429 .get_link = ethtool_op_get_link,
430 .get_link_ksettings = ipvlan_ethtool_get_link_ksettings,
431 .get_drvinfo = ipvlan_ethtool_get_drvinfo,
432 .get_msglevel = ipvlan_ethtool_get_msglevel,
433 .set_msglevel = ipvlan_ethtool_set_msglevel,
434};
435
436static int ipvlan_nl_changelink(struct net_device *dev,
437 struct nlattr *tb[], struct nlattr *data[],
438 struct netlink_ext_ack *extack)
439{
440 struct ipvl_dev *ipvlan = netdev_priv(dev);
441 struct ipvl_port *port = ipvlan_port_get_rtnl(ipvlan->phy_dev);
442 int err = 0;
443
444 if (!data)
445 return 0;
446 if (!ns_capable(dev_net(ipvlan->phy_dev)->user_ns, CAP_NET_ADMIN))
447 return -EPERM;
448
449 if (data[IFLA_IPVLAN_MODE]) {
450 u16 nmode = nla_get_u16(data[IFLA_IPVLAN_MODE]);
451
452 err = ipvlan_set_port_mode(port, nmode, extack);
453 }
454
455 if (!err && data[IFLA_IPVLAN_FLAGS]) {
456 u16 flags = nla_get_u16(data[IFLA_IPVLAN_FLAGS]);
457
458 if (flags & IPVLAN_F_PRIVATE)
459 ipvlan_mark_private(port);
460 else
461 ipvlan_clear_private(port);
462
463 if (flags & IPVLAN_F_VEPA)
464 ipvlan_mark_vepa(port);
465 else
466 ipvlan_clear_vepa(port);
467 }
468
469 return err;
470}
471
472static size_t ipvlan_nl_getsize(const struct net_device *dev)
473{
474 return (0
475 + nla_total_size(2) /* IFLA_IPVLAN_MODE */
476 + nla_total_size(2) /* IFLA_IPVLAN_FLAGS */
477 );
478}
479
480static int ipvlan_nl_validate(struct nlattr *tb[], struct nlattr *data[],
481 struct netlink_ext_ack *extack)
482{
483 if (!data)
484 return 0;
485
486 if (data[IFLA_IPVLAN_MODE]) {
487 u16 mode = nla_get_u16(data[IFLA_IPVLAN_MODE]);
488
489 if (mode >= IPVLAN_MODE_MAX)
490 return -EINVAL;
491 }
492 if (data[IFLA_IPVLAN_FLAGS]) {
493 u16 flags = nla_get_u16(data[IFLA_IPVLAN_FLAGS]);
494
495 /* Only two bits are used at this moment. */
496 if (flags & ~(IPVLAN_F_PRIVATE | IPVLAN_F_VEPA))
497 return -EINVAL;
498 /* Also both flags can't be active at the same time. */
499 if ((flags & (IPVLAN_F_PRIVATE | IPVLAN_F_VEPA)) ==
500 (IPVLAN_F_PRIVATE | IPVLAN_F_VEPA))
501 return -EINVAL;
502 }
503
504 return 0;
505}
506
507static int ipvlan_nl_fillinfo(struct sk_buff *skb,
508 const struct net_device *dev)
509{
510 struct ipvl_dev *ipvlan = netdev_priv(dev);
511 struct ipvl_port *port = ipvlan_port_get_rtnl(ipvlan->phy_dev);
512 int ret = -EINVAL;
513
514 if (!port)
515 goto err;
516
517 ret = -EMSGSIZE;
518 if (nla_put_u16(skb, IFLA_IPVLAN_MODE, port->mode))
519 goto err;
520 if (nla_put_u16(skb, IFLA_IPVLAN_FLAGS, port->flags))
521 goto err;
522
523 return 0;
524
525err:
526 return ret;
527}
528
529int ipvlan_link_new(struct net *src_net, struct net_device *dev,
530 struct nlattr *tb[], struct nlattr *data[],
531 struct netlink_ext_ack *extack)
532{
533 struct ipvl_dev *ipvlan = netdev_priv(dev);
534 struct ipvl_port *port;
535 struct net_device *phy_dev;
536 int err;
537 u16 mode = IPVLAN_MODE_L3;
538
539 if (!tb[IFLA_LINK])
540 return -EINVAL;
541
542 phy_dev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK]));
543 if (!phy_dev)
544 return -ENODEV;
545
546 if (netif_is_ipvlan(phy_dev)) {
547 struct ipvl_dev *tmp = netdev_priv(phy_dev);
548
549 phy_dev = tmp->phy_dev;
550 if (!ns_capable(dev_net(phy_dev)->user_ns, CAP_NET_ADMIN))
551 return -EPERM;
552 } else if (!netif_is_ipvlan_port(phy_dev)) {
553 /* Exit early if the underlying link is invalid or busy */
554 if (phy_dev->type != ARPHRD_ETHER ||
555 phy_dev->flags & IFF_LOOPBACK) {
556 netdev_err(phy_dev,
557 "Master is either lo or non-ether device\n");
558 return -EINVAL;
559 }
560
561 if (netdev_is_rx_handler_busy(phy_dev)) {
562 netdev_err(phy_dev, "Device is already in use.\n");
563 return -EBUSY;
564 }
565 }
566
567 ipvlan->phy_dev = phy_dev;
568 ipvlan->dev = dev;
569 ipvlan->sfeatures = IPVLAN_FEATURES;
570 if (!tb[IFLA_MTU])
571 ipvlan_adjust_mtu(ipvlan, phy_dev);
572 INIT_LIST_HEAD(&ipvlan->addrs);
573 spin_lock_init(&ipvlan->addrs_lock);
574
575 /* TODO Probably put random address here to be presented to the
576 * world but keep using the physical-dev address for the outgoing
577 * packets.
578 */
579 memcpy(dev->dev_addr, phy_dev->dev_addr, ETH_ALEN);
580
581 dev->priv_flags |= IFF_NO_RX_HANDLER;
582
583 err = register_netdevice(dev);
584 if (err < 0)
585 return err;
586
587 /* ipvlan_init() would have created the port, if required */
588 port = ipvlan_port_get_rtnl(phy_dev);
589 ipvlan->port = port;
590
591 /* If the port-id base is at the MAX value, then wrap it around and
592 * begin from 0x1 again. This may be due to a busy system where lots
593 * of slaves are getting created and deleted.
594 */
595 if (port->dev_id_start == 0xFFFE)
596 port->dev_id_start = 0x1;
597
598 /* Since L2 address is shared among all IPvlan slaves including
599 * master, use unique 16 bit dev-ids to diffentiate among them.
600 * Assign IDs between 0x1 and 0xFFFE (used by the master) to each
601 * slave link [see addrconf_ifid_eui48()].
602 */
603 err = ida_simple_get(&port->ida, port->dev_id_start, 0xFFFE,
604 GFP_KERNEL);
605 if (err < 0)
606 err = ida_simple_get(&port->ida, 0x1, port->dev_id_start,
607 GFP_KERNEL);
608 if (err < 0)
609 goto unregister_netdev;
610 dev->dev_id = err;
611
612 /* Increment id-base to the next slot for the future assignment */
613 port->dev_id_start = err + 1;
614
615 err = netdev_upper_dev_link(phy_dev, dev, extack);
616 if (err)
617 goto remove_ida;
618
619 /* Flags are per port and latest update overrides. User has
620 * to be consistent in setting it just like the mode attribute.
621 */
622 if (data && data[IFLA_IPVLAN_FLAGS])
623 port->flags = nla_get_u16(data[IFLA_IPVLAN_FLAGS]);
624
625 if (data && data[IFLA_IPVLAN_MODE])
626 mode = nla_get_u16(data[IFLA_IPVLAN_MODE]);
627
628 err = ipvlan_set_port_mode(port, mode, extack);
629 if (err)
630 goto unlink_netdev;
631
632 list_add_tail_rcu(&ipvlan->pnode, &port->ipvlans);
633 netif_stacked_transfer_operstate(phy_dev, dev);
634 return 0;
635
636unlink_netdev:
637 netdev_upper_dev_unlink(phy_dev, dev);
638remove_ida:
639 ida_simple_remove(&port->ida, dev->dev_id);
640unregister_netdev:
641 unregister_netdevice(dev);
642 return err;
643}
644EXPORT_SYMBOL_GPL(ipvlan_link_new);
645
646void ipvlan_link_delete(struct net_device *dev, struct list_head *head)
647{
648 struct ipvl_dev *ipvlan = netdev_priv(dev);
649 struct ipvl_addr *addr, *next;
650
651 spin_lock_bh(&ipvlan->addrs_lock);
652 list_for_each_entry_safe(addr, next, &ipvlan->addrs, anode) {
653 ipvlan_ht_addr_del(addr);
654 list_del_rcu(&addr->anode);
655 kfree_rcu(addr, rcu);
656 }
657 spin_unlock_bh(&ipvlan->addrs_lock);
658
659 ida_simple_remove(&ipvlan->port->ida, dev->dev_id);
660 list_del_rcu(&ipvlan->pnode);
661 unregister_netdevice_queue(dev, head);
662 netdev_upper_dev_unlink(ipvlan->phy_dev, dev);
663}
664EXPORT_SYMBOL_GPL(ipvlan_link_delete);
665
666void ipvlan_link_setup(struct net_device *dev)
667{
668 ether_setup(dev);
669
670 dev->max_mtu = ETH_MAX_MTU;
671 dev->priv_flags &= ~(IFF_XMIT_DST_RELEASE | IFF_TX_SKB_SHARING);
672 dev->priv_flags |= IFF_UNICAST_FLT | IFF_NO_QUEUE;
673 dev->netdev_ops = &ipvlan_netdev_ops;
674 dev->needs_free_netdev = true;
675 dev->header_ops = &ipvlan_header_ops;
676 dev->ethtool_ops = &ipvlan_ethtool_ops;
677}
678EXPORT_SYMBOL_GPL(ipvlan_link_setup);
679
680static const struct nla_policy ipvlan_nl_policy[IFLA_IPVLAN_MAX + 1] =
681{
682 [IFLA_IPVLAN_MODE] = { .type = NLA_U16 },
683 [IFLA_IPVLAN_FLAGS] = { .type = NLA_U16 },
684};
685
686static struct rtnl_link_ops ipvlan_link_ops = {
687 .kind = "ipvlan",
688 .priv_size = sizeof(struct ipvl_dev),
689
690 .setup = ipvlan_link_setup,
691 .newlink = ipvlan_link_new,
692 .dellink = ipvlan_link_delete,
693};
694
695int ipvlan_link_register(struct rtnl_link_ops *ops)
696{
697 ops->get_size = ipvlan_nl_getsize;
698 ops->policy = ipvlan_nl_policy;
699 ops->validate = ipvlan_nl_validate;
700 ops->fill_info = ipvlan_nl_fillinfo;
701 ops->changelink = ipvlan_nl_changelink;
702 ops->maxtype = IFLA_IPVLAN_MAX;
703 return rtnl_link_register(ops);
704}
705EXPORT_SYMBOL_GPL(ipvlan_link_register);
706
707static int ipvlan_device_event(struct notifier_block *unused,
708 unsigned long event, void *ptr)
709{
710 struct netlink_ext_ack *extack = netdev_notifier_info_to_extack(ptr);
711 struct netdev_notifier_pre_changeaddr_info *prechaddr_info;
712 struct net_device *dev = netdev_notifier_info_to_dev(ptr);
713 struct ipvl_dev *ipvlan, *next;
714 struct ipvl_port *port;
715 LIST_HEAD(lst_kill);
716 int err;
717
718 if (!netif_is_ipvlan_port(dev))
719 return NOTIFY_DONE;
720
721 port = ipvlan_port_get_rtnl(dev);
722
723 switch (event) {
724 case NETDEV_CHANGE:
725 list_for_each_entry(ipvlan, &port->ipvlans, pnode)
726 netif_stacked_transfer_operstate(ipvlan->phy_dev,
727 ipvlan->dev);
728 break;
729
730 case NETDEV_REGISTER: {
731 struct net *oldnet, *newnet = dev_net(dev);
732
733 oldnet = read_pnet(&port->pnet);
734 if (net_eq(newnet, oldnet))
735 break;
736
737 write_pnet(&port->pnet, newnet);
738
739 if (port->mode == IPVLAN_MODE_L3S)
740 ipvlan_migrate_l3s_hook(oldnet, newnet);
741 break;
742 }
743 case NETDEV_UNREGISTER:
744 if (dev->reg_state != NETREG_UNREGISTERING)
745 break;
746
747 list_for_each_entry_safe(ipvlan, next, &port->ipvlans, pnode)
748 ipvlan->dev->rtnl_link_ops->dellink(ipvlan->dev,
749 &lst_kill);
750 unregister_netdevice_many(&lst_kill);
751 break;
752
753 case NETDEV_FEAT_CHANGE:
754 list_for_each_entry(ipvlan, &port->ipvlans, pnode) {
755 ipvlan->dev->gso_max_size = dev->gso_max_size;
756 ipvlan->dev->gso_max_segs = dev->gso_max_segs;
757 netdev_update_features(ipvlan->dev);
758 }
759 break;
760
761 case NETDEV_CHANGEMTU:
762 list_for_each_entry(ipvlan, &port->ipvlans, pnode)
763 ipvlan_adjust_mtu(ipvlan, dev);
764 break;
765
766 case NETDEV_PRE_CHANGEADDR:
767 prechaddr_info = ptr;
768 list_for_each_entry(ipvlan, &port->ipvlans, pnode) {
769 err = dev_pre_changeaddr_notify(ipvlan->dev,
770 prechaddr_info->dev_addr,
771 extack);
772 if (err)
773 return notifier_from_errno(err);
774 }
775 break;
776
777 case NETDEV_CHANGEADDR:
778 list_for_each_entry(ipvlan, &port->ipvlans, pnode) {
779 ether_addr_copy(ipvlan->dev->dev_addr, dev->dev_addr);
780 call_netdevice_notifiers(NETDEV_CHANGEADDR, ipvlan->dev);
781 }
782 break;
783
784 case NETDEV_PRE_TYPE_CHANGE:
785 /* Forbid underlying device to change its type. */
786 return NOTIFY_BAD;
787 }
788 return NOTIFY_DONE;
789}
790
791/* the caller must held the addrs lock */
792static int ipvlan_add_addr(struct ipvl_dev *ipvlan, void *iaddr, bool is_v6)
793{
794 struct ipvl_addr *addr;
795
796 addr = kzalloc(sizeof(struct ipvl_addr), GFP_ATOMIC);
797 if (!addr)
798 return -ENOMEM;
799
800 addr->master = ipvlan;
801 if (!is_v6) {
802 memcpy(&addr->ip4addr, iaddr, sizeof(struct in_addr));
803 addr->atype = IPVL_IPV4;
804#if IS_ENABLED(CONFIG_IPV6)
805 } else {
806 memcpy(&addr->ip6addr, iaddr, sizeof(struct in6_addr));
807 addr->atype = IPVL_IPV6;
808#endif
809 }
810
811 list_add_tail_rcu(&addr->anode, &ipvlan->addrs);
812
813 /* If the interface is not up, the address will be added to the hash
814 * list by ipvlan_open.
815 */
816 if (netif_running(ipvlan->dev))
817 ipvlan_ht_addr_add(ipvlan, addr);
818
819 return 0;
820}
821
822static void ipvlan_del_addr(struct ipvl_dev *ipvlan, void *iaddr, bool is_v6)
823{
824 struct ipvl_addr *addr;
825
826 spin_lock_bh(&ipvlan->addrs_lock);
827 addr = ipvlan_find_addr(ipvlan, iaddr, is_v6);
828 if (!addr) {
829 spin_unlock_bh(&ipvlan->addrs_lock);
830 return;
831 }
832
833 ipvlan_ht_addr_del(addr);
834 list_del_rcu(&addr->anode);
835 spin_unlock_bh(&ipvlan->addrs_lock);
836 kfree_rcu(addr, rcu);
837}
838
839static bool ipvlan_is_valid_dev(const struct net_device *dev)
840{
841 struct ipvl_dev *ipvlan = netdev_priv(dev);
842
843 if (!netif_is_ipvlan(dev))
844 return false;
845
846 if (!ipvlan || !ipvlan->port)
847 return false;
848
849 return true;
850}
851
852#if IS_ENABLED(CONFIG_IPV6)
853static int ipvlan_add_addr6(struct ipvl_dev *ipvlan, struct in6_addr *ip6_addr)
854{
855 int ret = -EINVAL;
856
857 spin_lock_bh(&ipvlan->addrs_lock);
858 if (ipvlan_addr_busy(ipvlan->port, ip6_addr, true))
859 netif_err(ipvlan, ifup, ipvlan->dev,
860 "Failed to add IPv6=%pI6c addr for %s intf\n",
861 ip6_addr, ipvlan->dev->name);
862 else
863 ret = ipvlan_add_addr(ipvlan, ip6_addr, true);
864 spin_unlock_bh(&ipvlan->addrs_lock);
865 return ret;
866}
867
868static void ipvlan_del_addr6(struct ipvl_dev *ipvlan, struct in6_addr *ip6_addr)
869{
870 return ipvlan_del_addr(ipvlan, ip6_addr, true);
871}
872
873static int ipvlan_addr6_event(struct notifier_block *unused,
874 unsigned long event, void *ptr)
875{
876 struct inet6_ifaddr *if6 = (struct inet6_ifaddr *)ptr;
877 struct net_device *dev = (struct net_device *)if6->idev->dev;
878 struct ipvl_dev *ipvlan = netdev_priv(dev);
879
880 if (!ipvlan_is_valid_dev(dev))
881 return NOTIFY_DONE;
882
883 switch (event) {
884 case NETDEV_UP:
885 if (ipvlan_add_addr6(ipvlan, &if6->addr))
886 return NOTIFY_BAD;
887 break;
888
889 case NETDEV_DOWN:
890 ipvlan_del_addr6(ipvlan, &if6->addr);
891 break;
892 }
893
894 return NOTIFY_OK;
895}
896
897static int ipvlan_addr6_validator_event(struct notifier_block *unused,
898 unsigned long event, void *ptr)
899{
900 struct in6_validator_info *i6vi = (struct in6_validator_info *)ptr;
901 struct net_device *dev = (struct net_device *)i6vi->i6vi_dev->dev;
902 struct ipvl_dev *ipvlan = netdev_priv(dev);
903
904 if (!ipvlan_is_valid_dev(dev))
905 return NOTIFY_DONE;
906
907 switch (event) {
908 case NETDEV_UP:
909 if (ipvlan_addr_busy(ipvlan->port, &i6vi->i6vi_addr, true)) {
910 NL_SET_ERR_MSG(i6vi->extack,
911 "Address already assigned to an ipvlan device");
912 return notifier_from_errno(-EADDRINUSE);
913 }
914 break;
915 }
916
917 return NOTIFY_OK;
918}
919#endif
920
921static int ipvlan_add_addr4(struct ipvl_dev *ipvlan, struct in_addr *ip4_addr)
922{
923 int ret = -EINVAL;
924
925 spin_lock_bh(&ipvlan->addrs_lock);
926 if (ipvlan_addr_busy(ipvlan->port, ip4_addr, false))
927 netif_err(ipvlan, ifup, ipvlan->dev,
928 "Failed to add IPv4=%pI4 on %s intf.\n",
929 ip4_addr, ipvlan->dev->name);
930 else
931 ret = ipvlan_add_addr(ipvlan, ip4_addr, false);
932 spin_unlock_bh(&ipvlan->addrs_lock);
933 return ret;
934}
935
936static void ipvlan_del_addr4(struct ipvl_dev *ipvlan, struct in_addr *ip4_addr)
937{
938 return ipvlan_del_addr(ipvlan, ip4_addr, false);
939}
940
941static int ipvlan_addr4_event(struct notifier_block *unused,
942 unsigned long event, void *ptr)
943{
944 struct in_ifaddr *if4 = (struct in_ifaddr *)ptr;
945 struct net_device *dev = (struct net_device *)if4->ifa_dev->dev;
946 struct ipvl_dev *ipvlan = netdev_priv(dev);
947 struct in_addr ip4_addr;
948
949 if (!ipvlan_is_valid_dev(dev))
950 return NOTIFY_DONE;
951
952 switch (event) {
953 case NETDEV_UP:
954 ip4_addr.s_addr = if4->ifa_address;
955 if (ipvlan_add_addr4(ipvlan, &ip4_addr))
956 return NOTIFY_BAD;
957 break;
958
959 case NETDEV_DOWN:
960 ip4_addr.s_addr = if4->ifa_address;
961 ipvlan_del_addr4(ipvlan, &ip4_addr);
962 break;
963 }
964
965 return NOTIFY_OK;
966}
967
968static int ipvlan_addr4_validator_event(struct notifier_block *unused,
969 unsigned long event, void *ptr)
970{
971 struct in_validator_info *ivi = (struct in_validator_info *)ptr;
972 struct net_device *dev = (struct net_device *)ivi->ivi_dev->dev;
973 struct ipvl_dev *ipvlan = netdev_priv(dev);
974
975 if (!ipvlan_is_valid_dev(dev))
976 return NOTIFY_DONE;
977
978 switch (event) {
979 case NETDEV_UP:
980 if (ipvlan_addr_busy(ipvlan->port, &ivi->ivi_addr, false)) {
981 NL_SET_ERR_MSG(ivi->extack,
982 "Address already assigned to an ipvlan device");
983 return notifier_from_errno(-EADDRINUSE);
984 }
985 break;
986 }
987
988 return NOTIFY_OK;
989}
990
991static struct notifier_block ipvlan_addr4_notifier_block __read_mostly = {
992 .notifier_call = ipvlan_addr4_event,
993};
994
995static struct notifier_block ipvlan_addr4_vtor_notifier_block __read_mostly = {
996 .notifier_call = ipvlan_addr4_validator_event,
997};
998
999static struct notifier_block ipvlan_notifier_block __read_mostly = {
1000 .notifier_call = ipvlan_device_event,
1001};
1002
1003#if IS_ENABLED(CONFIG_IPV6)
1004static struct notifier_block ipvlan_addr6_notifier_block __read_mostly = {
1005 .notifier_call = ipvlan_addr6_event,
1006};
1007
1008static struct notifier_block ipvlan_addr6_vtor_notifier_block __read_mostly = {
1009 .notifier_call = ipvlan_addr6_validator_event,
1010};
1011#endif
1012
1013static int __init ipvlan_init_module(void)
1014{
1015 int err;
1016
1017 ipvlan_init_secret();
1018 register_netdevice_notifier(&ipvlan_notifier_block);
1019#if IS_ENABLED(CONFIG_IPV6)
1020 register_inet6addr_notifier(&ipvlan_addr6_notifier_block);
1021 register_inet6addr_validator_notifier(
1022 &ipvlan_addr6_vtor_notifier_block);
1023#endif
1024 register_inetaddr_notifier(&ipvlan_addr4_notifier_block);
1025 register_inetaddr_validator_notifier(&ipvlan_addr4_vtor_notifier_block);
1026
1027 err = ipvlan_l3s_init();
1028 if (err < 0)
1029 goto error;
1030
1031 err = ipvlan_link_register(&ipvlan_link_ops);
1032 if (err < 0) {
1033 ipvlan_l3s_cleanup();
1034 goto error;
1035 }
1036
1037 return 0;
1038error:
1039 unregister_inetaddr_notifier(&ipvlan_addr4_notifier_block);
1040 unregister_inetaddr_validator_notifier(
1041 &ipvlan_addr4_vtor_notifier_block);
1042#if IS_ENABLED(CONFIG_IPV6)
1043 unregister_inet6addr_notifier(&ipvlan_addr6_notifier_block);
1044 unregister_inet6addr_validator_notifier(
1045 &ipvlan_addr6_vtor_notifier_block);
1046#endif
1047 unregister_netdevice_notifier(&ipvlan_notifier_block);
1048 return err;
1049}
1050
1051static void __exit ipvlan_cleanup_module(void)
1052{
1053 rtnl_link_unregister(&ipvlan_link_ops);
1054 ipvlan_l3s_cleanup();
1055 unregister_netdevice_notifier(&ipvlan_notifier_block);
1056 unregister_inetaddr_notifier(&ipvlan_addr4_notifier_block);
1057 unregister_inetaddr_validator_notifier(
1058 &ipvlan_addr4_vtor_notifier_block);
1059#if IS_ENABLED(CONFIG_IPV6)
1060 unregister_inet6addr_notifier(&ipvlan_addr6_notifier_block);
1061 unregister_inet6addr_validator_notifier(
1062 &ipvlan_addr6_vtor_notifier_block);
1063#endif
1064}
1065
1066module_init(ipvlan_init_module);
1067module_exit(ipvlan_cleanup_module);
1068
1069MODULE_LICENSE("GPL");
1070MODULE_AUTHOR("Mahesh Bandewar <maheshb@google.com>");
1071MODULE_DESCRIPTION("Driver for L3 (IPv6/IPv4) based VLANs");
1072MODULE_ALIAS_RTNL_LINK("ipvlan");