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