chiark / gitweb /
Fix logrotate script.
[tripe] / tripe.h
CommitLineData
410c8acf 1/* -*-c-*-
2 *
52c03a2a 3 * $Id: tripe.h,v 1.18 2004/04/03 12:35:13 mdw Exp $
410c8acf 4 *
5 * Main header file for TrIPE
6 *
7 * (c) 2001 Straylight/Edgeware
8 */
9
10/*----- Licensing notice --------------------------------------------------*
11 *
12 * This file is part of Trivial IP Encryption (TrIPE).
13 *
14 * TrIPE is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 2 of the License, or
17 * (at your option) any later version.
18 *
19 * TrIPE is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with TrIPE; if not, write to the Free Software Foundation,
26 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27 */
28
29/*----- Revision history --------------------------------------------------*
30 *
31 * $Log: tripe.h,v $
52c03a2a 32 * Revision 1.18 2004/04/03 12:35:13 mdw
33 * Support elliptic curve key exchange.
34 *
165db1a8 35 * Revision 1.17 2003/10/15 09:30:18 mdw
36 * Add support for Ethereal protocol analysis.
37 *
7ed14135 38 * Revision 1.16 2003/07/13 11:19:49 mdw
165db1a8 39 * Incompatible protocol fix! Include message type code under MAC tag to
40 * prevent cut-and-paste from key-exchange messages to general packet
41 * transport.
7ed14135 42 *
767b36e2 43 * Revision 1.15 2003/05/16 12:09:03 mdw
44 * Allow binding to a chosen address.
45 *
110d564e 46 * Revision 1.14 2003/04/06 10:36:33 mdw
47 * Rearrange so as not to include Linux headers unless we need to.
48 *
9466fafa 49 * Revision 1.13 2003/04/06 10:26:35 mdw
50 * Report peer name on decrypt errors.
51 *
37075862 52 * Revision 1.12 2003/04/06 10:25:17 mdw
53 * Support Linux TUN/TAP device. Fix some bugs.
54 *
17f0adc1 55 * Revision 1.11 2002/01/13 14:57:42 mdw
56 * Fix crap typo.
57 *
1d27afe6 58 * Revision 1.10 2002/01/13 14:54:58 mdw
59 * Provide MGF macros.
60 *
00e64b67 61 * Revision 1.9 2001/06/22 19:40:36 mdw
62 * Support expiry of other peers' public keys.
63 *
aeeb5611 64 * Revision 1.8 2001/06/19 22:10:57 mdw
65 * Some more constants for the algorithms. Document the packet format
66 * change for non-malleability. Moved @buf@ definitions to separate header
67 * file.
68 *
52307fee 69 * Revision 1.7 2001/03/03 12:07:08 mdw
70 * Rename word get and put functions now that there's 16-bit support.
71 *
fd3cf232 72 * Revision 1.6 2001/02/19 19:11:09 mdw
73 * Output buffering on admin connections.
74 *
832a2ab6 75 * Revision 1.5 2001/02/16 21:41:43 mdw
76 * Major changes. See source files for details.
77 *
1484d822 78 * Revision 1.4 2001/02/05 19:56:37 mdw
79 * Sequence number protection, and BSD tunnels.
80 *
73189848 81 * Revision 1.3 2001/02/04 01:17:55 mdw
82 * Create a configuration header file to tidy up command lines.
83 *
8d0c7a83 84 * Revision 1.2 2001/02/03 22:40:29 mdw
85 * Put timer information into the entropy pool when packets are received
86 * and on similar events. Reseed the generator on the interval timer.
87 *
410c8acf 88 * Revision 1.1 2001/02/03 20:26:37 mdw
89 * Initial checkin.
90 *
91 */
92
93#ifndef TRIPE_H
94#define TRIPE_H
95
96#ifdef __cplusplus
97 extern "C" {
98#endif
99
100/*----- Header files ------------------------------------------------------*/
101
73189848 102#include "config.h"
103
410c8acf 104#include <assert.h>
105#include <ctype.h>
106#include <errno.h>
107#include <signal.h>
108#include <stdarg.h>
109#include <stddef.h>
110#include <stdio.h>
111#include <stdlib.h>
112#include <string.h>
113#include <time.h>
114
115#include <sys/types.h>
116#include <sys/time.h>
117#include <unistd.h>
118#include <fcntl.h>
119#include <sys/stat.h>
120
121#include <sys/socket.h>
122#include <sys/un.h>
123#include <netinet/in.h>
124#include <arpa/inet.h>
125#include <netdb.h>
126
127#include <pwd.h>
128#include <grp.h>
129
130#include <mLib/alloc.h>
131#include <mLib/arena.h>
132#include <mLib/bres.h>
133#include <mLib/dstr.h>
134#include <mLib/env.h>
135#include <mLib/fdflags.h>
136#include <mLib/fwatch.h>
137#include <mLib/mdwopt.h>
138#include <mLib/quis.h>
139#include <mLib/report.h>
140#include <mLib/sel.h>
141#include <mLib/selbuf.h>
142#include <mLib/sig.h>
143#include <mLib/str.h>
144#include <mLib/sub.h>
145#include <mLib/trace.h>
146
165db1a8 147#include <catacomb/buf.h>
148
410c8acf 149#include <catacomb/gcipher.h>
150#include <catacomb/gmac.h>
151#include <catacomb/grand.h>
152#include <catacomb/key.h>
153#include <catacomb/paranoia.h>
154
410c8acf 155#include <catacomb/noise.h>
156#include <catacomb/rand.h>
410c8acf 157
158#include <catacomb/mp.h>
410c8acf 159#include <catacomb/mprand.h>
160#include <catacomb/dh.h>
52c03a2a 161#include <catacomb/ec.h>
162#include <catacomb/ec-keys.h>
163#include <catacomb/group.h>
410c8acf 164
165db1a8 165#include "tripe-protocol.h"
410c8acf 166#include "util.h"
167
168#undef sun
169
170/*----- Magic numbers -----------------------------------------------------*/
171
172/* --- Tunnel types --- */
173
174#define TUN_NOTDEF 0
175#define TUN_UNET 1
176#define TUN_BSD 2
37075862 177#define TUN_LINUX 3
410c8acf 178
179/* --- Trace flags --- */
180
181#define T_TUNNEL 1u
182#define T_PEER 2u
183#define T_PACKET 4u
184#define T_ADMIN 8u
185#define T_CRYPTO 16u
186#define T_KEYSET 32u
187#define T_KEYEXCH 64u
188#define T_KEYMGMT 128u
189
190#define T_ALL 255u
191
192/* --- Units --- */
193
194#define SEC(n) (n##u)
195#define MIN(n) (n##u * 60u)
196#define MEG(n) (n##ul * 1024ul * 1024ul)
197
198/* --- Other things --- */
199
200#define PKBUFSZ 65536
201
832a2ab6 202/*----- Cipher selections -------------------------------------------------*/
203
204#include <catacomb/blowfish.h>
205#include <catacomb/blowfish-cbc.h>
1d27afe6 206#include <catacomb/blowfish-counter.h>
832a2ab6 207#include <catacomb/rmd160.h>
208#include <catacomb/rmd160-hmac.h>
209
210#define CIPHER (&blowfish_cbc)
211#define MAC (&rmd160_hmac)
212
213#define HASH_CTX rmd160_ctx
214#define HASH_INIT rmd160_init
215#define HASH rmd160_hash
216#define HASH_STRING(c, s) HASH((c), s, sizeof(s))
217#define HASH_DONE rmd160_done
218#define HASHSZ RMD160_HASHSZ
219
1d27afe6 220#define MGF_CTX blowfish_counterctx
221#define MGF_INIT blowfish_counterinit
222#define MGF_CRYPT blowfish_counterencrypt
223
aeeb5611 224#define SEQSZ 4
225#define IVSZ BLOWFISH_BLKSZ
226#define MACSZ 10
410c8acf 227
aeeb5611 228/*----- Data structures ---------------------------------------------------*/
410c8acf 229
230/* --- Socket addresses --- *
231 *
232 * A magic union of supported socket addresses.
233 */
234
235typedef union addr {
236 struct sockaddr sa;
237 struct sockaddr_in sin;
238} addr;
239
240/* --- A symmetric keyset --- *
241 *
242 * A keyset contains a set of symmetric keys for encrypting and decrypting
243 * packets. Keysets are stored in a list, sorted in reverse order of
244 * creation, so that the most recent keyset (the one most likely to be used)
245 * is first.
246 *
247 * Each keyset has a time limit and a data limit. The keyset is destroyed
248 * when either it has existed for too long, or it has been used to encrypt
249 * too much data. New key exchanges are triggered when keys are close to
250 * expiry.
251 */
252
253typedef struct keyset {
254 struct keyset *next; /* Next active keyset in the list */
832a2ab6 255 unsigned ref; /* Reference count for keyset */
9466fafa 256 struct peer *p; /* Pointer to peer structure */
410c8acf 257 time_t t_exp; /* Expiry time for this keyset */
258 unsigned long sz_exp; /* Data limit for the keyset */
832a2ab6 259 T( unsigned seq; ) /* Sequence number for tracing */
260 unsigned f; /* Various useful flags */
261 gcipher *cin, *cout; /* Keyset ciphers for encryption */
262 gmac *min, *mout; /* Keyset MACs for integrity */
1484d822 263 uint32 oseq; /* Outbound sequence number */
264 uint32 iseq, iwin; /* Inbound sequence number */
410c8acf 265} keyset;
266
1484d822 267#define KS_SEQWINSZ 32 /* Bits in sequence number window */
268
832a2ab6 269#define KSF_LISTEN 1u /* Don't encrypt packets yet */
270#define KSF_LINK 2u /* Key is in a linked list */
271
410c8acf 272/* --- Key exchange --- *
273 *
274 * TrIPE uses the Wrestlers Protocol for its key exchange. The Wrestlers
275 * Protocol has a number of desirable features (e.g., perfect forward
276 * secrecy, and zero-knowledge authentication) which make it attractive for
277 * use in TrIPE. The Wrestlers Protocol was designed by Mark Wooding and
278 * Clive Jones.
279 */
280
832a2ab6 281#define KX_NCHAL 16u
282#define KX_THRESH 4u
283
284typedef struct kxchal {
285 struct keyexch *kx; /* Pointer back to key exchange */
52c03a2a 286 ge *c; /* Responder's challenge */
287 ge *r; /* My reply to the challenge */
832a2ab6 288 keyset *ks; /* Pointer to temporary keyset */
289 unsigned f; /* Various useful flags */
290 sel_timer t; /* Response timer for challenge */
291 octet hc[HASHSZ]; /* Hash of his challenge */
1d27afe6 292 mp *ck; /* The check value */
832a2ab6 293 octet hswrq_in[HASHSZ]; /* Inbound switch request message */
294 octet hswok_in[HASHSZ]; /* Inbound switch confirmation */
295 octet hswrq_out[HASHSZ]; /* Outbound switch request message */
296 octet hswok_out[HASHSZ]; /* Outbound switch confirmation */
297} kxchal;
298
410c8acf 299typedef struct keyexch {
410c8acf 300 struct peer *p; /* Pointer back to the peer */
832a2ab6 301 keyset **ks; /* Peer's list of keysets */
410c8acf 302 unsigned f; /* Various useful flags */
832a2ab6 303 unsigned s; /* Current state in exchange */
410c8acf 304 sel_timer t; /* Timer for next exchange */
52c03a2a 305 ge *kpub; /* Peer's public key */
00e64b67 306 time_t texp_kpub; /* Expiry time for public key */
832a2ab6 307 mp *alpha; /* My temporary secret */
52c03a2a 308 ge *c; /* My challenge */
309 ge *rx; /* The expected response */
832a2ab6 310 unsigned nr; /* Number of extant responses */
410c8acf 311 time_t t_valid; /* When this exchange goes bad */
832a2ab6 312 octet hc[HASHSZ]; /* Hash of my challenge */
313 kxchal *r[KX_NCHAL]; /* Array of challenges */
410c8acf 314} keyexch;
315
316#define KXF_TIMER 1u /* Waiting for a timer to go off */
00e64b67 317#define KXF_DEAD 2u /* The key-exchanger isn't up */
318#define KXF_PUBKEY 4u /* Key exchanger has a public key */
832a2ab6 319
320enum {
321 KXS_DEAD, /* Uninitialized state (magical) */
322 KXS_CHAL, /* Main answer-challenges state */
323 KXS_COMMIT, /* Committed: send switch request */
324 KXS_SWITCH /* Switched: send confirmation */
325};
410c8acf 326
327/* --- Tunnel structure --- *
328 *
329 * Used to maintain system-specific information about the tunnel interface.
330 */
331
110d564e 332#if TUN_TYPE == TUN_LINUX
333# include <linux/if.h>
334# include <linux/if_tun.h>
335#endif
336
410c8acf 337typedef struct tunnel {
37075862 338#if TUN_TYPE == TUN_UNET
410c8acf 339 sel_file f; /* Selector for Usernet device */
340 struct peer *p; /* Pointer to my peer */
37075862 341#elif TUN_TYPE == TUN_LINUX
342 sel_file f; /* Selector for TUN/TAP device */
343 struct peer *p; /* Pointer to my peer */
344 char ifn[IFNAMSIZ]; /* Interface name buffer */
1484d822 345#elif TUN_TYPE == TUN_BSD
346 sel_file f; /* Selector for tunnel device */
347 struct peer *p; /* Pointer to my peer */
348 unsigned n; /* Number of my tunnel device */
410c8acf 349#else
350# error "No support for this tunnel type"
351#endif
352} tunnel;
353
832a2ab6 354/* --- Peer statistics --- *
355 *
356 * Contains various interesting and not-so-interesting statistics about a
357 * peer. This is updated by various parts of the code. The format of the
358 * structure isn't considered private, and @p_stats@ returns a pointer to the
359 * statistics block for a given peer.
360 */
361
362typedef struct stats {
363 unsigned long sz_in, sz_out; /* Size of all data in and out */
364 unsigned long sz_kxin, sz_kxout; /* Size of key exchange messages */
365 unsigned long sz_ipin, sz_ipout; /* Size of encapsulated IP packets */
366 time_t t_start, t_last; /* Time peer created, last recv */
367 unsigned long n_reject; /* Number of rejected packets */
368 unsigned long n_in, n_out; /* Number of packets in and out */
369 unsigned long n_kxin, n_kxout; /* Number of key exchange packets */
370 unsigned long n_ipin, n_ipout; /* Number of encrypted packets */
371} stats;
372
410c8acf 373/* --- Peer structure --- *
374 *
375 * The main structure which glues everything else together.
376 */
377
378typedef struct peer {
379 struct peer *next, *prev; /* Links to next and previous */
380 char *name; /* Name of this peer */
381 tunnel t; /* Tunnel for local packets */
382 keyset *ks; /* List head for keysets */
410c8acf 383 buf b; /* Buffer for sending packets */
384 addr peer; /* Peer socket address */
385 size_t sasz; /* Socket address size */
832a2ab6 386 stats st; /* Statistics */
387 keyexch kx; /* Key exchange protocol block */
410c8acf 388} peer;
389
390/* --- Admin structure --- */
391
fd3cf232 392#define OBUFSZ 16384u
393
394typedef struct obuf {
395 struct obuf *next; /* Next buffer in list */
396 char *p_in, *p_out; /* Pointers into the buffer */
397 char buf[OBUFSZ]; /* The actual buffer */
398} obuf;
399
410c8acf 400typedef struct admin {
401 struct admin *next, *prev; /* Links to next and previous */
fd3cf232 402 unsigned f; /* Various useful flags */
410c8acf 403#ifndef NTRACE
404 unsigned seq; /* Sequence number for tracing */
405#endif
406 char *pname; /* Peer name to create */
407 char *paddr; /* Address string to resolve */
fd3cf232 408 obuf *o_head, *o_tail; /* Output buffer list */
409 selbuf b; /* Line buffer for commands */
410 sel_file w; /* Selector for write buffering */
410c8acf 411 bres_client r; /* Background resolver task */
412 sel_timer t; /* Timer for resolver */
413 addr peer; /* Address to set */
414 size_t sasz; /* Size of the address */
415} admin;
416
fd3cf232 417#define AF_DEAD 1u /* Destroy this admin block */
418#define AF_LOCK 2u /* Don't destroy it yet */
419
410c8acf 420/*----- Global variables --------------------------------------------------*/
421
422extern sel_state sel; /* Global I/O event state */
52c03a2a 423extern group *gg; /* The group we work in */
424extern mp *kpriv; /* Our private key */
832a2ab6 425extern octet buf_i[PKBUFSZ], buf_o[PKBUFSZ], buf_t[PKBUFSZ];
410c8acf 426
427#ifndef NTRACE
428extern const trace_opt tr_opts[]; /* Trace options array */
429extern unsigned tr_flags; /* Trace options flags */
430#endif
431
8d0c7a83 432/*----- Other macros ------------------------------------------------------*/
433
434#define TIMER noise_timer(RAND_GLOBAL)
435
410c8acf 436/*----- Key management ----------------------------------------------------*/
437
438/* --- @km_interval@ --- *
439 *
440 * Arguments: ---
441 *
442 * Returns: Zero if OK, nonzero to force reloading of keys.
443 *
444 * Use: Called on the interval timer to perform various useful jobs.
445 */
446
447extern int km_interval(void);
448
449/* --- @km_init@ --- *
450 *
451 * Arguments: @const char *kr_priv@ = private keyring file
452 * @const char *kr_pub@ = public keyring file
453 * @const char *tag@ = tag to load
454 *
455 * Returns: ---
456 *
457 * Use: Initializes, and loads the private key.
458 */
459
460extern void km_init(const char */*kr_priv*/, const char */*kr_pub*/,
461 const char */*tag*/);
462
463/* --- @km_getpubkey@ --- *
464 *
465 * Arguments: @const char *tag@ = public key tag to load
52c03a2a 466 * @ge *kpub@ = where to put the public key
00e64b67 467 * @time_t *t_exp@ = where to put the expiry time
410c8acf 468 *
469 * Returns: Zero if OK, nonzero if it failed.
470 *
471 * Use: Fetches a public key from the keyring.
472 */
473
52c03a2a 474extern int km_getpubkey(const char */*tag*/, ge */*kpub*/,
00e64b67 475 time_t */*t_exp*/);
410c8acf 476
477/*----- Key exchange ------------------------------------------------------*/
478
479/* --- @kx_start@ --- *
480 *
481 * Arguments: @keyexch *kx@ = pointer to key exchange context
482 *
483 * Returns: ---
484 *
485 * Use: Stimulates a key exchange. If a key exchage is in progress,
486 * a new challenge is sent (unless the quiet timer forbids
487 * this); if no exchange is in progress, one is commenced.
488 */
489
490extern void kx_start(keyexch */*kx*/);
491
832a2ab6 492/* --- @kx_message@ --- *
410c8acf 493 *
494 * Arguments: @keyexch *kx@ = pointer to key exchange context
832a2ab6 495 * @unsigned msg@ = the message code
496 * @buf *b@ = pointer to buffer containing the packet
410c8acf 497 *
498 * Returns: ---
499 *
832a2ab6 500 * Use: Reads a packet containing key exchange messages and handles
501 * it.
410c8acf 502 */
503
832a2ab6 504extern void kx_message(keyexch */*kx*/, unsigned /*msg*/, buf */*b*/);
410c8acf 505
506/* --- @kx_free@ --- *
507 *
508 * Arguments: @keyexch *kx@ = pointer to key exchange context
509 *
510 * Returns: ---
511 *
512 * Use: Frees everything in a key exchange context.
513 */
514
515extern void kx_free(keyexch */*kx*/);
516
517/* --- @kx_newkeys@ --- *
518 *
519 * Arguments: @keyexch *kx@ = pointer to key exchange context
520 *
521 * Returns: ---
522 *
523 * Use: Informs the key exchange module that its keys may have
524 * changed. If fetching the new keys fails, the peer will be
525 * destroyed, we log messages and struggle along with the old
526 * keys.
527 */
528
529extern void kx_newkeys(keyexch */*kx*/);
530
531/* --- @kx_init@ --- *
532 *
533 * Arguments: @keyexch *kx@ = pointer to key exchange context
534 * @peer *p@ = pointer to peer context
535 * @keyset **ks@ = pointer to keyset list
536 *
537 * Returns: Zero if OK, nonzero if it failed.
538 *
539 * Use: Initializes a key exchange module. The module currently
540 * contains no keys, and will attempt to initiate a key
541 * exchange.
542 */
543
544extern int kx_init(keyexch */*kx*/, peer */*p*/, keyset **/*ks*/);
545
546/*----- Keysets and symmetric cryptography --------------------------------*/
547
832a2ab6 548/* --- @ks_drop@ --- *
549 *
550 * Arguments: @keyset *ks@ = pointer to a keyset
551 *
552 * Returns: ---
553 *
554 * Use: Decrements a keyset's reference counter. If the counter hits
555 * zero, the keyset is freed.
556 */
557
558extern void ks_drop(keyset */*ks*/);
559
560/* --- @ks_gen@ --- *
561 *
562 * Arguments: @const void *k@ = pointer to key material
563 * @size_t x, y, z@ = offsets into key material (see below)
9466fafa 564 * @peer *p@ = pointer to peer information
832a2ab6 565 *
566 * Returns: A pointer to the new keyset.
567 *
568 * Use: Derives a new keyset from the given key material. The
569 * offsets @x@, @y@ and @z@ separate the key material into three
570 * parts. Between the @k@ and @k + x@ is `my' contribution to
571 * the key material; between @k + x@ and @k + y@ is `your'
572 * contribution; and between @k + y@ and @k + z@ is a shared
573 * value we made together. These are used to construct two
574 * pairs of symmetric keys. Each pair consists of an encryption
575 * key and a message authentication key. One pair is used for
576 * outgoing messages, the other for incoming messages.
577 *
578 * The new key is marked so that it won't be selected for output
579 * by @ksl_encrypt@. You can still encrypt data with it by
580 * calling @ks_encrypt@ directly.
581 */
582
583extern keyset *ks_gen(const void */*k*/,
9466fafa 584 size_t /*x*/, size_t /*y*/, size_t /*z*/,
585 peer */*p*/);
832a2ab6 586
587/* --- @ks_tregen@ --- *
588 *
589 * Arguments: @keyset *ks@ = pointer to a keyset
590 *
591 * Returns: The time at which moves ought to be made to replace this key.
592 */
593
594extern time_t ks_tregen(keyset */*ks*/);
595
596/* --- @ks_activate@ --- *
597 *
598 * Arguments: @keyset *ks@ = pointer to a keyset
599 *
600 * Returns: ---
601 *
602 * Use: Activates a keyset, so that it can be used for encrypting
603 * outgoing messages.
604 */
605
606extern void ks_activate(keyset */*ks*/);
607
608/* --- @ks_encrypt@ --- *
609 *
610 * Arguments: @keyset *ks@ = pointer to a keyset
7ed14135 611 * @unsigned ty@ = message type
832a2ab6 612 * @buf *b@ = pointer to input buffer
613 * @buf *bb@ = pointer to output buffer
614 *
615 * Returns: Zero if OK, nonzero if the key needs replacing. If the
616 * encryption failed, the output buffer is broken and zero is
617 * returned.
618 *
619 * Use: Encrypts a block of data using the key. Note that the `key
620 * ought to be replaced' notification is only ever given once
621 * for each key. Also note that this call forces a keyset to be
622 * used even if it's marked as not for data output.
623 */
624
7ed14135 625extern int ks_encrypt(keyset */*ks*/, unsigned /*ty*/,
626 buf */*b*/, buf */*bb*/);
832a2ab6 627
628/* --- @ks_decrypt@ --- *
629 *
630 * Arguments: @keyset *ks@ = pointer to a keyset
7ed14135 631 * @unsigned ty@ = expected type code
832a2ab6 632 * @buf *b@ = pointer to an input buffer
633 * @buf *bb@ = pointer to an output buffer
634 *
635 * Returns: Zero on success, or nonzero if there was some problem.
636 *
637 * Use: Attempts to decrypt a message using a given key. Note that
638 * requesting decryption with a key directly won't clear a
639 * marking that it's not for encryption.
640 */
641
7ed14135 642extern int ks_decrypt(keyset */*ks*/, unsigned /*ty*/,
643 buf */*b*/, buf */*bb*/);
832a2ab6 644
645/* --- @ksl_free@ --- *
410c8acf 646 *
647 * Arguments: @keyset **ksroot@ = pointer to keyset list head
648 *
649 * Returns: ---
650 *
832a2ab6 651 * Use: Frees (releases references to) all of the keys in a keyset.
410c8acf 652 */
653
832a2ab6 654extern void ksl_free(keyset **/*ksroot*/);
410c8acf 655
832a2ab6 656/* --- @ksl_link@ --- *
410c8acf 657 *
658 * Arguments: @keyset **ksroot@ = pointer to keyset list head
832a2ab6 659 * @keyset *ks@ = pointer to a keyset
410c8acf 660 *
661 * Returns: ---
662 *
832a2ab6 663 * Use: Links a keyset into a list. A keyset can only be on one list
664 * at a time. Bad things happen otherwise.
410c8acf 665 */
666
832a2ab6 667extern void ksl_link(keyset **/*ksroot*/, keyset */*ks*/);
410c8acf 668
832a2ab6 669/* --- @ksl_prune@ --- *
410c8acf 670 *
671 * Arguments: @keyset **ksroot@ = pointer to keyset list head
410c8acf 672 *
832a2ab6 673 * Returns: ---
410c8acf 674 *
832a2ab6 675 * Use: Prunes the keyset list by removing keys which mustn't be used
676 * any more.
410c8acf 677 */
678
832a2ab6 679extern void ksl_prune(keyset **/*ksroot*/);
410c8acf 680
832a2ab6 681/* --- @ksl_encrypt@ --- *
410c8acf 682 *
683 * Arguments: @keyset **ksroot@ = pointer to keyset list head
7ed14135 684 * @unsigned ty@ = message type
410c8acf 685 * @buf *b@ = pointer to input buffer
686 * @buf *bb@ = pointer to output buffer
687 *
688 * Returns: Nonzero if a new key is needed.
689 *
690 * Use: Encrypts a packet.
691 */
692
7ed14135 693extern int ksl_encrypt(keyset **/*ksroot*/, unsigned /*ty*/,
694 buf */*b*/, buf */*bb*/);
410c8acf 695
832a2ab6 696/* --- @ksl_decrypt@ --- *
410c8acf 697 *
698 * Arguments: @keyset **ksroot@ = pointer to keyset list head
7ed14135 699 * @unsigned ty@ = expected type code
410c8acf 700 * @buf *b@ = pointer to input buffer
701 * @buf *bb@ = pointer to output buffer
702 *
703 * Returns: Nonzero if the packet couldn't be decrypted.
704 *
705 * Use: Decrypts a packet.
706 */
707
7ed14135 708extern int ksl_decrypt(keyset **/*ksroot*/, unsigned /*ty*/,
709 buf */*b*/, buf */*bb*/);
410c8acf 710
711/*----- Administration interface ------------------------------------------*/
712
713/* --- @a_warn@ --- *
714 *
715 * Arguments: @const char *fmt@ = pointer to format string
716 * @...@ = other arguments
717 *
718 * Returns: ---
719 *
720 * Use: Informs all admin connections of a warning.
721 */
722
723extern void a_warn(const char */*fmt*/, ...);
724
725/* --- @a_create@ --- *
726 *
727 * Arguments: @int fd_in, fd_out@ = file descriptors to use
728 *
729 * Returns: ---
730 *
731 * Use: Creates a new admin connection.
732 */
733
734extern void a_create(int /*fd_in*/, int /*fd_out*/);
735
736/* --- @a_quit@ --- *
737 *
738 * Arguments: ---
739 *
740 * Returns: ---
741 *
742 * Use: Shuts things down nicely.
743 */
744
745extern void a_quit(void);
746
747/* --- @a_daemon@ --- *
748 *
749 * Arguments: ---
750 *
751 * Returns: ---
752 *
753 * Use: Informs the admin module that it's a daemon.
754 */
755
756extern void a_daemon(void);
757
758/* --- @a_init@ --- *
759 *
760 * Arguments: @const char *sock@ = socket name to create
761 *
762 * Returns: ---
763 *
764 * Use: Creates the admin listening socket.
765 */
766
767extern void a_init(const char */*sock*/);
768
769/*----- Peer management ---------------------------------------------------*/
770
771/* --- @p_txstart@ --- *
772 *
773 * Arguments: @peer *p@ = pointer to peer block
774 * @unsigned msg@ = message type code
775 *
776 * Returns: A pointer to a buffer to write to.
777 *
778 * Use: Starts sending to a peer. Only one send can happen at a
779 * time.
780 */
781
782extern buf *p_txstart(peer */*p*/, unsigned /*msg*/);
783
784/* --- @p_txend@ --- *
785 *
786 * Arguments: @peer *p@ = pointer to peer block
787 *
788 * Returns: ---
789 *
790 * Use: Sends a packet to the peer.
791 */
792
793extern void p_txend(peer */*p*/);
794
795/* --- @p_tun@ --- *
796 *
797 * Arguments: @peer *p@ = pointer to peer block
798 * @buf *b@ = buffer containing incoming packet
799 *
800 * Returns: ---
801 *
802 * Use: Handles a packet which needs to be sent to a peer.
803 */
804
805extern void p_tun(peer */*p*/, buf */*b*/);
806
807/* --- @p_interval@ --- *
808 *
809 * Arguments: ---
810 *
811 * Returns: ---
812 *
813 * Use: Called periodically to do tidying.
814 */
815
816extern void p_interval(void);
817
832a2ab6 818/* --- @p_stats@ --- *
819 *
820 * Arguments: @peer *p@ = pointer to a peer block
821 *
822 * Returns: A pointer to the peer's statistics.
823 */
824
825extern stats *p_stats(peer */*p*/);
826
410c8acf 827/* --- @p_ifname@ --- *
828 *
829 * Arguments: @peer *p@ = pointer to a peer block
830 *
831 * Returns: A pointer to the peer's interface name.
832 */
833
834extern const char *p_ifname(peer */*p*/);
835
836/* --- @p_addr@ --- *
837 *
838 * Arguments: @peer *p@ = pointer to a peer block
839 *
840 * Returns: A pointer to the peer's address.
841 */
842
843extern const addr *p_addr(peer */*p*/);
844
845/* --- @p_init@ --- *
846 *
767b36e2 847 * Arguments: @struct in_addr addr@ = address to bind to
848 * @unsigned port@ = port number to listen to
410c8acf 849 *
850 * Returns: ---
851 *
852 * Use: Initializes the peer system; creates the socket.
853 */
854
767b36e2 855extern void p_init(struct in_addr /*addr*/, unsigned /*port*/);
410c8acf 856
857/* --- @p_port@ --- *
858 *
859 * Arguments: ---
860 *
861 * Returns: Port number used for socket.
862 */
863
864unsigned p_port(void);
865
866/* --- @p_create@ --- *
867 *
868 * Arguments: @const char *name@ = name for this peer
869 * @struct sockaddr *sa@ = socket address of peer
870 * @size_t sz@ = size of socket address
871 *
872 * Returns: Pointer to the peer block, or null if it failed.
873 *
874 * Use: Creates a new named peer block. No peer is actually attached
875 * by this point.
876 */
877
878extern peer *p_create(const char */*name*/,
879 struct sockaddr */*sa*/, size_t /*sz*/);
880
881/* --- @p_name@ --- *
882 *
883 * Arguments: @peer *p@ = pointer to a peer block
884 *
885 * Returns: A pointer to the peer's name.
886 */
887
888extern const char *p_name(peer */*p*/);
889
890/* --- @p_find@ --- *
891 *
892 * Arguments: @const char *name@ = name to look up
893 *
894 * Returns: Pointer to the peer block, or null if not found.
895 *
896 * Use: Finds a peer by name.
897 */
898
899extern peer *p_find(const char */*name*/);
900
901/* --- @p_destroy@ --- *
902 *
903 * Arguments: @peer *p@ = pointer to a peer
904 *
905 * Returns: ---
906 *
907 * Use: Destroys a peer.
908 */
909
910extern void p_destroy(peer */*p*/);
911
912/* --- @p_first@, @p_next@ --- *
913 *
914 * Arguments: @peer *p@ = a peer block
915 *
916 * Returns: @peer_first@ returns the first peer in some ordering;
917 * @peer_next@ returns the peer following a given one in the
918 * same ordering. Null is returned for the end of the list.
919 */
920
921extern peer *p_first(void);
922extern peer *p_next(peer */*p*/);
923
924/*----- Tunnel interface --------------------------------------------------*/
925
926/* --- @tun_init@ --- *
927 *
928 * Arguments: ---
929 *
930 * Returns: ---
931 *
932 * Use: Initializes the tunneling system. Maybe this will require
933 * opening file descriptors or something.
934 */
935
936extern void tun_init(void);
937
938/* --- @tun_create@ --- *
939 *
940 * Arguments: @tunnel *t@ = pointer to tunnel block
941 * @peer *p@ = pointer to peer block
942 *
943 * Returns: Zero if it worked, nonzero on failure.
944 *
945 * Use: Initializes a new tunnel.
946 */
947
948extern int tun_create(tunnel */*t*/, peer */*p*/);
949
950/* --- @tun_ifname@ --- *
951 *
952 * Arguments: @tunnel *t@ = pointer to tunnel block
953 *
954 * Returns: A pointer to the tunnel's interface name.
955 */
956
957extern const char *tun_ifname(tunnel */*t*/);
958
959/* --- @tun_inject@ --- *
960 *
961 * Arguments: @tunnel *t@ = pointer to tunnel block
962 * @buf *b@ = buffer to send
963 *
964 * Returns: ---
965 *
966 * Use: Injects a packet into the local network stack.
967 */
968
969extern void tun_inject(tunnel */*t*/, buf */*b*/);
970
971/* --- @tun_destroy@ --- *
972 *
973 * Arguments: @tunnel *t@ = pointer to tunnel block
974 *
975 * Returns: ---
976 *
977 * Use: Destroys a tunnel.
978 */
979
980extern void tun_destroy(tunnel */*t*/);
981
410c8acf 982/*----- Other handy utilities ---------------------------------------------*/
983
984/* --- @mpstr@ --- *
985 *
986 * Arguments: @mp *m@ = a multiprecision integer
987 *
988 * Returns: A pointer to the integer's textual representation.
989 *
990 * Use: Converts a multiprecision integer to a string. Corrupts
832a2ab6 991 * @buf_t@.
410c8acf 992 */
993
994extern const char *mpstr(mp */*m*/);
995
52c03a2a 996/* --- @gestr@ --- *
997 *
998 * Arguments: @group *g@ = a group
999 * @ge *x@ = a group element
1000 *
1001 * Returns: A pointer to the element's textual representation.
1002 *
1003 * Use: Converts a group element to a string. Corrupts
1004 * @buf_t@.
1005 */
1006
1007extern const char *gestr(group */*g*/, ge */*x*/);
1008
832a2ab6 1009/* --- @timestr@ --- *
1010 *
1011 * Arguments: @time_t t@ = a time to convert
1012 *
1013 * Returns: A pointer to a textual representation of the time.
1014 *
1015 * Use: Converts a time to a textual representation. Corrupts
1016 * @buf_t@.
1017 */
1018
1019extern const char *timestr(time_t /*t*/);
1020
410c8acf 1021/*----- That's all, folks -------------------------------------------------*/
1022
1023#ifdef __cplusplus
1024 }
1025#endif
1026
1027#endif