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