1 /* $KAME: key_debug.c,v 1.29 2001/08/16 14:25:41 itojun Exp $ */
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
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. 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.
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
37 #if defined(__FreeBSD__) && __FreeBSD__ >= 3
39 #include "opt_inet6.h"
40 #include "opt_ipsec.h"
47 #include <sys/types.h>
48 #include <sys/param.h>
50 #include <sys/systm.h>
52 #include <sys/queue.h>
54 #include <sys/socket.h>
56 #include <netinet/in.h>
57 #ifdef HAVE_NETINET6_IPSEC
58 # include <netinet6/ipsec.h>
60 # include <netinet/ipsec.h>
72 static void kdebug_sadb_prop
__P((struct sadb_ext
*));
73 static void kdebug_sadb_identity
__P((struct sadb_ext
*));
74 static void kdebug_sadb_supported
__P((struct sadb_ext
*));
75 static void kdebug_sadb_lifetime
__P((struct sadb_ext
*));
76 static void kdebug_sadb_sa
__P((struct sadb_ext
*));
77 static void kdebug_sadb_address
__P((struct sadb_ext
*));
78 static void kdebug_sadb_key
__P((struct sadb_ext
*));
79 static void kdebug_sadb_x_sa2
__P((struct sadb_ext
*));
80 static void kdebug_sadb_session_id
__P((struct sadb_ext
*));
81 static void kdebug_sadb_sastat
__P((struct sadb_ext
*));
82 static void kdebug_sadb_x_policy
__P((struct sadb_ext
*ext
));
83 static void kdebug_sockaddr
__P((struct sockaddr
*addr
));
85 #ifdef SADB_X_EXT_NAT_T_TYPE
86 static void kdebug_sadb_x_nat_t_type
__P((struct sadb_ext
*ext
));
87 static void kdebug_sadb_x_nat_t_port
__P((struct sadb_ext
*ext
));
91 static void kdebug_secreplay
__P((struct secreplay
*));
95 #define panic(param) { printf(param); exit(1); }
99 /* NOTE: host byte order */
101 /* %%%: about struct sadb_msg */
104 struct sadb_msg
*base
;
106 struct sadb_ext
*ext
;
111 panic("kdebug_sadb: NULL pointer was passed.\n");
113 printf("sadb_msg{ version=%u type=%u errno=%u satype=%u\n",
114 base
->sadb_msg_version
, base
->sadb_msg_type
,
115 base
->sadb_msg_errno
, base
->sadb_msg_satype
);
116 printf(" len=%u reserved=%u seq=%u pid=%u\n",
117 base
->sadb_msg_len
, base
->sadb_msg_reserved
,
118 base
->sadb_msg_seq
, base
->sadb_msg_pid
);
120 tlen
= PFKEY_UNUNIT64(base
->sadb_msg_len
) - sizeof(struct sadb_msg
);
121 ext
= (void *)((caddr_t
)(void *)base
+ sizeof(struct sadb_msg
));
124 printf("sadb_ext{ len=%u type=%u }\n",
125 ext
->sadb_ext_len
, ext
->sadb_ext_type
);
127 if (ext
->sadb_ext_len
== 0) {
128 printf("kdebug_sadb: invalid ext_len=0 was passed.\n");
131 if (ext
->sadb_ext_len
> tlen
) {
132 printf("kdebug_sadb: ext_len exceeds end of buffer.\n");
136 switch (ext
->sadb_ext_type
) {
140 case SADB_EXT_LIFETIME_CURRENT
:
141 case SADB_EXT_LIFETIME_HARD
:
142 case SADB_EXT_LIFETIME_SOFT
:
143 kdebug_sadb_lifetime(ext
);
145 case SADB_EXT_ADDRESS_SRC
:
146 case SADB_EXT_ADDRESS_DST
:
147 case SADB_EXT_ADDRESS_PROXY
:
148 kdebug_sadb_address(ext
);
150 case SADB_EXT_KEY_AUTH
:
151 case SADB_EXT_KEY_ENCRYPT
:
152 kdebug_sadb_key(ext
);
154 case SADB_EXT_IDENTITY_SRC
:
155 case SADB_EXT_IDENTITY_DST
:
156 kdebug_sadb_identity(ext
);
158 case SADB_EXT_SENSITIVITY
:
160 case SADB_EXT_PROPOSAL
:
161 kdebug_sadb_prop(ext
);
163 case SADB_EXT_SUPPORTED_AUTH
:
164 case SADB_EXT_SUPPORTED_ENCRYPT
:
165 kdebug_sadb_supported(ext
);
167 case SADB_EXT_SPIRANGE
:
168 case SADB_X_EXT_KMPRIVATE
:
170 case SADB_X_EXT_POLICY
:
171 kdebug_sadb_x_policy(ext
);
174 kdebug_sadb_x_sa2(ext
);
176 case SADB_EXT_SESSION_ID
:
177 kdebug_sadb_session_id(ext
);
179 case SADB_EXT_SASTAT
:
180 kdebug_sadb_sastat(ext
);
182 #ifdef SADB_X_EXT_NAT_T_TYPE
183 case SADB_X_EXT_NAT_T_TYPE
:
184 kdebug_sadb_x_nat_t_type(ext
);
186 case SADB_X_EXT_NAT_T_SPORT
:
187 case SADB_X_EXT_NAT_T_DPORT
:
188 kdebug_sadb_x_nat_t_port(ext
);
190 case SADB_X_EXT_NAT_T_OA
:
191 kdebug_sadb_address(ext
);
195 printf("kdebug_sadb: invalid ext_type %u was passed.\n",
200 extlen
= PFKEY_UNUNIT64(ext
->sadb_ext_len
);
202 ext
= (void *)((caddr_t
)(void *)ext
+ extlen
);
209 kdebug_sadb_prop(ext
)
210 struct sadb_ext
*ext
;
212 struct sadb_prop
*prop
= (void *)ext
;
213 struct sadb_comb
*comb
;
218 panic("kdebug_sadb_prop: NULL pointer was passed.\n");
220 len
= (PFKEY_UNUNIT64(prop
->sadb_prop_len
) - sizeof(*prop
))
222 comb
= (void *)(prop
+ 1);
223 printf("sadb_prop{ replay=%u\n", prop
->sadb_prop_replay
);
226 printf("sadb_comb{ auth=%u encrypt=%u "
227 "flags=0x%04x reserved=0x%08x\n",
228 comb
->sadb_comb_auth
, comb
->sadb_comb_encrypt
,
229 comb
->sadb_comb_flags
, comb
->sadb_comb_reserved
);
231 printf(" auth_minbits=%u auth_maxbits=%u "
232 "encrypt_minbits=%u encrypt_maxbits=%u\n",
233 comb
->sadb_comb_auth_minbits
,
234 comb
->sadb_comb_auth_maxbits
,
235 comb
->sadb_comb_encrypt_minbits
,
236 comb
->sadb_comb_encrypt_maxbits
);
238 printf(" soft_alloc=%u hard_alloc=%u "
239 "soft_bytes=%lu hard_bytes=%lu\n",
240 comb
->sadb_comb_soft_allocations
,
241 comb
->sadb_comb_hard_allocations
,
242 (unsigned long)comb
->sadb_comb_soft_bytes
,
243 (unsigned long)comb
->sadb_comb_hard_bytes
);
245 printf(" soft_alloc=%lu hard_alloc=%lu "
246 "soft_bytes=%lu hard_bytes=%lu }\n",
247 (unsigned long)comb
->sadb_comb_soft_addtime
,
248 (unsigned long)comb
->sadb_comb_hard_addtime
,
249 (unsigned long)comb
->sadb_comb_soft_usetime
,
250 (unsigned long)comb
->sadb_comb_hard_usetime
);
259 kdebug_sadb_identity(ext
)
260 struct sadb_ext
*ext
;
262 struct sadb_ident
*id
= (void *)ext
;
267 panic("kdebug_sadb_identity: NULL pointer was passed.\n");
269 len
= PFKEY_UNUNIT64(id
->sadb_ident_len
) - sizeof(*id
);
270 printf("sadb_ident_%s{",
271 id
->sadb_ident_exttype
== SADB_EXT_IDENTITY_SRC
? "src" : "dst");
272 switch (id
->sadb_ident_type
) {
274 printf(" type=%d id=%lu",
275 id
->sadb_ident_type
, (u_long
)id
->sadb_ident_id
);
278 ipsec_hexdump((caddr_t
)(id
+ 1), len
); /*XXX cast ?*/
282 p
= (void *)(id
+ 1);
284 for (/*nothing*/; *p
&& p
< ep
; p
++) {
285 if (isprint((int)*p
))
286 printf("%c", *p
& 0xff);
288 printf("\\%03o", *p
& 0xff);
302 kdebug_sadb_supported(ext
)
303 struct sadb_ext
*ext
;
305 struct sadb_supported
*sup
= (void *)ext
;
306 struct sadb_alg
*alg
;
311 panic("kdebug_sadb_supported: NULL pointer was passed.\n");
313 len
= (PFKEY_UNUNIT64(sup
->sadb_supported_len
) - sizeof(*sup
))
315 alg
= (void *)(sup
+ 1);
316 printf("sadb_sup{\n");
318 printf(" { id=%d ivlen=%d min=%d max=%d }\n",
319 alg
->sadb_alg_id
, alg
->sadb_alg_ivlen
,
320 alg
->sadb_alg_minbits
, alg
->sadb_alg_maxbits
);
329 kdebug_sadb_lifetime(ext
)
330 struct sadb_ext
*ext
;
332 struct sadb_lifetime
*lft
= (void *)ext
;
336 printf("kdebug_sadb_lifetime: NULL pointer was passed.\n");
338 printf("sadb_lifetime{ alloc=%u, bytes=%u\n",
339 lft
->sadb_lifetime_allocations
,
340 (u_int32_t
)lft
->sadb_lifetime_bytes
);
341 printf(" addtime=%u, usetime=%u }\n",
342 (u_int32_t
)lft
->sadb_lifetime_addtime
,
343 (u_int32_t
)lft
->sadb_lifetime_usetime
);
350 struct sadb_ext
*ext
;
352 struct sadb_sa
*sa
= (void *)ext
;
356 panic("kdebug_sadb_sa: NULL pointer was passed.\n");
358 printf("sadb_sa{ spi=%u replay=%u state=%u\n",
359 (u_int32_t
)ntohl(sa
->sadb_sa_spi
), sa
->sadb_sa_replay
,
361 printf(" auth=%u encrypt=%u flags=0x%08x }\n",
362 sa
->sadb_sa_auth
, sa
->sadb_sa_encrypt
, sa
->sadb_sa_flags
);
368 kdebug_sadb_address(ext
)
369 struct sadb_ext
*ext
;
371 struct sadb_address
*addr
= (void *)ext
;
375 panic("kdebug_sadb_address: NULL pointer was passed.\n");
377 printf("sadb_address{ proto=%u prefixlen=%u reserved=0x%02x%02x }\n",
378 addr
->sadb_address_proto
, addr
->sadb_address_prefixlen
,
379 ((u_char
*)(void *)&addr
->sadb_address_reserved
)[0],
380 ((u_char
*)(void *)&addr
->sadb_address_reserved
)[1]);
382 kdebug_sockaddr((void *)((caddr_t
)(void *)ext
+ sizeof(*addr
)));
389 struct sadb_ext
*ext
;
391 struct sadb_key
*key
= (void *)ext
;
395 panic("kdebug_sadb_key: NULL pointer was passed.\n");
397 printf("sadb_key{ bits=%u reserved=%u\n",
398 key
->sadb_key_bits
, key
->sadb_key_reserved
);
402 if (((uint32_t)key
->sadb_key_bits
>> 3) >
403 (PFKEY_UNUNIT64(key
->sadb_key_len
) - sizeof(struct sadb_key
))) {
404 printf("kdebug_sadb_key: key length mismatch, bit:%d len:%ld.\n",
405 (uint32_t)key
->sadb_key_bits
>> 3,
406 (long)PFKEY_UNUNIT64(key
->sadb_key_len
) - sizeof(struct sadb_key
));
409 ipsec_hexdump(key
+ sizeof(struct sadb_key
),
410 (int)((uint32_t)key
->sadb_key_bits
>> 3));
416 kdebug_sadb_x_sa2(ext
)
417 struct sadb_ext
*ext
;
419 struct sadb_x_sa2
*sa2
= (void *)ext
;
423 panic("kdebug_sadb_x_sa2: NULL pointer was passed.\n");
425 printf("sadb_x_sa2{ mode=%u reqid=%u\n",
426 sa2
->sadb_x_sa2_mode
, sa2
->sadb_x_sa2_reqid
);
427 printf(" reserved1=%u reserved2=%u sequence=%u }\n",
428 sa2
->sadb_x_sa2_reserved1
, sa2
->sadb_x_sa2_reserved2
,
429 sa2
->sadb_x_sa2_sequence
);
435 kdebug_sadb_session_id(ext
)
436 struct sadb_ext
*ext
;
438 struct sadb_session_id
*p
= (__typeof__(p
))ext
;
442 printf("kdebug_sadb_session_id: NULL pointer was passed.\n");
446 printf("sadb_session_id{ id0=%llx, id1=%llx}\n",
447 p
->sadb_session_id_v
[0],
448 p
->sadb_session_id_v
[1]);
452 kdebug_sadb_sastat(ext
)
453 struct sadb_ext
*ext
;
455 struct sadb_sastat
*p
= (__typeof__(p
))ext
;
456 struct sastat
*stats
;
461 printf("kdebug_sadb_sastat: NULL pointer was passed.\n");
465 printf("sadb_sastat{ dir=%u num=%u\n",
466 p
->sadb_sastat_dir
, p
->sadb_sastat_list_len
);
467 stats
= (__typeof__(stats
))(p
+ 1);
468 for (i
= 0; i
< p
->sadb_sastat_list_len
; i
++) {
476 kdebug_sadb_x_policy(ext
)
477 struct sadb_ext
*ext
;
479 struct sadb_x_policy
*xpl
= (void *)ext
;
480 struct sockaddr
*addr
;
484 panic("kdebug_sadb_x_policy: NULL pointer was passed.\n");
486 #ifdef HAVE_PFKEY_POLICY_PRIORITY
487 printf("sadb_x_policy{ type=%u dir=%u id=%x priority=%u }\n",
489 printf("sadb_x_policy{ type=%u dir=%u id=%x }\n",
491 xpl
->sadb_x_policy_type
, xpl
->sadb_x_policy_dir
,
492 #ifdef HAVE_PFKEY_POLICY_PRIORITY
493 xpl
->sadb_x_policy_id
, xpl
->sadb_x_policy_priority
);
495 xpl
->sadb_x_policy_id
);
498 if (xpl
->sadb_x_policy_type
== IPSEC_POLICY_IPSEC
) {
500 struct sadb_x_ipsecrequest
*xisr
;
502 tlen
= PFKEY_UNUNIT64(xpl
->sadb_x_policy_len
) - sizeof(*xpl
);
503 xisr
= (void *)(xpl
+ 1);
506 printf(" { len=%u proto=%u mode=%u level=%u reqid=%u\n",
507 xisr
->sadb_x_ipsecrequest_len
,
508 xisr
->sadb_x_ipsecrequest_proto
,
509 xisr
->sadb_x_ipsecrequest_mode
,
510 xisr
->sadb_x_ipsecrequest_level
,
511 xisr
->sadb_x_ipsecrequest_reqid
);
513 if (xisr
->sadb_x_ipsecrequest_len
> sizeof(*xisr
)) {
514 addr
= (void *)(xisr
+ 1);
515 kdebug_sockaddr(addr
);
516 addr
= (void *)((caddr_t
)(void *)addr
517 + sysdep_sa_len(addr
));
518 kdebug_sockaddr(addr
);
523 /* prevent infinite loop */
524 if (xisr
->sadb_x_ipsecrequest_len
== 0) {
525 printf("kdebug_sadb_x_policy: wrong policy struct.\n");
528 /* prevent overflow */
529 if (xisr
->sadb_x_ipsecrequest_len
> tlen
) {
530 printf("invalid ipsec policy length\n");
534 tlen
-= xisr
->sadb_x_ipsecrequest_len
;
536 xisr
= (void *)((caddr_t
)(void *)xisr
537 + xisr
->sadb_x_ipsecrequest_len
);
541 panic("kdebug_sadb_x_policy: wrong policy struct.\n");
547 #ifdef SADB_X_EXT_NAT_T_TYPE
549 kdebug_sadb_x_nat_t_type(struct sadb_ext
*ext
)
551 struct sadb_x_nat_t_type
*ntt
= (void *)ext
;
555 panic("kdebug_sadb_x_nat_t_type: NULL pointer was passed.\n");
557 printf("sadb_x_nat_t_type{ type=%u }\n", ntt
->sadb_x_nat_t_type_type
);
563 kdebug_sadb_x_nat_t_port(struct sadb_ext
*ext
)
565 struct sadb_x_nat_t_port
*ntp
= (void *)ext
;
569 panic("kdebug_sadb_x_nat_t_port: NULL pointer was passed.\n");
571 printf("sadb_x_nat_t_port{ port=%u }\n", ntohs(ntp
->sadb_x_nat_t_port_port
));
578 /* %%%: about SPD and SAD */
581 struct secpolicy
*sp
;
585 panic("kdebug_secpolicy: NULL pointer was passed.\n");
587 printf("secpolicy{ refcnt=%u state=%u policy=%u\n",
588 sp
->refcnt
, sp
->state
, sp
->policy
);
590 kdebug_secpolicyindex(&sp
->spidx
);
592 switch (sp
->policy
) {
593 case IPSEC_POLICY_DISCARD
:
594 printf(" type=discard }\n");
596 case IPSEC_POLICY_GENERATE
:
597 printf(" type=generate }\n");
599 case IPSEC_POLICY_NONE
:
600 printf(" type=none }\n");
602 case IPSEC_POLICY_IPSEC
:
604 struct ipsecrequest
*isr
;
605 for (isr
= sp
->req
; isr
!= NULL
; isr
= isr
->next
) {
607 printf(" level=%u\n", isr
->level
);
608 kdebug_secasindex(&isr
->saidx
);
610 if (isr
->sav
!= NULL
)
611 kdebug_secasv(isr
->sav
);
616 case IPSEC_POLICY_BYPASS
:
617 printf(" type=bypass }\n");
619 case IPSEC_POLICY_ENTRUST
:
620 printf(" type=entrust }\n");
623 printf("kdebug_secpolicy: Invalid policy found. %d\n",
632 kdebug_secpolicyindex(spidx
)
633 struct secpolicyindex
*spidx
;
637 panic("kdebug_secpolicyindex: NULL pointer was passed.\n");
639 printf("secpolicyindex{ dir=%u prefs=%u prefd=%u ul_proto=%u\n",
640 spidx
->dir
, spidx
->prefs
, spidx
->prefd
, spidx
->ul_proto
);
642 ipsec_hexdump((caddr_t
)&spidx
->src
,
643 sysdep_sa_len((struct sockaddr
*)&spidx
->src
));
645 ipsec_hexdump((caddr_t
)&spidx
->dst
,
646 sysdep_sa_len((struct sockaddr
*)&spidx
->dst
));
653 kdebug_secasindex(saidx
)
654 struct secasindex
*saidx
;
658 panic("kdebug_secpolicyindex: NULL pointer was passed.\n");
660 printf("secasindex{ mode=%u proto=%u\n",
661 saidx
->mode
, saidx
->proto
);
663 ipsec_hexdump((caddr_t
)&saidx
->src
,
664 sysdep_sa_len((struct sockaddr
*)&saidx
->src
));
666 ipsec_hexdump((caddr_t
)&saidx
->dst
,
667 sysdep_sa_len((struct sockaddr
*)&saidx
->dst
));
675 struct secasvar
*sav
;
679 panic("kdebug_secasv: NULL pointer was passed.\n");
682 kdebug_secasindex(&sav
->sah
->saidx
);
684 printf(" refcnt=%u state=%u auth=%u enc=%u\n",
685 sav
->refcnt
, sav
->state
, sav
->alg_auth
, sav
->alg_enc
);
686 printf(" spi=%u flags=%u\n",
687 (u_int32_t
)ntohl(sav
->spi
), sav
->flags
);
689 if (sav
->key_auth
!= NULL
)
690 kdebug_sadb_key((struct sadb_ext
*)sav
->key_auth
);
691 if (sav
->key_enc
!= NULL
)
692 kdebug_sadb_key((struct sadb_ext
*)sav
->key_enc
);
693 if (sav
->iv
!= NULL
) {
695 ipsec_hexdump(sav
->iv
, sav
->ivlen
? sav
->ivlen
: 8);
699 if (sav
->replay
!= NULL
)
700 kdebug_secreplay(sav
->replay
);
701 if (sav
->lft_c
!= NULL
)
702 kdebug_sadb_lifetime((struct sadb_ext
*)sav
->lft_c
);
703 if (sav
->lft_h
!= NULL
)
704 kdebug_sadb_lifetime((struct sadb_ext
*)sav
->lft_h
);
705 if (sav
->lft_s
!= NULL
)
706 kdebug_sadb_lifetime((struct sadb_ext
*)sav
->lft_s
);
709 /* XXX: misc[123] ? */
716 kdebug_secreplay(rpl
)
717 struct secreplay
*rpl
;
723 panic("kdebug_secreplay: NULL pointer was passed.\n");
725 printf(" secreplay{ count=%u wsize=%u seq=%u lastseq=%u",
726 rpl
->count
, rpl
->wsize
, rpl
->seq
, rpl
->lastseq
);
728 if (rpl
->bitmap
== NULL
) {
733 printf("\n bitmap { ");
735 for (len
= 0; len
< rpl
->wsize
; len
++) {
736 for (l
= 7; l
>= 0; l
--)
737 printf("%u", (((rpl
->bitmap
)[len
] >> l
) & 1) ? 1 : 0);
752 printf("mbuf(%p){ m_next:%p m_nextpkt:%p m_data:%p "
753 "m_len:%d m_type:0x%02x m_flags:0x%02x }\n",
754 m
, m
->m_next
, m
->m_nextpkt
, m
->m_data
,
755 m
->m_len
, m
->m_type
, m
->m_flags
);
757 if (m
->m_flags
& M_PKTHDR
) {
758 printf(" m_pkthdr{ len:%d rcvif:%p }\n",
759 m
->m_pkthdr
.len
, m
->m_pkthdr
.rcvif
);
763 if (m
->m_flags
& M_EXT
) {
764 printf(" m_ext{ ext_buf:%p ext_free:%p "
765 "ext_size:%u ext_ref:%p }\n",
766 m
->m_ext
.ext_buf
, m
->m_ext
.ext_free
,
767 m
->m_ext
.ext_size
, m
->m_ext
.ext_ref
);
781 for (j
= 0; m
; m
= m
->m_next
) {
783 printf(" m_data:\n");
784 for (i
= 0; i
< m
->m_len
; i
++) {
785 if (i
&& i
% 32 == 0)
789 printf("%02x", mtod(m
, u_char
*)[i
]);
800 kdebug_sockaddr(addr
)
801 struct sockaddr
*addr
;
803 struct sockaddr_in
*sin4
;
805 struct sockaddr_in6
*sin6
;
810 panic("kdebug_sockaddr: NULL pointer was passed.\n");
812 /* NOTE: We deal with port number as host byte order. */
813 printf("sockaddr{ len=%u family=%u", sysdep_sa_len(addr
), addr
->sa_family
);
815 switch (addr
->sa_family
) {
818 printf(" port=%u\n", ntohs(sin4
->sin_port
));
819 ipsec_hexdump(&sin4
->sin_addr
, sizeof(sin4
->sin_addr
));
824 printf(" port=%u\n", ntohs(sin6
->sin6_port
));
825 printf(" flowinfo=0x%08x, scope_id=0x%08x\n",
826 sin6
->sin6_flowinfo
, sin6
->sin6_scope_id
);
827 ipsec_hexdump(&sin6
->sin6_addr
, sizeof(sin6
->sin6_addr
));
838 ipsec_bindump(buf
, len
)
844 for (i
= 0; i
< len
; i
++)
845 printf("%c", (unsigned char)buf
[i
]);
852 ipsec_hexdump(buf
, len
)
858 for (i
= 0; i
< len
; i
++) {
859 if (i
!= 0 && i
% 32 == 0) printf("\n");
860 if (i
% 4 == 0) printf(" ");
861 printf("%02x", ((const unsigned char *)buf
)[i
]);
864 if (i
% 32 != 0) printf("\n");