X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=blobdiff_plain;f=interface-event.c;h=3b0d1faca391bf0b89c1909f5477e2c08db18b45;hp=ba7405a8410534b3ae4b90e7995f3e8c131e4a83;hb=37769eb666aa614b76df9b537db35c2c70e3ac7a;hpb=13cc3e23d947b0d1a19c08cd031becd2ed866264 diff --git a/interface-event.c b/interface-event.c index ba7405a..3b0d1fa 100644 --- a/interface-event.c +++ b/interface-event.c @@ -1,12 +1,25 @@ +/* + * netifd - network interface daemon + * Copyright (C) 2012 Felix Fietkau + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 + * as published by the Free Software Foundation + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ #include #include #include -#include #include #include "netifd.h" #include "interface.h" +#include "ubus.h" char *hotplug_cmd_path = DEFAULT_HOTPLUG_PATH; static struct interface *current; @@ -19,7 +32,7 @@ static struct uloop_process task = { }; static void -run_cmd(const char *ifname, bool up) +run_cmd(const char *ifname, const char *device, enum interface_event event) { char *argv[3]; int pid; @@ -34,10 +47,13 @@ run_cmd(const char *ifname, bool up) return; } - setenv("ACTION", up ? "ifup" : "ifdown", 1); + char *eventnames[] = {"ifdown", "ifup", "ifupdate"}; + setenv("ACTION", eventnames[event], 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); @@ -46,6 +62,7 @@ run_cmd(const char *ifname, bool up) static void call_hotplug(void) { + const char *device = NULL; if (list_empty(&pending)) return; @@ -53,8 +70,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); } static void @@ -73,28 +93,33 @@ 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; D(SYSTEM, "Queue hotplug handler for interface '%s'\n", iface->name); + if (ev == IFEV_UP || ev == IFEV_DOWN) + netifd_ubus_interface_event(iface, ev == IFEV_UP); + + netifd_ubus_interface_notify(iface, ev != IFEV_DOWN); + if (current == iface) last_ev = current_ev; else last_ev = iface->hotplug_ev; iface->hotplug_ev = ev; - if (last_ev == ev && !list_empty(&iface->hotplug_list)) - list_del(&iface->hotplug_list); - else if (last_ev != ev && list_empty(&iface->hotplug_list)) + if ((last_ev == ev && ev != IFEV_UPDATE) && !list_empty(&iface->hotplug_list)) + list_del_init(&iface->hotplug_list); + else if ((last_ev != ev || ev == IFEV_UPDATE) && list_empty(&iface->hotplug_list)) list_add(&iface->hotplug_list, &pending); if (!task.pending && !current) call_hotplug(); } -void +static void interface_dequeue_event(struct interface *iface) { if (iface == current) @@ -103,3 +128,28 @@ 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_UPDATE: + 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); +}