ipvlan_core.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674
  1. /* 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. #include "ipvlan.h"
  10. static u32 ipvlan_jhash_secret __read_mostly;
  11. void ipvlan_init_secret(void)
  12. {
  13. net_get_random_once(&ipvlan_jhash_secret, sizeof(ipvlan_jhash_secret));
  14. }
  15. static void ipvlan_count_rx(const struct ipvl_dev *ipvlan,
  16. unsigned int len, bool success, bool mcast)
  17. {
  18. if (!ipvlan)
  19. return;
  20. if (likely(success)) {
  21. struct ipvl_pcpu_stats *pcptr;
  22. pcptr = this_cpu_ptr(ipvlan->pcpu_stats);
  23. u64_stats_update_begin(&pcptr->syncp);
  24. pcptr->rx_pkts++;
  25. pcptr->rx_bytes += len;
  26. if (mcast)
  27. pcptr->rx_mcast++;
  28. u64_stats_update_end(&pcptr->syncp);
  29. } else {
  30. this_cpu_inc(ipvlan->pcpu_stats->rx_errs);
  31. }
  32. }
  33. static u8 ipvlan_get_v6_hash(const void *iaddr)
  34. {
  35. const struct in6_addr *ip6_addr = iaddr;
  36. return __ipv6_addr_jhash(ip6_addr, ipvlan_jhash_secret) &
  37. IPVLAN_HASH_MASK;
  38. }
  39. static u8 ipvlan_get_v4_hash(const void *iaddr)
  40. {
  41. const struct in_addr *ip4_addr = iaddr;
  42. return jhash_1word(ip4_addr->s_addr, ipvlan_jhash_secret) &
  43. IPVLAN_HASH_MASK;
  44. }
  45. static struct ipvl_addr *ipvlan_ht_addr_lookup(const struct ipvl_port *port,
  46. const void *iaddr, bool is_v6)
  47. {
  48. struct ipvl_addr *addr;
  49. u8 hash;
  50. hash = is_v6 ? ipvlan_get_v6_hash(iaddr) :
  51. ipvlan_get_v4_hash(iaddr);
  52. hlist_for_each_entry_rcu(addr, &port->hlhead[hash], hlnode) {
  53. if (is_v6 && addr->atype == IPVL_IPV6 &&
  54. ipv6_addr_equal(&addr->ip6addr, iaddr))
  55. return addr;
  56. else if (!is_v6 && addr->atype == IPVL_IPV4 &&
  57. addr->ip4addr.s_addr ==
  58. ((struct in_addr *)iaddr)->s_addr)
  59. return addr;
  60. }
  61. return NULL;
  62. }
  63. void ipvlan_ht_addr_add(struct ipvl_dev *ipvlan, struct ipvl_addr *addr)
  64. {
  65. struct ipvl_port *port = ipvlan->port;
  66. u8 hash;
  67. hash = (addr->atype == IPVL_IPV6) ?
  68. ipvlan_get_v6_hash(&addr->ip6addr) :
  69. ipvlan_get_v4_hash(&addr->ip4addr);
  70. if (hlist_unhashed(&addr->hlnode))
  71. hlist_add_head_rcu(&addr->hlnode, &port->hlhead[hash]);
  72. }
  73. void ipvlan_ht_addr_del(struct ipvl_addr *addr)
  74. {
  75. hlist_del_init_rcu(&addr->hlnode);
  76. }
  77. struct ipvl_addr *ipvlan_find_addr(const struct ipvl_dev *ipvlan,
  78. const void *iaddr, bool is_v6)
  79. {
  80. struct ipvl_addr *addr;
  81. list_for_each_entry(addr, &ipvlan->addrs, anode) {
  82. if ((is_v6 && addr->atype == IPVL_IPV6 &&
  83. ipv6_addr_equal(&addr->ip6addr, iaddr)) ||
  84. (!is_v6 && addr->atype == IPVL_IPV4 &&
  85. addr->ip4addr.s_addr == ((struct in_addr *)iaddr)->s_addr))
  86. return addr;
  87. }
  88. return NULL;
  89. }
  90. bool ipvlan_addr_busy(struct ipvl_port *port, void *iaddr, bool is_v6)
  91. {
  92. struct ipvl_dev *ipvlan;
  93. ASSERT_RTNL();
  94. list_for_each_entry(ipvlan, &port->ipvlans, pnode) {
  95. if (ipvlan_find_addr(ipvlan, iaddr, is_v6))
  96. return true;
  97. }
  98. return false;
  99. }
  100. static void *ipvlan_get_L3_hdr(struct sk_buff *skb, int *type)
  101. {
  102. void *lyr3h = NULL;
  103. switch (skb->protocol) {
  104. case htons(ETH_P_ARP): {
  105. struct arphdr *arph;
  106. if (unlikely(!pskb_may_pull(skb, sizeof(*arph))))
  107. return NULL;
  108. arph = arp_hdr(skb);
  109. *type = IPVL_ARP;
  110. lyr3h = arph;
  111. break;
  112. }
  113. case htons(ETH_P_IP): {
  114. u32 pktlen;
  115. struct iphdr *ip4h;
  116. if (unlikely(!pskb_may_pull(skb, sizeof(*ip4h))))
  117. return NULL;
  118. ip4h = ip_hdr(skb);
  119. pktlen = ntohs(ip4h->tot_len);
  120. if (ip4h->ihl < 5 || ip4h->version != 4)
  121. return NULL;
  122. if (skb->len < pktlen || pktlen < (ip4h->ihl * 4))
  123. return NULL;
  124. *type = IPVL_IPV4;
  125. lyr3h = ip4h;
  126. break;
  127. }
  128. case htons(ETH_P_IPV6): {
  129. struct ipv6hdr *ip6h;
  130. if (unlikely(!pskb_may_pull(skb, sizeof(*ip6h))))
  131. return NULL;
  132. ip6h = ipv6_hdr(skb);
  133. if (ip6h->version != 6)
  134. return NULL;
  135. *type = IPVL_IPV6;
  136. lyr3h = ip6h;
  137. /* Only Neighbour Solicitation pkts need different treatment */
  138. if (ipv6_addr_any(&ip6h->saddr) &&
  139. ip6h->nexthdr == NEXTHDR_ICMP) {
  140. *type = IPVL_ICMPV6;
  141. lyr3h = ip6h + 1;
  142. }
  143. break;
  144. }
  145. default:
  146. return NULL;
  147. }
  148. return lyr3h;
  149. }
  150. unsigned int ipvlan_mac_hash(const unsigned char *addr)
  151. {
  152. u32 hash = jhash_1word(__get_unaligned_cpu32(addr+2),
  153. ipvlan_jhash_secret);
  154. return hash & IPVLAN_MAC_FILTER_MASK;
  155. }
  156. void ipvlan_process_multicast(struct work_struct *work)
  157. {
  158. struct ipvl_port *port = container_of(work, struct ipvl_port, wq);
  159. struct ethhdr *ethh;
  160. struct ipvl_dev *ipvlan;
  161. struct sk_buff *skb, *nskb;
  162. struct sk_buff_head list;
  163. unsigned int len;
  164. unsigned int mac_hash;
  165. int ret;
  166. u8 pkt_type;
  167. bool hlocal, dlocal;
  168. __skb_queue_head_init(&list);
  169. spin_lock_bh(&port->backlog.lock);
  170. skb_queue_splice_tail_init(&port->backlog, &list);
  171. spin_unlock_bh(&port->backlog.lock);
  172. while ((skb = __skb_dequeue(&list)) != NULL) {
  173. ethh = eth_hdr(skb);
  174. hlocal = ether_addr_equal(ethh->h_source, port->dev->dev_addr);
  175. mac_hash = ipvlan_mac_hash(ethh->h_dest);
  176. if (ether_addr_equal(ethh->h_dest, port->dev->broadcast))
  177. pkt_type = PACKET_BROADCAST;
  178. else
  179. pkt_type = PACKET_MULTICAST;
  180. dlocal = false;
  181. rcu_read_lock();
  182. list_for_each_entry_rcu(ipvlan, &port->ipvlans, pnode) {
  183. if (hlocal && (ipvlan->dev == skb->dev)) {
  184. dlocal = true;
  185. continue;
  186. }
  187. if (!test_bit(mac_hash, ipvlan->mac_filters))
  188. continue;
  189. ret = NET_RX_DROP;
  190. len = skb->len + ETH_HLEN;
  191. nskb = skb_clone(skb, GFP_ATOMIC);
  192. if (!nskb)
  193. goto acct;
  194. nskb->pkt_type = pkt_type;
  195. nskb->dev = ipvlan->dev;
  196. if (hlocal)
  197. ret = dev_forward_skb(ipvlan->dev, nskb);
  198. else
  199. ret = netif_rx(nskb);
  200. acct:
  201. ipvlan_count_rx(ipvlan, len, ret == NET_RX_SUCCESS, true);
  202. }
  203. rcu_read_unlock();
  204. if (dlocal) {
  205. /* If the packet originated here, send it out. */
  206. skb->dev = port->dev;
  207. skb->pkt_type = pkt_type;
  208. dev_queue_xmit(skb);
  209. } else {
  210. kfree_skb(skb);
  211. }
  212. }
  213. }
  214. static void ipvlan_skb_crossing_ns(struct sk_buff *skb, struct net_device *dev)
  215. {
  216. bool xnet = true;
  217. if (dev)
  218. xnet = !net_eq(dev_net(skb->dev), dev_net(dev));
  219. skb_scrub_packet(skb, xnet);
  220. if (dev)
  221. skb->dev = dev;
  222. }
  223. static int ipvlan_rcv_frame(struct ipvl_addr *addr, struct sk_buff **pskb,
  224. bool local)
  225. {
  226. struct ipvl_dev *ipvlan = addr->master;
  227. struct net_device *dev = ipvlan->dev;
  228. unsigned int len;
  229. rx_handler_result_t ret = RX_HANDLER_CONSUMED;
  230. bool success = false;
  231. struct sk_buff *skb = *pskb;
  232. len = skb->len + ETH_HLEN;
  233. /* Only packets exchanged between two local slaves need to have
  234. * device-up check as well as skb-share check.
  235. */
  236. if (local) {
  237. if (unlikely(!(dev->flags & IFF_UP))) {
  238. kfree_skb(skb);
  239. goto out;
  240. }
  241. skb = skb_share_check(skb, GFP_ATOMIC);
  242. if (!skb)
  243. goto out;
  244. *pskb = skb;
  245. }
  246. ipvlan_skb_crossing_ns(skb, dev);
  247. if (local) {
  248. skb->pkt_type = PACKET_HOST;
  249. if (dev_forward_skb(ipvlan->dev, skb) == NET_RX_SUCCESS)
  250. success = true;
  251. } else {
  252. ret = RX_HANDLER_ANOTHER;
  253. success = true;
  254. }
  255. out:
  256. ipvlan_count_rx(ipvlan, len, success, false);
  257. return ret;
  258. }
  259. static struct ipvl_addr *ipvlan_addr_lookup(struct ipvl_port *port,
  260. void *lyr3h, int addr_type,
  261. bool use_dest)
  262. {
  263. struct ipvl_addr *addr = NULL;
  264. if (addr_type == IPVL_IPV6) {
  265. struct ipv6hdr *ip6h;
  266. struct in6_addr *i6addr;
  267. ip6h = (struct ipv6hdr *)lyr3h;
  268. i6addr = use_dest ? &ip6h->daddr : &ip6h->saddr;
  269. addr = ipvlan_ht_addr_lookup(port, i6addr, true);
  270. } else if (addr_type == IPVL_ICMPV6) {
  271. struct nd_msg *ndmh;
  272. struct in6_addr *i6addr;
  273. /* Make sure that the NeighborSolicitation ICMPv6 packets
  274. * are handled to avoid DAD issue.
  275. */
  276. ndmh = (struct nd_msg *)lyr3h;
  277. if (ndmh->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION) {
  278. i6addr = &ndmh->target;
  279. addr = ipvlan_ht_addr_lookup(port, i6addr, true);
  280. }
  281. } else if (addr_type == IPVL_IPV4) {
  282. struct iphdr *ip4h;
  283. __be32 *i4addr;
  284. ip4h = (struct iphdr *)lyr3h;
  285. i4addr = use_dest ? &ip4h->daddr : &ip4h->saddr;
  286. addr = ipvlan_ht_addr_lookup(port, i4addr, false);
  287. } else if (addr_type == IPVL_ARP) {
  288. struct arphdr *arph;
  289. unsigned char *arp_ptr;
  290. __be32 dip;
  291. arph = (struct arphdr *)lyr3h;
  292. arp_ptr = (unsigned char *)(arph + 1);
  293. if (use_dest)
  294. arp_ptr += (2 * port->dev->addr_len) + 4;
  295. else
  296. arp_ptr += port->dev->addr_len;
  297. memcpy(&dip, arp_ptr, 4);
  298. addr = ipvlan_ht_addr_lookup(port, &dip, false);
  299. }
  300. return addr;
  301. }
  302. static int ipvlan_process_v4_outbound(struct sk_buff *skb)
  303. {
  304. const struct iphdr *ip4h = ip_hdr(skb);
  305. struct net_device *dev = skb->dev;
  306. struct net *net = dev_net(dev);
  307. struct rtable *rt;
  308. int err, ret = NET_XMIT_DROP;
  309. struct flowi4 fl4 = {
  310. .flowi4_oif = dev->ifindex,
  311. .flowi4_tos = RT_TOS(ip4h->tos),
  312. .flowi4_flags = FLOWI_FLAG_ANYSRC,
  313. .daddr = ip4h->daddr,
  314. .saddr = ip4h->saddr,
  315. };
  316. rt = ip_route_output_flow(net, &fl4, NULL);
  317. if (IS_ERR(rt))
  318. goto err;
  319. if (rt->rt_type != RTN_UNICAST && rt->rt_type != RTN_LOCAL) {
  320. ip_rt_put(rt);
  321. goto err;
  322. }
  323. skb_dst_set(skb, &rt->dst);
  324. err = ip_local_out(net, skb->sk, skb);
  325. if (unlikely(net_xmit_eval(err)))
  326. dev->stats.tx_errors++;
  327. else
  328. ret = NET_XMIT_SUCCESS;
  329. goto out;
  330. err:
  331. dev->stats.tx_errors++;
  332. kfree_skb(skb);
  333. out:
  334. return ret;
  335. }
  336. static int ipvlan_process_v6_outbound(struct sk_buff *skb)
  337. {
  338. const struct ipv6hdr *ip6h = ipv6_hdr(skb);
  339. struct net_device *dev = skb->dev;
  340. struct net *net = dev_net(dev);
  341. struct dst_entry *dst;
  342. int err, ret = NET_XMIT_DROP;
  343. struct flowi6 fl6 = {
  344. .flowi6_iif = dev->ifindex,
  345. .daddr = ip6h->daddr,
  346. .saddr = ip6h->saddr,
  347. .flowi6_flags = FLOWI_FLAG_ANYSRC,
  348. .flowlabel = ip6_flowinfo(ip6h),
  349. .flowi6_mark = skb->mark,
  350. .flowi6_proto = ip6h->nexthdr,
  351. };
  352. dst = ip6_route_output(net, NULL, &fl6);
  353. if (dst->error) {
  354. ret = dst->error;
  355. dst_release(dst);
  356. goto err;
  357. }
  358. skb_dst_set(skb, dst);
  359. err = ip6_local_out(net, skb->sk, skb);
  360. if (unlikely(net_xmit_eval(err)))
  361. dev->stats.tx_errors++;
  362. else
  363. ret = NET_XMIT_SUCCESS;
  364. goto out;
  365. err:
  366. dev->stats.tx_errors++;
  367. kfree_skb(skb);
  368. out:
  369. return ret;
  370. }
  371. static int ipvlan_process_outbound(struct sk_buff *skb)
  372. {
  373. struct ethhdr *ethh = eth_hdr(skb);
  374. int ret = NET_XMIT_DROP;
  375. /* In this mode we dont care about multicast and broadcast traffic */
  376. if (is_multicast_ether_addr(ethh->h_dest)) {
  377. pr_warn_ratelimited("Dropped {multi|broad}cast of type= [%x]\n",
  378. ntohs(skb->protocol));
  379. kfree_skb(skb);
  380. goto out;
  381. }
  382. /* The ipvlan is a pseudo-L2 device, so the packets that we receive
  383. * will have L2; which need to discarded and processed further
  384. * in the net-ns of the main-device.
  385. */
  386. if (skb_mac_header_was_set(skb)) {
  387. skb_pull(skb, sizeof(*ethh));
  388. skb->mac_header = (typeof(skb->mac_header))~0U;
  389. skb_reset_network_header(skb);
  390. }
  391. if (skb->protocol == htons(ETH_P_IPV6))
  392. ret = ipvlan_process_v6_outbound(skb);
  393. else if (skb->protocol == htons(ETH_P_IP))
  394. ret = ipvlan_process_v4_outbound(skb);
  395. else {
  396. pr_warn_ratelimited("Dropped outbound packet type=%x\n",
  397. ntohs(skb->protocol));
  398. kfree_skb(skb);
  399. }
  400. out:
  401. return ret;
  402. }
  403. static void ipvlan_multicast_enqueue(struct ipvl_port *port,
  404. struct sk_buff *skb)
  405. {
  406. if (skb->protocol == htons(ETH_P_PAUSE)) {
  407. kfree_skb(skb);
  408. return;
  409. }
  410. spin_lock(&port->backlog.lock);
  411. if (skb_queue_len(&port->backlog) < IPVLAN_QBACKLOG_LIMIT) {
  412. __skb_queue_tail(&port->backlog, skb);
  413. spin_unlock(&port->backlog.lock);
  414. schedule_work(&port->wq);
  415. } else {
  416. spin_unlock(&port->backlog.lock);
  417. atomic_long_inc(&skb->dev->rx_dropped);
  418. kfree_skb(skb);
  419. }
  420. }
  421. static int ipvlan_xmit_mode_l3(struct sk_buff *skb, struct net_device *dev)
  422. {
  423. const struct ipvl_dev *ipvlan = netdev_priv(dev);
  424. void *lyr3h;
  425. struct ipvl_addr *addr;
  426. int addr_type;
  427. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  428. if (!lyr3h)
  429. goto out;
  430. addr = ipvlan_addr_lookup(ipvlan->port, lyr3h, addr_type, true);
  431. if (addr)
  432. return ipvlan_rcv_frame(addr, &skb, true);
  433. out:
  434. ipvlan_skb_crossing_ns(skb, ipvlan->phy_dev);
  435. return ipvlan_process_outbound(skb);
  436. }
  437. static int ipvlan_xmit_mode_l2(struct sk_buff *skb, struct net_device *dev)
  438. {
  439. const struct ipvl_dev *ipvlan = netdev_priv(dev);
  440. struct ethhdr *eth = eth_hdr(skb);
  441. struct ipvl_addr *addr;
  442. void *lyr3h;
  443. int addr_type;
  444. if (ether_addr_equal(eth->h_dest, eth->h_source)) {
  445. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  446. if (lyr3h) {
  447. addr = ipvlan_addr_lookup(ipvlan->port, lyr3h, addr_type, true);
  448. if (addr)
  449. return ipvlan_rcv_frame(addr, &skb, true);
  450. }
  451. skb = skb_share_check(skb, GFP_ATOMIC);
  452. if (!skb)
  453. return NET_XMIT_DROP;
  454. /* Packet definitely does not belong to any of the
  455. * virtual devices, but the dest is local. So forward
  456. * the skb for the main-dev. At the RX side we just return
  457. * RX_PASS for it to be processed further on the stack.
  458. */
  459. return dev_forward_skb(ipvlan->phy_dev, skb);
  460. } else if (is_multicast_ether_addr(eth->h_dest)) {
  461. ipvlan_skb_crossing_ns(skb, NULL);
  462. ipvlan_multicast_enqueue(ipvlan->port, skb);
  463. return NET_XMIT_SUCCESS;
  464. }
  465. ipvlan_skb_crossing_ns(skb, ipvlan->phy_dev);
  466. return dev_queue_xmit(skb);
  467. }
  468. int ipvlan_queue_xmit(struct sk_buff *skb, struct net_device *dev)
  469. {
  470. struct ipvl_dev *ipvlan = netdev_priv(dev);
  471. struct ipvl_port *port = ipvlan_port_get_rcu_bh(ipvlan->phy_dev);
  472. if (!port)
  473. goto out;
  474. if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
  475. goto out;
  476. switch(port->mode) {
  477. case IPVLAN_MODE_L2:
  478. return ipvlan_xmit_mode_l2(skb, dev);
  479. case IPVLAN_MODE_L3:
  480. return ipvlan_xmit_mode_l3(skb, dev);
  481. }
  482. /* Should not reach here */
  483. WARN_ONCE(true, "ipvlan_queue_xmit() called for mode = [%hx]\n",
  484. port->mode);
  485. out:
  486. kfree_skb(skb);
  487. return NET_XMIT_DROP;
  488. }
  489. static bool ipvlan_external_frame(struct sk_buff *skb, struct ipvl_port *port)
  490. {
  491. struct ethhdr *eth = eth_hdr(skb);
  492. struct ipvl_addr *addr;
  493. void *lyr3h;
  494. int addr_type;
  495. if (ether_addr_equal(eth->h_source, skb->dev->dev_addr)) {
  496. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  497. if (!lyr3h)
  498. return true;
  499. addr = ipvlan_addr_lookup(port, lyr3h, addr_type, false);
  500. if (addr)
  501. return false;
  502. }
  503. return true;
  504. }
  505. static rx_handler_result_t ipvlan_handle_mode_l3(struct sk_buff **pskb,
  506. struct ipvl_port *port)
  507. {
  508. void *lyr3h;
  509. int addr_type;
  510. struct ipvl_addr *addr;
  511. struct sk_buff *skb = *pskb;
  512. rx_handler_result_t ret = RX_HANDLER_PASS;
  513. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  514. if (!lyr3h)
  515. goto out;
  516. addr = ipvlan_addr_lookup(port, lyr3h, addr_type, true);
  517. if (addr)
  518. ret = ipvlan_rcv_frame(addr, pskb, false);
  519. out:
  520. return ret;
  521. }
  522. static rx_handler_result_t ipvlan_handle_mode_l2(struct sk_buff **pskb,
  523. struct ipvl_port *port)
  524. {
  525. struct sk_buff *skb = *pskb;
  526. struct ethhdr *eth = eth_hdr(skb);
  527. rx_handler_result_t ret = RX_HANDLER_PASS;
  528. void *lyr3h;
  529. int addr_type;
  530. if (is_multicast_ether_addr(eth->h_dest)) {
  531. if (ipvlan_external_frame(skb, port)) {
  532. struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
  533. /* External frames are queued for device local
  534. * distribution, but a copy is given to master
  535. * straight away to avoid sending duplicates later
  536. * when work-queue processes this frame. This is
  537. * achieved by returning RX_HANDLER_PASS.
  538. */
  539. if (nskb) {
  540. ipvlan_skb_crossing_ns(nskb, NULL);
  541. ipvlan_multicast_enqueue(port, nskb);
  542. }
  543. }
  544. } else {
  545. struct ipvl_addr *addr;
  546. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  547. if (!lyr3h)
  548. return ret;
  549. addr = ipvlan_addr_lookup(port, lyr3h, addr_type, true);
  550. if (addr)
  551. ret = ipvlan_rcv_frame(addr, pskb, false);
  552. }
  553. return ret;
  554. }
  555. rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb)
  556. {
  557. struct sk_buff *skb = *pskb;
  558. struct ipvl_port *port = ipvlan_port_get_rcu(skb->dev);
  559. if (!port)
  560. return RX_HANDLER_PASS;
  561. switch (port->mode) {
  562. case IPVLAN_MODE_L2:
  563. return ipvlan_handle_mode_l2(pskb, port);
  564. case IPVLAN_MODE_L3:
  565. return ipvlan_handle_mode_l3(pskb, port);
  566. }
  567. /* Should not reach here */
  568. WARN_ONCE(true, "ipvlan_handle_frame() called for mode = [%hx]\n",
  569. port->mode);
  570. kfree_skb(skb);
  571. return RX_HANDLER_CONSUMED;
  572. }