Clean up routing code before I parallelize it.
[dragonfly.git] / sys / netproto / ns / spp_debug.c
1 /*
2  * Copyright (c) 1984, 1985, 1986, 1987, 1993
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  * 3. All advertising materials mentioning features or use of this software
14  *    must display the following acknowledgement:
15  *      This product includes software developed by the University of
16  *      California, Berkeley and its contributors.
17  * 4. Neither the name of the University nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  *
33  *      @(#)spp_debug.c 8.1 (Berkeley) 6/10/93
34  * $FreeBSD: src/sys/netns/spp_debug.c,v 1.10 1999/08/28 00:49:52 peter Exp $
35  * $DragonFly: src/sys/netproto/ns/spp_debug.c,v 1.5 2004/02/16 20:37:20 dillon Exp $
36  */
37
38 #include "opt_inet.h"
39
40 #include <sys/param.h>
41 #include <sys/systm.h>
42 #include <sys/mbuf.h>
43 #include <sys/socket.h>
44 #include <sys/socketvar.h>
45 #include <sys/protosw.h>
46 #include <sys/errno.h>
47
48 #include <net/route.h>
49 #include <net/if.h>
50 #include <netinet/tcp_fsm.h>
51
52 #include "ns.h"
53 #include "ns_pcb.h"
54 #include "idp.h"
55 #include "idp_var.h"
56 #include "sp.h"
57 #include "spidp.h"
58 #define SPPTIMERS
59 #include "spp_timer.h"
60 #include "spp_var.h"
61 #define SANAMES
62 #include "spp_debug.h"
63
64 int     sppconsdebug = 0;
65 struct   spp_debug spp_debug[SPP_NDEBUG];
66 int      spp_debx;
67
68 /*
69  * spp debug routines
70  */
71 void
72 spp_trace(act, ostate, sp, si, req)
73         short act;
74         u_char ostate;
75         struct sppcb *sp;
76         struct spidp *si;
77         int req;
78 {
79 #ifdef INET
80 #ifdef TCPDEBUG
81         u_short seq, ack, len, alo;
82         unsigned long iptime();
83         int flags;
84         struct spp_debug *sd = &spp_debug[spp_debx++];
85         extern char *prurequests[];
86         extern char *sanames[];
87         extern char *tcpstates[];
88         extern char *spptimers[];
89
90         if (spp_debx == SPP_NDEBUG)
91                 spp_debx = 0;
92         sd->sd_time = iptime();
93         sd->sd_act = act;
94         sd->sd_ostate = ostate;
95         sd->sd_cb = (caddr_t)sp;
96         if (sp)
97                 sd->sd_sp = *sp;
98         else
99                 bzero((caddr_t)&sd->sd_sp, sizeof (*sp));
100         if (si)
101                 sd->sd_si = *si;
102         else
103                 bzero((caddr_t)&sd->sd_si, sizeof (*si));
104         sd->sd_req = req;
105         if (sppconsdebug == 0)
106                 return;
107         if (ostate >= TCP_NSTATES) ostate = 0;
108         if (act >= SA_DROP) act = SA_DROP;
109         if (sp)
110                 printf("%x %s:", sp, tcpstates[ostate]);
111         else
112                 printf("???????? ");
113         printf("%s ", sanames[act]);
114         switch (act) {
115
116         case SA_RESPOND:
117         case SA_INPUT:
118         case SA_OUTPUT:
119         case SA_DROP:
120                 if (si == 0)
121                         break;
122                 seq = si->si_seq;
123                 ack = si->si_ack;
124                 alo = si->si_alo;
125                 len = si->si_len;
126                 if (act == SA_OUTPUT) {
127                         seq = ntohs(seq);
128                         ack = ntohs(ack);
129                         alo = ntohs(alo);
130                         len = ntohs(len);
131                 }
132 #ifndef lint
133 #define p1(f)  { printf("%s = %x, ", "f", f); }
134                 p1(seq); p1(ack); p1(alo); p1(len);
135 #endif
136                 flags = si->si_cc;
137                 if (flags) {
138                         char *cp = "<";
139 #ifndef lint
140 #define pf(f) { if (flags&SP_/**/f) { printf("%s%s", cp, "f"); cp = ","; } }
141                         pf(SP); pf(SA); pf(OB); pf(EM);
142 #else
143                         cp = cp;
144 #endif
145                         printf(">");
146                 }
147 #ifndef lint
148 #define p2(f)  { printf("%s = %x, ", "f", si->si_/**/f); }
149                 p2(sid);p2(did);p2(dt);p2(pt);
150 #endif
151                 ns_printhost(&si->si_sna);
152                 ns_printhost(&si->si_dna);
153
154                 if (act==SA_RESPOND) {
155                         printf("idp_len = %x, ",
156                                 ((struct idp *)si)->idp_len);
157                 }
158                 break;
159
160         case SA_USER:
161                 printf("%s", prurequests[req&0xff]);
162                 if ((req & 0xff) == PRU_SLOWTIMO)
163                         printf("<%s>", spptimers[req>>8]);
164                 break;
165         }
166         if (sp)
167                 printf(" -> %s", tcpstates[sp->s_state]);
168         /* print out internal state of sp !?! */
169         printf("\n");
170         if (sp == 0)
171                 return;
172 #ifndef lint
173 #define p3(f)  { printf("%s = %x, ", "f", sp->s_/**/f); }
174         printf("\t"); p3(rack);p3(ralo);p3(smax);p3(flags); printf("\n");
175 #endif
176 #endif
177 #endif
178 }