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