summaryrefslogtreecommitdiff
path: root/sys/ipkdb/ipkdb.h
blob: e152caebb439c435259f104513cf7f56f087c994 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/*	$NetBSD: ipkdb.h,v 1.6 2009/03/14 14:46:09 dsl Exp $	*/

/*
 * Copyright (C) 1993-2000 Wolfgang Solfrank.
 * Copyright (C) 1993-2000 TooLs GmbH.
 * All rights reserved.
 *
 * 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.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by TooLs GmbH.
 * 4. The name of TooLs GmbH may not be used to endorse or promote products
 *    derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY TOOLS GMBH ``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 TOOLS GMBH 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	_IPKDB_H
#define	_IPKDB_H

extern int ipkdbpanic;

#define	IPKDBPORT	1138	/* debugging port */

struct ipkdb_if {
	/* These fields are used by IPKDB itself: */
	u_int8_t	myenetaddr[6];	/* to be filled by the driver */
	u_int8_t	myinetaddr[4];
	u_int8_t	hisenetaddr[6];
	u_int8_t	hisinetaddr[4];
	u_int16_t	hisport;
	u_char		pkt[1500];
	int		pktlen;
	u_int32_t	seq;
	u_int32_t	id;
	int		mtu;
	u_char		ass[1500];
	u_int8_t	assbit[1500/8/8 + 1];
	u_int16_t	asslen;
	u_int8_t	flags;		/* driver marks IPKDB_MYHW here */
	/* Data from here on is to be filled by the driver */
	const char	*name;
	void		*port;
	void		(*start)(struct ipkdb_if *);
	void		(*leave)(struct ipkdb_if *);
	int		(*receive)(struct ipkdb_if *, u_char *, int);
	void		(*send)(struct ipkdb_if *, u_char *, int);
};

/* flags: */
#define	IPKDB_MYHW	0x01
#define	IPKDB_MYIP	0x02
#define	IPKDB_HISHW	0x04
#define	IPKDB_HISIP	0x08
#define	IPKDB_CONNECTED	0x10

/*
 * Interface routines, to be called by machine dependent code.
 */
extern void ipkdb_init(void);
extern void ipkdb_connect(int);
extern void ipkdb_panic(void);
extern int ipkdbcmds(void);
/* Return values from ipkdbcmds: */
#define	IPKDB_CMD_RUN	0
#define	IPKDB_CMD_STEP	1
#define	IPKDB_CMD_EXIT	2

/* To be called by udp_input on receipt of a possible debugging packet */
struct in_addr;
struct mbuf;
extern int checkipkdb(struct in_addr *, u_short, u_short,
			struct mbuf *, int, int);

/*
 * Interface routines, to be called by ipkdb itself.
 */
extern int ipkdbifinit(struct ipkdb_if *);

/*
 * Utilities (used to avoid calling system routines during debugging).
 */
extern void ipkdbcopy(const void *, void *, int);
extern void ipkdbzero(void *, int);
extern int ipkdbcmp(void *, void *, int);

/*
 * Machine dependent routines for IPKDB.
 */
extern void ipkdbinit(void);
extern void ipkdb_trap(void);
extern int ipkdb_poll(void);

extern int ipkdbif_init(struct ipkdb_if *);

extern int ipkdbfbyte(u_char *);
extern int ipkdbsbyte(u_char *, int);

#endif	/* _IPKDB_H */