2 #define __NET_GENEVE_H 1
5 #include <net/udp_tunnel.h>
10 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
11 * |Ver| Opt Len |O|C| Rsvd. | Protocol Type |
12 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
13 * | Virtual Network Identifier (VNI) | Reserved |
14 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
15 * | Variable Length Options |
16 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
19 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
20 * | Option Class | Type |R|R|R| Length |
21 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
22 * | Variable Option Data |
23 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
29 #ifdef __LITTLE_ENDIAN_BITFIELD
43 #define GENEVE_CRIT_OPT_TYPE (1 << 7)
46 #ifdef __LITTLE_ENDIAN_BITFIELD
62 struct geneve_opt options
[];
65 static inline struct genevehdr
*geneve_hdr(const struct sk_buff
*skb
)
67 return (struct genevehdr
*)(udp_hdr(skb
) + 1);
73 typedef void (geneve_rcv_t
)(struct geneve_sock
*gs
, struct sk_buff
*skb
);
76 struct list_head list
;
82 struct udp_offload udp_offloads
;
86 #define GENEVE_BASE_HLEN (sizeof(struct udphdr) + sizeof(struct genevehdr))
88 struct geneve_sock
*geneve_sock_add(struct net
*net
, __be16 port
,
89 geneve_rcv_t
*rcv
, void *data
,
90 bool no_share
, bool ipv6
);
92 void geneve_sock_release(struct geneve_sock
*vs
);
94 int geneve_xmit_skb(struct geneve_sock
*gs
, struct rtable
*rt
,
95 struct sk_buff
*skb
, __be32 src
, __be32 dst
, __u8 tos
,
96 __u8 ttl
, __be16 df
, __be16 src_port
, __be16 dst_port
,
97 __be16 tun_flags
, u8 vni
[3], u8 opt_len
, u8
*opt
,
98 bool csum
, bool xnet
);
99 #endif /*ifdef CONFIG_INET */
101 #endif /*ifdef__NET_GENEVE_H */