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