1 /* Copyright (c) 2014 Mahesh Bandewar <maheshb@google.com>
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 static void ipvlan_count_rx(const struct ipvl_dev
*ipvlan
,
20 unsigned int len
, bool success
, bool mcast
)
25 if (likely(success
)) {
26 struct ipvl_pcpu_stats
*pcptr
;
28 pcptr
= this_cpu_ptr(ipvlan
->pcpu_stats
);
29 u64_stats_update_begin(&pcptr
->syncp
);
31 pcptr
->rx_bytes
+= len
;
34 u64_stats_update_end(&pcptr
->syncp
);
36 this_cpu_inc(ipvlan
->pcpu_stats
->rx_errs
);
40 static u8
ipvlan_get_v6_hash(const void *iaddr
)
42 const struct in6_addr
*ip6_addr
= iaddr
;
44 return __ipv6_addr_jhash(ip6_addr
, ipvlan_jhash_secret
) &
48 static u8
ipvlan_get_v4_hash(const void *iaddr
)
50 const struct in_addr
*ip4_addr
= iaddr
;
52 return jhash_1word(ip4_addr
->s_addr
, ipvlan_jhash_secret
) &
56 static struct ipvl_addr
*ipvlan_ht_addr_lookup(const struct ipvl_port
*port
,
57 const void *iaddr
, bool is_v6
)
59 struct ipvl_addr
*addr
;
62 hash
= is_v6
? ipvlan_get_v6_hash(iaddr
) :
63 ipvlan_get_v4_hash(iaddr
);
64 hlist_for_each_entry_rcu(addr
, &port
->hlhead
[hash
], hlnode
) {
65 if (is_v6
&& addr
->atype
== IPVL_IPV6
&&
66 ipv6_addr_equal(&addr
->ip6addr
, iaddr
))
68 else if (!is_v6
&& addr
->atype
== IPVL_IPV4
&&
69 addr
->ip4addr
.s_addr
==
70 ((struct in_addr
*)iaddr
)->s_addr
)
76 void ipvlan_ht_addr_add(struct ipvl_dev
*ipvlan
, struct ipvl_addr
*addr
)
78 struct ipvl_port
*port
= ipvlan
->port
;
81 hash
= (addr
->atype
== IPVL_IPV6
) ?
82 ipvlan_get_v6_hash(&addr
->ip6addr
) :
83 ipvlan_get_v4_hash(&addr
->ip4addr
);
84 if (hlist_unhashed(&addr
->hlnode
))
85 hlist_add_head_rcu(&addr
->hlnode
, &port
->hlhead
[hash
]);
88 void ipvlan_ht_addr_del(struct ipvl_addr
*addr
)
90 hlist_del_init_rcu(&addr
->hlnode
);
93 struct ipvl_addr
*ipvlan_find_addr(const struct ipvl_dev
*ipvlan
,
94 const void *iaddr
, bool is_v6
)
96 struct ipvl_addr
*addr
;
98 list_for_each_entry(addr
, &ipvlan
->addrs
, anode
) {
99 if ((is_v6
&& addr
->atype
== IPVL_IPV6
&&
100 ipv6_addr_equal(&addr
->ip6addr
, iaddr
)) ||
101 (!is_v6
&& addr
->atype
== IPVL_IPV4
&&
102 addr
->ip4addr
.s_addr
== ((struct in_addr
*)iaddr
)->s_addr
))
108 bool ipvlan_addr_busy(struct ipvl_port
*port
, void *iaddr
, bool is_v6
)
110 struct ipvl_dev
*ipvlan
;
114 list_for_each_entry(ipvlan
, &port
->ipvlans
, pnode
) {
115 if (ipvlan_find_addr(ipvlan
, iaddr
, is_v6
))
121 static void *ipvlan_get_L3_hdr(struct sk_buff
*skb
, int *type
)
125 switch (skb
->protocol
) {
126 case htons(ETH_P_ARP
): {
129 if (unlikely(!pskb_may_pull(skb
, sizeof(*arph
))))
137 case htons(ETH_P_IP
): {
141 if (unlikely(!pskb_may_pull(skb
, sizeof(*ip4h
))))
145 pktlen
= ntohs(ip4h
->tot_len
);
146 if (ip4h
->ihl
< 5 || ip4h
->version
!= 4)
148 if (skb
->len
< pktlen
|| pktlen
< (ip4h
->ihl
* 4))
155 case htons(ETH_P_IPV6
): {
156 struct ipv6hdr
*ip6h
;
158 if (unlikely(!pskb_may_pull(skb
, sizeof(*ip6h
))))
161 ip6h
= ipv6_hdr(skb
);
162 if (ip6h
->version
!= 6)
167 /* Only Neighbour Solicitation pkts need different treatment */
168 if (ipv6_addr_any(&ip6h
->saddr
) &&
169 ip6h
->nexthdr
== NEXTHDR_ICMP
) {
182 unsigned int ipvlan_mac_hash(const unsigned char *addr
)
184 u32 hash
= jhash_1word(__get_unaligned_cpu32(addr
+2),
185 ipvlan_jhash_secret
);
187 return hash
& IPVLAN_MAC_FILTER_MASK
;
190 void ipvlan_process_multicast(struct work_struct
*work
)
192 struct ipvl_port
*port
= container_of(work
, struct ipvl_port
, wq
);
194 struct ipvl_dev
*ipvlan
;
195 struct sk_buff
*skb
, *nskb
;
196 struct sk_buff_head list
;
198 unsigned int mac_hash
;
203 __skb_queue_head_init(&list
);
205 spin_lock_bh(&port
->backlog
.lock
);
206 skb_queue_splice_tail_init(&port
->backlog
, &list
);
207 spin_unlock_bh(&port
->backlog
.lock
);
209 while ((skb
= __skb_dequeue(&list
)) != NULL
) {
211 hlocal
= ether_addr_equal(ethh
->h_source
, port
->dev
->dev_addr
);
212 mac_hash
= ipvlan_mac_hash(ethh
->h_dest
);
214 if (ether_addr_equal(ethh
->h_dest
, port
->dev
->broadcast
))
215 pkt_type
= PACKET_BROADCAST
;
217 pkt_type
= PACKET_MULTICAST
;
221 list_for_each_entry_rcu(ipvlan
, &port
->ipvlans
, pnode
) {
222 if (hlocal
&& (ipvlan
->dev
== skb
->dev
)) {
226 if (!test_bit(mac_hash
, ipvlan
->mac_filters
))
230 len
= skb
->len
+ ETH_HLEN
;
231 nskb
= skb_clone(skb
, GFP_ATOMIC
);
235 nskb
->pkt_type
= pkt_type
;
236 nskb
->dev
= ipvlan
->dev
;
238 ret
= dev_forward_skb(ipvlan
->dev
, nskb
);
240 ret
= netif_rx(nskb
);
242 ipvlan_count_rx(ipvlan
, len
, ret
== NET_RX_SUCCESS
, true);
247 /* If the packet originated here, send it out. */
248 skb
->dev
= port
->dev
;
249 skb
->pkt_type
= pkt_type
;
257 static void ipvlan_skb_crossing_ns(struct sk_buff
*skb
, struct net_device
*dev
)
262 xnet
= !net_eq(dev_net(skb
->dev
), dev_net(dev
));
264 skb_scrub_packet(skb
, xnet
);
269 static int ipvlan_rcv_frame(struct ipvl_addr
*addr
, struct sk_buff
**pskb
,
272 struct ipvl_dev
*ipvlan
= addr
->master
;
273 struct net_device
*dev
= ipvlan
->dev
;
275 rx_handler_result_t ret
= RX_HANDLER_CONSUMED
;
276 bool success
= false;
277 struct sk_buff
*skb
= *pskb
;
279 len
= skb
->len
+ ETH_HLEN
;
280 /* Only packets exchanged between two local slaves need to have
281 * device-up check as well as skb-share check.
284 if (unlikely(!(dev
->flags
& IFF_UP
))) {
289 skb
= skb_share_check(skb
, GFP_ATOMIC
);
295 ipvlan_skb_crossing_ns(skb
, dev
);
298 skb
->pkt_type
= PACKET_HOST
;
299 if (dev_forward_skb(ipvlan
->dev
, skb
) == NET_RX_SUCCESS
)
302 ret
= RX_HANDLER_ANOTHER
;
307 ipvlan_count_rx(ipvlan
, len
, success
, false);
311 static struct ipvl_addr
*ipvlan_addr_lookup(struct ipvl_port
*port
,
312 void *lyr3h
, int addr_type
,
315 struct ipvl_addr
*addr
= NULL
;
317 if (addr_type
== IPVL_IPV6
) {
318 struct ipv6hdr
*ip6h
;
319 struct in6_addr
*i6addr
;
321 ip6h
= (struct ipv6hdr
*)lyr3h
;
322 i6addr
= use_dest
? &ip6h
->daddr
: &ip6h
->saddr
;
323 addr
= ipvlan_ht_addr_lookup(port
, i6addr
, true);
324 } else if (addr_type
== IPVL_ICMPV6
) {
326 struct in6_addr
*i6addr
;
328 /* Make sure that the NeighborSolicitation ICMPv6 packets
329 * are handled to avoid DAD issue.
331 ndmh
= (struct nd_msg
*)lyr3h
;
332 if (ndmh
->icmph
.icmp6_type
== NDISC_NEIGHBOUR_SOLICITATION
) {
333 i6addr
= &ndmh
->target
;
334 addr
= ipvlan_ht_addr_lookup(port
, i6addr
, true);
336 } else if (addr_type
== IPVL_IPV4
) {
340 ip4h
= (struct iphdr
*)lyr3h
;
341 i4addr
= use_dest
? &ip4h
->daddr
: &ip4h
->saddr
;
342 addr
= ipvlan_ht_addr_lookup(port
, i4addr
, false);
343 } else if (addr_type
== IPVL_ARP
) {
345 unsigned char *arp_ptr
;
348 arph
= (struct arphdr
*)lyr3h
;
349 arp_ptr
= (unsigned char *)(arph
+ 1);
351 arp_ptr
+= (2 * port
->dev
->addr_len
) + 4;
353 arp_ptr
+= port
->dev
->addr_len
;
355 memcpy(&dip
, arp_ptr
, 4);
356 addr
= ipvlan_ht_addr_lookup(port
, &dip
, false);
362 static int ipvlan_process_v4_outbound(struct sk_buff
*skb
)
364 const struct iphdr
*ip4h
= ip_hdr(skb
);
365 struct net_device
*dev
= skb
->dev
;
366 struct net
*net
= dev_net(dev
);
368 int err
, ret
= NET_XMIT_DROP
;
369 struct flowi4 fl4
= {
370 .flowi4_oif
= dev
->ifindex
,
371 .flowi4_tos
= RT_TOS(ip4h
->tos
),
372 .flowi4_flags
= FLOWI_FLAG_ANYSRC
,
373 .daddr
= ip4h
->daddr
,
374 .saddr
= ip4h
->saddr
,
377 rt
= ip_route_output_flow(net
, &fl4
, NULL
);
381 if (rt
->rt_type
!= RTN_UNICAST
&& rt
->rt_type
!= RTN_LOCAL
) {
385 skb_dst_set(skb
, &rt
->dst
);
386 err
= ip_local_out(net
, skb
->sk
, skb
);
387 if (unlikely(net_xmit_eval(err
)))
388 dev
->stats
.tx_errors
++;
390 ret
= NET_XMIT_SUCCESS
;
393 dev
->stats
.tx_errors
++;
399 static int ipvlan_process_v6_outbound(struct sk_buff
*skb
)
401 const struct ipv6hdr
*ip6h
= ipv6_hdr(skb
);
402 struct net_device
*dev
= skb
->dev
;
403 struct net
*net
= dev_net(dev
);
404 struct dst_entry
*dst
;
405 int err
, ret
= NET_XMIT_DROP
;
406 struct flowi6 fl6
= {
407 .flowi6_iif
= dev
->ifindex
,
408 .daddr
= ip6h
->daddr
,
409 .saddr
= ip6h
->saddr
,
410 .flowi6_flags
= FLOWI_FLAG_ANYSRC
,
411 .flowlabel
= ip6_flowinfo(ip6h
),
412 .flowi6_mark
= skb
->mark
,
413 .flowi6_proto
= ip6h
->nexthdr
,
416 dst
= ip6_route_output(net
, NULL
, &fl6
);
422 skb_dst_set(skb
, dst
);
423 err
= ip6_local_out(net
, skb
->sk
, skb
);
424 if (unlikely(net_xmit_eval(err
)))
425 dev
->stats
.tx_errors
++;
427 ret
= NET_XMIT_SUCCESS
;
430 dev
->stats
.tx_errors
++;
436 static int ipvlan_process_outbound(struct sk_buff
*skb
)
438 struct ethhdr
*ethh
= eth_hdr(skb
);
439 int ret
= NET_XMIT_DROP
;
441 /* In this mode we dont care about multicast and broadcast traffic */
442 if (is_multicast_ether_addr(ethh
->h_dest
)) {
443 pr_warn_ratelimited("Dropped {multi|broad}cast of type= [%x]\n",
444 ntohs(skb
->protocol
));
449 /* The ipvlan is a pseudo-L2 device, so the packets that we receive
450 * will have L2; which need to discarded and processed further
451 * in the net-ns of the main-device.
453 if (skb_mac_header_was_set(skb
)) {
454 skb_pull(skb
, sizeof(*ethh
));
455 skb
->mac_header
= (typeof(skb
->mac_header
))~0U;
456 skb_reset_network_header(skb
);
459 if (skb
->protocol
== htons(ETH_P_IPV6
))
460 ret
= ipvlan_process_v6_outbound(skb
);
461 else if (skb
->protocol
== htons(ETH_P_IP
))
462 ret
= ipvlan_process_v4_outbound(skb
);
464 pr_warn_ratelimited("Dropped outbound packet type=%x\n",
465 ntohs(skb
->protocol
));
472 static void ipvlan_multicast_enqueue(struct ipvl_port
*port
,
475 if (skb
->protocol
== htons(ETH_P_PAUSE
)) {
480 spin_lock(&port
->backlog
.lock
);
481 if (skb_queue_len(&port
->backlog
) < IPVLAN_QBACKLOG_LIMIT
) {
482 __skb_queue_tail(&port
->backlog
, skb
);
483 spin_unlock(&port
->backlog
.lock
);
484 schedule_work(&port
->wq
);
486 spin_unlock(&port
->backlog
.lock
);
487 atomic_long_inc(&skb
->dev
->rx_dropped
);
492 static int ipvlan_xmit_mode_l3(struct sk_buff
*skb
, struct net_device
*dev
)
494 const struct ipvl_dev
*ipvlan
= netdev_priv(dev
);
496 struct ipvl_addr
*addr
;
499 lyr3h
= ipvlan_get_L3_hdr(skb
, &addr_type
);
503 addr
= ipvlan_addr_lookup(ipvlan
->port
, lyr3h
, addr_type
, true);
505 return ipvlan_rcv_frame(addr
, &skb
, true);
508 ipvlan_skb_crossing_ns(skb
, ipvlan
->phy_dev
);
509 return ipvlan_process_outbound(skb
);
512 static int ipvlan_xmit_mode_l2(struct sk_buff
*skb
, struct net_device
*dev
)
514 const struct ipvl_dev
*ipvlan
= netdev_priv(dev
);
515 struct ethhdr
*eth
= eth_hdr(skb
);
516 struct ipvl_addr
*addr
;
520 if (ether_addr_equal(eth
->h_dest
, eth
->h_source
)) {
521 lyr3h
= ipvlan_get_L3_hdr(skb
, &addr_type
);
523 addr
= ipvlan_addr_lookup(ipvlan
->port
, lyr3h
, addr_type
, true);
525 return ipvlan_rcv_frame(addr
, &skb
, true);
527 skb
= skb_share_check(skb
, GFP_ATOMIC
);
529 return NET_XMIT_DROP
;
531 /* Packet definitely does not belong to any of the
532 * virtual devices, but the dest is local. So forward
533 * the skb for the main-dev. At the RX side we just return
534 * RX_PASS for it to be processed further on the stack.
536 return dev_forward_skb(ipvlan
->phy_dev
, skb
);
538 } else if (is_multicast_ether_addr(eth
->h_dest
)) {
539 ipvlan_skb_crossing_ns(skb
, NULL
);
540 ipvlan_multicast_enqueue(ipvlan
->port
, skb
);
541 return NET_XMIT_SUCCESS
;
544 ipvlan_skb_crossing_ns(skb
, ipvlan
->phy_dev
);
545 return dev_queue_xmit(skb
);
548 int ipvlan_queue_xmit(struct sk_buff
*skb
, struct net_device
*dev
)
550 struct ipvl_dev
*ipvlan
= netdev_priv(dev
);
551 struct ipvl_port
*port
= ipvlan_port_get_rcu_bh(ipvlan
->phy_dev
);
556 if (unlikely(!pskb_may_pull(skb
, sizeof(struct ethhdr
))))
561 return ipvlan_xmit_mode_l2(skb
, dev
);
563 case IPVLAN_MODE_L3S
:
564 return ipvlan_xmit_mode_l3(skb
, dev
);
567 /* Should not reach here */
568 WARN_ONCE(true, "ipvlan_queue_xmit() called for mode = [%hx]\n",
572 return NET_XMIT_DROP
;
575 static bool ipvlan_external_frame(struct sk_buff
*skb
, struct ipvl_port
*port
)
577 struct ethhdr
*eth
= eth_hdr(skb
);
578 struct ipvl_addr
*addr
;
582 if (ether_addr_equal(eth
->h_source
, skb
->dev
->dev_addr
)) {
583 lyr3h
= ipvlan_get_L3_hdr(skb
, &addr_type
);
587 addr
= ipvlan_addr_lookup(port
, lyr3h
, addr_type
, false);
595 static rx_handler_result_t
ipvlan_handle_mode_l3(struct sk_buff
**pskb
,
596 struct ipvl_port
*port
)
600 struct ipvl_addr
*addr
;
601 struct sk_buff
*skb
= *pskb
;
602 rx_handler_result_t ret
= RX_HANDLER_PASS
;
604 lyr3h
= ipvlan_get_L3_hdr(skb
, &addr_type
);
608 addr
= ipvlan_addr_lookup(port
, lyr3h
, addr_type
, true);
610 ret
= ipvlan_rcv_frame(addr
, pskb
, false);
616 static rx_handler_result_t
ipvlan_handle_mode_l2(struct sk_buff
**pskb
,
617 struct ipvl_port
*port
)
619 struct sk_buff
*skb
= *pskb
;
620 struct ethhdr
*eth
= eth_hdr(skb
);
621 rx_handler_result_t ret
= RX_HANDLER_PASS
;
625 if (is_multicast_ether_addr(eth
->h_dest
)) {
626 if (ipvlan_external_frame(skb
, port
)) {
627 struct sk_buff
*nskb
= skb_clone(skb
, GFP_ATOMIC
);
629 /* External frames are queued for device local
630 * distribution, but a copy is given to master
631 * straight away to avoid sending duplicates later
632 * when work-queue processes this frame. This is
633 * achieved by returning RX_HANDLER_PASS.
636 ipvlan_skb_crossing_ns(nskb
, NULL
);
637 ipvlan_multicast_enqueue(port
, nskb
);
641 struct ipvl_addr
*addr
;
643 lyr3h
= ipvlan_get_L3_hdr(skb
, &addr_type
);
647 addr
= ipvlan_addr_lookup(port
, lyr3h
, addr_type
, true);
649 ret
= ipvlan_rcv_frame(addr
, pskb
, false);
655 rx_handler_result_t
ipvlan_handle_frame(struct sk_buff
**pskb
)
657 struct sk_buff
*skb
= *pskb
;
658 struct ipvl_port
*port
= ipvlan_port_get_rcu(skb
->dev
);
661 return RX_HANDLER_PASS
;
663 switch (port
->mode
) {
665 return ipvlan_handle_mode_l2(pskb
, port
);
667 return ipvlan_handle_mode_l3(pskb
, port
);
668 case IPVLAN_MODE_L3S
:
669 return RX_HANDLER_PASS
;
672 /* Should not reach here */
673 WARN_ONCE(true, "ipvlan_handle_frame() called for mode = [%hx]\n",
676 return RX_HANDLER_CONSUMED
;
679 static struct ipvl_addr
*ipvlan_skb_to_addr(struct sk_buff
*skb
,
680 struct net_device
*dev
)
682 struct ipvl_addr
*addr
= NULL
;
683 struct ipvl_port
*port
;
687 if (!dev
|| !netif_is_ipvlan_port(dev
))
690 port
= ipvlan_port_get_rcu(dev
);
691 if (!port
|| port
->mode
!= IPVLAN_MODE_L3S
)
694 lyr3h
= ipvlan_get_L3_hdr(skb
, &addr_type
);
698 addr
= ipvlan_addr_lookup(port
, lyr3h
, addr_type
, true);
703 struct sk_buff
*ipvlan_l3_rcv(struct net_device
*dev
, struct sk_buff
*skb
,
706 struct ipvl_addr
*addr
;
707 struct net_device
*sdev
;
709 addr
= ipvlan_skb_to_addr(skb
, dev
);
713 sdev
= addr
->master
->dev
;
718 struct iphdr
*ip4h
= ip_hdr(skb
);
720 err
= ip_route_input_noref(skb
, ip4h
->daddr
, ip4h
->saddr
,
728 struct dst_entry
*dst
;
729 struct ipv6hdr
*ip6h
= ipv6_hdr(skb
);
730 int flags
= RT6_LOOKUP_F_HAS_SADDR
;
731 struct flowi6 fl6
= {
732 .flowi6_iif
= sdev
->ifindex
,
733 .daddr
= ip6h
->daddr
,
734 .saddr
= ip6h
->saddr
,
735 .flowlabel
= ip6_flowinfo(ip6h
),
736 .flowi6_mark
= skb
->mark
,
737 .flowi6_proto
= ip6h
->nexthdr
,
741 dst
= ip6_route_input_lookup(dev_net(sdev
), sdev
, &fl6
, flags
);
742 skb_dst_set(skb
, dst
);
753 unsigned int ipvlan_nf_input(void *priv
, struct sk_buff
*skb
,
754 const struct nf_hook_state
*state
)
756 struct ipvl_addr
*addr
;
759 addr
= ipvlan_skb_to_addr(skb
, skb
->dev
);
763 skb
->dev
= addr
->master
->dev
;
764 len
= skb
->len
+ ETH_HLEN
;
765 ipvlan_count_rx(addr
->master
, len
, true, false);