Initial commit of a port of the FreeBSD implementation of RFC 2385
(MD5 signatures for TCP, as used with BGP). Credit for original
FreeBSD code goes to Bruce M. Simpson, with FreeBSD sponsorship
credited to sentex.net. Shortening of the setsockopt() name
attributed to Vincent Jardin.
This commit is a minimal, working version of the FreeBSD code, as
MFC'ed to FreeBSD-4. It has received minimal testing with a ttcp
modified to set the TCP-MD5 option; BMS's additions to tcpdump-current
(tcpdump -M) confirm that the MD5 signatures are correct. Committed
as-is for further testing between a NetBSD BGP speaker (e.g., quagga)
and industry-standard BGP speakers (e.g., Cisco, Juniper).
NOTE: This version has two potential flaws. First, I do see any code
that verifies recieved TCP-MD5 signatures. Second, the TCP-MD5
options are internally padded and assumed to be 32-bit aligned. A more
space-efficient scheme is to pack all TCP options densely (and
possibly unaligned) into the TCP header ; then do one final padding to
a 4-byte boundary. Pre-existing comments note that accounting for
TCP-option space when we add SACK is yet to be done. For now, I'm
punting on that; we can solve it properly, in a way that will handle
SACK blocks, as a separate exercise.
In case a pullup to NetBSD-2 is requested, this adds sys/netipsec/xform_tcp.c
,and modifies:
sys/net/pfkeyv2.h,v 1.15
sys/netinet/files.netinet,v 1.5
sys/netinet/ip.h,v 1.25
sys/netinet/tcp.h,v 1.15
sys/netinet/tcp_input.c,v 1.200
sys/netinet/tcp_output.c,v 1.109
sys/netinet/tcp_subr.c,v 1.165
sys/netinet/tcp_usrreq.c,v 1.89
sys/netinet/tcp_var.h,v 1.109
sys/netipsec/files.netipsec,v 1.3
sys/netipsec/ipsec.c,v 1.11
sys/netipsec/ipsec.h,v 1.7
sys/netipsec/key.c,v 1.11
share/man/man4/tcp.4,v 1.16
lib/libipsec/pfkey.c,v 1.20
lib/libipsec/pfkey_dump.c,v 1.17
lib/libipsec/policy_token.l,v 1.8
sbin/setkey/parse.y,v 1.14
sbin/setkey/setkey.8,v 1.27
sbin/setkey/token.l,v 1.15
Note that the preceding two revisions to tcp.4 will be
required to cleanly apply this diff.
2004-04-26 02:25:03 +04:00
|
|
|
/* $FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/lib/libipsec/pfkey_dump.c,v 1.1.2.5 2004/02/14 22:28:29 bms Exp $ */
|
2003-09-08 14:16:31 +04:00
|
|
|
/* $KAME: pfkey_dump.c,v 1.45 2003/09/08 10:14:56 itojun Exp $ */
|
1999-07-04 05:36:12 +04:00
|
|
|
|
1999-07-02 00:15:26 +04:00
|
|
|
/*
|
|
|
|
* Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
|
|
|
|
* All rights reserved.
|
1999-07-02 19:58:35 +04:00
|
|
|
*
|
1999-07-02 00:15:26 +04:00
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 3. Neither the name of the project nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
1999-07-02 19:58:35 +04:00
|
|
|
*
|
1999-07-02 00:15:26 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
2003-03-09 04:03:54 +03:00
|
|
|
#include <sys/cdefs.h>
|
Initial commit of a port of the FreeBSD implementation of RFC 2385
(MD5 signatures for TCP, as used with BGP). Credit for original
FreeBSD code goes to Bruce M. Simpson, with FreeBSD sponsorship
credited to sentex.net. Shortening of the setsockopt() name
attributed to Vincent Jardin.
This commit is a minimal, working version of the FreeBSD code, as
MFC'ed to FreeBSD-4. It has received minimal testing with a ttcp
modified to set the TCP-MD5 option; BMS's additions to tcpdump-current
(tcpdump -M) confirm that the MD5 signatures are correct. Committed
as-is for further testing between a NetBSD BGP speaker (e.g., quagga)
and industry-standard BGP speakers (e.g., Cisco, Juniper).
NOTE: This version has two potential flaws. First, I do see any code
that verifies recieved TCP-MD5 signatures. Second, the TCP-MD5
options are internally padded and assumed to be 32-bit aligned. A more
space-efficient scheme is to pack all TCP options densely (and
possibly unaligned) into the TCP header ; then do one final padding to
a 4-byte boundary. Pre-existing comments note that accounting for
TCP-option space when we add SACK is yet to be done. For now, I'm
punting on that; we can solve it properly, in a way that will handle
SACK blocks, as a separate exercise.
In case a pullup to NetBSD-2 is requested, this adds sys/netipsec/xform_tcp.c
,and modifies:
sys/net/pfkeyv2.h,v 1.15
sys/netinet/files.netinet,v 1.5
sys/netinet/ip.h,v 1.25
sys/netinet/tcp.h,v 1.15
sys/netinet/tcp_input.c,v 1.200
sys/netinet/tcp_output.c,v 1.109
sys/netinet/tcp_subr.c,v 1.165
sys/netinet/tcp_usrreq.c,v 1.89
sys/netinet/tcp_var.h,v 1.109
sys/netipsec/files.netipsec,v 1.3
sys/netipsec/ipsec.c,v 1.11
sys/netipsec/ipsec.h,v 1.7
sys/netipsec/key.c,v 1.11
share/man/man4/tcp.4,v 1.16
lib/libipsec/pfkey.c,v 1.20
lib/libipsec/pfkey_dump.c,v 1.17
lib/libipsec/policy_token.l,v 1.8
sbin/setkey/parse.y,v 1.14
sbin/setkey/setkey.8,v 1.27
sbin/setkey/token.l,v 1.15
Note that the preceding two revisions to tcp.4 will be
required to cleanly apply this diff.
2004-04-26 02:25:03 +04:00
|
|
|
__RCSID("$NetBSD: pfkey_dump.c,v 1.18 2004/04/25 22:25:05 jonathan Exp $");
|
2003-03-09 04:03:54 +03:00
|
|
|
|
1999-07-02 00:15:26 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <netinet6/ipsec.h>
|
2000-02-08 16:17:51 +03:00
|
|
|
#include <net/pfkeyv2.h>
|
1999-07-02 00:15:26 +04:00
|
|
|
#include <netkey/key_var.h>
|
|
|
|
#include <netkey/key_debug.h>
|
|
|
|
|
|
|
|
#include <netinet/in.h>
|
2000-01-31 17:15:30 +03:00
|
|
|
#include <netinet6/ipsec.h>
|
1999-07-02 00:15:26 +04:00
|
|
|
#include <arpa/inet.h>
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <time.h>
|
2000-06-12 14:40:37 +04:00
|
|
|
#include <netdb.h>
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
#include "ipsec_strerror.h"
|
2000-06-12 14:40:37 +04:00
|
|
|
#include "libpfkey.h"
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
#define GETMSGSTR(str, num) \
|
2000-01-31 17:15:30 +03:00
|
|
|
do { \
|
1999-07-02 00:15:26 +04:00
|
|
|
if (sizeof((str)[0]) == 0 \
|
|
|
|
|| num >= sizeof(str)/sizeof((str)[0])) \
|
2002-06-27 18:39:45 +04:00
|
|
|
printf("%u ", (num)); \
|
1999-07-02 00:15:26 +04:00
|
|
|
else if (strlen((str)[(num)]) == 0) \
|
2002-06-27 18:39:45 +04:00
|
|
|
printf("%u ", (num)); \
|
1999-07-02 00:15:26 +04:00
|
|
|
else \
|
|
|
|
printf("%s ", (str)[(num)]); \
|
2000-01-31 17:15:30 +03:00
|
|
|
} while (0)
|
1999-07-02 00:15:26 +04:00
|
|
|
|
2000-07-20 13:51:40 +04:00
|
|
|
#define GETMSGV2S(v2s, num) \
|
|
|
|
do { \
|
|
|
|
struct val2str *p; \
|
|
|
|
for (p = (v2s); p && p->str; p++) { \
|
|
|
|
if (p->val == (num)) \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
if (p && p->str) \
|
|
|
|
printf("%s ", p->str); \
|
|
|
|
else \
|
2002-06-27 18:39:45 +04:00
|
|
|
printf("%u ", (num)); \
|
2000-07-20 13:51:40 +04:00
|
|
|
} while (0)
|
|
|
|
|
2000-06-12 14:40:37 +04:00
|
|
|
static char *str_ipaddr __P((struct sockaddr *));
|
2002-05-14 15:24:20 +04:00
|
|
|
static char *str_prefport __P((u_int, u_int, u_int, u_int));
|
|
|
|
static void str_upperspec __P((u_int, u_int, u_int));
|
2000-06-12 14:40:37 +04:00
|
|
|
static char *str_time __P((time_t));
|
|
|
|
static void str_lifetime_byte __P((struct sadb_lifetime *, char *));
|
1999-07-02 00:15:26 +04:00
|
|
|
|
2000-07-20 13:51:40 +04:00
|
|
|
struct val2str {
|
|
|
|
int val;
|
|
|
|
const char *str;
|
|
|
|
};
|
|
|
|
|
1999-07-02 00:15:26 +04:00
|
|
|
/*
|
|
|
|
* Must to be re-written about following strings.
|
|
|
|
*/
|
2000-07-20 13:51:40 +04:00
|
|
|
static char *str_satype[] = {
|
1999-07-02 00:15:26 +04:00
|
|
|
"unspec",
|
|
|
|
"unknown",
|
|
|
|
"ah",
|
|
|
|
"esp",
|
|
|
|
"unknown",
|
|
|
|
"rsvp",
|
|
|
|
"ospfv2",
|
|
|
|
"ripv2",
|
|
|
|
"mip",
|
|
|
|
"ipcomp",
|
Initial commit of a port of the FreeBSD implementation of RFC 2385
(MD5 signatures for TCP, as used with BGP). Credit for original
FreeBSD code goes to Bruce M. Simpson, with FreeBSD sponsorship
credited to sentex.net. Shortening of the setsockopt() name
attributed to Vincent Jardin.
This commit is a minimal, working version of the FreeBSD code, as
MFC'ed to FreeBSD-4. It has received minimal testing with a ttcp
modified to set the TCP-MD5 option; BMS's additions to tcpdump-current
(tcpdump -M) confirm that the MD5 signatures are correct. Committed
as-is for further testing between a NetBSD BGP speaker (e.g., quagga)
and industry-standard BGP speakers (e.g., Cisco, Juniper).
NOTE: This version has two potential flaws. First, I do see any code
that verifies recieved TCP-MD5 signatures. Second, the TCP-MD5
options are internally padded and assumed to be 32-bit aligned. A more
space-efficient scheme is to pack all TCP options densely (and
possibly unaligned) into the TCP header ; then do one final padding to
a 4-byte boundary. Pre-existing comments note that accounting for
TCP-option space when we add SACK is yet to be done. For now, I'm
punting on that; we can solve it properly, in a way that will handle
SACK blocks, as a separate exercise.
In case a pullup to NetBSD-2 is requested, this adds sys/netipsec/xform_tcp.c
,and modifies:
sys/net/pfkeyv2.h,v 1.15
sys/netinet/files.netinet,v 1.5
sys/netinet/ip.h,v 1.25
sys/netinet/tcp.h,v 1.15
sys/netinet/tcp_input.c,v 1.200
sys/netinet/tcp_output.c,v 1.109
sys/netinet/tcp_subr.c,v 1.165
sys/netinet/tcp_usrreq.c,v 1.89
sys/netinet/tcp_var.h,v 1.109
sys/netipsec/files.netipsec,v 1.3
sys/netipsec/ipsec.c,v 1.11
sys/netipsec/ipsec.h,v 1.7
sys/netipsec/key.c,v 1.11
share/man/man4/tcp.4,v 1.16
lib/libipsec/pfkey.c,v 1.20
lib/libipsec/pfkey_dump.c,v 1.17
lib/libipsec/policy_token.l,v 1.8
sbin/setkey/parse.y,v 1.14
sbin/setkey/setkey.8,v 1.27
sbin/setkey/token.l,v 1.15
Note that the preceding two revisions to tcp.4 will be
required to cleanly apply this diff.
2004-04-26 02:25:03 +04:00
|
|
|
"policy",
|
|
|
|
"tcp"
|
1999-07-02 00:15:26 +04:00
|
|
|
};
|
|
|
|
|
2000-07-20 13:51:40 +04:00
|
|
|
static char *str_mode[] = {
|
2000-01-31 17:15:30 +03:00
|
|
|
"any",
|
|
|
|
"transport",
|
|
|
|
"tunnel",
|
1999-07-02 00:15:26 +04:00
|
|
|
};
|
|
|
|
|
2000-07-20 13:51:40 +04:00
|
|
|
static char *str_state[] = {
|
1999-07-02 00:15:26 +04:00
|
|
|
"larval",
|
|
|
|
"mature",
|
|
|
|
"dying",
|
|
|
|
"dead",
|
|
|
|
};
|
|
|
|
|
2000-07-20 13:51:40 +04:00
|
|
|
static struct val2str str_alg_auth[] = {
|
|
|
|
{ SADB_AALG_NONE, "none", },
|
|
|
|
{ SADB_AALG_MD5HMAC, "hmac-md5", },
|
|
|
|
{ SADB_AALG_SHA1HMAC, "hmac-sha1", },
|
|
|
|
{ SADB_X_AALG_MD5, "md5", },
|
|
|
|
{ SADB_X_AALG_SHA, "sha", },
|
|
|
|
{ SADB_X_AALG_NULL, "null", },
|
Initial commit of a port of the FreeBSD implementation of RFC 2385
(MD5 signatures for TCP, as used with BGP). Credit for original
FreeBSD code goes to Bruce M. Simpson, with FreeBSD sponsorship
credited to sentex.net. Shortening of the setsockopt() name
attributed to Vincent Jardin.
This commit is a minimal, working version of the FreeBSD code, as
MFC'ed to FreeBSD-4. It has received minimal testing with a ttcp
modified to set the TCP-MD5 option; BMS's additions to tcpdump-current
(tcpdump -M) confirm that the MD5 signatures are correct. Committed
as-is for further testing between a NetBSD BGP speaker (e.g., quagga)
and industry-standard BGP speakers (e.g., Cisco, Juniper).
NOTE: This version has two potential flaws. First, I do see any code
that verifies recieved TCP-MD5 signatures. Second, the TCP-MD5
options are internally padded and assumed to be 32-bit aligned. A more
space-efficient scheme is to pack all TCP options densely (and
possibly unaligned) into the TCP header ; then do one final padding to
a 4-byte boundary. Pre-existing comments note that accounting for
TCP-option space when we add SACK is yet to be done. For now, I'm
punting on that; we can solve it properly, in a way that will handle
SACK blocks, as a separate exercise.
In case a pullup to NetBSD-2 is requested, this adds sys/netipsec/xform_tcp.c
,and modifies:
sys/net/pfkeyv2.h,v 1.15
sys/netinet/files.netinet,v 1.5
sys/netinet/ip.h,v 1.25
sys/netinet/tcp.h,v 1.15
sys/netinet/tcp_input.c,v 1.200
sys/netinet/tcp_output.c,v 1.109
sys/netinet/tcp_subr.c,v 1.165
sys/netinet/tcp_usrreq.c,v 1.89
sys/netinet/tcp_var.h,v 1.109
sys/netipsec/files.netipsec,v 1.3
sys/netipsec/ipsec.c,v 1.11
sys/netipsec/ipsec.h,v 1.7
sys/netipsec/key.c,v 1.11
share/man/man4/tcp.4,v 1.16
lib/libipsec/pfkey.c,v 1.20
lib/libipsec/pfkey_dump.c,v 1.17
lib/libipsec/policy_token.l,v 1.8
sbin/setkey/parse.y,v 1.14
sbin/setkey/setkey.8,v 1.27
sbin/setkey/token.l,v 1.15
Note that the preceding two revisions to tcp.4 will be
required to cleanly apply this diff.
2004-04-26 02:25:03 +04:00
|
|
|
{ SADB_X_AALG_TCP_MD5, "tcp-md5", },
|
2003-07-22 07:33:10 +04:00
|
|
|
{ SADB_X_AALG_SHA2_256, "hmac-sha2-256", },
|
|
|
|
{ SADB_X_AALG_SHA2_384, "hmac-sha2-384", },
|
|
|
|
{ SADB_X_AALG_SHA2_512, "hmac-sha2-512", },
|
2003-07-25 14:06:09 +04:00
|
|
|
{ SADB_X_AALG_RIPEMD160HMAC, "hmac-ripemd160", },
|
|
|
|
{ SADB_X_AALG_AES_XCBC_MAC, "aes-xcbc-mac", },
|
2000-07-20 13:51:40 +04:00
|
|
|
{ -1, NULL, },
|
1999-07-02 00:15:26 +04:00
|
|
|
};
|
|
|
|
|
2000-07-20 13:51:40 +04:00
|
|
|
static struct val2str str_alg_enc[] = {
|
|
|
|
{ SADB_EALG_NONE, "none", },
|
|
|
|
{ SADB_EALG_DESCBC, "des-cbc", },
|
|
|
|
{ SADB_EALG_3DESCBC, "3des-cbc", },
|
|
|
|
{ SADB_EALG_NULL, "null", },
|
|
|
|
#ifdef SADB_X_EALG_RC5CBC
|
|
|
|
{ SADB_X_EALG_RC5CBC, "rc5-cbc", },
|
|
|
|
#endif
|
|
|
|
{ SADB_X_EALG_CAST128CBC, "cast128-cbc", },
|
|
|
|
{ SADB_X_EALG_BLOWFISHCBC, "blowfish-cbc", },
|
2000-10-04 03:00:54 +04:00
|
|
|
{ SADB_X_EALG_RIJNDAELCBC, "rijndael-cbc", },
|
2003-07-25 14:06:09 +04:00
|
|
|
{ SADB_X_EALG_AESCTR, "aes-ctr", },
|
2000-07-20 13:51:40 +04:00
|
|
|
{ -1, NULL, },
|
1999-07-02 00:15:26 +04:00
|
|
|
};
|
|
|
|
|
2000-07-20 13:51:40 +04:00
|
|
|
static struct val2str str_alg_comp[] = {
|
|
|
|
{ SADB_X_CALG_NONE, "none", },
|
|
|
|
{ SADB_X_CALG_OUI, "oui", },
|
|
|
|
{ SADB_X_CALG_DEFLATE, "deflate", },
|
|
|
|
{ SADB_X_CALG_LZS, "lzs", },
|
|
|
|
{ -1, NULL, },
|
1999-07-02 00:15:26 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* dump SADB_MSG formated. For debugging, you should use kdebug_sadb().
|
|
|
|
*/
|
2000-01-31 17:15:30 +03:00
|
|
|
void
|
|
|
|
pfkey_sadump(m)
|
|
|
|
struct sadb_msg *m;
|
1999-07-02 00:15:26 +04:00
|
|
|
{
|
|
|
|
caddr_t mhp[SADB_EXT_MAX + 1];
|
|
|
|
struct sadb_sa *m_sa;
|
2000-06-12 14:40:37 +04:00
|
|
|
struct sadb_x_sa2 *m_sa2;
|
1999-07-02 00:15:26 +04:00
|
|
|
struct sadb_lifetime *m_lftc, *m_lfth, *m_lfts;
|
|
|
|
struct sadb_address *m_saddr, *m_daddr, *m_paddr;
|
|
|
|
struct sadb_key *m_auth, *m_enc;
|
|
|
|
struct sadb_ident *m_sid, *m_did;
|
|
|
|
struct sadb_sens *m_sens;
|
|
|
|
|
|
|
|
/* check pfkey message. */
|
2000-01-31 17:15:30 +03:00
|
|
|
if (pfkey_align(m, mhp)) {
|
|
|
|
printf("%s\n", ipsec_strerror());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (pfkey_check(mhp)) {
|
1999-07-02 00:15:26 +04:00
|
|
|
printf("%s\n", ipsec_strerror());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_sa = (struct sadb_sa *)mhp[SADB_EXT_SA];
|
2000-06-12 14:40:37 +04:00
|
|
|
m_sa2 = (struct sadb_x_sa2 *)mhp[SADB_X_EXT_SA2];
|
1999-07-02 00:15:26 +04:00
|
|
|
m_lftc = (struct sadb_lifetime *)mhp[SADB_EXT_LIFETIME_CURRENT];
|
|
|
|
m_lfth = (struct sadb_lifetime *)mhp[SADB_EXT_LIFETIME_HARD];
|
|
|
|
m_lfts = (struct sadb_lifetime *)mhp[SADB_EXT_LIFETIME_SOFT];
|
|
|
|
m_saddr = (struct sadb_address *)mhp[SADB_EXT_ADDRESS_SRC];
|
|
|
|
m_daddr = (struct sadb_address *)mhp[SADB_EXT_ADDRESS_DST];
|
|
|
|
m_paddr = (struct sadb_address *)mhp[SADB_EXT_ADDRESS_PROXY];
|
|
|
|
m_auth = (struct sadb_key *)mhp[SADB_EXT_KEY_AUTH];
|
|
|
|
m_enc = (struct sadb_key *)mhp[SADB_EXT_KEY_ENCRYPT];
|
|
|
|
m_sid = (struct sadb_ident *)mhp[SADB_EXT_IDENTITY_SRC];
|
2000-01-31 17:15:30 +03:00
|
|
|
m_did = (struct sadb_ident *)mhp[SADB_EXT_IDENTITY_DST];
|
1999-07-02 00:15:26 +04:00
|
|
|
m_sens = (struct sadb_sens *)mhp[SADB_EXT_SENSITIVITY];
|
|
|
|
|
|
|
|
/* source address */
|
|
|
|
if (m_saddr == NULL) {
|
|
|
|
printf("no ADDRESS_SRC extension.\n");
|
|
|
|
return;
|
|
|
|
}
|
2000-06-12 14:40:37 +04:00
|
|
|
printf("%s ", str_ipaddr((struct sockaddr *)(m_saddr + 1)));
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
/* destination address */
|
|
|
|
if (m_daddr == NULL) {
|
|
|
|
printf("no ADDRESS_DST extension.\n");
|
|
|
|
return;
|
|
|
|
}
|
2000-06-12 14:40:37 +04:00
|
|
|
printf("%s ", str_ipaddr((struct sockaddr *)(m_daddr + 1)));
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
/* SA type */
|
|
|
|
if (m_sa == NULL) {
|
|
|
|
printf("no SA extension.\n");
|
|
|
|
return;
|
|
|
|
}
|
2000-06-12 14:40:37 +04:00
|
|
|
if (m_sa2 == NULL) {
|
|
|
|
printf("no SA2 extension.\n");
|
|
|
|
return;
|
|
|
|
}
|
2000-01-31 17:15:30 +03:00
|
|
|
printf("\n\t");
|
|
|
|
|
2000-07-20 13:51:40 +04:00
|
|
|
GETMSGSTR(str_satype, m->sadb_msg_satype);
|
1999-07-02 00:15:26 +04:00
|
|
|
|
2000-01-31 17:15:30 +03:00
|
|
|
printf("mode=");
|
2000-07-20 13:51:40 +04:00
|
|
|
GETMSGSTR(str_mode, m_sa2->sadb_x_sa2_mode);
|
2000-01-31 17:15:30 +03:00
|
|
|
|
|
|
|
printf("spi=%u(0x%08x) reqid=%u(0x%08x)\n",
|
1999-07-02 00:15:26 +04:00
|
|
|
(u_int32_t)ntohl(m_sa->sadb_sa_spi),
|
|
|
|
(u_int32_t)ntohl(m_sa->sadb_sa_spi),
|
2000-06-12 14:40:37 +04:00
|
|
|
(u_int32_t)m_sa2->sadb_x_sa2_reqid,
|
|
|
|
(u_int32_t)m_sa2->sadb_x_sa2_reqid);
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
/* encryption key */
|
|
|
|
if (m->sadb_msg_satype == SADB_X_SATYPE_IPCOMP) {
|
|
|
|
printf("\tC: ");
|
2000-07-20 13:51:40 +04:00
|
|
|
GETMSGV2S(str_alg_comp, m_sa->sadb_sa_encrypt);
|
1999-07-02 00:15:26 +04:00
|
|
|
} else if (m->sadb_msg_satype == SADB_SATYPE_ESP) {
|
|
|
|
if (m_enc != NULL) {
|
|
|
|
printf("\tE: ");
|
2000-07-20 13:51:40 +04:00
|
|
|
GETMSGV2S(str_alg_enc, m_sa->sadb_sa_encrypt);
|
1999-07-02 00:15:26 +04:00
|
|
|
ipsec_hexdump((caddr_t)m_enc + sizeof(*m_enc),
|
|
|
|
m_enc->sadb_key_bits / 8);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* authentication key */
|
|
|
|
if (m_auth != NULL) {
|
|
|
|
printf("\tA: ");
|
2000-07-20 13:51:40 +04:00
|
|
|
GETMSGV2S(str_alg_auth, m_sa->sadb_sa_auth);
|
1999-07-02 00:15:26 +04:00
|
|
|
ipsec_hexdump((caddr_t)m_auth + sizeof(*m_auth),
|
|
|
|
m_auth->sadb_key_bits / 8);
|
|
|
|
printf("\n");
|
|
|
|
}
|
|
|
|
|
2000-01-31 17:15:30 +03:00
|
|
|
/* replay windoe size & flags */
|
2002-05-14 15:24:20 +04:00
|
|
|
printf("\tseq=0x%08x replay=%u flags=0x%08x ",
|
|
|
|
m_sa2->sadb_x_sa2_sequence,
|
2000-01-31 17:15:30 +03:00
|
|
|
m_sa->sadb_sa_replay,
|
|
|
|
m_sa->sadb_sa_flags);
|
|
|
|
|
1999-07-02 00:15:26 +04:00
|
|
|
/* state */
|
2000-01-31 17:15:30 +03:00
|
|
|
printf("state=");
|
2000-07-20 13:51:40 +04:00
|
|
|
GETMSGSTR(str_state, m_sa->sadb_sa_state);
|
2002-05-14 15:24:20 +04:00
|
|
|
printf("\n");
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
/* lifetime */
|
|
|
|
if (m_lftc != NULL) {
|
|
|
|
time_t tmp_time = time(0);
|
|
|
|
|
|
|
|
printf("\tcreated: %s",
|
2000-06-12 14:40:37 +04:00
|
|
|
str_time(m_lftc->sadb_lifetime_addtime));
|
|
|
|
printf("\tcurrent: %s\n", str_time(tmp_time));
|
1999-07-02 00:15:26 +04:00
|
|
|
printf("\tdiff: %lu(s)",
|
|
|
|
(u_long)(m_lftc->sadb_lifetime_addtime == 0 ?
|
|
|
|
0 : (tmp_time - m_lftc->sadb_lifetime_addtime)));
|
|
|
|
|
|
|
|
printf("\thard: %lu(s)",
|
|
|
|
(u_long)(m_lfth == NULL ?
|
|
|
|
0 : m_lfth->sadb_lifetime_addtime));
|
|
|
|
printf("\tsoft: %lu(s)\n",
|
|
|
|
(u_long)(m_lfts == NULL ?
|
|
|
|
0 : m_lfts->sadb_lifetime_addtime));
|
|
|
|
|
|
|
|
printf("\tlast: %s",
|
2000-06-12 14:40:37 +04:00
|
|
|
str_time(m_lftc->sadb_lifetime_usetime));
|
1999-07-02 00:15:26 +04:00
|
|
|
printf("\thard: %lu(s)",
|
|
|
|
(u_long)(m_lfth == NULL ?
|
|
|
|
0 : m_lfth->sadb_lifetime_usetime));
|
|
|
|
printf("\tsoft: %lu(s)\n",
|
|
|
|
(u_long)(m_lfts == NULL ?
|
|
|
|
0 : m_lfts->sadb_lifetime_usetime));
|
|
|
|
|
2000-06-12 14:40:37 +04:00
|
|
|
str_lifetime_byte(m_lftc, "current");
|
|
|
|
str_lifetime_byte(m_lfth, "hard");
|
|
|
|
str_lifetime_byte(m_lfts, "soft");
|
1999-07-02 00:15:26 +04:00
|
|
|
printf("\n");
|
|
|
|
|
|
|
|
printf("\tallocated: %lu",
|
|
|
|
(unsigned long)m_lftc->sadb_lifetime_allocations);
|
|
|
|
printf("\thard: %lu",
|
|
|
|
(u_long)(m_lfth == NULL ?
|
|
|
|
0 : m_lfth->sadb_lifetime_allocations));
|
|
|
|
printf("\tsoft: %lu\n",
|
|
|
|
(u_long)(m_lfts == NULL ?
|
|
|
|
0 : m_lfts->sadb_lifetime_allocations));
|
|
|
|
}
|
|
|
|
|
2002-05-14 15:24:20 +04:00
|
|
|
printf("\tsadb_seq=%lu pid=%lu ",
|
|
|
|
(u_long)m->sadb_msg_seq,
|
|
|
|
(u_long)m->sadb_msg_pid);
|
|
|
|
|
2000-01-31 17:15:30 +03:00
|
|
|
/* XXX DEBUG */
|
2002-05-14 15:24:20 +04:00
|
|
|
printf("refcnt=%u\n", m->sadb_msg_reserved);
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2000-01-31 17:15:30 +03:00
|
|
|
void
|
|
|
|
pfkey_spdump(m)
|
|
|
|
struct sadb_msg *m;
|
1999-07-02 00:15:26 +04:00
|
|
|
{
|
2000-06-12 14:40:37 +04:00
|
|
|
char pbuf[NI_MAXSERV];
|
1999-07-02 00:15:26 +04:00
|
|
|
caddr_t mhp[SADB_EXT_MAX + 1];
|
|
|
|
struct sadb_address *m_saddr, *m_daddr;
|
2003-08-26 07:49:05 +04:00
|
|
|
#ifdef SADB_X_EXT_TAG
|
2003-08-26 07:37:25 +04:00
|
|
|
struct sadb_x_tag *m_tag;
|
2003-08-26 07:49:05 +04:00
|
|
|
#endif
|
1999-07-02 00:15:26 +04:00
|
|
|
struct sadb_x_policy *m_xpl;
|
2002-05-14 15:24:20 +04:00
|
|
|
struct sadb_lifetime *m_lftc = NULL, *m_lfth = NULL;
|
2000-06-12 14:40:37 +04:00
|
|
|
struct sockaddr *sa;
|
2002-05-14 15:24:20 +04:00
|
|
|
u_int16_t sport = 0, dport = 0;
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
/* check pfkey message. */
|
2000-01-31 17:15:30 +03:00
|
|
|
if (pfkey_align(m, mhp)) {
|
|
|
|
printf("%s\n", ipsec_strerror());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (pfkey_check(mhp)) {
|
1999-07-02 00:15:26 +04:00
|
|
|
printf("%s\n", ipsec_strerror());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_saddr = (struct sadb_address *)mhp[SADB_EXT_ADDRESS_SRC];
|
|
|
|
m_daddr = (struct sadb_address *)mhp[SADB_EXT_ADDRESS_DST];
|
2003-08-26 07:49:05 +04:00
|
|
|
#ifdef SADB_X_EXT_TAG
|
2003-08-26 07:37:25 +04:00
|
|
|
m_tag = (struct sadb_x_tag *)mhp[SADB_X_EXT_TAG];
|
2003-08-26 07:49:05 +04:00
|
|
|
#endif
|
1999-07-02 00:15:26 +04:00
|
|
|
m_xpl = (struct sadb_x_policy *)mhp[SADB_X_EXT_POLICY];
|
2002-05-14 15:24:20 +04:00
|
|
|
m_lftc = (struct sadb_lifetime *)mhp[SADB_EXT_LIFETIME_CURRENT];
|
|
|
|
m_lfth = (struct sadb_lifetime *)mhp[SADB_EXT_LIFETIME_HARD];
|
1999-07-02 00:15:26 +04:00
|
|
|
|
2003-08-26 07:37:25 +04:00
|
|
|
if (m_saddr && m_daddr) {
|
|
|
|
/* source address */
|
|
|
|
sa = (struct sockaddr *)(m_saddr + 1);
|
|
|
|
switch (sa->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
case AF_INET6:
|
|
|
|
if (getnameinfo(sa, sa->sa_len, NULL, 0,
|
|
|
|
pbuf, sizeof(pbuf), NI_NUMERICSERV) != 0)
|
|
|
|
sport = 0; /*XXX*/
|
|
|
|
else
|
|
|
|
sport = atoi(pbuf);
|
|
|
|
printf("%s%s ", str_ipaddr(sa),
|
|
|
|
str_prefport(sa->sa_family,
|
|
|
|
m_saddr->sadb_address_prefixlen, sport,
|
|
|
|
m_saddr->sadb_address_proto));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("unknown-af ");
|
|
|
|
break;
|
|
|
|
}
|
1999-07-02 00:15:26 +04:00
|
|
|
|
2003-08-26 07:37:25 +04:00
|
|
|
/* destination address */
|
|
|
|
sa = (struct sockaddr *)(m_daddr + 1);
|
|
|
|
switch (sa->sa_family) {
|
|
|
|
case AF_INET:
|
|
|
|
case AF_INET6:
|
|
|
|
if (getnameinfo(sa, sa->sa_len, NULL, 0,
|
|
|
|
pbuf, sizeof(pbuf), NI_NUMERICSERV) != 0)
|
|
|
|
dport = 0; /*XXX*/
|
|
|
|
else
|
|
|
|
dport = atoi(pbuf);
|
|
|
|
printf("%s%s ", str_ipaddr(sa),
|
|
|
|
str_prefport(sa->sa_family,
|
|
|
|
m_daddr->sadb_address_prefixlen, dport,
|
|
|
|
m_saddr->sadb_address_proto));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("unknown-af ");
|
|
|
|
break;
|
|
|
|
}
|
1999-07-02 00:15:26 +04:00
|
|
|
|
2003-08-26 07:37:25 +04:00
|
|
|
/* upper layer protocol */
|
|
|
|
if (m_saddr->sadb_address_proto !=
|
|
|
|
m_daddr->sadb_address_proto) {
|
|
|
|
printf("upper layer protocol mismatched.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
str_upperspec(m_saddr->sadb_address_proto, sport, dport);
|
2000-01-31 17:15:30 +03:00
|
|
|
}
|
2003-08-26 07:49:05 +04:00
|
|
|
#ifdef SADB_X_EXT_TAG
|
2003-09-08 14:16:31 +04:00
|
|
|
else if (m_tag)
|
2003-08-26 07:37:25 +04:00
|
|
|
printf("tagged \"%s\" ", m_tag->sadb_x_tag_name);
|
2003-08-26 07:49:05 +04:00
|
|
|
#endif
|
2003-09-08 14:16:31 +04:00
|
|
|
else
|
|
|
|
printf("(no selector, probably per-socket policy) ");
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
/* policy */
|
|
|
|
{
|
|
|
|
char *d_xpl;
|
|
|
|
|
|
|
|
if (m_xpl == NULL) {
|
|
|
|
printf("no X_POLICY extension.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
d_xpl = ipsec_dump_policy((char *)m_xpl, "\n\t");
|
|
|
|
|
|
|
|
/* dump SPD */
|
|
|
|
printf("\n\t%s\n", d_xpl);
|
|
|
|
free(d_xpl);
|
|
|
|
}
|
|
|
|
|
2002-05-14 15:24:20 +04:00
|
|
|
/* lifetime */
|
|
|
|
if (m_lftc) {
|
|
|
|
printf("\tcreated: %s ",
|
|
|
|
str_time(m_lftc->sadb_lifetime_addtime));
|
|
|
|
printf("lastused: %s\n",
|
|
|
|
str_time(m_lftc->sadb_lifetime_usetime));
|
|
|
|
}
|
|
|
|
if (m_lfth) {
|
|
|
|
printf("\tlifetime: %lu(s) ",
|
|
|
|
(u_long)m_lfth->sadb_lifetime_addtime);
|
|
|
|
printf("validtime: %lu(s)\n",
|
|
|
|
(u_long)m_lfth->sadb_lifetime_usetime);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-06-12 14:40:37 +04:00
|
|
|
printf("\tspid=%ld seq=%ld pid=%ld\n",
|
|
|
|
(u_long)m_xpl->sadb_x_policy_id,
|
1999-07-02 00:15:26 +04:00
|
|
|
(u_long)m->sadb_msg_seq,
|
|
|
|
(u_long)m->sadb_msg_pid);
|
|
|
|
|
2000-01-31 17:15:30 +03:00
|
|
|
/* XXX TEST */
|
2000-06-12 14:40:37 +04:00
|
|
|
printf("\trefcnt=%u\n", m->sadb_msg_reserved);
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2000-01-31 17:15:30 +03:00
|
|
|
* set "ipaddress" to buffer.
|
1999-07-02 00:15:26 +04:00
|
|
|
*/
|
2000-01-31 17:15:30 +03:00
|
|
|
static char *
|
2000-06-12 14:40:37 +04:00
|
|
|
str_ipaddr(sa)
|
|
|
|
struct sockaddr *sa;
|
1999-07-02 00:15:26 +04:00
|
|
|
{
|
2000-06-12 14:40:37 +04:00
|
|
|
static char buf[NI_MAXHOST];
|
|
|
|
const int niflag = NI_NUMERICHOST;
|
1999-07-02 00:15:26 +04:00
|
|
|
|
2000-06-12 14:40:37 +04:00
|
|
|
if (sa == NULL)
|
1999-07-02 00:15:26 +04:00
|
|
|
return "";
|
|
|
|
|
2000-06-12 14:40:37 +04:00
|
|
|
if (getnameinfo(sa, sa->sa_len, buf, sizeof(buf), NULL, 0, niflag) == 0)
|
|
|
|
return buf;
|
|
|
|
return NULL;
|
2000-01-31 17:15:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* set "/prefix[port number]" to buffer.
|
|
|
|
*/
|
|
|
|
static char *
|
2002-05-14 15:24:20 +04:00
|
|
|
str_prefport(family, pref, port, ulp)
|
|
|
|
u_int family, pref, port, ulp;
|
2000-01-31 17:15:30 +03:00
|
|
|
{
|
|
|
|
static char buf[128];
|
2003-07-22 07:33:10 +04:00
|
|
|
char prefbuf[128];
|
|
|
|
char portbuf[128];
|
2000-06-12 14:40:37 +04:00
|
|
|
int plen;
|
|
|
|
|
|
|
|
switch (family) {
|
|
|
|
case AF_INET:
|
|
|
|
plen = sizeof(struct in_addr) << 3;
|
|
|
|
break;
|
|
|
|
case AF_INET6:
|
|
|
|
plen = sizeof(struct in6_addr) << 3;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return "?";
|
|
|
|
}
|
2000-01-31 17:15:30 +03:00
|
|
|
|
2000-06-12 14:40:37 +04:00
|
|
|
if (pref == plen)
|
2000-01-31 17:15:30 +03:00
|
|
|
prefbuf[0] = '\0';
|
|
|
|
else
|
|
|
|
snprintf(prefbuf, sizeof(prefbuf), "/%u", pref);
|
|
|
|
|
|
|
|
if (port == IPSEC_PORT_ANY)
|
|
|
|
snprintf(portbuf, sizeof(portbuf), "[%s]", "any");
|
|
|
|
else
|
2000-06-12 14:40:37 +04:00
|
|
|
snprintf(portbuf, sizeof(portbuf), "[%u]", port);
|
2000-01-31 17:15:30 +03:00
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), "%s%s", prefbuf, portbuf);
|
1999-07-02 00:15:26 +04:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2002-05-14 15:24:20 +04:00
|
|
|
static void
|
|
|
|
str_upperspec(ulp, p1, p2)
|
|
|
|
u_int ulp, p1, p2;
|
|
|
|
{
|
|
|
|
if (ulp == IPSEC_ULPROTO_ANY)
|
|
|
|
printf("any");
|
|
|
|
else {
|
|
|
|
struct protoent *ent;
|
|
|
|
|
|
|
|
switch (ulp) {
|
|
|
|
case IPPROTO_IPV4:
|
|
|
|
printf("ip4");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ent = getprotobynumber(ulp);
|
|
|
|
if (ent)
|
|
|
|
printf("%s", ent->p_name);
|
|
|
|
else
|
2002-06-27 18:39:45 +04:00
|
|
|
printf("%u", ulp);
|
2002-05-14 15:24:20 +04:00
|
|
|
|
|
|
|
endprotoent();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-02 00:15:26 +04:00
|
|
|
/*
|
|
|
|
* set "Mon Day Time Year" to buffer
|
|
|
|
*/
|
2000-01-31 17:15:30 +03:00
|
|
|
static char *
|
2000-06-12 14:40:37 +04:00
|
|
|
str_time(t)
|
2000-01-31 17:15:30 +03:00
|
|
|
time_t t;
|
1999-07-02 00:15:26 +04:00
|
|
|
{
|
|
|
|
static char buf[128];
|
|
|
|
|
|
|
|
if (t == 0) {
|
|
|
|
int i = 0;
|
|
|
|
for (;i < 20;) buf[i++] = ' ';
|
|
|
|
} else {
|
|
|
|
char *t0;
|
|
|
|
t0 = ctime(&t);
|
|
|
|
memcpy(buf, t0 + 4, 20);
|
|
|
|
}
|
|
|
|
|
|
|
|
buf[20] = '\0';
|
|
|
|
|
|
|
|
return(buf);
|
|
|
|
}
|
|
|
|
|
2000-01-31 17:15:30 +03:00
|
|
|
static void
|
2000-06-12 14:40:37 +04:00
|
|
|
str_lifetime_byte(x, str)
|
2000-01-31 17:15:30 +03:00
|
|
|
struct sadb_lifetime *x;
|
|
|
|
char *str;
|
1999-07-02 00:15:26 +04:00
|
|
|
{
|
|
|
|
double y;
|
|
|
|
char *unit;
|
|
|
|
int w;
|
|
|
|
|
|
|
|
if (x == NULL) {
|
|
|
|
printf("\t%s: 0(bytes)", str);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
if ((x->sadb_lifetime_bytes) / 1024 / 1024) {
|
|
|
|
y = (x->sadb_lifetime_bytes) * 1.0 / 1024 / 1024;
|
|
|
|
unit = "M";
|
|
|
|
w = 1;
|
|
|
|
} else if ((x->sadb_lifetime_bytes) / 1024) {
|
|
|
|
y = (x->sadb_lifetime_bytes) * 1.0 / 1024;
|
|
|
|
unit = "K";
|
|
|
|
w = 1;
|
|
|
|
} else {
|
|
|
|
y = (x->sadb_lifetime_bytes) * 1.0;
|
|
|
|
unit = "";
|
|
|
|
w = 0;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
y = (x->sadb_lifetime_bytes) * 1.0;
|
|
|
|
unit = "";
|
|
|
|
w = 0;
|
|
|
|
#endif
|
|
|
|
printf("\t%s: %.*f(%sbytes)", str, w, y, unit);
|
|
|
|
}
|