blob: 24deb3928b9e005f70eb62e4324274eb9ccf9ca3 [file] [log] [blame]
Daniel Borkmannc50cd352013-07-01 19:24:00 +02001/*
2 * IPV4 GSO/GRO offload support
3 * Linux INET 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 * GRE GSO support
11 */
12
13#include <linux/skbuff.h>
Paul Gortmakercf172282014-01-15 11:19:55 -050014#include <linux/init.h>
Daniel Borkmannc50cd352013-07-01 19:24:00 +020015#include <net/protocol.h>
16#include <net/gre.h>
17
18static int gre_gso_send_check(struct sk_buff *skb)
19{
20 if (!skb->encapsulation)
21 return -EINVAL;
22 return 0;
23}
24
25static struct sk_buff *gre_gso_segment(struct sk_buff *skb,
26 netdev_features_t features)
27{
28 struct sk_buff *segs = ERR_PTR(-EINVAL);
29 netdev_features_t enc_features;
Neal Cardwellb884b1a2014-01-09 20:47:17 -050030 int ghl;
Daniel Borkmannc50cd352013-07-01 19:24:00 +020031 struct gre_base_hdr *greh;
Wei-Chun Chao7a7ffba2013-12-26 13:10:22 -080032 u16 mac_offset = skb->mac_header;
Daniel Borkmannc50cd352013-07-01 19:24:00 +020033 int mac_len = skb->mac_len;
34 __be16 protocol = skb->protocol;
35 int tnl_hlen;
36 bool csum;
37
38 if (unlikely(skb_shinfo(skb)->gso_type &
39 ~(SKB_GSO_TCPV4 |
40 SKB_GSO_TCPV6 |
41 SKB_GSO_UDP |
42 SKB_GSO_DODGY |
43 SKB_GSO_TCP_ECN |
Eric Dumazetcb32f512013-10-19 11:42:57 -070044 SKB_GSO_GRE |
Tom Herbert4749c092014-06-04 17:20:23 -070045 SKB_GSO_GRE_CSUM |
Eric Dumazetcb32f512013-10-19 11:42:57 -070046 SKB_GSO_IPIP)))
Daniel Borkmannc50cd352013-07-01 19:24:00 +020047 goto out;
48
49 if (unlikely(!pskb_may_pull(skb, sizeof(*greh))))
50 goto out;
51
52 greh = (struct gre_base_hdr *)skb_transport_header(skb);
53
Neal Cardwellb884b1a2014-01-09 20:47:17 -050054 ghl = skb_inner_network_header(skb) - skb_transport_header(skb);
55 if (unlikely(ghl < sizeof(*greh)))
56 goto out;
57
58 csum = !!(greh->flags & GRE_CSUM);
Tom Herbert4749c092014-06-04 17:20:23 -070059 if (csum)
60 skb->encap_hdr_csum = 1;
Daniel Borkmannc50cd352013-07-01 19:24:00 +020061
Wei-Chun Chao7a7ffba2013-12-26 13:10:22 -080062 if (unlikely(!pskb_may_pull(skb, ghl)))
63 goto out;
64
Daniel Borkmannc50cd352013-07-01 19:24:00 +020065 /* setup inner skb. */
66 skb->protocol = greh->protocol;
67 skb->encapsulation = 0;
68
Daniel Borkmannc50cd352013-07-01 19:24:00 +020069 __skb_pull(skb, ghl);
70 skb_reset_mac_header(skb);
71 skb_set_network_header(skb, skb_inner_network_offset(skb));
72 skb->mac_len = skb_inner_network_offset(skb);
73
74 /* segment inner packet. */
75 enc_features = skb->dev->hw_enc_features & netif_skb_features(skb);
76 segs = skb_mac_gso_segment(skb, enc_features);
Wei-Chun Chao7a7ffba2013-12-26 13:10:22 -080077 if (!segs || IS_ERR(segs)) {
78 skb_gso_error_unwind(skb, protocol, ghl, mac_offset, mac_len);
Daniel Borkmannc50cd352013-07-01 19:24:00 +020079 goto out;
Wei-Chun Chao7a7ffba2013-12-26 13:10:22 -080080 }
Daniel Borkmannc50cd352013-07-01 19:24:00 +020081
82 skb = segs;
83 tnl_hlen = skb_tnl_header_len(skb);
84 do {
85 __skb_push(skb, ghl);
86 if (csum) {
87 __be32 *pcsum;
88
89 if (skb_has_shared_frag(skb)) {
90 int err;
91
92 err = __skb_linearize(skb);
93 if (err) {
David S. Miller0c1072a2013-07-03 14:50:41 -070094 kfree_skb_list(segs);
Daniel Borkmannc50cd352013-07-01 19:24:00 +020095 segs = ERR_PTR(err);
96 goto out;
97 }
98 }
99
Tom Herbert4749c092014-06-04 17:20:23 -0700100 skb_reset_transport_header(skb);
101
102 greh = (struct gre_base_hdr *)
103 skb_transport_header(skb);
Daniel Borkmannc50cd352013-07-01 19:24:00 +0200104 pcsum = (__be32 *)(greh + 1);
105 *pcsum = 0;
Tom Herbert4749c092014-06-04 17:20:23 -0700106 *(__sum16 *)pcsum = gso_make_checksum(skb, 0);
Daniel Borkmannc50cd352013-07-01 19:24:00 +0200107 }
108 __skb_push(skb, tnl_hlen - ghl);
109
Alexander Duyckcdbaa0b2013-07-10 17:05:06 -0700110 skb_reset_inner_headers(skb);
111 skb->encapsulation = 1;
112
Daniel Borkmannc50cd352013-07-01 19:24:00 +0200113 skb_reset_mac_header(skb);
114 skb_set_network_header(skb, mac_len);
115 skb->mac_len = mac_len;
116 skb->protocol = protocol;
117 } while ((skb = skb->next));
118out:
119 return segs;
120}
121
Jerry Chubf5a7552014-01-07 10:23:19 -0800122/* Compute the whole skb csum in s/w and store it, then verify GRO csum
123 * starting from gro_offset.
124 */
125static __sum16 gro_skb_checksum(struct sk_buff *skb)
126{
127 __sum16 sum;
128
129 skb->csum = skb_checksum(skb, 0, skb->len, 0);
130 NAPI_GRO_CB(skb)->csum = csum_sub(skb->csum,
131 csum_partial(skb->data, skb_gro_offset(skb), 0));
132 sum = csum_fold(NAPI_GRO_CB(skb)->csum);
133 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE)) {
134 if (unlikely(!sum))
135 netdev_rx_csum_fault(skb->dev);
136 } else
137 skb->ip_summed = CHECKSUM_COMPLETE;
138
139 return sum;
140}
141
142static struct sk_buff **gre_gro_receive(struct sk_buff **head,
143 struct sk_buff *skb)
144{
145 struct sk_buff **pp = NULL;
146 struct sk_buff *p;
147 const struct gre_base_hdr *greh;
148 unsigned int hlen, grehlen;
149 unsigned int off;
150 int flush = 1;
151 struct packet_offload *ptype;
152 __be16 type;
153
154 off = skb_gro_offset(skb);
155 hlen = off + sizeof(*greh);
156 greh = skb_gro_header_fast(skb, off);
157 if (skb_gro_header_hard(skb, hlen)) {
158 greh = skb_gro_header_slow(skb, hlen, off);
159 if (unlikely(!greh))
160 goto out;
161 }
162
163 /* Only support version 0 and K (key), C (csum) flags. Note that
164 * although the support for the S (seq#) flag can be added easily
165 * for GRO, this is problematic for GSO hence can not be enabled
166 * here because a GRO pkt may end up in the forwarding path, thus
167 * requiring GSO support to break it up correctly.
168 */
169 if ((greh->flags & ~(GRE_KEY|GRE_CSUM)) != 0)
170 goto out;
171
172 type = greh->protocol;
173
174 rcu_read_lock();
175 ptype = gro_find_receive_by_type(type);
176 if (ptype == NULL)
177 goto out_unlock;
178
179 grehlen = GRE_HEADER_SECTION;
180
181 if (greh->flags & GRE_KEY)
182 grehlen += GRE_HEADER_SECTION;
183
184 if (greh->flags & GRE_CSUM)
185 grehlen += GRE_HEADER_SECTION;
186
187 hlen = off + grehlen;
188 if (skb_gro_header_hard(skb, hlen)) {
189 greh = skb_gro_header_slow(skb, hlen, off);
190 if (unlikely(!greh))
191 goto out_unlock;
192 }
193 if (greh->flags & GRE_CSUM) { /* Need to verify GRE csum first */
194 __sum16 csum = 0;
195
196 if (skb->ip_summed == CHECKSUM_COMPLETE)
197 csum = csum_fold(NAPI_GRO_CB(skb)->csum);
198 /* Don't trust csum error calculated/reported by h/w */
199 if (skb->ip_summed == CHECKSUM_NONE || csum != 0)
200 csum = gro_skb_checksum(skb);
201
202 /* GRE CSUM is the 1's complement of the 1's complement sum
203 * of the GRE hdr plus payload so it should add up to 0xffff
204 * (and 0 after csum_fold()) just like the IPv4 hdr csum.
205 */
206 if (csum)
207 goto out_unlock;
208 }
209 flush = 0;
210
211 for (p = *head; p; p = p->next) {
212 const struct gre_base_hdr *greh2;
213
214 if (!NAPI_GRO_CB(p)->same_flow)
215 continue;
216
217 /* The following checks are needed to ensure only pkts
218 * from the same tunnel are considered for aggregation.
219 * The criteria for "the same tunnel" includes:
220 * 1) same version (we only support version 0 here)
221 * 2) same protocol (we only support ETH_P_IP for now)
222 * 3) same set of flags
223 * 4) same key if the key field is present.
224 */
225 greh2 = (struct gre_base_hdr *)(p->data + off);
226
227 if (greh2->flags != greh->flags ||
228 greh2->protocol != greh->protocol) {
229 NAPI_GRO_CB(p)->same_flow = 0;
230 continue;
231 }
232 if (greh->flags & GRE_KEY) {
233 /* compare keys */
234 if (*(__be32 *)(greh2+1) != *(__be32 *)(greh+1)) {
235 NAPI_GRO_CB(p)->same_flow = 0;
236 continue;
237 }
238 }
239 }
240
241 skb_gro_pull(skb, grehlen);
242
243 /* Adjusted NAPI_GRO_CB(skb)->csum after skb_gro_pull()*/
244 skb_gro_postpull_rcsum(skb, greh, grehlen);
245
246 pp = ptype->callbacks.gro_receive(head, skb);
247
248out_unlock:
249 rcu_read_unlock();
250out:
251 NAPI_GRO_CB(skb)->flush |= flush;
252
253 return pp;
254}
255
Wei Yongjund10dbad2014-01-09 22:22:05 +0800256static int gre_gro_complete(struct sk_buff *skb, int nhoff)
Jerry Chubf5a7552014-01-07 10:23:19 -0800257{
258 struct gre_base_hdr *greh = (struct gre_base_hdr *)(skb->data + nhoff);
259 struct packet_offload *ptype;
260 unsigned int grehlen = sizeof(*greh);
261 int err = -ENOENT;
262 __be16 type;
263
264 type = greh->protocol;
265 if (greh->flags & GRE_KEY)
266 grehlen += GRE_HEADER_SECTION;
267
268 if (greh->flags & GRE_CSUM)
269 grehlen += GRE_HEADER_SECTION;
270
271 rcu_read_lock();
272 ptype = gro_find_complete_by_type(type);
273 if (ptype != NULL)
274 err = ptype->callbacks.gro_complete(skb, nhoff + grehlen);
275
276 rcu_read_unlock();
277 return err;
278}
279
Daniel Borkmannc50cd352013-07-01 19:24:00 +0200280static const struct net_offload gre_offload = {
281 .callbacks = {
282 .gso_send_check = gre_gso_send_check,
283 .gso_segment = gre_gso_segment,
Jerry Chubf5a7552014-01-07 10:23:19 -0800284 .gro_receive = gre_gro_receive,
285 .gro_complete = gre_gro_complete,
Daniel Borkmannc50cd352013-07-01 19:24:00 +0200286 },
287};
288
Eric Dumazet438e38f2014-01-06 14:03:07 -0800289static int __init gre_offload_init(void)
Daniel Borkmannc50cd352013-07-01 19:24:00 +0200290{
291 return inet_add_offload(&gre_offload, IPPROTO_GRE);
292}
Paul Gortmakercf172282014-01-15 11:19:55 -0500293device_initcall(gre_offload_init);