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