1 /* $FreeBSD: src/usr.sbin/setkey/setkey.c,v 1.1.2.3 2003/04/26 23:53:54 sumikawa Exp $ */
2 /* $DragonFly: src/usr.sbin/setkey/setkey.c,v 1.6 2005/12/05 02:40:28 swildner Exp $ */
3 /* $KAME: setkey.c,v 1.18 2001/05/08 04:36:39 itojun Exp $ */
6 * Copyright (C) 1995, 1996, 1997, 1998, and 1999 WIDE Project.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the project nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34 #include <sys/types.h>
35 #include <sys/param.h>
36 #include <sys/socket.h>
39 #include <net/route.h>
40 #include <netinet/in.h>
41 #include <net/pfkeyv2.h>
42 #include <netkey/keydb.h>
43 #include <netkey/key_debug.h>
44 #include <netinet6/ipsec.h>
58 int main(int, char **);
59 int get_supported(void);
60 void sendkeyshort(u_int
);
63 int postproc(struct sadb_msg
*, int);
64 const char *numstr(int);
65 void shortdump_hdr(void);
66 void shortdump(struct sadb_msg
*);
67 static void printdate(void);
68 static int32_t gmt2local(time_t);
71 #define MODE_CMDDUMP 2
72 #define MODE_CMDFLUSH 3
73 #define MODE_PROMISC 4
91 static time_t thiszone
;
95 extern int parse(FILE **);
100 printf("Usage:\t%s [-dv] -c\n", pname
);
101 printf("\t%s [-dv] -f (file)\n", pname
);
102 printf("\t%s [-Padlv] -D\n", pname
);
103 printf("\t%s [-Pdv] -F\n", pname
);
104 printf("\t%s [-h] -x\n", pname
);
110 main(int argc
, char **argv
)
117 if (argc
== 1) Usage();
119 thiszone
= gmt2local(0);
121 while ((c
= getopt(argc
, argv
, "acdf:hlvxDFP")) != -1) {
124 f_mode
= MODE_SCRIPT
;
128 f_mode
= MODE_SCRIPT
;
129 if ((fp
= fopen(optarg
, "r")) == NULL
) {
135 f_mode
= MODE_CMDDUMP
;
138 f_mode
= MODE_CMDFLUSH
;
150 f_mode
= MODE_PROMISC
;
170 sendkeyshort(f_policy
? SADB_X_SPDDUMP
: SADB_DUMP
);
173 sendkeyshort(f_policy
? SADB_X_SPDFLUSH
: SADB_FLUSH
);
177 if (get_supported() < 0) {
178 errx(-1, "%s", ipsec_strerror());
200 if ((so
= pfkey_open()) < 0) {
201 perror("pfkey_open");
209 if (pfkey_send_register(so
, SADB_SATYPE_UNSPEC
) < 0)
212 if (pfkey_recv_register(so
) < 0)
219 sendkeyshort(u_int type
)
221 struct sadb_msg
*m_msg
= (struct sadb_msg
*)m_buf
;
223 m_len
= sizeof(struct sadb_msg
);
225 m_msg
->sadb_msg_version
= PF_KEY_V2
;
226 m_msg
->sadb_msg_type
= type
;
227 m_msg
->sadb_msg_errno
= 0;
228 m_msg
->sadb_msg_satype
= SADB_SATYPE_UNSPEC
;
229 m_msg
->sadb_msg_len
= PFKEY_UNIT64(m_len
);
230 m_msg
->sadb_msg_reserved
= 0;
231 m_msg
->sadb_msg_seq
= 0;
232 m_msg
->sadb_msg_pid
= getpid();
240 struct sadb_msg
*m_msg
= (struct sadb_msg
*)m_buf
;
241 u_char rbuf
[1024 * 32]; /* XXX: Enough ? Should I do MSG_PEEK ? */
244 m_len
= sizeof(struct sadb_msg
);
246 m_msg
->sadb_msg_version
= PF_KEY_V2
;
247 m_msg
->sadb_msg_type
= SADB_X_PROMISC
;
248 m_msg
->sadb_msg_errno
= 0;
249 m_msg
->sadb_msg_satype
= 1;
250 m_msg
->sadb_msg_len
= PFKEY_UNIT64(m_len
);
251 m_msg
->sadb_msg_reserved
= 0;
252 m_msg
->sadb_msg_seq
= 0;
253 m_msg
->sadb_msg_pid
= getpid();
255 if ((so
= socket(PF_KEY
, SOCK_RAW
, PF_KEY_V2
)) < 0) {
256 err(1, "socket(PF_KEY)");
260 if ((len
= send(so
, m_buf
, m_len
, 0)) < 0) {
266 struct sadb_msg
*base
;
268 if ((len
= recv(so
, rbuf
, sizeof(*base
), MSG_PEEK
)) < 0) {
273 if (len
!= sizeof(*base
))
276 base
= (struct sadb_msg
*)rbuf
;
277 if ((len
= recv(so
, rbuf
, PFKEY_UNUNIT64(base
->sadb_msg_len
),
285 for (i
= 0; i
< len
; i
++) {
288 printf("%02x ", rbuf
[i
] & 0xff);
295 /* adjust base pointer for promisc mode */
296 if (base
->sadb_msg_type
== SADB_X_PROMISC
) {
297 if (sizeof(*base
) < len
)
314 u_char rbuf
[1024 * 32]; /* XXX: Enough ? Should I do MSG_PEEK ? */
316 struct sadb_msg
*msg
;
319 if ((so
= pfkey_open()) < 0) {
320 perror("pfkey_open");
326 if (setsockopt(so
, SOL_SOCKET
, SO_RCVTIMEO
, &tv
, sizeof(tv
)) < 0) {
327 perror("setsockopt");
335 kdebug_sadb((struct sadb_msg
*)m_buf
);
339 if ((len
= send(so
, m_buf
, m_len
, 0)) < 0) {
344 msg
= (struct sadb_msg
*)rbuf
;
346 if ((len
= recv(so
, rbuf
, sizeof(rbuf
), 0)) < 0) {
351 if (PFKEY_UNUNIT64(msg
->sadb_msg_len
) != len
) {
352 warnx("invalid keymsg length");
357 kdebug_sadb((struct sadb_msg
*)rbuf
);
360 if (postproc(msg
, len
) < 0)
362 } while (msg
->sadb_msg_errno
|| msg
->sadb_msg_seq
);
376 postproc(struct sadb_msg
*msg
, int len
)
378 if (msg
->sadb_msg_errno
!= 0) {
382 if (f_mode
== MODE_SCRIPT
)
383 snprintf(inf
, sizeof(inf
), "The result of line %d: ", lineno
);
387 switch (msg
->sadb_msg_errno
) {
389 switch (msg
->sadb_msg_type
) {
392 case SADB_X_SPDDELETE
:
396 errmsg
= "No SAD entries";
399 errmsg
= "No SPD entries";
404 errmsg
= strerror(msg
->sadb_msg_errno
);
406 printf("%s%s.\n", inf
, errmsg
);
410 switch (msg
->sadb_msg_type
) {
416 /* filter out DEAD SAs */
418 caddr_t mhp
[SADB_EXT_MAX
+ 1];
420 pfkey_align(msg
, mhp
);
422 if ((sa
= (struct sadb_sa
*)mhp
[SADB_EXT_SA
]) != NULL
) {
423 if (sa
->sadb_sa_state
== SADB_SASTATE_DEAD
)
431 msg
= (struct sadb_msg
*)((caddr_t
)msg
+
432 PFKEY_UNUNIT64(msg
->sadb_msg_len
));
434 kdebug_sadb((struct sadb_msg
*)msg
);
441 if (msg
->sadb_msg_seq
== 0) break;
442 msg
= (struct sadb_msg
*)((caddr_t
)msg
+
443 PFKEY_UNUNIT64(msg
->sadb_msg_len
));
445 kdebug_sadb((struct sadb_msg
*)msg
);
454 /*------------------------------------------------------------*/
455 static char *satype
[] = {
456 NULL
, NULL
, "ah", "esp"
458 static char *sastate
[] = {
461 static char *ipproto
[] = {
462 /*0*/ "ip", "icmp", "igmp", "ggp", "ip4",
463 NULL
, "tcp", NULL
, "egp", NULL
,
464 /*10*/ NULL
, NULL
, NULL
, NULL
, NULL
,
465 NULL
, NULL
, "udp", NULL
, NULL
,
466 /*20*/ NULL
, NULL
, "idp", NULL
, NULL
,
467 NULL
, NULL
, NULL
, NULL
, "tp",
468 /*30*/ NULL
, NULL
, NULL
, NULL
, NULL
,
469 NULL
, NULL
, NULL
, NULL
, NULL
,
470 /*40*/ NULL
, "ip6", NULL
, "rt6", "frag6",
471 NULL
, "rsvp", "gre", NULL
, NULL
,
472 /*50*/ "esp", "ah", NULL
, NULL
, NULL
,
473 NULL
, NULL
, NULL
, "icmp6", "none",
477 #define STR_OR_ID(x, tab) \
478 (((x) < sizeof(tab)/sizeof(tab[0]) && tab[(x)]) ? tab[(x)] : numstr(x))
484 snprintf(buf
, sizeof(buf
), "#%d", x
);
491 printf("%-4s %-3s %-1s %-8s %-7s %s -> %s\n",
492 "time", "p", "s", "spi", "ltime", "src", "dst");
496 shortdump(struct sadb_msg
*msg
)
498 caddr_t mhp
[SADB_EXT_MAX
+ 1];
499 char buf
[NI_MAXHOST
], pbuf
[NI_MAXSERV
];
501 struct sadb_address
*saddr
;
502 struct sadb_lifetime
*lts
, *lth
, *ltc
;
509 pfkey_align(msg
, mhp
);
512 printf("%02lu%02lu", (u_long
)(cur
% 3600) / 60, (u_long
)(cur
% 60));
514 printf(" %-3s", STR_OR_ID(msg
->sadb_msg_satype
, satype
));
516 if ((sa
= (struct sadb_sa
*)mhp
[SADB_EXT_SA
]) != NULL
) {
517 printf(" %-1s", STR_OR_ID(sa
->sadb_sa_state
, sastate
));
518 printf(" %08x", (u_int32_t
)ntohl(sa
->sadb_sa_spi
));
520 printf("%-1s %-8s", "?", "?");
522 lts
= (struct sadb_lifetime
*)mhp
[SADB_EXT_LIFETIME_SOFT
];
523 lth
= (struct sadb_lifetime
*)mhp
[SADB_EXT_LIFETIME_HARD
];
524 ltc
= (struct sadb_lifetime
*)mhp
[SADB_EXT_LIFETIME_CURRENT
];
525 if (lts
&& lth
&& ltc
) {
526 if (ltc
->sadb_lifetime_addtime
== 0)
529 t
= (u_long
)(cur
- ltc
->sadb_lifetime_addtime
);
531 strcpy(buf
, " big/");
533 snprintf(buf
, sizeof(buf
), " %3lu/", (u_long
)t
);
536 t
= (u_long
)lth
->sadb_lifetime_addtime
;
540 snprintf(buf
, sizeof(buf
), "%-3lu", (u_long
)t
);
543 printf(" ??\?/???"); /* backslash to avoid trigraph ??/ */
547 if ((saddr
= (struct sadb_address
*)mhp
[SADB_EXT_ADDRESS_SRC
]) != NULL
) {
548 if (saddr
->sadb_address_proto
)
549 printf("%s ", STR_OR_ID(saddr
->sadb_address_proto
, ipproto
));
550 s
= (struct sockaddr
*)(saddr
+ 1);
551 getnameinfo(s
, s
->sa_len
, buf
, sizeof(buf
),
552 pbuf
, sizeof(pbuf
), NI_NUMERICHOST
|NI_NUMERICSERV
);
553 if (strcmp(pbuf
, "0") != 0)
554 printf("%s[%s]", buf
, pbuf
);
562 if ((saddr
= (struct sadb_address
*)mhp
[SADB_EXT_ADDRESS_DST
]) != NULL
) {
563 if (saddr
->sadb_address_proto
)
564 printf("%s ", STR_OR_ID(saddr
->sadb_address_proto
, ipproto
));
566 s
= (struct sockaddr
*)(saddr
+ 1);
567 getnameinfo(s
, s
->sa_len
, buf
, sizeof(buf
),
568 pbuf
, sizeof(pbuf
), NI_NUMERICHOST
|NI_NUMERICSERV
);
569 if (strcmp(pbuf
, "0") != 0)
570 printf("%s[%s]", buf
, pbuf
);
579 /* From: tcpdump(1):gmt2local.c and util.c */
581 * Print the timestamp
589 if (gettimeofday(&tp
, NULL
) == -1) {
590 perror("gettimeofday");
596 s
= (tp
.tv_sec
+ thiszone
) % 86400;
597 printf("%02d:%02d:%02d.%06u ",
598 s
/ 3600, (s
% 3600) / 60, s
% 60, (u_int32_t
)tp
.tv_usec
);
599 } else if (f_tflag
> 1) {
600 /* Unix timeval style */
601 printf("%u.%06u ", (u_int32_t
)tp
.tv_sec
, (u_int32_t
)tp
.tv_usec
);
608 * Returns the difference between gmt and local time in seconds.
609 * Use gmtime() and localtime() to keep things simple.
615 struct tm
*gmt
, *loc
;
623 dt
= (loc
->tm_hour
- gmt
->tm_hour
) * 60 * 60 +
624 (loc
->tm_min
- gmt
->tm_min
) * 60;
627 * If the year or julian day is different, we span 00:00 GMT
628 * and must add or subtract a day. Check the year first to
629 * avoid problems when the julian day wraps.
631 dir
= loc
->tm_year
- gmt
->tm_year
;
633 dir
= loc
->tm_yday
- gmt
->tm_yday
;
634 dt
+= dir
* 24 * 60 * 60;