2005-04-27 10:59:47 +07:00
|
|
|
/*
|
|
|
|
* udev.c
|
|
|
|
*
|
|
|
|
* Userspace devfs
|
|
|
|
*
|
2004-01-27 10:23:11 +07:00
|
|
|
* Copyright (C) 2003,2004 Greg Kroah-Hartman <greg@kroah.com>
|
2004-11-23 13:34:56 +07:00
|
|
|
* Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
|
2005-04-27 10:59:47 +07:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation version 2 of the License.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License along
|
|
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2004-03-23 13:22:20 +07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stddef.h>
|
2005-04-27 10:59:47 +07:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2004-11-23 13:34:56 +07:00
|
|
|
#include <fcntl.h>
|
2003-12-03 16:08:46 +07:00
|
|
|
#include <ctype.h>
|
2004-03-23 13:22:20 +07:00
|
|
|
#include <errno.h>
|
2003-12-30 16:21:06 +07:00
|
|
|
#include <signal.h>
|
2004-10-19 13:14:20 +07:00
|
|
|
#include <unistd.h>
|
2003-04-11 00:53:46 +07:00
|
|
|
|
2004-02-24 10:07:25 +07:00
|
|
|
#include "libsysfs/sysfs/libsysfs.h"
|
2005-03-07 10:29:43 +07:00
|
|
|
#include "udev_libc_wrapper.h"
|
2005-04-27 10:59:47 +07:00
|
|
|
#include "udev.h"
|
2004-11-25 08:44:38 +07:00
|
|
|
#include "udev_utils.h"
|
2004-10-19 18:37:22 +07:00
|
|
|
#include "udev_sysfs.h"
|
2005-04-27 10:59:47 +07:00
|
|
|
#include "udev_version.h"
|
2005-03-13 04:36:32 +07:00
|
|
|
#include "udev_rules.h"
|
2004-11-12 12:32:19 +07:00
|
|
|
#include "logging.h"
|
2005-04-27 10:59:47 +07:00
|
|
|
|
2005-03-06 16:15:51 +07:00
|
|
|
#ifdef USE_LOG
|
2005-03-27 06:11:03 +07:00
|
|
|
void log_message(int priority, const char *format, ...)
|
2004-02-12 13:10:26 +07:00
|
|
|
{
|
2004-02-27 10:40:32 +07:00
|
|
|
va_list args;
|
2004-02-13 09:57:06 +07:00
|
|
|
|
2005-03-27 06:11:03 +07:00
|
|
|
if (priority > udev_log_priority)
|
2004-02-13 09:57:06 +07:00
|
|
|
return;
|
|
|
|
|
|
|
|
va_start(args, format);
|
2005-03-27 06:11:03 +07:00
|
|
|
vsyslog(priority, format, args);
|
2004-02-13 09:57:06 +07:00
|
|
|
va_end(args);
|
2004-02-12 13:10:26 +07:00
|
|
|
}
|
2004-02-13 09:57:06 +07:00
|
|
|
#endif
|
2004-02-12 13:10:26 +07:00
|
|
|
|
2004-10-14 12:38:15 +07:00
|
|
|
static void asmlinkage sig_handler(int signum)
|
2003-12-30 16:21:06 +07:00
|
|
|
{
|
|
|
|
switch (signum) {
|
2004-10-14 13:13:26 +07:00
|
|
|
case SIGALRM:
|
2004-11-06 20:28:01 +07:00
|
|
|
exit(1);
|
2003-12-30 16:21:06 +07:00
|
|
|
case SIGINT:
|
|
|
|
case SIGTERM:
|
|
|
|
exit(20 + signum);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
[PATCH] Fix naming ethernet devices in udevstart
On Tue, Sep 07, 2004 at 12:46:43PM +0200, Kay Sievers wrote:
> On Mon, 2004-09-06 at 20:18 -0700, Tom Rini wrote:
> > I noticed somewhat recently that my enet devices weren't being renamed
> > on boot anymore. I don't quite know when this got broken (or rather, if
> > it was supposed to be working. I swear it worked for me once..), but
> > the following seems to do it.
>
> I think it never worked in the udevstart case. It worked only with the
> hotplug-event-udev, I expect.
>
> > In udev_scan_class(), look for not just
> > %s/%s/dev (which everything with a dev node has), but %s/%s/dev* (both
> > of my enet devices, sis900 & 3c59x only have device) and if that
> > exists, pass this along to udev.
>
> Yeah, network devices don't have a devnode and therefore no "dev", but
> they are all in /sys/class/net/. We may just test if we are there
> instead of the "device" match.
How about something like this. It adds all the net devices without
looking at the attributes and keeps the remaining logic like it is.
It also removes certain levels of indirection and much simplifies the
udevstart process. We surely don't need to open and close the udevdb
for every node while iterating over the list. (We are about 5% faster on
my box)
It's not well tested, so it would be nice if someone can have a look
at it, before a broken udevstart renders any system unbootable.
2004-09-11 11:09:25 +07:00
|
|
|
int main(int argc, char *argv[], char *envp[])
|
2003-12-31 13:31:37 +07:00
|
|
|
{
|
2004-10-19 09:11:51 +07:00
|
|
|
struct udevice udev;
|
2005-07-05 20:24:41 +07:00
|
|
|
struct udev_rules rules;
|
2005-03-07 10:29:43 +07:00
|
|
|
char path[PATH_SIZE];
|
2004-11-23 13:34:56 +07:00
|
|
|
const char *error;
|
2004-12-12 08:54:55 +07:00
|
|
|
const char *action;
|
|
|
|
const char *devpath;
|
|
|
|
const char *subsystem;
|
2005-03-05 03:13:18 +07:00
|
|
|
struct sigaction act;
|
2004-12-12 08:54:55 +07:00
|
|
|
int retval = -EINVAL;
|
2003-12-31 13:31:37 +07:00
|
|
|
|
2004-12-12 08:27:50 +07:00
|
|
|
if (argc == 2 && strcmp(argv[1], "-V") == 0) {
|
|
|
|
printf("%s\n", UDEV_VERSION);
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
2004-10-19 08:15:10 +07:00
|
|
|
logging_init("udev");
|
[PATCH] Fix naming ethernet devices in udevstart
On Tue, Sep 07, 2004 at 12:46:43PM +0200, Kay Sievers wrote:
> On Mon, 2004-09-06 at 20:18 -0700, Tom Rini wrote:
> > I noticed somewhat recently that my enet devices weren't being renamed
> > on boot anymore. I don't quite know when this got broken (or rather, if
> > it was supposed to be working. I swear it worked for me once..), but
> > the following seems to do it.
>
> I think it never worked in the udevstart case. It worked only with the
> hotplug-event-udev, I expect.
>
> > In udev_scan_class(), look for not just
> > %s/%s/dev (which everything with a dev node has), but %s/%s/dev* (both
> > of my enet devices, sis900 & 3c59x only have device) and if that
> > exists, pass this along to udev.
>
> Yeah, network devices don't have a devnode and therefore no "dev", but
> they are all in /sys/class/net/. We may just test if we are there
> instead of the "device" match.
How about something like this. It adds all the net devices without
looking at the attributes and keeps the remaining logic like it is.
It also removes certain levels of indirection and much simplifies the
udevstart process. We surely don't need to open and close the udevdb
for every node while iterating over the list. (We are about 5% faster on
my box)
It's not well tested, so it would be nice if someone can have a look
at it, before a broken udevstart renders any system unbootable.
2004-09-11 11:09:25 +07:00
|
|
|
udev_init_config();
|
2005-03-27 06:11:03 +07:00
|
|
|
dbg("version %s", UDEV_VERSION);
|
2003-07-17 10:18:06 +07:00
|
|
|
|
2004-06-07 16:56:47 +07:00
|
|
|
/* set signal handlers */
|
2005-04-27 13:15:56 +07:00
|
|
|
memset(&act, 0x00, sizeof(act));
|
2005-03-27 06:11:03 +07:00
|
|
|
act.sa_handler = (void (*)(int)) sig_handler;
|
2004-02-12 13:29:15 +07:00
|
|
|
sigemptyset (&act.sa_mask);
|
2004-11-05 19:16:32 +07:00
|
|
|
act.sa_flags = 0;
|
2004-10-14 13:13:26 +07:00
|
|
|
sigaction(SIGALRM, &act, NULL);
|
2004-02-12 13:29:15 +07:00
|
|
|
sigaction(SIGINT, &act, NULL);
|
|
|
|
sigaction(SIGTERM, &act, NULL);
|
2003-12-30 16:29:16 +07:00
|
|
|
|
2004-11-29 08:15:55 +07:00
|
|
|
/* trigger timeout to prevent hanging processes */
|
2005-07-06 19:42:26 +07:00
|
|
|
alarm(UDEV_ALARM_TIMEOUT);
|
2004-10-14 13:13:26 +07:00
|
|
|
|
2004-12-12 09:29:59 +07:00
|
|
|
action = getenv("ACTION");
|
|
|
|
devpath = getenv("DEVPATH");
|
|
|
|
subsystem = getenv("SUBSYSTEM");
|
|
|
|
/* older kernels passed the SUBSYSTEM only as argument */
|
|
|
|
if (!subsystem && argc == 2)
|
|
|
|
subsystem = argv[1];
|
|
|
|
|
2005-03-05 03:13:18 +07:00
|
|
|
if (!action || !subsystem || !devpath) {
|
2005-03-27 06:11:03 +07:00
|
|
|
err("action, subsystem or devpath missing");
|
2005-06-05 20:55:29 +07:00
|
|
|
goto exit;
|
2004-11-23 13:34:56 +07:00
|
|
|
}
|
2004-10-19 18:37:22 +07:00
|
|
|
|
2005-06-16 06:58:47 +07:00
|
|
|
/* export log_priority , as called programs may want to do the same as udev */
|
2005-03-27 06:11:03 +07:00
|
|
|
if (udev_log_priority) {
|
|
|
|
char priority[32];
|
|
|
|
|
|
|
|
sprintf(priority, "%i", udev_log_priority);
|
|
|
|
setenv("UDEV_LOG", priority, 1);
|
|
|
|
}
|
2004-11-23 13:34:56 +07:00
|
|
|
|
2005-06-05 20:55:29 +07:00
|
|
|
udev_init_device(&udev, devpath, subsystem, action);
|
2005-07-05 20:24:41 +07:00
|
|
|
udev_rules_init(&rules, 0);
|
2005-04-02 22:45:35 +07:00
|
|
|
|
2005-06-05 20:55:29 +07:00
|
|
|
if (udev.type == DEV_BLOCK || udev.type == DEV_CLASS || udev.type == DEV_NET) {
|
|
|
|
/* handle device node */
|
2004-11-23 13:34:56 +07:00
|
|
|
if (strcmp(action, "add") == 0) {
|
2005-06-05 20:55:29 +07:00
|
|
|
struct sysfs_class_device *class_dev;
|
2004-11-23 13:34:56 +07:00
|
|
|
|
2005-06-05 20:55:29 +07:00
|
|
|
/* wait for sysfs of /sys/class /sys/block */
|
|
|
|
dbg("node add");
|
2005-03-07 10:29:43 +07:00
|
|
|
snprintf(path, sizeof(path), "%s%s", sysfs_path, udev.devpath);
|
|
|
|
path[sizeof(path)-1] = '\0';
|
2004-11-23 13:34:56 +07:00
|
|
|
class_dev = wait_class_device_open(path);
|
|
|
|
if (class_dev == NULL) {
|
2005-03-27 06:11:03 +07:00
|
|
|
dbg("open class device failed");
|
2005-06-05 20:55:29 +07:00
|
|
|
goto run;
|
2004-11-23 13:34:56 +07:00
|
|
|
}
|
|
|
|
dbg("opened class_dev->name='%s'", class_dev->name);
|
|
|
|
wait_for_class_device(class_dev, &error);
|
|
|
|
|
2005-06-05 20:55:29 +07:00
|
|
|
/* get major/minor */
|
2005-06-14 21:12:31 +07:00
|
|
|
if (udev.type == DEV_BLOCK || udev.type == DEV_CLASS)
|
2005-06-05 20:55:29 +07:00
|
|
|
udev.devt = get_devt(class_dev);
|
2005-06-14 21:12:31 +07:00
|
|
|
|
|
|
|
if (udev.type == DEV_NET || udev.devt) {
|
|
|
|
/* name device */
|
2005-07-05 20:24:41 +07:00
|
|
|
udev_rules_get_name(&rules, &udev, class_dev);
|
2005-06-14 21:12:31 +07:00
|
|
|
if (udev.ignore_device) {
|
|
|
|
info("device event will be ignored");
|
2005-07-20 23:12:56 +07:00
|
|
|
sysfs_close_class_device(class_dev);
|
2005-06-14 21:12:31 +07:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (udev.name[0] == '\0') {
|
|
|
|
info("device node creation supressed");
|
2005-07-20 23:12:56 +07:00
|
|
|
sysfs_close_class_device(class_dev);
|
2005-06-14 21:12:31 +07:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
/* create node, store in db */
|
|
|
|
retval = udev_add_device(&udev, class_dev);
|
|
|
|
} else {
|
|
|
|
dbg("no dev-file found");
|
2005-07-20 23:12:56 +07:00
|
|
|
udev_rules_get_run(&rules, &udev, class_dev, NULL);
|
2005-06-14 21:12:31 +07:00
|
|
|
if (udev.ignore_device) {
|
|
|
|
info("device event will be ignored");
|
2005-07-20 23:12:56 +07:00
|
|
|
sysfs_close_class_device(class_dev);
|
2005-06-14 21:12:31 +07:00
|
|
|
goto cleanup;
|
2005-06-05 20:55:29 +07:00
|
|
|
}
|
|
|
|
}
|
2004-11-23 13:34:56 +07:00
|
|
|
sysfs_close_class_device(class_dev);
|
|
|
|
} else if (strcmp(action, "remove") == 0) {
|
2005-06-05 20:55:29 +07:00
|
|
|
dbg("node remove");
|
2005-07-20 23:12:56 +07:00
|
|
|
udev_rules_get_run(&rules, &udev, NULL, NULL);
|
2005-04-02 22:45:35 +07:00
|
|
|
if (udev.ignore_device) {
|
|
|
|
dbg("device event will be ignored");
|
2005-06-14 21:12:31 +07:00
|
|
|
goto cleanup;
|
2005-04-02 22:45:35 +07:00
|
|
|
}
|
|
|
|
|
2005-06-05 20:55:29 +07:00
|
|
|
/* get name from db, remove db-entry, delete node */
|
2004-11-23 13:34:56 +07:00
|
|
|
retval = udev_remove_device(&udev);
|
2004-11-28 19:47:36 +07:00
|
|
|
}
|
2004-11-23 13:34:56 +07:00
|
|
|
|
2005-06-05 20:55:29 +07:00
|
|
|
/* export name of device node or netif */
|
2005-04-03 05:29:05 +07:00
|
|
|
if (udev.devname[0] != '\0')
|
|
|
|
setenv("DEVNAME", udev.devname, 1);
|
2005-06-22 07:11:59 +07:00
|
|
|
} else if (udev.type == DEV_DEVICE && strcmp(action, "add") == 0) {
|
|
|
|
struct sysfs_device *devices_dev;
|
|
|
|
|
|
|
|
/* wait for sysfs of /sys/devices/ */
|
|
|
|
dbg("devices add");
|
|
|
|
snprintf(path, sizeof(path), "%s%s", sysfs_path, devpath);
|
|
|
|
path[sizeof(path)-1] = '\0';
|
|
|
|
devices_dev = wait_devices_device_open(path);
|
|
|
|
if (!devices_dev) {
|
|
|
|
dbg("devices device unavailable (probably remove has beaten us)");
|
|
|
|
goto run;
|
|
|
|
}
|
|
|
|
dbg("devices device opened '%s'", path);
|
|
|
|
wait_for_devices_device(devices_dev, &error);
|
2005-07-20 23:12:56 +07:00
|
|
|
udev_rules_get_run(&rules, &udev, NULL, devices_dev);
|
2005-06-22 07:11:59 +07:00
|
|
|
sysfs_close_device(devices_dev);
|
|
|
|
if (udev.ignore_device) {
|
|
|
|
info("device event will be ignored");
|
|
|
|
goto cleanup;
|
2005-06-22 06:31:24 +07:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
dbg("default handling");
|
2005-07-20 23:12:56 +07:00
|
|
|
udev_rules_get_run(&rules, &udev, NULL, NULL);
|
2005-06-22 06:31:24 +07:00
|
|
|
if (udev.ignore_device) {
|
|
|
|
info("device event will be ignored");
|
|
|
|
goto cleanup;
|
2004-11-23 11:05:37 +07:00
|
|
|
}
|
2003-10-15 13:20:53 +07:00
|
|
|
}
|
2004-03-24 09:54:34 +07:00
|
|
|
|
2005-06-05 20:55:29 +07:00
|
|
|
run:
|
|
|
|
if (udev_run && !list_empty(&udev.run_list)) {
|
|
|
|
struct name_entry *name_loop;
|
|
|
|
|
|
|
|
dbg("executing run list");
|
|
|
|
list_for_each_entry(name_loop, &udev.run_list, node)
|
2005-06-25 20:35:14 +07:00
|
|
|
execute_program(name_loop->name, udev.subsystem, NULL, 0, NULL);
|
2005-06-05 20:55:29 +07:00
|
|
|
}
|
2004-11-23 14:01:57 +07:00
|
|
|
|
2005-06-14 21:12:31 +07:00
|
|
|
cleanup:
|
2005-03-29 16:25:52 +07:00
|
|
|
udev_cleanup_device(&udev);
|
|
|
|
|
2005-06-14 21:12:31 +07:00
|
|
|
exit:
|
2004-10-19 08:15:10 +07:00
|
|
|
logging_close();
|
[PATCH] hmm, handle net devices with udev?
Hmm, Arndt Bergmann sent a patch like this one a few weeks ago and
I want to bring the question back, if we want to handle net device
naming with udev.
With this patch it is actually possible to specify something like this
in udev.rules:
KERNEL="dummy*", SYSFS{address}="00:00:00:00:00:00", SYSFS{features}="0x0", NAME="blind%n"
KERNEL="eth*", SYSFS{address}="00:0d:60:77:30:91", NAME="private"
and you will get:
[root@pim udev.kay]# cat /proc/net/dev
Inter-| Receive | Transmit
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
lo: 1500 30 0 0 0 0 0 0 1500 30 0 0 0 0 0 0
private: 278393 1114 0 0 0 0 0 0 153204 1468 0 0 0 0 0 0
sit0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
blind0: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
The udevinfo program is also working:
[root@pim udev.kay]# ./udevinfo -a -p /sys/class/net/private
looking at class device '/sys/class/net/private':
SYSFS{addr_len}="6"
SYSFS{address}="00:0d:60:77:30:91"
SYSFS{broadcast}="ff:ff:ff:ff:ff:ff"
SYSFS{features}="0x3a9"
SYSFS{flags}="0x1003"
SYSFS{ifindex}="2"
SYSFS{iflink}="2"
SYSFS{mtu}="1500"
SYSFS{tx_queue_len}="1000"
SYSFS{type}="1"
follow the class device's "device"
looking at the device chain at '/sys/devices/pci0000:00/0000:00:1e.0/0000:02:01.0':
BUS="pci"
ID="0000:02:01.0"
SYSFS{class}="0x020000"
SYSFS{detach_state}="0"
SYSFS{device}="0x101e"
SYSFS{irq}="11"
SYSFS{subsystem_device}="0x0549"
SYSFS{subsystem_vendor}="0x1014"
SYSFS{vendor}="0x8086"
The matching device will be renamed to the given name. The device name
will not be put into the udev database, cause the kernel renames the
device and the sysfs name disappears.
I like it, cause it plugs in nicely. We have all the naming features
and sysfs queries and walks inside of udev. The sysfs timing races
are already solved and the management tools are working for net devices
too. nameif can only match the MAC address now. udev can match any sysfs
value of the device tree the net device is connected to.
But right, net devices do not have device nodes :)
2004-03-25 14:19:39 +07:00
|
|
|
return retval;
|
2005-04-27 10:59:47 +07:00
|
|
|
}
|