fds: Simplify fd close condition in tun_set_route
[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
IJ
141void setcloexec(int fd); /* cannot fail */
142
fe5e9cc4 143extern int sys_cmd(const char *file, const char *argc, ...);
4efd681a 144
698280de
IJ
145extern uint64_t now_global;
146extern struct timeval tv_now_global;
147
148static const uint64_t *const now = &now_global;
149static const struct timeval *const tv_now = &tv_now_global;
150
151/* "now" is current program time, in milliseconds. It is derived
152 from tv_now. Both are provided by the event loop. */
153
2fe58dfd
SE
154/***** END of utility functions *****/
155
3abd18e8
IJ
156/***** START of max_start_pad handling *****/
157
158extern int32_t site_max_start_pad, transform_max_start_pad,
159 comm_max_start_pad;
160
161void update_max_start_pad(int32_t *our_module_global, int32_t our_instance);
162int32_t calculate_max_start_pad(void);
163
164/***** END of max_start_pad handling *****/
165
2fe58dfd
SE
166/***** SCHEDULING support */
167
90a39563
IJ
168/* If nfds_io is insufficient for your needs, set it to the required
169 number and return ERANGE. timeout is in milliseconds; if it is too
170 high then lower it. It starts at -1 (==infinite) */
2fe58dfd 171typedef int beforepoll_fn(void *st, struct pollfd *fds, int *nfds_io,
90a39563
IJ
172 int *timeout_io);
173typedef void afterpoll_fn(void *st, struct pollfd *fds, int nfds);
2fe58dfd
SE
174
175/* Register interest in the main loop of the program. Before a call
176 to poll() your supplied beforepoll function will be called. After
177 the call to poll() the supplied afterpoll function will be called.
178 max_nfds is a _hint_ about the maximum number of struct pollfd
179 structures you may require - you can always ask for more in
180 *nfds_io. */
181extern void register_for_poll(void *st, beforepoll_fn *before,
1caa23ff 182 afterpoll_fn *after, int32_t max_nfds,
fe5e9cc4 183 cstring_t desc);
2fe58dfd
SE
184
185/***** END of scheduling support */
186
187/***** PROGRAM LIFETIME support */
188
189/* The secnet program goes through a number of phases in its lifetime.
190 Module code may arrange to be called just as various phases are
7b1a9fb7
RK
191 entered.
192
193 Remember to update the table in util.c if changing the set of
194 phases. */
2fe58dfd 195
42394c37
RK
196enum phase {
197 PHASE_INIT,
198 PHASE_GETOPTS, /* Process command-line arguments */
199 PHASE_READCONFIG, /* Parse and process configuration file */
200 PHASE_SETUP, /* Process information in configuration */
7b1a9fb7 201 PHASE_DAEMONIZE, /* Become a daemon (if necessary) */
42394c37
RK
202 PHASE_GETRESOURCES, /* Obtain all external resources */
203 PHASE_DROPPRIV, /* Last chance for privileged operations */
204 PHASE_RUN,
205 PHASE_SHUTDOWN, /* About to die; delete key material, etc. */
206 /* Keep this last: */
207 NR_PHASES,
208};
2fe58dfd
SE
209
210typedef void hook_fn(void *self, uint32_t newphase);
211bool_t add_hook(uint32_t phase, hook_fn *f, void *state);
212bool_t remove_hook(uint32_t phase, hook_fn *f, void *state);
213
7138d0c5
SE
214extern uint32_t current_phase;
215extern void enter_phase(uint32_t new_phase);
216
ff05a229
SE
217/* Some features (like netlink 'soft' routes) require that secnet
218 retain root privileges. They should indicate that here when
219 appropriate. */
220extern bool_t require_root_privileges;
fe5e9cc4 221extern cstring_t require_root_privileges_explanation;
9d3a4132 222
2fe58dfd
SE
223/***** END of program lifetime support *****/
224
225/***** MODULE support *****/
226
227/* Module initialisation function type - modules export one function of
228 this type which is called to initialise them. For dynamically loaded
229 modules it's called "secnet_module". */
469fd1d9 230typedef void init_module(dict_t *dict);
2fe58dfd 231
08ee90a2
IJ
232extern void init_builtin_modules(dict_t *dict);
233
234extern init_module resolver_module;
235extern init_module random_module;
236extern init_module udp_module;
237extern init_module util_module;
238extern init_module site_module;
b02b720a 239extern init_module transform_eax_module;
92a7d254 240extern init_module transform_cbcmac_module;
08ee90a2
IJ
241extern init_module netlink_module;
242extern init_module rsa_module;
243extern init_module dh_module;
244extern init_module md5_module;
245extern init_module slip_module;
246extern init_module tun_module;
247extern init_module sha1_module;
248extern init_module log_module;
249
2fe58dfd
SE
250/***** END of module support *****/
251
252/***** CLOSURE TYPES and interface definitions *****/
253
469fd1d9
SE
254#define CL_PURE 0
255#define CL_RESOLVER 1
256#define CL_RANDOMSRC 2
257#define CL_RSAPUBKEY 3
258#define CL_RSAPRIVKEY 4
259#define CL_COMM 5
260#define CL_IPIF 6
261#define CL_LOG 7
262#define CL_SITE 8
263#define CL_TRANSFORM 9
264#define CL_DH 11
265#define CL_HASH 12
266#define CL_BUFFER 13
267#define CL_NETLINK 14
2fe58dfd
SE
268
269struct buffer_if;
270
271/* PURE closure requires no interface */
272
273/* RESOLVER interface */
274
275/* Answers to queries are delivered to a function of this
276 type. 'address' will be NULL if there was a problem with the query. It
277 will be freed once resolve_answer_fn returns. It is in network byte
278 order. */
ff05a229 279/* XXX extend to be able to provide multiple answers */
2fe58dfd 280typedef void resolve_answer_fn(void *st, struct in_addr *addr);
fe5e9cc4 281typedef bool_t resolve_request_fn(void *st, cstring_t name,
2fe58dfd
SE
282 resolve_answer_fn *cb, void *cst);
283struct resolver_if {
284 void *st;
285 resolve_request_fn *request;
286};
287
288/* RANDOMSRC interface */
289
290/* Return some random data. Returns TRUE for success. */
1caa23ff 291typedef bool_t random_fn(void *st, int32_t bytes, uint8_t *buff);
2fe58dfd
SE
292
293struct random_if {
294 void *st;
295 bool_t blocking;
296 random_fn *generate;
297};
298
299/* RSAPUBKEY interface */
300
1caa23ff 301typedef bool_t rsa_checksig_fn(void *st, uint8_t *data, int32_t datalen,
fe5e9cc4 302 cstring_t signature);
2fe58dfd
SE
303struct rsapubkey_if {
304 void *st;
305 rsa_checksig_fn *check;
306};
307
308/* RSAPRIVKEY interface */
309
1caa23ff 310typedef string_t rsa_makesig_fn(void *st, uint8_t *data, int32_t datalen);
2fe58dfd
SE
311struct rsaprivkey_if {
312 void *st;
313 rsa_makesig_fn *sign;
314};
315
316/* COMM interface */
317
a15faeb2
IJ
318struct comm_addr {
319 /* This struct is pure data; in particular comm's clients may
320 freely copy it. */
321 /* Everyone is also guaranteed that all padding is set to zero, ie
322 that comm_addrs referring to semantically identical peers will
323 compare equal with memcmp. Anyone who constructs a comm_addr
324 must start by memsetting it with FILLZERO, or some
325 equivalent. */
326 struct comm_if *comm;
327 struct sockaddr_in sin;
328};
329
2fe58dfd
SE
330/* Return True if the packet was processed, and shouldn't be passed to
331 any other potential receivers. */
332typedef bool_t comm_notify_fn(void *state, struct buffer_if *buf,
a15faeb2 333 const struct comm_addr *source);
2fe58dfd
SE
334typedef void comm_request_notify_fn(void *commst, void *nst,
335 comm_notify_fn *fn);
336typedef void comm_release_notify_fn(void *commst, void *nst,
337 comm_notify_fn *fn);
338typedef bool_t comm_sendmsg_fn(void *commst, struct buffer_if *buf,
a15faeb2 339 const struct comm_addr *dest);
5edf478f
IJ
340typedef const char *comm_addr_to_string_fn(void *commst,
341 const struct comm_addr *ca);
342 /* Returned string is in a static buffer. */
2fe58dfd
SE
343struct comm_if {
344 void *st;
345 comm_request_notify_fn *request_notify;
346 comm_release_notify_fn *release_notify;
347 comm_sendmsg_fn *sendmsg;
5edf478f 348 comm_addr_to_string_fn *addr_to_string;
2fe58dfd
SE
349};
350
1a448682
IJ
351static inline const char *comm_addr_to_string(const struct comm_addr *ca)
352{
353 return ca->comm->addr_to_string(ca->comm->st, ca);
354}
355
2fe58dfd
SE
356/* LOG interface */
357
ff1dcd86
IJ
358#define LOG_MESSAGE_BUFLEN 1023
359
fe5e9cc4
SE
360typedef void log_msg_fn(void *st, int class, const char *message, ...);
361typedef void log_vmsg_fn(void *st, int class, const char *message,
362 va_list args);
2fe58dfd
SE
363struct log_if {
364 void *st;
779837e1 365 log_vmsg_fn *vlogfn; /* printf format checking. Use [v]slilog instead */
ff1dcd86 366 char buff[LOG_MESSAGE_BUFLEN+1];
2fe58dfd 367};
59938e0e 368/* (convenience functions, defined in util.c) */
040ee979 369extern void slilog(struct log_if *lf, int class, const char *message, ...)
4f5e39ec 370FORMAT(printf,3,4);
59938e0e
IJ
371extern void vslilog(struct log_if *lf, int class, const char *message, va_list)
372FORMAT(printf,3,0);
2fe58dfd 373
ff1dcd86
IJ
374/* Versions which take (parts of) (multiple) messages, using \n to
375 * distinguish one message from another. */
376extern void slilog_part(struct log_if *lf, int class, const char *message, ...)
377FORMAT(printf,3,4);
378extern void vslilog_part(struct log_if *lf, int class, const char *message,
379 va_list) FORMAT(printf,3,0);
380
2fe58dfd
SE
381/* SITE interface */
382
383/* Pretty much a placeholder; allows starting and stopping of processing,
384 key expiry, etc. */
385typedef void site_control_fn(void *st, bool_t run);
386typedef uint32_t site_status_fn(void *st);
387struct site_if {
388 void *st;
389 site_control_fn *control;
390 site_status_fn *status;
391};
392
393/* TRANSFORM interface */
394
395/* A reversable transformation. Transforms buffer in-place; may add
3abd18e8 396 data to start or end. (Reverse transformations decrease
2fe58dfd
SE
397 length, of course.) Transformations may be key-dependent, in which
398 case key material is passed in at initialisation time. They may
399 also depend on internal factors (eg. time) and keep internal
400 state. A struct transform_if only represents a particular type of
401 transformation; instances of the transformation (eg. with
0118121a
IJ
402 particular key material) have a different C type. The same
403 secret key will be used in opposite directions between a pair of
404 secnets; one of these pairs will get direction==False, the other True. */
2fe58dfd
SE
405
406typedef struct transform_inst_if *transform_createinstance_fn(void *st);
0118121a
IJ
407typedef bool_t transform_setkey_fn(void *st, uint8_t *key, int32_t keylen,
408 bool_t direction);
b67dab18 409typedef bool_t transform_valid_fn(void *st); /* 0: no key; 1: ok */
2fe58dfd
SE
410typedef void transform_delkey_fn(void *st);
411typedef void transform_destroyinstance_fn(void *st);
07e4774c
IJ
412/* Returns:
413 * 0: all is well
414 * 1: for any other problem
415 * 2: message decrypted but sequence number was out of range
416 */
2fe58dfd 417typedef uint32_t transform_apply_fn(void *st, struct buffer_if *buf,
fe5e9cc4 418 const char **errmsg);
2fe58dfd
SE
419
420struct transform_inst_if {
421 void *st;
422 transform_setkey_fn *setkey;
b67dab18 423 transform_valid_fn *valid;
2fe58dfd
SE
424 transform_delkey_fn *delkey;
425 transform_apply_fn *forwards;
426 transform_apply_fn *reverse;
427 transform_destroyinstance_fn *destroy;
428};
429
430struct transform_if {
431 void *st;
5b5f297f 432 int capab_transformnum;
3abd18e8 433 int32_t keylen; /* <<< INT_MAX */
2fe58dfd
SE
434 transform_createinstance_fn *create;
435};
436
437/* NETLINK interface */
438
70dc107b
SE
439/* Used by netlink to deliver to site, and by site to deliver to
440 netlink. cid is the client identifier returned by
441 netlink_regnets_fn. If buf has size 0 then the function is just
442 being called for its site-effects (eg. making the site code attempt
443 to bring up a network link) */
469fd1d9 444typedef void netlink_deliver_fn(void *st, struct buffer_if *buf);
4efd681a 445/* site code can tell netlink when outgoing packets will be dropped,
70dc107b 446 so netlink can generate appropriate ICMP and make routing decisions */
f208b9a9
IJ
447#define LINK_QUALITY_UNUSED 0 /* This link is unused, do not make this netlink */
448#define LINK_QUALITY_DOWN 1 /* No chance of a packet being delivered right away*/
449#define LINK_QUALITY_DOWN_STALE_ADDRESS 2 /* Link down, old address information */
450#define LINK_QUALITY_DOWN_CURRENT_ADDRESS 3 /* Link down, current address information */
451#define LINK_QUALITY_UP 4 /* Link active */
70dc107b 452#define MAXIMUM_LINK_QUALITY 3
469fd1d9
SE
453typedef void netlink_link_quality_fn(void *st, uint32_t quality);
454typedef void netlink_register_fn(void *st, netlink_deliver_fn *deliver,
1c085348 455 void *dst, uint32_t *localmtu_r /* NULL ok */);
794f2398
SE
456typedef void netlink_output_config_fn(void *st, struct buffer_if *buf);
457typedef bool_t netlink_check_config_fn(void *st, struct buffer_if *buf);
1caa23ff 458typedef void netlink_set_mtu_fn(void *st, int32_t new_mtu);
2fe58dfd
SE
459struct netlink_if {
460 void *st;
469fd1d9 461 netlink_register_fn *reg;
2fe58dfd 462 netlink_deliver_fn *deliver;
70dc107b 463 netlink_link_quality_fn *set_quality;
d3fe100d 464 netlink_set_mtu_fn *set_mtu;
2fe58dfd
SE
465};
466
467/* DH interface */
468
469/* Returns public key as a malloced hex string */
470typedef string_t dh_makepublic_fn(void *st, uint8_t *secret,
1caa23ff 471 int32_t secretlen);
2fe58dfd
SE
472/* Fills buffer (up to buflen) with shared secret */
473typedef void dh_makeshared_fn(void *st, uint8_t *secret,
1caa23ff
IJ
474 int32_t secretlen, cstring_t rempublic,
475 uint8_t *sharedsecret, int32_t buflen);
2fe58dfd
SE
476struct dh_if {
477 void *st;
1caa23ff 478 int32_t len; /* Approximate size of modulus in bytes */
7c9ca4bd 479 int32_t ceil_len; /* Number of bytes just sufficient to contain modulus */
2fe58dfd
SE
480 dh_makepublic_fn *makepublic;
481 dh_makeshared_fn *makeshared;
482};
483
484/* HASH interface */
485
486typedef void *hash_init_fn(void);
babd74ec 487typedef void hash_update_fn(void *st, const void *buf, int32_t len);
2fe58dfd
SE
488typedef void hash_final_fn(void *st, uint8_t *digest);
489struct hash_if {
1caa23ff 490 int32_t len; /* Hash output length in bytes */
2fe58dfd
SE
491 hash_init_fn *init;
492 hash_update_fn *update;
493 hash_final_fn *final;
494};
495
496/* BUFFER interface */
497
498struct buffer_if {
499 bool_t free;
fe5e9cc4 500 cstring_t owner; /* Set to constant string */
2fe58dfd
SE
501 uint32_t flags; /* How paranoid should we be? */
502 struct cloc loc; /* Where we were defined */
503 uint8_t *base;
504 uint8_t *start;
1caa23ff 505 int32_t size; /* Size of buffer contents */
10068344 506 int32_t alloclen; /* Total length allocated at base */
2fe58dfd
SE
507};
508
4f5e39ec
SE
509/***** LOG functions *****/
510
511#define M_DEBUG_CONFIG 0x001
512#define M_DEBUG_PHASE 0x002
513#define M_DEBUG 0x004
514#define M_INFO 0x008
515#define M_NOTICE 0x010
516#define M_WARNING 0x020
517#define M_ERR 0x040
518#define M_SECURITY 0x080
519#define M_FATAL 0x100
520
521/* The fatal() family of functions require messages that do not end in '\n' */
779837e1
IJ
522extern NORETURN(fatal(const char *message, ...)) FORMAT(printf,1,2);
523extern NORETURN(fatal_perror(const char *message, ...)) FORMAT(printf,1,2);
524extern NORETURN(fatal_status(int status, const char *message, ...))
525 FORMAT(printf,2,3);
526extern NORETURN(fatal_perror_status(int status, const char *message, ...))
527 FORMAT(printf,2,3);
4f5e39ec
SE
528
529/* The cfgfatal() family of functions require messages that end in '\n' */
fe5e9cc4 530extern NORETURN(cfgfatal(struct cloc loc, cstring_t facility,
779837e1 531 const char *message, ...)) FORMAT(printf,3,4);
4f5e39ec
SE
532extern void cfgfile_postreadcheck(struct cloc loc, FILE *f);
533extern NORETURN(vcfgfatal_maybefile(FILE *maybe_f, struct cloc loc,
fe5e9cc4 534 cstring_t facility, const char *message,
779837e1
IJ
535 va_list))
536 FORMAT(printf,4,0);
4f5e39ec 537extern NORETURN(cfgfatal_maybefile(FILE *maybe_f, struct cloc loc,
fe5e9cc4 538 cstring_t facility,
779837e1
IJ
539 const char *message, ...))
540 FORMAT(printf,4,5);
4f5e39ec 541
fe5e9cc4
SE
542extern void Message(uint32_t class, const char *message, ...)
543 FORMAT(printf,2,3);
544extern void log_from_fd(int fd, cstring_t prefix, struct log_if *log);
4f5e39ec
SE
545
546/***** END of log functions *****/
547
45cfab8c
IJ
548#define STRING2(x) #x
549#define STRING(x) STRING2(x)
550
076bb54e
IJ
551#define FILLZERO(obj) (memset(&(obj),0,sizeof((obj))))
552
2fe58dfd 553#endif /* secnet_h */