integer arithmetic types: do not use unsigned for lengths
[secnet] / netlink.h
1 #ifndef netlink_h
2 #define netlink_h
3
4 #include "ipaddr.h"
5
6 #define DEFAULT_BUFSIZE 2048
7 #define DEFAULT_MTU 1000
8 #define ICMP_BUFSIZE 1024
9
10 struct netlink;
11
12 struct netlink_client {
13 closure_t cl;
14 struct netlink_if ops;
15 struct netlink *nst;
16 struct ipset *networks;
17 struct subnet_list *subnets; /* Same information as 'networks' */
18 uint32_t priority; /* Higher priority clients have their networks
19 checked first during routing. This allows
20 things like laptops to supersede whole
21 networks. */
22 netlink_deliver_fn *deliver;
23 void *dst;
24 string_t name;
25 uint32_t link_quality;
26 int32_t mtu;
27 uint32_t options;
28 uint32_t outcount;
29 bool_t up; /* Should these routes exist in the kernel? */
30 bool_t kup; /* Do these routes exist in the kernel? */
31 struct netlink_client *next;
32 };
33
34 typedef bool_t netlink_route_fn(void *cst, struct netlink_client *routes);
35
36 /* Netlink provides one function to the device driver, to call to deliver
37 a packet from the device. The device driver provides one function to
38 netlink, for it to call to deliver a packet to the device. */
39
40 struct netlink {
41 closure_t cl;
42 void *dst; /* Pointer to host interface state */
43 cstring_t name;
44 int32_t max_start_pad;
45 int32_t max_end_pad;
46 struct ipset *networks; /* Local networks */
47 struct subnet_list *subnets; /* Same as networks, for display */
48 struct ipset *remote_networks; /* Allowable remote networks */
49 uint32_t secnet_address; /* our own address, or the address of the
50 other end of a point-to-point link */
51 bool_t ptp;
52 int32_t mtu;
53 struct netlink_client *clients; /* Linked list of clients */
54 struct netlink_client **routes; /* Array of clients, sorted by priority */
55 int32_t n_clients;
56 netlink_deliver_fn *deliver_to_host; /* Provided by driver */
57 netlink_route_fn *set_routes; /* Provided by driver */
58 struct buffer_if icmp; /* Buffer for assembly of outgoing ICMP */
59 uint32_t outcount; /* Packets sent to host */
60 uint32_t localcount; /* Packets sent to secnet */
61 };
62
63 extern netlink_deliver_fn *netlink_init(struct netlink *st,
64 void *dst, struct cloc loc,
65 dict_t *dict, cstring_t description,
66 netlink_route_fn *set_routes,
67 netlink_deliver_fn *to_host);
68
69 #endif /* netlink_h */