Deleted Added
sdiff udiff text old ( 249925 ) new ( 273087 )
full compact
1/* $FreeBSD: head/sys/net/if_gif.h 273087 2014-10-14 13:31:47Z ae $ */
2/* $KAME: if_gif.h,v 1.17 2000/09/11 11:36:41 sumikawa Exp $ */
3
4/*-
5 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

--- 15 unchanged lines hidden (view full) ---

25 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
26 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
28 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
29 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 * SUCH DAMAGE.
31 */
32
33#ifndef _NET_IF_GIF_H_
34#define _NET_IF_GIF_H_
35
36#ifdef _KERNEL
37#include "opt_inet.h"
38#include "opt_inet6.h"
39
40#include <netinet/in.h>
41
42struct ip;
43struct ip6_hdr;
44struct encaptab;
45
46extern void (*ng_gif_input_p)(struct ifnet *ifp, struct mbuf **mp,
47 int af);
48extern void (*ng_gif_input_orphan_p)(struct ifnet *ifp, struct mbuf *m,
49 int af);
50extern int (*ng_gif_output_p)(struct ifnet *ifp, struct mbuf **mp);
51extern void (*ng_gif_attach_p)(struct ifnet *ifp);
52extern void (*ng_gif_detach_p)(struct ifnet *ifp);
53
54struct gif_softc {
55 struct ifnet *gif_ifp;
56 struct rmlock gif_lock;
57 const struct encaptab *gif_ecookie;
58 int gif_family;
59 int gif_flags;
60 u_int gif_fibnum;
61 u_int gif_options;
62 void *gif_netgraph; /* netgraph node info */
63 union {
64 void *hdr;
65 struct ip *iphdr;
66#ifdef INET6
67 struct ip6_hdr *ip6hdr;
68#endif
69 } gif_uhdr;
70 LIST_ENTRY(gif_softc) gif_list; /* all gif's are linked */
71};
72#define GIF2IFP(sc) ((sc)->gif_ifp)
73#define GIF_LOCK_INIT(sc) rm_init(&(sc)->gif_lock, "gif softc")
74#define GIF_LOCK_DESTROY(sc) rm_destroy(&(sc)->gif_lock)
75#define GIF_RLOCK_TRACKER struct rm_priotracker gif_tracker
76#define GIF_RLOCK(sc) rm_rlock(&(sc)->gif_lock, &gif_tracker)
77#define GIF_RUNLOCK(sc) rm_runlock(&(sc)->gif_lock, &gif_tracker)
78#define GIF_RLOCK_ASSERT(sc) rm_assert(&(sc)->gif_lock, RA_RLOCKED)
79#define GIF_WLOCK(sc) rm_wlock(&(sc)->gif_lock)
80#define GIF_WUNLOCK(sc) rm_wunlock(&(sc)->gif_lock)
81#define GIF_WLOCK_ASSERT(sc) rm_assert(&(sc)->gif_lock, RA_WLOCKED)
82
83#define gif_iphdr gif_uhdr.iphdr
84#define gif_hdr gif_uhdr.hdr
85#ifdef INET6
86#define gif_ip6hdr gif_uhdr.ip6hdr
87#endif
88
89#define GIF_MTU (1280) /* Default MTU */
90#define GIF_MTU_MIN (1280) /* Minimum MTU */
91#define GIF_MTU_MAX (8192) /* Maximum MTU */
92
93#define MTAG_GIF 1080679712
94#define MTAG_GIF_CALLED 0

--- 10 unchanged lines hidden (view full) ---

105 u_int8_t eip_resvh; /* reserved */
106} __packed;
107
108#define ETHERIP_VERSION 0x3
109/* mbuf adjust factor to force 32-bit alignment of IP header */
110#define ETHERIP_ALIGN 2
111
112/* Prototypes */
113void gif_input(struct mbuf *, struct ifnet *, int, uint8_t);
114int gif_output(struct ifnet *, struct mbuf *, const struct sockaddr *,
115 struct route *);
116int gif_encapcheck(const struct mbuf *, int, int, void *);
117#endif /* _KERNEL */
118
119#define GIFGOPTS _IOWR('i', 150, struct ifreq)
120#define GIFSOPTS _IOW('i', 151, struct ifreq)
121
122#define GIF_ACCEPT_REVETHIP 0x0001
123#define GIF_SEND_REVETHIP 0x0010
124#define GIF_OPTMASK (GIF_ACCEPT_REVETHIP|GIF_SEND_REVETHIP)
125
126#endif /* _NET_IF_GIF_H_ */