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