udp.c: call buffer_init
[secnet] / site.c
CommitLineData
2fe58dfd
SE
1/* site.c - manage communication with a remote network site */
2
469fd1d9
SE
3/* The 'site' code doesn't know anything about the structure of the
4 packets it's transmitting. In fact, under the new netlink
5 configuration scheme it doesn't need to know anything at all about
6 IP addresses, except how to contact its peer. This means it could
7 potentially be used to tunnel other protocols too (IPv6, IPX, plain
8 old Ethernet frames) if appropriate netlink code can be written
9 (and that ought not to be too hard, eg. using the TUN/TAP device to
10 pretend to be an Ethernet interface). */
11
ff05a229
SE
12/* At some point in the future the netlink code will be asked for
13 configuration information to go in the PING/PONG packets at the end
14 of the key exchange. */
15
8689b3a9 16#include "secnet.h"
2fe58dfd 17#include <stdio.h>
469fd1d9 18#include <string.h>
fe5e9cc4 19#include <limits.h>
58650a70 20#include <assert.h>
8689b3a9 21#include <sys/socket.h>
2fe58dfd 22
8689b3a9 23#include <sys/mman.h>
2fe58dfd 24#include "util.h"
59635212 25#include "unaligned.h"
ff05a229 26#include "magic.h"
2fe58dfd
SE
27
28#define SETUP_BUFFER_LEN 2048
29
e7f8ec2a
IJ
30#define DEFAULT_KEY_LIFETIME (3600*1000) /* [ms] */
31#define DEFAULT_KEY_RENEGOTIATE_GAP (5*60*1000) /* [ms] */
2fe58dfd 32#define DEFAULT_SETUP_RETRIES 5
e7f8ec2a
IJ
33#define DEFAULT_SETUP_RETRY_INTERVAL (2*1000) /* [ms] */
34#define DEFAULT_WAIT_TIME (20*1000) /* [ms] */
e57264d6
IJ
35
36#define DEFAULT_MOBILE_KEY_LIFETIME (2*24*3600*1000) /* [ms] */
37#define DEFAULT_MOBILE_KEY_RENEGOTIATE_GAP (12*3600*1000) /* [ms] */
38#define DEFAULT_MOBILE_SETUP_RETRIES 30
39#define DEFAULT_MOBILE_SETUP_RETRY_INTERVAL (1*1000) /* [ms] */
40#define DEFAULT_MOBILE_WAIT_TIME (10*1000) /* [ms] */
41
446353cd
IJ
42#define DEFAULT_MOBILE_PEER_EXPIRY (2*60) /* [s] */
43#define DEFAULT_MOBILE_PEERS_MAX 3 /* send at most this many copies (default) */
2fe58dfd
SE
44
45/* Each site can be in one of several possible states. */
46
47/* States:
48 SITE_STOP - nothing is allowed to happen; tunnel is down;
49 all session keys have been erased
50 -> SITE_RUN upon external instruction
51 SITE_RUN - site up, maybe with valid key
52 -> SITE_RESOLVE upon outgoing packet and no valid key
53 we start name resolution for the other end of the tunnel
54 -> SITE_SENTMSG2 upon valid incoming message 1 and suitable time
55 we send an appropriate message 2
56 SITE_RESOLVE - waiting for name resolution
57 -> SITE_SENTMSG1 upon successful resolution
58 we send an appropriate message 1
59 -> SITE_SENTMSG2 upon valid incoming message 1 (then abort resolution)
60 we abort resolution and
61 -> SITE_WAIT on timeout or resolution failure
62 SITE_SENTMSG1
63 -> SITE_SENTMSG2 upon valid incoming message 1 from higher priority end
64 -> SITE_SENTMSG3 upon valid incoming message 2
65 -> SITE_WAIT on timeout
66 SITE_SENTMSG2
67 -> SITE_SENTMSG4 upon valid incoming message 3
68 -> SITE_WAIT on timeout
69 SITE_SENTMSG3
70 -> SITE_SENTMSG5 upon valid incoming message 4
71 -> SITE_WAIT on timeout
72 SITE_SENTMSG4
73 -> SITE_RUN upon valid incoming message 5
74 -> SITE_WAIT on timeout
75 SITE_SENTMSG5
76 -> SITE_RUN upon valid incoming message 6
77 -> SITE_WAIT on timeout
78 SITE_WAIT - failed to establish key; do nothing for a while
79 -> SITE_RUN on timeout
80 */
81
82#define SITE_STOP 0
83#define SITE_RUN 1
84#define SITE_RESOLVE 2
85#define SITE_SENTMSG1 3
86#define SITE_SENTMSG2 4
87#define SITE_SENTMSG3 5
88#define SITE_SENTMSG4 6
89#define SITE_SENTMSG5 7
90#define SITE_WAIT 8
91
3abd18e8
IJ
92int32_t site_max_start_pad = 4*4;
93
fe5e9cc4 94static cstring_t state_name(uint32_t state)
2fe58dfd
SE
95{
96 switch (state) {
3454dce4
SE
97 case 0: return "STOP";
98 case 1: return "RUN";
99 case 2: return "RESOLVE";
100 case 3: return "SENTMSG1";
101 case 4: return "SENTMSG2";
102 case 5: return "SENTMSG3";
103 case 6: return "SENTMSG4";
104 case 7: return "SENTMSG5";
105 case 8: return "WAIT";
2fe58dfd
SE
106 default: return "*bad state*";
107 }
108}
109
2fe58dfd
SE
110#define NONCELEN 8
111
112#define LOG_UNEXPECTED 0x00000001
113#define LOG_SETUP_INIT 0x00000002
114#define LOG_SETUP_TIMEOUT 0x00000004
115#define LOG_ACTIVATE_KEY 0x00000008
116#define LOG_TIMEOUT_KEY 0x00000010
9d3a4132 117#define LOG_SEC 0x00000020
2fe58dfd
SE
118#define LOG_STATE 0x00000040
119#define LOG_DROP 0x00000080
120#define LOG_DUMP 0x00000100
121#define LOG_ERROR 0x00000400
446353cd 122#define LOG_PEER_ADDRS 0x00000800
2fe58dfd 123
9d3a4132
SE
124static struct flagstr log_event_table[]={
125 { "unexpected", LOG_UNEXPECTED },
126 { "setup-init", LOG_SETUP_INIT },
127 { "setup-timeout", LOG_SETUP_TIMEOUT },
128 { "activate-key", LOG_ACTIVATE_KEY },
129 { "timeout-key", LOG_TIMEOUT_KEY },
130 { "security", LOG_SEC },
131 { "state-change", LOG_STATE },
132 { "packet-drop", LOG_DROP },
133 { "dump-packets", LOG_DUMP },
134 { "errors", LOG_ERROR },
446353cd 135 { "peer-addrs", LOG_PEER_ADDRS },
ff05a229
SE
136 { "default", LOG_SETUP_INIT|LOG_SETUP_TIMEOUT|
137 LOG_ACTIVATE_KEY|LOG_TIMEOUT_KEY|LOG_SEC|LOG_ERROR },
9d3a4132
SE
138 { "all", 0xffffffff },
139 { NULL, 0 }
140};
141
446353cd
IJ
142
143/***** TRANSPORT PEERS declarations *****/
144
145/* Details of "mobile peer" semantics:
146
147 - We record mobile_peers_max peer address/port numbers ("peers")
148 for key setup, and separately mobile_peers_max for data
149 transfer. If these lists fill up, we retain the newest peers.
150 (For non-mobile peers we only record one of each.)
151
152 - Outgoing packets are sent to every recorded peer in the
153 applicable list.
154
155 - Data transfer peers are straightforward: whenever we successfully
156 process a data packet, we record the peer. Also, whenever we
157 successfully complete a key setup, we merge the key setup
158 peers into the data transfer peers.
159
160 (For "non-mobile" peers we simply copy the peer used for
161 successful key setup, and don't change the peer otherwise.)
162
163 - Key setup peers are slightly more complicated.
164
165 Whenever we receive and successfully process a key exchange
166 packet, we record the peer.
167
168 Whenever we try to initiate a key setup, we copy the list of data
169 transfer peers and use it for key setup. But we also look to see
170 if the config supplies an address and port number and if so we
171 add that as a key setup peer (possibly evicting one of the data
172 transfer peers we just copied).
173
174 (For "non-mobile" peers, if we if we have a configured peer
175 address and port, we always use that; otherwise if we have a
176 current data peer address we use that; otherwise we do not
177 attempt to initiate a key setup for lack of a peer address.)
178
179 "Record the peer" means
180 1. expire any peers last seen >120s ("mobile-peer-expiry") ago
181 2. add the peer of the just received packet to the applicable list
182 (possibly evicting older entries)
183 NB that we do not expire peers until an incoming packet arrives.
184
185 */
186
187#define MAX_MOBILE_PEERS_MAX 5 /* send at most this many copies, compiled max */
188
189typedef struct {
190 struct timeval last;
191 struct comm_addr addr;
192} transport_peer;
193
194typedef struct {
195/* configuration information */
196/* runtime information */
197 int npeers;
198 transport_peer peers[MAX_MOBILE_PEERS_MAX];
199} transport_peers;
200
201static void transport_peers_clear(struct site *st, transport_peers *peers);
202static int transport_peers_valid(transport_peers *peers);
203static void transport_peers_copy(struct site *st, transport_peers *dst,
204 const transport_peers *src);
205
206static void transport_setup_msgok(struct site *st, const struct comm_addr *a);
207static void transport_data_msgok(struct site *st, const struct comm_addr *a);
208static bool_t transport_compute_setupinit_peers(struct site *st,
209 const struct comm_addr *configured_addr /* 0 if none or not found */);
210static void transport_record_peer(struct site *st, transport_peers *peers,
211 const struct comm_addr *addr, const char *m);
212
213static void transport_xmit(struct site *st, transport_peers *peers,
214 struct buffer_if *buf, bool_t candebug);
215
216 /***** END of transport peers declarations *****/
217
218
19e9a588
IJ
219struct data_key {
220 struct transform_inst_if *transform;
221 uint64_t key_timeout; /* End of life of current key */
222 uint32_t remote_session_id;
223};
224
2fe58dfd
SE
225struct site {
226 closure_t cl;
227 struct site_if ops;
228/* configuration information */
229 string_t localname;
230 string_t remotename;
446353cd
IJ
231 bool_t peer_mobile; /* Mobile client support */
232 int32_t transport_peers_max;
ff05a229 233 string_t tunname; /* localname<->remotename by default, used in logs */
2fe58dfd 234 string_t address; /* DNS name for bootstrapping, optional */
ff05a229 235 int remoteport; /* Port for bootstrapping, optional */
2fe58dfd 236 struct netlink_if *netlink;
59533c16
IJ
237 struct comm_if **comms;
238 int ncomms;
2fe58dfd
SE
239 struct resolver_if *resolver;
240 struct log_if *log;
241 struct random_if *random;
242 struct rsaprivkey_if *privkey;
2fe58dfd 243 struct rsapubkey_if *pubkey;
5b5f297f
IJ
244 struct transform_if **transforms;
245 int ntransforms;
2fe58dfd
SE
246 struct dh_if *dh;
247 struct hash_if *hash;
2fe58dfd 248
58650a70 249 uint32_t index; /* Index of this site */
09a385fb 250 uint32_t local_capabilities;
1caa23ff 251 int32_t setup_retries; /* How many times to send setup packets */
e7f8ec2a 252 int32_t setup_retry_interval; /* Initial timeout for setup packets */
4a8aed08 253 int32_t wait_timeout; /* How long to wait if setup unsuccessful */
446353cd 254 int32_t mobile_peer_expiry; /* How long to remember 2ary addresses */
4a8aed08
IJ
255 int32_t key_lifetime; /* How long a key lasts once set up */
256 int32_t key_renegotiate_time; /* If we see traffic (or a keepalive)
9d3a4132
SE
257 after this time, initiate a new
258 key exchange */
2fe58dfd 259
2fe58dfd
SE
260 bool_t setup_priority; /* Do we have precedence if both sites emit
261 message 1 simultaneously? */
262 uint32_t log_events;
263
264/* runtime information */
265 uint32_t state;
266 uint64_t now; /* Most recently seen time */
267
ff05a229 268 /* The currently established session */
19e9a588 269 struct data_key current;
02b0959b 270 struct data_key auxiliary_key;
bd98cd6b 271 bool_t auxiliary_is_new;
ff05a229 272 uint64_t renegotiate_key_time; /* When we can negotiate a new key */
bd98cd6b 273 uint64_t auxiliary_renegotiate_key_time;
446353cd 274 transport_peers peers; /* Current address(es) of peer for data traffic */
2fe58dfd 275
ff05a229
SE
276 /* The current key setup protocol exchange. We can only be
277 involved in one of these at a time. There's a potential for
278 denial of service here (the attacker keeps sending a setup
279 packet; we keep trying to continue the exchange, and have to
280 timeout before we can listen for another setup packet); perhaps
281 we should keep a list of 'bad' sources for setup packets. */
09a385fb 282 uint32_t remote_capabilities;
5b5f297f 283 struct transform_if *chosen_transform;
2fe58dfd 284 uint32_t setup_session_id;
446353cd 285 transport_peers setup_peers;
2fe58dfd
SE
286 uint8_t localN[NONCELEN]; /* Nonces for key exchange */
287 uint8_t remoteN[NONCELEN];
288 struct buffer_if buffer; /* Current outgoing key exchange packet */
05f39b4d 289 struct buffer_if scratch;
4a8aed08 290 int32_t retries; /* Number of retries remaining */
2fe58dfd
SE
291 uint64_t timeout; /* Timeout for current state */
292 uint8_t *dhsecret;
293 uint8_t *sharedsecret;
5b5f297f 294 uint32_t sharedsecretlen, sharedsecretallocd;
2fe58dfd
SE
295 struct transform_inst_if *new_transform; /* For key setup/verify */
296};
297
fe5e9cc4 298static void slog(struct site *st, uint32_t event, cstring_t msg, ...)
779837e1
IJ
299FORMAT(printf,3,4);
300static void slog(struct site *st, uint32_t event, cstring_t msg, ...)
2fe58dfd
SE
301{
302 va_list ap;
7c006408 303 char buf[240];
b2a56f7c 304 uint32_t class;
2fe58dfd
SE
305
306 va_start(ap,msg);
307
308 if (event&st->log_events) {
b2a56f7c
SE
309 switch(event) {
310 case LOG_UNEXPECTED: class=M_INFO; break;
311 case LOG_SETUP_INIT: class=M_INFO; break;
312 case LOG_SETUP_TIMEOUT: class=M_NOTICE; break;
313 case LOG_ACTIVATE_KEY: class=M_INFO; break;
314 case LOG_TIMEOUT_KEY: class=M_INFO; break;
315 case LOG_SEC: class=M_SECURITY; break;
316 case LOG_STATE: class=M_DEBUG; break;
317 case LOG_DROP: class=M_DEBUG; break;
318 case LOG_DUMP: class=M_DEBUG; break;
469fd1d9 319 case LOG_ERROR: class=M_ERR; break;
446353cd 320 case LOG_PEER_ADDRS: class=M_DEBUG; break;
469fd1d9 321 default: class=M_ERR; break;
b2a56f7c
SE
322 }
323
c1d2109a 324 vsnprintf(buf,sizeof(buf),msg,ap);
779837e1 325 slilog(st->log,class,"%s: %s",st->tunname,buf);
2fe58dfd
SE
326 }
327 va_end(ap);
328}
329
9d3a4132 330static void set_link_quality(struct site *st);
1d388569
IJ
331static void delete_keys(struct site *st, cstring_t reason, uint32_t loglevel);
332static void delete_one_key(struct site *st, struct data_key *key,
333 const char *reason /* may be 0 meaning don't log*/,
334 const char *which /* ignored if !reasonn */,
335 uint32_t loglevel /* ignored if !reasonn */);
fe5e9cc4 336static bool_t initiate_key_setup(struct site *st, cstring_t reason);
2fe58dfd
SE
337static void enter_state_run(struct site *st);
338static bool_t enter_state_resolve(struct site *st);
ff05a229 339static bool_t enter_new_state(struct site *st,uint32_t next);
2fe58dfd 340static void enter_state_wait(struct site *st);
05f39b4d 341static void activate_new_key(struct site *st);
2fe58dfd 342
0afd257e
IJ
343static bool_t is_transform_valid(struct transform_inst_if *transform)
344{
fcad4b0b 345 return transform && transform->valid(transform->st);
0afd257e
IJ
346}
347
3d8d8f4e
IJ
348static bool_t current_valid(struct site *st)
349{
0afd257e
IJ
350 return is_transform_valid(st->current.transform);
351}
352
353#define DEFINE_CALL_TRANSFORM(fwdrev) \
354static int call_transform_##fwdrev(struct site *st, \
355 struct transform_inst_if *transform, \
356 struct buffer_if *buf, \
357 const char **errmsg) \
358{ \
fcad4b0b
IJ
359 if (!is_transform_valid(transform)) { \
360 *errmsg="transform not set up"; \
361 return 1; \
362 } \
0afd257e 363 return transform->fwdrev(transform->st,buf,errmsg); \
3d8d8f4e
IJ
364}
365
0afd257e
IJ
366DEFINE_CALL_TRANSFORM(forwards)
367DEFINE_CALL_TRANSFORM(reverse)
368
369static void dispose_transform(struct transform_inst_if **transform_var)
370{
0afd257e 371 struct transform_inst_if *transform=*transform_var;
fcad4b0b
IJ
372 if (transform) {
373 transform->delkey(transform->st);
374 transform->destroy(transform->st);
375 }
376 *transform_var = 0;
0afd257e
IJ
377}
378
2fe58dfd
SE
379#define CHECK_AVAIL(b,l) do { if ((b)->size<(l)) return False; } while(0)
380#define CHECK_EMPTY(b) do { if ((b)->size!=0) return False; } while(0)
381#define CHECK_TYPE(b,t) do { uint32_t type; \
382 CHECK_AVAIL((b),4); \
59635212 383 type=buf_unprepend_uint32((b)); \
2fe58dfd
SE
384 if (type!=(t)) return False; } while(0)
385
1737eeef
IJ
386struct parsedname {
387 int32_t len;
388 uint8_t *name;
09a385fb 389 struct buffer_if extrainfo;
1737eeef
IJ
390};
391
2fe58dfd
SE
392struct msg {
393 uint8_t *hashstart;
394 uint32_t dest;
395 uint32_t source;
1737eeef
IJ
396 struct parsedname remote;
397 struct parsedname local;
09a385fb 398 uint32_t remote_capabilities;
5b5f297f 399 int capab_transformnum;
2fe58dfd
SE
400 uint8_t *nR;
401 uint8_t *nL;
1caa23ff 402 int32_t pklen;
3e8addad 403 char *pk;
1caa23ff
IJ
404 int32_t hashlen;
405 int32_t siglen;
3e8addad 406 char *sig;
2fe58dfd
SE
407};
408
5b5f297f 409static void set_new_transform(struct site *st, char *pk)
0afd257e 410{
5b5f297f
IJ
411 /* Make room for the shared key */
412 st->sharedsecretlen=st->chosen_transform->keylen?:st->dh->ceil_len;
413 assert(st->sharedsecretlen);
414 if (st->sharedsecretlen > st->sharedsecretallocd) {
415 st->sharedsecretallocd=st->sharedsecretlen;
416 st->sharedsecret=realloc(st->sharedsecret,st->sharedsecretallocd);
417 }
418 if (!st->sharedsecret) fatal_perror("site:sharedsecret");
419
420 /* Generate the shared key */
421 st->dh->makeshared(st->dh->st,st->dhsecret,st->dh->len,pk,
422 st->sharedsecret,st->sharedsecretlen);
423
424 /* Set up the transform */
425 struct transform_if *generator=st->chosen_transform;
fcad4b0b
IJ
426 struct transform_inst_if *generated=generator->create(generator->st);
427 generated->setkey(generated->st,st->sharedsecret,
428 st->sharedsecretlen,st->setup_priority);
429 dispose_transform(&st->new_transform);
430 st->new_transform=generated;
5b5f297f
IJ
431
432 slog(st,LOG_SETUP_INIT,"key exchange negotiated transform"
433 " %d (capabilities ours=%#"PRIx32" theirs=%#"PRIx32")",
434 st->chosen_transform->capab_transformnum,
435 st->local_capabilities, st->remote_capabilities);
0afd257e
IJ
436}
437
09a385fb
IJ
438struct xinfoadd {
439 int32_t lenpos, afternul;
440};
441static void append_string_xinfo_start(struct buffer_if *buf,
442 struct xinfoadd *xia,
443 const char *str)
444 /* Helps construct one of the names with additional info as found
445 * in MSG1..4. Call this function first, then append all the
446 * desired extra info (not including the nul byte) to the buffer,
447 * then call append_string_xinfo_done. */
448{
449 xia->lenpos = buf->size;
450 buf_append_string(buf,str);
451 buf_append_uint8(buf,0);
452 xia->afternul = buf->size;
453}
454static void append_string_xinfo_done(struct buffer_if *buf,
455 struct xinfoadd *xia)
456{
457 /* we just need to adjust the string length */
458 if (buf->size == xia->afternul) {
459 /* no extra info, strip the nul too */
460 buf_unappend_uint8(buf);
461 } else {
462 put_uint16(buf->start+xia->lenpos, buf->size-(xia->lenpos+2));
463 }
464}
465
ff05a229
SE
466/* Build any of msg1 to msg4. msg5 and msg6 are built from the inside
467 out using a transform of config data supplied by netlink */
fe5e9cc4 468static bool_t generate_msg(struct site *st, uint32_t type, cstring_t what)
2fe58dfd
SE
469{
470 void *hst;
3b83c932 471 uint8_t *hash;
2fe58dfd
SE
472 string_t dhpub, sig;
473
474 st->retries=st->setup_retries;
475 BUF_ALLOC(&st->buffer,what);
476 buffer_init(&st->buffer,0);
59635212
SE
477 buf_append_uint32(&st->buffer,
478 (type==LABEL_MSG1?0:st->setup_session_id));
58650a70 479 buf_append_uint32(&st->buffer,st->index);
59635212 480 buf_append_uint32(&st->buffer,type);
09a385fb
IJ
481
482 struct xinfoadd xia;
483 append_string_xinfo_start(&st->buffer,&xia,st->localname);
484 if ((st->local_capabilities & CAPAB_EARLY) || (type != LABEL_MSG1)) {
485 buf_append_uint32(&st->buffer,st->local_capabilities);
486 }
487 append_string_xinfo_done(&st->buffer,&xia);
488
2fe58dfd
SE
489 buf_append_string(&st->buffer,st->remotename);
490 memcpy(buf_append(&st->buffer,NONCELEN),st->localN,NONCELEN);
491 if (type==LABEL_MSG1) return True;
492 memcpy(buf_append(&st->buffer,NONCELEN),st->remoteN,NONCELEN);
493 if (type==LABEL_MSG2) return True;
3b83c932
SE
494
495 if (hacky_par_mid_failnow()) return False;
496
5b5f297f
IJ
497 if (type==LABEL_MSG3BIS)
498 buf_append_uint8(&st->buffer,st->chosen_transform->capab_transformnum);
499
2fe58dfd
SE
500 dhpub=st->dh->makepublic(st->dh->st,st->dhsecret,st->dh->len);
501 buf_append_string(&st->buffer,dhpub);
502 free(dhpub);
3b83c932 503 hash=safe_malloc(st->hash->len, "generate_msg");
2fe58dfd
SE
504 hst=st->hash->init();
505 st->hash->update(hst,st->buffer.start,st->buffer.size);
506 st->hash->final(hst,hash);
507 sig=st->privkey->sign(st->privkey->st,hash,st->hash->len);
508 buf_append_string(&st->buffer,sig);
509 free(sig);
3b83c932 510 free(hash);
2fe58dfd
SE
511 return True;
512}
513
1737eeef
IJ
514static bool_t unpick_name(struct buffer_if *msg, struct parsedname *nm)
515{
516 CHECK_AVAIL(msg,2);
517 nm->len=buf_unprepend_uint16(msg);
518 CHECK_AVAIL(msg,nm->len);
519 nm->name=buf_unprepend(msg,nm->len);
520 uint8_t *nul=memchr(nm->name,0,nm->len);
521 if (!nul) {
09a385fb 522 buffer_readonly_view(&nm->extrainfo,0,0);
1737eeef 523 } else {
09a385fb 524 buffer_readonly_view(&nm->extrainfo, nul+1, msg->start-(nul+1));
1737eeef
IJ
525 nm->len=nul-nm->name;
526 }
527 return True;
528}
529
2fe58dfd
SE
530static bool_t unpick_msg(struct site *st, uint32_t type,
531 struct buffer_if *msg, struct msg *m)
532{
5b5f297f 533 m->capab_transformnum=-1;
2fe58dfd
SE
534 m->hashstart=msg->start;
535 CHECK_AVAIL(msg,4);
59635212 536 m->dest=buf_unprepend_uint32(msg);
2fe58dfd 537 CHECK_AVAIL(msg,4);
59635212 538 m->source=buf_unprepend_uint32(msg);
2fe58dfd 539 CHECK_TYPE(msg,type);
1737eeef 540 if (!unpick_name(msg,&m->remote)) return False;
09a385fb
IJ
541 m->remote_capabilities=0;
542 if (m->remote.extrainfo.size) {
543 CHECK_AVAIL(&m->remote.extrainfo,4);
544 m->remote_capabilities=buf_unprepend_uint32(&m->remote.extrainfo);
545 }
1737eeef 546 if (!unpick_name(msg,&m->local)) return False;
2fe58dfd
SE
547 CHECK_AVAIL(msg,NONCELEN);
548 m->nR=buf_unprepend(msg,NONCELEN);
549 if (type==LABEL_MSG1) {
550 CHECK_EMPTY(msg);
551 return True;
552 }
553 CHECK_AVAIL(msg,NONCELEN);
554 m->nL=buf_unprepend(msg,NONCELEN);
555 if (type==LABEL_MSG2) {
556 CHECK_EMPTY(msg);
557 return True;
558 }
5b5f297f
IJ
559 if (type==LABEL_MSG3BIS) {
560 CHECK_AVAIL(msg,1);
561 m->capab_transformnum = buf_unprepend_uint8(msg);
562 } else {
563 m->capab_transformnum = CAPAB_TRANSFORMNUM_ANCIENT;
564 }
2fe58dfd 565 CHECK_AVAIL(msg,2);
59635212 566 m->pklen=buf_unprepend_uint16(msg);
2fe58dfd
SE
567 CHECK_AVAIL(msg,m->pklen);
568 m->pk=buf_unprepend(msg,m->pklen);
569 m->hashlen=msg->start-m->hashstart;
570 CHECK_AVAIL(msg,2);
59635212 571 m->siglen=buf_unprepend_uint16(msg);
2fe58dfd
SE
572 CHECK_AVAIL(msg,m->siglen);
573 m->sig=buf_unprepend(msg,m->siglen);
574 CHECK_EMPTY(msg);
575 return True;
576}
577
1737eeef
IJ
578static bool_t name_matches(const struct parsedname *nm, const char *expected)
579{
580 int expected_len=strlen(expected);
581 return
582 nm->len == expected_len &&
583 !memcmp(nm->name, expected, expected_len);
584}
585
ff05a229 586static bool_t check_msg(struct site *st, uint32_t type, struct msg *m,
fe5e9cc4 587 cstring_t *error)
ff05a229
SE
588{
589 if (type==LABEL_MSG1) return True;
590
591 /* Check that the site names and our nonce have been sent
592 back correctly, and then store our peer's nonce. */
1737eeef 593 if (!name_matches(&m->remote,st->remotename)) {
ff05a229
SE
594 *error="wrong remote site name";
595 return False;
596 }
1737eeef 597 if (!name_matches(&m->local,st->localname)) {
ff05a229
SE
598 *error="wrong local site name";
599 return False;
600 }
601 if (memcmp(m->nL,st->localN,NONCELEN)!=0) {
602 *error="wrong locally-generated nonce";
603 return False;
604 }
605 if (type==LABEL_MSG2) return True;
5ad34db2 606 if (!consttime_memeq(m->nR,st->remoteN,NONCELEN)!=0) {
ff05a229
SE
607 *error="wrong remotely-generated nonce";
608 return False;
609 }
09a385fb
IJ
610 /* MSG3 has complicated rules about capabilities, which are
611 * handled in process_msg3. */
5b5f297f 612 if (type==LABEL_MSG3 || type==LABEL_MSG3BIS) return True;
09a385fb
IJ
613 if (m->remote_capabilities!=st->remote_capabilities) {
614 *error="remote capabilities changed";
615 return False;
616 }
ff05a229
SE
617 if (type==LABEL_MSG4) return True;
618 *error="unknown message type";
619 return False;
620}
621
2fe58dfd
SE
622static bool_t generate_msg1(struct site *st)
623{
624 st->random->generate(st->random->st,NONCELEN,st->localN);
625 return generate_msg(st,LABEL_MSG1,"site:MSG1");
626}
627
628static bool_t process_msg1(struct site *st, struct buffer_if *msg1,
7e29719e 629 const struct comm_addr *src, struct msg *m)
2fe58dfd 630{
2fe58dfd
SE
631 /* We've already determined we're in an appropriate state to
632 process an incoming MSG1, and that the MSG1 has correct values
633 of A and B. */
634
446353cd 635 transport_record_peer(st,&st->setup_peers,src,"msg1");
7e29719e 636 st->setup_session_id=m->source;
09a385fb 637 st->remote_capabilities=m->remote_capabilities;
7e29719e 638 memcpy(st->remoteN,m->nR,NONCELEN);
2fe58dfd
SE
639 return True;
640}
641
642static bool_t generate_msg2(struct site *st)
643{
644 st->random->generate(st->random->st,NONCELEN,st->localN);
645 return generate_msg(st,LABEL_MSG2,"site:MSG2");
646}
647
648static bool_t process_msg2(struct site *st, struct buffer_if *msg2,
a15faeb2 649 const struct comm_addr *src)
2fe58dfd
SE
650{
651 struct msg m;
fe5e9cc4 652 cstring_t err;
2fe58dfd
SE
653
654 if (!unpick_msg(st,LABEL_MSG2,msg2,&m)) return False;
ff05a229
SE
655 if (!check_msg(st,LABEL_MSG2,&m,&err)) {
656 slog(st,LOG_SEC,"msg2: %s",err);
2fe58dfd
SE
657 return False;
658 }
659 st->setup_session_id=m.source;
09a385fb 660 st->remote_capabilities=m.remote_capabilities;
5b5f297f
IJ
661
662 /* Select the transform to use */
663
664 uint32_t remote_transforms = st->remote_capabilities & CAPAB_TRANSFORM_MASK;
665 if (!remote_transforms)
666 /* old secnets only had this one transform */
667 remote_transforms = 1UL << CAPAB_TRANSFORMNUM_ANCIENT;
668
669 struct transform_if *ti;
670 int i;
671 for (i=0; i<st->ntransforms; i++) {
672 ti=st->transforms[i];
673 if ((1UL << ti->capab_transformnum) & remote_transforms)
674 goto transform_found;
675 }
676 slog(st,LOG_ERROR,"no transforms in common"
677 " (us %#"PRIx32"; them: %#"PRIx32")",
678 st->local_capabilities & CAPAB_TRANSFORM_MASK,
679 remote_transforms);
680 return False;
681 transform_found:
682 st->chosen_transform=ti;
683
2fe58dfd
SE
684 memcpy(st->remoteN,m.nR,NONCELEN);
685 return True;
686}
687
688static bool_t generate_msg3(struct site *st)
689{
690 /* Now we have our nonce and their nonce. Think of a secret key,
691 and create message number 3. */
692 st->random->generate(st->random->st,st->dh->len,st->dhsecret);
5b5f297f
IJ
693 return generate_msg(st,
694 (st->remote_capabilities & CAPAB_TRANSFORM_MASK
695 ? LABEL_MSG3BIS : LABEL_MSG3),
696 "site:MSG3");
2fe58dfd
SE
697}
698
699static bool_t process_msg3(struct site *st, struct buffer_if *msg3,
5b5f297f 700 const struct comm_addr *src, uint32_t msgtype)
2fe58dfd
SE
701{
702 struct msg m;
3b83c932 703 uint8_t *hash;
2fe58dfd 704 void *hst;
fe5e9cc4 705 cstring_t err;
2fe58dfd 706
5b5f297f
IJ
707 assert(msgtype==LABEL_MSG3 || msgtype==LABEL_MSG3BIS);
708
709 if (!unpick_msg(st,msgtype,msg3,&m)) return False;
710 if (!check_msg(st,msgtype,&m,&err)) {
ff05a229 711 slog(st,LOG_SEC,"msg3: %s",err);
2fe58dfd
SE
712 return False;
713 }
09a385fb
IJ
714 uint32_t capab_adv_late = m.remote_capabilities
715 & ~st->remote_capabilities & CAPAB_EARLY;
716 if (capab_adv_late) {
717 slog(st,LOG_SEC,"msg3 impermissibly adds early capability flag(s)"
718 " %#"PRIx32" (was %#"PRIx32", now %#"PRIx32")",
719 capab_adv_late, st->remote_capabilities, m.remote_capabilities);
720 return False;
721 }
722 st->remote_capabilities|=m.remote_capabilities;
ff05a229 723
5b5f297f
IJ
724 struct transform_if *ti;
725 int i;
726 for (i=0; i<st->ntransforms; i++) {
727 ti=st->transforms[i];
728 if (ti->capab_transformnum == m.capab_transformnum)
729 goto transform_found;
730 }
731 slog(st,LOG_SEC,"peer chose unknown-to-us transform %d!",
732 m.capab_transformnum);
733 return False;
734 transform_found:
735 st->chosen_transform=ti;
736
2fe58dfd 737 /* Check signature and store g^x mod m */
3b83c932 738 hash=safe_malloc(st->hash->len, "process_msg3");
2fe58dfd
SE
739 hst=st->hash->init();
740 st->hash->update(hst,m.hashstart,m.hashlen);
741 st->hash->final(hst,hash);
742 /* Terminate signature with a '0' - cheating, but should be ok */
743 m.sig[m.siglen]=0;
744 if (!st->pubkey->check(st->pubkey->st,hash,st->hash->len,m.sig)) {
59635212 745 slog(st,LOG_SEC,"msg3 signature failed check!");
3b83c932 746 free(hash);
2fe58dfd
SE
747 return False;
748 }
3b83c932 749 free(hash);
2fe58dfd
SE
750
751 /* Terminate their DH public key with a '0' */
752 m.pk[m.pklen]=0;
753 /* Invent our DH secret key */
754 st->random->generate(st->random->st,st->dh->len,st->dhsecret);
755
5b5f297f
IJ
756 /* Generate the shared key and set up the transform */
757 set_new_transform(st,m.pk);
2fe58dfd
SE
758
759 return True;
760}
761
762static bool_t generate_msg4(struct site *st)
763{
764 /* We have both nonces, their public key and our private key. Generate
765 our public key, sign it and send it to them. */
766 return generate_msg(st,LABEL_MSG4,"site:MSG4");
767}
768
769static bool_t process_msg4(struct site *st, struct buffer_if *msg4,
a15faeb2 770 const struct comm_addr *src)
2fe58dfd
SE
771{
772 struct msg m;
3b83c932 773 uint8_t *hash;
2fe58dfd 774 void *hst;
fe5e9cc4 775 cstring_t err;
2fe58dfd
SE
776
777 if (!unpick_msg(st,LABEL_MSG4,msg4,&m)) return False;
ff05a229
SE
778 if (!check_msg(st,LABEL_MSG4,&m,&err)) {
779 slog(st,LOG_SEC,"msg4: %s",err);
2fe58dfd
SE
780 return False;
781 }
782
783 /* Check signature and store g^x mod m */
3b83c932 784 hash=safe_malloc(st->hash->len, "process_msg4");
2fe58dfd
SE
785 hst=st->hash->init();
786 st->hash->update(hst,m.hashstart,m.hashlen);
787 st->hash->final(hst,hash);
788 /* Terminate signature with a '0' - cheating, but should be ok */
789 m.sig[m.siglen]=0;
790 if (!st->pubkey->check(st->pubkey->st,hash,st->hash->len,m.sig)) {
59635212 791 slog(st,LOG_SEC,"msg4 signature failed check!");
3b83c932 792 free(hash);
2fe58dfd
SE
793 return False;
794 }
3b83c932 795 free(hash);
2fe58dfd
SE
796
797 /* Terminate their DH public key with a '0' */
798 m.pk[m.pklen]=0;
5b5f297f
IJ
799
800 /* Generate the shared key and set up the transform */
801 set_new_transform(st,m.pk);
2fe58dfd
SE
802
803 return True;
804}
805
2fe58dfd
SE
806struct msg0 {
807 uint32_t dest;
808 uint32_t source;
809 uint32_t type;
810};
811
812static bool_t unpick_msg0(struct site *st, struct buffer_if *msg0,
813 struct msg0 *m)
814{
815 CHECK_AVAIL(msg0,4);
59635212 816 m->dest=buf_unprepend_uint32(msg0);
2fe58dfd 817 CHECK_AVAIL(msg0,4);
59635212 818 m->source=buf_unprepend_uint32(msg0);
2fe58dfd 819 CHECK_AVAIL(msg0,4);
59635212 820 m->type=buf_unprepend_uint32(msg0);
2fe58dfd
SE
821 return True;
822 /* Leaves transformed part of buffer untouched */
823}
824
ff05a229
SE
825static bool_t generate_msg5(struct site *st)
826{
fe5e9cc4 827 cstring_t transform_err;
ff05a229
SE
828
829 BUF_ALLOC(&st->buffer,"site:MSG5");
830 /* We are going to add four words to the message */
3abd18e8 831 buffer_init(&st->buffer,calculate_max_start_pad());
ff05a229
SE
832 /* Give the netlink code an opportunity to put its own stuff in the
833 message (configuration information, etc.) */
ff05a229 834 buf_prepend_uint32(&st->buffer,LABEL_MSG5);
0afd257e
IJ
835 if (call_transform_forwards(st,st->new_transform,
836 &st->buffer,&transform_err))
837 return False;
ff05a229 838 buf_prepend_uint32(&st->buffer,LABEL_MSG5);
58650a70 839 buf_prepend_uint32(&st->buffer,st->index);
ff05a229
SE
840 buf_prepend_uint32(&st->buffer,st->setup_session_id);
841
842 st->retries=st->setup_retries;
843 return True;
844}
845
2fe58dfd 846static bool_t process_msg5(struct site *st, struct buffer_if *msg5,
c90cc2a7
IJ
847 const struct comm_addr *src,
848 struct transform_inst_if *transform)
2fe58dfd
SE
849{
850 struct msg0 m;
fe5e9cc4 851 cstring_t transform_err;
2fe58dfd
SE
852
853 if (!unpick_msg0(st,msg5,&m)) return False;
854
0afd257e 855 if (call_transform_reverse(st,transform,msg5,&transform_err)) {
2fe58dfd 856 /* There's a problem */
59635212 857 slog(st,LOG_SEC,"process_msg5: transform: %s",transform_err);
2fe58dfd
SE
858 return False;
859 }
860 /* Buffer should now contain untransformed PING packet data */
861 CHECK_AVAIL(msg5,4);
59635212 862 if (buf_unprepend_uint32(msg5)!=LABEL_MSG5) {
ff05a229 863 slog(st,LOG_SEC,"MSG5/PING packet contained wrong label");
2fe58dfd
SE
864 return False;
865 }
ff7cdc9e
IJ
866 /* Older versions of secnet used to write some config data here
867 * which we ignore. So we don't CHECK_EMPTY */
2fe58dfd
SE
868 return True;
869}
870
c90cc2a7
IJ
871static void create_msg6(struct site *st, struct transform_inst_if *transform,
872 uint32_t session_id)
2fe58dfd 873{
fe5e9cc4 874 cstring_t transform_err;
2fe58dfd
SE
875
876 BUF_ALLOC(&st->buffer,"site:MSG6");
ff05a229 877 /* We are going to add four words to the message */
3abd18e8 878 buffer_init(&st->buffer,calculate_max_start_pad());
794f2398
SE
879 /* Give the netlink code an opportunity to put its own stuff in the
880 message (configuration information, etc.) */
ff05a229 881 buf_prepend_uint32(&st->buffer,LABEL_MSG6);
0afd257e
IJ
882 int problem = call_transform_forwards(st,transform,
883 &st->buffer,&transform_err);
884 assert(!problem);
59635212 885 buf_prepend_uint32(&st->buffer,LABEL_MSG6);
58650a70 886 buf_prepend_uint32(&st->buffer,st->index);
c90cc2a7
IJ
887 buf_prepend_uint32(&st->buffer,session_id);
888}
2fe58dfd 889
c90cc2a7
IJ
890static bool_t generate_msg6(struct site *st)
891{
0afd257e
IJ
892 if (!is_transform_valid(st->new_transform))
893 return False;
c90cc2a7 894 create_msg6(st,st->new_transform,st->setup_session_id);
ff05a229 895 st->retries=1; /* Peer will retransmit MSG5 if this packet gets lost */
2fe58dfd
SE
896 return True;
897}
898
899static bool_t process_msg6(struct site *st, struct buffer_if *msg6,
a15faeb2 900 const struct comm_addr *src)
2fe58dfd
SE
901{
902 struct msg0 m;
fe5e9cc4 903 cstring_t transform_err;
2fe58dfd
SE
904
905 if (!unpick_msg0(st,msg6,&m)) return False;
906
0afd257e 907 if (call_transform_reverse(st,st->new_transform,msg6,&transform_err)) {
2fe58dfd 908 /* There's a problem */
59635212 909 slog(st,LOG_SEC,"process_msg6: transform: %s",transform_err);
2fe58dfd
SE
910 return False;
911 }
912 /* Buffer should now contain untransformed PING packet data */
913 CHECK_AVAIL(msg6,4);
59635212
SE
914 if (buf_unprepend_uint32(msg6)!=LABEL_MSG6) {
915 slog(st,LOG_SEC,"MSG6/PONG packet contained invalid data");
2fe58dfd
SE
916 return False;
917 }
ff7cdc9e
IJ
918 /* Older versions of secnet used to write some config data here
919 * which we ignore. So we don't CHECK_EMPTY */
2fe58dfd
SE
920 return True;
921}
922
48b97423
IJ
923static bool_t decrypt_msg0(struct site *st, struct buffer_if *msg0,
924 const struct comm_addr *src)
2fe58dfd 925{
02b0959b 926 cstring_t transform_err, auxkey_err, newkey_err="n/a";
065e1922
IJ
927 struct msg0 m;
928 uint32_t problem;
2fe58dfd 929
2fe58dfd
SE
930 if (!unpick_msg0(st,msg0,&m)) return False;
931
05f39b4d
IJ
932 /* Keep a copy so we can try decrypting it with multiple keys */
933 buffer_copy(&st->scratch, msg0);
934
0afd257e
IJ
935 problem = call_transform_reverse(st,st->current.transform,
936 msg0,&transform_err);
02b0959b 937 if (!problem) {
bd98cd6b
IJ
938 if (!st->auxiliary_is_new)
939 delete_one_key(st,&st->auxiliary_key,
940 "peer has used new key","auxiliary key",LOG_SEC);
02b0959b
IJ
941 return True;
942 }
48b97423
IJ
943 if (problem==2)
944 goto skew;
07e4774c 945
02b0959b 946 buffer_copy(msg0, &st->scratch);
fcad4b0b
IJ
947 problem = call_transform_reverse(st,st->auxiliary_key.transform,
948 msg0,&auxkey_err);
02b0959b
IJ
949 if (problem==0) {
950 slog(st,LOG_DROP,"processing packet which uses auxiliary key");
bd98cd6b
IJ
951 if (st->auxiliary_is_new) {
952 /* We previously timed out in state SENTMSG5 but it turns
953 * out that our peer did in fact get our MSG5 and is
954 * using the new key. So we should switch to it too. */
955 /* This is a bit like activate_new_key. */
956 struct data_key t;
957 t=st->current;
958 st->current=st->auxiliary_key;
959 st->auxiliary_key=t;
960
961 delete_one_key(st,&st->auxiliary_key,"peer has used new key",
962 "previous key",LOG_SEC);
963 st->auxiliary_is_new=0;
964 st->renegotiate_key_time=st->auxiliary_renegotiate_key_time;
965 }
02b0959b
IJ
966 return True;
967 }
48b97423
IJ
968 if (problem==2)
969 goto skew;
02b0959b 970
05f39b4d
IJ
971 if (st->state==SITE_SENTMSG5) {
972 buffer_copy(msg0, &st->scratch);
0afd257e
IJ
973 problem = call_transform_reverse(st,st->new_transform,
974 msg0,&newkey_err);
48b97423 975 if (!problem) {
05f39b4d
IJ
976 /* It looks like we didn't get the peer's MSG6 */
977 /* This is like a cut-down enter_new_state(SITE_RUN) */
978 slog(st,LOG_STATE,"will enter state RUN (MSG0 with new key)");
979 BUF_FREE(&st->buffer);
980 st->timeout=0;
981 activate_new_key(st);
982 return True; /* do process the data in this packet */
983 }
48b97423
IJ
984 if (problem==2)
985 goto skew;
05f39b4d
IJ
986 }
987
02b0959b
IJ
988 slog(st,LOG_SEC,"transform: %s (aux: %s, new: %s)",
989 transform_err,auxkey_err,newkey_err);
065e1922 990 initiate_key_setup(st,"incoming message would not decrypt");
48b97423
IJ
991 send_nak(src,m.dest,m.source,m.type,msg0,"message would not decrypt");
992 return False;
993
994 skew:
995 slog(st,LOG_DROP,"transform: %s (merely skew)",transform_err);
065e1922
IJ
996 return False;
997}
998
999static bool_t process_msg0(struct site *st, struct buffer_if *msg0,
1000 const struct comm_addr *src)
1001{
1002 uint32_t type;
1003
48b97423 1004 if (!decrypt_msg0(st,msg0,src))
065e1922
IJ
1005 return False;
1006
2fe58dfd 1007 CHECK_AVAIL(msg0,4);
59635212 1008 type=buf_unprepend_uint32(msg0);
2fe58dfd 1009 switch(type) {
794f2398
SE
1010 case LABEL_MSG7:
1011 /* We must forget about the current session. */
1d388569 1012 delete_keys(st,"request from peer",LOG_SEC);
794f2398 1013 return True;
2fe58dfd
SE
1014 case LABEL_MSG9:
1015 /* Deliver to netlink layer */
469fd1d9 1016 st->netlink->deliver(st->netlink->st,msg0);
446353cd 1017 transport_data_msgok(st,src);
837cf01e
IJ
1018 /* See whether we should start negotiating a new key */
1019 if (st->now > st->renegotiate_key_time)
1020 initiate_key_setup(st,"incoming packet in renegotiation window");
2fe58dfd 1021 return True;
2fe58dfd 1022 default:
ff05a229
SE
1023 slog(st,LOG_SEC,"incoming encrypted message of type %08x "
1024 "(unknown)",type);
2fe58dfd
SE
1025 break;
1026 }
1027 return False;
1028}
1029
1030static void dump_packet(struct site *st, struct buffer_if *buf,
a15faeb2 1031 const struct comm_addr *addr, bool_t incoming)
2fe58dfd 1032{
0a6cbade
IJ
1033 uint32_t dest=get_uint32(buf->start);
1034 uint32_t source=get_uint32(buf->start+4);
1035 uint32_t msgtype=get_uint32(buf->start+8);
2fe58dfd
SE
1036
1037 if (st->log_events & LOG_DUMP)
040ee979
SE
1038 slilog(st->log,M_DEBUG,"%s: %s: %08x<-%08x: %08x:",
1039 st->tunname,incoming?"incoming":"outgoing",
1040 dest,source,msgtype);
2fe58dfd
SE
1041}
1042
1043static uint32_t site_status(void *st)
1044{
1045 return 0;
1046}
1047
1048static bool_t send_msg(struct site *st)
1049{
1050 if (st->retries>0) {
446353cd 1051 transport_xmit(st, &st->setup_peers, &st->buffer, True);
e7f8ec2a 1052 st->timeout=st->now+st->setup_retry_interval;
2fe58dfd
SE
1053 st->retries--;
1054 return True;
bd98cd6b
IJ
1055 } else if (st->state==SITE_SENTMSG5) {
1056 slog(st,LOG_SETUP_TIMEOUT,"timed out sending MSG5, stashing new key");
1057 /* We stash the key we have produced, in case it turns out that
1058 * our peer did see our MSG5 after all and starts using it. */
1059 /* This is a bit like some of activate_new_key */
1060 struct transform_inst_if *t;
1061 t=st->auxiliary_key.transform;
1062 st->auxiliary_key.transform=st->new_transform;
1063 st->new_transform=t;
0afd257e 1064 dispose_transform(&st->new_transform);
bd98cd6b 1065
bd98cd6b
IJ
1066 st->auxiliary_is_new=1;
1067 st->auxiliary_key.key_timeout=st->now+st->key_lifetime;
1068 st->auxiliary_renegotiate_key_time=st->now+st->key_renegotiate_time;
1069 st->auxiliary_key.remote_session_id=st->setup_session_id;
1070
1071 enter_state_wait(st);
1072 return False;
2fe58dfd 1073 } else {
3454dce4
SE
1074 slog(st,LOG_SETUP_TIMEOUT,"timed out sending key setup packet "
1075 "(in state %s)",state_name(st->state));
2fe58dfd
SE
1076 enter_state_wait(st);
1077 return False;
1078 }
1079}
1080
1081static void site_resolve_callback(void *sst, struct in_addr *address)
1082{
1083 struct site *st=sst;
446353cd 1084 struct comm_addr ca_buf, *ca_use;
2fe58dfd
SE
1085
1086 if (st->state!=SITE_RESOLVE) {
1087 slog(st,LOG_UNEXPECTED,"site_resolve_callback called unexpectedly");
1088 return;
1089 }
1090 if (address) {
446353cd 1091 FILLZERO(ca_buf);
59533c16 1092 ca_buf.comm=st->comms[0];
446353cd
IJ
1093 ca_buf.sin.sin_family=AF_INET;
1094 ca_buf.sin.sin_port=htons(st->remoteport);
1095 ca_buf.sin.sin_addr=*address;
1096 ca_use=&ca_buf;
2fe58dfd 1097 } else {
2fe58dfd 1098 slog(st,LOG_ERROR,"resolution of %s failed",st->address);
446353cd
IJ
1099 ca_use=0;
1100 }
1101 if (transport_compute_setupinit_peers(st,ca_use)) {
1102 enter_new_state(st,SITE_SENTMSG1);
1103 } else {
1104 /* Can't figure out who to try to to talk to */
1105 slog(st,LOG_SETUP_INIT,"key exchange failed: cannot find peer address");
2fe58dfd
SE
1106 enter_state_run(st);
1107 }
1108}
1109
fe5e9cc4 1110static bool_t initiate_key_setup(struct site *st, cstring_t reason)
9d3a4132
SE
1111{
1112 if (st->state!=SITE_RUN) return False;
794f2398 1113 slog(st,LOG_SETUP_INIT,"initiating key exchange (%s)",reason);
9d3a4132 1114 if (st->address) {
794f2398 1115 slog(st,LOG_SETUP_INIT,"resolving peer address");
9d3a4132 1116 return enter_state_resolve(st);
446353cd 1117 } else if (transport_compute_setupinit_peers(st,0)) {
ff05a229 1118 return enter_new_state(st,SITE_SENTMSG1);
9d3a4132 1119 }
ff05a229 1120 slog(st,LOG_SETUP_INIT,"key exchange failed: no address for peer");
9d3a4132
SE
1121 return False;
1122}
1123
2fe58dfd
SE
1124static void activate_new_key(struct site *st)
1125{
1126 struct transform_inst_if *t;
1127
02b0959b
IJ
1128 /* We have three transform instances, which we swap between old,
1129 active and setup */
1130 t=st->auxiliary_key.transform;
1131 st->auxiliary_key.transform=st->current.transform;
19e9a588 1132 st->current.transform=st->new_transform;
2fe58dfd 1133 st->new_transform=t;
0afd257e 1134 dispose_transform(&st->new_transform);
2fe58dfd 1135
2fe58dfd 1136 st->timeout=0;
bd98cd6b 1137 st->auxiliary_is_new=0;
02b0959b 1138 st->auxiliary_key.key_timeout=st->current.key_timeout;
19e9a588 1139 st->current.key_timeout=st->now+st->key_lifetime;
ff05a229 1140 st->renegotiate_key_time=st->now+st->key_renegotiate_time;
446353cd 1141 transport_peers_copy(st,&st->peers,&st->setup_peers);
19e9a588 1142 st->current.remote_session_id=st->setup_session_id;
2fe58dfd
SE
1143
1144 slog(st,LOG_ACTIVATE_KEY,"new key activated");
9d3a4132 1145 enter_state_run(st);
2fe58dfd
SE
1146}
1147
1d388569
IJ
1148static void delete_one_key(struct site *st, struct data_key *key,
1149 cstring_t reason, cstring_t which, uint32_t loglevel)
1150{
0afd257e 1151 if (!is_transform_valid(key->transform)) return;
1d388569 1152 if (reason) slog(st,loglevel,"%s deleted (%s)",which,reason);
0afd257e 1153 dispose_transform(&key->transform);
1d388569
IJ
1154 key->key_timeout=0;
1155}
1156
1157static void delete_keys(struct site *st, cstring_t reason, uint32_t loglevel)
794f2398 1158{
3d8d8f4e 1159 if (current_valid(st)) {
794f2398
SE
1160 slog(st,loglevel,"session closed (%s)",reason);
1161
1d388569 1162 delete_one_key(st,&st->current,0,0,0);
794f2398
SE
1163 set_link_quality(st);
1164 }
02b0959b 1165 delete_one_key(st,&st->auxiliary_key,0,0,0);
794f2398
SE
1166}
1167
2fe58dfd
SE
1168static void state_assert(struct site *st, bool_t ok)
1169{
4f5e39ec 1170 if (!ok) fatal("site:state_assert");
2fe58dfd
SE
1171}
1172
1173static void enter_state_stop(struct site *st)
1174{
1175 st->state=SITE_STOP;
1176 st->timeout=0;
1d388569 1177 delete_keys(st,"entering state STOP",LOG_TIMEOUT_KEY);
0afd257e 1178 dispose_transform(&st->new_transform);
2fe58dfd
SE
1179}
1180
9d3a4132
SE
1181static void set_link_quality(struct site *st)
1182{
1183 uint32_t quality;
3d8d8f4e 1184 if (current_valid(st))
9d3a4132
SE
1185 quality=LINK_QUALITY_UP;
1186 else if (st->state==SITE_WAIT || st->state==SITE_STOP)
1187 quality=LINK_QUALITY_DOWN;
1188 else if (st->address)
1189 quality=LINK_QUALITY_DOWN_CURRENT_ADDRESS;
446353cd 1190 else if (transport_peers_valid(&st->peers))
9d3a4132
SE
1191 quality=LINK_QUALITY_DOWN_STALE_ADDRESS;
1192 else
1193 quality=LINK_QUALITY_DOWN;
1194
469fd1d9 1195 st->netlink->set_quality(st->netlink->st,quality);
9d3a4132
SE
1196}
1197
2fe58dfd
SE
1198static void enter_state_run(struct site *st)
1199{
1200 slog(st,LOG_STATE,"entering state RUN");
1201 st->state=SITE_RUN;
1202 st->timeout=0;
9d3a4132 1203
ff05a229 1204 st->setup_session_id=0;
446353cd 1205 transport_peers_clear(st,&st->setup_peers);
ff05a229
SE
1206 memset(st->localN,0,NONCELEN);
1207 memset(st->remoteN,0,NONCELEN);
0afd257e 1208 dispose_transform(&st->new_transform);
ff05a229 1209 memset(st->dhsecret,0,st->dh->len);
7c9ca4bd 1210 memset(st->sharedsecret,0,st->sharedsecretlen);
9d3a4132 1211 set_link_quality(st);
2fe58dfd
SE
1212}
1213
1214static bool_t enter_state_resolve(struct site *st)
1215{
1216 state_assert(st,st->state==SITE_RUN);
1217 slog(st,LOG_STATE,"entering state RESOLVE");
1218 st->state=SITE_RESOLVE;
1219 st->resolver->request(st->resolver->st,st->address,
1220 site_resolve_callback,st);
1221 return True;
1222}
1223
ff05a229 1224static bool_t enter_new_state(struct site *st, uint32_t next)
2fe58dfd 1225{
ff05a229 1226 bool_t (*gen)(struct site *st);
3b83c932
SE
1227 int r;
1228
ff05a229
SE
1229 slog(st,LOG_STATE,"entering state %s",state_name(next));
1230 switch(next) {
1231 case SITE_SENTMSG1:
1232 state_assert(st,st->state==SITE_RUN || st->state==SITE_RESOLVE);
1233 gen=generate_msg1;
1234 break;
1235 case SITE_SENTMSG2:
1236 state_assert(st,st->state==SITE_RUN || st->state==SITE_RESOLVE ||
1237 st->state==SITE_SENTMSG1 || st->state==SITE_WAIT);
1238 gen=generate_msg2;
1239 break;
1240 case SITE_SENTMSG3:
1241 state_assert(st,st->state==SITE_SENTMSG1);
1242 BUF_FREE(&st->buffer);
1243 gen=generate_msg3;
1244 break;
1245 case SITE_SENTMSG4:
1246 state_assert(st,st->state==SITE_SENTMSG2);
1247 BUF_FREE(&st->buffer);
1248 gen=generate_msg4;
1249 break;
1250 case SITE_SENTMSG5:
1251 state_assert(st,st->state==SITE_SENTMSG3);
1252 BUF_FREE(&st->buffer);
1253 gen=generate_msg5;
1254 break;
1255 case SITE_RUN:
1256 state_assert(st,st->state==SITE_SENTMSG4);
1257 BUF_FREE(&st->buffer);
1258 gen=generate_msg6;
1259 break;
1260 default:
1261 gen=NULL;
4f5e39ec 1262 fatal("enter_new_state(%s): invalid new state",state_name(next));
ff05a229 1263 break;
2fe58dfd 1264 }
2fe58dfd 1265
3b83c932
SE
1266 if (hacky_par_start_failnow()) return False;
1267
1268 r= gen(st) && send_msg(st);
1269
1270 hacky_par_end(&r,
e7f8ec2a 1271 st->setup_retries, st->setup_retry_interval,
3b83c932
SE
1272 send_msg, st);
1273
1274 if (r) {
ff05a229
SE
1275 st->state=next;
1276 if (next==SITE_RUN) {
1277 BUF_FREE(&st->buffer); /* Never reused */
1278 st->timeout=0; /* Never retransmit */
1279 activate_new_key(st);
1280 }
2fe58dfd
SE
1281 return True;
1282 }
ff05a229
SE
1283 slog(st,LOG_ERROR,"error entering state %s",state_name(next));
1284 st->buffer.free=False; /* Unconditionally use the buffer; it may be
1285 in either state, and enter_state_wait() will
1286 do a BUF_FREE() */
2fe58dfd
SE
1287 enter_state_wait(st);
1288 return False;
1289}
1290
ff05a229 1291/* msg7 tells our peer that we're about to forget our key */
fe5e9cc4 1292static bool_t send_msg7(struct site *st, cstring_t reason)
794f2398 1293{
fe5e9cc4 1294 cstring_t transform_err;
794f2398 1295
3d8d8f4e 1296 if (current_valid(st) && st->buffer.free
446353cd 1297 && transport_peers_valid(&st->peers)) {
794f2398 1298 BUF_ALLOC(&st->buffer,"site:MSG7");
3abd18e8 1299 buffer_init(&st->buffer,calculate_max_start_pad());
794f2398
SE
1300 buf_append_uint32(&st->buffer,LABEL_MSG7);
1301 buf_append_string(&st->buffer,reason);
0afd257e
IJ
1302 if (call_transform_forwards(st, st->current.transform,
1303 &st->buffer, &transform_err))
1304 goto free_out;
794f2398 1305 buf_prepend_uint32(&st->buffer,LABEL_MSG0);
58650a70 1306 buf_prepend_uint32(&st->buffer,st->index);
19e9a588 1307 buf_prepend_uint32(&st->buffer,st->current.remote_session_id);
446353cd 1308 transport_xmit(st,&st->peers,&st->buffer,True);
794f2398 1309 BUF_FREE(&st->buffer);
0afd257e 1310 free_out:
794f2398
SE
1311 return True;
1312 }
1313 return False;
1314}
1315
2fe58dfd
SE
1316/* We go into this state if our peer becomes uncommunicative. Similar to
1317 the "stop" state, we forget all session keys for a while, before
1318 re-entering the "run" state. */
1319static void enter_state_wait(struct site *st)
1320{
1321 slog(st,LOG_STATE,"entering state WAIT");
1322 st->timeout=st->now+st->wait_timeout;
1323 st->state=SITE_WAIT;
9d3a4132 1324 set_link_quality(st);
2fe58dfd
SE
1325 BUF_FREE(&st->buffer); /* will have had an outgoing packet in it */
1326 /* XXX Erase keys etc. */
1327}
1328
16f73fa6 1329static inline void site_settimeout(uint64_t timeout, int *timeout_io)
fe5e9cc4
SE
1330{
1331 if (timeout) {
0009e60a
IJ
1332 int64_t offset=timeout-*now;
1333 if (offset<0) offset=0;
fe5e9cc4
SE
1334 if (offset>INT_MAX) offset=INT_MAX;
1335 if (*timeout_io<0 || offset<*timeout_io)
1336 *timeout_io=offset;
1337 }
1338}
1339
2fe58dfd 1340static int site_beforepoll(void *sst, struct pollfd *fds, int *nfds_io,
90a39563 1341 int *timeout_io)
2fe58dfd
SE
1342{
1343 struct site *st=sst;
1344
1345 *nfds_io=0; /* We don't use any file descriptors */
1346 st->now=*now;
1347
1348 /* Work out when our next timeout is. The earlier of 'timeout' or
19e9a588 1349 'current.key_timeout'. A stored value of '0' indicates no timeout
2fe58dfd 1350 active. */
16f73fa6 1351 site_settimeout(st->timeout, timeout_io);
19e9a588 1352 site_settimeout(st->current.key_timeout, timeout_io);
02b0959b 1353 site_settimeout(st->auxiliary_key.key_timeout, timeout_io);
2fe58dfd
SE
1354
1355 return 0; /* success */
1356}
1357
1d388569
IJ
1358static void check_expiry(struct site *st, struct data_key *key,
1359 const char *which)
1360{
1361 if (key->key_timeout && *now>key->key_timeout) {
1362 delete_one_key(st,key,"maximum life exceeded",which,LOG_TIMEOUT_KEY);
1363 }
1364}
1365
2fe58dfd 1366/* NB site_afterpoll will be called before site_beforepoll is ever called */
90a39563 1367static void site_afterpoll(void *sst, struct pollfd *fds, int nfds)
2fe58dfd
SE
1368{
1369 struct site *st=sst;
1370
1371 st->now=*now;
1372 if (st->timeout && *now>st->timeout) {
2fe58dfd 1373 st->timeout=0;
3b83c932
SE
1374 if (st->state>=SITE_SENTMSG1 && st->state<=SITE_SENTMSG5) {
1375 if (!hacky_par_start_failnow())
1376 send_msg(st);
1377 } else if (st->state==SITE_WAIT) {
2fe58dfd
SE
1378 enter_state_run(st);
1379 } else {
1380 slog(st,LOG_ERROR,"site_afterpoll: unexpected timeout, state=%d",
1381 st->state);
1382 }
1383 }
1d388569 1384 check_expiry(st,&st->current,"current key");
02b0959b 1385 check_expiry(st,&st->auxiliary_key,"auxiliary key");
2fe58dfd
SE
1386}
1387
1388/* This function is called by the netlink device to deliver packets
1389 intended for the remote network. The packet is in "raw" wire
1390 format, but is guaranteed to be word-aligned. */
469fd1d9 1391static void site_outgoing(void *sst, struct buffer_if *buf)
2fe58dfd
SE
1392{
1393 struct site *st=sst;
fe5e9cc4 1394 cstring_t transform_err;
2fe58dfd
SE
1395
1396 if (st->state==SITE_STOP) {
1397 BUF_FREE(buf);
1398 return;
1399 }
1400
1401 /* In all other states we consider delivering the packet if we have
1402 a valid key and a valid address to send it to. */
3d8d8f4e 1403 if (current_valid(st) && transport_peers_valid(&st->peers)) {
2fe58dfd 1404 /* Transform it and send it */
70dc107b
SE
1405 if (buf->size>0) {
1406 buf_prepend_uint32(buf,LABEL_MSG9);
0afd257e
IJ
1407 if (call_transform_forwards(st, st->current.transform,
1408 buf, &transform_err))
1409 goto free_out;
70dc107b 1410 buf_prepend_uint32(buf,LABEL_MSG0);
58650a70 1411 buf_prepend_uint32(buf,st->index);
19e9a588 1412 buf_prepend_uint32(buf,st->current.remote_session_id);
446353cd 1413 transport_xmit(st,&st->peers,buf,False);
70dc107b 1414 }
0afd257e 1415 free_out:
2fe58dfd
SE
1416 BUF_FREE(buf);
1417 return;
1418 }
1419
70dc107b 1420 slog(st,LOG_DROP,"discarding outgoing packet of size %d",buf->size);
2fe58dfd 1421 BUF_FREE(buf);
794f2398 1422 initiate_key_setup(st,"outgoing packet");
2fe58dfd
SE
1423}
1424
7e29719e
IJ
1425static bool_t named_for_us(struct site *st, const struct buffer_if *buf_in,
1426 uint32_t type, struct msg *m)
1427 /* For packets which are identified by the local and remote names.
1428 * If it has our name and our peer's name in it it's for us. */
1429{
1430 struct buffer_if buf[1];
1431 buffer_readonly_clone(buf,buf_in);
1432 return unpick_msg(st,type,buf,m)
1433 && name_matches(&m->remote,st->remotename)
1434 && name_matches(&m->local,st->localname);
1435}
1436
2fe58dfd
SE
1437/* This function is called by the communication device to deliver
1438 packets from our peers. */
1439static bool_t site_incoming(void *sst, struct buffer_if *buf,
a15faeb2 1440 const struct comm_addr *source)
2fe58dfd
SE
1441{
1442 struct site *st=sst;
20138876
IJ
1443
1444 if (buf->size < 12) return False;
1445
0a6cbade
IJ
1446 uint32_t dest=get_uint32(buf->start);
1447 uint32_t msgtype=get_uint32(buf->start+8);
7e29719e
IJ
1448 struct msg named_msg;
1449
1450 if (msgtype==LABEL_MSG1) {
1451 if (!named_for_us(st,buf,msgtype,&named_msg))
1452 return False;
1453 /* It's a MSG1 addressed to us. Decide what to do about it. */
1454 dump_packet(st,buf,source,True);
1455 if (st->state==SITE_RUN || st->state==SITE_RESOLVE ||
1456 st->state==SITE_WAIT) {
1457 /* We should definitely process it */
1458 if (process_msg1(st,buf,source,&named_msg)) {
1459 slog(st,LOG_SETUP_INIT,"key setup initiated by peer");
1460 enter_new_state(st,SITE_SENTMSG2);
1461 } else {
1462 slog(st,LOG_ERROR,"failed to process incoming msg1");
1463 }
1464 BUF_FREE(buf);
1465 return True;
1466 } else if (st->state==SITE_SENTMSG1) {
1467 /* We've just sent a message 1! They may have crossed on
1468 the wire. If we have priority then we ignore the
1469 incoming one, otherwise we process it as usual. */
1470 if (st->setup_priority) {
1471 BUF_FREE(buf);
1472 slog(st,LOG_DUMP,"crossed msg1s; we are higher "
1473 "priority => ignore incoming msg1");
1474 return True;
1475 } else {
1476 slog(st,LOG_DUMP,"crossed msg1s; we are lower "
1477 "priority => use incoming msg1");
1478 if (process_msg1(st,buf,source,&named_msg)) {
1479 BUF_FREE(&st->buffer); /* Free our old message 1 */
ff05a229 1480 enter_new_state(st,SITE_SENTMSG2);
2fe58dfd 1481 } else {
7e29719e
IJ
1482 slog(st,LOG_ERROR,"failed to process an incoming "
1483 "crossed msg1 (we have low priority)");
2fe58dfd
SE
1484 }
1485 BUF_FREE(buf);
1486 return True;
2fe58dfd 1487 }
2fe58dfd 1488 }
7e29719e
IJ
1489 /* The message 1 was received at an unexpected stage of the
1490 key setup. XXX POLICY - what do we do? */
1491 slog(st,LOG_UNEXPECTED,"unexpected incoming message 1");
1492 BUF_FREE(buf);
1493 return True;
2fe58dfd 1494 }
58650a70 1495 if (dest==st->index) {
2fe58dfd
SE
1496 /* Explicitly addressed to us */
1497 if (msgtype!=LABEL_MSG0) dump_packet(st,buf,source,True);
1498 switch (msgtype) {
136740e6 1499 case LABEL_NAK:
794f2398
SE
1500 /* If the source is our current peer then initiate a key setup,
1501 because our peer's forgotten the key */
19e9a588 1502 if (get_uint32(buf->start+4)==st->current.remote_session_id) {
794f2398
SE
1503 initiate_key_setup(st,"received a NAK");
1504 } else {
1505 slog(st,LOG_SEC,"bad incoming NAK");
1506 }
1507 break;
2fe58dfd
SE
1508 case LABEL_MSG0:
1509 process_msg0(st,buf,source);
1510 break;
1511 case LABEL_MSG1:
1512 /* Setup packet: should not have been explicitly addressed
1513 to us */
59635212 1514 slog(st,LOG_SEC,"incoming explicitly addressed msg1");
2fe58dfd
SE
1515 break;
1516 case LABEL_MSG2:
1517 /* Setup packet: expected only in state SENTMSG1 */
1518 if (st->state!=SITE_SENTMSG1) {
1519 slog(st,LOG_UNEXPECTED,"unexpected MSG2");
446353cd
IJ
1520 } else if (process_msg2(st,buf,source)) {
1521 transport_setup_msgok(st,source);
ff05a229 1522 enter_new_state(st,SITE_SENTMSG3);
446353cd 1523 } else {
59635212 1524 slog(st,LOG_SEC,"invalid MSG2");
2fe58dfd
SE
1525 }
1526 break;
1527 case LABEL_MSG3:
5b5f297f 1528 case LABEL_MSG3BIS:
2fe58dfd
SE
1529 /* Setup packet: expected only in state SENTMSG2 */
1530 if (st->state!=SITE_SENTMSG2) {
1531 slog(st,LOG_UNEXPECTED,"unexpected MSG3");
5b5f297f 1532 } else if (process_msg3(st,buf,source,msgtype)) {
446353cd 1533 transport_setup_msgok(st,source);
ff05a229 1534 enter_new_state(st,SITE_SENTMSG4);
446353cd 1535 } else {
59635212 1536 slog(st,LOG_SEC,"invalid MSG3");
2fe58dfd
SE
1537 }
1538 break;
1539 case LABEL_MSG4:
1540 /* Setup packet: expected only in state SENTMSG3 */
1541 if (st->state!=SITE_SENTMSG3) {
1542 slog(st,LOG_UNEXPECTED,"unexpected MSG4");
446353cd
IJ
1543 } else if (process_msg4(st,buf,source)) {
1544 transport_setup_msgok(st,source);
ff05a229 1545 enter_new_state(st,SITE_SENTMSG5);
446353cd 1546 } else {
59635212 1547 slog(st,LOG_SEC,"invalid MSG4");
2fe58dfd
SE
1548 }
1549 break;
1550 case LABEL_MSG5:
4efd681a
SE
1551 /* Setup packet: expected only in state SENTMSG4 */
1552 /* (may turn up in state RUN if our return MSG6 was lost
1553 and the new key has already been activated. In that
05f39b4d
IJ
1554 case we discard it. The peer will realise that we
1555 are using the new key when they see our data packets.
1556 Until then the peer's data packets to us get discarded. */
c90cc2a7
IJ
1557 if (st->state==SITE_SENTMSG4) {
1558 if (process_msg5(st,buf,source,st->new_transform)) {
1559 transport_setup_msgok(st,source);
1560 enter_new_state(st,SITE_RUN);
1561 } else {
1562 slog(st,LOG_SEC,"invalid MSG5");
1563 }
1564 } else if (st->state==SITE_RUN) {
19e9a588 1565 if (process_msg5(st,buf,source,st->current.transform)) {
c90cc2a7
IJ
1566 slog(st,LOG_DROP,"got MSG5, retransmitting MSG6");
1567 transport_setup_msgok(st,source);
19e9a588
IJ
1568 create_msg6(st,st->current.transform,
1569 st->current.remote_session_id);
c90cc2a7
IJ
1570 transport_xmit(st,&st->peers,&st->buffer,True);
1571 BUF_FREE(&st->buffer);
1572 } else {
1573 slog(st,LOG_SEC,"invalid MSG5 (in state RUN)");
1574 }
2fe58dfd 1575 } else {
c90cc2a7 1576 slog(st,LOG_UNEXPECTED,"unexpected MSG5");
2fe58dfd
SE
1577 }
1578 break;
1579 case LABEL_MSG6:
1580 /* Setup packet: expected only in state SENTMSG5 */
1581 if (st->state!=SITE_SENTMSG5) {
1582 slog(st,LOG_UNEXPECTED,"unexpected MSG6");
1583 } else if (process_msg6(st,buf,source)) {
1584 BUF_FREE(&st->buffer); /* Free message 5 */
446353cd 1585 transport_setup_msgok(st,source);
2fe58dfd
SE
1586 activate_new_key(st);
1587 } else {
59635212 1588 slog(st,LOG_SEC,"invalid MSG6");
2fe58dfd
SE
1589 }
1590 break;
2fe58dfd 1591 default:
59635212 1592 slog(st,LOG_SEC,"received message of unknown type 0x%08x",
2fe58dfd
SE
1593 msgtype);
1594 break;
1595 }
1596 BUF_FREE(buf);
1597 return True;
1598 }
1599
1600 return False;
1601}
1602
1603static void site_control(void *vst, bool_t run)
1604{
1605 struct site *st=vst;
1606 if (run) enter_state_run(st);
1607 else enter_state_stop(st);
1608}
1609
794f2398
SE
1610static void site_phase_hook(void *sst, uint32_t newphase)
1611{
1612 struct site *st=sst;
1613
1614 /* The program is shutting down; tell our peer */
1615 send_msg7(st,"shutting down");
1616}
1617
2fe58dfd
SE
1618static list_t *site_apply(closure_t *self, struct cloc loc, dict_t *context,
1619 list_t *args)
1620{
58650a70 1621 static uint32_t index_sequence;
2fe58dfd
SE
1622 struct site *st;
1623 item_t *item;
1624 dict_t *dict;
59533c16 1625 int i;
2fe58dfd
SE
1626
1627 st=safe_malloc(sizeof(*st),"site_apply");
1628
1629 st->cl.description="site";
1630 st->cl.type=CL_SITE;
1631 st->cl.apply=NULL;
1632 st->cl.interface=&st->ops;
1633 st->ops.st=st;
1634 st->ops.control=site_control;
1635 st->ops.status=site_status;
1636
1637 /* First parameter must be a dict */
1638 item=list_elem(args,0);
1639 if (!item || item->type!=t_dict)
1640 cfgfatal(loc,"site","parameter must be a dictionary\n");
1641
1642 dict=item->data.dict;
558fa3fb
SE
1643 st->localname=dict_read_string(dict, "local-name", True, "site", loc);
1644 st->remotename=dict_read_string(dict, "name", True, "site", loc);
dba19f84
IJ
1645
1646 st->peer_mobile=dict_read_bool(dict,"mobile",False,"site",loc,False);
1647 bool_t local_mobile=
1648 dict_read_bool(dict,"local-mobile",False,"site",loc,False);
1649
558fa3fb
SE
1650 /* Sanity check (which also allows the 'sites' file to include
1651 site() closures for all sites including our own): refuse to
1652 talk to ourselves */
1653 if (strcmp(st->localname,st->remotename)==0) {
b2a56f7c 1654 Message(M_DEBUG,"site %s: local-name==name -> ignoring this site\n",
baa06aeb 1655 st->localname);
dba19f84
IJ
1656 if (st->peer_mobile != local_mobile)
1657 cfgfatal(loc,"site","site %s's peer-mobile=%d"
1658 " but our local-mobile=%d\n",
1659 st->localname, st->peer_mobile, local_mobile);
1660 free(st);
1661 return NULL;
1662 }
1663 if (st->peer_mobile && local_mobile) {
1664 Message(M_WARNING,"site %s: site is mobile but so are we"
1665 " -> ignoring this site\n", st->remotename);
558fa3fb
SE
1666 free(st);
1667 return NULL;
1668 }
dba19f84 1669
58650a70
RK
1670 assert(index_sequence < 0xffffffffUL);
1671 st->index = ++index_sequence;
09a385fb 1672 st->local_capabilities = 0;
469fd1d9 1673 st->netlink=find_cl_if(dict,"link",CL_NETLINK,True,"site",loc);
59533c16 1674
5b5f297f
IJ
1675#define GET_CLOSURE_LIST(dictkey,things,nthings,CL_TYPE) do{ \
1676 list_t *things##_cfg=dict_lookup(dict,dictkey); \
1677 if (!things##_cfg) \
1678 cfgfatal(loc,"site","closure list \"%s\" not found\n",dictkey); \
1679 st->nthings=list_length(things##_cfg); \
1680 st->things=safe_malloc_ary(sizeof(*st->things),st->nthings,dictkey "s"); \
1681 assert(st->nthings); \
1682 for (i=0; i<st->nthings; i++) { \
1683 item_t *item=list_elem(things##_cfg,i); \
1684 if (item->type!=t_closure) \
1685 cfgfatal(loc,"site","%s is not a closure\n",dictkey); \
1686 closure_t *cl=item->data.closure; \
1687 if (cl->type!=CL_TYPE) \
1688 cfgfatal(loc,"site","%s closure wrong type\n",dictkey); \
1689 st->things[i]=cl->interface; \
1690 } \
1691}while(0)
1692
1693 GET_CLOSURE_LIST("comm",comms,ncomms,CL_COMM);
59533c16 1694
2fe58dfd
SE
1695 st->resolver=find_cl_if(dict,"resolver",CL_RESOLVER,True,"site",loc);
1696 st->log=find_cl_if(dict,"log",CL_LOG,True,"site",loc);
1697 st->random=find_cl_if(dict,"random",CL_RANDOMSRC,True,"site",loc);
1698
2fe58dfd 1699 st->privkey=find_cl_if(dict,"local-key",CL_RSAPRIVKEY,True,"site",loc);
2fe58dfd 1700 st->address=dict_read_string(dict, "address", False, "site", loc);
3454dce4
SE
1701 if (st->address)
1702 st->remoteport=dict_read_number(dict,"port",True,"site",loc,0);
1703 else st->remoteport=0;
2fe58dfd
SE
1704 st->pubkey=find_cl_if(dict,"key",CL_RSAPUBKEY,True,"site",loc);
1705
5b5f297f 1706 GET_CLOSURE_LIST("transform",transforms,ntransforms,CL_TRANSFORM);
2fe58dfd
SE
1707
1708 st->dh=find_cl_if(dict,"dh",CL_DH,True,"site",loc);
1709 st->hash=find_cl_if(dict,"hash",CL_HASH,True,"site",loc);
1710
e57264d6
IJ
1711#define DEFAULT(D) (st->peer_mobile || local_mobile \
1712 ? DEFAULT_MOBILE_##D : DEFAULT_##D)
e7f8ec2a 1713#define CFG_NUMBER(k,D) dict_read_number(dict,(k),False,"site",loc,DEFAULT(D));
c27ca22f 1714
e7f8ec2a
IJ
1715 st->key_lifetime= CFG_NUMBER("key-lifetime", KEY_LIFETIME);
1716 st->setup_retries= CFG_NUMBER("setup-retries", SETUP_RETRIES);
1717 st->setup_retry_interval= CFG_NUMBER("setup-timeout", SETUP_RETRY_INTERVAL);
1718 st->wait_timeout= CFG_NUMBER("wait-time", WAIT_TIME);
1719
446353cd
IJ
1720 st->mobile_peer_expiry= dict_read_number(
1721 dict,"mobile-peer-expiry",False,"site",loc,DEFAULT_MOBILE_PEER_EXPIRY);
1722
1723 st->transport_peers_max= !st->peer_mobile ? 1 : dict_read_number(
1724 dict,"mobile-peers-max",False,"site",loc,DEFAULT_MOBILE_PEERS_MAX);
1725 if (st->transport_peers_max<1 ||
1726 st->transport_peers_max>=MAX_MOBILE_PEERS_MAX) {
1727 cfgfatal(loc,"site","mobile-peers-max must be in range 1.."
1728 STRING(MAX_MOBILE_PEERS_MAX) "\n");
1729 }
1730
e7f8ec2a 1731 if (st->key_lifetime < DEFAULT(KEY_RENEGOTIATE_GAP)*2)
c27ca22f
IJ
1732 st->key_renegotiate_time=st->key_lifetime/2;
1733 else
e7f8ec2a 1734 st->key_renegotiate_time=st->key_lifetime-DEFAULT(KEY_RENEGOTIATE_GAP);
9d3a4132 1735 st->key_renegotiate_time=dict_read_number(
cce0051f 1736 dict,"renegotiate-time",False,"site",loc,st->key_renegotiate_time);
9d3a4132
SE
1737 if (st->key_renegotiate_time > st->key_lifetime) {
1738 cfgfatal(loc,"site",
1739 "renegotiate-time must be less than key-lifetime\n");
1740 }
9d3a4132
SE
1741
1742 st->log_events=string_list_to_word(dict_lookup(dict,"log-events"),
1743 log_event_table,"site");
2fe58dfd 1744
4efd681a
SE
1745 st->tunname=safe_malloc(strlen(st->localname)+strlen(st->remotename)+5,
1746 "site_apply");
1747 sprintf(st->tunname,"%s<->%s",st->localname,st->remotename);
1748
2fe58dfd 1749 /* The information we expect to see in incoming messages of type 1 */
59230b9b
IJ
1750 /* fixme: lots of unchecked overflows here, but the results are only
1751 corrupted packets rather than undefined behaviour */
2fe58dfd
SE
1752 st->setup_priority=(strcmp(st->localname,st->remotename)>0);
1753
1754 buffer_new(&st->buffer,SETUP_BUFFER_LEN);
1755
05f39b4d
IJ
1756 buffer_new(&st->scratch,0);
1757 BUF_ALLOC(&st->scratch,"site:scratch");
1758
2fe58dfd
SE
1759 /* We are interested in poll(), but only for timeouts. We don't have
1760 any fds of our own. */
1761 register_for_poll(st, site_beforepoll, site_afterpoll, 0, "site");
1762 st->timeout=0;
1763
09a385fb 1764 st->remote_capabilities=0;
5b5f297f 1765 st->chosen_transform=0;
19e9a588 1766 st->current.key_timeout=0;
02b0959b 1767 st->auxiliary_key.key_timeout=0;
446353cd
IJ
1768 transport_peers_clear(st,&st->peers);
1769 transport_peers_clear(st,&st->setup_peers);
2fe58dfd
SE
1770 /* XXX mlock these */
1771 st->dhsecret=safe_malloc(st->dh->len,"site:dhsecret");
5b5f297f
IJ
1772 st->sharedsecretlen=st->sharedsecretallocd=0;
1773 st->sharedsecret=0;
1774
5b5f297f
IJ
1775 for (i=0; i<st->ntransforms; i++) {
1776 struct transform_if *ti=st->transforms[i];
1777 uint32_t capbit = 1UL << ti->capab_transformnum;
1778 if (st->local_capabilities & capbit)
1779 slog(st,LOG_ERROR,"transformnum capability bit"
1780 " %d (%#"PRIx32") reused", ti->capab_transformnum, capbit);
1781 st->local_capabilities |= capbit;
59533c16 1782 }
59533c16 1783
2fe58dfd 1784 /* We need to register the remote networks with the netlink device */
3abd18e8 1785 st->netlink->reg(st->netlink->st, site_outgoing, st);
ff05a229 1786
59533c16
IJ
1787 for (i=0; i<st->ncomms; i++)
1788 st->comms[i]->request_notify(st->comms[i]->st, st, site_incoming);
2fe58dfd 1789
fcad4b0b
IJ
1790 st->current.transform=0;
1791 st->auxiliary_key.transform=0;
1792 st->new_transform=0;
bd98cd6b 1793 st->auxiliary_is_new=0;
2fe58dfd
SE
1794
1795 enter_state_stop(st);
1796
794f2398
SE
1797 add_hook(PHASE_SHUTDOWN,site_phase_hook,st);
1798
2fe58dfd
SE
1799 return new_closure(&st->cl);
1800}
1801
2fe58dfd
SE
1802void site_module(dict_t *dict)
1803{
1804 add_closure(dict,"site",site_apply);
1805}
446353cd
IJ
1806
1807
1808/***** TRANSPORT PEERS definitions *****/
1809
1810static void transport_peers_debug(struct site *st, transport_peers *dst,
1811 const char *didwhat,
1812 int nargs, const struct comm_addr *args,
1813 size_t stride) {
1814 int i;
1815 char *argp;
1816
1817 if (!(st->log_events & LOG_PEER_ADDRS))
1818 return; /* an optimisation */
1819
1820 slog(st, LOG_PEER_ADDRS, "peers (%s) %s nargs=%d => npeers=%d",
1821 (dst==&st->peers ? "data" :
1822 dst==&st->setup_peers ? "setup" : "UNKNOWN"),
1823 didwhat, nargs, dst->npeers);
1824
1825 for (i=0, argp=(void*)args;
1826 i<nargs;
1827 i++, (argp+=stride?stride:sizeof(*args))) {
1828 const struct comm_addr *ca=(void*)argp;
1829 slog(st, LOG_PEER_ADDRS, " args: addrs[%d]=%s",
1830 i, ca->comm->addr_to_string(ca->comm->st,ca));
1831 }
1832 for (i=0; i<dst->npeers; i++) {
1833 struct timeval diff;
1834 timersub(tv_now,&dst->peers[i].last,&diff);
1835 const struct comm_addr *ca=&dst->peers[i].addr;
1836 slog(st, LOG_PEER_ADDRS, " peers: addrs[%d]=%s T-%ld.%06ld",
1837 i, ca->comm->addr_to_string(ca->comm->st,ca),
1838 (unsigned long)diff.tv_sec, (unsigned long)diff.tv_usec);
1839 }
1840}
1841
1842static int transport_peer_compar(const void *av, const void *bv) {
1843 const transport_peer *a=av;
1844 const transport_peer *b=bv;
1845 /* put most recent first in the array */
1846 if (timercmp(&a->last, &b->last, <)) return +1;
1847 if (timercmp(&a->last, &b->last, >)) return -11;
1848 return 0;
1849}
1850
1851static void transport_peers_expire(struct site *st, transport_peers *peers) {
1852 /* peers must be sorted first */
1853 int previous_peers=peers->npeers;
1854 struct timeval oldest;
1855 oldest.tv_sec = tv_now->tv_sec - st->mobile_peer_expiry;
1856 oldest.tv_usec = tv_now->tv_usec;
1857 while (peers->npeers>1 &&
1858 timercmp(&peers->peers[peers->npeers-1].last, &oldest, <))
1859 peers->npeers--;
1860 if (peers->npeers != previous_peers)
1861 transport_peers_debug(st,peers,"expire", 0,0,0);
1862}
1863
1864static void transport_record_peer(struct site *st, transport_peers *peers,
1865 const struct comm_addr *addr, const char *m) {
1866 int slot, changed=0;
1867
1868 for (slot=0; slot<peers->npeers; slot++)
1869 if (!memcmp(&peers->peers[slot].addr, addr, sizeof(*addr)))
1870 goto found;
1871
1872 changed=1;
1873 if (peers->npeers==st->transport_peers_max)
1874 slot=st->transport_peers_max;
1875 else
1876 slot=peers->npeers++;
1877
1878 found:
1879 peers->peers[slot].addr=*addr;
1880 peers->peers[slot].last=*tv_now;
1881
1882 if (peers->npeers>1)
1883 qsort(peers->peers, peers->npeers,
1884 sizeof(*peers->peers), transport_peer_compar);
1885
1886 if (changed || peers->npeers!=1)
1887 transport_peers_debug(st,peers,m, 1,addr,0);
1888 transport_peers_expire(st, peers);
1889}
1890
1891static bool_t transport_compute_setupinit_peers(struct site *st,
1892 const struct comm_addr *configured_addr /* 0 if none or not found */) {
1893
1894 if (!configured_addr && !transport_peers_valid(&st->peers))
1895 return False;
1896
1897 slog(st,LOG_SETUP_INIT,
1898 (!configured_addr ? "using only %d old peer address(es)"
1899 : "using configured address, and/or perhaps %d old peer address(es)"),
779837e1 1900 st->peers.npeers);
446353cd
IJ
1901
1902 /* Non-mobile peers havve st->peers.npeers==0 or ==1, since they
1903 * have transport_peers_max==1. The effect is that this code
1904 * always uses the configured address if supplied, or otherwise
1905 * the existing data peer if one exists; this is as desired. */
1906
1907 transport_peers_copy(st,&st->setup_peers,&st->peers);
1908
1909 if (configured_addr)
1910 transport_record_peer(st,&st->setup_peers,configured_addr,"setupinit");
1911
1912 assert(transport_peers_valid(&st->setup_peers));
1913 return True;
1914}
1915
1916static void transport_setup_msgok(struct site *st, const struct comm_addr *a) {
1917 if (st->peer_mobile)
1918 transport_record_peer(st,&st->setup_peers,a,"setupmsg");
1919}
1920static void transport_data_msgok(struct site *st, const struct comm_addr *a) {
1921 if (st->peer_mobile)
1922 transport_record_peer(st,&st->peers,a,"datamsg");
1923}
1924
1925static int transport_peers_valid(transport_peers *peers) {
1926 return peers->npeers;
1927}
1928static void transport_peers_clear(struct site *st, transport_peers *peers) {
1929 peers->npeers= 0;
1930 transport_peers_debug(st,peers,"clear",0,0,0);
1931}
1932static void transport_peers_copy(struct site *st, transport_peers *dst,
1933 const transport_peers *src) {
1934 dst->npeers=src->npeers;
1935 memcpy(dst->peers, src->peers, sizeof(*dst->peers) * dst->npeers);
1936 transport_peers_debug(st,dst,"copy",
a620a048 1937 src->npeers, &src->peers->addr, sizeof(*src->peers));
446353cd
IJ
1938}
1939
1940void transport_xmit(struct site *st, transport_peers *peers,
1941 struct buffer_if *buf, bool_t candebug) {
1942 int slot;
1943 transport_peers_expire(st, peers);
1944 for (slot=0; slot<peers->npeers; slot++) {
1945 transport_peer *peer=&peers->peers[slot];
1946 if (candebug)
1947 dump_packet(st, buf, &peer->addr, False);
1948 peer->addr.comm->sendmsg(peer->addr.comm->st, buf, &peer->addr);
1949 }
1950}
1951
1952/***** END of transport peers declarations *****/