X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=system-dummy.c;h=b3aefbe41f2e5682ba9d12f985e38e75faeaf696;hp=f24f686925a113abdc042dbd9c0cc11ba5e85185;hb=9b40d469c858d9ce4cacfa0aca37ba2ac69d2f96;hpb=f6fb6bee2c29f31d13d0b0288f4f680b6b56e9ba diff --git a/system-dummy.c b/system-dummy.c index f24f686..b3aefbe 100644 --- a/system-dummy.c +++ b/system-dummy.c @@ -1,75 +1,118 @@ +#include #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) +int system_bridge_addbr(struct device *bridge, struct bridge_config *cfg) { - 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; } +void system_if_clear_state(struct device *dev) +{ +} + 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; } +struct device * +system_if_get_parent(struct device *dev) +{ + if (!strcmp(dev->ifname, "eth0")) + return device_get("eth1", true); + + return NULL; +} + +int +system_if_dump_info(struct device *dev, struct blob_buf *b) +{ + blobmsg_add_u8(b, "link", dev->present); + return 0; +} + +int +system_if_dump_stats(struct device *dev, struct blob_buf *b) +{ + return 0; +} + 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,11 +122,15 @@ 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; } @@ -109,10 +156,12 @@ int system_add_route(struct device *dev, struct device_route *route) 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); + sprintf(devstr, " dev %s", dev->ifname); + + if (route->metric > 0) + sprintf(devstr, " metric %d", route->metric); - DPRINTF("route add %s%s%s\n", addr, gw, devstr); + D(SYSTEM, "route add %s%s%s\n", addr, gw, devstr); return 0; } @@ -135,9 +184,33 @@ int system_del_route(struct device *dev, struct device_route *route) 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); + sprintf(devstr, " dev %s", dev->ifname); + + D(SYSTEM, "route del %s%s%s\n", addr, gw, devstr); + return 0; +} + +int system_flush_routes(void) +{ + return 0; +} + +time_t system_get_rtime(void) +{ + struct timeval tv; + + if (gettimeofday(&tv, NULL) == 0) + return tv.tv_sec; + + return 0; +} - DPRINTF("route del %s%s%s\n", addr, gw, devstr); +int system_del_ip_tunnel(const char *name) +{ + return 0; +} + +int system_add_ip_tunnel(const char *name, struct blob_attr *attr) +{ return 0; }