2 * Copyright (c) 1983, 1988, 1993
3 * The Regents of the University of California. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by the University of
18 * California, Berkeley and its contributors.
19 * 4. Neither the name of the University nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 /* "@(#)ns.c 8.1 (Berkeley) 6/6/93" */
40 #include <sys/param.h>
41 #include <sys/socket.h>
42 #include <sys/socketvar.h>
44 #include <sys/protosw.h>
46 #include <net/route.h>
49 #include <netinet/tcp_fsm.h>
52 #include <netns/ns_pcb.h>
53 #include <netns/idp.h>
54 #include <netns/idp_var.h>
55 #include <netns/ns_error.h>
57 #include <netns/spidp.h>
58 #include <netns/spp_timer.h>
59 #include <netns/spp_var.h>
61 #include <netns/spp_debug.h>
73 static char *ns_prpr
__P((struct ns_addr
*));
74 static void ns_erputil
__P((int, int));
79 * Print a summary of connections related to a Network Systems
80 * protocol. For SPP, also give state of connection.
81 * Listening processes (aflag) are suppressed unless the
82 * -a (all) flag is specified.
91 register struct nspcb
*prev
, *next
;
96 isspp
= strcmp(name
, "spp") == 0;
97 kread(off
, (char *)&cb
, sizeof (struct nspcb
));
99 prev
= (struct nspcb
*)off
;
100 if (nspcb
.nsp_next
== (struct nspcb
*)off
)
102 for (;nspcb
.nsp_next
!= (struct nspcb
*)off
; prev
= next
) {
105 next
= nspcb
.nsp_next
;
106 kread((u_long
)next
, (char *)&nspcb
, sizeof (nspcb
));
107 if (nspcb
.nsp_prev
!= prev
) {
111 if (!aflag
&& ns_nullhost(nspcb
.nsp_faddr
) ) {
114 kread((u_long
)nspcb
.nsp_socket
,
115 (char *)&sockb
, sizeof (sockb
));
116 ppcb
= (u_long
) nspcb
.nsp_pcb
;
119 kread(ppcb
, (char *)&sppcb
, sizeof (sppcb
));
124 printf("Active NS connections");
126 printf(" (including servers)");
129 printf("%-8.8s ", "PCB");
131 "%-5.5s %-6.6s %-6.6s %-18.18s %-18.18s %s\n" :
132 "%-5.5s %-6.6s %-6.6s %-22.22s %-22.22s %s\n",
133 "Proto", "Recv-Q", "Send-Q",
134 "Local Address", "Foreign Address", "(state)");
138 printf("%8x ", ppcb
);
139 printf("%-5.5s %6d %6d ", name
, sockb
.so_rcv
.sb_cc
,
141 printf(" %-22.22s", ns_prpr(&nspcb
.nsp_laddr
));
142 printf(" %-22.22s", ns_prpr(&nspcb
.nsp_faddr
));
144 extern char *tcpstates
[];
145 if (sppcb
.s_state
>= TCP_NSTATES
)
146 printf(" %d", sppcb
.s_state
);
148 printf(" %s", tcpstates
[sppcb
.s_state
]);
155 ((x) ? printf("\t%d %s%s%s -- %s\n",x,y,plural(x),z,"x") : 0)
158 * Dump SPP statistics structure.
165 struct spp_istat spp_istat
;
166 #define sppstat spp_istat.newstats
170 kread(off
, (char *)&spp_istat
, sizeof (spp_istat
));
171 printf("%s:\n", name
);
172 ANY(spp_istat
.nonucn
, "connection", " dropped due to no new sockets ");
173 ANY(spp_istat
.gonawy
, "connection", " terminated due to our end dying");
174 ANY(spp_istat
.nonucn
, "connection",
175 " dropped due to inability to connect");
176 ANY(spp_istat
.noconn
, "connection",
177 " dropped due to inability to connect");
178 ANY(spp_istat
.notme
, "connection",
179 " incompleted due to mismatched id's");
180 ANY(spp_istat
.wrncon
, "connection", " dropped due to mismatched id's");
181 ANY(spp_istat
.bdreas
, "packet", " dropped out of sequence");
182 ANY(spp_istat
.lstdup
, "packet", " duplicating the highest packet");
183 ANY(spp_istat
.notyet
, "packet", " refused as exceeding allocation");
184 ANY(sppstat
.spps_connattempt
, "connection", " initiated");
185 ANY(sppstat
.spps_accepts
, "connection", " accepted");
186 ANY(sppstat
.spps_connects
, "connection", " established");
187 ANY(sppstat
.spps_drops
, "connection", " dropped");
188 ANY(sppstat
.spps_conndrops
, "embryonic connection", " dropped");
189 ANY(sppstat
.spps_closed
, "connection", " closed (includes drops)");
190 ANY(sppstat
.spps_segstimed
, "packet", " where we tried to get rtt");
191 ANY(sppstat
.spps_rttupdated
, "time", " we got rtt");
192 ANY(sppstat
.spps_delack
, "delayed ack", " sent");
193 ANY(sppstat
.spps_timeoutdrop
, "connection", " dropped in rxmt timeout");
194 ANY(sppstat
.spps_rexmttimeo
, "retransmit timeout", "");
195 ANY(sppstat
.spps_persisttimeo
, "persist timeout", "");
196 ANY(sppstat
.spps_keeptimeo
, "keepalive timeout", "");
197 ANY(sppstat
.spps_keepprobe
, "keepalive probe", " sent");
198 ANY(sppstat
.spps_keepdrops
, "connection", " dropped in keepalive");
199 ANY(sppstat
.spps_sndtotal
, "total packet", " sent");
200 ANY(sppstat
.spps_sndpack
, "data packet", " sent");
201 ANY(sppstat
.spps_sndbyte
, "data byte", " sent");
202 ANY(sppstat
.spps_sndrexmitpack
, "data packet", " retransmitted");
203 ANY(sppstat
.spps_sndrexmitbyte
, "data byte", " retransmitted");
204 ANY(sppstat
.spps_sndacks
, "ack-only packet", " sent");
205 ANY(sppstat
.spps_sndprobe
, "window probe", " sent");
206 ANY(sppstat
.spps_sndurg
, "packet", " sent with URG only");
207 ANY(sppstat
.spps_sndwinup
, "window update-only packet", " sent");
208 ANY(sppstat
.spps_sndctrl
, "control (SYN|FIN|RST) packet", " sent");
209 ANY(sppstat
.spps_sndvoid
, "request", " to send a non-existant packet");
210 ANY(sppstat
.spps_rcvtotal
, "total packet", " received");
211 ANY(sppstat
.spps_rcvpack
, "packet", " received in sequence");
212 ANY(sppstat
.spps_rcvbyte
, "byte", " received in sequence");
213 ANY(sppstat
.spps_rcvbadsum
, "packet", " received with ccksum errs");
214 ANY(sppstat
.spps_rcvbadoff
, "packet", " received with bad offset");
215 ANY(sppstat
.spps_rcvshort
, "packet", " received too short");
216 ANY(sppstat
.spps_rcvduppack
, "duplicate-only packet", " received");
217 ANY(sppstat
.spps_rcvdupbyte
, "duplicate-only byte", " received");
218 ANY(sppstat
.spps_rcvpartduppack
, "packet", " with some duplicate data");
219 ANY(sppstat
.spps_rcvpartdupbyte
, "dup. byte", " in part-dup. packet");
220 ANY(sppstat
.spps_rcvoopack
, "out-of-order packet", " received");
221 ANY(sppstat
.spps_rcvoobyte
, "out-of-order byte", " received");
222 ANY(sppstat
.spps_rcvpackafterwin
, "packet", " with data after window");
223 ANY(sppstat
.spps_rcvbyteafterwin
, "byte", " rcvd after window");
224 ANY(sppstat
.spps_rcvafterclose
, "packet", " rcvd after 'close'");
225 ANY(sppstat
.spps_rcvwinprobe
, "rcvd window probe packet", "");
226 ANY(sppstat
.spps_rcvdupack
, "rcvd duplicate ack", "");
227 ANY(sppstat
.spps_rcvacktoomuch
, "rcvd ack", " for unsent data");
228 ANY(sppstat
.spps_rcvackpack
, "rcvd ack packet", "");
229 ANY(sppstat
.spps_rcvackbyte
, "byte", " acked by rcvd acks");
230 ANY(sppstat
.spps_rcvwinupd
, "rcvd window update packet", "");
233 #define ANY(x,y,z) ((x) ? printf("\t%d %s%s%s\n",x,y,plural(x),z) : 0)
236 * Dump IDP statistics structure.
243 struct idpstat idpstat
;
247 kread(off
, (char *)&idpstat
, sizeof (idpstat
));
248 printf("%s:\n", name
);
249 ANY(idpstat
.idps_toosmall
, "packet", " smaller than a header");
250 ANY(idpstat
.idps_tooshort
, "packet", " smaller than advertised");
251 ANY(idpstat
.idps_badsum
, "packet", " with bad checksums");
259 {0, "Unspecified Error", " at Destination"},
260 {1, "Bad Checksum", " at Destination"},
261 {2, "No Listener", " at Socket"},
262 {3, "Packet", " Refused due to lack of space at Destination"},
263 {01000, "Unspecified Error", " while gatewayed"},
264 {01001, "Bad Checksum", " while gatewayed"},
265 {01002, "Packet", " forwarded too many times"},
266 {01003, "Packet", " too large to be forwarded"},
271 * Dump NS Error statistics structure.
275 nserr_stats(off
, name
)
279 struct ns_errstat ns_errstat
;
281 register int histoprint
= 1;
286 kread(off
, (char *)&ns_errstat
, sizeof (ns_errstat
));
287 printf("NS error statistics:\n");
288 ANY(ns_errstat
.ns_es_error
, "call", " to ns_error");
289 ANY(ns_errstat
.ns_es_oldshort
, "error",
290 " ignored due to insufficient addressing");
291 ANY(ns_errstat
.ns_es_oldns_err
, "error request",
292 " in response to error packets");
293 ANY(ns_errstat
.ns_es_tooshort
, "error packet",
294 " received incomplete");
295 ANY(ns_errstat
.ns_es_badcode
, "error packet",
296 " received of unknown type");
297 for(j
= 0; j
< NS_ERR_MAX
; j
++) {
298 z
= ns_errstat
.ns_es_outhist
[j
];
299 if (z
&& histoprint
) {
300 printf("Output Error Histogram:\n");
303 ns_erputil(z
, ns_errstat
.ns_es_codes
[j
]);
307 for(j
= 0; j
< NS_ERR_MAX
; j
++) {
308 z
= ns_errstat
.ns_es_inhist
[j
];
309 if (z
&& histoprint
) {
310 printf("Input Error Histogram:\n");
313 ns_erputil(z
, ns_errstat
.ns_es_codes
[j
]);
326 if ((name
= ns_errnames
[j
].name
) == 0)
328 if (ns_errnames
[j
].code
== c
)
333 where
= "in transit";
335 where
= "at destination";
336 sprintf(codebuf
, "Unknown XNS error code 0%o", c
);
339 where
= ns_errnames
[j
].where
;
343 static struct sockaddr_ns ssns
= {AF_NS
};
349 struct sockaddr_ns
*sns
= &ssns
;
352 return(ns_print((struct sockaddr
*)sns
));