udp_offload.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*
  2. * IPV6 GSO/GRO offload support
  3. * Linux INET6 implementation
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version
  8. * 2 of the License, or (at your option) any later version.
  9. *
  10. * UDPv6 GSO support
  11. */
  12. #include <linux/skbuff.h>
  13. #include <linux/netdevice.h>
  14. #include <net/protocol.h>
  15. #include <net/ipv6.h>
  16. #include <net/udp.h>
  17. #include <net/ip6_checksum.h>
  18. #include "ip6_offload.h"
  19. static struct sk_buff *udp6_ufo_fragment(struct sk_buff *skb,
  20. netdev_features_t features)
  21. {
  22. struct sk_buff *segs = ERR_PTR(-EINVAL);
  23. unsigned int mss;
  24. unsigned int unfrag_ip6hlen, unfrag_len;
  25. struct frag_hdr *fptr;
  26. u8 *packet_start, *prevhdr;
  27. u8 nexthdr;
  28. u8 frag_hdr_sz = sizeof(struct frag_hdr);
  29. __wsum csum;
  30. int tnl_hlen;
  31. int err;
  32. mss = skb_shinfo(skb)->gso_size;
  33. if (unlikely(skb->len <= mss))
  34. goto out;
  35. if (skb_gso_ok(skb, features | NETIF_F_GSO_ROBUST)) {
  36. /* Packet is from an untrusted source, reset gso_segs. */
  37. int type = skb_shinfo(skb)->gso_type;
  38. if (unlikely(type & ~(SKB_GSO_UDP |
  39. SKB_GSO_DODGY |
  40. SKB_GSO_UDP_TUNNEL |
  41. SKB_GSO_UDP_TUNNEL_CSUM |
  42. SKB_GSO_TUNNEL_REMCSUM |
  43. SKB_GSO_GRE |
  44. SKB_GSO_GRE_CSUM |
  45. SKB_GSO_IPIP |
  46. SKB_GSO_SIT) ||
  47. !(type & (SKB_GSO_UDP))))
  48. goto out;
  49. skb_shinfo(skb)->gso_segs = DIV_ROUND_UP(skb->len, mss);
  50. /* Set the IPv6 fragment id if not set yet */
  51. if (!skb_shinfo(skb)->ip6_frag_id)
  52. ipv6_proxy_select_ident(dev_net(skb->dev), skb);
  53. segs = NULL;
  54. goto out;
  55. }
  56. if (skb->encapsulation && skb_shinfo(skb)->gso_type &
  57. (SKB_GSO_UDP_TUNNEL|SKB_GSO_UDP_TUNNEL_CSUM))
  58. segs = skb_udp_tunnel_segment(skb, features, true);
  59. else {
  60. const struct ipv6hdr *ipv6h;
  61. struct udphdr *uh;
  62. if (!pskb_may_pull(skb, sizeof(struct udphdr)))
  63. goto out;
  64. /* Do software UFO. Complete and fill in the UDP checksum as HW cannot
  65. * do checksum of UDP packets sent as multiple IP fragments.
  66. */
  67. uh = udp_hdr(skb);
  68. ipv6h = ipv6_hdr(skb);
  69. uh->check = 0;
  70. csum = skb_checksum(skb, 0, skb->len, 0);
  71. uh->check = udp_v6_check(skb->len, &ipv6h->saddr,
  72. &ipv6h->daddr, csum);
  73. if (uh->check == 0)
  74. uh->check = CSUM_MANGLED_0;
  75. skb->ip_summed = CHECKSUM_UNNECESSARY;
  76. /* Check if there is enough headroom to insert fragment header. */
  77. tnl_hlen = skb_tnl_header_len(skb);
  78. if (skb->mac_header < (tnl_hlen + frag_hdr_sz)) {
  79. if (gso_pskb_expand_head(skb, tnl_hlen + frag_hdr_sz))
  80. goto out;
  81. }
  82. /* Find the unfragmentable header and shift it left by frag_hdr_sz
  83. * bytes to insert fragment header.
  84. */
  85. err = ip6_find_1stfragopt(skb, &prevhdr);
  86. if (err < 0)
  87. return ERR_PTR(err);
  88. unfrag_ip6hlen = err;
  89. nexthdr = *prevhdr;
  90. *prevhdr = NEXTHDR_FRAGMENT;
  91. unfrag_len = (skb_network_header(skb) - skb_mac_header(skb)) +
  92. unfrag_ip6hlen + tnl_hlen;
  93. packet_start = (u8 *) skb->head + SKB_GSO_CB(skb)->mac_offset;
  94. memmove(packet_start-frag_hdr_sz, packet_start, unfrag_len);
  95. SKB_GSO_CB(skb)->mac_offset -= frag_hdr_sz;
  96. skb->mac_header -= frag_hdr_sz;
  97. skb->network_header -= frag_hdr_sz;
  98. fptr = (struct frag_hdr *)(skb_network_header(skb) + unfrag_ip6hlen);
  99. fptr->nexthdr = nexthdr;
  100. fptr->reserved = 0;
  101. if (!skb_shinfo(skb)->ip6_frag_id)
  102. ipv6_proxy_select_ident(dev_net(skb->dev), skb);
  103. fptr->identification = skb_shinfo(skb)->ip6_frag_id;
  104. /* Fragment the skb. ipv6 header and the remaining fields of the
  105. * fragment header are updated in ipv6_gso_segment()
  106. */
  107. segs = skb_segment(skb, features);
  108. }
  109. out:
  110. return segs;
  111. }
  112. static struct sk_buff **udp6_gro_receive(struct sk_buff **head,
  113. struct sk_buff *skb)
  114. {
  115. struct udphdr *uh = udp_gro_udphdr(skb);
  116. if (unlikely(!uh))
  117. goto flush;
  118. /* Don't bother verifying checksum if we're going to flush anyway. */
  119. if (NAPI_GRO_CB(skb)->flush)
  120. goto skip;
  121. if (skb_gro_checksum_validate_zero_check(skb, IPPROTO_UDP, uh->check,
  122. ip6_gro_compute_pseudo))
  123. goto flush;
  124. else if (uh->check)
  125. skb_gro_checksum_try_convert(skb, IPPROTO_UDP, uh->check,
  126. ip6_gro_compute_pseudo);
  127. skip:
  128. NAPI_GRO_CB(skb)->is_ipv6 = 1;
  129. return udp_gro_receive(head, skb, uh);
  130. flush:
  131. NAPI_GRO_CB(skb)->flush = 1;
  132. return NULL;
  133. }
  134. static int udp6_gro_complete(struct sk_buff *skb, int nhoff)
  135. {
  136. const struct ipv6hdr *ipv6h = ipv6_hdr(skb);
  137. struct udphdr *uh = (struct udphdr *)(skb->data + nhoff);
  138. if (uh->check) {
  139. skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL_CSUM;
  140. uh->check = ~udp_v6_check(skb->len - nhoff, &ipv6h->saddr,
  141. &ipv6h->daddr, 0);
  142. } else {
  143. skb_shinfo(skb)->gso_type |= SKB_GSO_UDP_TUNNEL;
  144. }
  145. return udp_gro_complete(skb, nhoff);
  146. }
  147. static const struct net_offload udpv6_offload = {
  148. .callbacks = {
  149. .gso_segment = udp6_ufo_fragment,
  150. .gro_receive = udp6_gro_receive,
  151. .gro_complete = udp6_gro_complete,
  152. },
  153. };
  154. int __init udp_offload_init(void)
  155. {
  156. return inet6_add_offload(&udpv6_offload, IPPROTO_UDP);
  157. }