tunneling: Add datapath GRE support.
[sliver-openvswitch.git] / datapath / vport-gre.c
1 /*
2  * Copyright (c) 2010 Nicira Networks.
3  * Distributed under the terms of the GNU GPL version 2.
4  *
5  * Significant portions of this file may be copied from parts of the Linux
6  * kernel, by Linus Torvalds and others.
7  */
8
9 #include <linux/if_arp.h>
10 #include <linux/if_ether.h>
11 #include <linux/ip.h>
12 #include <linux/if_tunnel.h>
13 #include <linux/if_vlan.h>
14 #include <linux/in.h>
15 #include <linux/in_route.h>
16 #include <linux/jhash.h>
17 #include <linux/kernel.h>
18 #include <linux/version.h>
19
20 #include <net/dsfield.h>
21 #include <net/dst.h>
22 #include <net/icmp.h>
23 #include <net/inet_ecn.h>
24 #include <net/ip.h>
25 #include <net/ipv6.h>
26 #include <net/protocol.h>
27 #include <net/route.h>
28 #include <net/xfrm.h>
29
30 #include "actions.h"
31 #include "datapath.h"
32 #include "openvswitch/gre.h"
33 #include "table.h"
34 #include "vport.h"
35
36 /* The absolute minimum fragment size.  Note that there are many other
37  * definitions of the minimum MTU. */
38 #define IP_MIN_MTU 68
39
40 /* The GRE header is composed of a series of sections: a base and then a variable
41  * number of options. */
42 #define GRE_HEADER_SECTION 4
43
44 struct mutable_config {
45         struct rcu_head rcu;
46
47         unsigned char eth_addr[ETH_ALEN];
48         unsigned int mtu;
49         struct gre_port_config port_config;
50
51         int tunnel_hlen; /* Tunnel header length. */
52 };
53
54 struct gre_vport {
55         struct tbl_node tbl_node;
56
57         char name[IFNAMSIZ];
58
59         /* Protected by RCU. */
60         struct mutable_config *mutable;
61 };
62
63 struct vport_ops gre_vport_ops;
64
65 /* Protected by RCU. */
66 static struct tbl *port_table;
67
68 /* These are just used as an optimization: they don't require any kind of
69  * synchronization because we could have just as easily read the value before
70  * the port change happened. */
71 static unsigned int key_local_remote_ports;
72 static unsigned int key_remote_ports;
73 static unsigned int local_remote_ports;
74 static unsigned int remote_ports;
75
76 static inline struct gre_vport *
77 gre_vport_priv(const struct vport *vport)
78 {
79         return vport_priv(vport);
80 }
81
82 static inline struct vport *
83 gre_vport_to_vport(const struct gre_vport *gre_vport)
84 {
85         return vport_from_priv(gre_vport);
86 }
87
88 static inline struct gre_vport *
89 gre_vport_table_cast(const struct tbl_node *node)
90 {
91         return container_of(node, struct gre_vport, tbl_node);
92 }
93
94 /* RCU callback. */
95 static void
96 free_config(struct rcu_head *rcu)
97 {
98         struct mutable_config *c = container_of(rcu, struct mutable_config, rcu);
99         kfree(c);
100 }
101
102 static void
103 assign_config_rcu(struct vport *vport, struct mutable_config *new_config)
104 {
105         struct gre_vport *gre_vport = gre_vport_priv(vport);
106         struct mutable_config *old_config;
107
108         old_config = rcu_dereference(gre_vport->mutable);
109         rcu_assign_pointer(gre_vport->mutable, new_config);
110         call_rcu(&old_config->rcu, free_config);
111 }
112
113 static unsigned int *
114 find_port_pool(const struct mutable_config *mutable)
115 {
116         if (mutable->port_config.flags & GRE_F_IN_KEY_MATCH) {
117                 if (mutable->port_config.saddr)
118                         return &local_remote_ports;
119                 else
120                         return &remote_ports;
121         } else {
122                 if (mutable->port_config.saddr)
123                         return &key_local_remote_ports;
124                 else
125                         return &key_remote_ports;
126         }
127 }
128
129 enum lookup_key {
130         LOOKUP_SADDR            = 0,
131         LOOKUP_DADDR            = 1,
132         LOOKUP_KEY              = 2,
133         LOOKUP_KEY_MATCH        = 3
134 };
135
136 struct port_lookup_key {
137         u32 vals[4];                    /* Contains enum lookup_key keys. */
138         const struct mutable_config *mutable;
139 };
140
141 /* Modifies 'target' to store the rcu_dereferenced pointer that was used to do
142  * the comparision. */
143 static int
144 port_cmp(const struct tbl_node *node, void *target)
145 {
146         const struct gre_vport *gre_vport = gre_vport_table_cast(node);
147         struct port_lookup_key *lookup = target;
148
149         lookup->mutable = rcu_dereference(gre_vport->mutable);
150
151         return ((lookup->mutable->port_config.flags & GRE_F_IN_KEY_MATCH) ==
152                         lookup->vals[LOOKUP_KEY_MATCH]) &&
153                lookup->mutable->port_config.daddr == lookup->vals[LOOKUP_DADDR] &&
154                lookup->mutable->port_config.in_key == lookup->vals[LOOKUP_KEY] &&
155                lookup->mutable->port_config.saddr == lookup->vals[LOOKUP_SADDR];
156 }
157
158 static u32
159 port_hash(struct port_lookup_key *lookup)
160 {
161         return jhash2(lookup->vals, ARRAY_SIZE(lookup->vals), 0);
162 }
163
164 static int
165 add_port(struct vport *vport)
166 {
167         struct gre_vport *gre_vport = gre_vport_priv(vport);
168         struct port_lookup_key lookup;
169         int err;
170
171         if (!port_table) {
172                 struct tbl *new_table;
173
174                 new_table = tbl_create(0);
175                 if (!new_table)
176                         return -ENOMEM;
177
178                 rcu_assign_pointer(port_table, new_table);
179
180         } else if (tbl_count(port_table) > tbl_n_buckets(port_table)) {
181                 struct tbl *old_table = port_table;
182                 struct tbl *new_table;
183
184                 new_table = tbl_expand(old_table);
185                 if (IS_ERR(new_table))
186                         return PTR_ERR(new_table);
187
188                 rcu_assign_pointer(port_table, new_table);
189                 tbl_deferred_destroy(old_table, NULL);
190         }
191
192         lookup.vals[LOOKUP_SADDR] = gre_vport->mutable->port_config.saddr;
193         lookup.vals[LOOKUP_DADDR] = gre_vport->mutable->port_config.daddr;
194         lookup.vals[LOOKUP_KEY] = gre_vport->mutable->port_config.in_key;
195         lookup.vals[LOOKUP_KEY_MATCH] = gre_vport->mutable->port_config.flags & GRE_F_IN_KEY_MATCH;
196
197         err = tbl_insert(port_table, &gre_vport->tbl_node, port_hash(&lookup));
198         if (err)
199                 return err;
200
201         (*find_port_pool(gre_vport->mutable))++;
202
203         return 0;
204 }
205
206 static int
207 del_port(struct vport *vport)
208 {
209         struct gre_vport *gre_vport = gre_vport_priv(vport);
210         int err;
211
212         err = tbl_remove(port_table, &gre_vport->tbl_node);
213         if (err)
214                 return err;
215
216         (*find_port_pool(gre_vport->mutable))--;
217
218         return 0;
219 }
220
221 #define FIND_PORT_KEY           (1 << 0)
222 #define FIND_PORT_MATCH         (1 << 1)
223 #define FIND_PORT_ANY           (FIND_PORT_KEY | FIND_PORT_MATCH)
224
225 static struct vport *
226 find_port(__be32 saddr, __be32 daddr, __be32 key, int port_type,
227           const struct mutable_config **mutable)
228 {
229         struct port_lookup_key lookup;
230         struct tbl *table = rcu_dereference(port_table);
231         struct tbl_node *tbl_node;
232
233         if (!table)
234                 return NULL;
235
236         lookup.vals[LOOKUP_SADDR] = saddr;
237         lookup.vals[LOOKUP_DADDR] = daddr;
238
239         if (port_type & FIND_PORT_KEY) {
240                 lookup.vals[LOOKUP_KEY] = key;
241                 lookup.vals[LOOKUP_KEY_MATCH] = 0;
242
243                 if (key_local_remote_ports) {
244                         tbl_node = tbl_lookup(table, &lookup, port_hash(&lookup), port_cmp);
245                         if (tbl_node)
246                                 goto found;
247                 }
248
249                 if (key_remote_ports) {
250                         lookup.vals[LOOKUP_SADDR] = 0;
251
252                         tbl_node = tbl_lookup(table, &lookup, port_hash(&lookup), port_cmp);
253                         if (tbl_node)
254                                 goto found;
255
256                         lookup.vals[LOOKUP_SADDR] = saddr;
257                 }
258         }
259
260         if (port_type & FIND_PORT_MATCH) {
261                 lookup.vals[LOOKUP_KEY] = 0;
262                 lookup.vals[LOOKUP_KEY_MATCH] = GRE_F_IN_KEY_MATCH;
263
264                 if (local_remote_ports) {
265                         tbl_node = tbl_lookup(table, &lookup, port_hash(&lookup), port_cmp);
266                         if (tbl_node)
267                                 goto found;
268                 }
269
270                 if (remote_ports) {
271                         lookup.vals[LOOKUP_SADDR] = 0;
272
273                         tbl_node = tbl_lookup(table, &lookup, port_hash(&lookup), port_cmp);
274                         if (tbl_node)
275                                 goto found;
276                 }
277         }
278
279         return NULL;
280
281 found:
282         *mutable = lookup.mutable;
283         return gre_vport_to_vport(gre_vport_table_cast(tbl_node));
284 }
285
286 static bool
287 check_ipv4_address(__be32 addr)
288 {
289         if (ipv4_is_multicast(addr) || ipv4_is_lbcast(addr)
290             || ipv4_is_loopback(addr) || ipv4_is_zeronet(addr))
291                 return false;
292
293         return true;
294 }
295
296 static bool
297 ipv4_should_icmp(struct sk_buff *skb)
298 {
299         struct iphdr *old_iph = ip_hdr(skb);
300
301         /* Don't respond to L2 broadcast. */
302         if (is_multicast_ether_addr(eth_hdr(skb)->h_dest))
303                 return false;
304
305         /* Don't respond to L3 broadcast or invalid addresses. */
306         if (!check_ipv4_address(old_iph->daddr) ||
307             !check_ipv4_address(old_iph->saddr))
308                 return false;
309
310         /* Only respond to the first fragment. */
311         if (old_iph->frag_off & htons(IP_OFFSET))
312                 return false;
313
314         /* Don't respond to ICMP error messages. */
315         if (old_iph->protocol == IPPROTO_ICMP) {
316                 u8 icmp_type, *icmp_typep;
317
318                 icmp_typep = skb_header_pointer(skb, (u8 *)old_iph +
319                                                 (old_iph->ihl << 2) +
320                                                 offsetof(struct icmphdr, type) -
321                                                 skb->data, sizeof(icmp_type),
322                                                 &icmp_type);
323
324                 if (!icmp_typep)
325                         return false;
326
327                 if (*icmp_typep > NR_ICMP_TYPES
328                         || (*icmp_typep <= ICMP_PARAMETERPROB
329                                 && *icmp_typep != ICMP_ECHOREPLY
330                                 && *icmp_typep != ICMP_ECHO))
331                         return false;
332         }
333
334         return true;
335 }
336
337 static void
338 ipv4_build_icmp(struct sk_buff *skb, struct sk_buff *nskb,
339                 unsigned int mtu, unsigned int payload_length)
340 {
341         struct iphdr *iph, *old_iph = ip_hdr(skb);
342         struct icmphdr *icmph;
343         u8 *payload;
344
345         iph = (struct iphdr *)skb_put(nskb, sizeof(struct iphdr));
346         icmph = (struct icmphdr *)skb_put(nskb, sizeof(struct icmphdr));
347         payload = skb_put(nskb, payload_length);
348
349         /* IP */
350         iph->version            =       4;
351         iph->ihl                =       sizeof(struct iphdr) >> 2;
352         iph->tos                =       (old_iph->tos & IPTOS_TOS_MASK) |
353                                         IPTOS_PREC_INTERNETCONTROL;
354         iph->tot_len            =       htons(sizeof(struct iphdr)
355                                               + sizeof(struct icmphdr)
356                                               + payload_length);
357         get_random_bytes(&iph->id, sizeof(iph->id));
358         iph->frag_off           =       0;
359         iph->ttl                =       IPDEFTTL;
360         iph->protocol           =       IPPROTO_ICMP;
361         iph->daddr              =       old_iph->saddr;
362         iph->saddr              =       old_iph->daddr;
363
364         ip_send_check(iph);
365
366         /* ICMP */
367         icmph->type             =       ICMP_DEST_UNREACH;
368         icmph->code             =       ICMP_FRAG_NEEDED;
369         icmph->un.gateway       =       htonl(mtu);
370         icmph->checksum         =       0;
371
372         nskb->csum = csum_partial((u8 *)icmph, sizeof(struct icmphdr), 0);
373         nskb->csum = skb_copy_and_csum_bits(skb, (u8 *)old_iph - skb->data,
374                                             payload, payload_length,
375                                             nskb->csum);
376         icmph->checksum = csum_fold(nskb->csum);
377 }
378
379 static bool
380 ipv6_should_icmp(struct sk_buff *skb)
381 {
382         struct ipv6hdr *old_ipv6h = ipv6_hdr(skb);
383         int addr_type;
384         int payload_off = (u8 *)(old_ipv6h + 1) - skb->data;
385         u8 nexthdr = ipv6_hdr(skb)->nexthdr;
386
387         /* Check source address is valid. */
388         addr_type = ipv6_addr_type(&old_ipv6h->saddr);
389         if (addr_type & IPV6_ADDR_MULTICAST || addr_type == IPV6_ADDR_ANY)
390                 return false;
391
392         /* Don't reply to unspecified addresses. */
393         if (ipv6_addr_type(&old_ipv6h->daddr) == IPV6_ADDR_ANY)
394                 return false;
395
396         /* Don't respond to ICMP error messages. */
397         payload_off = ipv6_skip_exthdr(skb, payload_off, &nexthdr);
398         if (payload_off < 0)
399                 return false;
400
401         if (nexthdr == NEXTHDR_ICMP) {
402                 u8 icmp_type, *icmp_typep;
403
404                 icmp_typep = skb_header_pointer(skb, payload_off +
405                                                 offsetof(struct icmp6hdr,
406                                                         icmp6_type),
407                                                 sizeof(icmp_type), &icmp_type);
408
409                 if (!icmp_typep || !(*icmp_typep & ICMPV6_INFOMSG_MASK))
410                         return false;
411         }
412
413         return true;
414 }
415
416 static void
417 ipv6_build_icmp(struct sk_buff *skb, struct sk_buff *nskb, unsigned int mtu,
418                 unsigned int payload_length)
419 {
420         struct ipv6hdr *ipv6h, *old_ipv6h = ipv6_hdr(skb);
421         struct icmp6hdr *icmp6h;
422         u8 *payload;
423
424         ipv6h = (struct ipv6hdr *)skb_put(nskb, sizeof(struct ipv6hdr));
425         icmp6h = (struct icmp6hdr *)skb_put(nskb, sizeof(struct icmp6hdr));
426         payload = skb_put(nskb, payload_length);
427
428         /* IPv6 */
429         ipv6h->version          =       6;
430         ipv6h->priority         =       0;
431         memset(&ipv6h->flow_lbl, 0, sizeof(ipv6h->flow_lbl));
432         ipv6h->payload_len      =       htons(sizeof(struct icmp6hdr)
433                                               + payload_length);
434         ipv6h->nexthdr          =       NEXTHDR_ICMP;
435         ipv6h->hop_limit        =       IPV6_DEFAULT_HOPLIMIT;
436         ipv6_addr_copy(&ipv6h->daddr, &old_ipv6h->saddr);
437         ipv6_addr_copy(&ipv6h->saddr, &old_ipv6h->daddr);
438
439         /* ICMPv6 */
440         icmp6h->icmp6_type      =       ICMPV6_PKT_TOOBIG;
441         icmp6h->icmp6_code      =       0;
442         icmp6h->icmp6_cksum     =       0;
443         icmp6h->icmp6_mtu       =       htonl(mtu);
444
445         nskb->csum = csum_partial((u8 *)icmp6h, sizeof(struct icmp6hdr), 0);
446         nskb->csum = skb_copy_and_csum_bits(skb, (u8 *)old_ipv6h - skb->data,
447                                             payload, payload_length,
448                                             nskb->csum);
449         icmp6h->icmp6_cksum = csum_ipv6_magic(&ipv6h->saddr, &ipv6h->daddr,
450                                                 sizeof(struct icmp6hdr)
451                                                 + payload_length,
452                                                 ipv6h->nexthdr, nskb->csum);
453 }
454
455 static bool
456 send_frag_needed(struct vport *vport, const struct mutable_config *mutable,
457                  struct sk_buff *skb, unsigned int mtu)
458 {
459         unsigned int eth_hdr_len = ETH_HLEN;
460         unsigned int total_length, header_length, payload_length;
461         struct ethhdr *eh, *old_eh = eth_hdr(skb);
462         struct sk_buff *nskb;
463
464         /* Sanity check */
465         if (skb->protocol == htons(ETH_P_IP)) {
466                 if (mtu < IP_MIN_MTU)
467                         return false;
468
469                 if (!ipv4_should_icmp(skb))
470                         return true;
471         } else {
472                 if (mtu < IPV6_MIN_MTU)
473                         return false;
474
475                 /* In theory we should do PMTUD on IPv6 multicast messages but
476                  * we don't have an address to send from so just fragment. */
477                 if (ipv6_addr_type(&ipv6_hdr(skb)->daddr) & IPV6_ADDR_MULTICAST)
478                         return false;
479
480                 if (!ipv6_should_icmp(skb))
481                         return true;
482         }
483
484         /* Allocate */
485         if (old_eh->h_proto == htons(ETH_P_8021Q))
486                 eth_hdr_len = VLAN_ETH_HLEN;
487
488         payload_length = skb->len - eth_hdr_len;
489         if (skb->protocol == htons(ETH_P_IP)) {
490                 header_length = sizeof(struct iphdr) + sizeof(struct icmphdr);
491                 total_length = min_t(unsigned int, header_length +
492                                                    payload_length, 576);
493         } else {
494                 header_length = sizeof(struct ipv6hdr) +
495                                 sizeof(struct icmp6hdr);
496                 total_length = min_t(unsigned int, header_length +
497                                                   payload_length, IPV6_MIN_MTU);
498         }
499         total_length = min(total_length, mutable->mtu);
500         payload_length = total_length - header_length;
501
502         nskb = dev_alloc_skb(NET_IP_ALIGN + eth_hdr_len + header_length +
503                              payload_length);
504         if (!nskb)
505                 return false;
506
507         skb_reserve(nskb, NET_IP_ALIGN);
508
509         /* Ethernet / VLAN */
510         eh = (struct ethhdr *)skb_put(nskb, eth_hdr_len);
511         memcpy(eh->h_dest, old_eh->h_source, ETH_ALEN);
512         memcpy(eh->h_source, mutable->eth_addr, ETH_ALEN);
513         nskb->protocol = eh->h_proto = old_eh->h_proto;
514         if (old_eh->h_proto == htons(ETH_P_8021Q)) {
515                 struct vlan_ethhdr *vh = (struct vlan_ethhdr *)eh;
516
517                 vh->h_vlan_TCI = vlan_eth_hdr(skb)->h_vlan_TCI;
518                 vh->h_vlan_encapsulated_proto = skb->protocol;
519         }
520         skb_reset_mac_header(nskb);
521
522         /* Protocol */
523         if (skb->protocol == htons(ETH_P_IP))
524                 ipv4_build_icmp(skb, nskb, mtu, payload_length);
525         else
526                 ipv6_build_icmp(skb, nskb, mtu, payload_length);
527
528         /* Assume that flow based keys are symmetric with respect to input
529          * and output and use the key that we were going to put on the
530          * outgoing packet for the fake received packet.  If the keys are
531          * not symmetric then PMTUD needs to be disabled since we won't have
532          * any way of synthesizing packets. */
533         if (mutable->port_config.flags & GRE_F_IN_KEY_MATCH) {
534                 if (mutable->port_config.flags & GRE_F_OUT_KEY_ACTION)
535                         OVS_CB(nskb)->tun_id = OVS_CB(skb)->tun_id;
536                 else
537                         OVS_CB(nskb)->tun_id = mutable->port_config.out_key;
538         }
539
540         vport_receive(vport, nskb);
541
542         return true;
543 }
544
545 static struct sk_buff *
546 check_headroom(struct sk_buff *skb, int headroom)
547 {
548         if (skb_headroom(skb) < headroom ||
549             (skb_cloned(skb) && !skb_clone_writable(skb, 0))) {
550                 struct sk_buff *nskb = skb_realloc_headroom(skb, headroom);
551                 if (!nskb) {
552                         kfree_skb(skb);
553                         return ERR_PTR(-ENOMEM);
554                 }
555
556                 set_skb_csum_bits(skb, nskb);
557
558                 if (skb->sk)
559                         skb_set_owner_w(nskb, skb->sk);
560
561                 dev_kfree_skb(skb);
562                 return nskb;
563         }
564
565         return skb;
566 }
567
568 static void
569 create_gre_header(struct sk_buff *skb, const struct mutable_config *mutable)
570 {
571         struct iphdr *iph = ip_hdr(skb);
572         __be16 *flags = (__be16 *)(iph + 1);
573         __be16 *protocol = flags + 1;
574         __be32 *options = (__be32 *)((u8 *)iph + mutable->tunnel_hlen
575                                                - GRE_HEADER_SECTION);
576
577         *protocol = htons(ETH_P_TEB);
578         *flags = 0;
579
580         /* Work backwards over the options so the checksum is last. */
581         if (mutable->port_config.out_key ||
582             mutable->port_config.flags & GRE_F_OUT_KEY_ACTION) {
583                 *flags |= GRE_KEY;
584
585                 if (mutable->port_config.flags & GRE_F_OUT_KEY_ACTION)
586                         *options = OVS_CB(skb)->tun_id;
587                 else
588                         *options = mutable->port_config.out_key;
589
590                 options--;
591         }
592
593         if (mutable->port_config.flags & GRE_F_OUT_CSUM) {
594                 *flags |= GRE_CSUM;
595
596                 *options = 0;
597                 *(__sum16 *)options = csum_fold(skb_checksum(skb,
598                                                 sizeof(struct iphdr),
599                                                 skb->len - sizeof(struct iphdr),
600                                                 0));
601         }
602 }
603
604 static int
605 check_checksum(struct sk_buff *skb)
606 {
607         struct iphdr *iph = ip_hdr(skb);
608         __be16 flags = *(__be16 *)(iph + 1);
609         __sum16 csum = 0;
610
611         if (flags & GRE_CSUM) {
612                 switch (skb->ip_summed) {
613                 case CHECKSUM_COMPLETE:
614                         csum = csum_fold(skb->csum);
615
616                         if (!csum)
617                                 break;
618                         /* Fall through. */
619
620                 case CHECKSUM_NONE:
621                         skb->csum = 0;
622                         csum = __skb_checksum_complete(skb);
623                         skb->ip_summed = CHECKSUM_COMPLETE;
624                         break;
625                 }
626         }
627
628         return (csum == 0);
629 }
630
631 static int
632 parse_gre_header(struct iphdr *iph, __be16 *flags, __be32 *key)
633 {
634         __be16 *flagsp = (__be16 *)(iph + 1);
635         __be16 *protocol = flagsp + 1;
636         __be32 *options = (__be32 *)(protocol + 1);
637         int hdr_len;
638
639         *flags = *flagsp;
640
641         if (*flags & (GRE_VERSION | GRE_ROUTING))
642                 return -EINVAL;
643
644         if (*protocol != htons(ETH_P_TEB))
645                 return -EINVAL;
646
647         hdr_len = GRE_HEADER_SECTION;
648
649         if (*flags & GRE_CSUM) {
650                 hdr_len += GRE_HEADER_SECTION;
651                 options++;
652         }
653
654         if (*flags & GRE_KEY) {
655                 hdr_len += GRE_HEADER_SECTION;
656
657                 *key = *options;
658                 options++;
659         } else
660                 *key = 0;
661
662         if (*flags & GRE_SEQ)
663                 hdr_len += GRE_HEADER_SECTION;
664
665         return hdr_len;
666 }
667
668 static inline u8
669 ecn_encapsulate(u8 tos, struct sk_buff *skb)
670 {
671         u8 inner;
672
673         if (skb->protocol == htons(ETH_P_IP))
674                 inner = ((struct iphdr *)skb_network_header(skb))->tos;
675         else if (skb->protocol == htons(ETH_P_IPV6))
676                 inner = ipv6_get_dsfield((struct ipv6hdr *)skb_network_header(skb));
677         else
678                 inner = 0;
679
680         return INET_ECN_encapsulate(tos, inner);
681 }
682
683 static inline void
684 ecn_decapsulate(u8 tos, struct sk_buff *skb)
685 {
686         if (INET_ECN_is_ce(tos)) {
687                 __be16 protocol = skb->protocol;
688                 unsigned int nw_header = skb_network_header(skb) - skb->data;
689
690                 if (skb->protocol == htons(ETH_P_8021Q)) {
691                         if (unlikely(!pskb_may_pull(skb, VLAN_ETH_HLEN)))
692                                 return;
693
694                         protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
695                         nw_header += VLAN_HLEN;
696                 }
697
698                 if (protocol == htons(ETH_P_IP)) {
699                         if (unlikely(!pskb_may_pull(skb, nw_header
700                             + sizeof(struct iphdr))))
701                                 return;
702
703                         IP_ECN_set_ce((struct iphdr *)(nw_header + skb->data));
704                 } else if (protocol == htons(ETH_P_IPV6)) {
705                         if (unlikely(!pskb_may_pull(skb, nw_header
706                             + sizeof(struct ipv6hdr))))
707                                 return;
708
709                         IP6_ECN_set_ce((struct ipv6hdr *)(nw_header
710                                                           + skb->data));
711                 }
712         }
713 }
714
715 static struct sk_buff *
716 handle_gso(struct sk_buff *skb)
717 {
718         if (skb_is_gso(skb)) {
719                 struct sk_buff *nskb = skb_gso_segment(skb, NETIF_F_SG);
720
721                 dev_kfree_skb(skb);
722                 return nskb;
723         }
724
725         return skb;
726 }
727
728 static int
729 handle_csum_offload(struct sk_buff *skb)
730 {
731         if (skb->ip_summed == CHECKSUM_PARTIAL)
732                 return skb_checksum_help(skb);
733         else
734                 return 0;
735 }
736
737 /* Called with rcu_read_lock and bottom-halves disabled. */
738 static void
739 gre_err(struct sk_buff *skb, u32 info)
740 {
741         struct vport *vport;
742         const struct mutable_config *mutable;
743         const int type = icmp_hdr(skb)->type;
744         const int code = icmp_hdr(skb)->code;
745         int mtu = ntohs(icmp_hdr(skb)->un.frag.mtu);
746
747         struct iphdr *iph;
748         __be16 flags;
749         __be32 key;
750         int tunnel_hdr_len, tot_hdr_len;
751         unsigned int orig_mac_header;
752         unsigned int orig_nw_header;
753
754         if (type != ICMP_DEST_UNREACH || code != ICMP_FRAG_NEEDED)
755                 return;
756
757         /* The mimimum size packet that we would actually be able to process:
758          * encapsulating IP header, minimum GRE header, Ethernet header,
759          * inner IPv4 header. */
760         if (!pskb_may_pull(skb, sizeof(struct iphdr) + GRE_HEADER_SECTION +
761                                 ETH_HLEN + sizeof(struct iphdr)))
762                 return;
763
764         iph = (struct iphdr *)skb->data;
765
766         tunnel_hdr_len = parse_gre_header(iph, &flags, &key);
767         if (tunnel_hdr_len < 0)
768                 return;
769
770         vport = find_port(iph->saddr, iph->daddr, key, FIND_PORT_ANY, &mutable);
771         if (!vport)
772                 return;
773
774         if ((mutable->port_config.flags & GRE_F_IN_CSUM) && !(flags & GRE_CSUM))
775                 return;
776
777         tot_hdr_len = sizeof(struct iphdr) + tunnel_hdr_len;
778
779         orig_mac_header = skb_mac_header(skb) - skb->data;
780         orig_nw_header = skb_network_header(skb) - skb->data;
781         skb_set_mac_header(skb, tot_hdr_len);
782
783         tot_hdr_len += ETH_HLEN;
784
785         skb->protocol = eth_hdr(skb)->h_proto;
786         if (skb->protocol == htons(ETH_P_8021Q)) {
787                 tot_hdr_len += VLAN_HLEN;
788                 skb->protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
789         }
790
791         if (skb->protocol == htons(ETH_P_IP))
792                 tot_hdr_len += sizeof(struct iphdr);
793         else if (skb->protocol == htons(ETH_P_IP))
794                 tot_hdr_len += sizeof(struct ipv6hdr);
795         else
796                 goto out;
797
798         if (!pskb_may_pull(skb, tot_hdr_len))
799                 goto out;
800
801         skb_set_network_header(skb, tot_hdr_len);
802         mtu -= tot_hdr_len;
803
804         if (skb->protocol == htons(ETH_P_IP)) {
805                 if (mtu < IP_MIN_MTU) {
806                         if (ntohs(ip_hdr(skb)->tot_len) >= IP_MIN_MTU)
807                                 mtu = IP_MIN_MTU;
808                         else
809                                 goto out;
810                 }
811
812         } else if (skb->protocol == htons(ETH_P_IPV6)) {
813                 if (mtu < IPV6_MIN_MTU) {
814                         unsigned int packet_length = sizeof(struct ipv6hdr) +
815                                               ntohs(ipv6_hdr(skb)->payload_len);
816
817                         if (packet_length >= IPV6_MIN_MTU
818                             || ntohs(ipv6_hdr(skb)->payload_len) == 0)
819                                 mtu = IPV6_MIN_MTU;
820                         else
821                                 goto out;
822                 }
823         }
824
825         __pskb_pull(skb, tunnel_hdr_len);
826         send_frag_needed(vport, mutable, skb, mtu);
827         skb_push(skb, tunnel_hdr_len);
828
829 out:
830         skb_set_mac_header(skb, orig_mac_header);
831         skb_set_network_header(skb, orig_nw_header);
832         skb->protocol = htons(ETH_P_IP);
833 }
834
835 /* Called with rcu_read_lock and bottom-halves disabled. */
836 static int
837 gre_rcv(struct sk_buff *skb)
838 {
839         struct vport *vport;
840         const struct mutable_config *mutable;
841         int hdr_len;
842         struct iphdr *iph;
843         __be16 flags;
844         __be32 key;
845
846         if (!pskb_may_pull(skb, GRE_HEADER_SECTION + ETH_HLEN))
847                 goto error;
848
849         if (!check_checksum(skb))
850                 goto error;
851
852         iph = ip_hdr(skb);
853
854         hdr_len = parse_gre_header(iph, &flags, &key);
855         if (hdr_len < 0)
856                 goto error;
857
858         vport = find_port(iph->daddr, iph->saddr, key, FIND_PORT_ANY, &mutable);
859         if (!vport) {
860                 icmp_send(skb, ICMP_DEST_UNREACH, ICMP_PORT_UNREACH, 0);
861                 goto error;
862         }
863
864         if ((mutable->port_config.flags & GRE_F_IN_CSUM) && !(flags & GRE_CSUM)) {
865                 vport_record_error(vport, VPORT_E_RX_CRC);
866                 goto error;
867         }
868
869         if (!pskb_pull(skb, hdr_len) || !pskb_may_pull(skb, ETH_HLEN)) {
870                 vport_record_error(vport, VPORT_E_RX_ERROR);
871                 goto error;
872         }
873
874         skb->pkt_type = PACKET_HOST;
875         skb->protocol = eth_type_trans(skb, skb->dev);
876         skb_postpull_rcsum(skb, skb_transport_header(skb), hdr_len + ETH_HLEN);
877
878         skb_dst_drop(skb);
879         nf_reset(skb);
880         secpath_reset(skb);
881         skb_reset_network_header(skb);
882
883         ecn_decapsulate(iph->tos, skb);
884
885         if (mutable->port_config.flags & GRE_F_IN_KEY_MATCH)
886                 OVS_CB(skb)->tun_id = key;
887         else
888                 OVS_CB(skb)->tun_id = 0;
889
890         skb_push(skb, ETH_HLEN);
891         vport_receive(vport, skb);
892
893         return 0;
894
895 error:
896         kfree_skb(skb);
897         return 0;
898 }
899
900 static int
901 build_packet(struct vport *vport, const struct mutable_config *mutable,
902              struct iphdr *iph, struct rtable *rt, int max_headroom, int mtu,
903              struct sk_buff *skb)
904 {
905         int err;
906         struct iphdr *new_iph;
907         int orig_len = skb->len;
908         __be16 frag_off = iph->frag_off;
909
910         skb = check_headroom(skb, max_headroom);
911         if (unlikely(IS_ERR(skb)))
912                 goto error;
913
914         err = handle_csum_offload(skb);
915         if (err)
916                 goto error_free;
917
918         if (skb->protocol == htons(ETH_P_IP)) {
919                 struct iphdr *old_iph = ip_hdr(skb);
920
921                 if ((old_iph->frag_off & htons(IP_DF)) &&
922                     mtu < ntohs(old_iph->tot_len)) {
923                         if (send_frag_needed(vport, mutable, skb, mtu))
924                                 goto error_free;
925                 }
926
927         } else if (skb->protocol == htons(ETH_P_IPV6)) {
928                 unsigned int packet_length = skb->len - ETH_HLEN
929                         - (eth_hdr(skb)->h_proto == htons(ETH_P_8021Q) ? VLAN_HLEN : 0);
930
931                 /* IPv6 requires PMTUD if the packet is above the minimum MTU. */
932                 if (packet_length > IPV6_MIN_MTU)
933                         frag_off = htons(IP_DF);
934
935                 if (mtu < packet_length) {
936                         if (send_frag_needed(vport, mutable, skb, mtu))
937                                 goto error_free;
938                 }
939         }
940
941         skb_reset_transport_header(skb);
942         new_iph = (struct iphdr *)skb_push(skb, mutable->tunnel_hlen);
943         skb_reset_network_header(skb);
944
945         memcpy(new_iph, iph, sizeof(struct iphdr));
946         new_iph->frag_off = frag_off;
947         ip_select_ident(new_iph, &rt->u.dst, NULL);
948
949         create_gre_header(skb, mutable);
950
951         memset(&(IPCB(skb)->opt), 0, sizeof(IPCB(skb)->opt));
952         IPCB(skb)->flags = 0;
953
954         err = ip_local_out(skb);
955         if (likely(net_xmit_eval(err) == 0))
956                 return orig_len;
957         else {
958                 vport_record_error(vport, VPORT_E_TX_ERROR);
959                 return 0;
960         }
961
962 error_free:
963         kfree_skb(skb);
964 error:
965         vport_record_error(vport, VPORT_E_TX_DROPPED);
966
967         return 0;
968 }
969
970 static int
971 gre_send(struct vport *vport, struct sk_buff *skb)
972 {
973         struct gre_vport *gre_vport = gre_vport_priv(vport);
974         const struct mutable_config *mutable = rcu_dereference(gre_vport->mutable);
975
976         struct iphdr *old_iph;
977         struct ipv6hdr *old_ipv6h;
978         int orig_len;
979         struct iphdr iph;
980         struct rtable *rt;
981         int max_headroom;
982         int mtu;
983
984         /* Validate the protocol headers before we try to use them. */
985         if (skb->protocol == htons(ETH_P_8021Q)) {
986                 if (unlikely(!pskb_may_pull(skb, VLAN_ETH_HLEN)))
987                         goto error_free;
988
989                 skb->protocol = vlan_eth_hdr(skb)->h_vlan_encapsulated_proto;
990                 skb_set_network_header(skb, VLAN_ETH_HLEN);
991         }
992
993         if (skb->protocol == htons(ETH_P_IP)) {
994                 if (unlikely(!pskb_may_pull(skb, skb_network_header(skb)
995                     + sizeof(struct iphdr) - skb->data)))
996                         skb->protocol = 0;
997         } else if (skb->protocol == htons(ETH_P_IPV6)) {
998                 if (unlikely(!pskb_may_pull(skb, skb_network_header(skb)
999                     + sizeof(struct ipv6hdr) - skb->data)))
1000                         skb->protocol = 0;
1001         }
1002
1003         old_iph = ip_hdr(skb);
1004         old_ipv6h = ipv6_hdr(skb);
1005
1006         iph.tos = mutable->port_config.tos;
1007         if (mutable->port_config.flags & GRE_F_TOS_INHERIT) {
1008                 if (skb->protocol == htons(ETH_P_IP))
1009                         iph.tos = old_iph->tos;
1010                 else if (skb->protocol == htons(ETH_P_IPV6))
1011                         iph.tos = ipv6_get_dsfield(ipv6_hdr(skb));
1012         }
1013         iph.tos = ecn_encapsulate(iph.tos, skb);
1014
1015         {
1016                 struct flowi fl = { .nl_u = { .ip4_u =
1017                                               { .daddr = mutable->port_config.daddr,
1018                                                 .saddr = mutable->port_config.saddr,
1019                                                 .tos = RT_TOS(iph.tos) } },
1020                                     .proto = IPPROTO_GRE };
1021
1022                 if (ip_route_output_key(&init_net, &rt, &fl))
1023                         goto error_free;
1024         }
1025
1026         iph.ttl = mutable->port_config.ttl;
1027         if (mutable->port_config.flags & GRE_F_TTL_INHERIT) {
1028                 if (skb->protocol == htons(ETH_P_IP))
1029                         iph.ttl = old_iph->ttl;
1030                 else if (skb->protocol == htons(ETH_P_IPV6))
1031                         iph.ttl = old_ipv6h->hop_limit;
1032         }
1033         if (!iph.ttl)
1034                 iph.ttl = dst_metric(&rt->u.dst, RTAX_HOPLIMIT);
1035
1036         iph.frag_off = (mutable->port_config.flags & GRE_F_PMTUD) ? htons(IP_DF) : 0;
1037         if (iph.frag_off)
1038                 mtu = dst_mtu(&rt->u.dst)
1039                         - ETH_HLEN
1040                         - mutable->tunnel_hlen
1041                         - (eth_hdr(skb)->h_proto == htons(ETH_P_8021Q) ? VLAN_HLEN : 0);
1042         else
1043                 mtu = mutable->mtu;
1044
1045         if (skb->protocol == htons(ETH_P_IP)) {
1046                 iph.frag_off |= old_iph->frag_off & htons(IP_DF);
1047                 mtu = max(mtu, IP_MIN_MTU);
1048
1049         } else if (skb->protocol == htons(ETH_P_IPV6))
1050                 mtu = max(mtu, IPV6_MIN_MTU);
1051
1052         iph.version = 4;
1053         iph.ihl = sizeof(struct iphdr) >> 2;
1054         iph.protocol = IPPROTO_GRE;
1055         iph.daddr = rt->rt_dst;
1056         iph.saddr = rt->rt_src;
1057
1058         /* Allow our local IP stack to fragment the outer packet even if the
1059          * DF bit is set as a last resort. */
1060         skb->local_df = 1;
1061
1062         nf_reset(skb);
1063         secpath_reset(skb);
1064         skb_dst_drop(skb);
1065         skb_dst_set(skb, &rt->u.dst);
1066         skb->ip_summed = CHECKSUM_NONE;
1067
1068         /* If we are doing GSO on a pskb it is better to make sure that the
1069          * headroom is correct now.  We will only have to copy the portion in
1070          * the linear data area and GSO will preserve headroom when it creates
1071          * the segments.  This is particularly beneficial on Xen where we get
1072          * lots of GSO pskbs.  Conversely, we delay copying if it is just to
1073          * get our own writable clone because GSO may do the copy for us. */
1074         max_headroom = LL_RESERVED_SPACE(rt->u.dst.dev) + mutable->tunnel_hlen;
1075         if (skb_headroom(skb) < max_headroom) {
1076                 skb = check_headroom(skb, max_headroom);
1077                 if (unlikely(IS_ERR(skb))) {
1078                         vport_record_error(vport, VPORT_E_TX_DROPPED);
1079                         goto error;
1080                 }
1081         }
1082
1083         vswitch_skb_checksum_setup(skb);
1084         skb = handle_gso(skb);
1085         if (unlikely(IS_ERR(skb))) {
1086                 vport_record_error(vport, VPORT_E_TX_DROPPED);
1087                 goto error;
1088         }
1089
1090         /* Process GSO segments.  Try to do any work on the entire packet that
1091          * doesn't involve actually writing to it before this point. */
1092         orig_len = 0;
1093         do {
1094                 struct sk_buff *next_skb = skb->next;
1095                 skb->next = NULL;
1096
1097                 orig_len += build_packet(vport, mutable, &iph, rt, max_headroom, mtu, skb);
1098
1099                 skb = next_skb;
1100         } while (skb);
1101
1102         return orig_len;
1103
1104 error_free:
1105         kfree_skb(skb);
1106         vport_record_error(vport, VPORT_E_TX_ERROR);
1107 error:
1108         return 0;
1109 }
1110
1111 static struct net_protocol gre_protocol_handlers = {
1112         .handler        =       gre_rcv,
1113         .err_handler    =       gre_err,
1114 };
1115
1116 static int
1117 gre_init(void)
1118 {
1119         int err;
1120
1121         err = inet_add_protocol(&gre_protocol_handlers, IPPROTO_GRE);
1122         if (err)
1123                 printk(KERN_WARNING "openvswitch: cannot register gre protocol handler\n");
1124
1125         return err;
1126 }
1127
1128 static void
1129 gre_exit(void)
1130 {
1131         tbl_destroy(port_table, NULL);
1132         inet_del_protocol(&gre_protocol_handlers, IPPROTO_GRE);
1133 }
1134
1135 static int
1136 set_config(const struct vport *cur_vport, struct mutable_config *mutable,
1137            const void __user *uconfig)
1138 {
1139         const struct vport *old_vport;
1140         const struct mutable_config *old_mutable;
1141         int port_type;
1142
1143         if (copy_from_user(&mutable->port_config, uconfig, sizeof(struct gre_port_config)))
1144                 return -EFAULT;
1145
1146         if (mutable->port_config.daddr == 0)
1147                 return -EINVAL;
1148
1149         if (mutable->port_config.flags & GRE_F_IN_KEY_MATCH) {
1150                 port_type = FIND_PORT_MATCH;
1151                 mutable->port_config.in_key = 0;
1152         } else
1153                 port_type = FIND_PORT_KEY;
1154
1155         old_vport = find_port(mutable->port_config.saddr,
1156                               mutable->port_config.daddr,
1157                               mutable->port_config.in_key, port_type,
1158                               &old_mutable);
1159
1160         if (old_vport && old_vport != cur_vport)
1161                 return -EEXIST;
1162
1163         mutable->tunnel_hlen = sizeof(struct iphdr) + GRE_HEADER_SECTION;
1164
1165         if (mutable->port_config.flags & GRE_F_OUT_CSUM)
1166                 mutable->tunnel_hlen += GRE_HEADER_SECTION;
1167
1168         if (mutable->port_config.out_key ||
1169             mutable->port_config.flags & GRE_F_OUT_KEY_ACTION)
1170                 mutable->tunnel_hlen += GRE_HEADER_SECTION;
1171
1172         return 0;
1173 }
1174
1175 static struct vport *
1176 gre_create(const char *name, const void __user *config)
1177 {
1178         struct vport *vport;
1179         struct gre_vport *gre_vport;
1180         int err;
1181
1182         vport = vport_alloc(sizeof(struct gre_vport), &gre_vport_ops);
1183         if (IS_ERR(vport)) {
1184                 err = PTR_ERR(vport);
1185                 goto error;
1186         }
1187
1188         gre_vport = gre_vport_priv(vport);
1189
1190         strcpy(gre_vport->name, name);
1191
1192         gre_vport->mutable = kmalloc(sizeof(struct mutable_config), GFP_KERNEL);
1193         if (!gre_vport->mutable) {
1194                 err = -ENOMEM;
1195                 goto error_free_vport;
1196         }
1197
1198         vport_gen_ether_addr(gre_vport->mutable->eth_addr);
1199         gre_vport->mutable->mtu = ETH_DATA_LEN;
1200
1201         err = set_config(NULL, gre_vport->mutable, config);
1202         if (err)
1203                 goto error_free_mutable;
1204
1205         err = add_port(vport);
1206         if (err)
1207                 goto error_free_mutable;
1208
1209         return vport;
1210
1211 error_free_mutable:
1212         kfree(gre_vport->mutable);
1213 error_free_vport:
1214         vport_free(vport);
1215 error:
1216         return ERR_PTR(err);
1217 }
1218
1219 static int
1220 gre_modify(struct vport *vport, const void __user *config)
1221 {
1222         struct gre_vport *gre_vport = gre_vport_priv(vport);
1223         struct mutable_config *mutable;
1224         int err;
1225         int update_hash = 0;
1226
1227         mutable = kmemdup(gre_vport->mutable, sizeof(struct mutable_config), GFP_KERNEL);
1228         if (!mutable) {
1229                 err = -ENOMEM;
1230                 goto error;
1231         }
1232
1233         err = set_config(vport, mutable, config);
1234         if (err)
1235                 goto error_free;
1236
1237         /* Only remove the port from the hash table if something that would
1238          * affect the lookup has changed. */
1239         if (gre_vport->mutable->port_config.saddr != mutable->port_config.saddr ||
1240             gre_vport->mutable->port_config.daddr != mutable->port_config.daddr ||
1241             gre_vport->mutable->port_config.in_key != mutable->port_config.in_key ||
1242             (gre_vport->mutable->port_config.flags & GRE_F_IN_KEY_MATCH) !=
1243             (mutable->port_config.flags & GRE_F_IN_KEY_MATCH))
1244                 update_hash = 1;
1245
1246
1247         /* This update is not atomic but the lookup uses the config, which
1248          * serves as an inherent double check. */
1249         if (update_hash) {
1250                 err = del_port(vport);
1251                 if (err)
1252                         goto error_free;
1253         }
1254
1255         assign_config_rcu(vport, mutable);
1256
1257         if (update_hash) {
1258                 err = add_port(vport);
1259                 if (err)
1260                         goto error_free;
1261         }
1262
1263         return 0;
1264
1265 error_free:
1266         kfree(mutable);
1267 error:
1268         return err;
1269 }
1270
1271 static int
1272 gre_destroy(struct vport *vport)
1273 {
1274         struct gre_vport *gre_vport = gre_vport_priv(vport);
1275         int port_type;
1276         const struct mutable_config *old_mutable;
1277
1278         /* Do a hash table lookup to make sure that the port exists.  It should
1279          * exist but might not if a modify failed earlier. */
1280         if (gre_vport->mutable->port_config.flags & GRE_F_IN_KEY_MATCH)
1281                 port_type = FIND_PORT_MATCH;
1282         else
1283                 port_type = FIND_PORT_KEY;
1284
1285         if (vport == find_port(gre_vport->mutable->port_config.saddr,
1286             gre_vport->mutable->port_config.daddr,
1287             gre_vport->mutable->port_config.in_key, port_type, &old_mutable))
1288                 del_port(vport);
1289
1290         kfree(gre_vport->mutable);
1291         vport_free(vport);
1292
1293         return 0;
1294 }
1295
1296 static int
1297 gre_set_mtu(struct vport *vport, int mtu)
1298 {
1299         struct gre_vport *gre_vport = gre_vport_priv(vport);
1300         struct mutable_config *mutable;
1301         struct dp_port *dp_port;
1302
1303         mutable = kmemdup(gre_vport->mutable, sizeof(struct mutable_config), GFP_KERNEL);
1304         if (!mutable)
1305                 return -ENOMEM;
1306
1307         mutable->mtu = mtu;
1308         assign_config_rcu(vport, mutable);
1309
1310         dp_port = vport_get_dp_port(vport);
1311         if (dp_port)
1312                 set_internal_devs_mtu(dp_port->dp);
1313
1314         return 0;
1315 }
1316
1317 static int
1318 gre_set_addr(struct vport *vport, const unsigned char *addr)
1319 {
1320         struct gre_vport *gre_vport = gre_vport_priv(vport);
1321         struct mutable_config *mutable;
1322
1323         mutable = kmemdup(gre_vport->mutable, sizeof(struct mutable_config), GFP_KERNEL);
1324         if (!mutable)
1325                 return -ENOMEM;
1326
1327         memcpy(mutable->eth_addr, addr, ETH_ALEN);
1328         assign_config_rcu(vport, mutable);
1329
1330         return 0;
1331 }
1332
1333
1334 static const char *
1335 gre_get_name(const struct vport *vport)
1336 {
1337         const struct gre_vport *gre_vport = gre_vport_priv(vport);
1338         return gre_vport->name;
1339 }
1340
1341 static const unsigned char *
1342 gre_get_addr(const struct vport *vport)
1343 {
1344         const struct gre_vport *gre_vport = gre_vport_priv(vport);
1345         return rcu_dereference(gre_vport->mutable)->eth_addr;
1346 }
1347
1348 static unsigned
1349 gre_get_dev_flags(const struct vport *vport)
1350 {
1351         return IFF_UP | IFF_RUNNING | IFF_LOWER_UP;
1352 }
1353
1354 static int
1355 gre_is_running(const struct vport *vport)
1356 {
1357         return 1;
1358 }
1359
1360 static unsigned char
1361 gre_get_operstate(const struct vport *vport)
1362 {
1363         return IF_OPER_UP;
1364 }
1365
1366 static int
1367 gre_get_mtu(const struct vport *vport)
1368 {
1369         const struct gre_vport *gre_vport = gre_vport_priv(vport);
1370         return rcu_dereference(gre_vport->mutable)->mtu;
1371 }
1372
1373 struct vport_ops gre_vport_ops = {
1374         .type           = "gre",
1375         .flags          = VPORT_F_GEN_STATS | VPORT_F_TUN_ID,
1376         .init           = gre_init,
1377         .exit           = gre_exit,
1378         .create         = gre_create,
1379         .modify         = gre_modify,
1380         .destroy        = gre_destroy,
1381         .set_mtu        = gre_set_mtu,
1382         .set_addr       = gre_set_addr,
1383         .get_name       = gre_get_name,
1384         .get_addr       = gre_get_addr,
1385         .get_dev_flags  = gre_get_dev_flags,
1386         .is_running     = gre_is_running,
1387         .get_operstate  = gre_get_operstate,
1388         .get_mtu        = gre_get_mtu,
1389         .send           = gre_send,
1390 };