20 int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg)
22 D(SYSTEM, "brctl addbr %s\n", bridge->ifname);
26 int system_bridge_delbr(struct device *bridge)
28 D(SYSTEM, "brctl delbr %s\n", bridge->ifname);
32 int system_bridge_addif(struct device *bridge, struct device *dev)
34 D(SYSTEM, "brctl addif %s %s\n", bridge->ifname, dev->ifname);
38 int system_bridge_delif(struct device *bridge, struct device *dev)
40 D(SYSTEM, "brctl delif %s %s\n", bridge->ifname, dev->ifname);
44 int system_vlan_add(struct device *dev, int id)
46 D(SYSTEM, "vconfig add %s %d\n", dev->ifname, id);
50 int system_vlan_del(struct device *dev)
52 D(SYSTEM, "vconfig rem %s\n", dev->ifname);
56 int system_if_up(struct device *dev)
58 D(SYSTEM, "ifconfig %s up\n", dev->ifname);
62 int system_if_down(struct device *dev)
64 D(SYSTEM, "ifconfig %s down\n", dev->ifname);
68 void system_if_clear_state(struct device *dev)
72 int system_if_check(struct device *dev)
76 if (!strcmp(dev->ifname, "eth0"))
77 device_set_present(dev, true);
83 system_if_get_parent(struct device *dev)
85 if (!strcmp(dev->ifname, "eth0"))
86 return device_get("eth1", true);
92 system_if_dump_info(struct device *dev, struct blob_buf *b)
94 blobmsg_add_u8(b, "link", dev->present);
99 system_if_dump_stats(struct device *dev, struct blob_buf *b)
104 int system_add_address(struct device *dev, struct device_addr *addr)
106 uint8_t *a = (uint8_t *) &addr->addr.in;
109 if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4) {
110 D(SYSTEM, "ifconfig %s add %d.%d.%d.%d/%d\n",
111 dev->ifname, a[0], a[1], a[2], a[3], addr->mask);
113 inet_ntop(AF_INET6, &addr->addr.in6, ipaddr, sizeof(struct in6_addr));
114 D(SYSTEM, "ifconfig %s add %s/%d\n",
115 dev->ifname, ipaddr, addr->mask);
122 int system_del_address(struct device *dev, struct device_addr *addr)
124 uint8_t *a = (uint8_t *) &addr->addr.in;
127 if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4) {
128 D(SYSTEM, "ifconfig %s del %d.%d.%d.%d\n",
129 dev->ifname, a[0], a[1], a[2], a[3]);
131 inet_ntop(AF_INET6, &addr->addr.in6, ipaddr, sizeof(struct in6_addr));
132 D(SYSTEM, "ifconfig %s del %s/%d\n",
133 dev->ifname, ipaddr, addr->mask);
140 int system_add_route(struct device *dev, struct device_route *route)
142 uint8_t *a1 = (uint8_t *) &route->addr.in;
143 uint8_t *a2 = (uint8_t *) &route->nexthop.in;
144 char addr[40], gw[40] = "", devstr[64] = "";
146 if ((route->flags & DEVADDR_FAMILY) != DEVADDR_INET4)
150 sprintf(addr, "default");
152 sprintf(addr, "%d.%d.%d.%d/%d",
153 a1[0], a1[1], a1[2], a1[3], route->mask);
155 if (memcmp(a2, "\x00\x00\x00\x00", 4) != 0)
156 sprintf(gw, " gw %d.%d.%d.%d",
157 a2[0], a2[1], a2[2], a2[3]);
159 sprintf(devstr, " dev %s", dev->ifname);
161 if (route->metric > 0)
162 sprintf(devstr, " metric %d", route->metric);
164 D(SYSTEM, "route add %s%s%s\n", addr, gw, devstr);
168 int system_del_route(struct device *dev, struct device_route *route)
170 uint8_t *a1 = (uint8_t *) &route->addr.in;
171 uint8_t *a2 = (uint8_t *) &route->nexthop.in;
172 char addr[40], gw[40] = "", devstr[64] = "";
174 if ((route->flags & DEVADDR_FAMILY) != DEVADDR_INET4)
178 sprintf(addr, "default");
180 sprintf(addr, "%d.%d.%d.%d/%d",
181 a1[0], a1[1], a1[2], a1[3], route->mask);
183 if (memcmp(a2, "\x00\x00\x00\x00", 4) != 0)
184 sprintf(gw, " gw %d.%d.%d.%d",
185 a2[0], a2[1], a2[2], a2[3]);
187 sprintf(devstr, " dev %s", dev->ifname);
189 D(SYSTEM, "route del %s%s%s\n", addr, gw, devstr);
193 int system_flush_routes(void)
198 time_t system_get_rtime(void)
202 if (gettimeofday(&tv, NULL) == 0)
208 int system_del_ip_tunnel(const char *name)
213 int system_add_ip_tunnel(const char *name, struct blob_attr *attr)