add support for updating route metrics
[project/netifd.git] / system.h
1 #ifndef __NETIFD_SYSTEM_H
2 #define __NETIFD_SYSTEM_H
3
4 #include <sys/time.h>
5 #include <sys/socket.h>
6 #include "device.h"
7 #include "interface-ip.h"
8
9 enum tunnel_param {
10         TUNNEL_ATTR_TYPE,
11         TUNNEL_ATTR_REMOTE,
12         TUNNEL_ATTR_LOCAL,
13         TUNNEL_ATTR_TTL,
14         __TUNNEL_ATTR_MAX
15 };
16
17 const struct config_param_list tunnel_attr_list;
18
19 enum bridge_opt {
20         /* stp and forward delay always set */
21         BRIDGE_OPT_AGEING_TIME = (1 << 0),
22         BRIDGE_OPT_HELLO_TIME  = (1 << 1),
23         BRIDGE_OPT_MAX_AGE     = (1 << 2),
24 };
25
26 struct bridge_config {
27         enum bridge_opt flags;
28         bool stp;
29         bool igmp_snoop;
30         int forward_delay;
31
32         int ageing_time;
33         int hello_time;
34         int max_age;
35 };
36
37 int system_init(void);
38
39 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
40 int system_bridge_delbr(struct device *bridge);
41 int system_bridge_addif(struct device *bridge, struct device *dev);
42 int system_bridge_delif(struct device *bridge, struct device *dev);
43
44 int system_vlan_add(struct device *dev, int id);
45 int system_vlan_del(struct device *dev);
46
47 void system_if_clear_state(struct device *dev);
48 int system_if_up(struct device *dev);
49 int system_if_down(struct device *dev);
50 int system_if_check(struct device *dev);
51 int system_if_dump_info(struct device *dev, struct blob_buf *b);
52 int system_if_dump_stats(struct device *dev, struct blob_buf *b);
53 struct device *system_if_get_parent(struct device *dev);
54
55 int system_add_address(struct device *dev, struct device_addr *addr);
56 int system_del_address(struct device *dev, struct device_addr *addr);
57
58 int system_add_route(struct device *dev, struct device_route *route);
59 int system_del_route(struct device *dev, struct device_route *route);
60 int system_flush_routes(void);
61
62 int system_del_ip_tunnel(const char *name);
63 int system_add_ip_tunnel(const char *name, struct blob_attr *attr);
64
65 time_t system_get_rtime(void);
66
67 #endif