ipvlan_core.c 15 KB

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