bridge: add bridge_empty option which allows creation of empty bridges
[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 <arpa/inet.h>
20 #include "device.h"
21 #include "interface-ip.h"
22 #include "iprule.h"
23
24 enum tunnel_param {
25 TUNNEL_ATTR_TYPE,
26 TUNNEL_ATTR_REMOTE,
27 TUNNEL_ATTR_LOCAL,
28 TUNNEL_ATTR_TTL,
29 TUNNEL_ATTR_6RD_PREFIX,
30 TUNNEL_ATTR_6RD_RELAY_PREFIX,
31 TUNNEL_ATTR_LINK,
32 __TUNNEL_ATTR_MAX
33 };
34
35 const struct uci_blob_param_list tunnel_attr_list;
36
37 enum bridge_opt {
38 /* stp and forward delay always set */
39 BRIDGE_OPT_AGEING_TIME = (1 << 0),
40 BRIDGE_OPT_HELLO_TIME = (1 << 1),
41 BRIDGE_OPT_MAX_AGE = (1 << 2),
42 };
43
44 struct bridge_config {
45 enum bridge_opt flags;
46 bool stp;
47 bool igmp_snoop;
48 unsigned short priority;
49 int forward_delay;
50 bool bridge_empty;
51
52 int ageing_time;
53 int hello_time;
54 int max_age;
55 };
56
57 static inline int system_get_addr_family(unsigned int flags)
58 {
59 if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
60 return AF_INET6;
61 else
62 return AF_INET;
63 }
64
65 static inline int system_get_addr_len(unsigned int flags)
66 {
67 if ((flags & DEVADDR_FAMILY) == DEVADDR_INET6)
68 return sizeof(struct in_addr);
69 else
70 return sizeof(struct in6_addr);
71 }
72
73 int system_init(void);
74
75 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg);
76 int system_bridge_delbr(struct device *bridge);
77 int system_bridge_addif(struct device *bridge, struct device *dev);
78 int system_bridge_delif(struct device *bridge, struct device *dev);
79
80 int system_vlan_add(struct device *dev, int id);
81 int system_vlan_del(struct device *dev);
82
83 void system_if_clear_state(struct device *dev);
84 int system_if_up(struct device *dev);
85 int system_if_down(struct device *dev);
86 int system_if_check(struct device *dev);
87 int system_if_dump_info(struct device *dev, struct blob_buf *b);
88 int system_if_dump_stats(struct device *dev, struct blob_buf *b);
89 struct device *system_if_get_parent(struct device *dev);
90 bool system_if_force_external(const char *ifname);
91 void system_if_apply_settings(struct device *dev, struct device_settings *s);
92
93
94 int system_add_address(struct device *dev, struct device_addr *addr);
95 int system_del_address(struct device *dev, struct device_addr *addr);
96
97 int system_add_route(struct device *dev, struct device_route *route);
98 int system_del_route(struct device *dev, struct device_route *route);
99 int system_flush_routes(void);
100
101 bool system_resolve_rt_table(const char *name, unsigned int *id);
102
103 int system_del_ip_tunnel(const char *name);
104 int system_add_ip_tunnel(const char *name, struct blob_attr *attr);
105
106 int system_add_iprule(struct iprule *rule);
107 int system_del_iprule(struct iprule *rule);
108 int system_flush_iprules(void);
109
110 bool system_resolve_iprule_action(const char *action, unsigned int *id);
111
112 time_t system_get_rtime(void);
113
114 void system_fd_set_cloexec(int fd);
115
116 int system_update_ipv6_mtu(struct device *device, int mtu);
117
118 #endif