tcp_debug.c revision 1.20 1 /* $NetBSD: tcp_debug.c,v 1.20 2005/01/13 19:09:40 drochner Exp $ */
2
3 /*
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
18 *
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 * SUCH DAMAGE.
30 */
31
32 /*
33 * Copyright (c) 1982, 1986, 1993
34 * The Regents of the University of California. All rights reserved.
35 *
36 * Redistribution and use in source and binary forms, with or without
37 * modification, are permitted provided that the following conditions
38 * are met:
39 * 1. Redistributions of source code must retain the above copyright
40 * notice, this list of conditions and the following disclaimer.
41 * 2. Redistributions in binary form must reproduce the above copyright
42 * notice, this list of conditions and the following disclaimer in the
43 * documentation and/or other materials provided with the distribution.
44 * 3. Neither the name of the University nor the names of its contributors
45 * may be used to endorse or promote products derived from this software
46 * without specific prior written permission.
47 *
48 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
49 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
50 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
51 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
52 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
59 *
60 * @(#)tcp_debug.c 8.1 (Berkeley) 6/10/93
61 */
62
63 #include <sys/cdefs.h>
64 __KERNEL_RCSID(0, "$NetBSD: tcp_debug.c,v 1.20 2005/01/13 19:09:40 drochner Exp $");
65
66 #include "opt_inet.h"
67 #include "opt_tcp_debug.h"
68
69 /* load symbolic names */
70 #define PRUREQUESTS
71 #define TCPSTATES
72 #define TCPTIMERS
73 #define TANAMES
74
75 #include <sys/param.h>
76 #include <sys/systm.h>
77 #include <sys/mbuf.h>
78 #include <sys/socket.h>
79 #include <sys/socketvar.h>
80 #include <sys/protosw.h>
81 #include <sys/errno.h>
82
83 #include <net/route.h>
84 #include <net/if.h>
85
86 #include <netinet/in.h>
87 #include <netinet/in_systm.h>
88 #include <netinet/ip.h>
89 #include <netinet/in_pcb.h>
90 #include <netinet/ip_var.h>
91
92 #ifdef INET6
93 #ifndef INET
94 #include <netinet/in.h>
95 #endif
96 #include <netinet/ip6.h>
97 #endif
98
99 #include <netinet/tcp.h>
100 #include <netinet/tcp_fsm.h>
101 #include <netinet/tcp_seq.h>
102 #include <netinet/tcp_timer.h>
103 #include <netinet/tcp_var.h>
104 #include <netinet/tcpip.h>
105 #include <netinet/tcp_debug.h>
106
107 struct tcp_debug tcp_debug[TCP_NDEBUG];
108 int tcp_debx;
109 int tcpconsdebug = 0;
110 /*
111 * Tcp debug routines
112 */
113 void
114 tcp_trace(act, ostate, tp, m, req)
115 short act, ostate;
116 struct tcpcb *tp;
117 struct mbuf *m;
118 int req;
119 {
120 tcp_seq seq, ack;
121 int len, flags;
122 struct tcphdr *th;
123 struct tcp_debug *td = &tcp_debug[tcp_debx++];
124
125 if (tcp_debx == TCP_NDEBUG)
126 tcp_debx = 0;
127 td->td_time = iptime();
128 td->td_act = act;
129 td->td_ostate = ostate;
130 td->td_tcb = (caddr_t)tp;
131 if (tp)
132 td->td_cb = *tp;
133 else
134 bzero((caddr_t)&td->td_cb, sizeof (*tp));
135 td->td_family = tp->t_family;
136 bzero((caddr_t)&td->td_ti, sizeof (td->td_ti));
137 #ifdef INET6
138 bzero((caddr_t)&td->td_ti6, sizeof (td->td_ti6));
139 #endif
140 th = NULL;
141 if (m) {
142 struct ip *ip;
143 ip = mtod(m, struct ip *);
144 switch (ip->ip_v) {
145 case 4:
146 if (m->m_len < sizeof(td->td_ti))
147 break;
148 bcopy(mtod(m, caddr_t), &td->td_ti, sizeof(td->td_ti));
149 th = (struct tcphdr *)((caddr_t)&td->td_ti + sizeof(struct ip));
150 break;
151 #ifdef INET6
152 case 6:
153 if (m->m_len < sizeof(td->td_ti6))
154 break;
155 bcopy(mtod(m, caddr_t), &td->td_ti6,
156 sizeof(td->td_ti6));
157 th = (struct tcphdr *)((caddr_t)&td->td_ti6 + sizeof(struct ip6_hdr));
158 break;
159 #endif
160 }
161 }
162 td->td_req = req;
163 if (tcpconsdebug == 0)
164 return;
165 if (tp)
166 printf("%p %s:", tp, tcpstates[ostate]);
167 else
168 printf("???????? ");
169 printf("%s ", tanames[act]);
170 switch (act) {
171
172 case TA_INPUT:
173 case TA_OUTPUT:
174 case TA_DROP:
175 if (th == 0)
176 break;
177 seq = th->th_seq;
178 ack = th->th_ack;
179 len = m->m_pkthdr.len;
180 if (act == TA_OUTPUT) {
181 seq = ntohl(seq);
182 ack = ntohl(ack);
183 len = ntohs((u_int16_t)len);
184 }
185 if (act == TA_OUTPUT)
186 len -= sizeof (struct tcphdr);
187 if (len)
188 printf("[%x..%x)", seq, seq+len);
189 else
190 printf("%x", seq);
191 printf("@%x, urp=%x", ack, th->th_urp);
192 flags = th->th_flags;
193 if (flags) {
194 #ifndef lint
195 char *cp = "<";
196 #define pf(f) { if (th->th_flags&__CONCAT(TH_,f)) { printf("%s%s", cp, "f"); cp = ","; } }
197 pf(SYN); pf(ACK); pf(FIN); pf(RST); pf(PUSH); pf(URG);
198 #endif
199 printf(">");
200 }
201 break;
202
203 case TA_USER:
204 printf("%s", prurequests[req&0xff]);
205 if ((req & 0xff) == PRU_SLOWTIMO)
206 printf("<%s>", tcptimers[req>>8]);
207 break;
208 }
209 if (tp)
210 printf(" -> %s", tcpstates[tp->t_state]);
211 /* print out internal state of tp !?! */
212 printf("\n");
213 if (tp == 0)
214 return;
215 printf("\trcv_(nxt,wnd,up) (%x,%lx,%x) snd_(una,nxt,max) (%x,%x,%x)\n",
216 tp->rcv_nxt, tp->rcv_wnd, tp->rcv_up, tp->snd_una, tp->snd_nxt,
217 tp->snd_max);
218 printf("\tsnd_(wl1,wl2,wnd) (%x,%x,%lx)\n",
219 tp->snd_wl1, tp->snd_wl2, tp->snd_wnd);
220 }
221