mfd: wm8350-i2c: Make sure the i2c regmap functions are compiled
[linux/fpc-iii.git] / net / ipv4 / gre_offload.c
blobdb98705905f7c5288ce629d127f66a5c87ff8d9a
1 /*
2 * IPV4 GSO/GRO offload support
3 * Linux INET implementation
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.
10 * GRE GSO support
13 #include <linux/skbuff.h>
14 #include <net/protocol.h>
15 #include <net/gre.h>
17 static int gre_gso_send_check(struct sk_buff *skb)
19 if (!skb->encapsulation)
20 return -EINVAL;
21 return 0;
24 static struct sk_buff *gre_gso_segment(struct sk_buff *skb,
25 netdev_features_t features)
27 struct sk_buff *segs = ERR_PTR(-EINVAL);
28 netdev_features_t enc_features;
29 int ghl = GRE_HEADER_SECTION;
30 struct gre_base_hdr *greh;
31 u16 mac_offset = skb->mac_header;
32 int mac_len = skb->mac_len;
33 __be16 protocol = skb->protocol;
34 int tnl_hlen;
35 bool csum;
37 if (unlikely(skb_shinfo(skb)->gso_type &
38 ~(SKB_GSO_TCPV4 |
39 SKB_GSO_TCPV6 |
40 SKB_GSO_UDP |
41 SKB_GSO_DODGY |
42 SKB_GSO_TCP_ECN |
43 SKB_GSO_GRE)))
44 goto out;
46 if (unlikely(!pskb_may_pull(skb, sizeof(*greh))))
47 goto out;
49 greh = (struct gre_base_hdr *)skb_transport_header(skb);
51 if (greh->flags & GRE_KEY)
52 ghl += GRE_HEADER_SECTION;
53 if (greh->flags & GRE_SEQ)
54 ghl += GRE_HEADER_SECTION;
55 if (greh->flags & GRE_CSUM) {
56 ghl += GRE_HEADER_SECTION;
57 csum = true;
58 } else
59 csum = false;
61 if (unlikely(!pskb_may_pull(skb, ghl)))
62 goto out;
64 /* setup inner skb. */
65 skb->protocol = greh->protocol;
66 skb->encapsulation = 0;
68 __skb_pull(skb, ghl);
69 skb_reset_mac_header(skb);
70 skb_set_network_header(skb, skb_inner_network_offset(skb));
71 skb->mac_len = skb_inner_network_offset(skb);
73 /* segment inner packet. */
74 enc_features = skb->dev->hw_enc_features & netif_skb_features(skb);
75 segs = skb_mac_gso_segment(skb, enc_features);
76 if (!segs || IS_ERR(segs)) {
77 skb_gso_error_unwind(skb, protocol, ghl, mac_offset, mac_len);
78 goto out;
81 skb = segs;
82 tnl_hlen = skb_tnl_header_len(skb);
83 do {
84 __skb_push(skb, ghl);
85 if (csum) {
86 __be32 *pcsum;
88 if (skb_has_shared_frag(skb)) {
89 int err;
91 err = __skb_linearize(skb);
92 if (err) {
93 kfree_skb_list(segs);
94 segs = ERR_PTR(err);
95 goto out;
99 greh = (struct gre_base_hdr *)(skb->data);
100 pcsum = (__be32 *)(greh + 1);
101 *pcsum = 0;
102 *(__sum16 *)pcsum = csum_fold(skb_checksum(skb, 0, skb->len, 0));
104 __skb_push(skb, tnl_hlen - ghl);
106 skb_reset_inner_headers(skb);
107 skb->encapsulation = 1;
109 skb_reset_mac_header(skb);
110 skb_set_network_header(skb, mac_len);
111 skb->mac_len = mac_len;
112 skb->protocol = protocol;
113 } while ((skb = skb->next));
114 out:
115 return segs;
118 static const struct net_offload gre_offload = {
119 .callbacks = {
120 .gso_send_check = gre_gso_send_check,
121 .gso_segment = gre_gso_segment,
125 int __init gre_offload_init(void)
127 return inet_add_offload(&gre_offload, IPPROTO_GRE);
130 void __exit gre_offload_exit(void)
132 inet_del_offload(&gre_offload, IPPROTO_GRE);