2003-07-21 10:48:48 +07:00
|
|
|
/*
|
|
|
|
* udev-remove.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
|
2005-07-22 23:35:58 +07:00
|
|
|
* Copyright (C) 2004 Kay Sievers <kay.sievers@vrfy.org>
|
2003-07-21 10:48:48 +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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
2004-10-19 09:11:51 +07:00
|
|
|
#include <stddef.h>
|
2003-07-21 10:48:48 +07:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
2004-10-19 13:14:20 +07:00
|
|
|
#include <sys/stat.h>
|
2003-07-21 10:48:48 +07:00
|
|
|
|
|
|
|
#include "udev.h"
|
|
|
|
|
2004-11-06 20:28:01 +07:00
|
|
|
static int delete_node(struct udevice *udev)
|
2003-07-21 10:48:48 +07:00
|
|
|
{
|
2005-03-07 10:29:43 +07:00
|
|
|
char filename[PATH_SIZE];
|
|
|
|
char partitionname[PATH_SIZE];
|
2005-03-05 11:35:31 +07:00
|
|
|
struct name_entry *name_loop;
|
2005-02-18 09:30:03 +07:00
|
|
|
struct stat stats;
|
2003-11-12 18:48:01 +07:00
|
|
|
int retval;
|
2004-02-17 12:44:28 +07:00
|
|
|
int i;
|
2004-10-14 13:13:26 +07:00
|
|
|
int num;
|
2003-07-21 10:48:48 +07:00
|
|
|
|
2006-01-10 19:19:53 +07:00
|
|
|
if (!list_empty(&udev->symlink_list)) {
|
|
|
|
char symlinks[512] = "";
|
2005-03-10 23:34:31 +07:00
|
|
|
|
2006-01-10 19:19:53 +07:00
|
|
|
list_for_each_entry(name_loop, &udev->symlink_list, node) {
|
|
|
|
snprintf(filename, sizeof(filename), "%s/%s", udev_root, name_loop->name);
|
|
|
|
filename[sizeof(filename)-1] = '\0';
|
|
|
|
|
|
|
|
if (stat(filename, &stats) != 0) {
|
|
|
|
dbg("symlink '%s' not found", filename);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (udev->devt && stats.st_rdev != udev->devt) {
|
|
|
|
info("symlink '%s' points to a different device, skip removal", filename);
|
|
|
|
continue;
|
|
|
|
}
|
2005-03-10 23:34:31 +07:00
|
|
|
|
2006-01-10 19:19:53 +07:00
|
|
|
info("removing symlink '%s'", filename);
|
|
|
|
unlink(filename);
|
|
|
|
|
|
|
|
if (strchr(filename, '/'))
|
|
|
|
delete_path(filename);
|
|
|
|
|
|
|
|
strlcat(symlinks, filename, sizeof(symlinks));
|
|
|
|
strlcat(symlinks, " ", sizeof(symlinks));
|
|
|
|
}
|
2005-03-10 23:34:31 +07:00
|
|
|
|
2006-01-10 19:19:53 +07:00
|
|
|
remove_trailing_chars(symlinks, ' ');
|
|
|
|
if (symlinks[0] != '\0')
|
|
|
|
setenv("DEVLINKS", symlinks, 1);
|
2005-03-10 23:34:31 +07:00
|
|
|
}
|
|
|
|
|
2005-03-07 10:29:43 +07:00
|
|
|
snprintf(filename, sizeof(filename), "%s/%s", udev_root, udev->name);
|
|
|
|
filename[sizeof(filename)-1] = '\0';
|
2003-07-21 10:48:48 +07:00
|
|
|
|
2005-03-10 23:34:31 +07:00
|
|
|
if (stat(filename, &stats) != 0) {
|
|
|
|
dbg("device node '%s' not found", filename);
|
2005-02-18 09:30:03 +07:00
|
|
|
return -1;
|
2005-03-10 23:34:31 +07:00
|
|
|
}
|
2005-02-21 19:44:39 +07:00
|
|
|
if (udev->devt && stats.st_rdev != udev->devt) {
|
2005-02-18 09:30:03 +07:00
|
|
|
info("device node '%s' points to a different device, skip removal", filename);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
[PATCH] add udev logging to info log
On Thu, Jan 15, 2004 at 05:14:16AM +0100, Kay Sievers wrote:
> On Wed, Jan 14, 2004 at 01:10:43PM -0800, Greg KH wrote:
> > On Wed, Jan 14, 2004 at 02:34:26PM -0600, Clay Haapala wrote:
> > > On Wed, 14 Jan 2004, Chris Friesen spake thusly:
> > > >
> > > > Maybe for ones with a matching rule, you could print something like:
> > > >
> > > >
> > > Is the act of printing/syslogging a rule in an of itself?
> >
> > No, as currently the only way stuff ends up in the syslog is if
> > DEBUG=true is used on the build line.
> >
> > But it's sounding like we might want to change that... :)
>
> How about this in the syslog after connect/disconnect?
>
> Jan 15 05:07:45 pim udev[28007]: configured rule in '/etc/udev/udev.rules' at line 17 applied, 'video*' becomes 'video/webcam%n'
> Jan 15 05:07:45 pim udev[28007]: creating device node '/udev/video/webcam0'
> Jan 15 05:07:47 pim udev[28015]: removing device node '/udev/video/webcam0'
Here is a slightly better version. I've created a logging.h file and
moved the debug macros from udev.h in there.
If you type:
'make' - you will get a binary that prints one or two lines to syslog
if a device node is created or deleted
'make LOG=false' - you get a binary that prints asolutely nothing
'make DEBUG=true' - the same as today, it will print all debug lines
2004-01-16 12:53:20 +07:00
|
|
|
info("removing device node '%s'", filename);
|
2005-02-09 10:37:32 +07:00
|
|
|
retval = unlink_secure(filename);
|
2004-08-10 14:46:38 +07:00
|
|
|
if (retval)
|
2003-11-12 18:48:01 +07:00
|
|
|
return retval;
|
|
|
|
|
2006-01-10 19:19:53 +07:00
|
|
|
setenv("DEVNAME", filename, 1);
|
2005-11-06 02:32:20 +07:00
|
|
|
|
2004-11-06 20:28:01 +07:00
|
|
|
num = udev->partitions;
|
2004-10-14 13:13:26 +07:00
|
|
|
if (num > 0) {
|
|
|
|
info("removing all_partitions '%s[1-%i]'", filename, num);
|
2005-02-09 14:43:18 +07:00
|
|
|
if (num > 255) {
|
2004-10-14 13:13:26 +07:00
|
|
|
info("garbage from udev database, skip all_partitions removal");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
for (i = 1; i <= num; i++) {
|
2005-03-07 10:29:43 +07:00
|
|
|
snprintf(partitionname, sizeof(partitionname), "%s%d", filename, i);
|
|
|
|
partitionname[sizeof(partitionname)-1] = '\0';
|
2005-02-09 10:37:32 +07:00
|
|
|
unlink_secure(partitionname);
|
2004-02-17 12:44:28 +07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-11-06 20:28:01 +07:00
|
|
|
if (strchr(udev->name, '/'))
|
2003-12-08 00:12:07 +07:00
|
|
|
delete_path(filename);
|
|
|
|
|
2003-11-12 18:48:01 +07:00
|
|
|
return retval;
|
2003-07-21 10:48:48 +07:00
|
|
|
}
|
|
|
|
|
2003-12-08 00:12:07 +07:00
|
|
|
/*
|
2004-10-19 09:11:51 +07:00
|
|
|
* look up the sysfs path in the database to get the node name to remove
|
|
|
|
* If we can't find it, use kernel name for lack of anything else to know to do
|
2003-12-08 00:12:07 +07:00
|
|
|
*/
|
2004-10-19 09:11:51 +07:00
|
|
|
int udev_remove_device(struct udevice *udev)
|
2003-07-21 10:48:48 +07:00
|
|
|
{
|
2006-01-10 03:18:00 +07:00
|
|
|
if (major(udev->devt) == 0)
|
2004-10-19 09:28:39 +07:00
|
|
|
return 0;
|
2003-07-21 10:48:48 +07:00
|
|
|
|
2006-01-10 03:18:00 +07:00
|
|
|
if (udev_db_get_device(udev, udev->dev->devpath) == 0) {
|
2005-07-06 03:40:42 +07:00
|
|
|
if (udev->ignore_remove) {
|
|
|
|
dbg("remove event for '%s' requested to be ignored by rule", udev->name);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
dbg("remove name='%s'", udev->name);
|
|
|
|
udev_db_delete_device(udev);
|
|
|
|
} else {
|
2006-01-10 03:18:00 +07:00
|
|
|
dbg("'%s' not found in database, using kernel name '%s'", udev->dev->devpath, udev->dev->kernel_name);
|
|
|
|
strlcpy(udev->name, udev->dev->kernel_name, sizeof(udev->name));
|
[PATCH] netdev - udevdb+dev.d changes
Here is a patch to change the netdev handling in the database and for
the dev.d/ calls. I applies on top of the udevd.patch, cause klibc has
no sysinfo().
o netdev's are also put into our database now. I want this for the
udevruler gui to get a list of all handled devices.
All devices in the db are stamped with the system uptime value at
the creation time. 'udevinfo -d' prints it.
o the DEVPATH value is the key for udevdb, but if we rename
a netdev, the name is replaced in the kernel, so we add
the changed name to the db to match with the remove event.
NOTE: The dev.d/ scripts still get the original name from the
hotplug call. Should we replace DEVPATH with the new name too?
o We now only add a device to the db, if we have successfully created
the main node or successfully renamed a netdev. This is the main part
of the patch, cause I needed to clean the retval passing trough all
the functions used for node creation.
o DEVNODE sounds a bit ugly for netdev's so I exported DEVNAME too.
Can we change the name?
o I've added a UDEV_NO_DEVD to possibly skip the script execution
and used it in udev-test.pl.
udevstart is the same horror now, if you have scripts with logging
statements in dev.d/ it takes minutes to finish, can we skip the
scripts here too?
o The get_device_type() function is changed to be more strict, cause
'udevinfo -a -p /block/' gets a class device for it and tries to
print the major/minor values.
o bugfix, the RESULT value has now a working newline removal and a test
for this case.
2004-04-01 14:12:57 +07:00
|
|
|
}
|
2003-12-09 00:40:40 +07:00
|
|
|
|
2004-10-19 09:28:39 +07:00
|
|
|
return delete_node(udev);
|
2003-07-21 10:48:48 +07:00
|
|
|
}
|