]> git.kernelconcepts.de Git - karo-tx-linux.git/blob - net/ipv4/gre_offload.c
GSO: Add GSO type for fixed IPv4 ID
[karo-tx-linux.git] / net / ipv4 / gre_offload.c
1 /*
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>
14 #include <linux/init.h>
15 #include <net/protocol.h>
16 #include <net/gre.h>
17
18 static struct sk_buff *gre_gso_segment(struct sk_buff *skb,
19                                        netdev_features_t features)
20 {
21         int tnl_hlen = skb_inner_mac_header(skb) - skb_transport_header(skb);
22         struct sk_buff *segs = ERR_PTR(-EINVAL);
23         u16 mac_offset = skb->mac_header;
24         __be16 protocol = skb->protocol;
25         u16 mac_len = skb->mac_len;
26         int gre_offset, outer_hlen;
27         bool need_csum, ufo;
28
29         if (unlikely(skb_shinfo(skb)->gso_type &
30                                 ~(SKB_GSO_TCPV4 |
31                                   SKB_GSO_TCPV6 |
32                                   SKB_GSO_UDP |
33                                   SKB_GSO_DODGY |
34                                   SKB_GSO_TCP_ECN |
35                                   SKB_GSO_TCP_FIXEDID |
36                                   SKB_GSO_GRE |
37                                   SKB_GSO_GRE_CSUM |
38                                   SKB_GSO_IPIP |
39                                   SKB_GSO_SIT)))
40                 goto out;
41
42         if (!skb->encapsulation)
43                 goto out;
44
45         if (unlikely(tnl_hlen < sizeof(struct gre_base_hdr)))
46                 goto out;
47
48         if (unlikely(!pskb_may_pull(skb, tnl_hlen)))
49                 goto out;
50
51         /* setup inner skb. */
52         skb->encapsulation = 0;
53         SKB_GSO_CB(skb)->encap_level = 0;
54         __skb_pull(skb, tnl_hlen);
55         skb_reset_mac_header(skb);
56         skb_set_network_header(skb, skb_inner_network_offset(skb));
57         skb->mac_len = skb_inner_network_offset(skb);
58         skb->protocol = skb->inner_protocol;
59
60         need_csum = !!(skb_shinfo(skb)->gso_type & SKB_GSO_GRE_CSUM);
61         skb->encap_hdr_csum = need_csum;
62
63         ufo = !!(skb_shinfo(skb)->gso_type & SKB_GSO_UDP);
64
65         features &= skb->dev->hw_enc_features;
66
67         /* The only checksum offload we care about from here on out is the
68          * outer one so strip the existing checksum feature flags based
69          * on the fact that we will be computing our checksum in software.
70          */
71         if (ufo) {
72                 features &= ~NETIF_F_CSUM_MASK;
73                 if (!need_csum)
74                         features |= NETIF_F_HW_CSUM;
75         }
76
77         /* segment inner packet. */
78         segs = skb_mac_gso_segment(skb, features);
79         if (IS_ERR_OR_NULL(segs)) {
80                 skb_gso_error_unwind(skb, protocol, tnl_hlen, mac_offset,
81                                      mac_len);
82                 goto out;
83         }
84
85         outer_hlen = skb_tnl_header_len(skb);
86         gre_offset = outer_hlen - tnl_hlen;
87         skb = segs;
88         do {
89                 struct gre_base_hdr *greh;
90                 __be32 *pcsum;
91
92                 /* Set up inner headers if we are offloading inner checksum */
93                 if (skb->ip_summed == CHECKSUM_PARTIAL) {
94                         skb_reset_inner_headers(skb);
95                         skb->encapsulation = 1;
96                 }
97
98                 skb->mac_len = mac_len;
99                 skb->protocol = protocol;
100
101                 __skb_push(skb, outer_hlen);
102                 skb_reset_mac_header(skb);
103                 skb_set_network_header(skb, mac_len);
104                 skb_set_transport_header(skb, gre_offset);
105
106                 if (!need_csum)
107                         continue;
108
109                 greh = (struct gre_base_hdr *)skb_transport_header(skb);
110                 pcsum = (__be32 *)(greh + 1);
111
112                 *pcsum = 0;
113                 *(__sum16 *)pcsum = gso_make_checksum(skb, 0);
114         } while ((skb = skb->next));
115 out:
116         return segs;
117 }
118
119 static struct sk_buff **gre_gro_receive(struct sk_buff **head,
120                                         struct sk_buff *skb)
121 {
122         struct sk_buff **pp = NULL;
123         struct sk_buff *p;
124         const struct gre_base_hdr *greh;
125         unsigned int hlen, grehlen;
126         unsigned int off;
127         int flush = 1;
128         struct packet_offload *ptype;
129         __be16 type;
130
131         if (NAPI_GRO_CB(skb)->encap_mark)
132                 goto out;
133
134         NAPI_GRO_CB(skb)->encap_mark = 1;
135
136         off = skb_gro_offset(skb);
137         hlen = off + sizeof(*greh);
138         greh = skb_gro_header_fast(skb, off);
139         if (skb_gro_header_hard(skb, hlen)) {
140                 greh = skb_gro_header_slow(skb, hlen, off);
141                 if (unlikely(!greh))
142                         goto out;
143         }
144
145         /* Only support version 0 and K (key), C (csum) flags. Note that
146          * although the support for the S (seq#) flag can be added easily
147          * for GRO, this is problematic for GSO hence can not be enabled
148          * here because a GRO pkt may end up in the forwarding path, thus
149          * requiring GSO support to break it up correctly.
150          */
151         if ((greh->flags & ~(GRE_KEY|GRE_CSUM)) != 0)
152                 goto out;
153
154         /* We can only support GRE_CSUM if we can track the location of
155          * the GRE header.  In the case of FOU/GUE we cannot because the
156          * outer UDP header displaces the GRE header leaving us in a state
157          * of limbo.
158          */
159         if ((greh->flags & GRE_CSUM) && NAPI_GRO_CB(skb)->is_fou)
160                 goto out;
161
162         type = greh->protocol;
163
164         rcu_read_lock();
165         ptype = gro_find_receive_by_type(type);
166         if (!ptype)
167                 goto out_unlock;
168
169         grehlen = GRE_HEADER_SECTION;
170
171         if (greh->flags & GRE_KEY)
172                 grehlen += GRE_HEADER_SECTION;
173
174         if (greh->flags & GRE_CSUM)
175                 grehlen += GRE_HEADER_SECTION;
176
177         hlen = off + grehlen;
178         if (skb_gro_header_hard(skb, hlen)) {
179                 greh = skb_gro_header_slow(skb, hlen, off);
180                 if (unlikely(!greh))
181                         goto out_unlock;
182         }
183
184         /* Don't bother verifying checksum if we're going to flush anyway. */
185         if ((greh->flags & GRE_CSUM) && !NAPI_GRO_CB(skb)->flush) {
186                 if (skb_gro_checksum_simple_validate(skb))
187                         goto out_unlock;
188
189                 skb_gro_checksum_try_convert(skb, IPPROTO_GRE, 0,
190                                              null_compute_pseudo);
191         }
192
193         for (p = *head; p; p = p->next) {
194                 const struct gre_base_hdr *greh2;
195
196                 if (!NAPI_GRO_CB(p)->same_flow)
197                         continue;
198
199                 /* The following checks are needed to ensure only pkts
200                  * from the same tunnel are considered for aggregation.
201                  * The criteria for "the same tunnel" includes:
202                  * 1) same version (we only support version 0 here)
203                  * 2) same protocol (we only support ETH_P_IP for now)
204                  * 3) same set of flags
205                  * 4) same key if the key field is present.
206                  */
207                 greh2 = (struct gre_base_hdr *)(p->data + off);
208
209                 if (greh2->flags != greh->flags ||
210                     greh2->protocol != greh->protocol) {
211                         NAPI_GRO_CB(p)->same_flow = 0;
212                         continue;
213                 }
214                 if (greh->flags & GRE_KEY) {
215                         /* compare keys */
216                         if (*(__be32 *)(greh2+1) != *(__be32 *)(greh+1)) {
217                                 NAPI_GRO_CB(p)->same_flow = 0;
218                                 continue;
219                         }
220                 }
221         }
222
223         skb_gro_pull(skb, grehlen);
224
225         /* Adjusted NAPI_GRO_CB(skb)->csum after skb_gro_pull()*/
226         skb_gro_postpull_rcsum(skb, greh, grehlen);
227
228         pp = ptype->callbacks.gro_receive(head, skb);
229         flush = 0;
230
231 out_unlock:
232         rcu_read_unlock();
233 out:
234         NAPI_GRO_CB(skb)->flush |= flush;
235
236         return pp;
237 }
238
239 static int gre_gro_complete(struct sk_buff *skb, int nhoff)
240 {
241         struct gre_base_hdr *greh = (struct gre_base_hdr *)(skb->data + nhoff);
242         struct packet_offload *ptype;
243         unsigned int grehlen = sizeof(*greh);
244         int err = -ENOENT;
245         __be16 type;
246
247         skb->encapsulation = 1;
248         skb_shinfo(skb)->gso_type = SKB_GSO_GRE;
249
250         type = greh->protocol;
251         if (greh->flags & GRE_KEY)
252                 grehlen += GRE_HEADER_SECTION;
253
254         if (greh->flags & GRE_CSUM)
255                 grehlen += GRE_HEADER_SECTION;
256
257         rcu_read_lock();
258         ptype = gro_find_complete_by_type(type);
259         if (ptype)
260                 err = ptype->callbacks.gro_complete(skb, nhoff + grehlen);
261
262         rcu_read_unlock();
263
264         skb_set_inner_mac_header(skb, nhoff + grehlen);
265
266         return err;
267 }
268
269 static const struct net_offload gre_offload = {
270         .callbacks = {
271                 .gso_segment = gre_gso_segment,
272                 .gro_receive = gre_gro_receive,
273                 .gro_complete = gre_gro_complete,
274         },
275 };
276
277 static int __init gre_offload_init(void)
278 {
279         return inet_add_offload(&gre_offload, IPPROTO_GRE);
280 }
281 device_initcall(gre_offload_init);