X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system-dummy.c;h=b3efa08b2c4399c639bd2f122d325149e9574923;hp=2d391df2514d68968a0bc1919cf0e51b7d1fbe88;hb=b8d44d56f67ee86233017b508c3af375df86fae9;hpb=273550337f70b8b2175875e0c4f0bbd483cfe326 diff --git a/system-dummy.c b/system-dummy.c index 2d391df..b3efa08 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,8 +1,13 @@ #include #include +#ifndef DEBUG +#define DEBUG +#endif + #include "netifd.h" #include "device.h" +#include "system.h" int system_bridge_addbr(struct device *bridge) { @@ -57,7 +62,7 @@ int system_if_check(struct device *dev) dev->ifindex = 0; if (!strcmp(dev->ifname, "eth0")) - set_device_present(dev, true); + device_set_present(dev, true); return 0; } @@ -89,3 +94,55 @@ int system_del_address(struct device *dev, struct device_addr *addr) return 0; } + +int system_add_route(struct device *dev, struct device_route *route) +{ + uint8_t *a1 = (uint8_t *) &route->addr.in; + uint8_t *a2 = (uint8_t *) &route->nexthop.in; + char addr[40], gw[40] = "", devstr[64] = ""; + + if ((route->flags & DEVADDR_FAMILY) != DEVADDR_INET4) + return -1; + + if (!route->mask) + sprintf(addr, "default"); + else + sprintf(addr, "%d.%d.%d.%d/%d", + a1[0], a1[1], a1[2], a1[3], route->mask); + + if (memcmp(a2, "\x00\x00\x00\x00", 4) != 0) + sprintf(gw, " gw %d.%d.%d.%d", + a2[0], a2[1], a2[2], a2[3]); + + if (route->flags & DEVADDR_DEVICE) + sprintf(devstr, " dev %s", dev->ifname); + + DPRINTF("route add %s%s%s\n", addr, gw, devstr); + return 0; +} + +int system_del_route(struct device *dev, struct device_route *route) +{ + uint8_t *a1 = (uint8_t *) &route->addr.in; + uint8_t *a2 = (uint8_t *) &route->nexthop.in; + char addr[40], gw[40] = "", devstr[64] = ""; + + if ((route->flags & DEVADDR_FAMILY) != DEVADDR_INET4) + return -1; + + if (!route->mask) + sprintf(addr, "default"); + else + sprintf(addr, "%d.%d.%d.%d/%d", + a1[0], a1[1], a1[2], a1[3], route->mask); + + if (memcmp(a2, "\x00\x00\x00\x00", 4) != 0) + sprintf(gw, " gw %d.%d.%d.%d", + a2[0], a2[1], a2[2], a2[3]); + + if (route->flags & DEVADDR_DEVICE) + sprintf(devstr, " dev %s", dev->ifname); + + DPRINTF("route del %s%s%s\n", addr, gw, devstr); + return 0; +}