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