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