5 * Copyright (c) 1996-1999 Whistle Communications, Inc.
8 * Subject to the following obligations and disclaimer of warranty, use and
9 * redistribution of this software, in source or object code forms, with or
10 * without modifications are expressly permitted by Whistle Communications;
11 * provided, however, that:
12 * 1. Any and all reproductions of the source or object code must include the
13 * copyright notice above and the following disclaimer of warranties; and
14 * 2. No rights are granted, in any manner or form, to use Whistle
15 * Communications, Inc. trademarks, including the mark "WHISTLE
16 * COMMUNICATIONS" on advertising, endorsements, or otherwise except as
17 * such appears in the above copyright notice or in the software.
19 * THIS SOFTWARE IS BEING PROVIDED BY WHISTLE COMMUNICATIONS "AS IS", AND
20 * TO THE MAXIMUM EXTENT PERMITTED BY LAW, WHISTLE COMMUNICATIONS MAKES NO
21 * REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, REGARDING THIS SOFTWARE,
22 * INCLUDING WITHOUT LIMITATION, ANY AND ALL IMPLIED WARRANTIES OF
23 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR NON-INFRINGEMENT.
24 * WHISTLE COMMUNICATIONS DOES NOT WARRANT, GUARANTEE, OR MAKE ANY
25 * REPRESENTATIONS REGARDING THE USE OF, OR THE RESULTS OF THE USE OF THIS
26 * SOFTWARE IN TERMS OF ITS CORRECTNESS, ACCURACY, RELIABILITY OR OTHERWISE.
27 * IN NO EVENT SHALL WHISTLE COMMUNICATIONS BE LIABLE FOR ANY DAMAGES
28 * RESULTING FROM OR ARISING OUT OF ANY USE OF THIS SOFTWARE, INCLUDING
29 * WITHOUT LIMITATION, ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
30 * PUNITIVE, OR CONSEQUENTIAL DAMAGES, PROCUREMENT OF SUBSTITUTE GOODS OR
31 * SERVICES, LOSS OF USE, DATA OR PROFITS, HOWEVER CAUSED AND UNDER ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF WHISTLE COMMUNICATIONS IS ADVISED OF THE POSSIBILITY
37 * Author: Archie Cobbs <archie@whistle.com>
39 * $FreeBSD: src/lib/libnetgraph/debug.c,v 1.5.2.1 2000/05/01 18:09:54 archie Exp $
40 * $DragonFly: src/lib/libnetgraph/debug.c,v 1.4 2007/06/17 20:33:14 swildner Exp $
41 * $Whistle: debug.c,v 1.24 1999/01/24 01:15:33 archie Exp $
44 #include <sys/types.h>
46 #include <sys/ioctl.h>
50 #include <netinet/in.h>
51 #include <net/ethernet.h>
54 #include <netgraph/ng_message.h>
55 #include <netgraph/socket/ng_socket.h>
60 #include <netgraph/UI/ng_UI.h>
61 #include <netgraph/async/ng_async.h>
62 #include <netgraph/bpf/ng_bpf.h>
63 #include <netgraph/bridge/ng_bridge.h>
64 #include <netgraph/cisco/ng_cisco.h>
65 #include <netgraph/echo/ng_echo.h>
66 #include <netgraph/eiface/ng_eiface.h>
67 #include <netgraph/etf/ng_etf.h>
68 #include <netgraph/ether/ng_ether.h>
69 #include <netgraph/frame_relay/ng_frame_relay.h>
70 #include <netgraph/hole/ng_hole.h>
71 #include <netgraph/iface/ng_iface.h>
72 #include <netgraph/ksocket/ng_ksocket.h>
73 #include <netgraph/l2tp/ng_l2tp.h>
74 #include <netgraph/lmi/ng_lmi.h>
75 #include <netgraph/mppc/ng_mppc.h>
76 #include <netgraph/one2many/ng_one2many.h>
77 #include <netgraph/ppp/ng_ppp.h>
78 #include <netgraph/pppoe/ng_pppoe.h>
79 #include <netgraph/pptpgre/ng_pptpgre.h>
80 #include <netgraph/rfc1490/ng_rfc1490.h>
81 #include <netgraph/socket/ng_socket.h>
82 #include <netgraph/tee/ng_tee.h>
83 #include <netgraph/tty/ng_tty.h>
84 #include <netgraph/vjc/ng_vjc.h>
86 #include <machine/../isa/df_def.h>
87 #include <machine/../isa/if_wfra.h>
88 #include <machine/../isa/ipac.h>
89 #include <netgraph/ng_df.h>
90 #include <netgraph/ng_ipac.h>
91 #include <netgraph/ng_tn.h>
94 /* Global debug level */
95 int _gNgDebugLevel
= 0;
97 /* Debug printing functions */
98 void (*_NgLog
) (const char *fmt
,...) = warn
;
99 void (*_NgLogx
) (const char *fmt
,...) = warnx
;
101 /* Internal functions */
102 static const char *NgCookie(int cookie
);
104 /* Known typecookie list */
110 #define COOKIE(c) { NGM_ ## c ## _COOKIE, #c }
112 /* List of known cookies */
113 static const struct ng_cookie cookies
[] = {
150 * Set debug level, ie, verbosity, if "level" is non-negative.
151 * Returns old debug level.
154 NgSetDebug(int level
)
156 int old
= _gNgDebugLevel
;
160 _gNgDebugLevel
= level
;
165 * Set debug logging functions.
168 NgSetErrLog(void (*log
) (const char *fmt
,...),
169 void (*logx
) (const char *fmt
,...))
176 * Display a netgraph sockaddr
179 _NgDebugSockaddr(const struct sockaddr_ng
*sg
)
181 NGLOGX("SOCKADDR: { fam=%d len=%d addr=\"%s\" }",
182 sg
->sg_family
, sg
->sg_len
, sg
->sg_data
);
185 #define ARGS_BUFSIZE 2048
186 #define RECURSIVE_DEBUG_ADJUST 4
189 * Display a negraph message
192 _NgDebugMsg(const struct ng_mesg
*msg
, const char *path
)
194 u_char buf
[2 * sizeof(struct ng_mesg
) + ARGS_BUFSIZE
];
195 struct ng_mesg
*const req
= (struct ng_mesg
*)buf
;
196 struct ng_mesg
*const bin
= (struct ng_mesg
*)req
->data
;
197 int arglen
, csock
= -1;
199 /* Display header stuff */
201 NGLOGX(" vers %d", msg
->header
.version
);
202 NGLOGX(" arglen %d", msg
->header
.arglen
);
203 NGLOGX(" flags %ld", msg
->header
.flags
);
204 NGLOGX(" token %lu", (u_long
)msg
->header
.token
);
205 NGLOGX(" cookie %s (%d)",
206 NgCookie(msg
->header
.typecookie
), msg
->header
.typecookie
);
208 /* At lower debugging levels, skip ASCII translation */
209 if (_gNgDebugLevel
<= 2)
212 /* If path is not absolute, don't bother trying to use relative
213 address on a different socket for the ASCII translation */
214 if (strchr(path
, ':') == NULL
)
217 /* Get a temporary socket */
218 if (NgMkSockNode(NULL
, &csock
, NULL
) < 0)
221 /* Copy binary message into request message payload */
222 arglen
= msg
->header
.arglen
;
223 if (arglen
> ARGS_BUFSIZE
)
224 arglen
= ARGS_BUFSIZE
;
225 memcpy(bin
, msg
, sizeof(*msg
) + arglen
);
226 bin
->header
.arglen
= arglen
;
228 /* Lower debugging to avoid infinite recursion */
229 _gNgDebugLevel
-= RECURSIVE_DEBUG_ADJUST
;
231 /* Ask the node to translate the binary message to ASCII for us */
232 if (NgSendMsg(csock
, path
, NGM_GENERIC_COOKIE
,
233 NGM_BINARY2ASCII
, bin
, sizeof(*bin
) + bin
->header
.arglen
) < 0) {
234 _gNgDebugLevel
+= RECURSIVE_DEBUG_ADJUST
;
237 if (NgRecvMsg(csock
, req
, sizeof(buf
), NULL
) < 0) {
238 _gNgDebugLevel
+= RECURSIVE_DEBUG_ADJUST
;
242 /* Restore debugging level */
243 _gNgDebugLevel
+= RECURSIVE_DEBUG_ADJUST
;
245 /* Display command string and arguments */
246 NGLOGX(" cmd %s (%d)", bin
->header
.cmdstr
, bin
->header
.cmd
);
247 NGLOGX(" args %s", bin
->data
);
251 /* Just display binary version */
252 NGLOGX(" [error decoding message: %s]", strerror(errno
));
254 NGLOGX(" cmd %d", msg
->header
.cmd
);
255 NGLOGX(" args (%d bytes)", msg
->header
.arglen
);
256 _NgDebugBytes(msg
->data
, msg
->header
.arglen
);
264 * Return the name of the node type corresponding to the cookie
271 for (k
= 0; cookies
[k
].cookie
!= 0; k
++) {
272 if (cookies
[k
].cookie
== cookie
)
273 return cookies
[k
].type
;
282 _NgDebugBytes(const u_char
*ptr
, int len
)
289 for (count
= 0; count
< len
; ptr
+= BYPERLINE
, count
+= BYPERLINE
) {
292 snprintf(buf
, sizeof(buf
), "%04x: ", count
);
293 for (k
= 0; k
< BYPERLINE
; k
++, count
++)
295 snprintf(buf
+ strlen(buf
),
296 sizeof(buf
) - strlen(buf
), "%02x ", ptr
[k
]);
298 snprintf(buf
+ strlen(buf
),
299 sizeof(buf
) - strlen(buf
), " ");
300 snprintf(buf
+ strlen(buf
), sizeof(buf
) - strlen(buf
), " ");
304 for (k
= 0; k
< BYPERLINE
; k
++, count
++)
306 snprintf(buf
+ strlen(buf
),
307 sizeof(buf
) - strlen(buf
),
308 "%c", isprint(ptr
[k
]) ? ptr
[k
] : '.');
310 snprintf(buf
+ strlen(buf
),
311 sizeof(buf
) - strlen(buf
), " ");