chiark / gitweb /
server/admin.c: Remove spurious `ping' in usage message.
[tripe] / server / tripe.h
CommitLineData
410c8acf 1/* -*-c-*-
410c8acf 2 *
3 * Main header file for TrIPE
4 *
5 * (c) 2001 Straylight/Edgeware
6 */
7
e04c2d50 8/*----- Licensing notice --------------------------------------------------*
410c8acf 9 *
10 * This file is part of Trivial IP Encryption (TrIPE).
11 *
11ad66c2
MW
12 * TrIPE is free software: you can redistribute it and/or modify it under
13 * the terms of the GNU General Public License as published by the Free
14 * Software Foundation; either version 3 of the License, or (at your
15 * option) any later version.
e04c2d50 16 *
11ad66c2
MW
17 * TrIPE is distributed in the hope that it will be useful, but WITHOUT
18 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 * for more details.
e04c2d50 21 *
410c8acf 22 * You should have received a copy of the GNU General Public License
11ad66c2 23 * along with TrIPE. If not, see <https://www.gnu.org/licenses/>.
410c8acf 24 */
25
410c8acf 26#ifndef TRIPE_H
27#define TRIPE_H
28
29#ifdef __cplusplus
30 extern "C" {
31#endif
32
33/*----- Header files ------------------------------------------------------*/
34
73189848 35#include "config.h"
36
410c8acf 37#include <assert.h>
38#include <ctype.h>
39#include <errno.h>
b9066fbb 40#include <limits.h>
410c8acf 41#include <signal.h>
42#include <stdarg.h>
43#include <stddef.h>
44#include <stdio.h>
45#include <stdlib.h>
46#include <string.h>
47#include <time.h>
48
49#include <sys/types.h>
50#include <sys/time.h>
51#include <unistd.h>
52#include <fcntl.h>
53#include <sys/stat.h>
388e0319 54#include <sys/wait.h>
410c8acf 55
56#include <sys/socket.h>
57#include <sys/un.h>
58#include <netinet/in.h>
59#include <arpa/inet.h>
60#include <netdb.h>
61
62#include <pwd.h>
63#include <grp.h>
64
971e5689
MW
65#ifdef HAVE_LIBADNS
66# define ADNS_FEATURE_MANYAF
67# include <adns.h>
68#endif
69
410c8acf 70#include <mLib/alloc.h>
71#include <mLib/arena.h>
37941236 72#include <mLib/base64.h>
971e5689
MW
73#ifndef HAVE_LIBADNS
74# include <mLib/bres.h>
75#endif
37d4c59e 76#include <mLib/codec.h>
19dd2531 77#include <mLib/daemonize.h>
410c8acf 78#include <mLib/dstr.h>
79#include <mLib/env.h>
80#include <mLib/fdflags.h>
388e0319 81#include <mLib/fdpass.h>
410c8acf 82#include <mLib/fwatch.h>
c8e02c8a 83#include <mLib/hash.h>
165efde7 84#include <mLib/macros.h>
b9537f3b 85#include <mLib/mdup.h>
410c8acf 86#include <mLib/mdwopt.h>
87#include <mLib/quis.h>
88#include <mLib/report.h>
89#include <mLib/sel.h>
90#include <mLib/selbuf.h>
91#include <mLib/sig.h>
92#include <mLib/str.h>
93#include <mLib/sub.h>
94#include <mLib/trace.h>
0ba8de86 95#include <mLib/tv.h>
19dd2531 96#include <mLib/versioncmp.h>
410c8acf 97
165db1a8 98#include <catacomb/buf.h>
04ed79b8 99#include <catacomb/ct.h>
165db1a8 100
de8edc7f 101#include <catacomb/chacha.h>
e53273ef 102#include <catacomb/gaead.h>
410c8acf 103#include <catacomb/gcipher.h>
104#include <catacomb/gmac.h>
105#include <catacomb/grand.h>
e53273ef 106#include <catacomb/latinpoly.h>
410c8acf 107#include <catacomb/key.h>
108#include <catacomb/paranoia.h>
de8edc7f
MW
109#include <catacomb/poly1305.h>
110#include <catacomb/salsa20.h>
410c8acf 111
410c8acf 112#include <catacomb/noise.h>
113#include <catacomb/rand.h>
410c8acf 114
115#include <catacomb/mp.h>
5b9f3d37 116#include <catacomb/mpmont.h>
410c8acf 117#include <catacomb/mprand.h>
118#include <catacomb/dh.h>
52c03a2a 119#include <catacomb/ec.h>
5b9f3d37 120#include <catacomb/ec-raw.h>
52c03a2a 121#include <catacomb/ec-keys.h>
26936c83
MW
122#include <catacomb/x25519.h>
123#include <catacomb/x448.h>
410c8acf 124
388e0319 125#include "priv.h"
78698994 126#include "protocol.h"
10f681b1 127#include "slip.h"
410c8acf 128#include "util.h"
129
130#undef sun
131
132/*----- Magic numbers -----------------------------------------------------*/
133
410c8acf 134/* --- Trace flags --- */
135
136#define T_TUNNEL 1u
137#define T_PEER 2u
138#define T_PACKET 4u
139#define T_ADMIN 8u
140#define T_CRYPTO 16u
141#define T_KEYSET 32u
142#define T_KEYEXCH 64u
143#define T_KEYMGMT 128u
37941236 144#define T_CHAL 256u
388e0319 145/* T_PRIVSEP in priv.h */
410c8acf 146
388e0319 147#define T_ALL 1023u
410c8acf 148
149/* --- Units --- */
150
151#define SEC(n) (n##u)
152#define MIN(n) (n##u * 60u)
a06d57a3 153#define F_2P32 (65536.0*65536.0)
410c8acf 154#define MEG(n) (n##ul * 1024ul * 1024ul)
155
e9fac70c
MW
156/* --- Timing parameters --- */
157
158#define T_EXP MIN(60) /* Expiry time for a key */
159#define T_REGEN MIN(40) /* Regeneration time for a key */
160
161#define T_VALID SEC(20) /* Challenge validity period */
a06d57a3
MW
162#define T_RETRYMIN SEC(2) /* Minimum retry interval */
163#define T_RETRYMAX MIN(5) /* Maximum retry interval */
164#define T_RETRYGROW (5.0/4.0) /* Retry interval growth factor */
165
166#define T_WOBBLE (1.0/3.0) /* Relative timer randomness */
e9fac70c 167
410c8acf 168/* --- Other things --- */
169
170#define PKBUFSZ 65536
171
832a2ab6 172/*----- Cipher selections -------------------------------------------------*/
173
a93aacce
MW
174typedef struct keyset keyset;
175typedef struct algswitch algswitch;
5b9f3d37 176typedef struct kdata kdata;
c70a7c5c
MW
177typedef struct admin admin;
178
5b9f3d37
MW
179typedef struct dhgrp {
180 const struct dhops *ops;
181 size_t scsz;
182} dhgrp;
183
184typedef struct dhsc dhsc;
185typedef struct dhge dhge;
186
187enum {
188 DHFMT_STD, /* Fixed-width format, suitable for encryption */
189 DHFMT_HASH, /* Deterministic format, suitable for hashing */
190 DHFMT_VAR /* Variable-width-format, mostly a bad idea */
191};
192
ef09dae1
MW
193typedef struct deriveargs {
194 const char *what; /* Operation name (hashed) */
195 unsigned f; /* Flags */
196#define DF_IN 1u /* Make incoming key */
197#define DF_OUT 2u /* Make outgoing key */
198 const gchash *hc; /* Hash class */
199 const octet *k; /* Pointer to contributions */
200 size_t x, y, z; /* Markers in contributions */
201} deriveargs;
202
c70a7c5c
MW
203typedef struct bulkalgs {
204 const struct bulkops *ops;
205} bulkalgs;
206
207typedef struct bulkctx {
208 const struct bulkops *ops;
209} bulkctx;
210
211typedef struct bulkchal {
212 const struct bulkops *ops;
213 size_t tagsz;
214} bulkchal;
215
5b9f3d37
MW
216typedef struct dhops {
217 const char *name;
218
219 int (*ldpriv)(key_file */*kf*/, key */*k*/, key_data */*d*/,
220 kdata */*kd*/, dstr */*t*/, dstr */*e*/);
221 /* Load a private key from @d@, storing the data in @kd@. The key's
f1165777 222 * file and key object are in @kf@ and @k@, mostly in case its
5b9f3d37
MW
223 * attributes are interesting; the key tag is in @t@; errors are
224 * reported by writing tokens to @e@ and returning nonzero.
225 */
226
227 int (*ldpub)(key_file */*kf*/, key */*k*/, key_data */*d*/,
228 kdata */*kd*/, dstr */*t*/, dstr */*e*/);
229 /* Load a public key from @d@, storing the data in @kd@. The key's
f1165777 230 * file and key object are in @kf@ and @k@, mostly in case its
5b9f3d37
MW
231 * attributes are interesting; the key tag is in @t@; errors are
232 * reported by writing tokens to @e@ and returning nonzero.
233 */
234
235 const char *(*checkgrp)(const dhgrp */*g*/);
236 /* Check that the group is valid; return null on success, or an error
237 * string.
238 */
239
240 void (*grpinfo)(const dhgrp */*g*/, admin */*a*/);
241 /* Report on the group to an admin client. */
242
243 T( void (*tracegrp)(const dhgrp */*g*/); )
244 /* Trace a description of the group. */
245
246 int (*samegrpp)(const dhgrp */*g*/, const dhgrp */*gg*/);
247 /* Return nonzero if the two group objects represent the same
248 * group.
249 */
250
251 void (*freegrp)(dhgrp */*g*/);
252 /* Free a group and the resources it holds. */
253
254 dhsc *(*ldsc)(const dhgrp */*g*/, const void */*p*/, size_t /*sz*/);
255 /* Load a scalar from @p@, @sz@ and return it. Return null on
256 * error.
257 */
258
259 int (*stsc)(const dhgrp */*g*/,
260 void */*p*/, size_t /*sz*/, const dhsc */*x*/);
261 /* Store a scalar at @p@, @sz@. Return nonzero on error. */
262
263 dhsc *(*randsc)(const dhgrp */*g*/);
264 /* Return a random scalar. */
265
266 T( const char *(*scstr)(const dhgrp */*g*/, const dhsc */*x*/); )
267 /* Return a human-readable representation of @x@; @buf_t@ may be used
268 * to hold it.
269 */
270
271 void (*freesc)(const dhgrp */*g*/, dhsc */*x*/);
272 /* Free a scalar and the resources it holds. */
273
274 dhge *(*ldge)(const dhgrp */*g*/, buf */*b*/, int /*fmt*/);
275 /* Load a group element from @b@, encoded using format @fmt@. Return
276 * null on error.
277 */
278
279 int (*stge)(const dhgrp */*g*/, buf */*b*/,
280 const dhge */*Y*/, int /*fmt*/);
281 /* Store a group element in @b@, encoded using format @fmt@. Return
282 * nonzero on error.
283 */
284
285 int (*checkge)(const dhgrp */*h*/, const dhge */*Y*/);
286 /* Check a group element for validity. Return zero if everything
287 * checks out; nonzero on failure.
288 */
289
290 int (*eq)(const dhgrp */*g*/, const dhge */*Y*/, const dhge */*Z*/);
291 /* Return nonzero if @Y@ and @Z@ are equal. */
292
293 dhge *(*mul)(const dhgrp */*g*/, const dhsc */*x*/, const dhge */*Y*/);
294 /* Multiply a group element by a scalar, resulting in a shared-secret
295 * group element. If @y@ is null, then multiply the well-known
296 * generator.
297 */
298
299 T( const char *(*gestr)(const dhgrp */*g*/, const dhge */*Y*/); )
300 /* Return a human-readable representation of @Y@; @buf_t@ may be used
301 * to hold it.
302 */
303
304 void (*freege)(const dhgrp */*g*/, dhge */*Y*/);
305 /* Free a group element and the resources it holds. */
306
307} dhops;
308
fddd7fb7 309typedef struct bulkops {
a93aacce 310 const char *name;
c70a7c5c
MW
311
312 bulkalgs *(*getalgs)(const algswitch */*asw*/, dstr */*e*/,
313 key_file */*kf*/, key */*k*/);
314 /* Determine algorithms to use and return a @bulkalgs@ object
315 * representing the decision. On error, write tokens to @e@ and
316 * return null.
317 */
318
319 T( void (*tracealgs)(const bulkalgs */*a*/); )
320 /* Write trace information about the algorithm selection. */
321
322 int (*checkalgs)(bulkalgs */*a*/, const algswitch */*asw*/, dstr */*e*/);
323 /* Check that the algorithms in @a@ and @asw@ are acceptable. On
324 * error, write tokens to @e@ and return @-1@; otherwise return zero.
325 */
326
327 int (*samealgsp)(const bulkalgs */*a*/, const bulkalgs */*aa*/);
328 /* If @a@ and @aa@ represent the same algorithm selection, return
329 * nonzero; if not, return zero.
330 */
331
332 void (*alginfo)(const bulkalgs */*a*/, admin */*adm*/);
333 /* Report on the algorithm selection to an admin client: call
334 * @a_info@ with appropriate key-value pairs.
335 */
336
337 size_t (*overhead)(const bulkalgs */*a*/);
338 /* Return the per-packet overhead of the bulk transform, in bytes. */
339
340 size_t (*expsz)(const bulkalgs */*a*/);
341 /* Return the total size limit for the bulk transform, in bytes,
342 * after which the keys must no longer be used.
343 */
344
ef09dae1 345 bulkctx *(*genkeys)(const bulkalgs */*a*/, const deriveargs */*a*/);
c70a7c5c 346 /* Generate session keys and construct and return an appropriate
ef09dae1
MW
347 * context for using them. The offsets @a->x@, @a->y@ and @a->z@
348 * separate the key material into three parts. Between @a->k@ and
349 * @a->k + a->x@ is `my' contribution to the key material; between
350 * @a->k + a->x@ and @a->k + a->y@ is `your' contribution; and
351 * between @a->k + a->y@ and @a->k + a->z@ is a shared value we made
352 * together. These are used to construct (up to) two collections of
353 * symmetric keys: one for outgoing messages, the other for incoming
354 * messages. If @a->x == 0@ (or @a->y == a->x@) then my (or your)
355 * contribution is omitted.
c70a7c5c
MW
356 */
357
358 bulkchal *(*genchal)(const bulkalgs */*a*/);
359 /* Construct and return a challenge issuing and verification
360 * context with a fresh random key.
361 */
362
363 void (*freealgs)(bulkalgs */*a*/);
364 /* Release an algorithm selection object. (Associated bulk
365 * encryption contexts and challenge contexts may still exist and
366 * must remain valid.)
367 */
368
369 int (*encrypt)(bulkctx */*bc*/, unsigned /*ty*/,
370 buf */*b*/, buf */*bb*/, uint32 /*seq*/);
371 /* Encrypt the packet in @b@, with type @ty@ (which doesn't need
372 * encoding separately) and sequence number @seq@ (which must be
373 * recoverable by @decrypt@), and write the result to @bb@. On
374 * error, return a @KSERR_...@ code and/or break the output buffer.
375 */
376
377 int (*decrypt)(bulkctx */*bc*/, unsigned /*ty*/,
a93aacce 378 buf */*b*/, buf */*bb*/, uint32 */*seq*/);
c70a7c5c
MW
379 /* Decrypt the packet in @b@, with type @ty@, writing the result to
380 * @bb@ and storing the incoming (claimed) sequence number in @seq@.
381 * On error, return a @KSERR_...@ code.
382 */
383
384 void (*freectx)(bulkctx */*a*/);
385 /* Release a bulk encryption context and the resources it holds. */
386
387 int (*chaltag)(bulkchal */*bc*/, const void */*m*/, size_t /*msz*/,
3deadf73
MW
388 uint32 /*seq*/, void */*t*/);
389 /* Calculate a tag for the challenge in @m@, @msz@, with the sequence
390 * number @seq@, and write it to @t@. Return @-1@ on error, zero on
391 * success.
c70a7c5c
MW
392 */
393
394 int (*chalvrf)(bulkchal */*bc*/, const void */*m*/, size_t /*msz*/,
3deadf73
MW
395 uint32 /*seq*/, const void */*t*/);
396 /* Check the tag @t@ on @m@, @msz@ and @seq@: return zero if the tag
397 * is OK, nonzero if it's bad.
c70a7c5c
MW
398 */
399
400 void (*freechal)(bulkchal */*bc*/);
401 /* Release a challenge context and the resources it holds. */
a93aacce 402
c70a7c5c 403} bulkops;
a93aacce
MW
404
405struct algswitch {
c70a7c5c 406 const gchash *h; size_t hashsz; /* Hash function */
a93aacce 407 const gccipher *mgf; /* Mask-generation function */
c70a7c5c 408 bulkalgs *bulk; /* Bulk crypto algorithms */
a93aacce 409};
832a2ab6 410
5b9f3d37 411struct kdata {
799e58b9
MW
412 unsigned ref; /* Reference counter */
413 struct knode *kn; /* Pointer to cache entry */
fb6a9f13 414 uint32 id; /* The underlying key's id */
799e58b9 415 char *tag; /* Full tag name of the key */
5b9f3d37
MW
416 dhgrp *grp; /* The group we work in */
417 dhsc *k; /* The private key (or null) */
418 dhge *K; /* The public key */
799e58b9
MW
419 time_t t_exp; /* Expiry time of the key */
420 algswitch algs; /* Collection of algorithms */
5b9f3d37 421};
799e58b9
MW
422
423typedef struct knode {
424 sym_base _b; /* Symbol table intrusion */
425 unsigned f; /* Various flags */
426#define KNF_BROKEN 1u /* Don't use this key any more */
427 struct keyhalf *kh; /* Pointer to the home keyhalf */
428 kdata *kd; /* Pointer to the key data */
429} knode;
832a2ab6 430
b5c45da1 431#define MAXHASHSZ 64 /* Largest possible hash size */
832a2ab6 432
b5c45da1 433#define HASH_STRING(h, s) GH_HASH((h), (s), sizeof(s))
410c8acf 434
5b9f3d37 435extern const dhops dhtab[];
fddd7fb7 436extern const bulkops bulktab[];
a93aacce 437
aeeb5611 438/*----- Data structures ---------------------------------------------------*/
410c8acf 439
5d06f63e
MW
440/* --- The address-family table --- */
441
442#define ADDRFAM(_) \
47828bd9
MW
443 _(INET, want_ipv4) \
444 _(INET6, want_ipv6)
5d06f63e
MW
445
446enum {
a8211197 447#define ENUM(af, qf) AFIX_##af,
5d06f63e
MW
448 ADDRFAM(ENUM)
449#undef ENUM
450 NADDRFAM
451};
452
453extern const struct addrfam {
454 int af;
455 const char *name;
a8211197
MW
456#ifdef HAVE_LIBADNS
457 adns_queryflags qf;
458#endif
5d06f63e
MW
459} aftab[NADDRFAM];
460
410c8acf 461/* --- Socket addresses --- *
462 *
463 * A magic union of supported socket addresses.
464 */
465
466typedef union addr {
467 struct sockaddr sa;
468 struct sockaddr_in sin;
47828bd9 469 struct sockaddr_in6 sin6;
410c8acf 470} addr;
471
c8e02c8a
MW
472/* --- Mapping keyed on addresses --- */
473
474typedef struct addrmap {
475 hash_table t;
476 size_t load;
477} addrmap;
478
479typedef struct addrmap_base {
480 hash_base b;
481 addr a;
482} addrmap_base;
483
37941236 484/* --- Sequence number checking --- */
485
486typedef struct seqwin {
487 uint32 seq; /* First acceptable input sequence */
488 uint32 win; /* Window of acceptable numbers */
489} seqwin;
490
491#define SEQ_WINSZ 32 /* Bits in sequence number window */
492
410c8acf 493/* --- A symmetric keyset --- *
494 *
495 * A keyset contains a set of symmetric keys for encrypting and decrypting
496 * packets. Keysets are stored in a list, sorted in reverse order of
497 * creation, so that the most recent keyset (the one most likely to be used)
498 * is first.
499 *
500 * Each keyset has a time limit and a data limit. The keyset is destroyed
501 * when either it has existed for too long, or it has been used to encrypt
502 * too much data. New key exchanges are triggered when keys are close to
503 * expiry.
504 */
505
c70a7c5c
MW
506enum { DIR_IN, DIR_OUT, NDIR };
507
a93aacce 508struct keyset {
410c8acf 509 struct keyset *next; /* Next active keyset in the list */
832a2ab6 510 unsigned ref; /* Reference count for keyset */
9466fafa 511 struct peer *p; /* Pointer to peer structure */
410c8acf 512 time_t t_exp; /* Expiry time for this keyset */
383a9d71 513 unsigned long sz_exp, sz_regen; /* Data limits for the keyset */
832a2ab6 514 T( unsigned seq; ) /* Sequence number for tracing */
515 unsigned f; /* Various useful flags */
c70a7c5c 516 bulkctx *bulk; /* Bulk crypto transform */
1484d822 517 uint32 oseq; /* Outbound sequence number */
37941236 518 seqwin iseq; /* Inbound sequence number */
a93aacce 519};
410c8acf 520
832a2ab6 521#define KSF_LISTEN 1u /* Don't encrypt packets yet */
522#define KSF_LINK 2u /* Key is in a linked list */
523
a50f9a0e
MW
524#define KSERR_REGEN -1 /* Regenerate keys */
525#define KSERR_NOKEYS -2 /* No keys left */
526#define KSERR_DECRYPT -3 /* Unable to decrypt message */
12a26b8b
MW
527#define KSERR_SEQ -4 /* Incorrect sequence number */
528#define KSERR_MALFORMED -5 /* Input ciphertext is broken */
a50f9a0e 529
410c8acf 530/* --- Key exchange --- *
531 *
532 * TrIPE uses the Wrestlers Protocol for its key exchange. The Wrestlers
533 * Protocol has a number of desirable features (e.g., perfect forward
534 * secrecy, and zero-knowledge authentication) which make it attractive for
535 * use in TrIPE. The Wrestlers Protocol was designed by Mark Wooding and
536 * Clive Jones.
537 */
538
a06d57a3
MW
539typedef struct retry {
540 double t; /* Current retry time */
541} retry;
542
832a2ab6 543#define KX_NCHAL 16u
832a2ab6 544
545typedef struct kxchal {
546 struct keyexch *kx; /* Pointer back to key exchange */
5b9f3d37
MW
547 dhge *C; /* Responder's challenge */
548 dhge *R; /* My reply to the challenge */
832a2ab6 549 keyset *ks; /* Pointer to temporary keyset */
550 unsigned f; /* Various useful flags */
551 sel_timer t; /* Response timer for challenge */
a06d57a3 552 retry rs; /* Retry state */
b5c45da1 553 octet hc[MAXHASHSZ]; /* Hash of his challenge */
de7bd20b 554 octet ck[MAXHASHSZ]; /* His magical check value */
b5c45da1 555 octet hswrq_in[MAXHASHSZ]; /* Inbound switch request message */
556 octet hswok_in[MAXHASHSZ]; /* Inbound switch confirmation */
557 octet hswrq_out[MAXHASHSZ]; /* Outbound switch request message */
558 octet hswok_out[MAXHASHSZ]; /* Outbound switch confirmation */
832a2ab6 559} kxchal;
560
410c8acf 561typedef struct keyexch {
410c8acf 562 struct peer *p; /* Pointer back to the peer */
35c8b547
MW
563 kdata *kpriv; /* Private key and related info */
564 kdata *kpub; /* Peer's public key */
832a2ab6 565 keyset **ks; /* Peer's list of keysets */
410c8acf 566 unsigned f; /* Various useful flags */
832a2ab6 567 unsigned s; /* Current state in exchange */
410c8acf 568 sel_timer t; /* Timer for next exchange */
a06d57a3 569 retry rs; /* Retry state */
5b9f3d37
MW
570 dhsc *a; /* My temporary secret */
571 dhge *C; /* My challenge */
572 dhge *RX; /* The expected response */
832a2ab6 573 unsigned nr; /* Number of extant responses */
410c8acf 574 time_t t_valid; /* When this exchange goes bad */
b5c45da1 575 octet hc[MAXHASHSZ]; /* Hash of my challenge */
832a2ab6 576 kxchal *r[KX_NCHAL]; /* Array of challenges */
410c8acf 577} keyexch;
578
579#define KXF_TIMER 1u /* Waiting for a timer to go off */
00e64b67 580#define KXF_DEAD 2u /* The key-exchanger isn't up */
581#define KXF_PUBKEY 4u /* Key exchanger has a public key */
010e6f63 582#define KXF_CORK 8u /* Don't send anything yet */
832a2ab6 583
584enum {
585 KXS_DEAD, /* Uninitialized state (magical) */
586 KXS_CHAL, /* Main answer-challenges state */
587 KXS_COMMIT, /* Committed: send switch request */
588 KXS_SWITCH /* Switched: send confirmation */
589};
410c8acf 590
591/* --- Tunnel structure --- *
592 *
593 * Used to maintain system-specific information about the tunnel interface.
594 */
595
42da2a58 596typedef struct tunnel tunnel;
597struct peer;
110d564e 598
42da2a58 599typedef struct tunnel_ops {
600 const char *name; /* Name of this tunnel driver */
388e0319
MW
601 unsigned flags; /* Various interesting flags */
602#define TUNF_PRIVOPEN 1u /* Need helper to open file */
9d966eb7 603 int (*init)(void); /* Initializes the system */
eb5f3fea 604 tunnel *(*create)(struct peer */*p*/, int /*fd*/, char **/*ifn*/);
72917fe7
MW
605 /* Initializes a new tunnel */
606 void (*setifname)(tunnel */*t*/, const char */*ifn*/);
607 /* Notifies ifname change */
42da2a58 608 void (*inject)(tunnel */*t*/, buf */*b*/); /* Sends packet through if */
609 void (*destroy)(tunnel */*t*/); /* Destroys a tunnel */
610} tunnel_ops;
b9066fbb 611
42da2a58 612#ifndef TUN_INTERNALS
613struct tunnel { const tunnel_ops *ops; };
410c8acf 614#endif
410c8acf 615
24898e7e
MW
616typedef struct tun_iter {
617 const struct tunnel_node *next;
618} tun_iter;
619
832a2ab6 620/* --- Peer statistics --- *
621 *
622 * Contains various interesting and not-so-interesting statistics about a
623 * peer. This is updated by various parts of the code. The format of the
624 * structure isn't considered private, and @p_stats@ returns a pointer to the
625 * statistics block for a given peer.
626 */
627
628typedef struct stats {
629 unsigned long sz_in, sz_out; /* Size of all data in and out */
630 unsigned long sz_kxin, sz_kxout; /* Size of key exchange messages */
631 unsigned long sz_ipin, sz_ipout; /* Size of encapsulated IP packets */
3cdc3f3a 632 time_t t_start, t_last, t_kx; /* Time peer created, last pk, kx */
832a2ab6 633 unsigned long n_reject; /* Number of rejected packets */
634 unsigned long n_in, n_out; /* Number of packets in and out */
635 unsigned long n_kxin, n_kxout; /* Number of key exchange packets */
636 unsigned long n_ipin, n_ipout; /* Number of encrypted packets */
637} stats;
638
410c8acf 639/* --- Peer structure --- *
640 *
641 * The main structure which glues everything else together.
642 */
643
0ba8de86 644typedef struct peerspec {
645 char *name; /* Peer's name */
fe2a5dcf 646 char *privtag; /* Private key tag */
48b84569 647 char *tag; /* Public key tag */
8362ac1c 648 char *knock; /* Knock string, or null */
0ba8de86 649 const tunnel_ops *tops; /* Tunnel operations */
650 unsigned long t_ka; /* Keep alive interval */
651 addr sa; /* Socket address to speak to */
8743c776 652 unsigned f; /* Flags for the peer */
6411163d
MW
653#define PSF_KXMASK 255u /* Key-exchange flags to set */
654#define PSF_MOBILE 256u /* Address may change rapidly */
067aa5f0 655#define PSF_EPHEM 512u /* Association is ephemeral */
0ba8de86 656} peerspec;
657
c8e02c8a
MW
658typedef struct peer_byname {
659 sym_base _b;
660 struct peer *p;
661} peer_byname;
662
663typedef struct peer_byaddr {
664 addrmap_base _b;
665 struct peer *p;
666} peer_byaddr;
667
410c8acf 668typedef struct peer {
c8e02c8a
MW
669 peer_byname *byname; /* Lookup-by-name block */
670 peer_byaddr *byaddr; /* Lookup-by-address block */
0ba8de86 671 struct ping *pings; /* Pings we're waiting for */
672 peerspec spec; /* Specifications for this peer */
5d06f63e 673 int afix; /* Index of address family */
42da2a58 674 tunnel *t; /* Tunnel for local packets */
64cf2223 675 char *ifname; /* Interface name for tunnel */
410c8acf 676 keyset *ks; /* List head for keysets */
410c8acf 677 buf b; /* Buffer for sending packets */
832a2ab6 678 stats st; /* Statistics */
679 keyexch kx; /* Key exchange protocol block */
0ba8de86 680 sel_timer tka; /* Timer for keepalives */
410c8acf 681} peer;
682
c8e02c8a
MW
683typedef struct peer_iter { sym_iter i; } peer_iter;
684
063c9648
MW
685typedef struct udpsocket {
686 sel_file sf; /* Selector for the socket */
8d4c29d2 687 unsigned port; /* Chosen port number */
063c9648
MW
688} udpsocket;
689
0ba8de86 690typedef struct ping {
691 struct ping *next, *prev; /* Links to next and previous */
692 peer *p; /* Peer so we can free it */
693 unsigned msg; /* Kind of response expected */
694 uint32 id; /* Id so we can recognize response */
695 octet magic[32]; /* Some random data */
696 sel_timer t; /* Timeout for ping */
697 void (*func)(int /*rc*/, void */*arg*/); /* Function to call when done */
698 void *arg; /* Argument for callback */
699} ping;
700
701enum {
702 PING_NONOTIFY = -1,
703 PING_OK = 0,
704 PING_TIMEOUT,
705 PING_PEERDIED,
706 PING_MAX
707};
708
410c8acf 709/* --- Admin structure --- */
710
fd3cf232 711#define OBUFSZ 16384u
712
713typedef struct obuf {
714 struct obuf *next; /* Next buffer in list */
715 char *p_in, *p_out; /* Pointers into the buffer */
716 char buf[OBUFSZ]; /* The actual buffer */
717} obuf;
718
de014da6 719typedef struct oqueue {
720 obuf *hd, *tl; /* Head and tail pointers */
721} oqueue;
722
723struct admin;
724
725typedef struct admin_bgop {
726 struct admin_bgop *next, *prev; /* Links to next and previous */
727 struct admin *a; /* Owner job */
728 char *tag; /* Tag string for messages */
729 void (*cancel)(struct admin_bgop *); /* Destructor function */
730} admin_bgop;
731
37941236 732typedef struct admin_resop {
de014da6 733 admin_bgop bg; /* Background operation header */
37941236 734 char *addr; /* Hostname to be resolved */
971e5689
MW
735#ifdef HAVE_LIBADNS
736 adns_query q;
737#else
de014da6 738 bres_client r; /* Background resolver task */
971e5689 739#endif
de014da6 740 sel_timer t; /* Timer for resolver */
37941236 741 addr sa; /* Socket address */
8d513103 742 unsigned port; /* Port number chosen */
37941236 743 size_t sasz; /* Socket address size */
744 void (*func)(struct admin_resop *, int); /* Handler */
745} admin_resop;
746
747enum { ARES_OK, ARES_FAIL };
748
749typedef struct admin_addop {
750 admin_resop r; /* Name resolution header */
751 peerspec peer; /* Peer pending creation */
de014da6 752} admin_addop;
753
754typedef struct admin_pingop {
755 admin_bgop bg; /* Background operation header */
756 ping ping; /* Ping pending response */
757 struct timeval pingtime; /* Time last ping was sent */
be6a1b7a
MW
758} admin_pingop;
759
760typedef struct admin_service {
761 sym_base _b; /* Hash table base structure */
762 char *version; /* The provided version */
763 struct admin *prov; /* Which client provides me */
764 struct admin_service *next, *prev; /* Client's list of services */
765} admin_service;
de014da6 766
5d46c0f8
MW
767typedef struct admin_svcop {
768 admin_bgop bg; /* Background operation header */
769 struct admin *prov; /* Client servicing this job */
cc921fba 770 unsigned index; /* This job's index */
5d46c0f8
MW
771 struct admin_svcop *next, *prev; /* Links for provider's jobs */
772} admin_svcop;
773
774typedef struct admin_jobentry {
775 unsigned short seq; /* Zero if unused */
776 union {
777 admin_svcop *op; /* Operation, if slot in use, ... */
778 uint32 next; /* ... or index of next free slot */
779 } u;
780} admin_jobentry;
781
782typedef struct admin_jobtable {
783 uint32 n, sz; /* Used slots and table size */
784 admin_svcop *active; /* List of active jobs */
785 uint32 free; /* Index of first free slot */
786 admin_jobentry *v; /* And the big array of entries */
787} admin_jobtable;
788
c70a7c5c 789struct admin {
410c8acf 790 struct admin *next, *prev; /* Links to next and previous */
fd3cf232 791 unsigned f; /* Various useful flags */
060ca767 792 unsigned ref; /* Reference counter */
410c8acf 793#ifndef NTRACE
794 unsigned seq; /* Sequence number for tracing */
795#endif
de014da6 796 oqueue out; /* Output buffer list */
797 oqueue delay; /* Delayed output buffer list */
798 admin_bgop *bg; /* Backgrounded operations */
be6a1b7a 799 admin_service *svcs; /* Which services I provide */
5d46c0f8 800 admin_jobtable j; /* Table of outstanding jobs */
fd3cf232 801 selbuf b; /* Line buffer for commands */
802 sel_file w; /* Selector for write buffering */
c70a7c5c 803};
410c8acf 804
fd3cf232 805#define AF_DEAD 1u /* Destroy this admin block */
060ca767 806#define AF_CLOSE 2u /* Client closed connection */
3cdc3f3a 807#define AF_NOTE 4u /* Catch notifications */
de014da6 808#define AF_WARN 8u /* Catch warning messages */
3cdc3f3a 809#ifndef NTRACE
220ba5e4 810# define AF_TRACE 16u /* Catch tracing */
3cdc3f3a 811#endif
46dde080 812#define AF_FOREGROUND 32u /* Quit server when client closes */
3cdc3f3a 813
814#ifndef NTRACE
815# define AF_ALLMSGS (AF_NOTE | AF_TRACE | AF_WARN)
816#else
817# define AF_ALLMSGS (AF_NOTE | AF_WARN)
818#endif
fd3cf232 819
410c8acf 820/*----- Global variables --------------------------------------------------*/
821
822extern sel_state sel; /* Global I/O event state */
a4b808b0 823extern octet buf_i[PKBUFSZ], buf_o[PKBUFSZ], buf_t[PKBUFSZ], buf_u[PKBUFSZ];
063c9648 824extern udpsocket udpsock[NADDRFAM]; /* The master UDP sockets */
799e58b9 825extern kdata *master; /* Default private key */
cd2d678e 826extern char *tag_priv; /* Default private key tag */
410c8acf 827
828#ifndef NTRACE
829extern const trace_opt tr_opts[]; /* Trace options array */
830extern unsigned tr_flags; /* Trace options flags */
831#endif
832
8d0c7a83 833/*----- Other macros ------------------------------------------------------*/
834
36b9f99a
MW
835#define QUICKRAND \
836 do { rand_quick(RAND_GLOBAL); noise_timer(RAND_GLOBAL); } while (0)
8d0c7a83 837
410c8acf 838/*----- Key management ----------------------------------------------------*/
839
799e58b9
MW
840/* --- @km_init@ --- *
841 *
842 * Arguments: @const char *privkr@ = private keyring file
843 * @const char *pubkr@ = public keyring file
844 * @const char *ptag@ = default private-key tag
845 *
9d966eb7 846 * Returns: Zero on success, @-1@ on failure.
799e58b9
MW
847 *
848 * Use: Initializes the key-management machinery, loading the
849 * keyrings and so on.
850 */
851
9d966eb7
MW
852extern int km_init(const char */*privkr*/, const char */*pubkr*/,
853 const char */*ptag*/);
799e58b9 854
de014da6 855/* --- @km_reload@ --- *
410c8acf 856 *
857 * Arguments: ---
858 *
859 * Returns: Zero if OK, nonzero to force reloading of keys.
860 *
de014da6 861 * Use: Checks the keyrings to see if they need reloading.
410c8acf 862 */
863
de014da6 864extern int km_reload(void);
410c8acf 865
b50ba1bd
MW
866/* --- @km_clear@ --- *
867 *
868 * Arguments: ---
869 *
870 * Returns: ---
871 *
872 * Use: Forget the currently loaded keyrings. The @master@ key will
873 * be cleared, but other keys already loaded will continue to
874 * exist until their reference count drops to zero. Call
875 * @km_init@ to make everything work again.
876 */
877
878extern void km_clear(void);
879
799e58b9
MW
880/* --- @km_findpub@, @km_findpriv@ --- *
881 *
882 * Arguments: @const char *tag@ = key tag to load
883 *
884 * Returns: Pointer to the kdata object if successful, or null on error.
885 *
886 * Use: Fetches a public or private key from the keyring.
887 */
888
889extern kdata *km_findpub(const char */*tag*/);
890extern kdata *km_findpriv(const char */*tag*/);
891
fb6a9f13
MW
892/* --- @km_findpubbyid@, @km_findprivbyid@ --- *
893 *
894 * Arguments: @uint32 id@ = key id to load
895 *
896 * Returns: Pointer to the kdata object if successful, or null on error.
897 *
898 * Use: Fetches a public or private key from the keyring given its
899 * numeric id.
900 */
901
902extern kdata *km_findpubbyid(uint32 /*id*/);
903extern kdata *km_findprivbyid(uint32 /*id*/);
904
799e58b9
MW
905/* --- @km_samealgsp@ --- *
906 *
907 * Arguments: @const kdata *kdx, *kdy@ = two key data objects
410c8acf 908 *
799e58b9
MW
909 * Returns: Nonzero if their two algorithm selections are the same.
910 *
911 * Use: Checks sameness of algorithm selections: used to ensure that
912 * peers are using sensible algorithms.
913 */
914
915extern int km_samealgsp(const kdata */*kdx*/, const kdata */*kdy*/);
916
917/* --- @km_ref@ --- *
410c8acf 918 *
799e58b9 919 * Arguments: @kdata *kd@ = pointer to the kdata object
410c8acf 920 *
921 * Returns: ---
922 *
799e58b9 923 * Use: Claim a new reference to a kdata object.
410c8acf 924 */
925
799e58b9 926extern void km_ref(kdata */*kd*/);
410c8acf 927
799e58b9 928/* --- @km_unref@ --- *
410c8acf 929 *
799e58b9 930 * Arguments: @kdata *kd@ = pointer to the kdata object
410c8acf 931 *
799e58b9 932 * Returns: ---
410c8acf 933 *
799e58b9 934 * Use: Releases a reference to a kdata object.
410c8acf 935 */
936
799e58b9
MW
937extern void km_unref(kdata */*kd*/);
938
939/* --- @km_tag@ --- *
940 *
941 * Arguments: @kdata *kd@ - pointer to the kdata object
942 *
943 * Returns: A pointer to the short tag by which the kdata was loaded.
410c8acf 944 */
945
799e58b9 946extern const char *km_tag(kdata */*kd*/);
410c8acf 947
948/*----- Key exchange ------------------------------------------------------*/
949
950/* --- @kx_start@ --- *
951 *
952 * Arguments: @keyexch *kx@ = pointer to key exchange context
de014da6 953 * @int forcep@ = nonzero to ignore the quiet timer
410c8acf 954 *
955 * Returns: ---
956 *
957 * Use: Stimulates a key exchange. If a key exchage is in progress,
958 * a new challenge is sent (unless the quiet timer forbids
959 * this); if no exchange is in progress, one is commenced.
960 */
961
de014da6 962extern void kx_start(keyexch */*kx*/, int /*forcep*/);
410c8acf 963
832a2ab6 964/* --- @kx_message@ --- *
410c8acf 965 *
966 * Arguments: @keyexch *kx@ = pointer to key exchange context
f6994bd0 967 * @const addr *a@ = sender's IP address and port
832a2ab6 968 * @unsigned msg@ = the message code
969 * @buf *b@ = pointer to buffer containing the packet
410c8acf 970 *
f6994bd0 971 * Returns: Nonzero if the sender's address was unknown.
410c8acf 972 *
832a2ab6 973 * Use: Reads a packet containing key exchange messages and handles
974 * it.
410c8acf 975 */
976
f6994bd0
MW
977extern int kx_message(keyexch */*kx*/, const addr */*a*/,
978 unsigned /*msg*/, buf */*b*/);
410c8acf 979
980/* --- @kx_free@ --- *
981 *
982 * Arguments: @keyexch *kx@ = pointer to key exchange context
983 *
984 * Returns: ---
985 *
986 * Use: Frees everything in a key exchange context.
987 */
988
989extern void kx_free(keyexch */*kx*/);
990
991/* --- @kx_newkeys@ --- *
992 *
993 * Arguments: @keyexch *kx@ = pointer to key exchange context
994 *
995 * Returns: ---
996 *
997 * Use: Informs the key exchange module that its keys may have
998 * changed. If fetching the new keys fails, the peer will be
999 * destroyed, we log messages and struggle along with the old
1000 * keys.
1001 */
1002
1003extern void kx_newkeys(keyexch */*kx*/);
1004
0510f262 1005/* --- @kx_setup@ --- *
410c8acf 1006 *
1007 * Arguments: @keyexch *kx@ = pointer to key exchange context
1008 * @peer *p@ = pointer to peer context
1009 * @keyset **ks@ = pointer to keyset list
010e6f63 1010 * @unsigned f@ = various useful flags
410c8acf 1011 *
1012 * Returns: Zero if OK, nonzero if it failed.
1013 *
1014 * Use: Initializes a key exchange module. The module currently
1015 * contains no keys, and will attempt to initiate a key
1016 * exchange.
1017 */
1018
0510f262
MW
1019extern int kx_setup(keyexch */*kx*/, peer */*p*/,
1020 keyset **/*ks*/, unsigned /*f*/);
410c8acf 1021
8362ac1c
MW
1022/* --- @kx_init@ --- *
1023 *
1024 * Arguments: ---
1025 *
1026 * Returns: ---
1027 *
1028 * Use: Initializes the key-exchange logic.
1029 */
1030
1031extern void kx_init(void);
1032
410c8acf 1033/*----- Keysets and symmetric cryptography --------------------------------*/
1034
832a2ab6 1035/* --- @ks_drop@ --- *
1036 *
1037 * Arguments: @keyset *ks@ = pointer to a keyset
1038 *
1039 * Returns: ---
1040 *
1041 * Use: Decrements a keyset's reference counter. If the counter hits
1042 * zero, the keyset is freed.
1043 */
1044
1045extern void ks_drop(keyset */*ks*/);
1046
1047/* --- @ks_gen@ --- *
1048 *
ef09dae1 1049 * Arguments: @deriveargs *a@ = key derivation parameters (modified)
9466fafa 1050 * @peer *p@ = pointer to peer information
832a2ab6 1051 *
1052 * Returns: A pointer to the new keyset.
1053 *
ef09dae1
MW
1054 * Use: Derives a new keyset from the given key material. This will
1055 * set the @what@, @f@, and @hc@ members in @*a@; other members
1056 * must be filled in by the caller.
832a2ab6 1057 *
1058 * The new key is marked so that it won't be selected for output
1059 * by @ksl_encrypt@. You can still encrypt data with it by
1060 * calling @ks_encrypt@ directly.
1061 */
1062
ef09dae1 1063extern keyset *ks_gen(deriveargs */*a*/, peer */*p*/);
832a2ab6 1064
832a2ab6 1065/* --- @ks_activate@ --- *
1066 *
1067 * Arguments: @keyset *ks@ = pointer to a keyset
1068 *
1069 * Returns: ---
1070 *
1071 * Use: Activates a keyset, so that it can be used for encrypting
1072 * outgoing messages.
1073 */
1074
1075extern void ks_activate(keyset */*ks*/);
1076
1077/* --- @ks_encrypt@ --- *
1078 *
1079 * Arguments: @keyset *ks@ = pointer to a keyset
7ed14135 1080 * @unsigned ty@ = message type
832a2ab6 1081 * @buf *b@ = pointer to input buffer
1082 * @buf *bb@ = pointer to output buffer
1083 *
a50f9a0e
MW
1084 * Returns: Zero if successful; @KSERR_REGEN@ if we should negotiate a
1085 * new key; @KSERR_NOKEYS@ if the key is not usable. Also
1086 * returns zero if there was insufficient buffer (but the output
1087 * buffer is broken in this case).
832a2ab6 1088 *
1089 * Use: Encrypts a block of data using the key. Note that the `key
1090 * ought to be replaced' notification is only ever given once
1091 * for each key. Also note that this call forces a keyset to be
1092 * used even if it's marked as not for data output.
a93aacce
MW
1093 *
1094 * The encryption transform is permitted to corrupt @buf_u@ for
1095 * its own purposes. Neither the source nor destination should
1096 * be within @buf_u@; and callers mustn't expect anything stored
1097 * in @buf_u@ to still
832a2ab6 1098 */
1099
7ed14135 1100extern int ks_encrypt(keyset */*ks*/, unsigned /*ty*/,
1101 buf */*b*/, buf */*bb*/);
832a2ab6 1102
1103/* --- @ks_decrypt@ --- *
1104 *
1105 * Arguments: @keyset *ks@ = pointer to a keyset
7ed14135 1106 * @unsigned ty@ = expected type code
832a2ab6 1107 * @buf *b@ = pointer to an input buffer
1108 * @buf *bb@ = pointer to an output buffer
1109 *
a50f9a0e
MW
1110 * Returns: Zero on success; @KSERR_DECRYPT@ on failure. Also returns
1111 * zero if there was insufficient buffer (but the output buffer
1112 * is broken in this case).
832a2ab6 1113 *
1114 * Use: Attempts to decrypt a message using a given key. Note that
1115 * requesting decryption with a key directly won't clear a
1116 * marking that it's not for encryption.
a93aacce
MW
1117 *
1118 * The decryption transform is permitted to corrupt @buf_u@ for
1119 * its own purposes. Neither the source nor destination should
1120 * be within @buf_u@; and callers mustn't expect anything stored
1121 * in @buf_u@ to still
832a2ab6 1122 */
1123
7ed14135 1124extern int ks_decrypt(keyset */*ks*/, unsigned /*ty*/,
1125 buf */*b*/, buf */*bb*/);
832a2ab6 1126
1127/* --- @ksl_free@ --- *
410c8acf 1128 *
1129 * Arguments: @keyset **ksroot@ = pointer to keyset list head
1130 *
1131 * Returns: ---
1132 *
832a2ab6 1133 * Use: Frees (releases references to) all of the keys in a keyset.
410c8acf 1134 */
1135
832a2ab6 1136extern void ksl_free(keyset **/*ksroot*/);
410c8acf 1137
832a2ab6 1138/* --- @ksl_link@ --- *
410c8acf 1139 *
1140 * Arguments: @keyset **ksroot@ = pointer to keyset list head
832a2ab6 1141 * @keyset *ks@ = pointer to a keyset
410c8acf 1142 *
1143 * Returns: ---
1144 *
832a2ab6 1145 * Use: Links a keyset into a list. A keyset can only be on one list
1146 * at a time. Bad things happen otherwise.
410c8acf 1147 */
1148
832a2ab6 1149extern void ksl_link(keyset **/*ksroot*/, keyset */*ks*/);
410c8acf 1150
832a2ab6 1151/* --- @ksl_prune@ --- *
410c8acf 1152 *
1153 * Arguments: @keyset **ksroot@ = pointer to keyset list head
410c8acf 1154 *
832a2ab6 1155 * Returns: ---
410c8acf 1156 *
832a2ab6 1157 * Use: Prunes the keyset list by removing keys which mustn't be used
1158 * any more.
410c8acf 1159 */
1160
832a2ab6 1161extern void ksl_prune(keyset **/*ksroot*/);
410c8acf 1162
832a2ab6 1163/* --- @ksl_encrypt@ --- *
410c8acf 1164 *
1165 * Arguments: @keyset **ksroot@ = pointer to keyset list head
7ed14135 1166 * @unsigned ty@ = message type
410c8acf 1167 * @buf *b@ = pointer to input buffer
1168 * @buf *bb@ = pointer to output buffer
1169 *
a50f9a0e
MW
1170 * Returns: Zero if successful; @KSERR_REGEN@ if it's time to negotiate a
1171 * new key; @KSERR_NOKEYS@ if there are no suitable keys
1172 * available. Also returns zero if there was insufficient
1173 * buffer space (but the output buffer is broken in this case).
410c8acf 1174 *
1175 * Use: Encrypts a packet.
1176 */
1177
7ed14135 1178extern int ksl_encrypt(keyset **/*ksroot*/, unsigned /*ty*/,
1179 buf */*b*/, buf */*bb*/);
410c8acf 1180
832a2ab6 1181/* --- @ksl_decrypt@ --- *
410c8acf 1182 *
1183 * Arguments: @keyset **ksroot@ = pointer to keyset list head
7ed14135 1184 * @unsigned ty@ = expected type code
410c8acf 1185 * @buf *b@ = pointer to input buffer
1186 * @buf *bb@ = pointer to output buffer
1187 *
a50f9a0e
MW
1188 * Returns: Zero on success; @KSERR_DECRYPT@ on failure. Also returns
1189 * zero if there was insufficient buffer (but the output buffer
1190 * is broken in this case).
410c8acf 1191 *
1192 * Use: Decrypts a packet.
1193 */
1194
7ed14135 1195extern int ksl_decrypt(keyset **/*ksroot*/, unsigned /*ty*/,
1196 buf */*b*/, buf */*bb*/);
410c8acf 1197
37941236 1198/*----- Challenges --------------------------------------------------------*/
1199
1200/* --- @c_new@ --- *
1201 *
3deadf73
MW
1202 * Arguments: @const void *m@ = pointer to associated message, or null
1203 * @size_t msz@ = length of associated message
1204 * @buf *b@ = where to put the challenge
37941236 1205 *
1206 * Returns: Zero if OK, nonzero on error.
1207 *
1208 * Use: Issues a new challenge.
1209 */
1210
3deadf73 1211extern int c_new(const void */*m*/, size_t /*msz*/, buf */*b*/);
37941236 1212
1213/* --- @c_check@ --- *
1214 *
3deadf73
MW
1215 * Arguments: @const void *m@ = pointer to associated message, or null
1216 * @size_t msz@ = length of associated message
1217 * @buf *b@ = where to find the challenge
37941236 1218 *
1219 * Returns: Zero if OK, nonzero if it didn't work.
1220 *
1221 * Use: Checks a challenge. On failure, the buffer is broken.
1222 */
1223
3deadf73 1224extern int c_check(const void */*m*/, size_t /*msz*/, buf */*b*/);
37941236 1225
410c8acf 1226/*----- Administration interface ------------------------------------------*/
1227
f43df819
MW
1228#define A_END ((char *)0)
1229
7f73baaf
MW
1230/* --- @a_vformat@ --- *
1231 *
1232 * Arguments: @dstr *d@ = where to leave the formatted message
1233 * @const char *fmt@ = pointer to format string
b730d38c 1234 * @va_list *ap@ = arguments in list
7f73baaf
MW
1235 *
1236 * Returns: ---
1237 *
1238 * Use: Main message token formatting driver. The arguments are
1239 * interleaved formatting tokens and their parameters, finally
1240 * terminated by an entry @A_END@.
1241 *
1242 * Tokens recognized:
1243 *
1244 * * "*..." ... -- pretokenized @dstr_putf@-like string
1245 *
1246 * * "?ADDR" SOCKADDR -- a socket address, to be converted
1247 *
1248 * * "?B64" BUFFER SIZE -- binary data to be base64-encoded
1249 *
1250 * * "?TOKENS" VECTOR -- null-terminated vector of tokens
1251 *
1252 * * "?PEER" PEER -- peer's name
1253 *
e4b47618
MW
1254 * * "?ERR" CODE -- system error code
1255 *
1256 * * "?ERRNO" -- system error code from @errno@
7f73baaf
MW
1257 *
1258 * * "[!]..." ... -- @dstr_putf@-like string as single token
1259 */
1260
b730d38c 1261extern void a_vformat(dstr */*d*/, const char */*fmt*/, va_list */*ap*/);
7f73baaf 1262
f241e36c
MW
1263/* --- @a_format@ --- *
1264 *
1265 * Arguments: @dstr *d@ = where to leave the formatted message
1266 * @const char *fmt@ = pointer to format string
1267 *
1268 * Returns: ---
1269 *
1270 * Use: Writes a tokenized message into a string, for later
1271 * presentation.
1272 */
1273
ddb384f1 1274extern void EXECL_LIKE(0) a_format(dstr */*d*/, const char */*fmt*/, ...);
f241e36c 1275
fe182f61
MW
1276/* --- @a_info@ --- *
1277 *
1278 * Arguments: @admin *a@ = connection
1279 * @const char *fmt@ = format string
1280 * @...@ = other arguments
1281 *
1282 * Returns: ---
1283 *
1284 * Use: Report information to an admin client.
1285 */
1286
1287extern void EXECL_LIKE(0) a_info(admin */*a*/, const char */*fmt*/, ...);
1288
410c8acf 1289/* --- @a_warn@ --- *
1290 *
1291 * Arguments: @const char *fmt@ = pointer to format string
1292 * @...@ = other arguments
1293 *
1294 * Returns: ---
1295 *
1296 * Use: Informs all admin connections of a warning.
1297 */
1298
ddb384f1 1299extern void EXECL_LIKE(0) a_warn(const char */*fmt*/, ...);
410c8acf 1300
3cdc3f3a 1301/* --- @a_notify@ --- *
1302 *
1303 * Arguments: @const char *fmt@ = pointer to format string
1304 * @...@ = other arguments
1305 *
1306 * Returns: ---
1307 *
1308 * Use: Sends a notification to interested admin connections.
1309 */
1310
ddb384f1 1311extern void EXECL_LIKE(0) a_notify(const char */*fmt*/, ...);
3cdc3f3a 1312
410c8acf 1313/* --- @a_create@ --- *
1314 *
1315 * Arguments: @int fd_in, fd_out@ = file descriptors to use
3cdc3f3a 1316 * @unsigned f@ = initial flags to set
410c8acf 1317 *
1318 * Returns: ---
1319 *
f88b41d6 1320 * Use: Creates a new admin connection. It's safe to call this
7737eb87
MW
1321 * before @a_init@ -- and, indeed, this makes sense if you also
1322 * call @a_switcherr@ to report initialization errors through
1323 * the administration machinery.
410c8acf 1324 */
1325
3cdc3f3a 1326extern void a_create(int /*fd_in*/, int /*fd_out*/, unsigned /*f*/);
410c8acf 1327
c511e1f9
MW
1328/* --- @a_preselect@ --- *
1329 *
1330 * Arguments: ---
1331 *
1332 * Returns: ---
1333 *
1334 * Use: Informs the admin module that we're about to select again,
1335 * and that it should do cleanup things it has delayed until a
1336 * `safe' time.
1337 */
1338
1339extern void a_preselect(void);
1340
410c8acf 1341/* --- @a_daemon@ --- *
1342 *
1343 * Arguments: ---
1344 *
1345 * Returns: ---
1346 *
1347 * Use: Informs the admin module that it's a daemon.
1348 */
1349
1350extern void a_daemon(void);
1351
7737eb87
MW
1352/* --- @a_listen@ --- *
1353 *
1354 * Arguments: @const char *name@ = socket name to create
1355 * @uid_t u@ = user to own the socket
1356 * @gid_t g@ = group to own the socket
1357 * @mode_t m@ = permissions to set on the socket
1358 *
9d966eb7 1359 * Returns: Zero on success, @-1@ on failure.
7737eb87
MW
1360 *
1361 * Use: Creates the admin listening socket.
1362 */
1363
9d966eb7
MW
1364extern int a_listen(const char */*sock*/,
1365 uid_t /*u*/, gid_t /*g*/, mode_t /*m*/);
7737eb87 1366
11586be2
MW
1367/* --- @a_unlisten@ --- *
1368 *
1369 * Arguments: ---
1370 *
1371 * Returns: ---
1372 *
1373 * Use: Stops listening to the administration socket and removes it.
1374 */
1375
1376extern void a_unlisten(void);
1377
7737eb87
MW
1378/* --- @a_switcherr@ --- *
1379 *
1380 * Arguments: ---
1381 *
1382 * Returns: ---
1383 *
1384 * Use: Arrange to report warnings, trace messages, etc. to
1385 * administration clients rather than the standard-error stream.
1386 *
1387 * Obviously this makes no sense unless there is at least one
1388 * client established. Calling @a_listen@ won't help with this,
1389 * because the earliest a new client can connect is during the
1390 * first select-loop iteration, which is too late: some initial
1391 * client must have been added manually using @a_create@.
1392 */
1393
1394extern void a_switcherr(void);
1395
1396/* --- @a_signals@ --- *
1397 *
1398 * Arguments: ---
1399 *
1400 * Returns: ---
1401 *
1402 * Use: Establishes handlers for the obvious signals.
1403 */
1404
1405extern void a_signals(void);
1406
410c8acf 1407/* --- @a_init@ --- *
1408 *
1409 * Arguments: @const char *sock@ = socket name to create
aa2405e8
MW
1410 * @uid_t u@ = user to own the socket
1411 * @gid_t g@ = group to own the socket
a9279e37 1412 * @mode_t m@ = permissions to set on the socket
410c8acf 1413 *
9d966eb7 1414 * Returns: Zero on success, @-1@ on failure.
410c8acf 1415 *
1416 * Use: Creates the admin listening socket.
1417 */
1418
9d966eb7 1419extern int a_init(void);
410c8acf 1420
c8e02c8a
MW
1421/*----- Mapping with addresses as keys ------------------------------------*/
1422
1423/* --- @am_create@ --- *
1424 *
1425 * Arguments: @addrmap *m@ = pointer to map
1426 *
1427 * Returns: ---
1428 *
1429 * Use: Create an address map, properly set up.
1430 */
1431
1432extern void am_create(addrmap */*m*/);
1433
1434/* --- @am_destroy@ --- *
1435 *
1436 * Arguments: @addrmap *m@ = pointer to map
1437 *
1438 * Returns: ---
1439 *
1440 * Use: Destroy an address map, throwing away all the entries.
1441 */
1442
1443extern void am_destroy(addrmap */*m*/);
1444
1445/* --- @am_find@ --- *
1446 *
1447 * Arguments: @addrmap *m@ = pointer to map
1448 * @const addr *a@ = address to look up
1449 * @size_t sz@ = size of block to allocate
1450 * @unsigned *f@ = where to store flags
1451 *
1452 * Returns: Pointer to found item, or null.
1453 *
1454 * Use: Finds a record with the given IP address, set @*f@ nonzero
1455 * and returns it. If @sz@ is zero, and no match was found,
1456 * return null; otherwise allocate a new block of @sz@ bytes,
1457 * clear @*f@ to zero and return the block pointer.
1458 */
1459
1460extern void *am_find(addrmap */*m*/, const addr */*a*/,
1461 size_t /*sz*/, unsigned */*f*/);
1462
1463/* --- @am_remove@ --- *
1464 *
1465 * Arguments: @addrmap *m@ = pointer to map
1466 * @void *i@ = pointer to the item
1467 *
1468 * Returns: ---
1469 *
1470 * Use: Removes an item from the map.
1471 */
1472
1473extern void am_remove(addrmap */*m*/, void */*i*/);
1474
388e0319
MW
1475/*----- Privilege separation ----------------------------------------------*/
1476
1477/* --- @ps_trace@ --- *
1478 *
1479 * Arguments: @unsigned mask@ = trace mask to check
1480 * @const char *fmt@ = message format
1481 * @...@ = values for placeholders
1482 *
1483 * Returns: ---
1484 *
1485 * Use: Writes a trace message.
1486 */
1487
ddb384f1
MW
1488T( extern void PRINTF_LIKE(2, 3)
1489 ps_trace(unsigned /*mask*/, const char */*fmt*/, ...); )
388e0319
MW
1490
1491/* --- @ps_warn@ --- *
1492 *
1493 * Arguments: @const char *fmt@ = message format
1494 * @...@ = values for placeholders
1495 *
1496 * Returns: ---
1497 *
1498 * Use: Writes a warning message.
1499 */
1500
ddb384f1 1501extern void PRINTF_LIKE(1, 2) ps_warn(const char */*fmt*/, ...);
388e0319
MW
1502
1503/* --- @ps_tunfd@ --- *
1504 *
1505 * Arguments: @const tunnel_ops *tops@ = pointer to tunnel operations
1506 * @char **ifn@ = where to put the interface name
1507 *
1508 * Returns: The file descriptor, or @-1@ on error.
1509 *
1510 * Use: Fetches a file descriptor for a tunnel driver.
1511 */
1512
1513extern int ps_tunfd(const tunnel_ops */*tops*/, char **/*ifn*/);
1514
1515/* --- @ps_split@ --- *
1516 *
1517 * Arguments: @int detachp@ = whether to detach the child from its terminal
1518 *
9d966eb7 1519 * Returns: Zero on success, @-1@ on failure.
388e0319
MW
1520 *
1521 * Use: Separates off the privileged tunnel-opening service from the
1522 * rest of the server.
1523 */
1524
9d966eb7 1525extern int ps_split(int /*detachp*/);
388e0319
MW
1526
1527/* --- @ps_quit@ --- *
1528 *
1529 * Arguments: ---
1530 *
1531 * Returns: ---
1532 *
1533 * Use: Detaches from the helper process.
1534 */
1535
1536extern void ps_quit(void);
1537
410c8acf 1538/*----- Peer management ---------------------------------------------------*/
1539
23bbe601
MW
1540/* --- @p_updateaddr@ --- *
1541 *
1542 * Arguments: @peer *p@ = pointer to peer block
1543 * @const addr *a@ = address to associate with this peer
1544 *
1545 * Returns: Zero if the address was changed; @+1@ if it was already
1546 * right.
1547 *
1548 * Use: Updates our idea of @p@'s address.
1549 */
1550
1551extern int p_updateaddr(peer */*p*/, const addr */*a*/);
1552
410c8acf 1553/* --- @p_txstart@ --- *
1554 *
1555 * Arguments: @peer *p@ = pointer to peer block
1556 * @unsigned msg@ = message type code
1557 *
1558 * Returns: A pointer to a buffer to write to.
1559 *
1560 * Use: Starts sending to a peer. Only one send can happen at a
1561 * time.
1562 */
1563
1564extern buf *p_txstart(peer */*p*/, unsigned /*msg*/);
1565
8362ac1c
MW
1566/* --- @p_txaddr@ --- *
1567 *
1568 * Arguments: @const addr *a@ = recipient address
1569 * @const void *p@ = pointer to packet to send
1570 * @size_t sz@ = length of packet
1571 *
1572 * Returns: Zero if successful, nonzero on error.
1573 *
1574 * Use: Sends a packet to an address which (possibly) isn't a current
1575 * peer.
1576 */
1577
1578extern int p_txaddr(const addr */*a*/, const void */*p*/, size_t /*sz*/);
1579
410c8acf 1580/* --- @p_txend@ --- *
1581 *
1582 * Arguments: @peer *p@ = pointer to peer block
1583 *
1584 * Returns: ---
1585 *
1586 * Use: Sends a packet to the peer.
1587 */
1588
1589extern void p_txend(peer */*p*/);
1590
0ba8de86 1591/* --- @p_pingsend@ --- *
1592 *
1593 * Arguments: @peer *p@ = destination peer
1594 * @ping *pg@ = structure to fill in
1595 * @unsigned type@ = message type
1596 * @unsigned long timeout@ = how long to wait before giving up
1597 * @void (*func)(int, void *)@ = callback function
1598 * @void *arg@ = argument for callback
1599 *
1600 * Returns: Zero if successful, nonzero if it failed.
1601 *
1602 * Use: Sends a ping to a peer. Call @func@ with a nonzero argument
1603 * if we get an answer within the timeout, or zero if no answer.
1604 */
1605
1606extern int p_pingsend(peer */*p*/, ping */*pg*/, unsigned /*type*/,
1607 unsigned long /*timeout*/,
1608 void (*/*func*/)(int, void *), void */*arg*/);
1609
1610/* --- @p_pingdone@ --- *
1611 *
1612 * Arguments: @ping *p@ = ping structure
1613 * @int rc@ = return code to pass on
1614 *
1615 * Returns: ---
1616 *
1617 * Use: Disposes of a ping structure, maybe sending a notification.
1618 */
1619
1620extern void p_pingdone(ping */*p*/, int /*rc*/);
1621
37941236 1622/* --- @p_greet@ --- *
1623 *
1624 * Arguments: @peer *p@ = peer to send to
1625 * @const void *c@ = pointer to challenge
1626 * @size_t sz@ = size of challenge
1627 *
1628 * Returns: ---
1629 *
1630 * Use: Sends a greeting packet.
1631 */
1632
1633extern void p_greet(peer */*p*/, const void */*c*/, size_t /*sz*/);
1634
410c8acf 1635/* --- @p_tun@ --- *
1636 *
1637 * Arguments: @peer *p@ = pointer to peer block
1638 * @buf *b@ = buffer containing incoming packet
1639 *
1640 * Returns: ---
1641 *
1642 * Use: Handles a packet which needs to be sent to a peer.
1643 */
1644
1645extern void p_tun(peer */*p*/, buf */*b*/);
1646
de014da6 1647/* --- @p_keyreload@ --- *
1648 *
1649 * Arguments: ---
1650 *
1651 * Returns: ---
1652 *
1653 * Use: Forces a check of the daemon's keyring files.
1654 */
1655
1656extern void p_keyreload(void);
1657
410c8acf 1658/* --- @p_interval@ --- *
1659 *
1660 * Arguments: ---
1661 *
1662 * Returns: ---
1663 *
1664 * Use: Called periodically to do tidying.
1665 */
1666
1667extern void p_interval(void);
1668
832a2ab6 1669/* --- @p_stats@ --- *
1670 *
1671 * Arguments: @peer *p@ = pointer to a peer block
1672 *
1673 * Returns: A pointer to the peer's statistics.
1674 */
1675
1676extern stats *p_stats(peer */*p*/);
1677
410c8acf 1678/* --- @p_ifname@ --- *
1679 *
1680 * Arguments: @peer *p@ = pointer to a peer block
1681 *
1682 * Returns: A pointer to the peer's interface name.
1683 */
1684
1685extern const char *p_ifname(peer */*p*/);
1686
64cf2223
MW
1687/* --- @p_setifname@ --- *
1688 *
1689 * Arguments: @peer *p@ = pointer to a peer block
1690 * @const char *name@ = pointer to the new name
1691 *
1692 * Returns: ---
1693 *
1694 * Use: Changes the name held for a peer's interface.
1695 */
1696
1697extern void p_setifname(peer */*p*/, const char */*name*/);
1698
410c8acf 1699/* --- @p_addr@ --- *
1700 *
1701 * Arguments: @peer *p@ = pointer to a peer block
1702 *
1703 * Returns: A pointer to the peer's address.
1704 */
1705
1706extern const addr *p_addr(peer */*p*/);
1707
7737eb87 1708/* --- @p_bind@ --- *
410c8acf 1709 *
89640f3f 1710 * Arguments: @struct addrinfo *ailist@ = addresses to bind to
410c8acf 1711 *
9d966eb7 1712 * Returns: Zero on success, @-1@ on failure.
410c8acf 1713 *
7737eb87
MW
1714 * Use: Binds to the main UDP sockets.
1715 */
1716
9d966eb7 1717extern int p_bind(struct addrinfo */*ailist*/);
7737eb87 1718
bf302d90
MW
1719/* --- @p_unbind@ --- *
1720 *
1721 * Arguments: ---
1722 *
1723 * Returns: ---
1724 *
1725 * Use: Unbinds the UDP sockets. There must not be any active peers,
1726 * and none can be created until the sockets are rebound.
1727 */
1728
1729extern void p_unbind(void);
1730
7737eb87
MW
1731/* --- @p_init@ --- *
1732 *
1733 * Arguments: ---
1734 *
1735 * Returns: ---
1736 *
1737 * Use: Initializes the peer system.
410c8acf 1738 */
1739
7737eb87 1740extern void p_init(void);
410c8acf 1741
24898e7e
MW
1742/* --- @p_addtun@ --- *
1743 *
1744 * Arguments: @const tunnel_ops *tops@ = tunnel ops to add
1745 *
9d966eb7 1746 * Returns: Zero on success, @-1@ on failure.
24898e7e 1747 *
9d966eb7
MW
1748 * Use: Adds a tunnel class to the list of known classes, if it
1749 * initializes properly. If there is no current default tunnel,
1750 * then this one is made the default.
24898e7e
MW
1751 *
1752 * Does nothing if the tunnel class is already known. So adding
1753 * a bunch of tunnels takes quadratic time, but there will be
1754 * too few to care about.
1755 */
1756
9d966eb7 1757extern int p_addtun(const tunnel_ops */*tops*/);
24898e7e
MW
1758
1759/* --- @p_setdflttun@ --- *
1760 *
1761 * Arguments: @const tunnel_ops *tops@ = tunnel ops to set
1762 *
1763 * Returns: ---
1764 *
1765 * Use: Sets the default tunnel. It must already be registered. The
1766 * old default is forgotten.
1767 */
1768
1769extern void p_setdflttun(const tunnel_ops */*tops*/);
1770
1771/* --- @p_dflttun@ --- *
1772 *
1773 * Arguments: ---
1774 *
1775 * Returns: A pointer to the current default tunnel operations, or null
1776 * if no tunnels are defined.
1777 */
1778
1779extern const tunnel_ops *p_dflttun(void);
1780
1781/* --- @p_findtun@ --- *
1782 *
1783 * Arguments: @const char *name@ = tunnel name
1784 *
1785 * Returns: Pointer to the tunnel operations, or null.
1786 *
1787 * Use: Finds the operations for a named tunnel class.
1788 */
1789
1790extern const tunnel_ops *p_findtun(const char */*name*/);
1791
1792/* --- @p_mktuniter@ --- *
1793 *
1794 * Arguments: @tuniter *i@ = pointer to iterator to initialize
1795 *
1796 * Returns: ---
1797 *
1798 * Use: Initializes a tunnel iterator.
1799 */
1800
1801extern void p_mktuniter(tun_iter */*i*/);
1802
1803/* --- @p_nexttun@ --- *
1804 *
1805 * Arguments: @tuniter *i@ = pointer to iterator
1806 *
1807 * Returns: Pointer to the next tunnel's operations, or null.
1808 */
1809
1810extern const tunnel_ops *p_nexttun(tun_iter */*i*/);
1811
1812/* --- @FOREACH_TUN@ --- *
1813 *
1814 * Arguments: @tops@ = name to bind to each tunnel
1815 * @stuff@ = thing to do for each item
1816 *
1817 * Use: Does something for each known tunnel class.
1818 */
1819
1820#define FOREACH_TUN(tops, stuff) do { \
1821 tun_iter i_; \
1822 const tunnel_ops *tops; \
1823 for (p_mktuniter(&i_); (tops = p_nexttun(&i_)) != 0; ) stuff; \
1824} while (0)
1825
410c8acf 1826/* --- @p_create@ --- *
1827 *
0ba8de86 1828 * Arguments: @peerspec *spec@ = information about this peer
410c8acf 1829 *
1830 * Returns: Pointer to the peer block, or null if it failed.
1831 *
1832 * Use: Creates a new named peer block. No peer is actually attached
1833 * by this point.
1834 */
1835
0ba8de86 1836extern peer *p_create(peerspec */*spec*/);
410c8acf 1837
1838/* --- @p_name@ --- *
1839 *
1840 * Arguments: @peer *p@ = pointer to a peer block
1841 *
1842 * Returns: A pointer to the peer's name.
060ca767 1843 *
1844 * Use: Equivalent to @p_spec(p)->name@.
410c8acf 1845 */
1846
1847extern const char *p_name(peer */*p*/);
1848
48b84569
MW
1849/* --- @p_tag@ --- *
1850 *
1851 * Arguments: @peer *p@ = pointer to a peer block
1852 *
1853 * Returns: A pointer to the peer's public key tag.
1854 */
1855
1856extern const char *p_tag(peer */*p*/);
1857
fe2a5dcf
MW
1858/* --- @p_privtag@ --- *
1859 *
1860 * Arguments: @peer *p@ = pointer to a peer block
1861 *
1862 * Returns: A pointer to the peer's private key tag.
1863 */
1864
1865extern const char *p_privtag(peer */*p*/);
1866
060ca767 1867/* --- @p_spec@ --- *
1868 *
1869 * Arguments: @peer *p@ = pointer to a peer block
1870 *
1871 * Returns: Pointer to the peer's specification
1872 */
1873
1874extern const peerspec *p_spec(peer */*p*/);
1875
c8e02c8a
MW
1876/* --- @p_findbyaddr@ --- *
1877 *
1878 * Arguments: @const addr *a@ = address to look up
1879 *
1880 * Returns: Pointer to the peer block, or null if not found.
1881 *
1882 * Use: Finds a peer by address.
1883 */
1884
1885extern peer *p_findbyaddr(const addr */*a*/);
1886
410c8acf 1887/* --- @p_find@ --- *
1888 *
1889 * Arguments: @const char *name@ = name to look up
1890 *
1891 * Returns: Pointer to the peer block, or null if not found.
1892 *
1893 * Use: Finds a peer by name.
1894 */
1895
1896extern peer *p_find(const char */*name*/);
1897
1898/* --- @p_destroy@ --- *
1899 *
1900 * Arguments: @peer *p@ = pointer to a peer
067aa5f0 1901 * @int bye@ = say goodbye to the peer?
410c8acf 1902 *
1903 * Returns: ---
1904 *
1905 * Use: Destroys a peer.
1906 */
1907
067aa5f0 1908extern void p_destroy(peer */*p*/, int /*bye*/);
410c8acf 1909
78e45b53
MW
1910/* --- @p_destroyall@ --- *
1911 *
1912 * Arguments: ---
1913 *
1914 * Returns: ---
1915 *
1916 * Use: Destroys all of the peers, saying goodbye.
1917 */
1918
1919extern void p_destroyall(void);
1920
c8e02c8a
MW
1921/* --- @FOREACH_PEER@ --- *
1922 *
1923 * Arguments: @p@ = name to bind to each peer
1924 * @stuff@ = thing to do for each item
1925 *
1926 * Use: Does something for each current peer.
1927 */
1928
1929#define FOREACH_PEER(p, stuff) do { \
1930 peer_iter i_; \
1931 peer *p; \
46401b81 1932 for (p_mkiter(&i_); (p = p_next(&i_)) != 0; ) stuff \
c8e02c8a
MW
1933} while (0)
1934
1935/* --- @p_mkiter@ --- *
1936 *
1937 * Arguments: @peer_iter *i@ = pointer to an iterator
1938 *
1939 * Returns: ---
1940 *
1941 * Use: Initializes the iterator.
1942 */
1943
1944extern void p_mkiter(peer_iter */*i*/);
1945
1946/* --- @p_next@ --- *
1947 *
1948 * Arguments: @peer_iter *i@ = pointer to an iterator
410c8acf 1949 *
c8e02c8a 1950 * Returns: Next peer, or null if at the end.
410c8acf 1951 *
c8e02c8a 1952 * Use: Returns the next peer.
410c8acf 1953 */
1954
c8e02c8a 1955extern peer *p_next(peer_iter */*i*/);
410c8acf 1956
a7abb429
MW
1957/*----- The interval timer ------------------------------------------------*/
1958
1959/* --- @iv_addreason@ --- *
1960 *
1961 * Arguments: ---
1962 *
1963 * Returns: ---
1964 *
1965 * Use: Adds an `interval timer reason'; if there are no others, the
1966 * interval timer is engaged.
1967 */
1968
1969extern void iv_addreason(void);
1970
1971/* --- @iv_rmreason@ --- *
1972 *
1973 * Arguments: ---
1974 *
1975 * Returns: ---
1976 *
1977 * Use: Removes an interval timer reason; if there are none left, the
1978 * interval timer is disengaged.
1979 */
1980
1981extern void iv_rmreason(void);
1982
c9aded9f
MW
1983/*----- The main loop -----------------------------------------------------*/
1984
1985/* --- @lp_init@ --- *
1986 *
1987 * Arguments: ---
1988 *
1989 * Returns: ---
1990 *
1991 * Use: Initializes the main loop. Most importantly, this sets up
1992 * the select multiplexor that everything else hooks onto.
1993 */
1994
1995extern void lp_init(void);
1996
2173bd49
MW
1997/* --- @lp_end@ --- *
1998 *
1999 * Arguments: ---
2000 *
2001 * Returns: ---
2002 *
2003 * Use: Requests an exit from the main loop.
2004 */
2005
2006extern void lp_end(void);
2007
c9aded9f
MW
2008/* --- @lp_run@ --- *
2009 *
2010 * Arguments: ---
2011 *
2012 * Returns: Zero on successful termination; @-1@ if things went wrong.
2013 *
2014 * Use: Cranks the main loop until it should be cranked no more.
2015 */
2016
2017extern int lp_run(void);
2018
42da2a58 2019/*----- Tunnel drivers ----------------------------------------------------*/
410c8acf 2020
42da2a58 2021#ifdef TUN_LINUX
2022 extern const tunnel_ops tun_linux;
2023#endif
410c8acf 2024
42da2a58 2025#ifdef TUN_UNET
2026 extern const tunnel_ops tun_unet;
2027#endif
410c8acf 2028
42da2a58 2029#ifdef TUN_BSD
2030 extern const tunnel_ops tun_bsd;
2031#endif
410c8acf 2032
42da2a58 2033extern const tunnel_ops tun_slip;
410c8acf 2034
410c8acf 2035/*----- Other handy utilities ---------------------------------------------*/
2036
832a2ab6 2037/* --- @timestr@ --- *
2038 *
2039 * Arguments: @time_t t@ = a time to convert
2040 *
2041 * Returns: A pointer to a textual representation of the time.
2042 *
2043 * Use: Converts a time to a textual representation. Corrupts
a4b808b0 2044 * @buf_u@.
832a2ab6 2045 */
2046
2047extern const char *timestr(time_t /*t*/);
2048
42da2a58 2049/* --- @mystrieq@ --- *
2050 *
2051 * Arguments: @const char *x, *y@ = two strings
2052 *
2053 * Returns: True if @x@ and @y are equal, up to case.
2054 */
2055
2056extern int mystrieq(const char */*x*/, const char */*y*/);
2057
5d06f63e
MW
2058/* --- @afix@ --- *
2059 *
2060 * Arguments: @int af@ = an address family code
2061 *
2062 * Returns: The index of the address family's record in @aftab@, or @-1@.
2063 */
2064
2065extern int afix(int af);
2066
cb2c2bfc
MW
2067/* --- @addrsz@ --- *
2068 *
2069 * Arguments: @const addr *a@ = a network address
2070 *
2071 * Returns: The size of the address, for passing into the sockets API.
2072 */
2073
2074extern socklen_t addrsz(const addr */*a*/);
2075
d98625f4
MW
2076/* --- @getport@, @setport@ --- *
2077 *
2078 * Arguments: @addr *a@ = a network address
2079 * @unsigned port@ = port number to set
2080 *
2081 * Returns: ---
2082 *
2083 * Use: Retrieves or sets the port number in an address structure.
2084 */
2085
2086extern unsigned getport(addr */*a*/);
2087extern void setport(addr */*a*/, unsigned /*port*/);
2088
37941236 2089/* --- @seq_reset@ --- *
2090 *
2091 * Arguments: @seqwin *s@ = sequence-checking window
2092 *
2093 * Returns: ---
2094 *
2095 * Use: Resets a sequence number window.
2096 */
2097
2098extern void seq_reset(seqwin */*s*/);
2099
2100/* --- @seq_check@ --- *
2101 *
2102 * Arguments: @seqwin *s@ = sequence-checking window
2103 * @uint32 q@ = sequence number to check
f43df819 2104 * @const char *service@ = service to report message from
37941236 2105 *
2106 * Returns: A @SEQ_@ code.
2107 *
2108 * Use: Checks a sequence number against the window, updating things
2109 * as necessary.
2110 */
2111
f43df819 2112extern int seq_check(seqwin */*s*/, uint32 /*q*/, const char */*service*/);
37941236 2113
e9fcf28e
MW
2114typedef struct ratelim {
2115 unsigned n, max, persec;
2116 struct timeval when;
2117} ratelim;
2118
2119/* --- @ratelim_init@ --- *
2120 *
2121 * Arguments: @ratelim *r@ = rate-limiting state to fill in
2122 * @unsigned persec@ = credit to accumulate per second
2123 * @unsigned max@ = maximum credit to retain
2124 *
2125 * Returns: ---
2126 *
2127 * Use: Initialize a rate-limiting state.
2128 */
2129
2130extern void ratelim_init(ratelim */*r*/,
2131 unsigned /*persec*/, unsigned /*max*/);
2132
2133/* --- @ratelim_withdraw@ --- *
2134 *
2135 * Arguments: @ratelim *r@ = rate-limiting state
2136 * @unsigned n@ = credit to withdraw
2137 *
2138 * Returns: Zero if successful; @-1@ if there is unsufficient credit
2139 *
2140 * Use: Updates the state with any accumulated credit. Then, if
2141 * there there are more than @n@ credits available, withdraw @n@
2142 * and return successfully; otherwise, report failure.
2143 */
2144
2145extern int ratelim_withdraw(ratelim */*r*/, unsigned /*n*/);
2146
0c1cede3
MW
2147/* --- @ies_encrypt@ --- *
2148 *
2149 * Arguments: @kdata *kpub@ = recipient's public key
2150 * @unsigned ty@ = message type octet
2151 * @buf *b@ = input message buffer
2152 * @buf *bb@ = output buffer for the ciphertext
2153 *
2154 * Returns: On error, returns a @KSERR_...@ code or breaks the buffer;
2155 * on success, returns zero and the buffer is good.
2156 *
2157 * Use: Encrypts a message for a recipient, given their public key.
2158 * This does not (by itself) provide forward secrecy or sender
2159 * authenticity. The ciphertext is self-delimiting (unlike
2160 * @ks_encrypt@).
2161 */
2162
2163extern int ies_encrypt(kdata */*kpub*/, unsigned /*ty*/,
2164 buf */*b*/, buf */*bb*/);
2165
2166/* --- @ies_decrypt@ --- *
2167 *
2168 * Arguments: @kdata *kpub@ = private key key
2169 * @unsigned ty@ = message type octet
2170 * @buf *b@ = input ciphertext buffer
2171 * @buf *bb@ = output buffer for the message
2172 *
2173 * Returns: On error, returns a @KSERR_...@ code; on success, returns
2174 * zero and the buffer is good.
2175 *
2176 * Use: Decrypts a message encrypted using @ies_encrypt@, given our
2177 * private key.
2178 */
2179
2180extern int ies_decrypt(kdata */*kpriv*/, unsigned /*ty*/,
2181 buf */*b*/, buf */*bb*/);
2182
410c8acf 2183/*----- That's all, folks -------------------------------------------------*/
2184
2185#ifdef __cplusplus
2186 }
2187#endif
2188
2189#endif