1 /* Structure of messages from whack to Pluto proper.
2 * Copyright (C) 1998-2001 D. Hugh Redelmeier.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU General Public License as published by the
6 * Free Software Foundation; either version 2 of the License, or (at your
7 * option) any later version. See <http://www.fsf.org/copyleft/gpl.txt>.
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22 /* copy of smartcard operations, defined in smartcard.h */
33 /* Since the message remains on one host, native representation is used.
34 * Think of this as horizontal microcode: all selected operations are
35 * to be done (in the order declared here).
37 * MAGIC is used to help detect version mismatches between whack and Pluto.
38 * Whenever the interface (i.e. this struct) changes in form or
39 * meaning, change this value (probably by changing the last number).
41 * If the command only requires basic actions (status or shutdown),
42 * it is likely that the relevant part of the message changes less frequently.
43 * Whack uses WHACK_BASIC_MAGIC in those cases.
45 * NOTE: no value of WHACK_BASIC_MAGIC may equal any value of WHACK_MAGIC.
46 * Otherwise certain version mismatches will not be detected.
49 #define WHACK_BASIC_MAGIC (((((('w' << 8) + 'h') << 8) + 'k') << 8) + 24)
50 #define WHACK_MAGIC (((((('w' << 8) + 'h') << 8) + 'k') << 8) + 26)
52 typedef struct whack_end whack_end_t
;
54 /* struct whack_end is a lot like connection.h's struct end
55 * It differs because it is going to be shipped down a socket
56 * and because whack is a separate program from pluto.
59 char *id
; /* id string (if any) -- decoded by pluto */
60 char *cert
; /* path string (if any) -- loaded by pluto */
61 char *ca
; /* distinguished name string (if any) -- parsed by pluto */
62 char *groups
; /* access control groups (if any) -- parsed by pluto */
69 bool key_from_DNS_on_demand
;
71 bool has_client_wildcard
;
72 bool has_port_wildcard
;
78 certpolicy_t sendcert
;
79 char *updown
; /* string */
80 u_int16_t host_port
; /* host order */
81 u_int16_t port
; /* host order */
86 typedef struct whack_message whack_message_t
;
88 struct whack_message
{
91 /* for WHACK_STATUS: */
96 /* for WHACK_SHUTDOWN */
99 /* END OF BASIC COMMANDS
100 * If you change anything earlier in this struct, update WHACK_BASIC_MAGIC.
103 /* name is used in connection, ca and initiate */
104 size_t name_len
; /* string 1 */
107 /* for WHACK_OPTIONS: */
111 lset_t debugging
; /* only used #ifdef DEBUG, but don't want layout to change */
113 /* for WHACK_CONNECTION */
115 bool whack_connection
;
120 time_t sa_ike_life_seconds
;
121 time_t sa_ipsec_life_seconds
;
122 time_t sa_rekey_margin
;
123 unsigned long sa_rekey_fuzz
;
124 unsigned long sa_keying_tries
;
126 /* For DPD 3706 - Dead Peer Detection */
129 dpd_action_t dpd_action
;
131 /* note that each end contains string 2/5.id, string 3/6 cert,
132 * and string 4/7 updown
137 /* note: if the client is the gateway, the following must be equal */
138 sa_family_t addr_family
; /* between gateways */
139 sa_family_t tunnel_addr_family
; /* between clients */
141 char *ike
; /* ike algo string (separated by commas) */
142 char *pfsgroup
; /* pfsgroup will be "encapsulated" in esp string for pluto */
143 char *esp
; /* esp algo string (separated by commas) */
148 char *keyid
; /* string 8 */
149 enum pubkey_alg pubkey_alg
;
150 chunk_t keyval
; /* chunk */
152 /* for WHACK_MYID: */
154 char *myid
; /* string 7 */
156 /* for WHACK_ROUTE: */
159 /* for WHACK_UNROUTE: */
162 /* for WHACK_INITIATE: */
165 /* for WHACK_OPINITIATE */
166 bool whack_oppo_initiate
;
167 ip_address oppo_my_client
, oppo_peer_client
;
169 /* for WHACK_TERMINATE: */
170 bool whack_terminate
;
172 /* for WHACK_DELETE: */
175 /* for WHACK_DELETESTATE: */
176 bool whack_deletestate
;
177 so_serial_t whack_deletestateno
;
179 /* for WHACK_LISTEN: */
180 bool whack_listen
, whack_unlisten
;
182 /* for WHACK_CRASH - note if a remote peer is known to have rebooted */
184 ip_address whack_crash_peer
;
190 /* for WHACK_PURGEOCSP */
191 bool whack_purgeocsp
;
193 /* for WHACK_REREAD */
207 /* for WHACK_SC_OP */
212 /* space for strings (hope there is enough room):
213 * Note that pointers don't travel on wire.
214 * 1 connection name [name_len]
215 * 2 left's name [left.host.name.len]
220 * 7 right's name [left.host.name.len]
236 * plus keyval (limit: 8K bits + overhead), a chunk.
242 /* Codes for status messages returned to whack.
243 * These are 3 digit decimal numerals. The structure
244 * is inspired by section 4.2 of RFC959 (FTP).
245 * Since these will end up as the exit status of whack, they
246 * must be less than 256.
247 * NOTE: ipsec_auto(8) knows about some of these numbers -- change carefully.
250 RC_COMMENT
, /* non-commital utterance (does not affect exit status) */
251 RC_WHACK_PROBLEM
, /* whack-detected problem */
252 RC_LOG
, /* message aimed at log (does not affect exit status) */
253 RC_LOG_SERIOUS
, /* serious message aimed at log (does not affect exit status) */
254 RC_SUCCESS
, /* success (exit status 0) */
256 /* failure, but not definitive */
258 RC_RETRANSMISSION
= 10,
260 /* improper request */
262 RC_DUPNAME
= 20, /* attempt to reuse a connection name */
263 RC_UNKNOWN_NAME
, /* connection name unknown or state number */
264 RC_ORIENT
, /* cannot orient connection: neither end is us */
265 RC_CLASH
, /* clash between two Road Warrior connections OVERLOADED */
266 RC_DEAF
, /* need --listen before --initiate */
267 RC_ROUTE
, /* cannot route */
268 RC_RTBUSY
, /* cannot unroute: route busy */
269 RC_BADID
, /* malformed --id */
270 RC_NOKEY
, /* no key found through DNS */
271 RC_NOPEERIP
, /* cannot initiate when peer IP is unknown */
272 RC_INITSHUNT
, /* cannot initiate a shunt-oly connection */
273 RC_WILDCARD
, /* cannot initiate when ID has wildcards */
274 RC_NOVALIDPIN
, /* cannot initiate without valid PIN */
276 /* permanent failure */
278 RC_BADWHACKMESSAGE
= 30,
281 RC_OPPOFAILURE
, /* Opportunism failed */
283 /* entry of secrets */
286 /* progress: start of range for successful state transition.
287 * Actual value is RC_NEW_STATE plus the new state code.
291 /* start of range for notification.
292 * Actual value is RC_NOTIFICATION plus code for notification
293 * that should be generated by this Pluto.
295 RC_NOTIFICATION
= 200 /* as per IKE notification messages */
298 /* options of whack --list*** command */
300 #define LIST_NONE 0x0000 /* don't list anything */
301 #define LIST_ALGS 0x0001 /* list all registered IKE algorithms */
302 #define LIST_PUBKEYS 0x0002 /* list all public keys */
303 #define LIST_CERTS 0x0004 /* list all host/user certs */
304 #define LIST_CACERTS 0x0008 /* list all ca certs */
305 #define LIST_ACERTS 0x0010 /* list all attribute certs */
306 #define LIST_AACERTS 0x0020 /* list all aa certs */
307 #define LIST_OCSPCERTS 0x0040 /* list all ocsp certs */
308 #define LIST_GROUPS 0x0080 /* list all access control groups */
309 #define LIST_CAINFOS 0x0100 /* list all ca information records */
310 #define LIST_CRLS 0x0200 /* list all crls */
311 #define LIST_OCSP 0x0400 /* list all ocsp cache entries */
312 #define LIST_CARDS 0x0800 /* list all smartcard records */
314 #define LIST_ALL LRANGES(LIST_ALGS, LIST_CARDS) /* all list options */
316 /* options of whack --reread*** command */
318 #define REREAD_NONE 0x00 /* don't reread anything */
319 #define REREAD_SECRETS 0x01 /* reread /etc/ipsec.secrets */
320 #define REREAD_CACERTS 0x02 /* reread certs in /etc/ipsec.d/cacerts */
321 #define REREAD_AACERTS 0x04 /* reread certs in /etc/ipsec.d/aacerts */
322 #define REREAD_OCSPCERTS 0x08 /* reread certs in /etc/ipsec.d/ocspcerts */
323 #define REREAD_ACERTS 0x10 /* reread certs in /etc/ipsec.d/acerts */
324 #define REREAD_CRLS 0x20 /* reread crls in /etc/ipsec.d/crls */
326 #define REREAD_ALL LRANGES(REREAD_SECRETS, REREAD_CRLS) /* all reread options */
328 #endif /* _WHACK_H */