blob: 76e3ea6e2fe5248b6cb44a2bb9d68ded3b7f4d28 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __NET_IPIP_H
2#define __NET_IPIP_H 1
3
4#include <linux/if_tunnel.h>
Herbert Xuc439cb22008-01-11 19:14:00 -08005#include <net/ip.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006
7/* Keep error state on tunnel for 30 sec */
8#define IPTUNNEL_ERR_TIMEO (30*HZ)
9
10struct ip_tunnel
11{
12 struct ip_tunnel *next;
13 struct net_device *dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Linus Torvalds1da177e2005-04-16 15:20:36 -070015 int err_count; /* Number of arrived ICMP errors */
16 unsigned long err_time; /* Time when the last ICMP error arrived */
17
18 /* These four fields used only by GRE */
19 __u32 i_seqno; /* The last seen seqno */
20 __u32 o_seqno; /* The last output seqno */
21 int hlen; /* Precalculated GRE header length */
22 int mlink;
23
24 struct ip_tunnel_parm parms;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +090025
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -040026 struct ip_tunnel_prl_entry *prl; /* potential router list */
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +090027 unsigned int prl_count; /* # of entries in PRL */
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -040028};
29
Sascha Hlusiak64506922009-05-19 12:56:52 +000030/* ISATAP: default interval between RS in secondy */
31#define IPTUNNEL_RS_DEFAULT_DELAY (900)
32
Templin, Fred Lfadf6bf2008-03-11 18:35:59 -040033struct ip_tunnel_prl_entry
34{
35 struct ip_tunnel_prl_entry *next;
YOSHIFUJI Hideaki300aaee2008-03-24 18:28:39 +090036 __be32 addr;
37 u16 flags;
Sascha Hlusiak64506922009-05-19 12:56:52 +000038 unsigned long rs_delay;
39 struct timer_list rs_timer;
40 struct ip_tunnel *tunnel;
41 spinlock_t lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070042};
43
44#define IPTUNNEL_XMIT() do { \
45 int err; \
Herbert Xu64194c32008-10-09 12:03:17 -070046 int pkt_len = skb->len - skb_transport_offset(skb); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 \
48 skb->ip_summed = CHECKSUM_NONE; \
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 ip_select_ident(iph, &rt->u.dst, NULL); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070050 \
Herbert Xuc439cb22008-01-11 19:14:00 -080051 err = ip_local_out(skb); \
Gerrit Renkerb9df3cb2006-11-14 11:21:36 -020052 if (net_xmit_eval(err) == 0) { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 stats->tx_bytes += pkt_len; \
54 stats->tx_packets++; \
55 } else { \
56 stats->tx_errors++; \
57 stats->tx_aborted_errors++; \
58 } \
59} while (0)
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#endif