X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=interface-event.c;h=8a92ee793e6d6e5e94a4e3daf5906dcf87f52726;hp=46611432c7738387a6b3c6d5783dc77ff52e1a47;hb=e64619267d7b4e5f5fec57718c0e11e7844dc9ee;hpb=23880ff5333c3ca1da1250e8821091f6ae62f566 diff --git a/interface-event.c b/interface-event.c index 4661143..8a92ee7 100644 --- a/interface-event.c +++ b/interface-event.c @@ -20,7 +20,7 @@ static struct uloop_process task = { }; static void -run_cmd(const char *ifname, bool up) +run_cmd(const char *ifname, const char *device, bool up) { char *argv[3]; int pid; @@ -37,8 +37,10 @@ run_cmd(const char *ifname, bool up) setenv("ACTION", up ? "ifup" : "ifdown", 1); setenv("INTERFACE", ifname, 1); + if (device) + setenv("DEVICE", device, 1); argv[0] = hotplug_cmd_path; - argv[1] = "network"; + argv[1] = "iface"; argv[2] = NULL; execvp(argv[0], argv); exit(127); @@ -47,6 +49,7 @@ run_cmd(const char *ifname, bool up) static void call_hotplug(void) { + const char *device = NULL; if (list_empty(&pending)) return; @@ -54,8 +57,11 @@ call_hotplug(void) current_ev = current->hotplug_ev; list_del_init(¤t->hotplug_list); - D(SYSTEM, "Call hotplug handler for interface '%s'\n", current->name); - run_cmd(current->name, current_ev == IFEV_UP); + if (current_ev == IFEV_UP && current->l3_dev.dev) + device = current->l3_dev.dev->ifname; + + D(SYSTEM, "Call hotplug handler for interface '%s' (%s)\n", current->name, device ? device : "none"); + run_cmd(current->name, device, current_ev == IFEV_UP); } static void @@ -74,7 +80,7 @@ task_complete(struct uloop_process *proc, int ret) * When queueing an event that is the same as the one waiting for * completion, remove the interface from the queue */ -void +static void interface_queue_event(struct interface *iface, enum interface_event ev) { enum interface_event last_ev; @@ -96,7 +102,7 @@ interface_queue_event(struct interface *iface, enum interface_event ev) call_hotplug(); } -void +static void interface_dequeue_event(struct interface *iface) { if (iface == current) @@ -105,3 +111,27 @@ interface_dequeue_event(struct interface *iface) if (!list_empty(&iface->hotplug_list)) list_del_init(&iface->hotplug_list); } + +static void interface_event_cb(struct interface_user *dep, struct interface *iface, + enum interface_event ev) +{ + switch (ev) { + case IFEV_UP: + case IFEV_DOWN: + interface_queue_event(iface, ev); + break; + case IFEV_FREE: + case IFEV_RELOAD: + interface_dequeue_event(iface); + break; + } +} + +static struct interface_user event_user = { + .cb = interface_event_cb +}; + +static void __init interface_event_init(void) +{ + interface_add_user(&event_user, NULL); +}