123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- /* $OpenBSD: if_gre.h,v 1.13 2010/06/26 19:49:54 claudio Exp $ */
- /* $NetBSD: if_gre.h,v 1.5 1999/11/19 20:41:19 thorpej Exp $ */
- /*
- * Copyright (c) 1998 The NetBSD Foundation, Inc.
- * All rights reserved
- *
- * This code is derived from software contributed to The NetBSD Foundation
- * by Heiko W.Rupp <hwr@pilhuhn.de>
- *
- * Redistribution and use in source and binary forms, with or without
- * modification, are permitted provided that the following conditions
- * are met:
- * 1. Redistributions of source code must retain the above copyright
- * notice, this list of conditions and the following disclaimer.
- * 2. Redistributions in binary form must reproduce the above copyright
- * notice, this list of conditions and the following disclaimer in the
- * documentation and/or other materials provided with the distribution.
- *
- * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
- * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
- * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
- * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
- * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
- * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
- * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
- * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
- * POSSIBILITY OF SUCH DAMAGE.
- */
- #ifndef _NET_IF_GRE_H
- #define _NET_IF_GRE_H
- struct gre_softc {
- struct ifnet sc_if;
- LIST_ENTRY(gre_softc) sc_list;
- struct timeout sc_ka_hold;
- struct timeout sc_ka_snd;
- struct in_addr g_src; /* source address of gre packets */
- struct in_addr g_dst; /* destination address of gre packets */
- struct route route; /* routing entry that determines, where
- an encapsulated packet should go */
- u_int g_rtableid; /* routing table used for the tunnel */
- int gre_unit;
- int gre_flags;
- int sc_ka_timout;
- int sc_ka_holdmax;
- int sc_ka_holdcnt;
- int sc_ka_cnt;
- u_char g_proto; /* protocol of encapsulator */
- u_char sc_ka_state;
- #define GRE_STATE_UKNWN 0
- #define GRE_STATE_DOWN 1
- #define GRE_STATE_HOLD 2
- #define GRE_STATE_UP 3
- };
- struct gre_h {
- u_int16_t flags; /* GRE flags */
- u_int16_t ptype; /* protocol type of payload typically
- Ether protocol type*/
- /*
- * from here on: fields are optional, presence indicated by flags
- *
- u_int_16 checksum checksum (one-complements of GRE header
- and payload
- Present if (ck_pres | rt_pres == 1).
- Valid if (ck_pres == 1).
- u_int_16 offset offset from start of routing filed to
- first octet of active SRE (see below).
- Present if (ck_pres | rt_pres == 1).
- Valid if (rt_pres == 1).
- u_int_32 key inserted by encapsulator e.g. for
- authentication
- Present if (key_pres ==1 ).
- u_int_32 seq_num Sequence number to allow for packet order
- Present if (seq_pres ==1 ).
- struct gre_sre[] routing Routing fileds (see below)
- Present if (rt_pres == 1)
- */
- } __packed;
- struct greip {
- struct ip gi_i;
- struct gre_h gi_g;
- } __packed;
- #define gi_pr gi_i.ip_p
- #define gi_len gi_i.ip_len
- #define gi_src gi_i.ip_src
- #define gi_dst gi_i.ip_dst
- #define gi_ptype gi_g.ptype
- #define gi_flags gi_g.flags
- #define GRE_CP 0x8000 /* Checksum Present */
- #define GRE_RP 0x4000 /* Routing Present */
- #define GRE_KP 0x2000 /* Key Present */
- #define GRE_SP 0x1000 /* Sequence Present */
- #define GRE_SS 0x0800 /* Strict Source Route */
- /* gre_sre defines a Source route Entry. These are needed if packets
- * should be routed over more than one tunnel hop by hop
- */
- struct gre_sre {
- u_int16_t sre_family; /* address family */
- u_char sre_offset; /* offset to first octet of active entry */
- u_char sre_length; /* number of octets in the SRE.
- sre_lengthl==0 -> last entry. */
- u_char *sre_rtinfo; /* the routing information */
- };
- struct greioctl {
- int unit;
- struct in_addr addr;
- };
- /* for mobile encaps */
- struct mobile_h {
- u_int16_t proto; /* protocol and S-bit */
- u_int16_t hcrc; /* header checksum */
- u_int32_t odst; /* original destination address */
- u_int32_t osrc; /* original source addr, if S-bit set */
- } __packed;
- struct mobip_h {
- struct ip mi;
- struct mobile_h mh;
- } __packed;
- #define MOB_H_SIZ_S (sizeof(struct mobile_h) - sizeof(u_int32_t))
- #define MOB_H_SIZ_L (sizeof(struct mobile_h))
- #define MOB_H_SBIT 0x0080
- /*
- * ioctls needed to manipulate the interface
- */
- #ifdef _KERNEL
- extern LIST_HEAD(gre_softc_head, gre_softc) gre_softc_list;
- extern int gre_allow;
- extern int gre_wccp;
- extern int ip_mobile_allow;
- void greattach(int);
- int gre_ioctl(struct ifnet *, u_long, caddr_t);
- int gre_output(struct ifnet *, struct mbuf *, struct sockaddr *,
- struct rtentry *);
- u_int16_t gre_in_cksum(u_int16_t *, u_int);
- void gre_recv_keepalive(struct gre_softc *);
- #endif /* _KERNEL */
- #endif /* _NET_IF_GRE_H_ */
|