ipvlan_core.c 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662
  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. 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 int ipvlan_rcv_frame(struct ipvl_addr *addr, struct sk_buff **pskb,
  215. bool local)
  216. {
  217. struct ipvl_dev *ipvlan = addr->master;
  218. struct net_device *dev = ipvlan->dev;
  219. unsigned int len;
  220. rx_handler_result_t ret = RX_HANDLER_CONSUMED;
  221. bool success = false;
  222. struct sk_buff *skb = *pskb;
  223. len = skb->len + ETH_HLEN;
  224. if (unlikely(!(dev->flags & IFF_UP))) {
  225. kfree_skb(skb);
  226. goto out;
  227. }
  228. skb = skb_share_check(skb, GFP_ATOMIC);
  229. if (!skb)
  230. goto out;
  231. *pskb = skb;
  232. skb->dev = dev;
  233. skb->pkt_type = PACKET_HOST;
  234. if (local) {
  235. if (dev_forward_skb(ipvlan->dev, skb) == NET_RX_SUCCESS)
  236. success = true;
  237. } else {
  238. if (!ether_addr_equal_64bits(eth_hdr(skb)->h_dest,
  239. ipvlan->phy_dev->dev_addr))
  240. skb->pkt_type = PACKET_OTHERHOST;
  241. ret = RX_HANDLER_ANOTHER;
  242. success = true;
  243. }
  244. out:
  245. ipvlan_count_rx(ipvlan, len, success, false);
  246. return ret;
  247. }
  248. static struct ipvl_addr *ipvlan_addr_lookup(struct ipvl_port *port,
  249. void *lyr3h, int addr_type,
  250. bool use_dest)
  251. {
  252. struct ipvl_addr *addr = NULL;
  253. if (addr_type == IPVL_IPV6) {
  254. struct ipv6hdr *ip6h;
  255. struct in6_addr *i6addr;
  256. ip6h = (struct ipv6hdr *)lyr3h;
  257. i6addr = use_dest ? &ip6h->daddr : &ip6h->saddr;
  258. addr = ipvlan_ht_addr_lookup(port, i6addr, true);
  259. } else if (addr_type == IPVL_ICMPV6) {
  260. struct nd_msg *ndmh;
  261. struct in6_addr *i6addr;
  262. /* Make sure that the NeighborSolicitation ICMPv6 packets
  263. * are handled to avoid DAD issue.
  264. */
  265. ndmh = (struct nd_msg *)lyr3h;
  266. if (ndmh->icmph.icmp6_type == NDISC_NEIGHBOUR_SOLICITATION) {
  267. i6addr = &ndmh->target;
  268. addr = ipvlan_ht_addr_lookup(port, i6addr, true);
  269. }
  270. } else if (addr_type == IPVL_IPV4) {
  271. struct iphdr *ip4h;
  272. __be32 *i4addr;
  273. ip4h = (struct iphdr *)lyr3h;
  274. i4addr = use_dest ? &ip4h->daddr : &ip4h->saddr;
  275. addr = ipvlan_ht_addr_lookup(port, i4addr, false);
  276. } else if (addr_type == IPVL_ARP) {
  277. struct arphdr *arph;
  278. unsigned char *arp_ptr;
  279. __be32 dip;
  280. arph = (struct arphdr *)lyr3h;
  281. arp_ptr = (unsigned char *)(arph + 1);
  282. if (use_dest)
  283. arp_ptr += (2 * port->dev->addr_len) + 4;
  284. else
  285. arp_ptr += port->dev->addr_len;
  286. memcpy(&dip, arp_ptr, 4);
  287. addr = ipvlan_ht_addr_lookup(port, &dip, false);
  288. }
  289. return addr;
  290. }
  291. static int ipvlan_process_v4_outbound(struct sk_buff *skb)
  292. {
  293. const struct iphdr *ip4h = ip_hdr(skb);
  294. struct net_device *dev = skb->dev;
  295. struct net *net = dev_net(dev);
  296. struct rtable *rt;
  297. int err, ret = NET_XMIT_DROP;
  298. struct flowi4 fl4 = {
  299. .flowi4_oif = dev->ifindex,
  300. .flowi4_tos = RT_TOS(ip4h->tos),
  301. .flowi4_flags = FLOWI_FLAG_ANYSRC,
  302. .flowi4_mark = skb->mark,
  303. .daddr = ip4h->daddr,
  304. .saddr = ip4h->saddr,
  305. };
  306. rt = ip_route_output_flow(net, &fl4, NULL);
  307. if (IS_ERR(rt))
  308. goto err;
  309. if (rt->rt_type != RTN_UNICAST && rt->rt_type != RTN_LOCAL) {
  310. ip_rt_put(rt);
  311. goto err;
  312. }
  313. skb_dst_drop(skb);
  314. skb_dst_set(skb, &rt->dst);
  315. err = ip_local_out(net, skb->sk, skb);
  316. if (unlikely(net_xmit_eval(err)))
  317. dev->stats.tx_errors++;
  318. else
  319. ret = NET_XMIT_SUCCESS;
  320. goto out;
  321. err:
  322. dev->stats.tx_errors++;
  323. kfree_skb(skb);
  324. out:
  325. return ret;
  326. }
  327. static int ipvlan_process_v6_outbound(struct sk_buff *skb)
  328. {
  329. const struct ipv6hdr *ip6h = ipv6_hdr(skb);
  330. struct net_device *dev = skb->dev;
  331. struct net *net = dev_net(dev);
  332. struct dst_entry *dst;
  333. int err, ret = NET_XMIT_DROP;
  334. struct flowi6 fl6 = {
  335. .flowi6_oif = dev->ifindex,
  336. .daddr = ip6h->daddr,
  337. .saddr = ip6h->saddr,
  338. .flowi6_flags = FLOWI_FLAG_ANYSRC,
  339. .flowlabel = ip6_flowinfo(ip6h),
  340. .flowi6_mark = skb->mark,
  341. .flowi6_proto = ip6h->nexthdr,
  342. };
  343. dst = ip6_route_output(net, NULL, &fl6);
  344. if (dst->error) {
  345. ret = dst->error;
  346. dst_release(dst);
  347. goto err;
  348. }
  349. skb_dst_drop(skb);
  350. skb_dst_set(skb, dst);
  351. err = ip6_local_out(net, skb->sk, skb);
  352. if (unlikely(net_xmit_eval(err)))
  353. dev->stats.tx_errors++;
  354. else
  355. ret = NET_XMIT_SUCCESS;
  356. goto out;
  357. err:
  358. dev->stats.tx_errors++;
  359. kfree_skb(skb);
  360. out:
  361. return ret;
  362. }
  363. static int ipvlan_process_outbound(struct sk_buff *skb,
  364. const struct ipvl_dev *ipvlan)
  365. {
  366. struct ethhdr *ethh = eth_hdr(skb);
  367. int ret = NET_XMIT_DROP;
  368. /* In this mode we dont care about multicast and broadcast traffic */
  369. if (is_multicast_ether_addr(ethh->h_dest)) {
  370. pr_warn_ratelimited("Dropped {multi|broad}cast of type= [%x]\n",
  371. ntohs(skb->protocol));
  372. kfree_skb(skb);
  373. goto out;
  374. }
  375. /* The ipvlan is a pseudo-L2 device, so the packets that we receive
  376. * will have L2; which need to discarded and processed further
  377. * in the net-ns of the main-device.
  378. */
  379. if (skb_mac_header_was_set(skb)) {
  380. skb_pull(skb, sizeof(*ethh));
  381. skb->mac_header = (typeof(skb->mac_header))~0U;
  382. skb_reset_network_header(skb);
  383. }
  384. if (skb->protocol == htons(ETH_P_IPV6))
  385. ret = ipvlan_process_v6_outbound(skb);
  386. else if (skb->protocol == htons(ETH_P_IP))
  387. ret = ipvlan_process_v4_outbound(skb);
  388. else {
  389. pr_warn_ratelimited("Dropped outbound packet type=%x\n",
  390. ntohs(skb->protocol));
  391. kfree_skb(skb);
  392. }
  393. out:
  394. return ret;
  395. }
  396. static void ipvlan_multicast_enqueue(struct ipvl_port *port,
  397. struct sk_buff *skb)
  398. {
  399. if (skb->protocol == htons(ETH_P_PAUSE)) {
  400. kfree_skb(skb);
  401. return;
  402. }
  403. spin_lock(&port->backlog.lock);
  404. if (skb_queue_len(&port->backlog) < IPVLAN_QBACKLOG_LIMIT) {
  405. __skb_queue_tail(&port->backlog, skb);
  406. spin_unlock(&port->backlog.lock);
  407. schedule_work(&port->wq);
  408. } else {
  409. spin_unlock(&port->backlog.lock);
  410. atomic_long_inc(&skb->dev->rx_dropped);
  411. kfree_skb(skb);
  412. }
  413. }
  414. static int ipvlan_xmit_mode_l3(struct sk_buff *skb, struct net_device *dev)
  415. {
  416. const struct ipvl_dev *ipvlan = netdev_priv(dev);
  417. void *lyr3h;
  418. struct ipvl_addr *addr;
  419. int addr_type;
  420. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  421. if (!lyr3h)
  422. goto out;
  423. addr = ipvlan_addr_lookup(ipvlan->port, lyr3h, addr_type, true);
  424. if (addr)
  425. return ipvlan_rcv_frame(addr, &skb, true);
  426. out:
  427. skb->dev = ipvlan->phy_dev;
  428. return ipvlan_process_outbound(skb, ipvlan);
  429. }
  430. static int ipvlan_xmit_mode_l2(struct sk_buff *skb, struct net_device *dev)
  431. {
  432. const struct ipvl_dev *ipvlan = netdev_priv(dev);
  433. struct ethhdr *eth = eth_hdr(skb);
  434. struct ipvl_addr *addr;
  435. void *lyr3h;
  436. int addr_type;
  437. if (ether_addr_equal(eth->h_dest, eth->h_source)) {
  438. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  439. if (lyr3h) {
  440. addr = ipvlan_addr_lookup(ipvlan->port, lyr3h, addr_type, true);
  441. if (addr)
  442. return ipvlan_rcv_frame(addr, &skb, true);
  443. }
  444. skb = skb_share_check(skb, GFP_ATOMIC);
  445. if (!skb)
  446. return NET_XMIT_DROP;
  447. /* Packet definitely does not belong to any of the
  448. * virtual devices, but the dest is local. So forward
  449. * the skb for the main-dev. At the RX side we just return
  450. * RX_PASS for it to be processed further on the stack.
  451. */
  452. return dev_forward_skb(ipvlan->phy_dev, skb);
  453. } else if (is_multicast_ether_addr(eth->h_dest)) {
  454. ipvlan_multicast_enqueue(ipvlan->port, skb);
  455. return NET_XMIT_SUCCESS;
  456. }
  457. skb->dev = ipvlan->phy_dev;
  458. return dev_queue_xmit(skb);
  459. }
  460. int ipvlan_queue_xmit(struct sk_buff *skb, struct net_device *dev)
  461. {
  462. struct ipvl_dev *ipvlan = netdev_priv(dev);
  463. struct ipvl_port *port = ipvlan_port_get_rcu_bh(ipvlan->phy_dev);
  464. if (!port)
  465. goto out;
  466. if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
  467. goto out;
  468. switch(port->mode) {
  469. case IPVLAN_MODE_L2:
  470. return ipvlan_xmit_mode_l2(skb, dev);
  471. case IPVLAN_MODE_L3:
  472. return ipvlan_xmit_mode_l3(skb, dev);
  473. }
  474. /* Should not reach here */
  475. WARN_ONCE(true, "ipvlan_queue_xmit() called for mode = [%hx]\n",
  476. port->mode);
  477. out:
  478. kfree_skb(skb);
  479. return NET_XMIT_DROP;
  480. }
  481. static bool ipvlan_external_frame(struct sk_buff *skb, struct ipvl_port *port)
  482. {
  483. struct ethhdr *eth = eth_hdr(skb);
  484. struct ipvl_addr *addr;
  485. void *lyr3h;
  486. int addr_type;
  487. if (ether_addr_equal(eth->h_source, skb->dev->dev_addr)) {
  488. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  489. if (!lyr3h)
  490. return true;
  491. addr = ipvlan_addr_lookup(port, lyr3h, addr_type, false);
  492. if (addr)
  493. return false;
  494. }
  495. return true;
  496. }
  497. static rx_handler_result_t ipvlan_handle_mode_l3(struct sk_buff **pskb,
  498. struct ipvl_port *port)
  499. {
  500. void *lyr3h;
  501. int addr_type;
  502. struct ipvl_addr *addr;
  503. struct sk_buff *skb = *pskb;
  504. rx_handler_result_t ret = RX_HANDLER_PASS;
  505. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  506. if (!lyr3h)
  507. goto out;
  508. addr = ipvlan_addr_lookup(port, lyr3h, addr_type, true);
  509. if (addr)
  510. ret = ipvlan_rcv_frame(addr, pskb, false);
  511. out:
  512. return ret;
  513. }
  514. static rx_handler_result_t ipvlan_handle_mode_l2(struct sk_buff **pskb,
  515. struct ipvl_port *port)
  516. {
  517. struct sk_buff *skb = *pskb;
  518. struct ethhdr *eth = eth_hdr(skb);
  519. rx_handler_result_t ret = RX_HANDLER_PASS;
  520. void *lyr3h;
  521. int addr_type;
  522. if (is_multicast_ether_addr(eth->h_dest)) {
  523. if (ipvlan_external_frame(skb, port)) {
  524. struct sk_buff *nskb = skb_clone(skb, GFP_ATOMIC);
  525. /* External frames are queued for device local
  526. * distribution, but a copy is given to master
  527. * straight away to avoid sending duplicates later
  528. * when work-queue processes this frame. This is
  529. * achieved by returning RX_HANDLER_PASS.
  530. */
  531. if (nskb)
  532. ipvlan_multicast_enqueue(port, nskb);
  533. }
  534. } else {
  535. struct ipvl_addr *addr;
  536. lyr3h = ipvlan_get_L3_hdr(skb, &addr_type);
  537. if (!lyr3h)
  538. return ret;
  539. addr = ipvlan_addr_lookup(port, lyr3h, addr_type, true);
  540. if (addr)
  541. ret = ipvlan_rcv_frame(addr, pskb, false);
  542. }
  543. return ret;
  544. }
  545. rx_handler_result_t ipvlan_handle_frame(struct sk_buff **pskb)
  546. {
  547. struct sk_buff *skb = *pskb;
  548. struct ipvl_port *port = ipvlan_port_get_rcu(skb->dev);
  549. if (!port)
  550. return RX_HANDLER_PASS;
  551. switch (port->mode) {
  552. case IPVLAN_MODE_L2:
  553. return ipvlan_handle_mode_l2(pskb, port);
  554. case IPVLAN_MODE_L3:
  555. return ipvlan_handle_mode_l3(pskb, port);
  556. }
  557. /* Should not reach here */
  558. WARN_ONCE(true, "ipvlan_handle_frame() called for mode = [%hx]\n",
  559. port->mode);
  560. kfree_skb(skb);
  561. return RX_HANDLER_CONSUMED;
  562. }