2 * Copyright (c) 2010 Nicira Networks.
3 * Distributed under the terms of the GNU GPL version 2.
5 * Significant portions of this file may be copied from parts of the Linux
6 * kernel, by Linus Torvalds and others.
12 #include "openvswitch/tunnel.h"
17 * The absolute minimum fragment size. Note that there are many other
18 * definitions of the minimum MTU.
23 * One of these goes in your struct tnl_ops and in tnl_find_port().
24 * These values are in the same namespace as other TNL_T_* values, so
25 * you have only the first 10 bits to define protocol identifiers.
27 #define TNL_T_PROTO_GRE 0
28 #define TNL_T_PROTO_CAPWAP 1
30 /* You only need these flags when you are calling tnl_find_port(). */
31 #define TNL_T_KEY_EXACT (1 << 10)
32 #define TNL_T_KEY_MATCH (1 << 11)
33 #define TNL_T_KEY_EITHER (TNL_T_KEY_EXACT | TNL_T_KEY_MATCH)
35 struct tnl_mutable_config {
38 unsigned char eth_addr[ETH_ALEN];
40 struct tnl_port_config port_config;
42 /* Set of TNL_T_* flags that define the category for lookup. */
45 int tunnel_hlen; /* Tunnel header length. */
49 /* Put your TNL_T_PROTO_* type in here. */
54 * Returns the length of the tunnel header you will add in
55 * build_header() (i.e. excludes the IP header). Returns a negative
56 * error code if the configuration is invalid.
58 int (*hdr_len)(const struct tnl_port_config *);
61 * Returns a linked list of SKBs with tunnel headers (multiple
62 * packets may be generated in the event of fragmentation). Space
63 * will have already been allocated at the start of the packet equal
64 * to sizeof(struct iphdr) + value returned by hdr_len(). The IP
65 * header will have already been constructed.
67 struct sk_buff *(*build_header)(struct sk_buff *,
69 const struct tnl_mutable_config *,
75 struct tbl_node tbl_node;
78 const struct tnl_ops *tnl_ops;
80 /* Protected by RCU. */
81 struct tnl_mutable_config *mutable;
88 struct vport *tnl_create(const char *name, const void __user *config,
89 const struct vport_ops *,
90 const struct tnl_ops *);
91 int tnl_modify(struct vport *, const void __user *config);
92 int tnl_destroy(struct vport *);
93 int tnl_set_mtu(struct vport *vport, int mtu);
94 int tnl_set_addr(struct vport *vport, const unsigned char *addr);
95 const char *tnl_get_name(const struct vport *vport);
96 const unsigned char *tnl_get_addr(const struct vport *vport);
97 int tnl_get_mtu(const struct vport *vport);
98 int tnl_send(struct vport *vport, struct sk_buff *skb);
99 void tnl_rcv(struct vport *vport, struct sk_buff *skb);
101 struct vport *tnl_find_port(__be32 saddr, __be32 daddr, __be32 key,
103 const struct tnl_mutable_config **mutable);
104 bool tnl_frag_needed(struct vport *vport,
105 const struct tnl_mutable_config *mutable,
106 struct sk_buff *skb, unsigned int mtu, __be32 flow_key);
108 static inline struct tnl_vport *tnl_vport_priv(const struct vport *vport)
110 return vport_priv(vport);
113 #endif /* tunnel.h */