1 /* command interface to Pluto
2 * Copyright (C) 1997 Angelos D. Keromytis.
3 * Copyright (C) 1998-2001 D. Hugh Redelmeier.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
23 #include <sys/types.h>
24 #include <sys/socket.h>
26 #include <netinet/in.h>
27 #include <arpa/inet.h>
33 #include <utils/optionsfrom.h>
35 #include "constants.h"
39 static void help(void)
44 " [--optionsfrom <filename>]"
53 " --name <connection_name>"
56 " [--tunnelipv4 | --tunnelipv6]"
58 " (--host <ip-address> | --id <identity>)"
61 " [--ca <distinguished name>]"
62 " [--sendcert <policy>]"
64 " [--groups <access control groups>]"
66 " [--ikeport <port-number>]"
67 " [--nexthop <ip-address>]"
68 " [--srcip <ip-address>]"
70 " [--client <subnet> | --clientwithin <address range>]"
71 " [--clientprotoport <protocol>/<port>]"
74 " [--updown <updown>]"
77 " (--host <ip-address> | --id <identity>)"
80 " [--ca <distinguished name>]"
81 " [--sendcert <policy>]"
83 " [--ikeport <port-number>]"
84 " [--nexthop <ip-address>]"
85 " [--srcip <ip-address>]"
87 " [--client <subnet> | --clientwithin <address range>]"
88 " [--clientprotoport <protocol>/<port>]"
91 " [--updown <updown>]"
101 " [--ikelifetime <seconds>]"
102 " [--ipseclifetime <seconds>]"
104 " [--reykeymargin <seconds>]"
105 " [--reykeyfuzz <percentage>]"
107 " [--keyingtries <count>]"
109 " [--esp <esp-algos>]"
113 " [--dpdaction (none|clear|hold|restart)]"
115 " [--dpddelay <seconds> --dpdtimeout <seconds>]"
117 " [--initiateontraffic|--pass|--drop|--reject]"
119 " [--failnone|--failpass|--faildrop|--failreject]"
122 " (--route | --unroute)"
123 " --name <connection_name>"
128 " (--initiate | --terminate)"
129 " --name <connection_name>"
132 "opportunistic initiation: whack"
133 " [--tunnelipv4 | --tunnelipv6]"
135 " --oppohere <ip-address>"
136 " --oppothere <ip-address>"
140 " (--name <connection_name> | --caname <ca name>)"
143 " --deletestate <state_object_number>"
144 " --crash <ip-address>"
149 " [--pubkeyrsa <key>]"
158 " [--ldaphost <hostname>]"
159 " [--ldapbase <base>]"
164 " [--strictcrlpolicy]"
167 "debug: whack [--name <connection_name>]"
175 " [--debug-emitting]"
178 " [--debug-lifecycle]"
184 " [--debug-controlmore]"
188 "leases: whack --leases"
189 " [--name <connection_name>]"
190 " [--lease-addr <ip-address> | --lease-id <identity>]"
193 " (--listen | --unlisten)"
195 "list: whack [--utc]"
220 " [--rereadocspcerts]"
226 " [--name <connection_name>] --status|--statusall"
229 " --scencrypt|scdecrypt <value>"
231 " [--outbase <base>]"
237 "strongSwan "VERSION
"\n");
240 static const char *label
= NULL
; /* --label operand, saved for diagnostics */
242 static const char *name
= NULL
; /* --name operand, saved for diagnostics */
244 /* options read by optionsfrom */
248 * exit whack after cleaning up
250 static void whack_exit(int status
)
252 options
->destroy(options
);
257 * print a string as a diagnostic, then exit whack unhappily
259 static void diag(const char *mess
)
263 fprintf(stderr
, "whack error: ");
266 fprintf(stderr
, "%s ", label
);
270 fprintf(stderr
, "\"%s\" ", name
);
272 fprintf(stderr
, "%s\n", mess
);
274 whack_exit(RC_WHACK_PROBLEM
);
277 /* conditially calls diag; prints second arg, if non-NULL, as quoted string */
278 static void diagq(err_t ugh
, const char *this)
288 char buf
[120]; /* arbitrary limit */
290 snprintf(buf
, sizeof(buf
), "%s \"%s\"", ugh
, this);
296 /* complex combined operands return one of these enumerated values
297 * Note: these become flags in an lset_t. Since there are more than
298 * 32, we partition them into:
299 * - OPT_* options (most random options)
300 * - LST_* options (list various internal data)
301 * - DBGOPT_* option (DEBUG options)
302 * - END_* options (End description options)
303 * - CD_* options (Connection Description options)
304 * - CA_* options (CA description options)
307 # define OPT_FIRST OPT_CTLBASE
353 # define OPT_LAST OPT_ASYNC /* last "normal" option */
355 /* Smartcard options */
357 # define SC_FIRST SC_ENCRYPT /* first smartcard option */
364 # define SC_LAST SC_OUTBASE /* last "smartcard" option */
368 # define LST_FIRST LST_UTC /* first list option */
384 # define LST_LAST LST_ALL /* last list option */
386 /* Connection End Description options */
388 # define END_FIRST END_HOST /* first end description */
405 #define END_LAST END_UPDOWN /* last end description*/
407 /* Connection Description options -- segregated */
409 # define CD_FIRST CD_TO /* first connection description */
412 # define CD_POLICY_FIRST CD_PSK
413 CD_PSK
, /* same order as POLICY_* */
414 CD_RSASIG
, /* same order as POLICY_* */
415 CD_ENCRYPT
, /* same order as POLICY_* */
416 CD_AUTHENTICATE
, /* same order as POLICY_* */
417 CD_COMPRESS
, /* same order as POLICY_* */
418 CD_TUNNEL
, /* same order as POLICY_* */
419 CD_PFS
, /* same order as POLICY_* */
420 CD_DISABLEARRIVALCHECK
, /* same order as POLICY_* */
421 CD_SHUNT0
, /* same order as POLICY_* */
422 CD_SHUNT1
, /* same order as POLICY_* */
423 CD_FAIL0
, /* same order as POLICY_* */
424 CD_FAIL1
, /* same order as POLICY_* */
425 CD_DONT_REKEY
, /* same order as POLICY_* */
444 # define CD_LAST CD_ESP /* last connection description */
446 /* Certificate Authority (CA) description options */
448 # define CA_FIRST CA_NAME /* first ca description */
459 # define CA_LAST CA_STRICT /* last ca description */
461 #ifdef DEBUG /* must be last so others are less than 32 to fit in lset_t */
462 # define DBGOPT_FIRST DBGOPT_NONE
464 /* NOTE: these definitions must match DBG_* and IMPAIR_* in constants.h */
468 DBGOPT_RAW
, /* same order as DBG_* */
469 DBGOPT_CRYPT
, /* same order as DBG_* */
470 DBGOPT_PARSING
, /* same order as DBG_* */
471 DBGOPT_EMITTING
, /* same order as DBG_* */
472 DBGOPT_CONTROL
, /* same order as DBG_* */
473 DBGOPT_LIFECYCLE
, /* same order as DBG_* */
474 DBGOPT_KERNEL
, /* same order as DBG_* */
475 DBGOPT_DNS
, /* same order as DBG_* */
476 DBGOPT_NATT
, /* same order as DBG_* */
477 DBGOPT_OPPO
, /* same order as DBG_* */
478 DBGOPT_CONTROLMORE
, /* same order as DBG_* */
480 DBGOPT_PRIVATE
, /* same order as DBG_* */
482 DBGOPT_IMPAIR_DELAY_ADNS_KEY_ANSWER
, /* same order as IMPAIR_* */
483 DBGOPT_IMPAIR_DELAY_ADNS_TXT_ANSWER
, /* same order as IMPAIR_* */
484 DBGOPT_IMPAIR_BUST_MI2
, /* same order as IMPAIR_* */
485 DBGOPT_IMPAIR_BUST_MR2
/* same order as IMPAIR_* */
487 # define DBGOPT_LAST DBGOPT_IMPAIR_BUST_MR2
492 /* Carve up space for result from getop_long.
493 * Stupidly, the only result is an int.
494 * Numeric arg is bit immediately left of basic value.
497 #define OPTION_OFFSET 256 /* to get out of the way of letter options */
498 #define NUMERIC_ARG (1 << 9) /* expect a numeric argument */
499 #define AUX_SHIFT 10 /* amount to shift for aux information */
501 static const struct option long_opts
[] = {
502 # define OO OPTION_OFFSET
503 /* name, has_arg, flag, val */
505 { "help", no_argument
, NULL
, 'h' },
506 { "version", no_argument
, NULL
, 'v' },
507 { "optionsfrom", required_argument
, NULL
, '+' },
508 { "label", required_argument
, NULL
, 'l' },
510 { "ctlbase", required_argument
, NULL
, OPT_CTLBASE
+ OO
},
511 { "name", required_argument
, NULL
, OPT_NAME
+ OO
},
513 { "keyid", required_argument
, NULL
, OPT_KEYID
+ OO
},
514 { "addkey", no_argument
, NULL
, OPT_ADDKEY
+ OO
},
515 { "pubkeyrsa", required_argument
, NULL
, OPT_PUBKEYRSA
+ OO
},
517 { "myid", required_argument
, NULL
, OPT_MYID
+ OO
},
519 { "route", no_argument
, NULL
, OPT_ROUTE
+ OO
},
520 { "unroute", no_argument
, NULL
, OPT_UNROUTE
+ OO
},
522 { "initiate", no_argument
, NULL
, OPT_INITIATE
+ OO
},
523 { "terminate", no_argument
, NULL
, OPT_TERMINATE
+ OO
},
524 { "delete", no_argument
, NULL
, OPT_DELETE
+ OO
},
525 { "deletestate", required_argument
, NULL
, OPT_DELETESTATE
+ OO
+ NUMERIC_ARG
},
526 { "crash", required_argument
, NULL
, OPT_DELETECRASH
+ OO
},
527 { "listen", no_argument
, NULL
, OPT_LISTEN
+ OO
},
528 { "unlisten", no_argument
, NULL
, OPT_UNLISTEN
+ OO
},
530 { "leases", no_argument
, NULL
, OPT_LEASES
+ OO
},
531 { "lease-addr", required_argument
, NULL
, OPT_LEASEADDR
+ OO
},
532 { "lease-id", required_argument
, NULL
, OPT_LEASEID
+ OO
},
534 { "purgeocsp", no_argument
, NULL
, OPT_PURGEOCSP
+ OO
},
536 { "rereadsecrets", no_argument
, NULL
, OPT_REREADSECRETS
+ OO
},
537 { "rereadcacerts", no_argument
, NULL
, OPT_REREADCACERTS
+ OO
},
538 { "rereadaacerts", no_argument
, NULL
, OPT_REREADAACERTS
+ OO
},
539 { "rereadocspcerts", no_argument
, NULL
, OPT_REREADOCSPCERTS
+ OO
},
540 { "rereadacerts", no_argument
, NULL
, OPT_REREADACERTS
+ OO
},
541 { "rereadcrls", no_argument
, NULL
, OPT_REREADCRLS
+ OO
},
542 { "rereadall", no_argument
, NULL
, OPT_REREADALL
+ OO
},
543 { "status", no_argument
, NULL
, OPT_STATUS
+ OO
},
544 { "statusall", no_argument
, NULL
, OPT_STATUSALL
+ OO
},
545 { "shutdown", no_argument
, NULL
, OPT_SHUTDOWN
+ OO
},
547 { "oppohere", required_argument
, NULL
, OPT_OPPO_HERE
+ OO
},
548 { "oppothere", required_argument
, NULL
, OPT_OPPO_THERE
+ OO
},
550 { "asynchronous", no_argument
, NULL
, OPT_ASYNC
+ OO
},
552 /* smartcard options */
554 { "scencrypt", required_argument
, NULL
, SC_ENCRYPT
+ OO
},
555 { "scdecrypt", required_argument
, NULL
, SC_DECRYPT
+ OO
},
556 { "inbase", required_argument
, NULL
, SC_INBASE
+ OO
},
557 { "outbase", required_argument
, NULL
, SC_OUTBASE
+ OO
},
561 { "utc", no_argument
, NULL
, LST_UTC
+ OO
},
562 { "listalgs", no_argument
, NULL
, LST_ALGS
+ OO
},
563 { "listpubkeys", no_argument
, NULL
, LST_PUBKEYS
+ OO
},
564 { "listcerts", no_argument
, NULL
, LST_CERTS
+ OO
},
565 { "listcacerts", no_argument
, NULL
, LST_CACERTS
+ OO
},
566 { "listacerts", no_argument
, NULL
, LST_ACERTS
+ OO
},
567 { "listaacerts", no_argument
, NULL
, LST_AACERTS
+ OO
},
568 { "listocspcerts", no_argument
, NULL
, LST_OCSPCERTS
+ OO
},
569 { "listgroups", no_argument
, NULL
, LST_GROUPS
+ OO
},
570 { "listcainfos", no_argument
, NULL
, LST_CAINFOS
+ OO
},
571 { "listcrls", no_argument
, NULL
, LST_CRLS
+ OO
},
572 { "listocsp", no_argument
, NULL
, LST_OCSP
+ OO
},
573 { "listcards", no_argument
, NULL
, LST_CARDS
+ OO
},
574 { "listall", no_argument
, NULL
, LST_ALL
+ OO
},
576 /* options for an end description */
578 { "host", required_argument
, NULL
, END_HOST
+ OO
},
579 { "id", required_argument
, NULL
, END_ID
+ OO
},
580 { "cert", required_argument
, NULL
, END_CERT
+ OO
},
581 { "ca", required_argument
, NULL
, END_CA
+ OO
},
582 { "sendcert", required_argument
, NULL
, END_SENDCERT
+ OO
},
583 { "groups", required_argument
, NULL
, END_GROUPS
+ OO
},
584 { "ikeport", required_argument
, NULL
, END_IKEPORT
+ OO
+ NUMERIC_ARG
},
585 { "nexthop", required_argument
, NULL
, END_NEXTHOP
+ OO
},
586 { "client", required_argument
, NULL
, END_CLIENT
+ OO
},
587 { "clientwithin", required_argument
, NULL
, END_CLIENTWITHIN
+ OO
},
588 { "clientprotoport", required_argument
, NULL
, END_CLIENTPROTOPORT
+ OO
},
589 { "dnskeyondemand", no_argument
, NULL
, END_DNSKEYONDEMAND
+ OO
},
590 { "srcip", required_argument
, NULL
, END_SRCIP
+ OO
},
591 { "hostaccess", no_argument
, NULL
, END_HOSTACCESS
+ OO
},
592 { "updown", required_argument
, NULL
, END_UPDOWN
+ OO
},
594 /* options for a connection description */
596 { "to", no_argument
, NULL
, CD_TO
+ OO
},
598 { "psk", no_argument
, NULL
, CD_PSK
+ OO
},
599 { "rsasig", no_argument
, NULL
, CD_RSASIG
+ OO
},
601 { "encrypt", no_argument
, NULL
, CD_ENCRYPT
+ OO
},
602 { "authenticate", no_argument
, NULL
, CD_AUTHENTICATE
+ OO
},
603 { "compress", no_argument
, NULL
, CD_COMPRESS
+ OO
},
604 { "tunnel", no_argument
, NULL
, CD_TUNNEL
+ OO
},
605 { "tunnelipv4", no_argument
, NULL
, CD_TUNNELIPV4
+ OO
},
606 { "tunnelipv6", no_argument
, NULL
, CD_TUNNELIPV6
+ OO
},
607 { "pfs", no_argument
, NULL
, CD_PFS
+ OO
},
608 { "disablearrivalcheck", no_argument
, NULL
, CD_DISABLEARRIVALCHECK
+ OO
},
609 { "initiateontraffic", no_argument
, NULL
610 , CD_SHUNT0
+ (POLICY_SHUNT_TRAP
>> POLICY_SHUNT_SHIFT
<< AUX_SHIFT
) + OO
},
611 { "pass", no_argument
, NULL
612 , CD_SHUNT0
+ (POLICY_SHUNT_PASS
>> POLICY_SHUNT_SHIFT
<< AUX_SHIFT
) + OO
},
613 { "drop", no_argument
, NULL
614 , CD_SHUNT0
+ (POLICY_SHUNT_DROP
>> POLICY_SHUNT_SHIFT
<< AUX_SHIFT
) + OO
},
615 { "reject", no_argument
, NULL
616 , CD_SHUNT0
+ (POLICY_SHUNT_REJECT
>> POLICY_SHUNT_SHIFT
<< AUX_SHIFT
) + OO
},
617 { "failnone", no_argument
, NULL
618 , CD_FAIL0
+ (POLICY_FAIL_NONE
>> POLICY_FAIL_SHIFT
<< AUX_SHIFT
) + OO
},
619 { "failpass", no_argument
, NULL
620 , CD_FAIL0
+ (POLICY_FAIL_PASS
>> POLICY_FAIL_SHIFT
<< AUX_SHIFT
) + OO
},
621 { "faildrop", no_argument
, NULL
622 , CD_FAIL0
+ (POLICY_FAIL_DROP
>> POLICY_FAIL_SHIFT
<< AUX_SHIFT
) + OO
},
623 { "failreject", no_argument
, NULL
624 , CD_FAIL0
+ (POLICY_FAIL_REJECT
>> POLICY_FAIL_SHIFT
<< AUX_SHIFT
) + OO
},
625 { "dontrekey", no_argument
, NULL
, CD_DONT_REKEY
+ OO
},
626 { "ipv4", no_argument
, NULL
, CD_CONNIPV4
+ OO
},
627 { "ipv6", no_argument
, NULL
, CD_CONNIPV6
+ OO
},
629 { "ikelifetime", required_argument
, NULL
, CD_IKELIFETIME
+ OO
+ NUMERIC_ARG
},
630 { "ipseclifetime", required_argument
, NULL
, CD_IPSECLIFETIME
+ OO
+ NUMERIC_ARG
},
631 { "rekeymargin", required_argument
, NULL
, CD_RKMARGIN
+ OO
+ NUMERIC_ARG
},
632 { "rekeywindow", required_argument
, NULL
, CD_RKMARGIN
+ OO
+ NUMERIC_ARG
}, /* OBSOLETE */
633 { "rekeyfuzz", required_argument
, NULL
, CD_RKFUZZ
+ OO
+ NUMERIC_ARG
},
634 { "keyingtries", required_argument
, NULL
, CD_KTRIES
+ OO
+ NUMERIC_ARG
},
635 { "dpdaction", required_argument
, NULL
, CD_DPDACTION
+ OO
},
636 { "dpddelay", required_argument
, NULL
, CD_DPDDELAY
+ OO
+ NUMERIC_ARG
},
637 { "dpdtimeout", required_argument
, NULL
, CD_DPDTIMEOUT
+ OO
+ NUMERIC_ARG
},
638 { "ike", required_argument
, NULL
, CD_IKE
+ OO
},
639 { "pfsgroup", required_argument
, NULL
, CD_PFSGROUP
+ OO
},
640 { "esp", required_argument
, NULL
, CD_ESP
+ OO
},
642 /* options for a ca description */
644 { "caname", required_argument
, NULL
, CA_NAME
+ OO
},
645 { "cacert", required_argument
, NULL
, CA_CERT
+ OO
},
646 { "ldaphost", required_argument
, NULL
, CA_LDAPHOST
+ OO
},
647 { "ldapbase", required_argument
, NULL
, CA_LDAPBASE
+ OO
},
648 { "crluri", required_argument
, NULL
, CA_CRLURI
+ OO
},
649 { "crluri2", required_argument
, NULL
, CA_CRLURI2
+ OO
},
650 { "ocspuri", required_argument
, NULL
, CA_OCSPURI
+ OO
},
651 { "strictcrlpolicy", no_argument
, NULL
, CA_STRICT
+ OO
},
654 { "debug-none", no_argument
, NULL
, DBGOPT_NONE
+ OO
},
655 { "debug-all]", no_argument
, NULL
, DBGOPT_ALL
+ OO
},
656 { "debug-raw", no_argument
, NULL
, DBGOPT_RAW
+ OO
},
657 { "debug-crypt", no_argument
, NULL
, DBGOPT_CRYPT
+ OO
},
658 { "debug-parsing", no_argument
, NULL
, DBGOPT_PARSING
+ OO
},
659 { "debug-emitting", no_argument
, NULL
, DBGOPT_EMITTING
+ OO
},
660 { "debug-control", no_argument
, NULL
, DBGOPT_CONTROL
+ OO
},
661 { "debug-lifecycle", no_argument
, NULL
, DBGOPT_LIFECYCLE
+ OO
},
662 { "debug-klips", no_argument
, NULL
, DBGOPT_KERNEL
+ OO
},
663 { "debug-kernel", no_argument
, NULL
, DBGOPT_KERNEL
+ OO
},
664 { "debug-dns", no_argument
, NULL
, DBGOPT_DNS
+ OO
},
665 { "debug-natt", no_argument
, NULL
, DBGOPT_NATT
+ OO
},
666 { "debug-oppo", no_argument
, NULL
, DBGOPT_OPPO
+ OO
},
667 { "debug-controlmore", no_argument
, NULL
, DBGOPT_CONTROLMORE
+ OO
},
668 { "debug-private", no_argument
, NULL
, DBGOPT_PRIVATE
+ OO
},
670 { "impair-delay-adns-key-answer", no_argument
, NULL
, DBGOPT_IMPAIR_DELAY_ADNS_KEY_ANSWER
+ OO
},
671 { "impair-delay-adns-txt-answer", no_argument
, NULL
, DBGOPT_IMPAIR_DELAY_ADNS_TXT_ANSWER
+ OO
},
672 { "impair-bust-mi2", no_argument
, NULL
, DBGOPT_IMPAIR_BUST_MI2
+ OO
},
673 { "impair-bust-mr2", no_argument
, NULL
, DBGOPT_IMPAIR_BUST_MR2
+ OO
},
679 struct sockaddr_un ctl_addr
= { AF_UNIX
, DEFAULT_CTLBASE CTL_SUFFIX
};
681 /* helper variables and function to encode strings from whack message */
683 static char *next_str
,*str_roof
;
685 static bool pack_str(char **p
)
687 const char *s
= *p
== NULL?
"" : *p
; /* note: NULL becomes ""! */
688 size_t len
= strlen(s
) + 1;
690 if (str_roof
- next_str
< (ptrdiff_t)len
)
692 return FALSE
; /* fishy: no end found */
698 *p
= NULL
; /* don't send pointers on the wire! */
703 static void check_life_time(time_t life
, time_t limit
, const char *which
,
704 const whack_message_t
*msg
)
706 time_t mint
= msg
->sa_rekey_margin
* (100 + msg
->sa_rekey_fuzz
) / 100;
710 char buf
[200]; /* arbitrary limit */
712 snprintf(buf
, sizeof(buf
)
713 , "%s [%lu seconds] must be less than %lu seconds"
714 , which
, (unsigned long)life
, (unsigned long)limit
);
717 if ((msg
->policy
& POLICY_DONT_REKEY
) == LEMPTY
&& life
<= mint
)
719 char buf
[200]; /* arbitrary limit */
721 snprintf(buf
, sizeof(buf
)
722 , "%s [%lu] must be greater than"
723 " rekeymargin*(100+rekeyfuzz)/100 [%lu*(100+%lu)/100 = %lu]"
725 , (unsigned long)life
726 , (unsigned long)msg
->sa_rekey_margin
727 , (unsigned long)msg
->sa_rekey_fuzz
728 , (unsigned long)mint
);
733 static void clear_end(whack_end_t
*e
)
740 e
->host_port
= IKE_UDP_PORT
;
743 static void update_ports(whack_message_t
*m
)
747 if (m
->left
.port
!= 0) {
748 port
= htons(m
->left
.port
);
749 setportof(port
, &m
->left
.host_addr
);
750 setportof(port
, &m
->left
.client
.addr
);
752 if (m
->right
.port
!= 0) {
753 port
= htons(m
->right
.port
);
754 setportof(port
, &m
->right
.host_addr
);
755 setportof(port
, &m
->right
.client
.addr
);
759 static void check_end(whack_end_t
*this, whack_end_t
*that
,
760 bool default_nexthop
, sa_family_t caf
, sa_family_t taf
)
762 if (caf
!= addrtypeof(&this->host_addr
))
763 diag("address family of host inconsistent");
767 if (isanyaddr(&that
->host_addr
))
768 diag("our nexthop must be specified when other host is a %any or %opportunistic");
769 this->host_nexthop
= that
->host_addr
;
772 if (caf
!= addrtypeof(&this->host_nexthop
))
773 diag("address family of nexthop inconsistent");
775 if (this->has_client
)
777 if (taf
!= subnettypeof(&this->client
))
778 diag("address family of client subnet inconsistent");
782 /* fill in anyaddr-anyaddr as (missing) client subnet */
785 diagq(anyaddr(caf
, &cn
), NULL
);
786 diagq(rangetosubnet(&cn
, &cn
, &this->client
), NULL
);
789 /* fill in anyaddr if source IP is not defined */
790 if (!this->has_srcip
)
791 diagq(anyaddr(caf
, &this->host_srcip
), optarg
);
794 if (this->protocol
!= that
->protocol
)
795 diag("the protocol for leftprotoport and rightprotoport must be the same");
798 static void get_secret(int sock
)
800 const char *buf
, *secret
;
804 usleep(20000); /* give fflush time for flushing */
805 buf
= getpass("Enter: ");
806 secret
= (buf
== NULL
)?
"" : buf
;
808 /* send the secret to pluto */
809 len
= strlen(secret
) + 1;
810 if (write(sock
, secret
, len
) != len
)
814 fprintf(stderr
, "whack: write() failed (%d %s)\n", e
, strerror(e
));
815 exit(RC_WHACK_PROBLEM
);
819 /* This is a hack for initiating ISAKMP exchanges. */
821 int main(int argc
, char **argv
)
824 char esp_buf
[256]; /* uses snprintf */
832 end_seen_before_to
= LEMPTY
;
835 *tunnel_af_used_by
= NULL
;
837 /* check division of numbering space */
839 assert(OPTION_OFFSET
+ DBGOPT_LAST
< NUMERIC_ARG
);
841 assert(OPTION_OFFSET
+ CA_LAST
< NUMERIC_ARG
);
843 assert(OPT_LAST
- OPT_FIRST
< (sizeof opts_seen
* BITS_PER_BYTE
));
844 assert(SC_LAST
- SC_FIRST
< (sizeof sc_seen
* BITS_PER_BYTE
));
845 assert(LST_LAST
- LST_FIRST
< (sizeof lst_seen
* BITS_PER_BYTE
));
846 assert(END_LAST
- END_FIRST
< (sizeof end_seen
* BITS_PER_BYTE
));
847 assert(CD_LAST
- CD_FIRST
< (sizeof cd_seen
* BITS_PER_BYTE
));
848 assert(CA_LAST
- CA_FIRST
< (sizeof ca_seen
* BITS_PER_BYTE
));
849 #ifdef DEBUG /* must be last so others are less than (sizeof cd_seen * BITS_PER_BYTE) to fit in lset_t */
850 assert(DBGOPT_LAST
- DBGOPT_FIRST
< (sizeof cd_seen
* BITS_PER_BYTE
));
852 /* check that POLICY bit assignment matches with CD_ */
853 assert(LELEM(CD_DONT_REKEY
- CD_POLICY_FIRST
) == POLICY_DONT_REKEY
);
857 clear_end(&msg
.right
); /* left set from this after --to */
861 msg
.keyval
.ptr
= NULL
;
866 /* if a connection is added via whack then we assume IKEv1 */
869 msg
.sa_ike_life_seconds
= OAKLEY_ISAKMP_SA_LIFETIME_DEFAULT
;
870 msg
.sa_ipsec_life_seconds
= PLUTO_SA_LIFE_DURATION_DEFAULT
;
871 msg
.sa_rekey_margin
= SA_REPLACEMENT_MARGIN_DEFAULT
;
872 msg
.sa_rekey_fuzz
= SA_REPLACEMENT_FUZZ_DEFAULT
;
873 msg
.sa_keying_tries
= SA_REPLACEMENT_RETRIES_DEFAULT
;
875 msg
.addr_family
= AF_INET
;
876 msg
.tunnel_addr_family
= AF_INET
;
885 options
= options_create();
890 unsigned long opt_whole
= 0; /* numeric argument for some flags */
892 /* Note: we don't like the way short options get parsed
893 * by getopt_long, so we simply pass an empty string as
894 * the list. It could be "hp:d:c:o:eatfs" "NARXPECK".
896 int c
= getopt_long(argc
, argv
, "", long_opts
, &long_index
) - OPTION_OFFSET
;
899 /* decode a numeric argument, if expected */
907 opt_whole
= strtoul(optarg
, &endptr
, 0);
909 if (*endptr
!= '\0' || endptr
== optarg
)
910 diagq("badly formed numeric argument", optarg
);
912 if (c
>= (1 << AUX_SHIFT
))
914 aux
= c
>> AUX_SHIFT
;
915 c
-= aux
<< AUX_SHIFT
;
919 /* per-class option processing */
920 if (0 <= c
&& c
<= OPT_LAST
)
922 /* OPT_* options get added to opts_seen.
923 * Reject repeated options (unless later code intervenes).
928 diagq("duplicated flag", long_opts
[long_index
].name
);
931 else if (SC_FIRST
<= c
&& c
<= SC_LAST
)
933 /* SC_* options get added to sc_seen.
934 * Reject repeated options (unless later code intervenes).
936 lset_t f
= LELEM(c
- SC_FIRST
);
939 diagq("duplicated flag", long_opts
[long_index
].name
);
942 else if (LST_FIRST
<= c
&& c
<= LST_LAST
)
944 /* LST_* options get added to lst_seen.
945 * Reject repeated options (unless later code intervenes).
947 lset_t f
= LELEM(c
- LST_FIRST
);
950 diagq("duplicated flag", long_opts
[long_index
].name
);
954 else if (DBGOPT_FIRST
<= c
&& c
<= DBGOPT_LAST
)
956 msg
.whack_options
= TRUE
;
959 else if (END_FIRST
<= c
&& c
<= END_LAST
)
961 /* END_* options are added to end_seen.
962 * Reject repeated options (unless later code intervenes).
964 lset_t f
= LELEM(c
- END_FIRST
);
967 diagq("duplicated flag", long_opts
[long_index
].name
);
969 opts_seen
|= LELEM(OPT_CD
);
971 else if (CD_FIRST
<= c
&& c
<= CD_LAST
)
973 /* CD_* options are added to cd_seen.
974 * Reject repeated options (unless later code intervenes).
976 lset_t f
= LELEM(c
- CD_FIRST
);
979 diagq("duplicated flag", long_opts
[long_index
].name
);
981 opts_seen
|= LELEM(OPT_CD
);
983 else if (CA_FIRST
<= c
&& c
<= CA_LAST
)
985 /* CA_* options are added to ca_seen.
986 * Reject repeated options (unless later code intervenes).
988 lset_t f
= LELEM(c
- CA_FIRST
);
991 diagq("duplicated flag", long_opts
[long_index
].name
);
995 /* Note: "break"ing from switch terminates loop.
996 * most cases should end with "continue".
1000 case EOF
- OPTION_OFFSET
: /* end of flags */
1003 case 0 - OPTION_OFFSET
: /* long option already handled */
1006 case ':' - OPTION_OFFSET
: /* diagnostic already printed by getopt_long */
1007 case '?' - OPTION_OFFSET
: /* diagnostic already printed by getopt_long */
1008 diag(NULL
); /* print no additional diagnostic, but exit sadly */
1009 break; /* not actually reached */
1011 case 'h' - OPTION_OFFSET
: /* --help */
1013 whack_exit(0); /* GNU coding standards say to stop here */
1015 case 'v' - OPTION_OFFSET
: /* --version */
1017 const char **sp
= ipsec_copyright_notice();
1019 printf("strongSwan "VERSION
"\n");
1020 for (; *sp
!= NULL
; sp
++)
1023 whack_exit(0); /* GNU coding standards say to stop here */
1025 case 'l' - OPTION_OFFSET
: /* --label <string> */
1026 label
= optarg
; /* remember for diagnostics */
1029 case '+' - OPTION_OFFSET
: /* --optionsfrom <filename> */
1030 if (!options
->from(options
, optarg
, &argc
, &argv
, optind
))
1032 fprintf(stderr
, "optionsfrom failed");
1033 whack_exit(RC_WHACK_PROBLEM
);
1037 /* the rest of the options combine in complex ways */
1039 case OPT_CTLBASE
: /* --port <ctlbase> */
1040 if (snprintf(ctl_addr
.sun_path
, sizeof(ctl_addr
.sun_path
)
1041 , "%s%s", optarg
, CTL_SUFFIX
) == -1)
1042 diag("<ctlbase>" CTL_SUFFIX
" must be fit in a sun_addr");
1045 case OPT_NAME
: /* --name <connection-name> */
1050 case OPT_KEYID
: /* --keyid <identity> */
1051 msg
.whack_key
= !msg
.whack_sc_op
;
1052 msg
.keyid
= optarg
; /* decoded by Pluto */
1055 case OPT_MYID
: /* --myid <identity> */
1056 msg
.whack_myid
= TRUE
;
1057 msg
.myid
= optarg
; /* decoded by Pluto */
1060 case OPT_ADDKEY
: /* --addkey */
1061 msg
.whack_addkey
= TRUE
;
1064 case OPT_PUBKEYRSA
: /* --pubkeyrsa <key> */
1066 static char keyspace
[RSA_MAX_ENCODING_BYTES
]; /* room for 8K bit key */
1067 char diag_space
[TTODATAV_BUF
];
1068 const char *ugh
= ttodatav(optarg
, 0, 0
1069 , keyspace
, sizeof(keyspace
)
1070 , &msg
.keyval
.len
, diag_space
, sizeof(diag_space
)
1071 , TTODATAV_SPACECOUNTS
);
1075 char ugh_space
[80]; /* perhaps enough space */
1077 snprintf(ugh_space
, sizeof(ugh_space
)
1078 , "RSA public-key data malformed (%s)", ugh
);
1079 diagq(ugh_space
, optarg
);
1081 msg
.pubkey_alg
= PUBKEY_ALG_RSA
;
1082 msg
.keyval
.ptr
= keyspace
;
1086 case OPT_ROUTE
: /* --route */
1087 msg
.whack_route
= TRUE
;
1090 case OPT_UNROUTE
: /* --unroute */
1091 msg
.whack_unroute
= TRUE
;
1094 case OPT_INITIATE
: /* --initiate */
1095 msg
.whack_initiate
= TRUE
;
1098 case OPT_TERMINATE
: /* --terminate */
1099 msg
.whack_terminate
= TRUE
;
1102 case OPT_DELETE
: /* --delete */
1103 msg
.whack_delete
= TRUE
;
1106 case OPT_DELETESTATE
: /* --deletestate <state_object_number> */
1107 msg
.whack_deletestate
= TRUE
;
1108 msg
.whack_deletestateno
= opt_whole
;
1111 case OPT_DELETECRASH
: /* --crash <ip-address> */
1112 msg
.whack_crash
= TRUE
;
1113 tunnel_af_used_by
= long_opts
[long_index
].name
;
1114 diagq(ttoaddr(optarg
, 0, msg
.tunnel_addr_family
, &msg
.whack_crash_peer
), optarg
);
1115 if (isanyaddr(&msg
.whack_crash_peer
))
1116 diagq("0.0.0.0 or 0::0 isn't a valid client address", optarg
);
1119 case OPT_LEASES
: /* --leases */
1120 msg
.whack_leases
= TRUE
;
1123 case OPT_LEASEADDR
: /* --lease-addr <ip-address> */
1124 msg
.whack_lease_ip
= optarg
; /* decoded by Pluto */
1127 case OPT_LEASEID
: /* --lease-id <identity> */
1128 msg
.whack_lease_id
= optarg
; /* decoded by Pluto */
1131 case OPT_LISTEN
: /* --listen */
1132 msg
.whack_listen
= TRUE
;
1135 case OPT_UNLISTEN
: /* --unlisten */
1136 msg
.whack_unlisten
= TRUE
;
1139 case OPT_PURGEOCSP
: /* --purgeocsp */
1140 msg
.whack_purgeocsp
= TRUE
;
1143 case OPT_REREADSECRETS
: /* --rereadsecrets */
1144 case OPT_REREADCACERTS
: /* --rereadcacerts */
1145 case OPT_REREADAACERTS
: /* --rereadaacerts */
1146 case OPT_REREADOCSPCERTS
: /* --rereadocspcerts */
1147 case OPT_REREADACERTS
: /* --rereadacerts */
1148 case OPT_REREADCRLS
: /* --rereadcrls */
1149 msg
.whack_reread
|= LELEM(c
-OPT_REREADSECRETS
);
1152 case OPT_REREADALL
: /* --rereadall */
1153 msg
.whack_reread
= REREAD_ALL
;
1156 case OPT_STATUSALL
: /* --statusall */
1157 msg
.whack_statusall
= TRUE
;
1160 case OPT_STATUS
: /* --status */
1161 msg
.whack_status
= TRUE
;
1164 case OPT_SHUTDOWN
: /* --shutdown */
1165 msg
.whack_shutdown
= TRUE
;
1168 case OPT_OPPO_HERE
: /* --oppohere <ip-address> */
1169 tunnel_af_used_by
= long_opts
[long_index
].name
;
1170 diagq(ttoaddr(optarg
, 0, msg
.tunnel_addr_family
, &msg
.oppo_my_client
), optarg
);
1171 if (isanyaddr(&msg
.oppo_my_client
))
1172 diagq("0.0.0.0 or 0::0 isn't a valid client address", optarg
);
1175 case OPT_OPPO_THERE
: /* --oppohere <ip-address> */
1176 tunnel_af_used_by
= long_opts
[long_index
].name
;
1177 diagq(ttoaddr(optarg
, 0, msg
.tunnel_addr_family
, &msg
.oppo_peer_client
), optarg
);
1178 if (isanyaddr(&msg
.oppo_peer_client
))
1179 diagq("0.0.0.0 or 0::0 isn't a valid client address", optarg
);
1183 msg
.whack_async
= TRUE
;
1186 /* Smartcard options */
1188 case SC_ENCRYPT
: /* --scencrypt <plaintext data> */
1189 case SC_DECRYPT
: /* --scdecrypt <encrypted data> */
1190 msg
.whack_sc_op
= 1 + c
- SC_ENCRYPT
;
1191 msg
.whack_key
= FALSE
;
1192 msg
.sc_data
= optarg
;
1195 case SC_INBASE
: /* --inform <format> */
1196 case SC_OUTBASE
: /* --outform <format> */
1200 if (streq(optarg
, "16") || strcaseeq(optarg
, "hex"))
1202 else if (streq(optarg
, "64") || strcaseeq(optarg
, "base64"))
1204 else if (streq(optarg
, "256") || strcaseeq(optarg
, "text")
1205 || strcaseeq(optarg
, "ascii"))
1208 diagq("not a valid base", optarg
);
1219 case LST_UTC
: /* --utc */
1220 msg
.whack_utc
= TRUE
;
1223 case LST_ALGS
: /* --listalgs */
1224 case LST_PUBKEYS
: /* --listpubkeys */
1225 case LST_CERTS
: /* --listcerts */
1226 case LST_CACERTS
: /* --listcacerts */
1227 case LST_ACERTS
: /* --listacerts */
1228 case LST_AACERTS
: /* --listaacerts */
1229 case LST_OCSPCERTS
: /* --listocspcerts */
1230 case LST_GROUPS
: /* --listgroups */
1231 case LST_CAINFOS
: /* --listcainfos */
1232 case LST_CRLS
: /* --listcrls */
1233 case LST_OCSP
: /* --listocsp */
1234 case LST_CARDS
: /* --listcards */
1235 msg
.whack_list
|= LELEM(c
- LST_ALGS
);
1238 case LST_ALL
: /* --listall */
1239 msg
.whack_list
= LIST_ALL
;
1242 /* Connection Description options */
1244 case END_HOST
: /* --host <ip-address> */
1246 lset_t new_policy
= LEMPTY
;
1248 af_used_by
= long_opts
[long_index
].name
;
1249 diagq(anyaddr(msg
.addr_family
, &msg
.right
.host_addr
), optarg
);
1250 if (streq(optarg
, "%any"))
1253 else if (streq(optarg
, "%opportunistic"))
1255 /* always use tunnel mode; mark as opportunistic */
1256 new_policy
|= POLICY_TUNNEL
| POLICY_OPPO
;
1258 else if (streq(optarg
, "%group"))
1260 /* always use tunnel mode; mark as group */
1261 new_policy
|= POLICY_TUNNEL
| POLICY_GROUP
;
1263 else if (streq(optarg
, "%opportunisticgroup"))
1265 /* always use tunnel mode; mark as opportunistic */
1266 new_policy
|= POLICY_TUNNEL
| POLICY_OPPO
| POLICY_GROUP
;
1270 diagq(ttoaddr(optarg
, 0, msg
.addr_family
1271 , &msg
.right
.host_addr
), optarg
);
1274 msg
.policy
|= new_policy
;
1276 if (new_policy
& (POLICY_OPPO
| POLICY_GROUP
))
1278 if (!LHAS(end_seen
, END_CLIENT
- END_FIRST
))
1280 /* set host to 0.0.0 and --client to 0.0.0.0/0
1281 * or IPV6 equivalent
1285 tunnel_af_used_by
= optarg
;
1286 diagq(anyaddr(msg
.tunnel_addr_family
, &any
), optarg
);
1287 diagq(initsubnet(&any
, 0, '0', &msg
.right
.client
), optarg
);
1289 msg
.right
.has_client
= TRUE
;
1291 if (new_policy
& POLICY_GROUP
)
1293 /* client subnet must not be specified by user:
1294 * it will come from the group's file.
1296 if (LHAS(end_seen
, END_CLIENT
- END_FIRST
))
1297 diag("--host %group clashes with --client");
1299 end_seen
|= LELEM(END_CLIENT
- END_FIRST
);
1301 if (new_policy
& POLICY_OPPO
)
1302 msg
.right
.key_from_DNS_on_demand
= TRUE
;
1305 case END_ID
: /* --id <identity> */
1306 msg
.right
.id
= optarg
; /* decoded by Pluto */
1309 case END_CERT
: /* --cert <path> */
1310 msg
.right
.cert
= optarg
; /* decoded by Pluto */
1313 case END_CA
: /* --ca <distinguished name> */
1314 msg
.right
.ca
= optarg
; /* decoded by Pluto */
1318 if (streq(optarg
, "yes") || streq(optarg
, "always"))
1320 msg
.right
.sendcert
= CERT_ALWAYS_SEND
;
1322 else if (streq(optarg
, "no") || streq(optarg
, "never"))
1324 msg
.right
.sendcert
= CERT_NEVER_SEND
;
1326 else if (streq(optarg
, "ifasked"))
1328 msg
.right
.sendcert
= CERT_SEND_IF_ASKED
;
1332 diagq("whack sendcert value is not legal", optarg
);
1336 case END_GROUPS
:/* --groups <access control groups> */
1337 msg
.right
.groups
= optarg
; /* decoded by Pluto */
1340 case END_IKEPORT
: /* --ikeport <port-number> */
1341 if (opt_whole
<=0 || opt_whole
>= 0x10000)
1342 diagq("<port-number> must be a number between 1 and 65535", optarg
);
1343 msg
.right
.host_port
= opt_whole
;
1346 case END_NEXTHOP
: /* --nexthop <ip-address> */
1347 af_used_by
= long_opts
[long_index
].name
;
1348 if (streq(optarg
, "%direct"))
1349 diagq(anyaddr(msg
.addr_family
1350 , &msg
.right
.host_nexthop
), optarg
);
1352 diagq(ttoaddr(optarg
, 0, msg
.addr_family
1353 , &msg
.right
.host_nexthop
), optarg
);
1356 case END_SRCIP
: /* --srcip <ip-address> */
1357 af_used_by
= long_opts
[long_index
].name
;
1358 if (streq(optarg
, "%modeconfig") || streq(optarg
, "%modecfg"))
1360 msg
.right
.modecfg
= TRUE
;
1364 diagq(ttoaddr(optarg
, 0, msg
.addr_family
1365 , &msg
.right
.host_srcip
), optarg
);
1366 msg
.right
.has_srcip
= TRUE
;
1368 msg
.policy
|= POLICY_TUNNEL
; /* srcip => tunnel */
1371 case END_CLIENT
: /* --client <subnet> */
1372 if (end_seen
& LELEM(END_CLIENTWITHIN
- END_FIRST
))
1373 diag("--client conflicts with --clientwithin");
1374 tunnel_af_used_by
= long_opts
[long_index
].name
;
1375 if ((strlen(optarg
) >= 6 && strncmp(optarg
,"vhost:",6) == 0)
1376 || (strlen(optarg
) >= 5 && strncmp(optarg
,"vnet:",5) == 0))
1378 msg
.right
.virt
= optarg
;
1382 diagq(ttosubnet(optarg
, 0, msg
.tunnel_addr_family
, &msg
.right
.client
), optarg
);
1383 msg
.right
.has_client
= TRUE
;
1385 msg
.policy
|= POLICY_TUNNEL
; /* client => tunnel */
1388 case END_CLIENTWITHIN
: /* --clienwithin <address range> */
1389 if (end_seen
& LELEM(END_CLIENT
- END_FIRST
))
1390 diag("--clientwithin conflicts with --client");
1391 tunnel_af_used_by
= long_opts
[long_index
].name
;
1392 diagq(ttosubnet(optarg
, 0, msg
.tunnel_addr_family
, &msg
.right
.client
), optarg
);
1393 msg
.right
.has_client
= TRUE
;
1394 msg
.policy
|= POLICY_TUNNEL
; /* client => tunnel */
1395 msg
.right
.has_client_wildcard
= TRUE
;
1398 case END_CLIENTPROTOPORT
: /* --clientprotoport <protocol>/<port> */
1399 diagq(ttoprotoport(optarg
, 0, &msg
.right
.protocol
, &msg
.right
.port
1400 , &msg
.right
.has_port_wildcard
), optarg
);
1403 case END_DNSKEYONDEMAND
: /* --dnskeyondemand */
1404 msg
.right
.key_from_DNS_on_demand
= TRUE
;
1407 case END_HOSTACCESS
: /* --hostaccess */
1408 msg
.right
.hostaccess
= TRUE
;
1411 case END_UPDOWN
: /* --updown <updown> */
1412 msg
.right
.updown
= optarg
;
1415 case CD_TO
: /* --to */
1416 /* process right end, move it to left, reset it */
1417 if (!LHAS(end_seen
, END_HOST
- END_FIRST
))
1418 diag("connection missing --host before --to");
1419 msg
.left
= msg
.right
;
1420 clear_end(&msg
.right
);
1421 end_seen_before_to
= end_seen
;
1425 case CD_PSK
: /* --psk */
1426 case CD_RSASIG
: /* --rsasig */
1427 case CD_ENCRYPT
: /* --encrypt */
1428 case CD_AUTHENTICATE
: /* --authenticate */
1429 case CD_COMPRESS
: /* --compress */
1430 case CD_TUNNEL
: /* --tunnel */
1431 case CD_PFS
: /* --pfs */
1432 case CD_DISABLEARRIVALCHECK
: /* --disablearrivalcheck */
1433 case CD_DONT_REKEY
: /* --donotrekey */
1434 msg
.policy
|= LELEM(c
- CD_POLICY_FIRST
);
1437 /* --initiateontraffic
1443 msg
.policy
= (msg
.policy
& ~POLICY_SHUNT_MASK
)
1444 | ((lset_t
)aux
<< POLICY_SHUNT_SHIFT
);
1453 msg
.policy
= (msg
.policy
& ~POLICY_FAIL_MASK
)
1454 | ((lset_t
)aux
<< POLICY_FAIL_SHIFT
);
1457 case CD_IKELIFETIME
: /* --ikelifetime <seconds> */
1458 msg
.sa_ike_life_seconds
= opt_whole
;
1461 case CD_IPSECLIFETIME
: /* --ipseclifetime <seconds> */
1462 msg
.sa_ipsec_life_seconds
= opt_whole
;
1465 case CD_RKMARGIN
: /* --rekeymargin <seconds> */
1466 msg
.sa_rekey_margin
= opt_whole
;
1469 case CD_RKFUZZ
: /* --rekeyfuzz <percentage> */
1470 msg
.sa_rekey_fuzz
= opt_whole
;
1473 case CD_KTRIES
: /* --keyingtries <count> */
1474 msg
.sa_keying_tries
= opt_whole
;
1478 if (streq(optarg
, "none"))
1479 msg
.dpd_action
= DPD_ACTION_NONE
;
1480 else if (streq(optarg
, "clear"))
1481 msg
.dpd_action
= DPD_ACTION_CLEAR
;
1482 else if (streq(optarg
, "hold"))
1483 msg
.dpd_action
= DPD_ACTION_HOLD
;
1484 else if (streq(optarg
, "restart"))
1485 msg
.dpd_action
= DPD_ACTION_RESTART
;
1487 msg
.dpd_action
= DPD_ACTION_UNKNOWN
;
1491 msg
.dpd_delay
= opt_whole
;
1495 msg
.dpd_timeout
= opt_whole
;
1498 case CD_IKE
: /* --ike <ike_alg1,ike_alg2,...> */
1502 case CD_PFSGROUP
: /* --pfsgroup modpXXXX */
1503 msg
.pfsgroup
= optarg
;
1506 case CD_ESP
: /* --esp <esp_alg1,esp_alg2,...> */
1511 if (LHAS(cd_seen
, CD_CONNIPV6
- CD_FIRST
))
1512 diag("--ipv4 conflicts with --ipv6");
1514 /* Since this is the default, the flag is redundant.
1515 * So we don't need to set msg.addr_family
1516 * and we don't need to check af_used_by
1517 * and we don't have to consider defaulting tunnel_addr_family.
1522 if (LHAS(cd_seen
, CD_CONNIPV4
- CD_FIRST
))
1523 diag("--ipv6 conflicts with --ipv4");
1525 if (af_used_by
!= NULL
)
1526 diagq("--ipv6 must precede", af_used_by
);
1528 af_used_by
= long_opts
[long_index
].name
;
1529 msg
.addr_family
= AF_INET6
;
1531 /* Consider defaulting tunnel_addr_family to AF_INET6.
1532 * Do so only if it hasn't yet been specified or used.
1534 if (LDISJOINT(cd_seen
, LELEM(CD_TUNNELIPV4
- CD_FIRST
) | LELEM(CD_TUNNELIPV6
- CD_FIRST
))
1535 && tunnel_af_used_by
== NULL
)
1536 msg
.tunnel_addr_family
= AF_INET6
;
1540 if (LHAS(cd_seen
, CD_TUNNELIPV6
- CD_FIRST
))
1541 diag("--tunnelipv4 conflicts with --tunnelipv6");
1543 if (tunnel_af_used_by
!= NULL
)
1544 diagq("--tunnelipv4 must precede", af_used_by
);
1546 msg
.tunnel_addr_family
= AF_INET
;
1550 if (LHAS(cd_seen
, CD_TUNNELIPV4
- CD_FIRST
))
1551 diag("--tunnelipv6 conflicts with --tunnelipv4");
1553 if (tunnel_af_used_by
!= NULL
)
1554 diagq("--tunnelipv6 must precede", af_used_by
);
1556 msg
.tunnel_addr_family
= AF_INET6
;
1559 case CA_NAME
: /* --caname <name> */
1561 msg
.whack_ca
= TRUE
;
1563 case CA_CERT
: /* --cacert <path> */
1564 msg
.cacert
= optarg
;
1566 case CA_LDAPHOST
: /* --ldaphost <hostname> */
1567 msg
.ldaphost
= optarg
;
1569 case CA_LDAPBASE
: /* --ldapbase <base> */
1570 msg
.ldapbase
= optarg
;
1572 case CA_CRLURI
: /* --crluri <uri> */
1573 msg
.crluri
= optarg
;
1575 case CA_CRLURI2
: /* --crluri2 <uri> */
1576 msg
.crluri2
= optarg
;
1578 case CA_OCSPURI
: /* --ocspuri <uri> */
1579 msg
.ocspuri
= optarg
;
1581 case CA_STRICT
: /* --strictcrlpolicy */
1582 msg
.whack_strict
= TRUE
;
1586 case DBGOPT_NONE
: /* --debug-none */
1587 msg
.debugging
= DBG_NONE
;
1590 case DBGOPT_ALL
: /* --debug-all */
1591 msg
.debugging
|= DBG_ALL
; /* note: does not include PRIVATE */
1594 case DBGOPT_RAW
: /* --debug-raw */
1595 case DBGOPT_CRYPT
: /* --debug-crypt */
1596 case DBGOPT_PARSING
: /* --debug-parsing */
1597 case DBGOPT_EMITTING
: /* --debug-emitting */
1598 case DBGOPT_CONTROL
: /* --debug-control */
1599 case DBGOPT_LIFECYCLE
: /* --debug-lifecycle */
1600 case DBGOPT_KERNEL
: /* --debug-kernel, --debug-klips */
1601 case DBGOPT_DNS
: /* --debug-dns */
1602 case DBGOPT_NATT
: /* --debug-natt */
1603 case DBGOPT_OPPO
: /* --debug-oppo */
1604 case DBGOPT_CONTROLMORE
: /* --debug-controlmore */
1605 case DBGOPT_PRIVATE
: /* --debug-private */
1606 case DBGOPT_IMPAIR_DELAY_ADNS_KEY_ANSWER
: /* --impair-delay-adns-key-answer */
1607 case DBGOPT_IMPAIR_DELAY_ADNS_TXT_ANSWER
: /* --impair-delay-adns-txt-answer */
1608 case DBGOPT_IMPAIR_BUST_MI2
: /* --impair_bust_mi2 */
1609 case DBGOPT_IMPAIR_BUST_MR2
: /* --impair_bust_mr2 */
1610 msg
.debugging
|= LELEM(c
-DBGOPT_RAW
);
1614 assert(FALSE
); /* unknown return value */
1621 /* If you see this message unexpectedly, perhaps the
1622 * case for the previous option ended with "break"
1623 * instead of "continue"
1625 diagq("unexpected argument", argv
[optind
]);
1628 /* For each possible form of the command, figure out if an argument
1629 * suggests whether that form was intended, and if so, whether all
1630 * required information was supplied.
1633 /* check opportunistic initiation simulation request */
1634 switch (opts_seen
& (LELEM(OPT_OPPO_HERE
) | LELEM(OPT_OPPO_THERE
)))
1636 case LELEM(OPT_OPPO_HERE
):
1637 case LELEM(OPT_OPPO_THERE
):
1638 diag("--oppohere and --oppothere must be used together");
1640 case LELEM(OPT_OPPO_HERE
) | LELEM(OPT_OPPO_THERE
):
1641 msg
.whack_oppo_initiate
= TRUE
;
1642 if (LIN(cd_seen
, LELEM(CD_TUNNELIPV4
- CD_FIRST
) | LELEM(CD_TUNNELIPV6
- CD_FIRST
)))
1643 opts_seen
&= ~LELEM(OPT_CD
);
1648 if (LHAS(opts_seen
, OPT_LEASEADDR
) && LHAS(opts_seen
, OPT_LEASEID
))
1650 diag("--lease-addr and --lease-id cannot be used together");
1653 /* check connection description */
1654 if (LHAS(opts_seen
, OPT_CD
))
1656 if (!LHAS(cd_seen
, CD_TO
-CD_FIRST
))
1657 diag("connection description option, but no --to");
1659 if (!LHAS(end_seen
, END_HOST
-END_FIRST
))
1660 diag("connection missing --host after --to");
1662 if (isanyaddr(&msg
.left
.host_addr
)
1663 && isanyaddr(&msg
.right
.host_addr
))
1664 diag("hosts cannot both be 0.0.0.0 or 0::0");
1666 if (msg
.policy
& POLICY_OPPO
)
1668 if ((msg
.policy
& (POLICY_PSK
| POLICY_PUBKEY
)) != POLICY_PUBKEY
)
1669 diag("only PUBKEY is supported for opportunism");
1670 if ((msg
.policy
& POLICY_PFS
) == 0)
1671 diag("PFS required for opportunism");
1672 if ((msg
.policy
& POLICY_ENCRYPT
) == 0)
1673 diag("encryption required for opportunism");
1676 check_end(&msg
.left
, &msg
.right
, !LHAS(end_seen_before_to
, END_NEXTHOP
-END_FIRST
)
1677 , msg
.addr_family
, msg
.tunnel_addr_family
);
1679 check_end(&msg
.right
, &msg
.left
, !LHAS(end_seen
, END_NEXTHOP
-END_FIRST
)
1680 , msg
.addr_family
, msg
.tunnel_addr_family
);
1682 if (subnettypeof(&msg
.left
.client
) != subnettypeof(&msg
.right
.client
))
1683 diag("endpoints clash: one is IPv4 and the other is IPv6");
1685 if (NEVER_NEGOTIATE(msg
.policy
))
1687 /* we think this is just a shunt (because he didn't specify
1688 * a host authentication method). If he didn't specify a
1689 * shunt type, he's probably gotten it wrong.
1691 if ((msg
.policy
& POLICY_SHUNT_MASK
) == POLICY_SHUNT_TRAP
)
1692 diag("non-shunt connection must have --psk or --rsasig or both");
1696 /* not just a shunt: a real ipsec connection */
1697 if ((msg
.policy
& POLICY_ID_AUTH_MASK
) == LEMPTY
)
1698 diag("must specify --rsasig or --psk for a connection");
1700 if (!HAS_IPSEC_POLICY(msg
.policy
)
1701 && (msg
.left
.has_client
|| msg
.right
.has_client
))
1702 diag("must not specify clients for ISAKMP-only connection");
1705 msg
.whack_connection
= TRUE
;
1708 /* decide whether --name is mandatory or forbidden */
1709 if (!LDISJOINT(opts_seen
1710 , LELEM(OPT_ROUTE
) | LELEM(OPT_UNROUTE
)
1711 | LELEM(OPT_INITIATE
) | LELEM(OPT_TERMINATE
)
1712 | LELEM(OPT_DELETE
) | LELEM(OPT_CD
)))
1714 if (!LHAS(opts_seen
, OPT_NAME
) && !msg
.whack_ca
)
1715 diag("missing --name <connection_name>");
1717 else if (!msg
.whack_options
&& !msg
.whack_status
&& !msg
.whack_leases
)
1719 if (LHAS(opts_seen
, OPT_NAME
))
1720 diag("no reason for --name");
1723 if (!LDISJOINT(opts_seen
, LELEM(OPT_PUBKEYRSA
) | LELEM(OPT_ADDKEY
)))
1725 if (!LHAS(opts_seen
, OPT_KEYID
))
1726 diag("--addkey and --pubkeyrsa require --keyid");
1729 if (!(msg
.whack_connection
|| msg
.whack_key
|| msg
.whack_myid
1730 || msg
.whack_delete
|| msg
.whack_deletestate
1731 || msg
.whack_initiate
|| msg
.whack_oppo_initiate
|| msg
.whack_terminate
1732 || msg
.whack_route
|| msg
.whack_unroute
|| msg
.whack_listen
1733 || msg
.whack_unlisten
|| msg
.whack_list
|| msg
.whack_purgeocsp
1734 || msg
.whack_reread
|| msg
.whack_ca
|| msg
.whack_status
1735 || msg
.whack_options
|| msg
.whack_shutdown
|| msg
.whack_sc_op
1736 || msg
.whack_leases
))
1738 diag("no action specified; try --help for hints");
1743 /* tricky quick and dirty check for wild values */
1744 if (msg
.sa_rekey_margin
!= 0
1745 && msg
.sa_rekey_fuzz
* msg
.sa_rekey_margin
* 4 / msg
.sa_rekey_margin
/ 4
1746 != msg
.sa_rekey_fuzz
)
1747 diag("rekeymargin or rekeyfuzz values are so large that they cause oveflow");
1749 check_life_time (msg
.sa_ike_life_seconds
, OAKLEY_ISAKMP_SA_LIFETIME_MAXIMUM
1750 , "ikelifetime", &msg
);
1752 check_life_time(msg
.sa_ipsec_life_seconds
, SA_LIFE_DURATION_MAXIMUM
1753 , "ipseclifetime", &msg
);
1755 if (msg
.dpd_action
== DPD_ACTION_UNKNOWN
)
1756 diag("dpdaction must be \"none\", \"clear\", \"hold\" or \"restart\"");
1758 if (msg
.dpd_action
!= DPD_ACTION_NONE
)
1760 if (msg
.dpd_delay
<= 0)
1761 diag("dpddelay must be larger than zero");
1763 if (msg
.dpd_timeout
<= 0)
1764 diag("dpdtimeout must be larger than zero");
1766 if (msg
.dpd_timeout
<= msg
.dpd_delay
)
1767 diag("dpdtimeout must be larger than dpddelay");
1770 /* pack strings for inclusion in message */
1771 next_str
= msg
.string
;
1772 str_roof
= &msg
.string
[sizeof(msg
.string
)];
1774 /* build esp message as esp="<esp>;<pfsgroup>" */
1776 snprintf(esp_buf
, sizeof (esp_buf
), "%s;%s",
1777 msg
.esp ? msg
.esp
: "",
1778 msg
.pfsgroup ? msg
.pfsgroup
: "");
1781 if (!pack_str(&msg
.name
) /* string 1 */
1782 || !pack_str(&msg
.left
.id
) /* string 2 */
1783 || !pack_str(&msg
.left
.cert
) /* string 3 */
1784 || !pack_str(&msg
.left
.ca
) /* string 4 */
1785 || !pack_str(&msg
.left
.groups
) /* string 5 */
1786 || !pack_str(&msg
.left
.updown
) /* string 6 */
1787 || !pack_str(&msg
.left
.sourceip
) /* string 7 */
1788 || !pack_str(&msg
.left
.virt
) /* string 8 */
1789 || !pack_str(&msg
.right
.id
) /* string 9 */
1790 || !pack_str(&msg
.right
.cert
) /* string 10 */
1791 || !pack_str(&msg
.right
.ca
) /* string 11 */
1792 || !pack_str(&msg
.right
.groups
) /* string 12 */
1793 || !pack_str(&msg
.right
.updown
) /* string 13 */
1794 || !pack_str(&msg
.right
.sourceip
) /* string 14 */
1795 || !pack_str(&msg
.right
.virt
) /* string 15 */
1796 || !pack_str(&msg
.keyid
) /* string 16 */
1797 || !pack_str(&msg
.myid
) /* string 17 */
1798 || !pack_str(&msg
.cacert
) /* string 18 */
1799 || !pack_str(&msg
.ldaphost
) /* string 19 */
1800 || !pack_str(&msg
.ldapbase
) /* string 20 */
1801 || !pack_str(&msg
.crluri
) /* string 21 */
1802 || !pack_str(&msg
.crluri2
) /* string 22 */
1803 || !pack_str(&msg
.ocspuri
) /* string 23 */
1804 || !pack_str(&msg
.ike
) /* string 24 */
1805 || !pack_str(&msg
.esp
) /* string 25 */
1806 || !pack_str(&msg
.sc_data
) /* string 26 */
1807 || !pack_str(&msg
.whack_lease_ip
) /* string 27 */
1808 || !pack_str(&msg
.whack_lease_id
) /* string 28 */
1809 || !pack_str(&msg
.xauth_identity
) /* string 29 */
1810 || str_roof
- next_str
< (ptrdiff_t)msg
.keyval
.len
)
1811 diag("too many bytes of strings to fit in message to pluto");
1813 memcpy(next_str
, msg
.keyval
.ptr
, msg
.keyval
.len
);
1814 msg
.keyval
.ptr
= NULL
;
1815 next_str
+= msg
.keyval
.len
;
1817 msg
.magic
= ((opts_seen
& ~LELEM(OPT_SHUTDOWN
))
1818 | sc_seen
| lst_seen
| cd_seen
| ca_seen
) != LEMPTY
1819 || msg
.whack_options
1820 ? WHACK_MAGIC
: WHACK_BASIC_MAGIC
;
1822 /* send message to Pluto */
1823 if (access(ctl_addr
.sun_path
, R_OK
| W_OK
) < 0)
1830 fprintf(stderr
, "whack: no right to communicate with pluto (access(\"%s\"))\n"
1831 , ctl_addr
.sun_path
);
1834 fprintf(stderr
, "whack: Pluto is not running (no \"%s\")\n"
1835 , ctl_addr
.sun_path
);
1838 fprintf(stderr
, "whack: access(\"%s\") failed with %d %s\n"
1839 , ctl_addr
.sun_path
, errno
, strerror(e
));
1842 whack_exit(RC_WHACK_PROBLEM
);
1846 int sock
= socket(AF_UNIX
, SOCK_STREAM
, 0);
1847 int exit_status
= 0;
1848 ssize_t len
= next_str
- (char *)&msg
;
1854 fprintf(stderr
, "whack: socket() failed (%d %s)\n", e
, strerror(e
));
1855 whack_exit(RC_WHACK_PROBLEM
);
1858 if (connect(sock
, (struct sockaddr
*)&ctl_addr
1859 , offsetof(struct sockaddr_un
, sun_path
) + strlen(ctl_addr
.sun_path
)) < 0)
1863 fprintf(stderr
, "whack:%s connect() for \"%s\" failed (%d %s)\n"
1864 , e
== ECONNREFUSED?
" is Pluto running? " : ""
1865 , ctl_addr
.sun_path
, e
, strerror(e
));
1866 whack_exit(RC_WHACK_PROBLEM
);
1869 if (write(sock
, &msg
, len
) != len
)
1873 fprintf(stderr
, "whack: write() failed (%d %s)\n", e
, strerror(e
));
1874 whack_exit(RC_WHACK_PROBLEM
);
1877 /* for now, just copy reply back to stdout */
1880 char buf
[4097]; /* arbitrary limit on log line length */
1886 ssize_t rl
= read(sock
, be
, (buf
+ sizeof(buf
)-1) - be
);
1892 fprintf(stderr
, "whack: read() failed (%d %s)\n", e
, strerror(e
));
1893 whack_exit(RC_WHACK_PROBLEM
);
1898 fprintf(stderr
, "whack: last line from pluto too long or unterminated\n");
1907 char *le
= strchr(ls
, '\n');
1911 /* move last, partial line to start of buffer */
1912 memmove(buf
, ls
, be
-ls
);
1917 le
++; /* include NL in line */
1918 ignore_result(write(1, ls
, le
- ls
));
1920 /* figure out prefix number
1921 * and how it should affect our exit status
1924 unsigned long s
= strtoul(ls
, NULL
, 10);
1936 case RC_ENTERSECRET
:
1939 /* case RC_LOG_SERIOUS: */
1950 whack_exit(exit_status
);
1952 return -1; /* should never be reached */