Home | History | Annotate | Line # | Download | only in libnpftest
npf_test.h revision 1.16.12.2
      1        1.1     rmind /*
      2        1.1     rmind  * Public Domain.
      3        1.1     rmind  */
      4        1.1     rmind 
      5        1.1     rmind #ifndef _LIB_NPF_TEST_H_
      6        1.1     rmind #define _LIB_NPF_TEST_H_
      7        1.1     rmind 
      8       1.16  christos #ifdef _KERNEL
      9        1.1     rmind #include <sys/types.h>
     10        1.1     rmind #include <sys/mbuf.h>
     11        1.1     rmind 
     12        1.1     rmind #include <netinet/in_systm.h>
     13        1.1     rmind #include <netinet/in.h>
     14        1.1     rmind #include <netinet6/in6.h>
     15        1.1     rmind 
     16        1.1     rmind #include <netinet/ip.h>
     17        1.1     rmind #include <netinet/ip6.h>
     18        1.1     rmind #include <netinet/tcp.h>
     19        1.1     rmind #include <netinet/udp.h>
     20        1.1     rmind #include <netinet/ip_icmp.h>
     21        1.1     rmind 
     22        1.1     rmind #include <net/if.h>
     23        1.1     rmind #include <net/if_ether.h>
     24        1.1     rmind #include <net/ethertypes.h>
     25       1.16  christos #endif
     26        1.1     rmind 
     27        1.9     rmind /* Test interfaces and IP addresses. */
     28        1.9     rmind #define	IFNAME_EXT	"npftest0"
     29        1.9     rmind #define	IFNAME_INT	"npftest1"
     30       1.11     rmind #define	IFNAME_TEST	"npftest2"
     31        1.9     rmind 
     32        1.9     rmind #define	LOCAL_IP1	"10.1.1.1"
     33        1.9     rmind #define	LOCAL_IP2	"10.1.1.2"
     34        1.9     rmind #define	LOCAL_IP3	"10.1.1.3"
     35        1.9     rmind 
     36        1.9     rmind /* Note: RFC 5737 compliant addresses. */
     37        1.9     rmind #define	PUB_IP1		"192.0.2.1"
     38        1.9     rmind #define	PUB_IP2		"192.0.2.2"
     39       1.14     rmind #define	PUB_IP3		"192.0.2.3"
     40       1.14     rmind 
     41       1.14     rmind #define	REMOTE_IP1	"192.0.2.101"
     42       1.14     rmind #define	REMOTE_IP2	"192.0.2.102"
     43       1.14     rmind #define	REMOTE_IP3	"192.0.2.103"
     44  1.16.12.2  pgoyette #define	REMOTE_IP4	"192.0.2.104"
     45        1.9     rmind 
     46       1.15     rmind #define	LOCAL_IP6	"fd01:203:405:1::1234"
     47       1.15     rmind #define	REMOTE_IP6	"2001:db8:fefe::1010"
     48       1.15     rmind #define	EXPECTED_IP6	"2001:db8:1:d550::1234"
     49       1.15     rmind 
     50  1.16.12.2  pgoyette #define	NET_A_IP1	"10.100.7.126"
     51  1.16.12.2  pgoyette #define	NET_B_IP1	"10.255.7.126"
     52  1.16.12.2  pgoyette 
     53       1.16  christos #if defined(_NPF_STANDALONE)
     54       1.16  christos 
     55       1.16  christos #define	MLEN		512
     56       1.16  christos 
     57       1.16  christos struct mbuf {
     58       1.16  christos 	unsigned	m_flags;
     59       1.16  christos 	int		m_type;
     60       1.16  christos 	unsigned	m_len;
     61       1.16  christos 	void *		m_next;
     62       1.16  christos 	struct {
     63       1.16  christos 		int	len;
     64       1.16  christos 	} m_pkthdr;
     65  1.16.12.2  pgoyette 	void *		m_data;
     66  1.16.12.2  pgoyette 	unsigned char	m_data0[MLEN];
     67       1.16  christos };
     68       1.16  christos 
     69       1.16  christos #define	MT_FREE			0
     70       1.16  christos #define	M_UNWRITABLE(m, l)	false
     71       1.16  christos #define	M_NOWAIT		0x00001
     72       1.16  christos #define M_PKTHDR		0x00002
     73       1.16  christos 
     74       1.16  christos #define	m_get(x, y)		npfkern_m_get(0, MLEN)
     75       1.16  christos #define	m_gethdr(x, y)		npfkern_m_get(M_PKTHDR, MLEN)
     76       1.16  christos #define	m_length(m)		npfkern_m_length(m)
     77       1.16  christos #define	m_freem(m)		npfkern_m_freem(m)
     78       1.16  christos #define	mtod(m, t)		((t)((m)->m_data))
     79       1.16  christos 
     80       1.16  christos #endif
     81       1.16  christos 
     82       1.16  christos const npf_mbufops_t	npftest_mbufops;
     83       1.16  christos 
     84       1.16  christos struct mbuf *	npfkern_m_get(int, int);
     85       1.16  christos size_t		npfkern_m_length(const struct mbuf *);
     86       1.16  christos void		npfkern_m_freem(struct mbuf *);
     87       1.16  christos 
     88       1.15     rmind void		npf_test_init(int (*)(int, const char *, void *),
     89       1.15     rmind 		    const char *(*)(int, const void *, char *, socklen_t),
     90       1.15     rmind 		    long (*)(void));
     91       1.16  christos void		npf_test_fini(void);
     92  1.16.12.1  pgoyette int		npf_test_load(const void *, size_t, bool);
     93       1.11     rmind ifnet_t *	npf_test_addif(const char *, bool, bool);
     94       1.11     rmind ifnet_t *	npf_test_getif(const char *);
     95        1.9     rmind 
     96       1.11     rmind int		npf_test_statetrack(const void *, size_t, ifnet_t *,
     97        1.2     rmind 		    bool, int64_t *);
     98       1.10     rmind void		npf_test_conc(bool, unsigned);
     99        1.2     rmind 
    100        1.2     rmind struct mbuf *	mbuf_getwithdata(const void *, size_t);
    101        1.1     rmind struct mbuf *	mbuf_construct_ether(int);
    102        1.1     rmind struct mbuf *	mbuf_construct(int);
    103        1.4     rmind struct mbuf *	mbuf_construct6(int);
    104        1.1     rmind void *		mbuf_return_hdrs(struct mbuf *, bool, struct ip **);
    105       1.15     rmind void *		mbuf_return_hdrs6(struct mbuf *, struct ip6_hdr **);
    106        1.1     rmind void		mbuf_icmp_append(struct mbuf *, struct mbuf *);
    107        1.1     rmind 
    108        1.1     rmind bool		npf_nbuf_test(bool);
    109        1.7     rmind bool		npf_bpf_test(bool);
    110       1.13     rmind bool		npf_table_test(bool, void *, size_t);
    111        1.3     rmind bool		npf_state_test(bool);
    112        1.1     rmind 
    113        1.5     rmind bool		npf_rule_test(bool);
    114  1.16.12.2  pgoyette bool		npf_conn_test(bool);
    115        1.5     rmind bool		npf_nat_test(bool);
    116        1.5     rmind 
    117       1.15     rmind int		npf_inet_pton(int, const char *, void *);
    118       1.15     rmind const char *	npf_inet_ntop(int, const void *, char *, socklen_t);
    119       1.15     rmind 
    120        1.1     rmind #endif
    121