1 /*
2 *
3 * CDDL HEADER START
4 *
5 * The contents of this file are subject to the terms of the
6 * Common Development and Distribution License (the "License").
7 * You may not use this file except in compliance with the License.
8 *
9 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 * or http://www.opensolaris.org/os/licensing.
11 * See the License for the specific language governing permissions
12 * and limitations under the License.
13 *
14 * When distributing Covered Code, include this CDDL HEADER in each
15 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 * If applicable, add the following below this CDDL HEADER, with the
17 * fields enclosed by brackets "[]" replaced with your own identifying
18 * information: Portions Copyright [yyyy] [name of copyright owner]
19 *
20 * CDDL HEADER END
21 */
22 /*
23 * Copyright 2009 Sun Microsystems, Inc. All rights reserved.
24 * Use is subject to license terms.
25 * Copyright 2012 Milan Juri. All rights reserved.
26 */
27
28 #include <unistd.h>
29 #include <stdio.h>
30 #include <stdlib.h>
31 #include <stdarg.h>
32 #include <sys/types.h>
33 #include <sys/stat.h>
34 #include <fcntl.h>
35 #include <sys/sysconf.h>
36 #include <strings.h>
37 #include <ctype.h>
38 #include <errno.h>
39 #include <sys/socket.h>
40 #include <netdb.h>
41 #include <netinet/in.h>
42 #include <arpa/inet.h>
43 #include <net/pfkeyv2.h>
44 #include <net/pfpolicy.h>
45 #include <libintl.h>
46 #include <setjmp.h>
47 #include <libgen.h>
48 #include <libscf.h>
49
50 #include "ipsec_util.h"
51 #include "ikedoor.h"
52
53 /*
54 * This file contains support functions that are shared by the ipsec
55 * utilities and daemons including ipseckey(1m), ikeadm(1m) and in.iked(1m).
56 */
57
58
59 #define EFD(file) (((file) == stdout) ? stderr : (file))
60
61 /* Limits for interactive mode. */
62 #define MAX_LINE_LEN IBUF_SIZE
63 #define MAX_CMD_HIST 64000 /* in bytes */
64
65 /* Set standard default/initial values for globals... */
66 boolean_t pflag = B_FALSE; /* paranoid w.r.t. printing keying material */
67 boolean_t nflag = B_FALSE; /* avoid nameservice? */
68 boolean_t interactive = B_FALSE; /* util not running on cmdline */
69 boolean_t readfile = B_FALSE; /* cmds are being read from a file */
70 uint_t lineno = 0; /* track location if reading cmds from file */
71 uint_t lines_added = 0;
72 uint_t lines_parsed = 0;
73 jmp_buf env; /* for error recovery in interactive/readfile modes */
74 char *my_fmri = NULL;
75 FILE *debugfile = stderr;
76 static GetLine *gl = NULL; /* for interactive mode */
77
78 /*
79 * Print errno and exit if cmdline or readfile, reset state if interactive
80 * The error string *what should be dgettext()'d before calling bail().
81 */
82 void
83 bail(char *what)
84 {
85 if (errno != 0)
86 warn(what);
87 else
88 warnx(dgettext(TEXT_DOMAIN, "Error: %s"), what);
89 if (readfile) {
90 return;
91 }
92 if (interactive && !readfile)
93 longjmp(env, 2);
94 EXIT_FATAL(NULL);
95 }
96
97 /*
98 * Print caller-supplied variable-arg error msg, then exit if cmdline or
99 * readfile, or reset state if interactive.
100 */
101 /*PRINTFLIKE1*/
102 void
103 bail_msg(char *fmt, ...)
104 {
105 va_list ap;
106 char msgbuf[BUFSIZ];
107
108 va_start(ap, fmt);
109 (void) vsnprintf(msgbuf, BUFSIZ, fmt, ap);
110 va_end(ap);
111 if (readfile)
112 warnx(dgettext(TEXT_DOMAIN,
113 "ERROR on line %u:\n%s\n"), lineno, msgbuf);
114 else
115 warnx(dgettext(TEXT_DOMAIN, "ERROR: %s\n"), msgbuf);
116
117 if (interactive && !readfile)
118 longjmp(env, 1);
119
120 EXIT_FATAL(NULL);
121 }
122
123 /*
124 * bytecnt2str() wrapper. Zeroes out the input buffer and if the number
125 * of bytes to be converted is more than 1K, it will produce readable string
126 * in parentheses, store it in the original buffer and return the pointer to it.
127 * Maximum length of the returned string is 14 characters (not including
128 * the terminating zero).
129 */
130 char *
131 bytecnt2out(uint64_t num, char *buf, size_t bufsiz, int flags)
132 {
133 char *str;
134
135 (void) memset(buf, '\0', bufsiz);
136
137 if (num > 1024) {
138 /* Return empty string in case of out-of-memory. */
139 if ((str = malloc(bufsiz)) == NULL)
140 return (buf);
141
142 (void) bytecnt2str(num, str, bufsiz);
143 /* Detect overflow. */
144 if (strlen(str) == 0) {
145 free(str);
146 return (buf);
147 }
148
149 /* Emit nothing in case of overflow. */
150 if (snprintf(buf, bufsiz, "%s(%sB)%s",
151 flags & SPC_BEGIN ? " " : "", str,
152 flags & SPC_END ? " " : "") >= bufsiz)
153 (void) memset(buf, '\0', bufsiz);
154
155 free(str);
156 }
157
158 return (buf);
159 }
160
161 /*
162 * Convert 64-bit number to human readable string. Useful mainly for the
163 * byte lifetime counters. Returns pointer to the user supplied buffer.
164 * Able to convert up to Exabytes. Maximum length of the string produced
165 * is 9 characters (not counting the terminating zero).
166 */
167 char *
168 bytecnt2str(uint64_t num, char *buf, size_t buflen)
169 {
170 uint64_t n = num;
171 char u;
172 int index = 0;
173
174 while (n >= 1024) {
175 n /= 1024;
176 index++;
177 }
178
179 /* The field has all units this function can represent. */
180 u = " KMGTPE"[index];
181
182 if (index == 0) {
183 /* Less than 1K */
184 if (snprintf(buf, buflen, "%llu ", num) >= buflen)
185 (void) memset(buf, '\0', buflen);
186 } else {
187 /* Otherwise display 2 precision digits. */
188 if (snprintf(buf, buflen, "%.2f %c",
189 (double)num / (1ULL << index * 10), u) >= buflen)
190 (void) memset(buf, '\0', buflen);
191 }
192
193 return (buf);
194 }
195
196 /*
197 * secs2str() wrapper. Zeroes out the input buffer and if the number of
198 * seconds to be converted is more than minute, it will produce readable
199 * string in parentheses, store it in the original buffer and return the
200 * pointer to it.
201 */
202 char *
203 secs2out(unsigned int secs, char *buf, int bufsiz, int flags)
204 {
205 char *str;
206
207 (void) memset(buf, '\0', bufsiz);
208
209 if (secs > 60) {
210 /* Return empty string in case of out-of-memory. */
211 if ((str = malloc(bufsiz)) == NULL)
212 return (buf);
213
214 (void) secs2str(secs, str, bufsiz);
215 /* Detect overflow. */
216 if (strlen(str) == 0) {
217 free(str);
218 return (buf);
219 }
220
221 /* Emit nothing in case of overflow. */
222 if (snprintf(buf, bufsiz, "%s(%s)%s",
223 flags & SPC_BEGIN ? " " : "", str,
224 flags & SPC_END ? " " : "") >= bufsiz)
225 (void) memset(buf, '\0', bufsiz);
226
227 free(str);
228 }
229
230 return (buf);
231 }
232
233 /*
234 * Convert number of seconds to human readable string. Useful mainly for
235 * the lifetime counters. Returns pointer to the user supplied buffer.
236 * Able to convert up to days.
237 */
238 char *
239 secs2str(unsigned int secs, char *buf, int bufsiz)
240 {
241 double val = secs;
242 char *unit = "second";
243
244 if (val >= 24*60*60) {
245 val /= 86400;
246 unit = "day";
247 } else if (val >= 60*60) {
248 val /= 60*60;
249 unit = "hour";
250 } else if (val >= 60) {
251 val /= 60;
252 unit = "minute";
253 }
254
255 /* Emit nothing in case of overflow. */
256 if (snprintf(buf, bufsiz, "%.2f %s%s", val, unit,
257 val >= 2 ? "s" : "") >= bufsiz)
258 (void) memset(buf, '\0', bufsiz);
259
260 return (buf);
261 }
262
263 /*
264 * dump_XXX functions produce ASCII output from various structures.
265 *
266 * Because certain errors need to do this to stderr, dump_XXX functions
267 * take a FILE pointer.
268 *
269 * If an error occured while writing to the specified file, these
270 * functions return -1, zero otherwise.
271 */
272
273 int
274 dump_sockaddr(struct sockaddr *sa, uint8_t prefixlen, boolean_t addr_only,
275 FILE *where, boolean_t ignore_nss)
276 {
277 struct sockaddr_in *sin;
278 struct sockaddr_in6 *sin6;
279 char *printable_addr, *protocol;
280 uint8_t *addrptr;
281 /* Add 4 chars to hold '/nnn' for prefixes. */
282 char storage[INET6_ADDRSTRLEN + 4];
283 uint16_t port;
284 boolean_t unspec;
285 struct hostent *hp;
286 int getipnode_errno, addrlen;
287
288 switch (sa->sa_family) {
289 case AF_INET:
290 /* LINTED E_BAD_PTR_CAST_ALIGN */
291 sin = (struct sockaddr_in *)sa;
292 addrptr = (uint8_t *)&sin->sin_addr;
293 port = sin->sin_port;
294 protocol = "AF_INET";
295 unspec = (sin->sin_addr.s_addr == 0);
296 addrlen = sizeof (sin->sin_addr);
297 break;
298 case AF_INET6:
299 /* LINTED E_BAD_PTR_CAST_ALIGN */
300 sin6 = (struct sockaddr_in6 *)sa;
301 addrptr = (uint8_t *)&sin6->sin6_addr;
302 port = sin6->sin6_port;
303 protocol = "AF_INET6";
304 unspec = IN6_IS_ADDR_UNSPECIFIED(&sin6->sin6_addr);
305 addrlen = sizeof (sin6->sin6_addr);
306 break;
307 default:
308 return (0);
309 }
310
311 if (inet_ntop(sa->sa_family, addrptr, storage, INET6_ADDRSTRLEN) ==
312 NULL) {
313 printable_addr = dgettext(TEXT_DOMAIN, "Invalid IP address.");
314 } else {
315 char prefix[5]; /* "/nnn" with terminator. */
316
317 (void) snprintf(prefix, sizeof (prefix), "/%d", prefixlen);
318 printable_addr = storage;
319 if (prefixlen != 0) {
320 (void) strlcat(printable_addr, prefix,
321 sizeof (storage));
322 }
323 }
324 if (addr_only) {
325 if (fprintf(where, "%s", printable_addr) < 0)
326 return (-1);
327 } else {
328 if (fprintf(where, dgettext(TEXT_DOMAIN,
329 "%s: port %d, %s"), protocol,
330 ntohs(port), printable_addr) < 0)
331 return (-1);
332 if (ignore_nss == B_FALSE) {
333 /*
334 * Do AF_independent reverse hostname lookup here.
335 */
336 if (unspec) {
337 if (fprintf(where,
338 dgettext(TEXT_DOMAIN,
339 " <unspecified>")) < 0)
340 return (-1);
341 } else {
342 hp = getipnodebyaddr((char *)addrptr, addrlen,
343 sa->sa_family, &getipnode_errno);
344 if (hp != NULL) {
345 if (fprintf(where,
346 " (%s)", hp->h_name) < 0)
347 return (-1);
348 freehostent(hp);
349 } else {
350 if (fprintf(where,
351 dgettext(TEXT_DOMAIN,
352 " <unknown>")) < 0)
353 return (-1);
354 }
355 }
356 }
357 if (fputs(".\n", where) == EOF)
358 return (-1);
359 }
360 return (0);
361 }
362
363 /*
364 * Dump a key, any salt and bitlen.
365 * The key is made up of a stream of bits. If the algorithm requires a salt
366 * value, this will also be part of the dumped key. The last "saltbits" of the
367 * key string, reading left to right will be the salt value. To make it easier
368 * to see which bits make up the key, the salt value is enclosed in []'s.
369 * This function can also be called when ipseckey(1m) -s is run, this "saves"
370 * the SAs, including the key to a file. When this is the case, the []'s are
371 * not printed.
372 *
373 * The implementation allows the kernel to be told about the length of the salt
374 * in whole bytes only. If this changes, this function will need to be updated.
375 */
376 int
377 dump_key(uint8_t *keyp, uint_t bitlen, uint_t saltbits, FILE *where,
378 boolean_t separate_salt)
379 {
380 int numbytes, saltbytes;
381
382 numbytes = SADB_1TO8(bitlen);
383 saltbytes = SADB_1TO8(saltbits);
384 numbytes += saltbytes;
385
386 /* The & 0x7 is to check for leftover bits. */
387 if ((bitlen & 0x7) != 0)
388 numbytes++;
389
390 while (numbytes-- != 0) {
391 if (pflag) {
392 /* Print no keys if paranoid */
393 if (fprintf(where, "XX") < 0)
394 return (-1);
395 } else {
396 if (fprintf(where, "%02x", *keyp++) < 0)
397 return (-1);
398 }
399 if (separate_salt && saltbytes != 0 &&
400 numbytes == saltbytes) {
401 if (fprintf(where, "[") < 0)
402 return (-1);
403 }
404 }
405
406 if (separate_salt && saltbits != 0) {
407 if (fprintf(where, "]/%u+%u", bitlen, saltbits) < 0)
408 return (-1);
409 } else {
410 if (fprintf(where, "/%u", bitlen + saltbits) < 0)
411 return (-1);
412 }
413
414 return (0);
415 }
416
417 /*
418 * Print an authentication or encryption algorithm
419 */
420 static int
421 dump_generic_alg(uint8_t alg_num, int proto_num, FILE *where)
422 {
423 struct ipsecalgent *alg;
424
425 alg = getipsecalgbynum(alg_num, proto_num, NULL);
426 if (alg == NULL) {
427 if (fprintf(where, dgettext(TEXT_DOMAIN,
428 "<unknown %u>"), alg_num) < 0)
429 return (-1);
430 return (0);
431 }
432
433 /*
434 * Special-case <none> for backward output compat.
435 * Assume that SADB_AALG_NONE == SADB_EALG_NONE.
436 */
437 if (alg_num == SADB_AALG_NONE) {
438 if (fputs(dgettext(TEXT_DOMAIN,
439 "<none>"), where) == EOF)
440 return (-1);
441 } else {
442 if (fputs(alg->a_names[0], where) == EOF)
443 return (-1);
444 }
445
446 freeipsecalgent(alg);
447 return (0);
448 }
449
450 int
451 dump_aalg(uint8_t aalg, FILE *where)
452 {
453 return (dump_generic_alg(aalg, IPSEC_PROTO_AH, where));
454 }
455
456 int
457 dump_ealg(uint8_t ealg, FILE *where)
458 {
459 return (dump_generic_alg(ealg, IPSEC_PROTO_ESP, where));
460 }
461
462 /*
463 * Print an SADB_IDENTTYPE string
464 *
465 * Also return TRUE if the actual ident may be printed, FALSE if not.
466 *
467 * If rc is not NULL, set its value to -1 if an error occured while writing
468 * to the specified file, zero otherwise.
469 */
470 boolean_t
471 dump_sadb_idtype(uint8_t idtype, FILE *where, int *rc)
472 {
473 boolean_t canprint = B_TRUE;
474 int rc_val = 0;
475
476 switch (idtype) {
477 case SADB_IDENTTYPE_PREFIX:
478 if (fputs(dgettext(TEXT_DOMAIN, "prefix"), where) == EOF)
479 rc_val = -1;
480 break;
481 case SADB_IDENTTYPE_FQDN:
482 if (fputs(dgettext(TEXT_DOMAIN, "FQDN"), where) == EOF)
483 rc_val = -1;
484 break;
485 case SADB_IDENTTYPE_USER_FQDN:
486 if (fputs(dgettext(TEXT_DOMAIN,
487 "user-FQDN (mbox)"), where) == EOF)
488 rc_val = -1;
489 break;
490 case SADB_X_IDENTTYPE_DN:
491 if (fputs(dgettext(TEXT_DOMAIN, "ASN.1 DER Distinguished Name"),
492 where) == EOF)
493 rc_val = -1;
494 canprint = B_FALSE;
495 break;
496 case SADB_X_IDENTTYPE_GN:
497 if (fputs(dgettext(TEXT_DOMAIN, "ASN.1 DER Generic Name"),
498 where) == EOF)
499 rc_val = -1;
500 canprint = B_FALSE;
501 break;
502 case SADB_X_IDENTTYPE_KEY_ID:
503 if (fputs(dgettext(TEXT_DOMAIN, "Generic key id"),
504 where) == EOF)
505 rc_val = -1;
506 break;
507 case SADB_X_IDENTTYPE_ADDR_RANGE:
508 if (fputs(dgettext(TEXT_DOMAIN, "Address range"), where) == EOF)
509 rc_val = -1;
510 break;
511 default:
512 if (fprintf(where, dgettext(TEXT_DOMAIN,
513 "<unknown %u>"), idtype) < 0)
514 rc_val = -1;
515 break;
516 }
517
518 if (rc != NULL)
519 *rc = rc_val;
520
521 return (canprint);
522 }
523
524 /*
525 * Slice an argv/argc vector from an interactive line or a read-file line.
526 */
527 static int
528 create_argv(char *ibuf, int *newargc, char ***thisargv)
529 {
530 unsigned int argvlen = START_ARG;
531 char **current;
532 boolean_t firstchar = B_TRUE;
533 boolean_t inquotes = B_FALSE;
534
535 *thisargv = malloc(sizeof (char *) * argvlen);
536 if ((*thisargv) == NULL)
537 return (MEMORY_ALLOCATION);
538 current = *thisargv;
539 *current = NULL;
540
541 for (; *ibuf != '\0'; ibuf++) {
542 if (isspace(*ibuf)) {
543 if (inquotes) {
544 continue;
545 }
546 if (*current != NULL) {
547 *ibuf = '\0';
548 current++;
549 if (*thisargv + argvlen == current) {
550 /* Regrow ***thisargv. */
551 if (argvlen == TOO_MANY_ARGS) {
552 free(*thisargv);
553 return (TOO_MANY_TOKENS);
554 }
555 /* Double the allocation. */
556 current = realloc(*thisargv,
557 sizeof (char *) * (argvlen << 1));
558 if (current == NULL) {
559 free(*thisargv);
560 return (MEMORY_ALLOCATION);
561 }
562 *thisargv = current;
563 current += argvlen;
564 argvlen <<= 1; /* Double the size. */
565 }
566 *current = NULL;
567 }
568 } else {
569 if (firstchar) {
570 firstchar = B_FALSE;
571 if (*ibuf == COMMENT_CHAR || *ibuf == '\n') {
572 free(*thisargv);
573 return (COMMENT_LINE);
574 }
575 }
576 if (*ibuf == QUOTE_CHAR) {
577 if (inquotes) {
578 inquotes = B_FALSE;
579 *ibuf = '\0';
580 } else {
581 inquotes = B_TRUE;
582 }
583 continue;
584 }
585 if (*current == NULL) {
586 *current = ibuf;
587 (*newargc)++;
588 }
589 }
590 }
591
592 /*
593 * Tricky corner case...
594 * I've parsed _exactly_ the amount of args as I have space. It
595 * won't return NULL-terminated, and bad things will happen to
596 * the caller.
597 */
598 if (argvlen == *newargc) {
599 current = realloc(*thisargv, sizeof (char *) * (argvlen + 1));
600 if (current == NULL) {
601 free(*thisargv);
602 return (MEMORY_ALLOCATION);
603 }
604 *thisargv = current;
605 current[argvlen] = NULL;
606 }
607
608 return (SUCCESS);
609 }
610
611 /*
612 * init interactive mode if needed and not yet initialized
613 */
614 static void
615 init_interactive(FILE *infile, CplMatchFn *match_fn)
616 {
617 if (infile == stdin) {
618 if (gl == NULL) {
619 if ((gl = new_GetLine(MAX_LINE_LEN,
620 MAX_CMD_HIST)) == NULL)
621 errx(1, dgettext(TEXT_DOMAIN,
622 "tecla initialization failed"));
623
624 if (gl_customize_completion(gl, NULL,
625 match_fn) != 0) {
626 (void) del_GetLine(gl);
627 errx(1, dgettext(TEXT_DOMAIN,
628 "tab completion failed to initialize"));
629 }
630
631 /*
632 * In interactive mode we only want to terminate
633 * when explicitly requested (e.g. by a command).
634 */
635 (void) sigset(SIGINT, SIG_IGN);
636 }
637 } else {
638 readfile = B_TRUE;
639 }
640 }
641
642 /*
643 * free tecla data structure
644 */
645 static void
646 fini_interactive(void)
647 {
648 if (gl != NULL)
649 (void) del_GetLine(gl);
650 }
651
652 /*
653 * Get single input line, wrapping around interactive and non-interactive
654 * mode.
655 */
656 static char *
657 do_getstr(FILE *infile, char *prompt, char *ibuf, size_t ibuf_size)
658 {
659 char *line;
660
661 if (infile != stdin)
662 return (fgets(ibuf, ibuf_size, infile));
663
664 /*
665 * If the user hits ^C then we want to catch it and
666 * start over. If the user hits EOF then we want to
667 * bail out.
668 */
669 once_again:
670 line = gl_get_line(gl, prompt, NULL, -1);
671 if (gl_return_status(gl) == GLR_SIGNAL) {
672 gl_abandon_line(gl);
673 goto once_again;
674 } else if (gl_return_status(gl) == GLR_ERROR) {
675 gl_abandon_line(gl);
676 errx(1, dgettext(TEXT_DOMAIN, "Error reading terminal: %s\n"),
677 gl_error_message(gl, NULL, 0));
678 } else {
679 if (line != NULL) {
680 if (strlcpy(ibuf, line, ibuf_size) >= ibuf_size)
681 warnx(dgettext(TEXT_DOMAIN,
682 "Line too long (max=%d chars)"),
683 ibuf_size);
684 line = ibuf;
685 }
686 }
687
688 return (line);
689 }
690
691 /*
692 * Enter a mode where commands are read from a file. Treat stdin special.
693 */
694 void
695 do_interactive(FILE *infile, char *configfile, char *promptstring,
696 char *my_fmri, parse_cmdln_fn parseit, CplMatchFn *match_fn)
697 {
698 char ibuf[IBUF_SIZE], holder[IBUF_SIZE];
699 char *hptr, **thisargv, *ebuf;
700 int thisargc;
701 boolean_t continue_in_progress = B_FALSE;
702 char *s;
703
704 (void) setjmp(env);
705
706 ebuf = NULL;
707 interactive = B_TRUE;
708 bzero(ibuf, IBUF_SIZE);
709
710 /* panics for us */
711 init_interactive(infile, match_fn);
712
713 while ((s = do_getstr(infile, promptstring, ibuf, IBUF_SIZE)) != NULL) {
714 if (readfile)
715 lineno++;
716 thisargc = 0;
717 thisargv = NULL;
718
719 /*
720 * Check byte IBUF_SIZE - 2, because byte IBUF_SIZE - 1 will
721 * be null-terminated because of fgets().
722 */
723 if (ibuf[IBUF_SIZE - 2] != '\0') {
724 if (infile == stdin) {
725 /* do_getstr() issued a warning already */
726 bzero(ibuf, IBUF_SIZE);
727 continue;
728 } else {
729 ipsecutil_exit(SERVICE_FATAL, my_fmri,
730 debugfile, dgettext(TEXT_DOMAIN,
731 "Line %d too big."), lineno);
732 }
733 }
734
735 if (!continue_in_progress) {
736 /* Use -2 because of \n from fgets. */
737 if (ibuf[strlen(ibuf) - 2] == CONT_CHAR) {
738 /*
739 * Can use strcpy here, I've checked the
740 * length already.
741 */
742 (void) strcpy(holder, ibuf);
743 hptr = &(holder[strlen(holder)]);
744
745 /* Remove the CONT_CHAR from the string. */
746 hptr[-2] = ' ';
747
748 continue_in_progress = B_TRUE;
749 bzero(ibuf, IBUF_SIZE);
750 continue;
751 }
752 } else {
753 /* Handle continuations... */
754 (void) strncpy(hptr, ibuf,
755 (size_t)(&(holder[IBUF_SIZE]) - hptr));
756 if (holder[IBUF_SIZE - 1] != '\0') {
757 ipsecutil_exit(SERVICE_FATAL, my_fmri,
758 debugfile, dgettext(TEXT_DOMAIN,
759 "Command buffer overrun."));
760 }
761 /* Use - 2 because of \n from fgets. */
762 if (hptr[strlen(hptr) - 2] == CONT_CHAR) {
763 bzero(ibuf, IBUF_SIZE);
764 hptr += strlen(hptr);
765
766 /* Remove the CONT_CHAR from the string. */
767 hptr[-2] = ' ';
768
769 continue;
770 } else {
771 continue_in_progress = B_FALSE;
772 /*
773 * I've already checked the length...
774 */
775 (void) strcpy(ibuf, holder);
776 }
777 }
778
779 /*
780 * Just in case the command fails keep a copy of the
781 * command buffer for diagnostic output.
782 */
783 if (readfile) {
784 /*
785 * The error buffer needs to be big enough to
786 * hold the longest command string, plus
787 * some extra text, see below.
788 */
789 ebuf = calloc((IBUF_SIZE * 2), sizeof (char));
790 if (ebuf == NULL) {
791 ipsecutil_exit(SERVICE_FATAL, my_fmri,
792 debugfile, dgettext(TEXT_DOMAIN,
793 "Memory allocation error."));
794 } else {
795 (void) snprintf(ebuf, (IBUF_SIZE * 2),
796 dgettext(TEXT_DOMAIN,
797 "Config file entry near line %u "
798 "caused error(s) or warnings:\n\n%s\n\n"),
799 lineno, ibuf);
800 }
801 }
802
803 switch (create_argv(ibuf, &thisargc, &thisargv)) {
804 case TOO_MANY_TOKENS:
805 ipsecutil_exit(SERVICE_BADCONF, my_fmri, debugfile,
806 dgettext(TEXT_DOMAIN, "Too many input tokens."));
807 break;
808 case MEMORY_ALLOCATION:
809 ipsecutil_exit(SERVICE_BADCONF, my_fmri, debugfile,
810 dgettext(TEXT_DOMAIN, "Memory allocation error."));
811 break;
812 case COMMENT_LINE:
813 /* Comment line. */
814 free(ebuf);
815 break;
816 default:
817 if (thisargc != 0) {
818 lines_parsed++;
819 /* ebuf consumed */
820 parseit(thisargc, thisargv, ebuf, readfile);
821 } else {
822 free(ebuf);
823 }
824 free(thisargv);
825 if (infile == stdin) {
826 (void) printf("%s", promptstring);
827 (void) fflush(stdout);
828 }
829 break;
830 }
831 bzero(ibuf, IBUF_SIZE);
832 }
833
834 /*
835 * The following code is ipseckey specific. This should never be
836 * used by ikeadm which also calls this function because ikeadm
837 * only runs interactively. If this ever changes this code block
838 * sould be revisited.
839 */
840 if (readfile) {
841 if (lines_parsed != 0 && lines_added == 0) {
842 ipsecutil_exit(SERVICE_BADCONF, my_fmri, debugfile,
843 dgettext(TEXT_DOMAIN, "Configuration file did not "
844 "contain any valid SAs"));
845 }
846
847 /*
848 * There were errors. Putting the service in maintenance mode.
849 * When svc.startd(1M) allows services to degrade themselves,
850 * this should be revisited.
851 *
852 * If this function was called from a program running as a
853 * smf_method(5), print a warning message. Don't spew out the
854 * errors as these will end up in the smf(5) log file which is
855 * publically readable, the errors may contain sensitive
856 * information.
857 */
858 if ((lines_added < lines_parsed) && (configfile != NULL)) {
859 if (my_fmri != NULL) {
860 ipsecutil_exit(SERVICE_BADCONF, my_fmri,
861 debugfile, dgettext(TEXT_DOMAIN,
862 "The configuration file contained %d "
863 "errors.\n"
864 "Manually check the configuration with:\n"
865 "ipseckey -c %s\n"
866 "Use svcadm(1M) to clear maintenance "
867 "condition when errors are resolved.\n"),
868 lines_parsed - lines_added, configfile);
869 } else {
870 EXIT_BADCONFIG(NULL);
871 }
872 } else {
873 if (my_fmri != NULL)
874 ipsecutil_exit(SERVICE_EXIT_OK, my_fmri,
875 debugfile, dgettext(TEXT_DOMAIN,
876 "%d actions successfully processed."),
877 lines_added);
878 }
879 } else {
880 /* no newline upon Ctrl-D */
881 if (s != NULL)
882 (void) putchar('\n');
883 (void) fflush(stdout);
884 }
885
886 fini_interactive();
887
888 EXIT_OK(NULL);
889 }
890
891 /*
892 * Functions to parse strings that represent a debug or privilege level.
893 * These functions are copied from main.c and door.c in usr.lib/in.iked/common.
894 * If this file evolves into a common library that may be used by in.iked
895 * as well as the usr.sbin utilities, those duplicate functions should be
896 * deleted.
897 *
898 * A privilege level may be represented by a simple keyword, corresponding
899 * to one of the possible levels. A debug level may be represented by a
900 * series of keywords, separated by '+' or '-', indicating categories to
901 * be added or removed from the set of categories in the debug level.
902 * For example, +all-op corresponds to level 0xfffffffb (all flags except
903 * for D_OP set); while p1+p2+pfkey corresponds to level 0x38. Note that
904 * the leading '+' is implicit; the first keyword in the list must be for
905 * a category that is to be added.
906 *
907 * These parsing functions make use of a local version of strtok, strtok_d,
908 * which includes an additional parameter, char *delim. This param is filled
909 * in with the character which ends the returned token. In other words,
910 * this version of strtok, in addition to returning the token, also returns
911 * the single character delimiter from the original string which marked the
912 * end of the token.
913 */
914 static char *
915 strtok_d(char *string, const char *sepset, char *delim)
916 {
917 static char *lasts;
918 char *q, *r;
919
920 /* first or subsequent call */
921 if (string == NULL)
922 string = lasts;
923
924 if (string == 0) /* return if no tokens remaining */
925 return (NULL);
926
927 q = string + strspn(string, sepset); /* skip leading separators */
928
929 if (*q == '\0') /* return if no tokens remaining */
930 return (NULL);
931
932 if ((r = strpbrk(q, sepset)) == NULL) { /* move past token */
933 lasts = 0; /* indicate that this is last token */
934 } else {
935 *delim = *r; /* save delimitor */
936 *r = '\0';
937 lasts = r + 1;
938 }
939 return (q);
940 }
941
942 static keywdtab_t privtab[] = {
943 { IKE_PRIV_MINIMUM, "base" },
944 { IKE_PRIV_MODKEYS, "modkeys" },
945 { IKE_PRIV_KEYMAT, "keymat" },
946 { IKE_PRIV_MINIMUM, "0" },
947 };
948
949 int
950 privstr2num(char *str)
951 {
952 keywdtab_t *pp;
953 char *endp;
954 int priv;
955
956 for (pp = privtab; pp < A_END(privtab); pp++) {
957 if (strcasecmp(str, pp->kw_str) == 0)
958 return (pp->kw_tag);
959 }
960
961 priv = strtol(str, &endp, 0);
962 if (*endp == '\0')
963 return (priv);
964
965 return (-1);
966 }
967
968 static keywdtab_t dbgtab[] = {
969 { D_CERT, "cert" },
970 { D_KEY, "key" },
971 { D_OP, "op" },
972 { D_P1, "p1" },
973 { D_P1, "phase1" },
974 { D_P2, "p2" },
975 { D_P2, "phase2" },
976 { D_PFKEY, "pfkey" },
977 { D_POL, "pol" },
978 { D_POL, "policy" },
979 { D_PROP, "prop" },
980 { D_DOOR, "door" },
981 { D_CONFIG, "config" },
982 { D_LABEL, "label" },
983 { D_ALL, "all" },
984 { 0, "0" },
985 };
986
987 int
988 dbgstr2num(char *str)
989 {
990 keywdtab_t *dp;
991
992 for (dp = dbgtab; dp < A_END(dbgtab); dp++) {
993 if (strcasecmp(str, dp->kw_str) == 0)
994 return (dp->kw_tag);
995 }
996 return (D_INVALID);
997 }
998
999 int
1000 parsedbgopts(char *optarg)
1001 {
1002 char *argp, *endp, op, nextop;
1003 int mask = 0, new;
1004
1005 mask = strtol(optarg, &endp, 0);
1006 if (*endp == '\0')
1007 return (mask);
1008
1009 op = optarg[0];
1010 if (op != '-')
1011 op = '+';
1012 argp = strtok_d(optarg, "+-", &nextop);
1013 do {
1014 new = dbgstr2num(argp);
1015 if (new == D_INVALID) {
1016 /* we encountered an invalid keywd */
1017 return (new);
1018 }
1019 if (op == '+') {
1020 mask |= new;
1021 } else {
1022 mask &= ~new;
1023 }
1024 op = nextop;
1025 } while ((argp = strtok_d(NULL, "+-", &nextop)) != NULL);
1026
1027 return (mask);
1028 }
1029
1030
1031 /*
1032 * functions to manipulate the kmcookie-label mapping file
1033 */
1034
1035 /*
1036 * Open, lockf, fdopen the given file, returning a FILE * on success,
1037 * or NULL on failure.
1038 */
1039 FILE *
1040 kmc_open_and_lock(char *name)
1041 {
1042 int fd, rtnerr;
1043 FILE *fp;
1044
1045 if ((fd = open(name, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR)) < 0) {
1046 return (NULL);
1047 }
1048 if (lockf(fd, F_LOCK, 0) < 0) {
1049 return (NULL);
1050 }
1051 if ((fp = fdopen(fd, "a+")) == NULL) {
1052 return (NULL);
1053 }
1054 if (fseek(fp, 0, SEEK_SET) < 0) {
1055 /* save errno in case fclose changes it */
1056 rtnerr = errno;
1057 (void) fclose(fp);
1058 errno = rtnerr;
1059 return (NULL);
1060 }
1061 return (fp);
1062 }
1063
1064 /*
1065 * Extract an integer cookie and string label from a line from the
1066 * kmcookie-label file. Return -1 on failure, 0 on success.
1067 */
1068 int
1069 kmc_parse_line(char *line, int *cookie, char **label)
1070 {
1071 char *cookiestr;
1072
1073 *cookie = 0;
1074 *label = NULL;
1075
1076 cookiestr = strtok(line, " \t\n");
1077 if (cookiestr == NULL) {
1078 return (-1);
1079 }
1080
1081 /* Everything that follows, up to the newline, is the label. */
1082 *label = strtok(NULL, "\n");
1083 if (*label == NULL) {
1084 return (-1);
1085 }
1086
1087 *cookie = atoi(cookiestr);
1088 return (0);
1089 }
1090
1091 /*
1092 * Insert a mapping into the file (if it's not already there), given the
1093 * new label. Return the assigned cookie, or -1 on error.
1094 */
1095 int
1096 kmc_insert_mapping(char *label)
1097 {
1098 FILE *map;
1099 char linebuf[IBUF_SIZE];
1100 char *cur_label;
1101 int max_cookie = 0, cur_cookie, rtn_cookie;
1102 int rtnerr = 0;
1103 boolean_t found = B_FALSE;
1104
1105 /* open and lock the file; will sleep until lock is available */
1106 if ((map = kmc_open_and_lock(KMCFILE)) == NULL) {
1107 /* kmc_open_and_lock() sets errno appropriately */
1108 return (-1);
1109 }
1110
1111 while (fgets(linebuf, sizeof (linebuf), map) != NULL) {
1112
1113 /* Skip blank lines, which often come near EOF. */
1114 if (strlen(linebuf) == 0)
1115 continue;
1116
1117 if (kmc_parse_line(linebuf, &cur_cookie, &cur_label) < 0) {
1118 rtnerr = EINVAL;
1119 goto error;
1120 }
1121
1122 if (cur_cookie > max_cookie)
1123 max_cookie = cur_cookie;
1124
1125 if ((!found) && (strcmp(cur_label, label) == 0)) {
1126 found = B_TRUE;
1127 rtn_cookie = cur_cookie;
1128 }
1129 }
1130
1131 if (!found) {
1132 rtn_cookie = ++max_cookie;
1133 if ((fprintf(map, "%u\t%s\n", rtn_cookie, label) < 0) ||
1134 (fflush(map) < 0)) {
1135 rtnerr = errno;
1136 goto error;
1137 }
1138 }
1139 (void) fclose(map);
1140
1141 return (rtn_cookie);
1142
1143 error:
1144 (void) fclose(map);
1145 errno = rtnerr;
1146 return (-1);
1147 }
1148
1149 /*
1150 * Lookup the given cookie and return its corresponding label. Return
1151 * a pointer to the label on success, NULL on error (or if the label is
1152 * not found). Note that the returned label pointer points to a static
1153 * string, so the label will be overwritten by a subsequent call to the
1154 * function; the function is also not thread-safe as a result.
1155 */
1156 char *
1157 kmc_lookup_by_cookie(int cookie)
1158 {
1159 FILE *map;
1160 static char linebuf[IBUF_SIZE];
1161 char *cur_label;
1162 int cur_cookie;
1163
1164 if ((map = kmc_open_and_lock(KMCFILE)) == NULL) {
1165 return (NULL);
1166 }
1167
1168 while (fgets(linebuf, sizeof (linebuf), map) != NULL) {
1169
1170 if (kmc_parse_line(linebuf, &cur_cookie, &cur_label) < 0) {
1171 (void) fclose(map);
1172 return (NULL);
1173 }
1174
1175 if (cookie == cur_cookie) {
1176 (void) fclose(map);
1177 return (cur_label);
1178 }
1179 }
1180 (void) fclose(map);
1181
1182 return (NULL);
1183 }
1184
1185 /*
1186 * Parse basic extension headers and return in the passed-in pointer vector.
1187 * Return values include:
1188 *
1189 * KGE_OK Everything's nice and parsed out.
1190 * If there are no extensions, place NULL in extv[0].
1191 * KGE_DUP There is a duplicate extension.
1192 * First instance in appropriate bin. First duplicate in
1193 * extv[0].
1194 * KGE_UNK Unknown extension type encountered. extv[0] contains
1195 * unknown header.
1196 * KGE_LEN Extension length error.
1197 * KGE_CHK High-level reality check failed on specific extension.
1198 *
1199 * My apologies for some of the pointer arithmetic in here. I'm thinking
1200 * like an assembly programmer, yet trying to make the compiler happy.
1201 */
1202 int
1203 spdsock_get_ext(spd_ext_t *extv[], spd_msg_t *basehdr, uint_t msgsize,
1204 char *diag_buf, uint_t diag_buf_len)
1205 {
1206 int i;
1207
1208 if (diag_buf != NULL)
1209 diag_buf[0] = '\0';
1210
1211 for (i = 1; i <= SPD_EXT_MAX; i++)
1212 extv[i] = NULL;
1213
1214 i = 0;
1215 /* Use extv[0] as the "current working pointer". */
1216
1217 extv[0] = (spd_ext_t *)(basehdr + 1);
1218 msgsize = SPD_64TO8(msgsize);
1219
1220 while ((char *)extv[0] < ((char *)basehdr + msgsize)) {
1221 /* Check for unknown headers. */
1222 i++;
1223 if (extv[0]->spd_ext_type == 0 ||
1224 extv[0]->spd_ext_type > SPD_EXT_MAX) {
1225 if (diag_buf != NULL) {
1226 (void) snprintf(diag_buf, diag_buf_len,
1227 "spdsock ext 0x%X unknown: 0x%X",
1228 i, extv[0]->spd_ext_type);
1229 }
1230 return (KGE_UNK);
1231 }
1232
1233 /*
1234 * Check length. Use uint64_t because extlen is in units
1235 * of 64-bit words. If length goes beyond the msgsize,
1236 * return an error. (Zero length also qualifies here.)
1237 */
1238 if (extv[0]->spd_ext_len == 0 ||
1239 (uint8_t *)((uint64_t *)extv[0] + extv[0]->spd_ext_len) >
1240 (uint8_t *)((uint8_t *)basehdr + msgsize))
1241 return (KGE_LEN);
1242
1243 /* Check for redundant headers. */
1244 if (extv[extv[0]->spd_ext_type] != NULL)
1245 return (KGE_DUP);
1246
1247 /* If I make it here, assign the appropriate bin. */
1248 extv[extv[0]->spd_ext_type] = extv[0];
1249
1250 /* Advance pointer (See above for uint64_t ptr reasoning.) */
1251 extv[0] = (spd_ext_t *)
1252 ((uint64_t *)extv[0] + extv[0]->spd_ext_len);
1253 }
1254
1255 /* Everything's cool. */
1256
1257 /*
1258 * If extv[0] == NULL, then there are no extension headers in this
1259 * message. Ensure that this is the case.
1260 */
1261 if (extv[0] == (spd_ext_t *)(basehdr + 1))
1262 extv[0] = NULL;
1263
1264 return (KGE_OK);
1265 }
1266
1267 const char *
1268 spdsock_diag(int diagnostic)
1269 {
1270 switch (diagnostic) {
1271 case SPD_DIAGNOSTIC_NONE:
1272 return (dgettext(TEXT_DOMAIN, "no error"));
1273 case SPD_DIAGNOSTIC_UNKNOWN_EXT:
1274 return (dgettext(TEXT_DOMAIN, "unknown extension"));
1275 case SPD_DIAGNOSTIC_BAD_EXTLEN:
1276 return (dgettext(TEXT_DOMAIN, "bad extension length"));
1277 case SPD_DIAGNOSTIC_NO_RULE_EXT:
1278 return (dgettext(TEXT_DOMAIN, "no rule extension"));
1279 case SPD_DIAGNOSTIC_BAD_ADDR_LEN:
1280 return (dgettext(TEXT_DOMAIN, "bad address len"));
1281 case SPD_DIAGNOSTIC_MIXED_AF:
1282 return (dgettext(TEXT_DOMAIN, "mixed address family"));
1283 case SPD_DIAGNOSTIC_ADD_NO_MEM:
1284 return (dgettext(TEXT_DOMAIN, "add: no memory"));
1285 case SPD_DIAGNOSTIC_ADD_WRONG_ACT_COUNT:
1286 return (dgettext(TEXT_DOMAIN, "add: wrong action count"));
1287 case SPD_DIAGNOSTIC_ADD_BAD_TYPE:
1288 return (dgettext(TEXT_DOMAIN, "add: bad type"));
1289 case SPD_DIAGNOSTIC_ADD_BAD_FLAGS:
1290 return (dgettext(TEXT_DOMAIN, "add: bad flags"));
1291 case SPD_DIAGNOSTIC_ADD_INCON_FLAGS:
1292 return (dgettext(TEXT_DOMAIN, "add: inconsistent flags"));
1293 case SPD_DIAGNOSTIC_MALFORMED_LCLPORT:
1294 return (dgettext(TEXT_DOMAIN, "malformed local port"));
1295 case SPD_DIAGNOSTIC_DUPLICATE_LCLPORT:
1296 return (dgettext(TEXT_DOMAIN, "duplicate local port"));
1297 case SPD_DIAGNOSTIC_MALFORMED_REMPORT:
1298 return (dgettext(TEXT_DOMAIN, "malformed remote port"));
1299 case SPD_DIAGNOSTIC_DUPLICATE_REMPORT:
1300 return (dgettext(TEXT_DOMAIN, "duplicate remote port"));
1301 case SPD_DIAGNOSTIC_MALFORMED_PROTO:
1302 return (dgettext(TEXT_DOMAIN, "malformed proto"));
1303 case SPD_DIAGNOSTIC_DUPLICATE_PROTO:
1304 return (dgettext(TEXT_DOMAIN, "duplicate proto"));
1305 case SPD_DIAGNOSTIC_MALFORMED_LCLADDR:
1306 return (dgettext(TEXT_DOMAIN, "malformed local address"));
1307 case SPD_DIAGNOSTIC_DUPLICATE_LCLADDR:
1308 return (dgettext(TEXT_DOMAIN, "duplicate local address"));
1309 case SPD_DIAGNOSTIC_MALFORMED_REMADDR:
1310 return (dgettext(TEXT_DOMAIN, "malformed remote address"));
1311 case SPD_DIAGNOSTIC_DUPLICATE_REMADDR:
1312 return (dgettext(TEXT_DOMAIN, "duplicate remote address"));
1313 case SPD_DIAGNOSTIC_MALFORMED_ACTION:
1314 return (dgettext(TEXT_DOMAIN, "malformed action"));
1315 case SPD_DIAGNOSTIC_DUPLICATE_ACTION:
1316 return (dgettext(TEXT_DOMAIN, "duplicate action"));
1317 case SPD_DIAGNOSTIC_MALFORMED_RULE:
1318 return (dgettext(TEXT_DOMAIN, "malformed rule"));
1319 case SPD_DIAGNOSTIC_DUPLICATE_RULE:
1320 return (dgettext(TEXT_DOMAIN, "duplicate rule"));
1321 case SPD_DIAGNOSTIC_MALFORMED_RULESET:
1322 return (dgettext(TEXT_DOMAIN, "malformed ruleset"));
1323 case SPD_DIAGNOSTIC_DUPLICATE_RULESET:
1324 return (dgettext(TEXT_DOMAIN, "duplicate ruleset"));
1325 case SPD_DIAGNOSTIC_INVALID_RULE_INDEX:
1326 return (dgettext(TEXT_DOMAIN, "invalid rule index"));
1327 case SPD_DIAGNOSTIC_BAD_SPDID:
1328 return (dgettext(TEXT_DOMAIN, "bad spdid"));
1329 case SPD_DIAGNOSTIC_BAD_MSG_TYPE:
1330 return (dgettext(TEXT_DOMAIN, "bad message type"));
1331 case SPD_DIAGNOSTIC_UNSUPP_AH_ALG:
1332 return (dgettext(TEXT_DOMAIN, "unsupported AH algorithm"));
1333 case SPD_DIAGNOSTIC_UNSUPP_ESP_ENCR_ALG:
1334 return (dgettext(TEXT_DOMAIN,
1335 "unsupported ESP encryption algorithm"));
1336 case SPD_DIAGNOSTIC_UNSUPP_ESP_AUTH_ALG:
1337 return (dgettext(TEXT_DOMAIN,
1338 "unsupported ESP authentication algorithm"));
1339 case SPD_DIAGNOSTIC_UNSUPP_AH_KEYSIZE:
1340 return (dgettext(TEXT_DOMAIN, "unsupported AH key size"));
1341 case SPD_DIAGNOSTIC_UNSUPP_ESP_ENCR_KEYSIZE:
1342 return (dgettext(TEXT_DOMAIN,
1343 "unsupported ESP encryption key size"));
1344 case SPD_DIAGNOSTIC_UNSUPP_ESP_AUTH_KEYSIZE:
1345 return (dgettext(TEXT_DOMAIN,
1346 "unsupported ESP authentication key size"));
1347 case SPD_DIAGNOSTIC_NO_ACTION_EXT:
1348 return (dgettext(TEXT_DOMAIN, "No ACTION extension"));
1349 case SPD_DIAGNOSTIC_ALG_ID_RANGE:
1350 return (dgettext(TEXT_DOMAIN, "invalid algorithm identifer"));
1351 case SPD_DIAGNOSTIC_ALG_NUM_KEY_SIZES:
1352 return (dgettext(TEXT_DOMAIN,
1353 "number of key sizes inconsistent"));
1354 case SPD_DIAGNOSTIC_ALG_NUM_BLOCK_SIZES:
1355 return (dgettext(TEXT_DOMAIN,
1356 "number of block sizes inconsistent"));
1357 case SPD_DIAGNOSTIC_ALG_MECH_NAME_LEN:
1358 return (dgettext(TEXT_DOMAIN, "invalid mechanism name length"));
1359 case SPD_DIAGNOSTIC_NOT_GLOBAL_OP:
1360 return (dgettext(TEXT_DOMAIN,
1361 "operation not applicable to all policies"));
1362 case SPD_DIAGNOSTIC_NO_TUNNEL_SELECTORS:
1363 return (dgettext(TEXT_DOMAIN,
1364 "using selectors on a transport-mode tunnel"));
1365 default:
1366 return (dgettext(TEXT_DOMAIN, "unknown diagnostic"));
1367 }
1368 }
1369
1370 /*
1371 * PF_KEY Diagnostic table.
1372 *
1373 * PF_KEY NOTE: If you change pfkeyv2.h's SADB_X_DIAGNOSTIC_* space, this is
1374 * where you need to add new messages.
1375 */
1376
1377 const char *
1378 keysock_diag(int diagnostic)
1379 {
1380 switch (diagnostic) {
1381 case SADB_X_DIAGNOSTIC_NONE:
1382 return (dgettext(TEXT_DOMAIN, "No diagnostic"));
1383 case SADB_X_DIAGNOSTIC_UNKNOWN_MSG:
1384 return (dgettext(TEXT_DOMAIN, "Unknown message type"));
1385 case SADB_X_DIAGNOSTIC_UNKNOWN_EXT:
1386 return (dgettext(TEXT_DOMAIN, "Unknown extension type"));
1387 case SADB_X_DIAGNOSTIC_BAD_EXTLEN:
1388 return (dgettext(TEXT_DOMAIN, "Bad extension length"));
1389 case SADB_X_DIAGNOSTIC_UNKNOWN_SATYPE:
1390 return (dgettext(TEXT_DOMAIN,
1391 "Unknown Security Association type"));
1392 case SADB_X_DIAGNOSTIC_SATYPE_NEEDED:
1393 return (dgettext(TEXT_DOMAIN,
1394 "Specific Security Association type needed"));
1395 case SADB_X_DIAGNOSTIC_NO_SADBS:
1396 return (dgettext(TEXT_DOMAIN,
1397 "No Security Association Databases present"));
1398 case SADB_X_DIAGNOSTIC_NO_EXT:
1399 return (dgettext(TEXT_DOMAIN,
1400 "No extensions needed for message"));
1401 case SADB_X_DIAGNOSTIC_BAD_SRC_AF:
1402 return (dgettext(TEXT_DOMAIN, "Bad source address family"));
1403 case SADB_X_DIAGNOSTIC_BAD_DST_AF:
1404 return (dgettext(TEXT_DOMAIN,
1405 "Bad destination address family"));
1406 case SADB_X_DIAGNOSTIC_BAD_PROXY_AF:
1407 return (dgettext(TEXT_DOMAIN,
1408 "Bad inner-source address family"));
1409 case SADB_X_DIAGNOSTIC_AF_MISMATCH:
1410 return (dgettext(TEXT_DOMAIN,
1411 "Source/destination address family mismatch"));
1412 case SADB_X_DIAGNOSTIC_BAD_SRC:
1413 return (dgettext(TEXT_DOMAIN, "Bad source address value"));
1414 case SADB_X_DIAGNOSTIC_BAD_DST:
1415 return (dgettext(TEXT_DOMAIN, "Bad destination address value"));
1416 case SADB_X_DIAGNOSTIC_ALLOC_HSERR:
1417 return (dgettext(TEXT_DOMAIN,
1418 "Soft allocations limit more than hard limit"));
1419 case SADB_X_DIAGNOSTIC_BYTES_HSERR:
1420 return (dgettext(TEXT_DOMAIN,
1421 "Soft bytes limit more than hard limit"));
1422 case SADB_X_DIAGNOSTIC_ADDTIME_HSERR:
1423 return (dgettext(TEXT_DOMAIN, "Soft add expiration time later "
1424 "than hard expiration time"));
1425 case SADB_X_DIAGNOSTIC_USETIME_HSERR:
1426 return (dgettext(TEXT_DOMAIN, "Soft use expiration time later "
1427 "than hard expiration time"));
1428 case SADB_X_DIAGNOSTIC_MISSING_SRC:
1429 return (dgettext(TEXT_DOMAIN, "Missing source address"));
1430 case SADB_X_DIAGNOSTIC_MISSING_DST:
1431 return (dgettext(TEXT_DOMAIN, "Missing destination address"));
1432 case SADB_X_DIAGNOSTIC_MISSING_SA:
1433 return (dgettext(TEXT_DOMAIN, "Missing SA extension"));
1434 case SADB_X_DIAGNOSTIC_MISSING_EKEY:
1435 return (dgettext(TEXT_DOMAIN, "Missing encryption key"));
1436 case SADB_X_DIAGNOSTIC_MISSING_AKEY:
1437 return (dgettext(TEXT_DOMAIN, "Missing authentication key"));
1438 case SADB_X_DIAGNOSTIC_MISSING_RANGE:
1439 return (dgettext(TEXT_DOMAIN, "Missing SPI range"));
1440 case SADB_X_DIAGNOSTIC_DUPLICATE_SRC:
1441 return (dgettext(TEXT_DOMAIN, "Duplicate source address"));
1442 case SADB_X_DIAGNOSTIC_DUPLICATE_DST:
1443 return (dgettext(TEXT_DOMAIN, "Duplicate destination address"));
1444 case SADB_X_DIAGNOSTIC_DUPLICATE_SA:
1445 return (dgettext(TEXT_DOMAIN, "Duplicate SA extension"));
1446 case SADB_X_DIAGNOSTIC_DUPLICATE_EKEY:
1447 return (dgettext(TEXT_DOMAIN, "Duplicate encryption key"));
1448 case SADB_X_DIAGNOSTIC_DUPLICATE_AKEY:
1449 return (dgettext(TEXT_DOMAIN, "Duplicate authentication key"));
1450 case SADB_X_DIAGNOSTIC_DUPLICATE_RANGE:
1451 return (dgettext(TEXT_DOMAIN, "Duplicate SPI range"));
1452 case SADB_X_DIAGNOSTIC_MALFORMED_SRC:
1453 return (dgettext(TEXT_DOMAIN, "Malformed source address"));
1454 case SADB_X_DIAGNOSTIC_MALFORMED_DST:
1455 return (dgettext(TEXT_DOMAIN, "Malformed destination address"));
1456 case SADB_X_DIAGNOSTIC_MALFORMED_SA:
1457 return (dgettext(TEXT_DOMAIN, "Malformed SA extension"));
1458 case SADB_X_DIAGNOSTIC_MALFORMED_EKEY:
1459 return (dgettext(TEXT_DOMAIN, "Malformed encryption key"));
1460 case SADB_X_DIAGNOSTIC_MALFORMED_AKEY:
1461 return (dgettext(TEXT_DOMAIN, "Malformed authentication key"));
1462 case SADB_X_DIAGNOSTIC_MALFORMED_RANGE:
1463 return (dgettext(TEXT_DOMAIN, "Malformed SPI range"));
1464 case SADB_X_DIAGNOSTIC_AKEY_PRESENT:
1465 return (dgettext(TEXT_DOMAIN, "Authentication key not needed"));
1466 case SADB_X_DIAGNOSTIC_EKEY_PRESENT:
1467 return (dgettext(TEXT_DOMAIN, "Encryption key not needed"));
1468 case SADB_X_DIAGNOSTIC_PROP_PRESENT:
1469 return (dgettext(TEXT_DOMAIN, "Proposal extension not needed"));
1470 case SADB_X_DIAGNOSTIC_SUPP_PRESENT:
1471 return (dgettext(TEXT_DOMAIN,
1472 "Supported algorithms extension not needed"));
1473 case SADB_X_DIAGNOSTIC_BAD_AALG:
1474 return (dgettext(TEXT_DOMAIN,
1475 "Unsupported authentication algorithm"));
1476 case SADB_X_DIAGNOSTIC_BAD_EALG:
1477 return (dgettext(TEXT_DOMAIN,
1478 "Unsupported encryption algorithm"));
1479 case SADB_X_DIAGNOSTIC_BAD_SAFLAGS:
1480 return (dgettext(TEXT_DOMAIN, "Invalid SA flags"));
1481 case SADB_X_DIAGNOSTIC_BAD_SASTATE:
1482 return (dgettext(TEXT_DOMAIN, "Invalid SA state"));
1483 case SADB_X_DIAGNOSTIC_BAD_AKEYBITS:
1484 return (dgettext(TEXT_DOMAIN,
1485 "Bad number of authentication bits"));
1486 case SADB_X_DIAGNOSTIC_BAD_EKEYBITS:
1487 return (dgettext(TEXT_DOMAIN,
1488 "Bad number of encryption bits"));
1489 case SADB_X_DIAGNOSTIC_ENCR_NOTSUPP:
1490 return (dgettext(TEXT_DOMAIN,
1491 "Encryption not supported for this SA type"));
1492 case SADB_X_DIAGNOSTIC_WEAK_EKEY:
1493 return (dgettext(TEXT_DOMAIN, "Weak encryption key"));
1494 case SADB_X_DIAGNOSTIC_WEAK_AKEY:
1495 return (dgettext(TEXT_DOMAIN, "Weak authentication key"));
1496 case SADB_X_DIAGNOSTIC_DUPLICATE_KMP:
1497 return (dgettext(TEXT_DOMAIN,
1498 "Duplicate key management protocol"));
1499 case SADB_X_DIAGNOSTIC_DUPLICATE_KMC:
1500 return (dgettext(TEXT_DOMAIN,
1501 "Duplicate key management cookie"));
1502 case SADB_X_DIAGNOSTIC_MISSING_NATT_LOC:
1503 return (dgettext(TEXT_DOMAIN, "Missing NAT-T local address"));
1504 case SADB_X_DIAGNOSTIC_MISSING_NATT_REM:
1505 return (dgettext(TEXT_DOMAIN, "Missing NAT-T remote address"));
1506 case SADB_X_DIAGNOSTIC_DUPLICATE_NATT_LOC:
1507 return (dgettext(TEXT_DOMAIN, "Duplicate NAT-T local address"));
1508 case SADB_X_DIAGNOSTIC_DUPLICATE_NATT_REM:
1509 return (dgettext(TEXT_DOMAIN,
1510 "Duplicate NAT-T remote address"));
1511 case SADB_X_DIAGNOSTIC_MALFORMED_NATT_LOC:
1512 return (dgettext(TEXT_DOMAIN, "Malformed NAT-T local address"));
1513 case SADB_X_DIAGNOSTIC_MALFORMED_NATT_REM:
1514 return (dgettext(TEXT_DOMAIN,
1515 "Malformed NAT-T remote address"));
1516 case SADB_X_DIAGNOSTIC_DUPLICATE_NATT_PORTS:
1517 return (dgettext(TEXT_DOMAIN, "Duplicate NAT-T ports"));
1518 case SADB_X_DIAGNOSTIC_MISSING_INNER_SRC:
1519 return (dgettext(TEXT_DOMAIN, "Missing inner source address"));
1520 case SADB_X_DIAGNOSTIC_MISSING_INNER_DST:
1521 return (dgettext(TEXT_DOMAIN,
1522 "Missing inner destination address"));
1523 case SADB_X_DIAGNOSTIC_DUPLICATE_INNER_SRC:
1524 return (dgettext(TEXT_DOMAIN,
1525 "Duplicate inner source address"));
1526 case SADB_X_DIAGNOSTIC_DUPLICATE_INNER_DST:
1527 return (dgettext(TEXT_DOMAIN,
1528 "Duplicate inner destination address"));
1529 case SADB_X_DIAGNOSTIC_MALFORMED_INNER_SRC:
1530 return (dgettext(TEXT_DOMAIN,
1531 "Malformed inner source address"));
1532 case SADB_X_DIAGNOSTIC_MALFORMED_INNER_DST:
1533 return (dgettext(TEXT_DOMAIN,
1534 "Malformed inner destination address"));
1535 case SADB_X_DIAGNOSTIC_PREFIX_INNER_SRC:
1536 return (dgettext(TEXT_DOMAIN,
1537 "Invalid inner-source prefix length "));
1538 case SADB_X_DIAGNOSTIC_PREFIX_INNER_DST:
1539 return (dgettext(TEXT_DOMAIN,
1540 "Invalid inner-destination prefix length"));
1541 case SADB_X_DIAGNOSTIC_BAD_INNER_DST_AF:
1542 return (dgettext(TEXT_DOMAIN,
1543 "Bad inner-destination address family"));
1544 case SADB_X_DIAGNOSTIC_INNER_AF_MISMATCH:
1545 return (dgettext(TEXT_DOMAIN,
1546 "Inner source/destination address family mismatch"));
1547 case SADB_X_DIAGNOSTIC_BAD_NATT_REM_AF:
1548 return (dgettext(TEXT_DOMAIN,
1549 "Bad NAT-T remote address family"));
1550 case SADB_X_DIAGNOSTIC_BAD_NATT_LOC_AF:
1551 return (dgettext(TEXT_DOMAIN,
1552 "Bad NAT-T local address family"));
1553 case SADB_X_DIAGNOSTIC_PROTO_MISMATCH:
1554 return (dgettext(TEXT_DOMAIN,
1555 "Source/desination protocol mismatch"));
1556 case SADB_X_DIAGNOSTIC_INNER_PROTO_MISMATCH:
1557 return (dgettext(TEXT_DOMAIN,
1558 "Inner source/desination protocol mismatch"));
1559 case SADB_X_DIAGNOSTIC_DUAL_PORT_SETS:
1560 return (dgettext(TEXT_DOMAIN,
1561 "Both inner ports and outer ports are set"));
1562 case SADB_X_DIAGNOSTIC_PAIR_INAPPROPRIATE:
1563 return (dgettext(TEXT_DOMAIN,
1564 "Pairing failed, target SA unsuitable for pairing"));
1565 case SADB_X_DIAGNOSTIC_PAIR_ADD_MISMATCH:
1566 return (dgettext(TEXT_DOMAIN,
1567 "Source/destination address differs from pair SA"));
1568 case SADB_X_DIAGNOSTIC_PAIR_ALREADY:
1569 return (dgettext(TEXT_DOMAIN,
1570 "Already paired with another security association"));
1571 case SADB_X_DIAGNOSTIC_PAIR_SA_NOTFOUND:
1572 return (dgettext(TEXT_DOMAIN,
1573 "Command failed, pair security association not found"));
1574 case SADB_X_DIAGNOSTIC_BAD_SA_DIRECTION:
1575 return (dgettext(TEXT_DOMAIN,
1576 "Inappropriate SA direction"));
1577 case SADB_X_DIAGNOSTIC_SA_NOTFOUND:
1578 return (dgettext(TEXT_DOMAIN,
1579 "Security association not found"));
1580 case SADB_X_DIAGNOSTIC_SA_EXPIRED:
1581 return (dgettext(TEXT_DOMAIN,
1582 "Security association is not valid"));
1583 case SADB_X_DIAGNOSTIC_BAD_CTX:
1584 return (dgettext(TEXT_DOMAIN,
1585 "Algorithm invalid or not supported by Crypto Framework"));
1586 case SADB_X_DIAGNOSTIC_INVALID_REPLAY:
1587 return (dgettext(TEXT_DOMAIN,
1588 "Invalid Replay counter"));
1589 case SADB_X_DIAGNOSTIC_MISSING_LIFETIME:
1590 return (dgettext(TEXT_DOMAIN,
1591 "Inappropriate lifetimes"));
1592 default:
1593 return (dgettext(TEXT_DOMAIN, "Unknown diagnostic code"));
1594 }
1595 }
1596
1597 /*
1598 * Convert an IPv6 mask to a prefix len. I assume all IPv6 masks are
1599 * contiguous, so I stop at the first zero bit!
1600 */
1601 int
1602 in_masktoprefix(uint8_t *mask, boolean_t is_v4mapped)
1603 {
1604 int rc = 0;
1605 uint8_t last;
1606 int limit = IPV6_ABITS;
1607
1608 if (is_v4mapped) {
1609 mask += ((IPV6_ABITS - IP_ABITS)/8);
1610 limit = IP_ABITS;
1611 }
1612
1613 while (*mask == 0xff) {
1614 rc += 8;
1615 if (rc == limit)
1616 return (limit);
1617 mask++;
1618 }
1619
1620 last = *mask;
1621 while (last != 0) {
1622 rc++;
1623 last = (last << 1) & 0xff;
1624 }
1625
1626 return (rc);
1627 }
1628
1629 /*
1630 * Expand the diagnostic code into a message.
1631 */
1632 void
1633 print_diagnostic(FILE *file, uint16_t diagnostic)
1634 {
1635 /* Use two spaces so above strings can fit on the line. */
1636 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1637 " Diagnostic code %u: %s.\n"),
1638 diagnostic, keysock_diag(diagnostic));
1639 }
1640
1641 /*
1642 * Prints the base PF_KEY message.
1643 */
1644 void
1645 print_sadb_msg(FILE *file, struct sadb_msg *samsg, time_t wallclock,
1646 boolean_t vflag)
1647 {
1648 if (wallclock != 0)
1649 printsatime(file, wallclock, dgettext(TEXT_DOMAIN,
1650 "%sTimestamp: %s\n"), "", NULL,
1651 vflag);
1652
1653 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1654 "Base message (version %u) type "),
1655 samsg->sadb_msg_version);
1656 switch (samsg->sadb_msg_type) {
1657 case SADB_RESERVED:
1658 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1659 "RESERVED (warning: set to 0)"));
1660 break;
1661 case SADB_GETSPI:
1662 (void) fprintf(file, "GETSPI");
1663 break;
1664 case SADB_UPDATE:
1665 (void) fprintf(file, "UPDATE");
1666 break;
1667 case SADB_X_UPDATEPAIR:
1668 (void) fprintf(file, "UPDATE PAIR");
1669 break;
1670 case SADB_ADD:
1671 (void) fprintf(file, "ADD");
1672 break;
1673 case SADB_DELETE:
1674 (void) fprintf(file, "DELETE");
1675 break;
1676 case SADB_X_DELPAIR:
1677 (void) fprintf(file, "DELETE PAIR");
1678 break;
1679 case SADB_GET:
1680 (void) fprintf(file, "GET");
1681 break;
1682 case SADB_ACQUIRE:
1683 (void) fprintf(file, "ACQUIRE");
1684 break;
1685 case SADB_REGISTER:
1686 (void) fprintf(file, "REGISTER");
1687 break;
1688 case SADB_EXPIRE:
1689 (void) fprintf(file, "EXPIRE");
1690 break;
1691 case SADB_FLUSH:
1692 (void) fprintf(file, "FLUSH");
1693 break;
1694 case SADB_DUMP:
1695 (void) fprintf(file, "DUMP");
1696 break;
1697 case SADB_X_PROMISC:
1698 (void) fprintf(file, "X_PROMISC");
1699 break;
1700 case SADB_X_INVERSE_ACQUIRE:
1701 (void) fprintf(file, "X_INVERSE_ACQUIRE");
1702 break;
1703 default:
1704 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1705 "Unknown (%u)"), samsg->sadb_msg_type);
1706 break;
1707 }
1708 (void) fprintf(file, dgettext(TEXT_DOMAIN, ", SA type "));
1709
1710 switch (samsg->sadb_msg_satype) {
1711 case SADB_SATYPE_UNSPEC:
1712 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1713 "<unspecified/all>"));
1714 break;
1715 case SADB_SATYPE_AH:
1716 (void) fprintf(file, "AH");
1717 break;
1718 case SADB_SATYPE_ESP:
1719 (void) fprintf(file, "ESP");
1720 break;
1721 case SADB_SATYPE_RSVP:
1722 (void) fprintf(file, "RSVP");
1723 break;
1724 case SADB_SATYPE_OSPFV2:
1725 (void) fprintf(file, "OSPFv2");
1726 break;
1727 case SADB_SATYPE_RIPV2:
1728 (void) fprintf(file, "RIPv2");
1729 break;
1730 case SADB_SATYPE_MIP:
1731 (void) fprintf(file, dgettext(TEXT_DOMAIN, "Mobile IP"));
1732 break;
1733 default:
1734 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1735 "<unknown %u>"), samsg->sadb_msg_satype);
1736 break;
1737 }
1738
1739 (void) fprintf(file, ".\n");
1740
1741 if (samsg->sadb_msg_errno != 0) {
1742 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1743 "Error %s from PF_KEY.\n"),
1744 strerror(samsg->sadb_msg_errno));
1745 print_diagnostic(file, samsg->sadb_x_msg_diagnostic);
1746 }
1747
1748 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1749 "Message length %u bytes, seq=%u, pid=%u.\n"),
1750 SADB_64TO8(samsg->sadb_msg_len), samsg->sadb_msg_seq,
1751 samsg->sadb_msg_pid);
1752 }
1753
1754 /*
1755 * Print the SA extension for PF_KEY.
1756 */
1757 void
1758 print_sa(FILE *file, char *prefix, struct sadb_sa *assoc)
1759 {
1760 if (assoc->sadb_sa_len != SADB_8TO64(sizeof (*assoc))) {
1761 warnxfp(EFD(file), dgettext(TEXT_DOMAIN,
1762 "WARNING: SA info extension length (%u) is bad."),
1763 SADB_64TO8(assoc->sadb_sa_len));
1764 }
1765
1766 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1767 "%sSADB_ASSOC spi=0x%x, replay window size=%u, state="),
1768 prefix, ntohl(assoc->sadb_sa_spi), assoc->sadb_sa_replay);
1769 switch (assoc->sadb_sa_state) {
1770 case SADB_SASTATE_LARVAL:
1771 (void) fprintf(file, dgettext(TEXT_DOMAIN, "LARVAL"));
1772 break;
1773 case SADB_SASTATE_MATURE:
1774 (void) fprintf(file, dgettext(TEXT_DOMAIN, "MATURE"));
1775 break;
1776 case SADB_SASTATE_DYING:
1777 (void) fprintf(file, dgettext(TEXT_DOMAIN, "DYING"));
1778 break;
1779 case SADB_SASTATE_DEAD:
1780 (void) fprintf(file, dgettext(TEXT_DOMAIN, "DEAD"));
1781 break;
1782 #if 0 /* DEPRECATED */
1783 case SADB_X_SASTATE_ACTIVE_ELSEWHERE:
1784 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1785 "ACTIVE_ELSEWHERE"));
1786 break;
1787 case SADB_X_SASTATE_IDLE:
1788 (void) fprintf(file, dgettext(TEXT_DOMAIN, "IDLE"));
1789 break;
1790 #endif
1791 default:
1792 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1793 "<unknown %u>"), assoc->sadb_sa_state);
1794 }
1795
1796 if (assoc->sadb_sa_auth != SADB_AALG_NONE) {
1797 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1798 "\n%sAuthentication algorithm = "),
1799 prefix);
1800 (void) dump_aalg(assoc->sadb_sa_auth, file);
1801 }
1802
1803 if (assoc->sadb_sa_encrypt != SADB_EALG_NONE) {
1804 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1805 "\n%sEncryption algorithm = "), prefix);
1806 (void) dump_ealg(assoc->sadb_sa_encrypt, file);
1807 }
1808
1809 (void) fprintf(file, dgettext(TEXT_DOMAIN, "\n%sflags=0x%x < "), prefix,
1810 assoc->sadb_sa_flags);
1811 if (assoc->sadb_sa_flags & SADB_SAFLAGS_PFS)
1812 (void) fprintf(file, "PFS ");
1813 if (assoc->sadb_sa_flags & SADB_SAFLAGS_NOREPLAY)
1814 (void) fprintf(file, "NOREPLAY ");
1815
1816 /* BEGIN Solaris-specific flags. */
1817 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_USED)
1818 (void) fprintf(file, "X_USED ");
1819 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_PAIRED)
1820 (void) fprintf(file, "X_PAIRED ");
1821 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_OUTBOUND)
1822 (void) fprintf(file, "X_OUTBOUND ");
1823 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_INBOUND)
1824 (void) fprintf(file, "X_INBOUND ");
1825 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_UNIQUE)
1826 (void) fprintf(file, "X_UNIQUE ");
1827 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_AALG1)
1828 (void) fprintf(file, "X_AALG1 ");
1829 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_AALG2)
1830 (void) fprintf(file, "X_AALG2 ");
1831 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_EALG1)
1832 (void) fprintf(file, "X_EALG1 ");
1833 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_EALG2)
1834 (void) fprintf(file, "X_EALG2 ");
1835 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_NATT_LOC)
1836 (void) fprintf(file, "X_NATT_LOC ");
1837 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_NATT_REM)
1838 (void) fprintf(file, "X_NATT_REM ");
1839 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_TUNNEL)
1840 (void) fprintf(file, "X_TUNNEL ");
1841 if (assoc->sadb_sa_flags & SADB_X_SAFLAGS_NATTED)
1842 (void) fprintf(file, "X_NATTED ");
1843 /* END Solaris-specific flags. */
1844
1845 (void) fprintf(file, ">\n");
1846 }
1847
1848 void
1849 printsatime(FILE *file, int64_t lt, const char *msg, const char *pfx,
1850 const char *pfx2, boolean_t vflag)
1851 {
1852 char tbuf[TBUF_SIZE]; /* For strftime() call. */
1853 const char *tp = tbuf;
1854 time_t t = lt;
1855 struct tm res;
1856
1857 if (t != lt) {
1858 if (lt > 0)
1859 t = LONG_MAX;
1860 else
1861 t = LONG_MIN;
1862 }
1863
1864 if (strftime(tbuf, TBUF_SIZE, NULL, localtime_r(&t, &res)) == 0)
1865 tp = dgettext(TEXT_DOMAIN, "<time conversion failed>");
1866 (void) fprintf(file, msg, pfx, tp);
1867 if (vflag && (pfx2 != NULL))
1868 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1869 "%s\t(raw time value %" PRIu64 ")\n"), pfx2, lt);
1870 }
1871
1872 /*
1873 * Print the SA lifetime information. (An SADB_EXT_LIFETIME_* extension.)
1874 */
1875 void
1876 print_lifetimes(FILE *file, time_t wallclock, struct sadb_lifetime *current,
1877 struct sadb_lifetime *hard, struct sadb_lifetime *soft,
1878 struct sadb_lifetime *idle, boolean_t vflag)
1879 {
1880 int64_t scratch;
1881 char *soft_prefix = dgettext(TEXT_DOMAIN, "SLT: ");
1882 char *hard_prefix = dgettext(TEXT_DOMAIN, "HLT: ");
1883 char *current_prefix = dgettext(TEXT_DOMAIN, "CLT: ");
1884 char *idle_prefix = dgettext(TEXT_DOMAIN, "ILT: ");
1885 char byte_str[BYTE_STR_SIZE]; /* byte lifetime string representation */
1886 char secs_str[SECS_STR_SIZE]; /* buffer for seconds representation */
1887
1888 if (current != NULL &&
1889 current->sadb_lifetime_len != SADB_8TO64(sizeof (*current))) {
1890 warnxfp(EFD(file), dgettext(TEXT_DOMAIN,
1891 "WARNING: CURRENT lifetime extension length (%u) is bad."),
1892 SADB_64TO8(current->sadb_lifetime_len));
1893 }
1894
1895 if (hard != NULL &&
1896 hard->sadb_lifetime_len != SADB_8TO64(sizeof (*hard))) {
1897 warnxfp(EFD(file), dgettext(TEXT_DOMAIN,
1898 "WARNING: HARD lifetime extension length (%u) is bad."),
1899 SADB_64TO8(hard->sadb_lifetime_len));
1900 }
1901
1902 if (soft != NULL &&
1903 soft->sadb_lifetime_len != SADB_8TO64(sizeof (*soft))) {
1904 warnxfp(EFD(file), dgettext(TEXT_DOMAIN,
1905 "WARNING: SOFT lifetime extension length (%u) is bad."),
1906 SADB_64TO8(soft->sadb_lifetime_len));
1907 }
1908
1909 if (idle != NULL &&
1910 idle->sadb_lifetime_len != SADB_8TO64(sizeof (*idle))) {
1911 warnxfp(EFD(file), dgettext(TEXT_DOMAIN,
1912 "WARNING: IDLE lifetime extension length (%u) is bad."),
1913 SADB_64TO8(idle->sadb_lifetime_len));
1914 }
1915
1916 (void) fprintf(file, " LT: Lifetime information\n");
1917 if (current != NULL) {
1918 /* Express values as current values. */
1919 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1920 "%sCurrent lifetime information:\n"),
1921 current_prefix);
1922 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1923 "%s%" PRIu64 " bytes %sprotected, %u allocations "
1924 "used.\n"), current_prefix,
1925 current->sadb_lifetime_bytes,
1926 bytecnt2out(current->sadb_lifetime_bytes, byte_str,
1927 sizeof (byte_str), SPC_END),
1928 current->sadb_lifetime_allocations);
1929 printsatime(file, current->sadb_lifetime_addtime,
1930 dgettext(TEXT_DOMAIN, "%sSA added at time: %s\n"),
1931 current_prefix, current_prefix, vflag);
1932 if (current->sadb_lifetime_usetime != 0) {
1933 printsatime(file, current->sadb_lifetime_usetime,
1934 dgettext(TEXT_DOMAIN,
1935 "%sSA first used at time %s\n"),
1936 current_prefix, current_prefix, vflag);
1937 }
1938 printsatime(file, wallclock, dgettext(TEXT_DOMAIN,
1939 "%sTime now is %s\n"), current_prefix, current_prefix,
1940 vflag);
1941 }
1942
1943 if (soft != NULL) {
1944 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1945 "%sSoft lifetime information:\n"),
1946 soft_prefix);
1947 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1948 "%s%" PRIu64 " bytes %sof lifetime, %u allocations.\n"),
1949 soft_prefix,
1950 soft->sadb_lifetime_bytes,
1951 bytecnt2out(soft->sadb_lifetime_bytes, byte_str,
1952 sizeof (byte_str), SPC_END),
1953 soft->sadb_lifetime_allocations);
1954 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1955 "%s%" PRIu64 " seconds %sof post-add lifetime.\n"),
1956 soft_prefix, soft->sadb_lifetime_addtime,
1957 secs2out(soft->sadb_lifetime_addtime, secs_str,
1958 sizeof (secs_str), SPC_END));
1959 (void) fprintf(file, dgettext(TEXT_DOMAIN,
1960 "%s%" PRIu64 " seconds %sof post-use lifetime.\n"),
1961 soft_prefix, soft->sadb_lifetime_usetime,
1962 secs2out(soft->sadb_lifetime_usetime, secs_str,
1963 sizeof (secs_str), SPC_END));
1964 /* If possible, express values as time remaining. */
1965 if (current != NULL) {
1966 if (soft->sadb_lifetime_bytes != 0)
1967 (void) fprintf(file, dgettext(TEXT_DOMAIN, "%s"
1968 "%" PRIu64 " bytes %smore can be "
1969 "protected.\n"), soft_prefix,
1970 (soft->sadb_lifetime_bytes >
1971 current->sadb_lifetime_bytes) ?
1972 soft->sadb_lifetime_bytes -
1973 current->sadb_lifetime_bytes : 0,
1974 (soft->sadb_lifetime_bytes >
1975 current->sadb_lifetime_bytes) ?
1976 bytecnt2out(soft->sadb_lifetime_bytes -
1977 current->sadb_lifetime_bytes, byte_str,
1978 sizeof (byte_str), SPC_END) : "");
1979 if (soft->sadb_lifetime_addtime != 0 ||
1980 (soft->sadb_lifetime_usetime != 0 &&
1981 current->sadb_lifetime_usetime != 0)) {
1982 int64_t adddelta, usedelta;
1983
1984 if (soft->sadb_lifetime_addtime != 0) {
1985 adddelta =
1986 current->sadb_lifetime_addtime +
1987 soft->sadb_lifetime_addtime -
1988 wallclock;
1989 } else {
1990 adddelta = TIME_MAX;
1991 }
1992
1993 if (soft->sadb_lifetime_usetime != 0 &&
1994 current->sadb_lifetime_usetime != 0) {
1995 usedelta =
1996 current->sadb_lifetime_usetime +
1997 soft->sadb_lifetime_usetime -
1998 wallclock;
1999 } else {
2000 usedelta = TIME_MAX;
2001 }
2002 (void) fprintf(file, "%s", soft_prefix);
2003 scratch = MIN(adddelta, usedelta);
2004 if (scratch >= 0) {
2005 (void) fprintf(file,
2006 dgettext(TEXT_DOMAIN,
2007 "Soft expiration occurs in %"
2008 PRId64 " seconds%s\n"), scratch,
2009 secs2out(scratch, secs_str,
2010 sizeof (secs_str), SPC_BEGIN));
2011 } else {
2012 (void) fprintf(file,
2013 dgettext(TEXT_DOMAIN,
2014 "Soft expiration occurred\n"));
2015 }
2016 scratch += wallclock;
2017 printsatime(file, scratch, dgettext(TEXT_DOMAIN,
2018 "%sTime of expiration: %s.\n"),
2019 soft_prefix, soft_prefix, vflag);
2020 }
2021 }
2022 }
2023
2024 if (hard != NULL) {
2025 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2026 "%sHard lifetime information:\n"), hard_prefix);
2027 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2028 "%s%" PRIu64 " bytes %sof lifetime, %u allocations.\n"),
2029 hard_prefix,
2030 hard->sadb_lifetime_bytes,
2031 bytecnt2out(hard->sadb_lifetime_bytes, byte_str,
2032 sizeof (byte_str), SPC_END),
2033 hard->sadb_lifetime_allocations);
2034 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2035 "%s%" PRIu64 " seconds %sof post-add lifetime.\n"),
2036 hard_prefix, hard->sadb_lifetime_addtime,
2037 secs2out(hard->sadb_lifetime_addtime, secs_str,
2038 sizeof (secs_str), SPC_END));
2039 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2040 "%s%" PRIu64 " seconds %sof post-use lifetime.\n"),
2041 hard_prefix, hard->sadb_lifetime_usetime,
2042 secs2out(hard->sadb_lifetime_usetime, secs_str,
2043 sizeof (secs_str), SPC_END));
2044 /* If possible, express values as time remaining. */
2045 if (current != NULL) {
2046 if (hard->sadb_lifetime_bytes != 0)
2047 (void) fprintf(file, dgettext(TEXT_DOMAIN, "%s"
2048 "%" PRIu64 " bytes %smore can be "
2049 "protected.\n"), hard_prefix,
2050 (hard->sadb_lifetime_bytes >
2051 current->sadb_lifetime_bytes) ?
2052 hard->sadb_lifetime_bytes -
2053 current->sadb_lifetime_bytes : 0,
2054 (hard->sadb_lifetime_bytes >
2055 current->sadb_lifetime_bytes) ?
2056 bytecnt2out(hard->sadb_lifetime_bytes -
2057 current->sadb_lifetime_bytes, byte_str,
2058 sizeof (byte_str), SPC_END) : "");
2059 if (hard->sadb_lifetime_addtime != 0 ||
2060 (hard->sadb_lifetime_usetime != 0 &&
2061 current->sadb_lifetime_usetime != 0)) {
2062 int64_t adddelta, usedelta;
2063
2064 if (hard->sadb_lifetime_addtime != 0) {
2065 adddelta =
2066 current->sadb_lifetime_addtime +
2067 hard->sadb_lifetime_addtime -
2068 wallclock;
2069 } else {
2070 adddelta = TIME_MAX;
2071 }
2072
2073 if (hard->sadb_lifetime_usetime != 0 &&
2074 current->sadb_lifetime_usetime != 0) {
2075 usedelta =
2076 current->sadb_lifetime_usetime +
2077 hard->sadb_lifetime_usetime -
2078 wallclock;
2079 } else {
2080 usedelta = TIME_MAX;
2081 }
2082 (void) fprintf(file, "%s", hard_prefix);
2083 scratch = MIN(adddelta, usedelta);
2084 if (scratch >= 0) {
2085 (void) fprintf(file,
2086 dgettext(TEXT_DOMAIN,
2087 "Hard expiration occurs in %"
2088 PRId64 " seconds%s\n"), scratch,
2089 secs2out(scratch, secs_str,
2090 sizeof (secs_str), SPC_BEGIN));
2091 } else {
2092 (void) fprintf(file,
2093 dgettext(TEXT_DOMAIN,
2094 "Hard expiration occurred\n"));
2095 }
2096 scratch += wallclock;
2097 printsatime(file, scratch, dgettext(TEXT_DOMAIN,
2098 "%sTime of expiration: %s.\n"),
2099 hard_prefix, hard_prefix, vflag);
2100 }
2101 }
2102 }
2103 if (idle != NULL) {
2104 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2105 "%sIdle lifetime information:\n"), idle_prefix);
2106 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2107 "%s%" PRIu64 " seconds %sof post-add lifetime.\n"),
2108 idle_prefix, idle->sadb_lifetime_addtime,
2109 secs2out(idle->sadb_lifetime_addtime, secs_str,
2110 sizeof (secs_str), SPC_END));
2111 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2112 "%s%" PRIu64 " seconds %sof post-use lifetime.\n"),
2113 idle_prefix, idle->sadb_lifetime_usetime,
2114 secs2out(idle->sadb_lifetime_usetime, secs_str,
2115 sizeof (secs_str), SPC_END));
2116 }
2117 }
2118
2119 /*
2120 * Print an SADB_EXT_ADDRESS_* extension.
2121 */
2122 void
2123 print_address(FILE *file, char *prefix, struct sadb_address *addr,
2124 boolean_t ignore_nss)
2125 {
2126 struct protoent *pe;
2127
2128 (void) fprintf(file, "%s", prefix);
2129 switch (addr->sadb_address_exttype) {
2130 case SADB_EXT_ADDRESS_SRC:
2131 (void) fprintf(file, dgettext(TEXT_DOMAIN, "Source address "));
2132 break;
2133 case SADB_X_EXT_ADDRESS_INNER_SRC:
2134 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2135 "Inner source address "));
2136 break;
2137 case SADB_EXT_ADDRESS_DST:
2138 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2139 "Destination address "));
2140 break;
2141 case SADB_X_EXT_ADDRESS_INNER_DST:
2142 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2143 "Inner destination address "));
2144 break;
2145 case SADB_X_EXT_ADDRESS_NATT_LOC:
2146 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2147 "NAT-T local address "));
2148 break;
2149 case SADB_X_EXT_ADDRESS_NATT_REM:
2150 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2151 "NAT-T remote address "));
2152 break;
2153 }
2154
2155 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2156 "(proto=%d"), addr->sadb_address_proto);
2157 if (ignore_nss == B_FALSE) {
2158 if (addr->sadb_address_proto == 0) {
2159 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2160 "/<unspecified>"));
2161 } else if ((pe = getprotobynumber(addr->sadb_address_proto))
2162 != NULL) {
2163 (void) fprintf(file, "/%s", pe->p_name);
2164 } else {
2165 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2166 "/<unknown>"));
2167 }
2168 }
2169 (void) fprintf(file, dgettext(TEXT_DOMAIN, ")\n%s"), prefix);
2170 (void) dump_sockaddr((struct sockaddr *)(addr + 1),
2171 addr->sadb_address_prefixlen, B_FALSE, file, ignore_nss);
2172 }
2173
2174 /*
2175 * Print an SADB_EXT_KEY extension.
2176 */
2177 void
2178 print_key(FILE *file, char *prefix, struct sadb_key *key)
2179 {
2180 (void) fprintf(file, "%s", prefix);
2181
2182 switch (key->sadb_key_exttype) {
2183 case SADB_EXT_KEY_AUTH:
2184 (void) fprintf(file, dgettext(TEXT_DOMAIN, "Authentication"));
2185 break;
2186 case SADB_EXT_KEY_ENCRYPT:
2187 (void) fprintf(file, dgettext(TEXT_DOMAIN, "Encryption"));
2188 break;
2189 }
2190
2191 (void) fprintf(file, dgettext(TEXT_DOMAIN, " key.\n%s"), prefix);
2192 (void) dump_key((uint8_t *)(key + 1), key->sadb_key_bits,
2193 key->sadb_key_reserved, file, B_TRUE);
2194 (void) fprintf(file, "\n");
2195 }
2196
2197 /*
2198 * Print an SADB_EXT_IDENTITY_* extension.
2199 */
2200 void
2201 print_ident(FILE *file, char *prefix, struct sadb_ident *id)
2202 {
2203 boolean_t canprint = B_TRUE;
2204
2205 (void) fprintf(file, "%s", prefix);
2206 switch (id->sadb_ident_exttype) {
2207 case SADB_EXT_IDENTITY_SRC:
2208 (void) fprintf(file, dgettext(TEXT_DOMAIN, "Source"));
2209 break;
2210 case SADB_EXT_IDENTITY_DST:
2211 (void) fprintf(file, dgettext(TEXT_DOMAIN, "Destination"));
2212 break;
2213 }
2214
2215 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2216 " identity, uid=%d, type "), id->sadb_ident_id);
2217 canprint = dump_sadb_idtype(id->sadb_ident_type, file, NULL);
2218 (void) fprintf(file, "\n%s", prefix);
2219 if (canprint) {
2220 (void) fprintf(file, "%s\n", (char *)(id + 1));
2221 } else {
2222 print_asn1_name(file, (const unsigned char *)(id + 1),
2223 SADB_64TO8(id->sadb_ident_len) - sizeof (sadb_ident_t));
2224 }
2225 }
2226
2227 /*
2228 * Convert sadb_sens extension into binary security label.
2229 */
2230
2231 #include <tsol/label.h>
2232 #include <sys/tsol/tndb.h>
2233 #include <sys/tsol/label_macro.h>
2234
2235 void
2236 ipsec_convert_sens_to_bslabel(const struct sadb_sens *sens, bslabel_t *sl)
2237 {
2238 uint64_t *bitmap = (uint64_t *)(sens + 1);
2239 int bitmap_len = SADB_64TO8(sens->sadb_sens_sens_len);
2240
2241 bsllow(sl);
2242 LCLASS_SET((_bslabel_impl_t *)sl, sens->sadb_sens_sens_level);
2243 bcopy(bitmap, &((_bslabel_impl_t *)sl)->compartments,
2244 bitmap_len);
2245 }
2246
2247 void
2248 ipsec_convert_bslabel_to_string(bslabel_t *sl, char **plabel)
2249 {
2250 if (label_to_str(sl, plabel, M_LABEL, DEF_NAMES) != 0) {
2251 *plabel = strdup(dgettext(TEXT_DOMAIN,
2252 "** Label conversion failed **"));
2253 }
2254 }
2255
2256 void
2257 ipsec_convert_bslabel_to_hex(bslabel_t *sl, char **plabel)
2258 {
2259 if (label_to_str(sl, plabel, M_INTERNAL, DEF_NAMES) != 0) {
2260 *plabel = strdup(dgettext(TEXT_DOMAIN,
2261 "** Label conversion failed **"));
2262 }
2263 }
2264
2265 int
2266 ipsec_convert_sl_to_sens(int doi, bslabel_t *sl, sadb_sens_t *sens)
2267 {
2268 uint8_t *bitmap;
2269 int sens_len = sizeof (sadb_sens_t) + _C_LEN * 4;
2270
2271
2272 if (sens == NULL)
2273 return (sens_len);
2274
2275
2276 (void) memset(sens, 0, sens_len);
2277
2278 sens->sadb_sens_exttype = SADB_EXT_SENSITIVITY;
2279 sens->sadb_sens_len = SADB_8TO64(sens_len);
2280 sens->sadb_sens_dpd = doi;
2281
2282 sens->sadb_sens_sens_level = LCLASS(sl);
2283 sens->sadb_sens_integ_level = 0;
2284 sens->sadb_sens_sens_len = _C_LEN >> 1;
2285 sens->sadb_sens_integ_len = 0;
2286
2287 sens->sadb_x_sens_flags = 0;
2288
2289 bitmap = (uint8_t *)(sens + 1);
2290 bcopy(&(((_bslabel_impl_t *)sl)->compartments), bitmap, _C_LEN * 4);
2291
2292 return (sens_len);
2293 }
2294
2295
2296 /*
2297 * Print an SADB_SENSITIVITY extension.
2298 */
2299 void
2300 print_sens(FILE *file, char *prefix, const struct sadb_sens *sens,
2301 boolean_t ignore_nss)
2302 {
2303 char *plabel;
2304 char *hlabel;
2305 uint64_t *bitmap = (uint64_t *)(sens + 1);
2306 bslabel_t sl;
2307 int i;
2308 int sens_len = sens->sadb_sens_sens_len;
2309 int integ_len = sens->sadb_sens_integ_len;
2310 boolean_t inner = (sens->sadb_sens_exttype == SADB_EXT_SENSITIVITY);
2311 const char *sensname = inner ?
2312 dgettext(TEXT_DOMAIN, "Plaintext Sensitivity") :
2313 dgettext(TEXT_DOMAIN, "Ciphertext Sensitivity");
2314
2315 ipsec_convert_sens_to_bslabel(sens, &sl);
2316
2317 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2318 "%s%s DPD %d, sens level=%d, integ level=%d, flags=%x\n"),
2319 prefix, sensname, sens->sadb_sens_dpd, sens->sadb_sens_sens_level,
2320 sens->sadb_sens_integ_level, sens->sadb_x_sens_flags);
2321
2322 ipsec_convert_bslabel_to_hex(&sl, &hlabel);
2323
2324 if (ignore_nss) {
2325 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2326 "%s %s Label: %s\n"), prefix, sensname, hlabel);
2327
2328 for (i = 0; i < sens_len; i++, bitmap++)
2329 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2330 "%s %s BM extended word %d 0x%" PRIx64 "\n"),
2331 prefix, sensname, i, *bitmap);
2332
2333 } else {
2334 ipsec_convert_bslabel_to_string(&sl, &plabel);
2335
2336 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2337 "%s %s Label: %s (%s)\n"),
2338 prefix, sensname, plabel, hlabel);
2339 free(plabel);
2340
2341 }
2342 free(hlabel);
2343
2344 bitmap = (uint64_t *)(sens + 1 + sens_len);
2345
2346 for (i = 0; i < integ_len; i++, bitmap++)
2347 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2348 "%s Integrity BM extended word %d 0x%" PRIx64 "\n"),
2349 prefix, i, *bitmap);
2350 }
2351
2352 /*
2353 * Print an SADB_EXT_PROPOSAL extension.
2354 */
2355 void
2356 print_prop(FILE *file, char *prefix, struct sadb_prop *prop)
2357 {
2358 struct sadb_comb *combs;
2359 int i, numcombs;
2360
2361 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2362 "%sProposal, replay counter = %u.\n"), prefix,
2363 prop->sadb_prop_replay);
2364
2365 numcombs = prop->sadb_prop_len - SADB_8TO64(sizeof (*prop));
2366 numcombs /= SADB_8TO64(sizeof (*combs));
2367
2368 combs = (struct sadb_comb *)(prop + 1);
2369
2370 for (i = 0; i < numcombs; i++) {
2371 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2372 "%s Combination #%u "), prefix, i + 1);
2373 if (combs[i].sadb_comb_auth != SADB_AALG_NONE) {
2374 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2375 "Authentication = "));
2376 (void) dump_aalg(combs[i].sadb_comb_auth, file);
2377 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2378 " minbits=%u, maxbits=%u.\n%s "),
2379 combs[i].sadb_comb_auth_minbits,
2380 combs[i].sadb_comb_auth_maxbits, prefix);
2381 }
2382
2383 if (combs[i].sadb_comb_encrypt != SADB_EALG_NONE) {
2384 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2385 "Encryption = "));
2386 (void) dump_ealg(combs[i].sadb_comb_encrypt, file);
2387 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2388 " minbits=%u, maxbits=%u.\n%s "),
2389 combs[i].sadb_comb_encrypt_minbits,
2390 combs[i].sadb_comb_encrypt_maxbits, prefix);
2391 }
2392
2393 (void) fprintf(file, dgettext(TEXT_DOMAIN, "HARD: "));
2394 if (combs[i].sadb_comb_hard_allocations)
2395 (void) fprintf(file, dgettext(TEXT_DOMAIN, "alloc=%u "),
2396 combs[i].sadb_comb_hard_allocations);
2397 if (combs[i].sadb_comb_hard_bytes)
2398 (void) fprintf(file, dgettext(TEXT_DOMAIN, "bytes=%"
2399 PRIu64 " "), combs[i].sadb_comb_hard_bytes);
2400 if (combs[i].sadb_comb_hard_addtime)
2401 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2402 "post-add secs=%" PRIu64 " "),
2403 combs[i].sadb_comb_hard_addtime);
2404 if (combs[i].sadb_comb_hard_usetime)
2405 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2406 "post-use secs=%" PRIu64 ""),
2407 combs[i].sadb_comb_hard_usetime);
2408
2409 (void) fprintf(file, dgettext(TEXT_DOMAIN, "\n%s SOFT: "),
2410 prefix);
2411 if (combs[i].sadb_comb_soft_allocations)
2412 (void) fprintf(file, dgettext(TEXT_DOMAIN, "alloc=%u "),
2413 combs[i].sadb_comb_soft_allocations);
2414 if (combs[i].sadb_comb_soft_bytes)
2415 (void) fprintf(file, dgettext(TEXT_DOMAIN, "bytes=%"
2416 PRIu64 " "), combs[i].sadb_comb_soft_bytes);
2417 if (combs[i].sadb_comb_soft_addtime)
2418 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2419 "post-add secs=%" PRIu64 " "),
2420 combs[i].sadb_comb_soft_addtime);
2421 if (combs[i].sadb_comb_soft_usetime)
2422 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2423 "post-use secs=%" PRIu64 ""),
2424 combs[i].sadb_comb_soft_usetime);
2425 (void) fprintf(file, "\n");
2426 }
2427 }
2428
2429 /*
2430 * Print an extended proposal (SADB_X_EXT_EPROP).
2431 */
2432 void
2433 print_eprop(FILE *file, char *prefix, struct sadb_prop *eprop)
2434 {
2435 uint64_t *sofar;
2436 struct sadb_x_ecomb *ecomb;
2437 struct sadb_x_algdesc *algdesc;
2438 int i, j;
2439
2440 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2441 "%sExtended Proposal, replay counter = %u, "), prefix,
2442 eprop->sadb_prop_replay);
2443 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2444 "number of combinations = %u.\n"), eprop->sadb_x_prop_numecombs);
2445
2446 sofar = (uint64_t *)(eprop + 1);
2447 ecomb = (struct sadb_x_ecomb *)sofar;
2448
2449 for (i = 0; i < eprop->sadb_x_prop_numecombs; ) {
2450 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2451 "%s Extended combination #%u:\n"), prefix, ++i);
2452
2453 (void) fprintf(file, dgettext(TEXT_DOMAIN, "%s HARD: "),
2454 prefix);
2455 (void) fprintf(file, dgettext(TEXT_DOMAIN, "alloc=%u, "),
2456 ecomb->sadb_x_ecomb_hard_allocations);
2457 (void) fprintf(file, dgettext(TEXT_DOMAIN, "bytes=%" PRIu64
2458 ", "), ecomb->sadb_x_ecomb_hard_bytes);
2459 (void) fprintf(file, dgettext(TEXT_DOMAIN, "post-add secs=%"
2460 PRIu64 ", "), ecomb->sadb_x_ecomb_hard_addtime);
2461 (void) fprintf(file, dgettext(TEXT_DOMAIN, "post-use secs=%"
2462 PRIu64 "\n"), ecomb->sadb_x_ecomb_hard_usetime);
2463
2464 (void) fprintf(file, dgettext(TEXT_DOMAIN, "%s SOFT: "),
2465 prefix);
2466 (void) fprintf(file, dgettext(TEXT_DOMAIN, "alloc=%u, "),
2467 ecomb->sadb_x_ecomb_soft_allocations);
2468 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2469 "bytes=%" PRIu64 ", "), ecomb->sadb_x_ecomb_soft_bytes);
2470 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2471 "post-add secs=%" PRIu64 ", "),
2472 ecomb->sadb_x_ecomb_soft_addtime);
2473 (void) fprintf(file, dgettext(TEXT_DOMAIN, "post-use secs=%"
2474 PRIu64 "\n"), ecomb->sadb_x_ecomb_soft_usetime);
2475
2476 sofar = (uint64_t *)(ecomb + 1);
2477 algdesc = (struct sadb_x_algdesc *)sofar;
2478
2479 for (j = 0; j < ecomb->sadb_x_ecomb_numalgs; ) {
2480 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2481 "%s Alg #%u "), prefix, ++j);
2482 switch (algdesc->sadb_x_algdesc_satype) {
2483 case SADB_SATYPE_ESP:
2484 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2485 "for ESP "));
2486 break;
2487 case SADB_SATYPE_AH:
2488 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2489 "for AH "));
2490 break;
2491 default:
2492 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2493 "for satype=%d "),
2494 algdesc->sadb_x_algdesc_satype);
2495 }
2496 switch (algdesc->sadb_x_algdesc_algtype) {
2497 case SADB_X_ALGTYPE_CRYPT:
2498 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2499 "Encryption = "));
2500 (void) dump_ealg(algdesc->sadb_x_algdesc_alg,
2501 file);
2502 break;
2503 case SADB_X_ALGTYPE_AUTH:
2504 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2505 "Authentication = "));
2506 (void) dump_aalg(algdesc->sadb_x_algdesc_alg,
2507 file);
2508 break;
2509 default:
2510 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2511 "algtype(%d) = alg(%d)"),
2512 algdesc->sadb_x_algdesc_algtype,
2513 algdesc->sadb_x_algdesc_alg);
2514 break;
2515 }
2516
2517 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2518 " minbits=%u, maxbits=%u, saltbits=%u\n"),
2519 algdesc->sadb_x_algdesc_minbits,
2520 algdesc->sadb_x_algdesc_maxbits,
2521 algdesc->sadb_x_algdesc_reserved);
2522
2523 sofar = (uint64_t *)(++algdesc);
2524 }
2525 ecomb = (struct sadb_x_ecomb *)sofar;
2526 }
2527 }
2528
2529 /*
2530 * Print an SADB_EXT_SUPPORTED extension.
2531 */
2532 void
2533 print_supp(FILE *file, char *prefix, struct sadb_supported *supp)
2534 {
2535 struct sadb_alg *algs;
2536 int i, numalgs;
2537
2538 (void) fprintf(file, dgettext(TEXT_DOMAIN, "%sSupported "), prefix);
2539 switch (supp->sadb_supported_exttype) {
2540 case SADB_EXT_SUPPORTED_AUTH:
2541 (void) fprintf(file, dgettext(TEXT_DOMAIN, "authentication"));
2542 break;
2543 case SADB_EXT_SUPPORTED_ENCRYPT:
2544 (void) fprintf(file, dgettext(TEXT_DOMAIN, "encryption"));
2545 break;
2546 }
2547 (void) fprintf(file, dgettext(TEXT_DOMAIN, " algorithms.\n"));
2548
2549 algs = (struct sadb_alg *)(supp + 1);
2550 numalgs = supp->sadb_supported_len - SADB_8TO64(sizeof (*supp));
2551 numalgs /= SADB_8TO64(sizeof (*algs));
2552 for (i = 0; i < numalgs; i++) {
2553 uint16_t exttype = supp->sadb_supported_exttype;
2554
2555 (void) fprintf(file, "%s", prefix);
2556 switch (exttype) {
2557 case SADB_EXT_SUPPORTED_AUTH:
2558 (void) dump_aalg(algs[i].sadb_alg_id, file);
2559 break;
2560 case SADB_EXT_SUPPORTED_ENCRYPT:
2561 (void) dump_ealg(algs[i].sadb_alg_id, file);
2562 break;
2563 }
2564 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2565 " minbits=%u, maxbits=%u, ivlen=%u, saltbits=%u"),
2566 algs[i].sadb_alg_minbits, algs[i].sadb_alg_maxbits,
2567 algs[i].sadb_alg_ivlen, algs[i].sadb_x_alg_saltbits);
2568 if (exttype == SADB_EXT_SUPPORTED_ENCRYPT)
2569 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2570 ", increment=%u"), algs[i].sadb_x_alg_increment);
2571 (void) fprintf(file, dgettext(TEXT_DOMAIN, ".\n"));
2572 }
2573 }
2574
2575 /*
2576 * Print an SADB_EXT_SPIRANGE extension.
2577 */
2578 void
2579 print_spirange(FILE *file, char *prefix, struct sadb_spirange *range)
2580 {
2581 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2582 "%sSPI Range, min=0x%x, max=0x%x\n"), prefix,
2583 htonl(range->sadb_spirange_min),
2584 htonl(range->sadb_spirange_max));
2585 }
2586
2587 /*
2588 * Print an SADB_X_EXT_KM_COOKIE extension.
2589 */
2590
2591 void
2592 print_kmc(FILE *file, char *prefix, struct sadb_x_kmc *kmc)
2593 {
2594 char *cookie_label;
2595
2596 if ((cookie_label = kmc_lookup_by_cookie(kmc->sadb_x_kmc_cookie)) ==
2597 NULL)
2598 cookie_label = dgettext(TEXT_DOMAIN, "<Label not found.>");
2599
2600 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2601 "%sProtocol %u, cookie=\"%s\" (%u)\n"), prefix,
2602 kmc->sadb_x_kmc_proto, cookie_label, kmc->sadb_x_kmc_cookie);
2603 }
2604
2605 /*
2606 * Print an SADB_X_EXT_REPLAY_CTR extension.
2607 */
2608
2609 void
2610 print_replay(FILE *file, char *prefix, sadb_x_replay_ctr_t *repl)
2611 {
2612 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2613 "%sReplay Value "), prefix);
2614 if ((repl->sadb_x_rc_replay32 == 0) &&
2615 (repl->sadb_x_rc_replay64 == 0)) {
2616 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2617 "<Value not found.>"));
2618 }
2619 /*
2620 * We currently do not support a 64-bit replay value.
2621 * RFC 4301 will require one, however, and we have a field
2622 * in place when 4301 is built.
2623 */
2624 (void) fprintf(file, "% " PRIu64 "\n",
2625 ((repl->sadb_x_rc_replay32 == 0) ?
2626 repl->sadb_x_rc_replay64 : repl->sadb_x_rc_replay32));
2627 }
2628 /*
2629 * Print an SADB_X_EXT_PAIR extension.
2630 */
2631 static void
2632 print_pair(FILE *file, char *prefix, struct sadb_x_pair *pair)
2633 {
2634 (void) fprintf(file, dgettext(TEXT_DOMAIN, "%sPaired with spi=0x%x\n"),
2635 prefix, ntohl(pair->sadb_x_pair_spi));
2636 }
2637
2638 /*
2639 * Take a PF_KEY message pointed to buffer and print it. Useful for DUMP
2640 * and GET.
2641 */
2642 void
2643 print_samsg(FILE *file, uint64_t *buffer, boolean_t want_timestamp,
2644 boolean_t vflag, boolean_t ignore_nss)
2645 {
2646 uint64_t *current;
2647 struct sadb_msg *samsg = (struct sadb_msg *)buffer;
2648 struct sadb_ext *ext;
2649 struct sadb_lifetime *currentlt = NULL, *hardlt = NULL, *softlt = NULL;
2650 struct sadb_lifetime *idlelt = NULL;
2651 int i;
2652 time_t wallclock;
2653
2654 (void) time(&wallclock);
2655
2656 print_sadb_msg(file, samsg, want_timestamp ? wallclock : 0, vflag);
2657 current = (uint64_t *)(samsg + 1);
2658 while (current - buffer < samsg->sadb_msg_len) {
2659 int lenbytes;
2660
2661 ext = (struct sadb_ext *)current;
2662 lenbytes = SADB_64TO8(ext->sadb_ext_len);
2663 switch (ext->sadb_ext_type) {
2664 case SADB_EXT_SA:
2665 print_sa(file, dgettext(TEXT_DOMAIN,
2666 "SA: "), (struct sadb_sa *)current);
2667 break;
2668 /*
2669 * Pluck out lifetimes and print them at the end. This is
2670 * to show relative lifetimes.
2671 */
2672 case SADB_EXT_LIFETIME_CURRENT:
2673 currentlt = (struct sadb_lifetime *)current;
2674 break;
2675 case SADB_EXT_LIFETIME_HARD:
2676 hardlt = (struct sadb_lifetime *)current;
2677 break;
2678 case SADB_EXT_LIFETIME_SOFT:
2679 softlt = (struct sadb_lifetime *)current;
2680 break;
2681 case SADB_X_EXT_LIFETIME_IDLE:
2682 idlelt = (struct sadb_lifetime *)current;
2683 break;
2684
2685 case SADB_EXT_ADDRESS_SRC:
2686 print_address(file, dgettext(TEXT_DOMAIN, "SRC: "),
2687 (struct sadb_address *)current, ignore_nss);
2688 break;
2689 case SADB_X_EXT_ADDRESS_INNER_SRC:
2690 print_address(file, dgettext(TEXT_DOMAIN, "INS: "),
2691 (struct sadb_address *)current, ignore_nss);
2692 break;
2693 case SADB_EXT_ADDRESS_DST:
2694 print_address(file, dgettext(TEXT_DOMAIN, "DST: "),
2695 (struct sadb_address *)current, ignore_nss);
2696 break;
2697 case SADB_X_EXT_ADDRESS_INNER_DST:
2698 print_address(file, dgettext(TEXT_DOMAIN, "IND: "),
2699 (struct sadb_address *)current, ignore_nss);
2700 break;
2701 case SADB_EXT_KEY_AUTH:
2702 print_key(file, dgettext(TEXT_DOMAIN,
2703 "AKY: "), (struct sadb_key *)current);
2704 break;
2705 case SADB_EXT_KEY_ENCRYPT:
2706 print_key(file, dgettext(TEXT_DOMAIN,
2707 "EKY: "), (struct sadb_key *)current);
2708 break;
2709 case SADB_EXT_IDENTITY_SRC:
2710 print_ident(file, dgettext(TEXT_DOMAIN, "SID: "),
2711 (struct sadb_ident *)current);
2712 break;
2713 case SADB_EXT_IDENTITY_DST:
2714 print_ident(file, dgettext(TEXT_DOMAIN, "DID: "),
2715 (struct sadb_ident *)current);
2716 break;
2717 case SADB_EXT_SENSITIVITY:
2718 print_sens(file, dgettext(TEXT_DOMAIN, "SNS: "),
2719 (struct sadb_sens *)current, ignore_nss);
2720 break;
2721 case SADB_EXT_PROPOSAL:
2722 print_prop(file, dgettext(TEXT_DOMAIN, "PRP: "),
2723 (struct sadb_prop *)current);
2724 break;
2725 case SADB_EXT_SUPPORTED_AUTH:
2726 print_supp(file, dgettext(TEXT_DOMAIN, "SUA: "),
2727 (struct sadb_supported *)current);
2728 break;
2729 case SADB_EXT_SUPPORTED_ENCRYPT:
2730 print_supp(file, dgettext(TEXT_DOMAIN, "SUE: "),
2731 (struct sadb_supported *)current);
2732 break;
2733 case SADB_EXT_SPIRANGE:
2734 print_spirange(file, dgettext(TEXT_DOMAIN, "SPR: "),
2735 (struct sadb_spirange *)current);
2736 break;
2737 case SADB_X_EXT_EPROP:
2738 print_eprop(file, dgettext(TEXT_DOMAIN, "EPR: "),
2739 (struct sadb_prop *)current);
2740 break;
2741 case SADB_X_EXT_KM_COOKIE:
2742 print_kmc(file, dgettext(TEXT_DOMAIN, "KMC: "),
2743 (struct sadb_x_kmc *)current);
2744 break;
2745 case SADB_X_EXT_ADDRESS_NATT_REM:
2746 print_address(file, dgettext(TEXT_DOMAIN, "NRM: "),
2747 (struct sadb_address *)current, ignore_nss);
2748 break;
2749 case SADB_X_EXT_ADDRESS_NATT_LOC:
2750 print_address(file, dgettext(TEXT_DOMAIN, "NLC: "),
2751 (struct sadb_address *)current, ignore_nss);
2752 break;
2753 case SADB_X_EXT_PAIR:
2754 print_pair(file, dgettext(TEXT_DOMAIN, "OTH: "),
2755 (struct sadb_x_pair *)current);
2756 break;
2757 case SADB_X_EXT_OUTER_SENS:
2758 print_sens(file, dgettext(TEXT_DOMAIN, "OSN: "),
2759 (struct sadb_sens *)current, ignore_nss);
2760 break;
2761 case SADB_X_EXT_REPLAY_VALUE:
2762 (void) print_replay(file, dgettext(TEXT_DOMAIN,
2763 "RPL: "), (sadb_x_replay_ctr_t *)current);
2764 break;
2765 default:
2766 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2767 "UNK: Unknown ext. %d, len %d.\n"),
2768 ext->sadb_ext_type, lenbytes);
2769 for (i = 0; i < ext->sadb_ext_len; i++)
2770 (void) fprintf(file, dgettext(TEXT_DOMAIN,
2771 "UNK: 0x%" PRIx64 "\n"),
2772 ((uint64_t *)ext)[i]);
2773 break;
2774 }
2775 current += (lenbytes == 0) ?
2776 SADB_8TO64(sizeof (struct sadb_ext)) : ext->sadb_ext_len;
2777 }
2778 /*
2779 * Print lifetimes NOW.
2780 */
2781 if (currentlt != NULL || hardlt != NULL || softlt != NULL ||
2782 idlelt != NULL)
2783 print_lifetimes(file, wallclock, currentlt, hardlt,
2784 softlt, idlelt, vflag);
2785
2786 if (current - buffer != samsg->sadb_msg_len) {
2787 warnxfp(EFD(file), dgettext(TEXT_DOMAIN,
2788 "WARNING: insufficient buffer space or corrupt message."));
2789 }
2790
2791 (void) fflush(file); /* Make sure our message is out there. */
2792 }
2793
2794 /*
2795 * save_XXX functions are used when "saving" the SA tables to either a
2796 * file or standard output. They use the dump_XXX functions where needed,
2797 * but mostly they use the rparseXXX functions.
2798 */
2799
2800 /*
2801 * Print save information for a lifetime extension.
2802 *
2803 * NOTE : It saves the lifetime in absolute terms. For example, if you
2804 * had a hard_usetime of 60 seconds, you'll save it as 60 seconds, even though
2805 * there may have been 59 seconds burned off the clock.
2806 */
2807 boolean_t
2808 save_lifetime(struct sadb_lifetime *lifetime, FILE *ofile)
2809 {
2810 char *prefix;
2811
2812 switch (lifetime->sadb_lifetime_exttype) {
2813 case SADB_EXT_LIFETIME_HARD:
2814 prefix = "hard";
2815 break;
2816 case SADB_EXT_LIFETIME_SOFT:
2817 prefix = "soft";
2818 break;
2819 case SADB_X_EXT_LIFETIME_IDLE:
2820 prefix = "idle";
2821 break;
2822 }
2823
2824 if (putc('\t', ofile) == EOF)
2825 return (B_FALSE);
2826
2827 if (lifetime->sadb_lifetime_allocations != 0 && fprintf(ofile,
2828 "%s_alloc %u ", prefix, lifetime->sadb_lifetime_allocations) < 0)
2829 return (B_FALSE);
2830
2831 if (lifetime->sadb_lifetime_bytes != 0 && fprintf(ofile,
2832 "%s_bytes %" PRIu64 " ", prefix, lifetime->sadb_lifetime_bytes) < 0)
2833 return (B_FALSE);
2834
2835 if (lifetime->sadb_lifetime_addtime != 0 && fprintf(ofile,
2836 "%s_addtime %" PRIu64 " ", prefix,
2837 lifetime->sadb_lifetime_addtime) < 0)
2838 return (B_FALSE);
2839
2840 if (lifetime->sadb_lifetime_usetime != 0 && fprintf(ofile,
2841 "%s_usetime %" PRIu64 " ", prefix,
2842 lifetime->sadb_lifetime_usetime) < 0)
2843 return (B_FALSE);
2844
2845 return (B_TRUE);
2846 }
2847
2848 /*
2849 * Print save information for an address extension.
2850 */
2851 boolean_t
2852 save_address(struct sadb_address *addr, FILE *ofile)
2853 {
2854 char *printable_addr, buf[INET6_ADDRSTRLEN];
2855 const char *prefix, *pprefix;
2856 struct sockaddr_in6 *sin6 = (struct sockaddr_in6 *)(addr + 1);
2857 struct sockaddr_in *sin = (struct sockaddr_in *)sin6;
2858 int af = sin->sin_family;
2859
2860 /*
2861 * Address-family reality check.
2862 */
2863 if (af != AF_INET6 && af != AF_INET)
2864 return (B_FALSE);
2865
2866 switch (addr->sadb_address_exttype) {
2867 case SADB_EXT_ADDRESS_SRC:
2868 prefix = "src";
2869 pprefix = "sport";
2870 break;
2871 case SADB_X_EXT_ADDRESS_INNER_SRC:
2872 prefix = "isrc";
2873 pprefix = "isport";
2874 break;
2875 case SADB_EXT_ADDRESS_DST:
2876 prefix = "dst";
2877 pprefix = "dport";
2878 break;
2879 case SADB_X_EXT_ADDRESS_INNER_DST:
2880 prefix = "idst";
2881 pprefix = "idport";
2882 break;
2883 case SADB_X_EXT_ADDRESS_NATT_LOC:
2884 prefix = "nat_loc ";
2885 pprefix = "nat_lport";
2886 break;
2887 case SADB_X_EXT_ADDRESS_NATT_REM:
2888 prefix = "nat_rem ";
2889 pprefix = "nat_rport";
2890 break;
2891 }
2892
2893 if (fprintf(ofile, " %s ", prefix) < 0)
2894 return (B_FALSE);
2895
2896 /*
2897 * Do not do address-to-name translation, given that we live in
2898 * an age of names that explode into many addresses.
2899 */
2900 printable_addr = (char *)inet_ntop(af,
2901 (af == AF_INET) ? (char *)&sin->sin_addr : (char *)&sin6->sin6_addr,
2902 buf, sizeof (buf));
2903 if (printable_addr == NULL)
2904 printable_addr = "Invalid IP address.";
2905 if (fprintf(ofile, "%s", printable_addr) < 0)
2906 return (B_FALSE);
2907 if (addr->sadb_address_prefixlen != 0 &&
2908 !((addr->sadb_address_prefixlen == 32 && af == AF_INET) ||
2909 (addr->sadb_address_prefixlen == 128 && af == AF_INET6))) {
2910 if (fprintf(ofile, "/%d", addr->sadb_address_prefixlen) < 0)
2911 return (B_FALSE);
2912 }
2913
2914 /*
2915 * The port is in the same position for struct sockaddr_in and
2916 * struct sockaddr_in6. We exploit that property here.
2917 */
2918 if ((pprefix != NULL) && (sin->sin_port != 0))
2919 (void) fprintf(ofile, " %s %d", pprefix, ntohs(sin->sin_port));
2920
2921 return (B_TRUE);
2922 }
2923
2924 /*
2925 * Print save information for a key extension. Returns whether writing
2926 * to the specified output file was successful or not.
2927 */
2928 boolean_t
2929 save_key(struct sadb_key *key, FILE *ofile)
2930 {
2931 char *prefix;
2932
2933 if (putc('\t', ofile) == EOF)
2934 return (B_FALSE);
2935
2936 prefix = (key->sadb_key_exttype == SADB_EXT_KEY_AUTH) ? "auth" : "encr";
2937
2938 if (fprintf(ofile, "%skey ", prefix) < 0)
2939 return (B_FALSE);
2940
2941 if (dump_key((uint8_t *)(key + 1), key->sadb_key_bits,
2942 key->sadb_key_reserved, ofile, B_FALSE) == -1)
2943 return (B_FALSE);
2944
2945 return (B_TRUE);
2946 }
2947
2948 /*
2949 * Print save information for an identity extension.
2950 */
2951 boolean_t
2952 save_ident(struct sadb_ident *ident, FILE *ofile)
2953 {
2954 char *prefix;
2955
2956 if (putc('\t', ofile) == EOF)
2957 return (B_FALSE);
2958
2959 prefix = (ident->sadb_ident_exttype == SADB_EXT_IDENTITY_SRC) ? "src" :
2960 "dst";
2961
2962 if (fprintf(ofile, "%sidtype %s ", prefix,
2963 rparseidtype(ident->sadb_ident_type)) < 0)
2964 return (B_FALSE);
2965
2966 if (ident->sadb_ident_type == SADB_X_IDENTTYPE_DN ||
2967 ident->sadb_ident_type == SADB_X_IDENTTYPE_GN) {
2968 if (fprintf(ofile, dgettext(TEXT_DOMAIN,
2969 "<can-not-print>")) < 0)
2970 return (B_FALSE);
2971 } else {
2972 if (fprintf(ofile, "%s", (char *)(ident + 1)) < 0)
2973 return (B_FALSE);
2974 }
2975
2976 return (B_TRUE);
2977 }
2978
2979 boolean_t
2980 save_sens(struct sadb_sens *sens, FILE *ofile)
2981 {
2982 char *prefix;
2983 char *hlabel;
2984 bslabel_t sl;
2985
2986 if (putc('\t', ofile) == EOF)
2987 return (B_FALSE);
2988
2989 if (sens->sadb_sens_exttype == SADB_EXT_SENSITIVITY)
2990 prefix = "label";
2991 else if ((sens->sadb_x_sens_flags & SADB_X_SENS_IMPLICIT) == 0)
2992 prefix = "outer-label";
2993 else
2994 prefix = "implicit-label";
2995
2996 ipsec_convert_sens_to_bslabel(sens, &sl);
2997 ipsec_convert_bslabel_to_hex(&sl, &hlabel);
2998
2999 if (fprintf(ofile, "%s %s ", prefix, hlabel) < 0) {
3000 free(hlabel);
3001 return (B_FALSE);
3002 }
3003 free(hlabel);
3004
3005 return (B_TRUE);
3006 }
3007
3008 /*
3009 * "Save" a security association to an output file.
3010 *
3011 * NOTE the lack of calls to dgettext() because I'm outputting parseable stuff.
3012 * ALSO NOTE that if you change keywords (see parsecmd()), you'll have to
3013 * change them here as well.
3014 */
3015 void
3016 save_assoc(uint64_t *buffer, FILE *ofile)
3017 {
3018 int terrno;
3019 boolean_t seen_proto = B_FALSE, seen_iproto = B_FALSE;
3020 uint64_t *current;
3021 struct sadb_address *addr;
3022 struct sadb_x_replay_ctr *repl;
3023 struct sadb_msg *samsg = (struct sadb_msg *)buffer;
3024 struct sadb_ext *ext;
3025
3026 #define tidyup() \
3027 terrno = errno; (void) fclose(ofile); errno = terrno; \
3028 interactive = B_FALSE
3029
3030 #define savenl() if (fputs(" \\\n", ofile) == EOF) \
3031 { bail(dgettext(TEXT_DOMAIN, "savenl")); }
3032
3033 if (fputs("# begin assoc\n", ofile) == EOF)
3034 bail(dgettext(TEXT_DOMAIN,
3035 "save_assoc: Opening comment of SA"));
3036 if (fprintf(ofile, "add %s ", rparsesatype(samsg->sadb_msg_satype)) < 0)
3037 bail(dgettext(TEXT_DOMAIN, "save_assoc: First line of SA"));
3038 savenl();
3039
3040 current = (uint64_t *)(samsg + 1);
3041 while (current - buffer < samsg->sadb_msg_len) {
3042 struct sadb_sa *assoc;
3043
3044 ext = (struct sadb_ext *)current;
3045 addr = (struct sadb_address *)ext; /* Just in case... */
3046 switch (ext->sadb_ext_type) {
3047 case SADB_EXT_SA:
3048 assoc = (struct sadb_sa *)ext;
3049 if (assoc->sadb_sa_state != SADB_SASTATE_MATURE) {
3050 if (fprintf(ofile, "# WARNING: SA was dying "
3051 "or dead.\n") < 0) {
3052 tidyup();
3053 bail(dgettext(TEXT_DOMAIN,
3054 "save_assoc: fprintf not mature"));
3055 }
3056 }
3057 if (fprintf(ofile, " spi 0x%x ",
3058 ntohl(assoc->sadb_sa_spi)) < 0) {
3059 tidyup();
3060 bail(dgettext(TEXT_DOMAIN,
3061 "save_assoc: fprintf spi"));
3062 }
3063 if (assoc->sadb_sa_encrypt != SADB_EALG_NONE) {
3064 if (fprintf(ofile, "encr_alg %s ",
3065 rparsealg(assoc->sadb_sa_encrypt,
3066 IPSEC_PROTO_ESP)) < 0) {
3067 tidyup();
3068 bail(dgettext(TEXT_DOMAIN,
3069 "save_assoc: fprintf encrypt"));
3070 }
3071 }
3072 if (assoc->sadb_sa_auth != SADB_AALG_NONE) {
3073 if (fprintf(ofile, "auth_alg %s ",
3074 rparsealg(assoc->sadb_sa_auth,
3075 IPSEC_PROTO_AH)) < 0) {
3076 tidyup();
3077 bail(dgettext(TEXT_DOMAIN,
3078 "save_assoc: fprintf auth"));
3079 }
3080 }
3081 if (fprintf(ofile, "replay %d ",
3082 assoc->sadb_sa_replay) < 0) {
3083 tidyup();
3084 bail(dgettext(TEXT_DOMAIN,
3085 "save_assoc: fprintf replay"));
3086 }
3087 if (assoc->sadb_sa_flags & (SADB_X_SAFLAGS_NATT_LOC |
3088 SADB_X_SAFLAGS_NATT_REM)) {
3089 if (fprintf(ofile, "encap udp") < 0) {
3090 tidyup();
3091 bail(dgettext(TEXT_DOMAIN,
3092 "save_assoc: fprintf encap"));
3093 }
3094 }
3095 savenl();
3096 break;
3097 case SADB_EXT_LIFETIME_HARD:
3098 case SADB_EXT_LIFETIME_SOFT:
3099 case SADB_X_EXT_LIFETIME_IDLE:
3100 if (!save_lifetime((struct sadb_lifetime *)ext,
3101 ofile)) {
3102 tidyup();
3103 bail(dgettext(TEXT_DOMAIN, "save_lifetime"));
3104 }
3105 savenl();
3106 break;
3107 case SADB_X_EXT_ADDRESS_INNER_SRC:
3108 case SADB_X_EXT_ADDRESS_INNER_DST:
3109 if (!seen_iproto && addr->sadb_address_proto) {
3110 (void) fprintf(ofile, " iproto %d",
3111 addr->sadb_address_proto);
3112 savenl();
3113 seen_iproto = B_TRUE;
3114 }
3115 goto skip_srcdst; /* Hack to avoid cases below... */
3116 /* FALLTHRU */
3117 case SADB_EXT_ADDRESS_SRC:
3118 case SADB_EXT_ADDRESS_DST:
3119 if (!seen_proto && addr->sadb_address_proto) {
3120 (void) fprintf(ofile, " proto %d",
3121 addr->sadb_address_proto);
3122 savenl();
3123 seen_proto = B_TRUE;
3124 }
3125 /* FALLTHRU */
3126 case SADB_X_EXT_ADDRESS_NATT_REM:
3127 case SADB_X_EXT_ADDRESS_NATT_LOC:
3128 skip_srcdst:
3129 if (!save_address(addr, ofile)) {
3130 tidyup();
3131 bail(dgettext(TEXT_DOMAIN, "save_address"));
3132 }
3133 savenl();
3134 break;
3135 case SADB_EXT_KEY_AUTH:
3136 case SADB_EXT_KEY_ENCRYPT:
3137 if (!save_key((struct sadb_key *)ext, ofile)) {
3138 tidyup();
3139 bail(dgettext(TEXT_DOMAIN, "save_address"));
3140 }
3141 savenl();
3142 break;
3143 case SADB_EXT_IDENTITY_SRC:
3144 case SADB_EXT_IDENTITY_DST:
3145 if (!save_ident((struct sadb_ident *)ext, ofile)) {
3146 tidyup();
3147 bail(dgettext(TEXT_DOMAIN, "save_address"));
3148 }
3149 savenl();
3150 break;
3151 case SADB_X_EXT_REPLAY_VALUE:
3152 repl = (sadb_x_replay_ctr_t *)ext;
3153 if ((repl->sadb_x_rc_replay32 == 0) &&
3154 (repl->sadb_x_rc_replay64 == 0)) {
3155 tidyup();
3156 bail(dgettext(TEXT_DOMAIN, "Replay Value"));
3157 }
3158 if (fprintf(ofile, "replay_value %" PRIu64 "",
3159 (repl->sadb_x_rc_replay32 == 0 ?
3160 repl->sadb_x_rc_replay64 :
3161 repl->sadb_x_rc_replay32)) < 0) {
3162 tidyup();
3163 bail(dgettext(TEXT_DOMAIN,
3164 "save_assoc: fprintf replay value"));
3165 }
3166 savenl();
3167 break;
3168 case SADB_EXT_SENSITIVITY:
3169 case SADB_X_EXT_OUTER_SENS:
3170 if (!save_sens((struct sadb_sens *)ext, ofile)) {
3171 tidyup();
3172 bail(dgettext(TEXT_DOMAIN, "save_sens"));
3173 }
3174 savenl();
3175 break;
3176 default:
3177 /* Skip over irrelevant extensions. */
3178 break;
3179 }
3180 current += ext->sadb_ext_len;
3181 }
3182
3183 if (fputs(dgettext(TEXT_DOMAIN, "\n# end assoc\n\n"), ofile) == EOF) {
3184 tidyup();
3185 bail(dgettext(TEXT_DOMAIN, "save_assoc: last fputs"));
3186 }
3187 }
3188
3189 /*
3190 * Open the output file for the "save" command.
3191 */
3192 FILE *
3193 opensavefile(char *filename)
3194 {
3195 int fd;
3196 FILE *retval;
3197 struct stat buf;
3198
3199 /*
3200 * If the user specifies "-" or doesn't give a filename, then
3201 * dump to stdout. Make sure to document the dangers of files
3202 * that are NFS, directing your output to strange places, etc.
3203 */
3204 if (filename == NULL || strcmp("-", filename) == 0)
3205 return (stdout);
3206
3207 /*
3208 * open the file with the create bits set. Since I check for
3209 * real UID == root in main(), I won't worry about the ownership
3210 * problem.
3211 */
3212 fd = open(filename, O_WRONLY | O_EXCL | O_CREAT | O_TRUNC, S_IRUSR);
3213 if (fd == -1) {
3214 if (errno != EEXIST)
3215 bail_msg("%s %s: %s", filename, dgettext(TEXT_DOMAIN,
3216 "open error"),
3217 strerror(errno));
3218 fd = open(filename, O_WRONLY | O_TRUNC, 0);
3219 if (fd == -1)
3220 bail_msg("%s %s: %s", filename, dgettext(TEXT_DOMAIN,
3221 "open error"), strerror(errno));
3222 if (fstat(fd, &buf) == -1) {
3223 (void) close(fd);
3224 bail_msg("%s fstat: %s", filename, strerror(errno));
3225 }
3226 if (S_ISREG(buf.st_mode) &&
3227 ((buf.st_mode & S_IAMB) != S_IRUSR)) {
3228 warnx(dgettext(TEXT_DOMAIN,
3229 "WARNING: Save file already exists with "
3230 "permission %o."), buf.st_mode & S_IAMB);
3231 warnx(dgettext(TEXT_DOMAIN,
3232 "Normal users may be able to read IPsec "
3233 "keying material."));
3234 }
3235 }
3236
3237 /* Okay, we have an FD. Assign it to a stdio FILE pointer. */
3238 retval = fdopen(fd, "w");
3239 if (retval == NULL) {
3240 (void) close(fd);
3241 bail_msg("%s %s: %s", filename, dgettext(TEXT_DOMAIN,
3242 "fdopen error"), strerror(errno));
3243 }
3244 return (retval);
3245 }
3246
3247 const char *
3248 do_inet_ntop(const void *addr, char *cp, size_t size)
3249 {
3250 boolean_t isv4;
3251 struct in6_addr *inaddr6 = (struct in6_addr *)addr;
3252 struct in_addr inaddr;
3253
3254 if ((isv4 = IN6_IS_ADDR_V4MAPPED(inaddr6)) == B_TRUE) {
3255 IN6_V4MAPPED_TO_INADDR(inaddr6, &inaddr);
3256 }
3257
3258 return (inet_ntop(isv4 ? AF_INET : AF_INET6,
3259 isv4 ? (void *)&inaddr : inaddr6, cp, size));
3260 }
3261
3262 char numprint[NBUF_SIZE];
3263
3264 /*
3265 * Parse and reverse parse a specific SA type (AH, ESP, etc.).
3266 */
3267 static struct typetable {
3268 char *type;
3269 int token;
3270 } type_table[] = {
3271 {"all", SADB_SATYPE_UNSPEC},
3272 {"ah", SADB_SATYPE_AH},
3273 {"esp", SADB_SATYPE_ESP},
3274 /* PF_KEY NOTE: More to come if net/pfkeyv2.h gets updated. */
3275 {NULL, 0} /* Token value is irrelevant for this entry. */
3276 };
3277
3278 char *
3279 rparsesatype(int type)
3280 {
3281 struct typetable *tt = type_table;
3282
3283 while (tt->type != NULL && type != tt->token)
3284 tt++;
3285
3286 if (tt->type == NULL) {
3287 (void) snprintf(numprint, NBUF_SIZE, "%d", type);
3288 } else {
3289 return (tt->type);
3290 }
3291
3292 return (numprint);
3293 }
3294
3295
3296 /*
3297 * Return a string containing the name of the specified numerical algorithm
3298 * identifier.
3299 */
3300 char *
3301 rparsealg(uint8_t alg, int proto_num)
3302 {
3303 static struct ipsecalgent *holder = NULL; /* we're single-threaded */
3304
3305 if (holder != NULL)
3306 freeipsecalgent(holder);
3307
3308 holder = getipsecalgbynum(alg, proto_num, NULL);
3309 if (holder == NULL) {
3310 (void) snprintf(numprint, NBUF_SIZE, "%d", alg);
3311 return (numprint);
3312 }
3313
3314 return (*(holder->a_names));
3315 }
3316
3317 /*
3318 * Parse and reverse parse out a source/destination ID type.
3319 */
3320 static struct idtypes {
3321 char *idtype;
3322 uint8_t retval;
3323 } idtypes[] = {
3324 {"prefix", SADB_IDENTTYPE_PREFIX},
3325 {"fqdn", SADB_IDENTTYPE_FQDN},
3326 {"domain", SADB_IDENTTYPE_FQDN},
3327 {"domainname", SADB_IDENTTYPE_FQDN},
3328 {"user_fqdn", SADB_IDENTTYPE_USER_FQDN},
3329 {"mailbox", SADB_IDENTTYPE_USER_FQDN},
3330 {"der_dn", SADB_X_IDENTTYPE_DN},
3331 {"der_gn", SADB_X_IDENTTYPE_GN},
3332 {NULL, 0}
3333 };
3334
3335 char *
3336 rparseidtype(uint16_t type)
3337 {
3338 struct idtypes *idp;
3339
3340 for (idp = idtypes; idp->idtype != NULL; idp++) {
3341 if (type == idp->retval)
3342 return (idp->idtype);
3343 }
3344
3345 (void) snprintf(numprint, NBUF_SIZE, "%d", type);
3346 return (numprint);
3347 }
3348
3349 /*
3350 * This is a general purpose exit function, calling functions can specify an
3351 * error type. If the command calling this function was started by smf(5) the
3352 * error type could be used as a hint to the restarter. In the future this
3353 * function could be used to do something more intelligent with a process that
3354 * encounters an error. If exit() is called with an error code other than those
3355 * defined by smf(5), the program will just get restarted. Unless restarting
3356 * is likely to resolve the error condition, its probably sensible to just
3357 * log the error and keep running.
3358 *
3359 * The SERVICE_* exit_types mean nothing if the command was run from the
3360 * command line, just exit(). There are two special cases:
3361 *
3362 * SERVICE_DEGRADE - Not implemented in smf(5), one day it could hint that
3363 * the service is not running as well is it could. For
3364 * now, don't do anything, just record the error.
3365 * DEBUG_FATAL - Something happened, if the command was being run in debug
3366 * mode, exit() as you really want to know something happened,
3367 * otherwise just keep running. This is ignored when running
3368 * under smf(5).
3369 *
3370 * The function will handle an optional variable args error message, this
3371 * will be written to the error stream, typically a log file or stderr.
3372 */
3373 void
3374 ipsecutil_exit(exit_type_t type, char *fmri, FILE *fp, const char *fmt, ...)
3375 {
3376 int exit_status;
3377 va_list args;
3378
3379 if (fp == NULL)
3380 fp = stderr;
3381 if (fmt != NULL) {
3382 va_start(args, fmt);
3383 vwarnxfp(fp, fmt, args);
3384 va_end(args);
3385 }
3386
3387 if (fmri == NULL) {
3388 /* Command being run directly from a shell. */
3389 switch (type) {
3390 case SERVICE_EXIT_OK:
3391 exit_status = 0;
3392 break;
3393 case SERVICE_DEGRADE:
3394 return;
3395 case SERVICE_BADPERM:
3396 case SERVICE_BADCONF:
3397 case SERVICE_MAINTAIN:
3398 case SERVICE_DISABLE:
3399 case SERVICE_FATAL:
3400 case SERVICE_RESTART:
3401 case DEBUG_FATAL:
3402 warnxfp(fp, "Fatal error - exiting.");
3403 exit_status = 1;
3404 break;
3405 }
3406 } else {
3407 /* Command being run as a smf(5) method. */
3408 switch (type) {
3409 case SERVICE_EXIT_OK:
3410 exit_status = SMF_EXIT_OK;
3411 break;
3412 case SERVICE_DEGRADE: /* Not implemented yet. */
3413 case DEBUG_FATAL:
3414 /* Keep running, don't exit(). */
3415 return;
3416 case SERVICE_BADPERM:
3417 warnxfp(fp, dgettext(TEXT_DOMAIN,
3418 "Permission error with %s."), fmri);
3419 exit_status = SMF_EXIT_ERR_PERM;
3420 break;
3421 case SERVICE_BADCONF:
3422 warnxfp(fp, dgettext(TEXT_DOMAIN,
3423 "Bad configuration of service %s."), fmri);
3424 exit_status = SMF_EXIT_ERR_FATAL;
3425 break;
3426 case SERVICE_MAINTAIN:
3427 warnxfp(fp, dgettext(TEXT_DOMAIN,
3428 "Service %s needs maintenance."), fmri);
3429 exit_status = SMF_EXIT_ERR_FATAL;
3430 break;
3431 case SERVICE_DISABLE:
3432 exit_status = SMF_EXIT_ERR_FATAL;
3433 break;
3434 case SERVICE_FATAL:
3435 warnxfp(fp, dgettext(TEXT_DOMAIN,
3436 "Service %s fatal error."), fmri);
3437 exit_status = SMF_EXIT_ERR_FATAL;
3438 break;
3439 case SERVICE_RESTART:
3440 exit_status = 1;
3441 break;
3442 }
3443 }
3444 (void) fflush(fp);
3445 (void) fclose(fp);
3446 exit(exit_status);
3447 }