ipvlan_core.c 15 KB

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