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