test-example: Provide a polypath test
[secnet] / secnet.h
CommitLineData
2fe58dfd
SE
1/* Core interface of secnet, to be used by all modules */
2
3#ifndef secnet_h
4#define secnet_h
5
0e646750
IJ
6#define ADNS_FEATURE_MANYAF
7
59635212 8#include "config.h"
2fe58dfd 9#include <stdlib.h>
2fe58dfd 10#include <stdarg.h>
4f5e39ec 11#include <stdio.h>
b02b720a
IJ
12#include <string.h>
13#include <assert.h>
4fb0f88d
IJ
14#include <fcntl.h>
15#include <unistd.h>
ee697dd9 16#include <errno.h>
ce5c098f 17#include <fnmatch.h>
2fe58dfd 18#include <sys/poll.h>
8689b3a9 19#include <sys/types.h>
45736f73 20#include <sys/wait.h>
8689b3a9 21#include <sys/time.h>
2fe58dfd 22#include <netinet/in.h>
cc420616
IJ
23#include <arpa/inet.h>
24
6bad2cd5
IJ
25#include <bsd/sys/queue.h>
26
cc420616
IJ
27#define MAX_PEER_ADDRS 5
28/* send at most this many copies; honour at most that many addresses */
29
30struct comm_if;
31struct comm_addr;
2fe58dfd 32
2fe58dfd 33typedef char *string_t;
fe5e9cc4 34typedef const char *cstring_t;
09aecaa2
IJ
35
36#define False (_Bool)0
37#define True (_Bool)1
38typedef _Bool bool_t;
2fe58dfd 39
a32d56fb
IJ
40union iaddr {
41 struct sockaddr sa;
42 struct sockaddr_in sin;
61dbc9e0
IJ
43#ifdef CONFIG_IPV6
44 struct sockaddr_in6 sin6;
45#endif
a32d56fb
IJ
46};
47
794f2398 48#define ASSERT(x) do { if (!(x)) { fatal("assertion failed line %d file " \
4f5e39ec 49 __FILE__,__LINE__); } } while(0)
2fe58dfd 50
fcbc5905
IJ
51/* from version.c */
52
53extern char version[];
54
08ee90a2
IJ
55/* from logmsg.c */
56extern uint32_t message_level;
57extern bool_t secnet_is_daemon;
58extern struct log_if *system_log;
59
60/* from process.c */
61extern void start_signal_handling(void);
62
5e7a5e2d
IJ
63void afterfork(void);
64/* Must be called before exec in every child made after
65 start_signal_handling. Safe to call in earlier children too. */
66
2fe58dfd
SE
67/***** CONFIGURATION support *****/
68
baa06aeb
SE
69extern bool_t just_check_config; /* If True then we're going to exit after
70 reading the configuration file */
b2a56f7c 71extern bool_t background; /* If True then we'll eventually run as a daemon */
baa06aeb 72
2fe58dfd
SE
73typedef struct dict dict_t; /* Configuration dictionary */
74typedef struct closure closure_t;
75typedef struct item item_t;
76typedef struct list list_t; /* A list of items */
77
78/* Configuration file location, for error-reporting */
79struct cloc {
fe5e9cc4 80 cstring_t file;
1caa23ff 81 int line;
2fe58dfd
SE
82};
83
84/* Modules export closures, which can be invoked from the configuration file.
85 "Invoking" a closure usually returns another closure (of a different
86 type), but can actually return any configuration object. */
87typedef list_t *(apply_fn)(closure_t *self, struct cloc loc,
88 dict_t *context, list_t *data);
89struct closure {
fe5e9cc4 90 cstring_t description; /* For debugging */
2fe58dfd
SE
91 uint32_t type; /* Central registry... */
92 apply_fn *apply;
93 void *interface; /* Interface for use inside secnet; depends on type */
94};
95
96enum types { t_null, t_bool, t_string, t_number, t_dict, t_closure };
97struct item {
98 enum types type;
99 union {
100 bool_t bool;
101 string_t string;
102 uint32_t number;
103 dict_t *dict;
104 closure_t *closure;
105 } data;
106 struct cloc loc;
107};
108
ff05a229
SE
109/* Note that it is unwise to use this structure directly; use the list
110 manipulation functions instead. */
2fe58dfd
SE
111struct list {
112 item_t *item;
113 struct list *next;
114};
115
116/* In the following two lookup functions, NULL means 'not found' */
117/* Lookup a value in the specified dictionary, or its parents */
fe5e9cc4 118extern list_t *dict_lookup(dict_t *dict, cstring_t key);
2fe58dfd 119/* Lookup a value in just the specified dictionary */
fe5e9cc4 120extern list_t *dict_lookup_primitive(dict_t *dict, cstring_t key);
2fe58dfd 121/* Add a value to the specified dictionary */
fe5e9cc4 122extern void dict_add(dict_t *dict, cstring_t key, list_t *val);
2fe58dfd 123/* Obtain an array of keys in the dictionary. malloced; caller frees */
fe5e9cc4 124extern cstring_t *dict_keys(dict_t *dict);
2fe58dfd
SE
125
126/* List-manipulation functions */
127extern list_t *list_new(void);
a094a1ba 128extern int32_t list_length(const list_t *a);
2fe58dfd
SE
129extern list_t *list_append(list_t *a, item_t *i);
130extern list_t *list_append_list(list_t *a, list_t *b);
131/* Returns an item from the list (index starts at 0), or NULL */
1caa23ff 132extern item_t *list_elem(list_t *l, int32_t index);
2fe58dfd
SE
133
134/* Convenience functions */
135extern list_t *new_closure(closure_t *cl);
fe5e9cc4
SE
136extern void add_closure(dict_t *dict, cstring_t name, apply_fn apply);
137extern void *find_cl_if(dict_t *dict, cstring_t name, uint32_t type,
138 bool_t fail_if_invalid, cstring_t desc,
2fe58dfd 139 struct cloc loc);
fe5e9cc4
SE
140extern item_t *dict_find_item(dict_t *dict, cstring_t key, bool_t required,
141 cstring_t desc, struct cloc loc);
142extern string_t dict_read_string(dict_t *dict, cstring_t key, bool_t required,
143 cstring_t desc, struct cloc loc);
144extern uint32_t dict_read_number(dict_t *dict, cstring_t key, bool_t required,
145 cstring_t desc, struct cloc loc,
146 uint32_t def);
59230b9b 147 /* return value can safely be assigned to int32_t */
fe5e9cc4
SE
148extern bool_t dict_read_bool(dict_t *dict, cstring_t key, bool_t required,
149 cstring_t desc, struct cloc loc, bool_t def);
55e96f16
IJ
150const char **dict_read_string_array(dict_t *dict, cstring_t key,
151 bool_t required, cstring_t desc,
152 struct cloc loc, const char *const *def);
153 /* Return value is a NULL-terminated array obtained from malloc;
154 * Individual string values are still owned by config file machinery
155 * and must not be modified or freed. Returns NULL if key not
156 * found. */
157
9d3a4132 158struct flagstr {
fe5e9cc4 159 cstring_t name;
9d3a4132
SE
160 uint32_t value;
161};
fe5e9cc4
SE
162extern uint32_t string_to_word(cstring_t s, struct cloc loc,
163 struct flagstr *f, cstring_t desc);
9d3a4132 164extern uint32_t string_list_to_word(list_t *l, struct flagstr *f,
fe5e9cc4 165 cstring_t desc);
2fe58dfd
SE
166
167/***** END of configuration support *****/
168
7138d0c5
SE
169/***** UTILITY functions *****/
170
fe5e9cc4
SE
171extern char *safe_strdup(const char *string, const char *message);
172extern void *safe_malloc(size_t size, const char *message);
bb9d0561 173extern void *safe_malloc_ary(size_t size, size_t count, const char *message);
6f146b5d
IJ
174extern void *safe_realloc_ary(void *p, size_t size, size_t count,
175 const char *message);
2fe58dfd 176
4fb0f88d 177void setcloexec(int fd); /* cannot fail */
f54d5ada 178void setnonblock(int fd); /* cannot fail */
6a06198c 179void pipe_cloexec(int fd[2]); /* pipe(), setcloexec() twice; cannot fail */
4fb0f88d 180
fe5e9cc4 181extern int sys_cmd(const char *file, const char *argc, ...);
4efd681a 182
698280de
IJ
183extern uint64_t now_global;
184extern struct timeval tv_now_global;
185
186static const uint64_t *const now = &now_global;
187static const struct timeval *const tv_now = &tv_now_global;
188
189/* "now" is current program time, in milliseconds. It is derived
190 from tv_now. Both are provided by the event loop. */
191
2fe58dfd
SE
192/***** END of utility functions *****/
193
3abd18e8
IJ
194/***** START of max_start_pad handling *****/
195
196extern int32_t site_max_start_pad, transform_max_start_pad,
197 comm_max_start_pad;
198
199void update_max_start_pad(int32_t *our_module_global, int32_t our_instance);
200int32_t calculate_max_start_pad(void);
201
202/***** END of max_start_pad handling *****/
203
2fe58dfd
SE
204/***** SCHEDULING support */
205
90a39563
IJ
206/* If nfds_io is insufficient for your needs, set it to the required
207 number and return ERANGE. timeout is in milliseconds; if it is too
51abbe5f
IJ
208 high then lower it. It starts at -1 (==infinite). */
209/* Note that beforepoll_fn may NOT do anything which might change the
210 fds or timeouts wanted by other registered poll loop loopers.
211 Callers should make sure of this by not making any calls into other
212 modules from the beforepoll_fn; the easiest way to ensure this is
213 for beforepoll_fn to only retreive information and not take any
214 action.
215 */
2fe58dfd 216typedef int beforepoll_fn(void *st, struct pollfd *fds, int *nfds_io,
90a39563
IJ
217 int *timeout_io);
218typedef void afterpoll_fn(void *st, struct pollfd *fds, int nfds);
51abbe5f
IJ
219 /* If beforepoll_fn returned ERANGE, afterpoll_fn gets nfds==0.
220 afterpoll_fn never gets !!(fds[].revents & POLLNVAL) - such
221 a report is detected as a fatal error by the event loop. */
2fe58dfd 222
ee697dd9
IJ
223/* void BEFOREPOLL_WANT_FDS(int want);
224 * Expects: int *nfds_io;
225 * Can perform non-local exit.
226 * Checks whether there is space for want fds. If so, sets *nfds_io.
227 * If not, sets *nfds_io and returns. */
228#define BEFOREPOLL_WANT_FDS(want) do{ \
229 if (*nfds_io<(want)) { *nfds_io=(want); return ERANGE; } \
230 *nfds_io=(want); \
231 }while(0)
232
2fe58dfd
SE
233/* Register interest in the main loop of the program. Before a call
234 to poll() your supplied beforepoll function will be called. After
32fc582f 235 the call to poll() the supplied afterpoll function will be called. */
8bebb299 236struct poll_interest *register_for_poll(void *st, beforepoll_fn *before,
32fc582f 237 afterpoll_fn *after, cstring_t desc);
8bebb299 238void deregister_for_poll(struct poll_interest *i);
2fe58dfd
SE
239
240/***** END of scheduling support */
241
242/***** PROGRAM LIFETIME support */
243
244/* The secnet program goes through a number of phases in its lifetime.
245 Module code may arrange to be called just as various phases are
7b1a9fb7
RK
246 entered.
247
248 Remember to update the table in util.c if changing the set of
249 phases. */
2fe58dfd 250
42394c37
RK
251enum phase {
252 PHASE_INIT,
253 PHASE_GETOPTS, /* Process command-line arguments */
254 PHASE_READCONFIG, /* Parse and process configuration file */
255 PHASE_SETUP, /* Process information in configuration */
7b1a9fb7 256 PHASE_DAEMONIZE, /* Become a daemon (if necessary) */
42394c37
RK
257 PHASE_GETRESOURCES, /* Obtain all external resources */
258 PHASE_DROPPRIV, /* Last chance for privileged operations */
259 PHASE_RUN,
260 PHASE_SHUTDOWN, /* About to die; delete key material, etc. */
261 /* Keep this last: */
262 NR_PHASES,
263};
2fe58dfd
SE
264
265typedef void hook_fn(void *self, uint32_t newphase);
266bool_t add_hook(uint32_t phase, hook_fn *f, void *state);
267bool_t remove_hook(uint32_t phase, hook_fn *f, void *state);
268
7138d0c5
SE
269extern uint32_t current_phase;
270extern void enter_phase(uint32_t new_phase);
271
a614cf77
IJ
272void phase_hooks_init(void); /* for main() only */
273
ff05a229
SE
274/* Some features (like netlink 'soft' routes) require that secnet
275 retain root privileges. They should indicate that here when
276 appropriate. */
277extern bool_t require_root_privileges;
fe5e9cc4 278extern cstring_t require_root_privileges_explanation;
9d3a4132 279
64f5ae57
IJ
280/* Some modules may want to know whether secnet is going to drop
281 privilege, so that they know whether to do privsep. Call only
282 in phases SETUP and later. */
283bool_t will_droppriv(void);
284
2fe58dfd
SE
285/***** END of program lifetime support *****/
286
287/***** MODULE support *****/
288
289/* Module initialisation function type - modules export one function of
290 this type which is called to initialise them. For dynamically loaded
291 modules it's called "secnet_module". */
469fd1d9 292typedef void init_module(dict_t *dict);
2fe58dfd 293
08ee90a2
IJ
294extern void init_builtin_modules(dict_t *dict);
295
296extern init_module resolver_module;
297extern init_module random_module;
298extern init_module udp_module;
ce5c098f 299extern init_module polypath_module;
08ee90a2
IJ
300extern init_module util_module;
301extern init_module site_module;
b02b720a 302extern init_module transform_eax_module;
92a7d254 303extern init_module transform_cbcmac_module;
08ee90a2
IJ
304extern init_module netlink_module;
305extern init_module rsa_module;
306extern init_module dh_module;
307extern init_module md5_module;
308extern init_module slip_module;
309extern init_module tun_module;
310extern init_module sha1_module;
311extern init_module log_module;
312
2fe58dfd
SE
313/***** END of module support *****/
314
315/***** CLOSURE TYPES and interface definitions *****/
316
469fd1d9
SE
317#define CL_PURE 0
318#define CL_RESOLVER 1
319#define CL_RANDOMSRC 2
320#define CL_RSAPUBKEY 3
321#define CL_RSAPRIVKEY 4
322#define CL_COMM 5
323#define CL_IPIF 6
324#define CL_LOG 7
325#define CL_SITE 8
326#define CL_TRANSFORM 9
327#define CL_DH 11
328#define CL_HASH 12
329#define CL_BUFFER 13
330#define CL_NETLINK 14
2fe58dfd
SE
331
332struct buffer_if;
333
334/* PURE closure requires no interface */
335
336/* RESOLVER interface */
337
338/* Answers to queries are delivered to a function of this
339 type. 'address' will be NULL if there was a problem with the query. It
cc420616
IJ
340 will be freed once resolve_answer_fn returns. naddrs is the actual
341 size of the array at addrs; was_naddrs is the number of addresses
342 actually found in the DNS, which may be bigger if addrs is equal
343 to MAX_PEER_ADDRS (ie there were too many). */
344typedef void resolve_answer_fn(void *st, const struct comm_addr *addrs,
ec2ae5fa 345 int naddrs, int was_naddrs,
bc07424d
IJ
346 const char *name, const char *failwhy);
347 /* name is the same ptr as passed to request, so its lifetime must
348 * be suitable*/
fe5e9cc4 349typedef bool_t resolve_request_fn(void *st, cstring_t name,
cc420616 350 int remoteport, struct comm_if *comm,
2fe58dfd
SE
351 resolve_answer_fn *cb, void *cst);
352struct resolver_if {
353 void *st;
354 resolve_request_fn *request;
355};
356
357/* RANDOMSRC interface */
358
359/* Return some random data. Returns TRUE for success. */
1caa23ff 360typedef bool_t random_fn(void *st, int32_t bytes, uint8_t *buff);
2fe58dfd
SE
361
362struct random_if {
363 void *st;
364 bool_t blocking;
365 random_fn *generate;
366};
367
368/* RSAPUBKEY interface */
369
1caa23ff 370typedef bool_t rsa_checksig_fn(void *st, uint8_t *data, int32_t datalen,
fe5e9cc4 371 cstring_t signature);
2fe58dfd
SE
372struct rsapubkey_if {
373 void *st;
374 rsa_checksig_fn *check;
375};
376
377/* RSAPRIVKEY interface */
378
1caa23ff 379typedef string_t rsa_makesig_fn(void *st, uint8_t *data, int32_t datalen);
2fe58dfd
SE
380struct rsaprivkey_if {
381 void *st;
382 rsa_makesig_fn *sign;
383};
384
385/* COMM interface */
386
a15faeb2
IJ
387struct comm_addr {
388 /* This struct is pure data; in particular comm's clients may
389 freely copy it. */
a15faeb2 390 struct comm_if *comm;
a32d56fb 391 union iaddr ia;
08b62a6c 392 int ix; /* see comment `Re comm_addr.ix' in udp.c */
a15faeb2
IJ
393};
394
2fe58dfd 395/* Return True if the packet was processed, and shouldn't be passed to
54d5ef00 396 any other potential receivers. (buf is freed iff True returned.) */
2fe58dfd 397typedef bool_t comm_notify_fn(void *state, struct buffer_if *buf,
a15faeb2 398 const struct comm_addr *source);
2fe58dfd
SE
399typedef void comm_request_notify_fn(void *commst, void *nst,
400 comm_notify_fn *fn);
401typedef void comm_release_notify_fn(void *commst, void *nst,
402 comm_notify_fn *fn);
403typedef bool_t comm_sendmsg_fn(void *commst, struct buffer_if *buf,
a15faeb2 404 const struct comm_addr *dest);
855fb066
IJ
405 /* Only returns false if (we know that) the local network
406 * environment is such that this address cannot work; transient
407 * or unknown/unexpected failures return true. */
5edf478f
IJ
408typedef const char *comm_addr_to_string_fn(void *commst,
409 const struct comm_addr *ca);
410 /* Returned string is in a static buffer. */
2fe58dfd
SE
411struct comm_if {
412 void *st;
413 comm_request_notify_fn *request_notify;
414 comm_release_notify_fn *release_notify;
415 comm_sendmsg_fn *sendmsg;
5edf478f 416 comm_addr_to_string_fn *addr_to_string;
2fe58dfd
SE
417};
418
2093fb5c
IJ
419bool_t iaddr_equal(const union iaddr *ia, const union iaddr *ib);
420
1a448682
IJ
421static inline const char *comm_addr_to_string(const struct comm_addr *ca)
422{
423 return ca->comm->addr_to_string(ca->comm->st, ca);
424}
425
2093fb5c
IJ
426static inline bool_t comm_addr_equal(const struct comm_addr *a,
427 const struct comm_addr *b)
428{
429 return a->comm==b->comm && iaddr_equal(&a->ia,&b->ia);
430}
431
2fe58dfd
SE
432/* LOG interface */
433
ff1dcd86
IJ
434#define LOG_MESSAGE_BUFLEN 1023
435
fe5e9cc4
SE
436typedef void log_msg_fn(void *st, int class, const char *message, ...);
437typedef void log_vmsg_fn(void *st, int class, const char *message,
438 va_list args);
2fe58dfd
SE
439struct log_if {
440 void *st;
779837e1 441 log_vmsg_fn *vlogfn; /* printf format checking. Use [v]slilog instead */
ff1dcd86 442 char buff[LOG_MESSAGE_BUFLEN+1];
2fe58dfd 443};
59938e0e 444/* (convenience functions, defined in util.c) */
040ee979 445extern void slilog(struct log_if *lf, int class, const char *message, ...)
4f5e39ec 446FORMAT(printf,3,4);
59938e0e
IJ
447extern void vslilog(struct log_if *lf, int class, const char *message, va_list)
448FORMAT(printf,3,0);
2fe58dfd 449
ff1dcd86
IJ
450/* Versions which take (parts of) (multiple) messages, using \n to
451 * distinguish one message from another. */
452extern void slilog_part(struct log_if *lf, int class, const char *message, ...)
453FORMAT(printf,3,4);
454extern void vslilog_part(struct log_if *lf, int class, const char *message,
455 va_list) FORMAT(printf,3,0);
456
2fe58dfd
SE
457/* SITE interface */
458
459/* Pretty much a placeholder; allows starting and stopping of processing,
460 key expiry, etc. */
461typedef void site_control_fn(void *st, bool_t run);
462typedef uint32_t site_status_fn(void *st);
463struct site_if {
464 void *st;
465 site_control_fn *control;
466 site_status_fn *status;
467};
468
469/* TRANSFORM interface */
470
471/* A reversable transformation. Transforms buffer in-place; may add
3abd18e8 472 data to start or end. (Reverse transformations decrease
2fe58dfd
SE
473 length, of course.) Transformations may be key-dependent, in which
474 case key material is passed in at initialisation time. They may
475 also depend on internal factors (eg. time) and keep internal
476 state. A struct transform_if only represents a particular type of
477 transformation; instances of the transformation (eg. with
0118121a
IJ
478 particular key material) have a different C type. The same
479 secret key will be used in opposite directions between a pair of
480 secnets; one of these pairs will get direction==False, the other True. */
2fe58dfd
SE
481
482typedef struct transform_inst_if *transform_createinstance_fn(void *st);
0118121a
IJ
483typedef bool_t transform_setkey_fn(void *st, uint8_t *key, int32_t keylen,
484 bool_t direction);
b67dab18 485typedef bool_t transform_valid_fn(void *st); /* 0: no key; 1: ok */
2fe58dfd
SE
486typedef void transform_delkey_fn(void *st);
487typedef void transform_destroyinstance_fn(void *st);
07e4774c
IJ
488/* Returns:
489 * 0: all is well
490 * 1: for any other problem
491 * 2: message decrypted but sequence number was out of range
492 */
2fe58dfd 493typedef uint32_t transform_apply_fn(void *st, struct buffer_if *buf,
fe5e9cc4 494 const char **errmsg);
2fe58dfd
SE
495
496struct transform_inst_if {
497 void *st;
498 transform_setkey_fn *setkey;
b67dab18 499 transform_valid_fn *valid;
2fe58dfd
SE
500 transform_delkey_fn *delkey;
501 transform_apply_fn *forwards;
502 transform_apply_fn *reverse;
503 transform_destroyinstance_fn *destroy;
504};
505
506struct transform_if {
507 void *st;
5b5f297f 508 int capab_transformnum;
3abd18e8 509 int32_t keylen; /* <<< INT_MAX */
2fe58dfd
SE
510 transform_createinstance_fn *create;
511};
512
513/* NETLINK interface */
514
70dc107b
SE
515/* Used by netlink to deliver to site, and by site to deliver to
516 netlink. cid is the client identifier returned by
517 netlink_regnets_fn. If buf has size 0 then the function is just
518 being called for its site-effects (eg. making the site code attempt
519 to bring up a network link) */
469fd1d9 520typedef void netlink_deliver_fn(void *st, struct buffer_if *buf);
4efd681a 521/* site code can tell netlink when outgoing packets will be dropped,
70dc107b 522 so netlink can generate appropriate ICMP and make routing decisions */
f208b9a9
IJ
523#define LINK_QUALITY_UNUSED 0 /* This link is unused, do not make this netlink */
524#define LINK_QUALITY_DOWN 1 /* No chance of a packet being delivered right away*/
525#define LINK_QUALITY_DOWN_STALE_ADDRESS 2 /* Link down, old address information */
526#define LINK_QUALITY_DOWN_CURRENT_ADDRESS 3 /* Link down, current address information */
527#define LINK_QUALITY_UP 4 /* Link active */
70dc107b 528#define MAXIMUM_LINK_QUALITY 3
469fd1d9
SE
529typedef void netlink_link_quality_fn(void *st, uint32_t quality);
530typedef void netlink_register_fn(void *st, netlink_deliver_fn *deliver,
1c085348 531 void *dst, uint32_t *localmtu_r /* NULL ok */);
794f2398
SE
532typedef void netlink_output_config_fn(void *st, struct buffer_if *buf);
533typedef bool_t netlink_check_config_fn(void *st, struct buffer_if *buf);
1caa23ff 534typedef void netlink_set_mtu_fn(void *st, int32_t new_mtu);
2fe58dfd
SE
535struct netlink_if {
536 void *st;
469fd1d9 537 netlink_register_fn *reg;
2fe58dfd 538 netlink_deliver_fn *deliver;
70dc107b 539 netlink_link_quality_fn *set_quality;
d3fe100d 540 netlink_set_mtu_fn *set_mtu;
2fe58dfd
SE
541};
542
543/* DH interface */
544
545/* Returns public key as a malloced hex string */
546typedef string_t dh_makepublic_fn(void *st, uint8_t *secret,
1caa23ff 547 int32_t secretlen);
2fe58dfd
SE
548/* Fills buffer (up to buflen) with shared secret */
549typedef void dh_makeshared_fn(void *st, uint8_t *secret,
1caa23ff
IJ
550 int32_t secretlen, cstring_t rempublic,
551 uint8_t *sharedsecret, int32_t buflen);
2fe58dfd
SE
552struct dh_if {
553 void *st;
1caa23ff 554 int32_t len; /* Approximate size of modulus in bytes */
7c9ca4bd 555 int32_t ceil_len; /* Number of bytes just sufficient to contain modulus */
2fe58dfd
SE
556 dh_makepublic_fn *makepublic;
557 dh_makeshared_fn *makeshared;
558};
559
560/* HASH interface */
561
562typedef void *hash_init_fn(void);
babd74ec 563typedef void hash_update_fn(void *st, const void *buf, int32_t len);
2fe58dfd
SE
564typedef void hash_final_fn(void *st, uint8_t *digest);
565struct hash_if {
1caa23ff 566 int32_t len; /* Hash output length in bytes */
2fe58dfd
SE
567 hash_init_fn *init;
568 hash_update_fn *update;
569 hash_final_fn *final;
570};
571
572/* BUFFER interface */
573
574struct buffer_if {
575 bool_t free;
fe5e9cc4 576 cstring_t owner; /* Set to constant string */
2fe58dfd
SE
577 uint32_t flags; /* How paranoid should we be? */
578 struct cloc loc; /* Where we were defined */
579 uint8_t *base;
580 uint8_t *start;
1caa23ff 581 int32_t size; /* Size of buffer contents */
10068344 582 int32_t alloclen; /* Total length allocated at base */
2fe58dfd
SE
583};
584
4f5e39ec
SE
585/***** LOG functions *****/
586
587#define M_DEBUG_CONFIG 0x001
588#define M_DEBUG_PHASE 0x002
589#define M_DEBUG 0x004
590#define M_INFO 0x008
591#define M_NOTICE 0x010
592#define M_WARNING 0x020
593#define M_ERR 0x040
594#define M_SECURITY 0x080
595#define M_FATAL 0x100
596
597/* The fatal() family of functions require messages that do not end in '\n' */
779837e1
IJ
598extern NORETURN(fatal(const char *message, ...)) FORMAT(printf,1,2);
599extern NORETURN(fatal_perror(const char *message, ...)) FORMAT(printf,1,2);
600extern NORETURN(fatal_status(int status, const char *message, ...))
601 FORMAT(printf,2,3);
602extern NORETURN(fatal_perror_status(int status, const char *message, ...))
603 FORMAT(printf,2,3);
4f5e39ec 604
f1393100
IJ
605/* Convenient nonfatal logging. Requires message that does not end in '\n'.
606 * If class contains M_FATAL, exits (after entering PHASE_SHUTDOWN).
607 * lg, errnoval and loc may sensibly be 0. desc must NOT be 0.
608 * lg_[v]perror save and restore errno. */
609void lg_vperror(struct log_if *lg, const char *desc, struct cloc *loc,
610 int class, int errnoval, const char *fmt, va_list al)
611 FORMAT(printf,6,0);
612void lg_perror(struct log_if *lg, const char *desc, struct cloc *loc,
613 int class, int errnoval, const char *fmt, ...)
614 FORMAT(printf,6,7);
45736f73
IJ
615void lg_exitstatus(struct log_if *lg, const char *desc, struct cloc *loc,
616 int class, int status, const char *progname);
f1393100 617
4f5e39ec 618/* The cfgfatal() family of functions require messages that end in '\n' */
fe5e9cc4 619extern NORETURN(cfgfatal(struct cloc loc, cstring_t facility,
779837e1 620 const char *message, ...)) FORMAT(printf,3,4);
4f5e39ec
SE
621extern void cfgfile_postreadcheck(struct cloc loc, FILE *f);
622extern NORETURN(vcfgfatal_maybefile(FILE *maybe_f, struct cloc loc,
fe5e9cc4 623 cstring_t facility, const char *message,
779837e1
IJ
624 va_list))
625 FORMAT(printf,4,0);
4f5e39ec 626extern NORETURN(cfgfatal_maybefile(FILE *maybe_f, struct cloc loc,
fe5e9cc4 627 cstring_t facility,
779837e1
IJ
628 const char *message, ...))
629 FORMAT(printf,4,5);
4f5e39ec 630
fe5e9cc4
SE
631extern void Message(uint32_t class, const char *message, ...)
632 FORMAT(printf,2,3);
633extern void log_from_fd(int fd, cstring_t prefix, struct log_if *log);
4f5e39ec
SE
634
635/***** END of log functions *****/
636
45cfab8c
IJ
637#define STRING2(x) #x
638#define STRING(x) STRING2(x)
639
076bb54e 640#define FILLZERO(obj) (memset(&(obj),0,sizeof((obj))))
9c99fe6a 641#define ARRAY_SIZE(ary) (sizeof((ary))/sizeof((ary)[0]))
076bb54e 642
8438de14
IJ
643/*
644 * void COPY_OBJ( OBJECT& dst, const OBJECT& src);
645 * void COPY_ARRAY(OBJECT *dst, const OBJECT *src, INTEGER count);
646 * // Typesafe: we check that the type OBJECT is the same in both cases.
647 * // It is OK to use COPY_OBJ on an array object, provided it's
648 * // _actually_ the whole array object and not decayed into a
649 * // pointer (e.g. a formal parameter).
650 */
651#define COPY_OBJ(dst,src) \
652 (&(dst)==&(src), memcpy(&(dst),&(src),sizeof((dst))))
653#define COPY_ARRAY(dst,src,count) \
654 (&(dst)[0]==&(src)[0], memcpy((dst),(src),sizeof((dst)[0])*(count)))
655
2fe58dfd 656#endif /* secnet_h */