123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150 |
- /*
- * netifd - network interface daemon
- * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
- *
- * 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 <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- #include <libubox/uloop.h>
- #include "netifd.h"
- #include "interface.h"
- #include "ubus.h"
- char *hotplug_cmd_path = DEFAULT_HOTPLUG_PATH;
- static struct interface *current;
- static enum interface_event current_ev;
- static struct list_head pending = LIST_HEAD_INIT(pending);
- static void task_complete(struct uloop_process *proc, int ret);
- static struct uloop_process task = {
- .cb = task_complete,
- };
- static void
- run_cmd(const char *ifname, const char *device, bool up)
- {
- char *argv[3];
- int pid;
- pid = fork();
- if (pid < 0)
- return task_complete(NULL, -1);
- if (pid > 0) {
- task.pid = pid;
- uloop_process_add(&task);
- return;
- }
- setenv("ACTION", up ? "ifup" : "ifdown", 1);
- setenv("INTERFACE", ifname, 1);
- if (device)
- setenv("DEVICE", device, 1);
- argv[0] = hotplug_cmd_path;
- argv[1] = "iface";
- argv[2] = NULL;
- execvp(argv[0], argv);
- exit(127);
- }
- static void
- call_hotplug(void)
- {
- const char *device = NULL;
- if (list_empty(&pending))
- return;
- current = list_first_entry(&pending, struct interface, hotplug_list);
- current_ev = current->hotplug_ev;
- list_del_init(¤t->hotplug_list);
- 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
- task_complete(struct uloop_process *proc, int ret)
- {
- if (current)
- D(SYSTEM, "Complete hotplug handler for interface '%s'\n", current->name);
- current = NULL;
- call_hotplug();
- }
- /*
- * Queue an interface for an up/down event.
- * An interface can only have one event in the queue and one
- * event waiting for completion.
- * When queueing an event that is the same as the one waiting for
- * completion, remove the interface from the queue
- */
- 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);
- netifd_ubus_interface_event(iface, ev == IFEV_UP);
- 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_init(&iface->hotplug_list);
- else if (last_ev != ev && list_empty(&iface->hotplug_list))
- list_add(&iface->hotplug_list, &pending);
- if (!task.pending && !current)
- call_hotplug();
- }
- static void
- interface_dequeue_event(struct interface *iface)
- {
- if (iface == current)
- current = NULL;
- 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);
- }
|