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.
12 static u32 ipvlan_jhash_secret __read_mostly;
14 void ipvlan_init_secret(void)
16 net_get_random_once(&ipvlan_jhash_secret, sizeof(ipvlan_jhash_secret));
19 void ipvlan_count_rx(const struct ipvl_dev *ipvlan,
20 unsigned int len, bool success, bool mcast)
22 if (likely(success)) {
23 struct ipvl_pcpu_stats *pcptr;
25 pcptr = this_cpu_ptr(ipvlan->pcpu_stats);
26 u64_stats_update_begin(&pcptr->syncp);
28 pcptr->rx_bytes += len;
31 u64_stats_update_end(&pcptr->syncp);
33 this_cpu_inc(ipvlan->pcpu_stats->rx_errs);
36 EXPORT_SYMBOL_GPL(ipvlan_count_rx);
38 #if IS_ENABLED(CONFIG_IPV6)
39 static u8 ipvlan_get_v6_hash(const void *iaddr)
41 const struct in6_addr *ip6_addr = iaddr;
43 return __ipv6_addr_jhash(ip6_addr, ipvlan_jhash_secret) &
47 static u8 ipvlan_get_v6_hash(const void *iaddr)
53 static u8 ipvlan_get_v4_hash(const void *iaddr)
55 const struct in_addr *ip4_addr = iaddr;
57 return jhash_1word(ip4_addr->s_addr, ipvlan_jhash_secret) &
61 static bool addr_equal(bool is_v6, struct ipvl_addr *addr, const void *iaddr)
63 if (!is_v6 && addr->atype == IPVL_IPV4) {
64 struct in_addr *i4addr = (struct in_addr *)iaddr;
66 return addr->ip4addr.s_addr == i4addr->s_addr;
67 #if IS_ENABLED(CONFIG_IPV6)
68 } else if (is_v6 && addr->atype == IPVL_IPV6) {
69 struct in6_addr *i6addr = (struct in6_addr *)iaddr;
71 return ipv6_addr_equal(&addr->ip6addr, i6addr);
78 static struct ipvl_addr *ipvlan_ht_addr_lookup(const struct ipvl_port *port,
79 const void *iaddr, bool is_v6)
81 struct ipvl_addr *addr;
84 hash = is_v6 ? ipvlan_get_v6_hash(iaddr) :
85 ipvlan_get_v4_hash(iaddr);
86 hlist_for_each_entry_rcu(addr, &port->hlhead[hash], hlnode)
87 if (addr_equal(is_v6, addr, iaddr))
92 void ipvlan_ht_addr_add(struct ipvl_dev *ipvlan, struct ipvl_addr *addr)
94 struct ipvl_port *port = ipvlan->port;
97 hash = (addr->atype == IPVL_IPV6) ?
98 ipvlan_get_v6_hash(&addr->ip6addr) :
99 ipvlan_get_v4_hash(&addr->ip4addr);
100 if (hlist_unhashed(&addr->hlnode))
101 hlist_add_head_rcu(&addr->hlnode, &port->hlhead[hash]);
104 void ipvlan_ht_addr_del(struct ipvl_addr *addr)
106 hlist_del_init_rcu(&addr->hlnode);
109 struct ipvl_addr *ipvlan_find_addr(const struct ipvl_dev *ipvlan,
110 const void *iaddr, bool is_v6)
112 struct ipvl_addr *addr, *ret = NULL;
115 list_for_each_entry_rcu(addr, &ipvlan->addrs, anode) {
116 if (addr_equal(is_v6, addr, iaddr)) {
125 bool ipvlan_addr_busy(struct ipvl_port *port, void *iaddr, bool is_v6)
127 struct ipvl_dev *ipvlan;
131 list_for_each_entry_rcu(ipvlan, &port->ipvlans, pnode) {
132 if (ipvlan_find_addr(ipvlan, iaddr, is_v6)) {
141 static void *ipvlan_get_L3_hdr(struct ipvl_port *port, struct sk_buff *skb, int *type)
145 switch (skb->protocol) {
146 case htons(ETH_P_ARP): {
149 if (unlikely(!pskb_may_pull(skb, arp_hdr_len(port->dev))))
157 case htons(ETH_P_IP): {
161 if (unlikely(!pskb_may_pull(skb, sizeof(*ip4h))))
165 pktlen = ntohs(ip4h->tot_len);
166 if (ip4h->ihl < 5 || ip4h->version != 4)
168 if (skb->len < pktlen || pktlen < (ip4h->ihl * 4))
175 #if IS_ENABLED(CONFIG_IPV6)
176 case htons(ETH_P_IPV6): {
177 struct ipv6hdr *ip6h;
179 if (unlikely(!pskb_may_pull(skb, sizeof(*ip6h))))
182 ip6h = ipv6_hdr(skb);
183 if (ip6h->version != 6)
188 /* Only Neighbour Solicitation pkts need different treatment */
189 if (ipv6_addr_any(&ip6h->saddr) &&
190 ip6h->nexthdr == NEXTHDR_ICMP) {
191 struct icmp6hdr *icmph;
193 if (unlikely(!pskb_may_pull(skb, sizeof(*ip6h) + sizeof(*icmph))))
196 ip6h = ipv6_hdr(skb);
197 icmph = (struct icmp6hdr *)(ip6h + 1);
199 if (icmph->icmp6_type == NDISC_NEIGHBOUR_SOLICITATION) {
200 /* Need to access the ipv6 address in body */
201 if (unlikely(!pskb_may_pull(skb, sizeof(*ip6h) + sizeof(*icmph)
202 + sizeof(struct in6_addr))))
205 ip6h = ipv6_hdr(skb);
206 icmph = (struct icmp6hdr *)(ip6h + 1);
222 unsigned int ipvlan_mac_hash(const unsigned char *addr)
224 u32 hash = jhash_1word(__get_unaligned_cpu32(addr+2),
225 ipvlan_jhash_secret);
227 return hash & IPVLAN_MAC_FILTER_MASK;
230 void ipvlan_process_multicast(struct work_struct *work)
232 struct ipvl_port *port = container_of(work, struct ipvl_port, wq);
234 struct ipvl_dev *ipvlan;
235 struct sk_buff *skb, *nskb;
236 struct sk_buff_head list;
238 unsigned int mac_hash;
243 __skb_queue_head_init(&list);
245 spin_lock_bh(&port->backlog.lock);
246 skb_queue_splice_tail_init(&port->backlog, &list);
247 spin_unlock_bh(&port->backlog.lock);
249 while ((skb = __skb_dequeue(&list)) != NULL) {
250 struct net_device *dev = skb->dev;
251 bool consumed = false;
254 tx_pkt = IPVL_SKB_CB(skb)->tx_pkt;
255 mac_hash = ipvlan_mac_hash(ethh->h_dest);
257 if (ether_addr_equal(ethh->h_dest, port->dev->broadcast))
258 pkt_type = PACKET_BROADCAST;
260 pkt_type = PACKET_MULTICAST;
263 list_for_each_entry_rcu(ipvlan, &port->ipvlans, pnode) {
264 if (tx_pkt && (ipvlan->dev == skb->dev))
266 if (!test_bit(mac_hash, ipvlan->mac_filters))
268 if (!(ipvlan->dev->flags & IFF_UP))
271 len = skb->len + ETH_HLEN;
272 nskb = skb_clone(skb, GFP_ATOMIC);
276 nskb->pkt_type = pkt_type;
277 nskb->dev = ipvlan->dev;
279 ret = dev_forward_skb(ipvlan->dev, nskb);
281 ret = netif_rx(nskb);
283 ipvlan_count_rx(ipvlan, len, ret == NET_RX_SUCCESS, true);
289 /* If the packet originated here, send it out. */
290 skb->dev = port->dev;
291 skb->pkt_type = pkt_type;
304 static void ipvlan_skb_crossing_ns(struct sk_buff *skb, struct net_device *dev)
309 xnet = !net_eq(dev_net(skb->dev), dev_net(dev));
311 skb_scrub_packet(skb, xnet);
316 static int ipvlan_rcv_frame(struct ipvl_addr *addr, struct sk_buff **pskb,
319 struct ipvl_dev *ipvlan = addr->master;
320 struct net_device *dev = ipvlan->dev;
322 rx_handler_result_t ret = RX_HANDLER_CONSUMED;
323 bool success = false;
324 struct sk_buff *skb = *pskb;
326 len = skb->len + ETH_HLEN;
327 /* Only packets exchanged between two local slaves need to have
328 * device-up check as well as skb-share check.
331 if (unlikely(!(dev->flags & IFF_UP))) {
336 skb = skb_share_check(skb, GFP_ATOMIC);
344 skb->pkt_type = PACKET_HOST;
345 if (dev_forward_skb(ipvlan->dev, skb) == NET_RX_SUCCESS)
349 ret = RX_HANDLER_ANOTHER;
354 ipvlan_count_rx(ipvlan, len, success, false);
358 static struct ipvl_addr *ipvlan_addr_lookup(struct ipvl_port *port,
359 void *lyr3h, int addr_type,
362 struct ipvl_addr *addr = NULL;
365 #if IS_ENABLED(CONFIG_IPV6)
367 struct ipv6hdr *ip6h;
368 struct in6_addr *i6addr;
370 ip6h = (struct ipv6hdr *)lyr3h;
371 i6addr = use_dest ? &ip6h->daddr : &ip6h->saddr;
372 addr = ipvlan_ht_addr_lookup(port, i6addr, true);
377 struct in6_addr *i6addr;
379 /* Make sure that the NeighborSolicitation ICMPv6 packets
380 * are handled to avoid DAD issue.
382 ndmh = (struct nd_msg *)lyr3h;
383 if (ndmh->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION) {
384 i6addr = &ndmh->target;
385 addr = ipvlan_ht_addr_lookup(port, i6addr, true);
394 ip4h = (struct iphdr *)lyr3h;
395 i4addr = use_dest ? &ip4h->daddr : &ip4h->saddr;
396 addr = ipvlan_ht_addr_lookup(port, i4addr, false);
401 unsigned char *arp_ptr;
404 arph = (struct arphdr *)lyr3h;
405 arp_ptr = (unsigned char *)(arph + 1);
407 arp_ptr += (2 * port->dev->addr_len) + 4;
409 arp_ptr += port->dev->addr_len;
411 memcpy(&dip, arp_ptr, 4);
412 addr = ipvlan_ht_addr_lookup(port, &dip, false);
420 static int ipvlan_process_v4_outbound(struct sk_buff *skb)
422 const struct iphdr *ip4h = ip_hdr(skb);
423 struct net_device *dev = skb->dev;
424 struct net *net = dev_net(dev);
426 int err, ret = NET_XMIT_DROP;
427 struct flowi4 fl4 = {
428 .flowi4_oif = dev->ifindex,
429 .flowi4_tos = RT_TOS(ip4h->tos),
430 .flowi4_flags = FLOWI_FLAG_ANYSRC,
431 .flowi4_mark = skb->mark,
432 .daddr = ip4h->daddr,
433 .saddr = ip4h->saddr,
436 rt = ip_route_output_flow(net, &fl4, NULL);
440 if (rt->rt_type != RTN_UNICAST && rt->rt_type != RTN_LOCAL) {
444 skb_dst_set(skb, &rt->dst);
445 err = ip_local_out(net, skb->sk, skb);
446 if (unlikely(net_xmit_eval(err)))
447 dev->stats.tx_errors++;
449 ret = NET_XMIT_SUCCESS;
452 dev->stats.tx_errors++;
458 #if IS_ENABLED(CONFIG_IPV6)
459 static int ipvlan_process_v6_outbound(struct sk_buff *skb)
461 const struct ipv6hdr *ip6h = ipv6_hdr(skb);
462 struct net_device *dev = skb->dev;
463 struct net *net = dev_net(dev);
464 struct dst_entry *dst;
465 int err, ret = NET_XMIT_DROP;
466 struct flowi6 fl6 = {
467 .flowi6_oif = dev->ifindex,
468 .daddr = ip6h->daddr,
469 .saddr = ip6h->saddr,
470 .flowi6_flags = FLOWI_FLAG_ANYSRC,
471 .flowlabel = ip6_flowinfo(ip6h),
472 .flowi6_mark = skb->mark,
473 .flowi6_proto = ip6h->nexthdr,
476 dst = ip6_route_output(net, NULL, &fl6);
482 skb_dst_set(skb, dst);
483 err = ip6_local_out(net, skb->sk, skb);
484 if (unlikely(net_xmit_eval(err)))
485 dev->stats.tx_errors++;
487 ret = NET_XMIT_SUCCESS;
490 dev->stats.tx_errors++;
496 static int ipvlan_process_v6_outbound(struct sk_buff *skb)
498 return NET_XMIT_DROP;
502 static int ipvlan_process_outbound(struct sk_buff *skb)
504 struct ethhdr *ethh = eth_hdr(skb);
505 int ret = NET_XMIT_DROP;
507 /* In this mode we dont care about multicast and broadcast traffic */
508 if (is_multicast_ether_addr(ethh->h_dest)) {
509 pr_debug_ratelimited("Dropped {multi|broad}cast of type=[%x]\n",
510 ntohs(skb->protocol));
515 /* The ipvlan is a pseudo-L2 device, so the packets that we receive
516 * will have L2; which need to discarded and processed further
517 * in the net-ns of the main-device.
519 if (skb_mac_header_was_set(skb)) {
520 skb_pull(skb, sizeof(*ethh));
521 skb->mac_header = (typeof(skb->mac_header))~0U;
522 skb_reset_network_header(skb);
525 if (skb->protocol == htons(ETH_P_IPV6))
526 ret = ipvlan_process_v6_outbound(skb);
527 else if (skb->protocol == htons(ETH_P_IP))
528 ret = ipvlan_process_v4_outbound(skb);
530 pr_warn_ratelimited("Dropped outbound packet type=%x\n",
531 ntohs(skb->protocol));
538 static void ipvlan_multicast_enqueue(struct ipvl_port *port,
539 struct sk_buff *skb, bool tx_pkt)
541 if (skb->protocol == htons(ETH_P_PAUSE)) {
546 /* Record that the deferred packet is from TX or RX path. By
547 * looking at mac-addresses on packet will lead to erronus decisions.
548 * (This would be true for a loopback-mode on master device or a
549 * hair-pin mode of the switch.)
551 IPVL_SKB_CB(skb)->tx_pkt = tx_pkt;
553 spin_lock(&port->backlog.lock);
554 if (skb_queue_len(&port->backlog) < IPVLAN_QBACKLOG_LIMIT) {
557 __skb_queue_tail(&port->backlog, skb);
558 spin_unlock(&port->backlog.lock);
559 schedule_work(&port->wq);
561 spin_unlock(&port->backlog.lock);
562 atomic_long_inc(&skb->dev->rx_dropped);
567 static int ipvlan_xmit_mode_l3(struct sk_buff *skb, struct net_device *dev)
569 const struct ipvl_dev *ipvlan = netdev_priv(dev);
571 struct ipvl_addr *addr;
574 lyr3h = ipvlan_get_L3_hdr(ipvlan->port, skb, &addr_type);
578 if (!ipvlan_is_vepa(ipvlan->port)) {
579 addr = ipvlan_addr_lookup(ipvlan->port, lyr3h, addr_type, true);
581 if (ipvlan_is_private(ipvlan->port)) {
583 return NET_XMIT_DROP;
585 return ipvlan_rcv_frame(addr, &skb, true);
589 ipvlan_skb_crossing_ns(skb, ipvlan->phy_dev);
590 return ipvlan_process_outbound(skb);
593 static int ipvlan_xmit_mode_l2(struct sk_buff *skb, struct net_device *dev)
595 const struct ipvl_dev *ipvlan = netdev_priv(dev);
596 struct ethhdr *eth = eth_hdr(skb);
597 struct ipvl_addr *addr;
601 if (!ipvlan_is_vepa(ipvlan->port) &&
602 ether_addr_equal(eth->h_dest, eth->h_source)) {
603 lyr3h = ipvlan_get_L3_hdr(ipvlan->port, skb, &addr_type);
605 addr = ipvlan_addr_lookup(ipvlan->port, lyr3h, addr_type, true);
607 if (ipvlan_is_private(ipvlan->port)) {
609 return NET_XMIT_DROP;
611 return ipvlan_rcv_frame(addr, &skb, true);
614 skb = skb_share_check(skb, GFP_ATOMIC);
616 return NET_XMIT_DROP;
618 /* Packet definitely does not belong to any of the
619 * virtual devices, but the dest is local. So forward
620 * the skb for the main-dev. At the RX side we just return
621 * RX_PASS for it to be processed further on the stack.
623 return dev_forward_skb(ipvlan->phy_dev, skb);
625 } else if (is_multicast_ether_addr(eth->h_dest)) {
626 ipvlan_skb_crossing_ns(skb, NULL);
627 ipvlan_multicast_enqueue(ipvlan->port, skb, true);
628 return NET_XMIT_SUCCESS;
631 skb->dev = ipvlan->phy_dev;
632 return dev_queue_xmit(skb);
635 int ipvlan_queue_xmit(struct sk_buff *skb, struct net_device *dev)
637 struct ipvl_dev *ipvlan = netdev_priv(dev);
638 struct ipvl_port *port = ipvlan_port_get_rcu_bh(ipvlan->phy_dev);
643 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
648 return ipvlan_xmit_mode_l2(skb, dev);
650 case IPVLAN_MODE_L3S:
651 return ipvlan_xmit_mode_l3(skb, dev);
654 /* Should not reach here */
655 WARN_ONCE(true, "ipvlan_queue_xmit() called for mode = [%hx]\n",
659 return NET_XMIT_DROP;
662 static bool ipvlan_external_frame(struct sk_buff *skb, struct ipvl_port *port)
664 struct ethhdr *eth = eth_hdr(skb);
665 struct ipvl_addr *addr;
669 if (ether_addr_equal(eth->h_source, skb->dev->dev_addr)) {
670 lyr3h = ipvlan_get_L3_hdr(port, skb, &addr_type);
674 addr = ipvlan_addr_lookup(port, lyr3h, addr_type, false);
682 static rx_handler_result_t ipvlan_handle_mode_l3(struct sk_buff **pskb,
683 struct ipvl_port *port)
687 struct ipvl_addr *addr;
688 struct sk_buff *skb = *pskb;
689 rx_handler_result_t ret = RX_HANDLER_PASS;
691 lyr3h = ipvlan_get_L3_hdr(port, skb, &addr_type);
695 addr = ipvlan_addr_lookup(port, lyr3h, addr_type, true);
697 ret = ipvlan_rcv_frame(addr, pskb, false);
703 static rx_handler_result_t ipvlan_handle_mode_l2(struct sk_buff **pskb,
704 struct ipvl_port *port)
706 struct sk_buff *skb = *pskb;
707 struct ethhdr *eth = eth_hdr(skb);
708 rx_handler_result_t ret = RX_HANDLER_PASS;
710 if (is_multicast_ether_addr(eth->h_dest)) {
711 if (ipvlan_external_frame(skb, port)) {
712 struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
714 /* External frames are queued for device local
715 * distribution, but a copy is given to master
716 * straight away to avoid sending duplicates later
717 * when work-queue processes this frame. This is
718 * achieved by returning RX_HANDLER_PASS.
721 ipvlan_skb_crossing_ns(nskb, NULL);
722 ipvlan_multicast_enqueue(port, nskb, false);
726 /* Perform like l3 mode for non-multicast packet */
727 ret = ipvlan_handle_mode_l3(pskb, port);
733 rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb)
735 struct sk_buff *skb = *pskb;
736 struct ipvl_port *port = ipvlan_port_get_rcu(skb->dev);
739 return RX_HANDLER_PASS;
741 switch (port->mode) {
743 return ipvlan_handle_mode_l2(pskb, port);
745 return ipvlan_handle_mode_l3(pskb, port);
746 case IPVLAN_MODE_L3S:
747 return RX_HANDLER_PASS;
750 /* Should not reach here */
751 WARN_ONCE(true, "ipvlan_handle_frame() called for mode = [%hx]\n",
754 return RX_HANDLER_CONSUMED;
757 static struct ipvl_addr *ipvlan_skb_to_addr(struct sk_buff *skb,
758 struct net_device *dev)
760 struct ipvl_addr *addr = NULL;
761 struct ipvl_port *port;
765 if (!dev || !netif_is_ipvlan_port(dev))
768 port = ipvlan_port_get_rcu(dev);
769 if (!port || port->mode != IPVLAN_MODE_L3S)
772 lyr3h = ipvlan_get_L3_hdr(port, skb, &addr_type);
776 addr = ipvlan_addr_lookup(port, lyr3h, addr_type, true);
781 struct sk_buff *ipvlan_l3_rcv(struct net_device *dev, struct sk_buff *skb,
784 struct ipvl_addr *addr;
785 struct net_device *sdev;
787 addr = ipvlan_skb_to_addr(skb, dev);
791 sdev = addr->master->dev;
796 struct iphdr *ip4h = ip_hdr(skb);
798 err = ip_route_input_noref(skb, ip4h->daddr, ip4h->saddr,
804 #if IS_ENABLED(CONFIG_IPV6)
807 struct dst_entry *dst;
808 struct ipv6hdr *ip6h = ipv6_hdr(skb);
809 int flags = RT6_LOOKUP_F_HAS_SADDR;
810 struct flowi6 fl6 = {
811 .flowi6_iif = sdev->ifindex,
812 .daddr = ip6h->daddr,
813 .saddr = ip6h->saddr,
814 .flowlabel = ip6_flowinfo(ip6h),
815 .flowi6_mark = skb->mark,
816 .flowi6_proto = ip6h->nexthdr,
820 dst = ip6_route_input_lookup(dev_net(sdev), sdev, &fl6,
822 skb_dst_set(skb, dst);
834 unsigned int ipvlan_nf_input(void *priv, struct sk_buff *skb,
835 const struct nf_hook_state *state)
837 struct ipvl_addr *addr;
840 addr = ipvlan_skb_to_addr(skb, skb->dev);
844 skb->dev = addr->master->dev;
845 len = skb->len + ETH_HLEN;
846 ipvlan_count_rx(addr->master, len, true, false);