integer arithmetic types: make get_uint32, get_uint16 return the correct type
[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>
2fe58dfd 10#include <sys/poll.h>
8689b3a9
SE
11#include <sys/types.h>
12#include <sys/time.h>
2fe58dfd 13#include <netinet/in.h>
2fe58dfd 14
3b83c932
SE
15/*
16 * Macros added by SGT for endianness-independence
17 */
18#define GET_32BIT_MSB_FIRST(cp) \
19 (((unsigned long)(unsigned char)(cp)[0] << 24) | \
20 ((unsigned long)(unsigned char)(cp)[1] << 16) | \
21 ((unsigned long)(unsigned char)(cp)[2] << 8) | \
22 ((unsigned long)(unsigned char)(cp)[3]))
23
24#define PUT_32BIT_MSB_FIRST(cp, value) ( \
25 (cp)[0] = (char)((value) >> 24), \
26 (cp)[1] = (char)((value) >> 16), \
27 (cp)[2] = (char)((value) >> 8), \
28 (cp)[3] = (char)(value) )
29
2fe58dfd 30typedef char *string_t;
fe5e9cc4 31typedef const char *cstring_t;
2fe58dfd
SE
32typedef enum {False,True} bool_t;
33
794f2398 34#define ASSERT(x) do { if (!(x)) { fatal("assertion failed line %d file " \
4f5e39ec 35 __FILE__,__LINE__); } } while(0)
2fe58dfd 36
fcbc5905
IJ
37/* from version.c */
38
39extern char version[];
40
08ee90a2
IJ
41/* from logmsg.c */
42extern uint32_t message_level;
43extern bool_t secnet_is_daemon;
44extern struct log_if *system_log;
45
46/* from process.c */
47extern void start_signal_handling(void);
48
2fe58dfd
SE
49/***** CONFIGURATION support *****/
50
baa06aeb
SE
51extern bool_t just_check_config; /* If True then we're going to exit after
52 reading the configuration file */
b2a56f7c 53extern bool_t background; /* If True then we'll eventually run as a daemon */
baa06aeb 54
2fe58dfd
SE
55typedef struct dict dict_t; /* Configuration dictionary */
56typedef struct closure closure_t;
57typedef struct item item_t;
58typedef struct list list_t; /* A list of items */
59
60/* Configuration file location, for error-reporting */
61struct cloc {
fe5e9cc4 62 cstring_t file;
2fe58dfd
SE
63 uint32_t line;
64};
65
66/* Modules export closures, which can be invoked from the configuration file.
67 "Invoking" a closure usually returns another closure (of a different
68 type), but can actually return any configuration object. */
69typedef list_t *(apply_fn)(closure_t *self, struct cloc loc,
70 dict_t *context, list_t *data);
71struct closure {
fe5e9cc4 72 cstring_t description; /* For debugging */
2fe58dfd
SE
73 uint32_t type; /* Central registry... */
74 apply_fn *apply;
75 void *interface; /* Interface for use inside secnet; depends on type */
76};
77
78enum types { t_null, t_bool, t_string, t_number, t_dict, t_closure };
79struct item {
80 enum types type;
81 union {
82 bool_t bool;
83 string_t string;
84 uint32_t number;
85 dict_t *dict;
86 closure_t *closure;
87 } data;
88 struct cloc loc;
89};
90
ff05a229
SE
91/* Note that it is unwise to use this structure directly; use the list
92 manipulation functions instead. */
2fe58dfd
SE
93struct list {
94 item_t *item;
95 struct list *next;
96};
97
98/* In the following two lookup functions, NULL means 'not found' */
99/* Lookup a value in the specified dictionary, or its parents */
fe5e9cc4 100extern list_t *dict_lookup(dict_t *dict, cstring_t key);
2fe58dfd 101/* Lookup a value in just the specified dictionary */
fe5e9cc4 102extern list_t *dict_lookup_primitive(dict_t *dict, cstring_t key);
2fe58dfd 103/* Add a value to the specified dictionary */
fe5e9cc4 104extern void dict_add(dict_t *dict, cstring_t key, list_t *val);
2fe58dfd 105/* Obtain an array of keys in the dictionary. malloced; caller frees */
fe5e9cc4 106extern cstring_t *dict_keys(dict_t *dict);
2fe58dfd
SE
107
108/* List-manipulation functions */
109extern list_t *list_new(void);
b2a56f7c 110extern uint32_t list_length(list_t *a);
2fe58dfd
SE
111extern list_t *list_append(list_t *a, item_t *i);
112extern list_t *list_append_list(list_t *a, list_t *b);
113/* Returns an item from the list (index starts at 0), or NULL */
114extern item_t *list_elem(list_t *l, uint32_t index);
115
116/* Convenience functions */
117extern list_t *new_closure(closure_t *cl);
fe5e9cc4
SE
118extern void add_closure(dict_t *dict, cstring_t name, apply_fn apply);
119extern void *find_cl_if(dict_t *dict, cstring_t name, uint32_t type,
120 bool_t fail_if_invalid, cstring_t desc,
2fe58dfd 121 struct cloc loc);
fe5e9cc4
SE
122extern item_t *dict_find_item(dict_t *dict, cstring_t key, bool_t required,
123 cstring_t desc, struct cloc loc);
124extern string_t dict_read_string(dict_t *dict, cstring_t key, bool_t required,
125 cstring_t desc, struct cloc loc);
126extern uint32_t dict_read_number(dict_t *dict, cstring_t key, bool_t required,
127 cstring_t desc, struct cloc loc,
128 uint32_t def);
59230b9b 129 /* return value can safely be assigned to int32_t */
fe5e9cc4
SE
130extern bool_t dict_read_bool(dict_t *dict, cstring_t key, bool_t required,
131 cstring_t desc, struct cloc loc, bool_t def);
9d3a4132 132struct flagstr {
fe5e9cc4 133 cstring_t name;
9d3a4132
SE
134 uint32_t value;
135};
fe5e9cc4
SE
136extern uint32_t string_to_word(cstring_t s, struct cloc loc,
137 struct flagstr *f, cstring_t desc);
9d3a4132 138extern uint32_t string_list_to_word(list_t *l, struct flagstr *f,
fe5e9cc4 139 cstring_t desc);
2fe58dfd
SE
140
141/***** END of configuration support *****/
142
7138d0c5
SE
143/***** UTILITY functions *****/
144
fe5e9cc4
SE
145extern char *safe_strdup(const char *string, const char *message);
146extern void *safe_malloc(size_t size, const char *message);
bb9d0561 147extern void *safe_malloc_ary(size_t size, size_t count, const char *message);
2fe58dfd 148
fe5e9cc4 149extern int sys_cmd(const char *file, const char *argc, ...);
4efd681a 150
2fe58dfd
SE
151/***** END of utility functions *****/
152
153/***** SCHEDULING support */
154
155/* "now" is current program time, in milliseconds. It is derived
156 (once) from tv_now. If nfds_io is insufficient for your needs, set
157 it to the required number and return ERANGE. timeout is in milliseconds;
158 if it is too high then lower it. It starts at -1 (==infinite) */
159typedef int beforepoll_fn(void *st, struct pollfd *fds, int *nfds_io,
160 int *timeout_io, const struct timeval *tv_now,
161 uint64_t *now);
162typedef void afterpoll_fn(void *st, struct pollfd *fds, int nfds,
163 const struct timeval *tv_now, uint64_t *now);
164
165/* Register interest in the main loop of the program. Before a call
166 to poll() your supplied beforepoll function will be called. After
167 the call to poll() the supplied afterpoll function will be called.
168 max_nfds is a _hint_ about the maximum number of struct pollfd
169 structures you may require - you can always ask for more in
170 *nfds_io. */
171extern void register_for_poll(void *st, beforepoll_fn *before,
172 afterpoll_fn *after, uint32_t max_nfds,
fe5e9cc4 173 cstring_t desc);
2fe58dfd
SE
174
175/***** END of scheduling support */
176
177/***** PROGRAM LIFETIME support */
178
179/* The secnet program goes through a number of phases in its lifetime.
180 Module code may arrange to be called just as various phases are
181 entered. */
182
183#define PHASE_INIT 0
184#define PHASE_GETOPTS 1 /* Process command-line arguments */
185#define PHASE_READCONFIG 2 /* Parse and process configuration file */
186#define PHASE_SETUP 3 /* Process information in configuration */
baa06aeb
SE
187#define PHASE_GETRESOURCES 4 /* Obtain all external resources */
188#define PHASE_DROPPRIV 5 /* Last chance for privileged operations */
189#define PHASE_RUN 6
190#define PHASE_SHUTDOWN 7 /* About to die; delete key material, etc. */
191#define NR_PHASES 8
2fe58dfd
SE
192
193typedef void hook_fn(void *self, uint32_t newphase);
194bool_t add_hook(uint32_t phase, hook_fn *f, void *state);
195bool_t remove_hook(uint32_t phase, hook_fn *f, void *state);
196
7138d0c5
SE
197extern uint32_t current_phase;
198extern void enter_phase(uint32_t new_phase);
199
ff05a229
SE
200/* Some features (like netlink 'soft' routes) require that secnet
201 retain root privileges. They should indicate that here when
202 appropriate. */
203extern bool_t require_root_privileges;
fe5e9cc4 204extern cstring_t require_root_privileges_explanation;
9d3a4132 205
2fe58dfd
SE
206/***** END of program lifetime support *****/
207
208/***** MODULE support *****/
209
210/* Module initialisation function type - modules export one function of
211 this type which is called to initialise them. For dynamically loaded
212 modules it's called "secnet_module". */
469fd1d9 213typedef void init_module(dict_t *dict);
2fe58dfd 214
08ee90a2
IJ
215extern void init_builtin_modules(dict_t *dict);
216
217extern init_module resolver_module;
218extern init_module random_module;
219extern init_module udp_module;
220extern init_module util_module;
221extern init_module site_module;
222extern init_module transform_module;
223extern init_module netlink_module;
224extern init_module rsa_module;
225extern init_module dh_module;
226extern init_module md5_module;
227extern init_module slip_module;
228extern init_module tun_module;
229extern init_module sha1_module;
230extern init_module log_module;
231
2fe58dfd
SE
232/***** END of module support *****/
233
234/***** CLOSURE TYPES and interface definitions *****/
235
469fd1d9
SE
236#define CL_PURE 0
237#define CL_RESOLVER 1
238#define CL_RANDOMSRC 2
239#define CL_RSAPUBKEY 3
240#define CL_RSAPRIVKEY 4
241#define CL_COMM 5
242#define CL_IPIF 6
243#define CL_LOG 7
244#define CL_SITE 8
245#define CL_TRANSFORM 9
246#define CL_DH 11
247#define CL_HASH 12
248#define CL_BUFFER 13
249#define CL_NETLINK 14
2fe58dfd
SE
250
251struct buffer_if;
252
253/* PURE closure requires no interface */
254
255/* RESOLVER interface */
256
257/* Answers to queries are delivered to a function of this
258 type. 'address' will be NULL if there was a problem with the query. It
259 will be freed once resolve_answer_fn returns. It is in network byte
260 order. */
ff05a229 261/* XXX extend to be able to provide multiple answers */
2fe58dfd 262typedef void resolve_answer_fn(void *st, struct in_addr *addr);
fe5e9cc4 263typedef bool_t resolve_request_fn(void *st, cstring_t name,
2fe58dfd
SE
264 resolve_answer_fn *cb, void *cst);
265struct resolver_if {
266 void *st;
267 resolve_request_fn *request;
268};
269
270/* RANDOMSRC interface */
271
272/* Return some random data. Returns TRUE for success. */
273typedef bool_t random_fn(void *st, uint32_t bytes, uint8_t *buff);
274
275struct random_if {
276 void *st;
277 bool_t blocking;
278 random_fn *generate;
279};
280
281/* RSAPUBKEY interface */
282
283typedef bool_t rsa_checksig_fn(void *st, uint8_t *data, uint32_t datalen,
fe5e9cc4 284 cstring_t signature);
2fe58dfd
SE
285struct rsapubkey_if {
286 void *st;
287 rsa_checksig_fn *check;
288};
289
290/* RSAPRIVKEY interface */
291
292typedef string_t rsa_makesig_fn(void *st, uint8_t *data, uint32_t datalen);
293struct rsaprivkey_if {
294 void *st;
295 rsa_makesig_fn *sign;
296};
297
298/* COMM interface */
299
300/* Return True if the packet was processed, and shouldn't be passed to
301 any other potential receivers. */
302typedef bool_t comm_notify_fn(void *state, struct buffer_if *buf,
303 struct sockaddr_in *source);
304typedef void comm_request_notify_fn(void *commst, void *nst,
305 comm_notify_fn *fn);
306typedef void comm_release_notify_fn(void *commst, void *nst,
307 comm_notify_fn *fn);
308typedef bool_t comm_sendmsg_fn(void *commst, struct buffer_if *buf,
309 struct sockaddr_in *dest);
310struct comm_if {
311 void *st;
ff05a229
SE
312 uint32_t min_start_pad;
313 uint32_t min_end_pad;
2fe58dfd
SE
314 comm_request_notify_fn *request_notify;
315 comm_release_notify_fn *release_notify;
316 comm_sendmsg_fn *sendmsg;
317};
318
319/* LOG interface */
320
fe5e9cc4
SE
321typedef void log_msg_fn(void *st, int class, const char *message, ...);
322typedef void log_vmsg_fn(void *st, int class, const char *message,
323 va_list args);
2fe58dfd
SE
324struct log_if {
325 void *st;
326 log_msg_fn *log;
327 log_vmsg_fn *vlog;
328};
59938e0e 329/* (convenience functions, defined in util.c) */
040ee979 330extern void slilog(struct log_if *lf, int class, const char *message, ...)
4f5e39ec 331FORMAT(printf,3,4);
59938e0e
IJ
332extern void vslilog(struct log_if *lf, int class, const char *message, va_list)
333FORMAT(printf,3,0);
2fe58dfd
SE
334
335/* SITE interface */
336
337/* Pretty much a placeholder; allows starting and stopping of processing,
338 key expiry, etc. */
339typedef void site_control_fn(void *st, bool_t run);
340typedef uint32_t site_status_fn(void *st);
341struct site_if {
342 void *st;
343 site_control_fn *control;
344 site_status_fn *status;
345};
346
347/* TRANSFORM interface */
348
349/* A reversable transformation. Transforms buffer in-place; may add
350 data to start or end. Maximum amount of data to be added specified
351 in max_start_pad and max_end_pad. (Reverse transformations decrease
352 length, of course.) Transformations may be key-dependent, in which
353 case key material is passed in at initialisation time. They may
354 also depend on internal factors (eg. time) and keep internal
355 state. A struct transform_if only represents a particular type of
356 transformation; instances of the transformation (eg. with
357 particular key material) have a different C type. */
358
359typedef struct transform_inst_if *transform_createinstance_fn(void *st);
360typedef bool_t transform_setkey_fn(void *st, uint8_t *key, uint32_t keylen);
361typedef void transform_delkey_fn(void *st);
362typedef void transform_destroyinstance_fn(void *st);
363/* Returns 0 for 'all is well', any other value for a problem */
364typedef uint32_t transform_apply_fn(void *st, struct buffer_if *buf,
fe5e9cc4 365 const char **errmsg);
2fe58dfd
SE
366
367struct transform_inst_if {
368 void *st;
369 transform_setkey_fn *setkey;
370 transform_delkey_fn *delkey;
371 transform_apply_fn *forwards;
372 transform_apply_fn *reverse;
373 transform_destroyinstance_fn *destroy;
374};
375
376struct transform_if {
377 void *st;
378 uint32_t max_start_pad;
379 uint32_t max_end_pad;
380 uint32_t keylen;
381 transform_createinstance_fn *create;
382};
383
384/* NETLINK interface */
385
70dc107b
SE
386/* Used by netlink to deliver to site, and by site to deliver to
387 netlink. cid is the client identifier returned by
388 netlink_regnets_fn. If buf has size 0 then the function is just
389 being called for its site-effects (eg. making the site code attempt
390 to bring up a network link) */
469fd1d9 391typedef void netlink_deliver_fn(void *st, struct buffer_if *buf);
4efd681a 392/* site code can tell netlink when outgoing packets will be dropped,
70dc107b
SE
393 so netlink can generate appropriate ICMP and make routing decisions */
394#define LINK_QUALITY_DOWN 0 /* No chance of a packet being delivered */
395#define LINK_QUALITY_DOWN_STALE_ADDRESS 1 /* Link down, old address information */
396#define LINK_QUALITY_DOWN_CURRENT_ADDRESS 2 /* Link down, current address information */
397#define LINK_QUALITY_UP 3 /* Link active */
398#define MAXIMUM_LINK_QUALITY 3
469fd1d9
SE
399typedef void netlink_link_quality_fn(void *st, uint32_t quality);
400typedef void netlink_register_fn(void *st, netlink_deliver_fn *deliver,
401 void *dst, uint32_t max_start_pad,
402 uint32_t max_end_pad);
794f2398
SE
403typedef void netlink_output_config_fn(void *st, struct buffer_if *buf);
404typedef bool_t netlink_check_config_fn(void *st, struct buffer_if *buf);
d3fe100d 405typedef void netlink_set_mtu_fn(void *st, uint32_t new_mtu);
2fe58dfd
SE
406struct netlink_if {
407 void *st;
469fd1d9 408 netlink_register_fn *reg;
2fe58dfd 409 netlink_deliver_fn *deliver;
70dc107b 410 netlink_link_quality_fn *set_quality;
794f2398
SE
411 netlink_output_config_fn *output_config;
412 netlink_check_config_fn *check_config;
d3fe100d 413 netlink_set_mtu_fn *set_mtu;
2fe58dfd
SE
414};
415
416/* DH interface */
417
418/* Returns public key as a malloced hex string */
419typedef string_t dh_makepublic_fn(void *st, uint8_t *secret,
420 uint32_t secretlen);
421/* Fills buffer (up to buflen) with shared secret */
422typedef void dh_makeshared_fn(void *st, uint8_t *secret,
fe5e9cc4 423 uint32_t secretlen, cstring_t rempublic,
2fe58dfd
SE
424 uint8_t *sharedsecret, uint32_t buflen);
425struct dh_if {
426 void *st;
427 uint32_t len; /* Approximate size of modulus in bytes */
428 dh_makepublic_fn *makepublic;
429 dh_makeshared_fn *makeshared;
430};
431
432/* HASH interface */
433
434typedef void *hash_init_fn(void);
435typedef void hash_update_fn(void *st, uint8_t const *buf, uint32_t len);
436typedef void hash_final_fn(void *st, uint8_t *digest);
437struct hash_if {
438 uint32_t len; /* Hash output length in bytes */
439 hash_init_fn *init;
440 hash_update_fn *update;
441 hash_final_fn *final;
442};
443
444/* BUFFER interface */
445
446struct buffer_if {
447 bool_t free;
fe5e9cc4 448 cstring_t owner; /* Set to constant string */
2fe58dfd
SE
449 uint32_t flags; /* How paranoid should we be? */
450 struct cloc loc; /* Where we were defined */
451 uint8_t *base;
452 uint8_t *start;
453 uint32_t size; /* Size of buffer contents */
454 uint32_t len; /* Total length allocated at base */
455};
456
4f5e39ec
SE
457/***** LOG functions *****/
458
459#define M_DEBUG_CONFIG 0x001
460#define M_DEBUG_PHASE 0x002
461#define M_DEBUG 0x004
462#define M_INFO 0x008
463#define M_NOTICE 0x010
464#define M_WARNING 0x020
465#define M_ERR 0x040
466#define M_SECURITY 0x080
467#define M_FATAL 0x100
468
469/* The fatal() family of functions require messages that do not end in '\n' */
fe5e9cc4
SE
470extern NORETURN(fatal(const char *message, ...));
471extern NORETURN(fatal_perror(const char *message, ...));
472extern NORETURN(fatal_status(int status, const char *message, ...));
473extern NORETURN(fatal_perror_status(int status, const char *message, ...));
4f5e39ec
SE
474
475/* The cfgfatal() family of functions require messages that end in '\n' */
fe5e9cc4
SE
476extern NORETURN(cfgfatal(struct cloc loc, cstring_t facility,
477 const char *message, ...));
4f5e39ec
SE
478extern void cfgfile_postreadcheck(struct cloc loc, FILE *f);
479extern NORETURN(vcfgfatal_maybefile(FILE *maybe_f, struct cloc loc,
fe5e9cc4 480 cstring_t facility, const char *message,
4f5e39ec
SE
481 va_list));
482extern NORETURN(cfgfatal_maybefile(FILE *maybe_f, struct cloc loc,
fe5e9cc4
SE
483 cstring_t facility,
484 const char *message, ...));
4f5e39ec 485
fe5e9cc4
SE
486extern void Message(uint32_t class, const char *message, ...)
487 FORMAT(printf,2,3);
488extern void log_from_fd(int fd, cstring_t prefix, struct log_if *log);
4f5e39ec
SE
489
490/***** END of log functions *****/
491
2fe58dfd 492#endif /* secnet_h */