Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef __NET_IPIP_H |
| 2 | #define __NET_IPIP_H 1 |
| 3 | |
| 4 | #include <linux/if_tunnel.h> |
Eric Dumazet | 60769a5 | 2012-09-27 02:48:50 +0000 | [diff] [blame] | 5 | #include <net/gro_cells.h> |
Herbert Xu | c439cb2 | 2008-01-11 19:14:00 -0800 | [diff] [blame] | 6 | #include <net/ip.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | |
| 8 | /* Keep error state on tunnel for 30 sec */ |
| 9 | #define IPTUNNEL_ERR_TIMEO (30*HZ) |
| 10 | |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 11 | /* 6rd prefix/relay information */ |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 12 | struct ip_tunnel_6rd_parm { |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 13 | struct in6_addr prefix; |
| 14 | __be32 relay_prefix; |
| 15 | u16 prefixlen; |
| 16 | u16 relay_prefixlen; |
| 17 | }; |
| 18 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 19 | struct ip_tunnel { |
Eric Dumazet | 6f0bcf1 | 2010-10-24 21:33:16 +0000 | [diff] [blame] | 20 | struct ip_tunnel __rcu *next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | struct net_device *dev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | int err_count; /* Number of arrived ICMP errors */ |
| 24 | unsigned long err_time; /* Time when the last ICMP error arrived */ |
| 25 | |
| 26 | /* These four fields used only by GRE */ |
| 27 | __u32 i_seqno; /* The last seen seqno */ |
| 28 | __u32 o_seqno; /* The last output seqno */ |
| 29 | int hlen; /* Precalculated GRE header length */ |
| 30 | int mlink; |
| 31 | |
| 32 | struct ip_tunnel_parm parms; |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 33 | |
YOSHIFUJI Hideaki / 吉藤英明 | fa857af | 2009-09-22 23:43:14 +0000 | [diff] [blame] | 34 | /* for SIT */ |
| 35 | #ifdef CONFIG_IPV6_SIT_6RD |
| 36 | struct ip_tunnel_6rd_parm ip6rd; |
| 37 | #endif |
Eric Dumazet | b33eab0 | 2010-10-25 21:01:26 +0000 | [diff] [blame] | 38 | struct ip_tunnel_prl_entry __rcu *prl; /* potential router list */ |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 39 | unsigned int prl_count; /* # of entries in PRL */ |
Eric Dumazet | 60769a5 | 2012-09-27 02:48:50 +0000 | [diff] [blame] | 40 | |
| 41 | struct gro_cells gro_cells; |
Templin, Fred L | fadf6bf | 2008-03-11 18:35:59 -0400 | [diff] [blame] | 42 | }; |
| 43 | |
Eric Dumazet | fd2c3ef | 2009-11-03 03:26:03 +0000 | [diff] [blame] | 44 | struct ip_tunnel_prl_entry { |
Eric Dumazet | b33eab0 | 2010-10-25 21:01:26 +0000 | [diff] [blame] | 45 | struct ip_tunnel_prl_entry __rcu *next; |
YOSHIFUJI Hideaki | 300aaee | 2008-03-24 18:28:39 +0900 | [diff] [blame] | 46 | __be32 addr; |
| 47 | u16 flags; |
Eric Dumazet | ef9a9d1 | 2009-10-23 17:51:26 +0000 | [diff] [blame] | 48 | struct rcu_head rcu_head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | }; |
| 50 | |
Amerigo Wang | aa0010f | 2012-11-11 21:52:33 +0000 | [diff] [blame] | 51 | static inline void iptunnel_xmit(struct sk_buff *skb, struct net_device *dev) |
| 52 | { |
| 53 | int err; |
| 54 | struct iphdr *iph = ip_hdr(skb); |
| 55 | int pkt_len = skb->len - skb_transport_offset(skb); |
| 56 | struct pcpu_tstats *tstats = this_cpu_ptr(dev->tstats); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
Amerigo Wang | aa0010f | 2012-11-11 21:52:33 +0000 | [diff] [blame] | 58 | nf_reset(skb); |
| 59 | skb->ip_summed = CHECKSUM_NONE; |
| 60 | ip_select_ident(iph, skb_dst(skb), NULL); |
| 61 | |
| 62 | err = ip_local_out(skb); |
| 63 | if (likely(net_xmit_eval(err) == 0)) { |
| 64 | u64_stats_update_begin(&tstats->syncp); |
| 65 | tstats->tx_bytes += pkt_len; |
| 66 | tstats->tx_packets++; |
| 67 | u64_stats_update_end(&tstats->syncp); |
| 68 | } else { |
| 69 | dev->stats.tx_errors++; |
| 70 | dev->stats.tx_aborted_errors++; |
| 71 | } |
| 72 | } |
Eric Dumazet | 290b895 | 2010-09-27 00:33:35 +0000 | [diff] [blame] | 73 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | #endif |