X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=system-dummy.c;h=d1557f9011aacddfb1ec6a91e9898f82f360efd6;hb=b357d5f359f32f9f686fe77c63580ecbf6212501;hp=2d391df2514d68968a0bc1919cf0e51b7d1fbe88;hpb=273550337f70b8b2175875e0c4f0bbd483cfe326;p=project%2Fnetifd.git diff --git a/system-dummy.c b/system-dummy.c index 2d391df..d1557f9 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,54 +1,66 @@ #include #include +#include + +#ifndef DEBUG +#define DEBUG +#endif + #include "netifd.h" #include "device.h" +#include "system.h" + +int system_init(void) +{ + return 0; +} int system_bridge_addbr(struct device *bridge) { - DPRINTF("brctl addbr %s\n", bridge->ifname); + D(SYSTEM, "brctl addbr %s\n", bridge->ifname); return 0; } int system_bridge_delbr(struct device *bridge) { - DPRINTF("brctl delbr %s\n", bridge->ifname); + D(SYSTEM, "brctl delbr %s\n", bridge->ifname); return 0; } int system_bridge_addif(struct device *bridge, struct device *dev) { - DPRINTF("brctl addif %s %s\n", bridge->ifname, dev->ifname); + D(SYSTEM, "brctl addif %s %s\n", bridge->ifname, dev->ifname); return 0; } int system_bridge_delif(struct device *bridge, struct device *dev) { - DPRINTF("brctl delif %s %s\n", bridge->ifname, dev->ifname); + D(SYSTEM, "brctl delif %s %s\n", bridge->ifname, dev->ifname); return 0; } int system_vlan_add(struct device *dev, int id) { - DPRINTF("vconfig add %s %d\n", dev->ifname, id); + D(SYSTEM, "vconfig add %s %d\n", dev->ifname, id); return 0; } int system_vlan_del(struct device *dev) { - DPRINTF("vconfig rem %s\n", dev->ifname); + D(SYSTEM, "vconfig rem %s\n", dev->ifname); return 0; } int system_if_up(struct device *dev) { - DPRINTF("ifconfig %s up\n", dev->ifname); + D(SYSTEM, "ifconfig %s up\n", dev->ifname); return 0; } int system_if_down(struct device *dev) { - DPRINTF("ifconfig %s down\n", dev->ifname); + D(SYSTEM, "ifconfig %s down\n", dev->ifname); return 0; } @@ -57,7 +69,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; } @@ -65,11 +77,15 @@ int system_if_check(struct device *dev) int system_add_address(struct device *dev, struct device_addr *addr) { uint8_t *a = (uint8_t *) &addr->addr.in; + char ipaddr[64]; if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4) { - DPRINTF("ifconfig %s add %d.%d.%d.%d/%d\n", + D(SYSTEM, "ifconfig %s add %d.%d.%d.%d/%d\n", dev->ifname, a[0], a[1], a[2], a[3], addr->mask); } else { + inet_ntop(AF_INET6, &addr->addr.in6, ipaddr, sizeof(struct in6_addr)); + D(SYSTEM, "ifconfig %s add %s/%d\n", + dev->ifname, ipaddr, addr->mask); return -1; } @@ -79,13 +95,69 @@ int system_add_address(struct device *dev, struct device_addr *addr) int system_del_address(struct device *dev, struct device_addr *addr) { uint8_t *a = (uint8_t *) &addr->addr.in; + char ipaddr[64]; if ((addr->flags & DEVADDR_FAMILY) == DEVADDR_INET4) { - DPRINTF("ifconfig %s del %d.%d.%d.%d\n", + D(SYSTEM, "ifconfig %s del %d.%d.%d.%d\n", dev->ifname, a[0], a[1], a[2], a[3]); } else { + inet_ntop(AF_INET6, &addr->addr.in6, ipaddr, sizeof(struct in6_addr)); + D(SYSTEM, "ifconfig %s del %s/%d\n", + dev->ifname, ipaddr, addr->mask); return -1; } 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); + + D(SYSTEM, "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); + + D(SYSTEM, "route del %s%s%s\n", addr, gw, devstr); + return 0; +}