memcmp: Introduce and use consttime_memeq
[secnet] / netlink.h
CommitLineData
9d3a4132
SE
1#ifndef netlink_h
2#define netlink_h
3
7138d0c5
SE
4#include "ipaddr.h"
5
9d3a4132
SE
6#define DEFAULT_BUFSIZE 2048
7#define DEFAULT_MTU 1000
8#define ICMP_BUFSIZE 1024
9
469fd1d9
SE
10struct netlink;
11
9d3a4132 12struct netlink_client {
469fd1d9
SE
13 closure_t cl;
14 struct netlink_if ops;
15 struct netlink *nst;
794f2398
SE
16 struct ipset *networks;
17 struct subnet_list *subnets; /* Same information as 'networks' */
d3fe100d
SE
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. */
9d3a4132
SE
22 netlink_deliver_fn *deliver;
23 void *dst;
24 string_t name;
25 uint32_t link_quality;
1caa23ff 26 int32_t mtu;
3454dce4 27 uint32_t options;
469fd1d9 28 uint32_t outcount;
d3fe100d
SE
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;
9d3a4132
SE
32};
33
efacf9e0
ST
34/* options field in 'struct netlink_client' */
35#define OPT_SOFTROUTE 1
36#define OPT_ALLOWROUTE 2
37
d3fe100d 38typedef bool_t netlink_route_fn(void *cst, struct netlink_client *routes);
9d3a4132
SE
39
40/* Netlink provides one function to the device driver, to call to deliver
41 a packet from the device. The device driver provides one function to
42 netlink, for it to call to deliver a packet to the device. */
43
44struct netlink {
45 closure_t cl;
9d3a4132 46 void *dst; /* Pointer to host interface state */
fe5e9cc4 47 cstring_t name;
1caa23ff
IJ
48 int32_t max_start_pad;
49 int32_t max_end_pad;
794f2398 50 struct ipset *networks; /* Local networks */
d3fe100d 51 struct subnet_list *subnets; /* Same as networks, for display */
794f2398 52 struct ipset *remote_networks; /* Allowable remote networks */
469fd1d9
SE
53 uint32_t secnet_address; /* our own address, or the address of the
54 other end of a point-to-point link */
c6f79b17 55 bool_t ptp;
1caa23ff 56 int32_t mtu;
d3fe100d
SE
57 struct netlink_client *clients; /* Linked list of clients */
58 struct netlink_client **routes; /* Array of clients, sorted by priority */
1caa23ff 59 int32_t n_clients;
9d3a4132 60 netlink_deliver_fn *deliver_to_host; /* Provided by driver */
d3fe100d 61 netlink_route_fn *set_routes; /* Provided by driver */
9d3a4132 62 struct buffer_if icmp; /* Buffer for assembly of outgoing ICMP */
469fd1d9
SE
63 uint32_t outcount; /* Packets sent to host */
64 uint32_t localcount; /* Packets sent to secnet */
9d3a4132
SE
65};
66
67extern netlink_deliver_fn *netlink_init(struct netlink *st,
68 void *dst, struct cloc loc,
fe5e9cc4 69 dict_t *dict, cstring_t description,
d3fe100d 70 netlink_route_fn *set_routes,
9d3a4132
SE
71 netlink_deliver_fn *to_host);
72
73#endif /* netlink_h */