73ceb415376acd9a0164ef58e23e8e120678ad17
[project/netifd.git] / system.h
1 /*
2  * netifd - network interface daemon
3  * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2
7  * as published by the Free Software Foundation
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  */
14 #ifndef __NETIFD_SYSTEM_H
15 #define __NETIFD_SYSTEM_H
16
17 #include <sys/time.h>
18 #include <sys/socket.h>
19 #include "device.h"
20 #include "interface-ip.h"
21
22 enum tunnel_param {
23         TUNNEL_ATTR_TYPE,
24         TUNNEL_ATTR_REMOTE,
25         TUNNEL_ATTR_LOCAL,
26         TUNNEL_ATTR_TTL,
27         __TUNNEL_ATTR_MAX
28 };
29
30 const struct config_param_list tunnel_attr_list;
31
32 enum bridge_opt {
33         /* stp and forward delay always set */
34         BRIDGE_OPT_AGEING_TIME = (1 << 0),
35         BRIDGE_OPT_HELLO_TIME  = (1 << 1),
36         BRIDGE_OPT_MAX_AGE     = (1 << 2),
37 };
38
39 struct bridge_config {
40         enum bridge_opt flags;
41         bool stp;
42         bool igmp_snoop;
43         int forward_delay;
44
45         int ageing_time;
46         int hello_time;
47         int max_age;
48 };
49
50 int system_init(void);
51
52 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
53 int system_bridge_delbr(struct device *bridge);
54 int system_bridge_addif(struct device *bridge, struct device *dev);
55 int system_bridge_delif(struct device *bridge, struct device *dev);
56
57 int system_vlan_add(struct device *dev, int id);
58 int system_vlan_del(struct device *dev);
59
60 void system_if_clear_state(struct device *dev);
61 int system_if_up(struct device *dev);
62 int system_if_down(struct device *dev);
63 int system_if_check(struct device *dev);
64 int system_if_dump_info(struct device *dev, struct blob_buf *b);
65 int system_if_dump_stats(struct device *dev, struct blob_buf *b);
66 struct device *system_if_get_parent(struct device *dev);
67 bool system_if_force_external(const char *ifname);
68
69 int system_add_address(struct device *dev, struct device_addr *addr);
70 int system_del_address(struct device *dev, struct device_addr *addr);
71
72 int system_add_route(struct device *dev, struct device_route *route);
73 int system_del_route(struct device *dev, struct device_route *route);
74 int system_flush_routes(void);
75
76 int system_del_ip_tunnel(const char *name);
77 int system_add_ip_tunnel(const char *name, struct blob_attr *attr);
78
79 time_t system_get_rtime(void);
80
81 #endif