mirror of
https://github.com/AuxXxilium/eudev.git
synced 2024-12-16 19:47:24 +07:00
5aebfbcb62
Attached is a patch against udev-008 to send out a D-BUS message when a device node is added or removed. Using D-BUS lingo, udev acquires the org.kernel.udev service and sends out a NodeCreated or NodeDeleted signal on the org.kernel.udev.NodeMonitor interface. Each signal carries two parameters: the node in question and the corresponding sysfs path. [Note: the D-BUS concepts of service, interface, object can be a bit confusing at first glance] An example program listening for these messages looks like this #!/usr/bin/python import dbus import gtk def udev_signal_received(dbus_iface, member, service, object_path, message): [filename, sysfs_path] = message.get_args_list() if member=='NodeCreated': print 'Node %s created for %s'%(filename, sysfs_path) elif member=='NodeDeleted': print 'Node %s deleted for %s'%(filename, sysfs_path) def main(): bus = dbus.Bus(dbus.Bus.TYPE_SYSTEM) bus.add_signal_receiver(udev_signal_received, 'org.kernel.udev.NodeMonitor', # interface 'org.kernel.udev', # service '/org/kernel/udev/NodeMonitor') # object gtk.mainloop() if __name__ == '__main__': main() and this is the output when hot-plugging some usb-storage. [david@laptop udev-008]$ ~/node_monitor.py Node /udev/sda created for /block/sda Node /udev/sda1 created for /block/sda/sda1 Node /udev/sda1 deleted for /block/sda/sda1 Node /udev/sda deleted for /block/sda The patch requires D-BUS 0.20 or later while the python example program requires D-BUS from CVS as I only recently applied a patch against the python bindings.
168 lines
4.1 KiB
C
168 lines
4.1 KiB
C
/*
|
|
* udev-remove.c
|
|
*
|
|
* Userspace devfs
|
|
*
|
|
* Copyright (C) 2003 Greg Kroah-Hartman <greg@kroah.com>
|
|
*
|
|
*
|
|
* 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>
|
|
#include <stdio.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <errno.h>
|
|
|
|
#include "udev.h"
|
|
#include "udev_version.h"
|
|
#include "namedev.h"
|
|
#include "udevdb.h"
|
|
#include "libsysfs/libsysfs.h"
|
|
|
|
static int delete_path(char *path)
|
|
{
|
|
char *pos;
|
|
int retval;
|
|
|
|
pos = strrchr(path, '/');
|
|
while (1) {
|
|
*pos = '\0';
|
|
pos = strrchr(path, '/');
|
|
|
|
/* don't remove the last one */
|
|
if ((pos == path) || (pos == NULL))
|
|
break;
|
|
|
|
/* remove if empty */
|
|
retval = rmdir(path);
|
|
if (retval) {
|
|
if (errno == ENOTEMPTY)
|
|
return 0;
|
|
dbg("rmdir(%s) failed with error '%s'",
|
|
path, strerror(errno));
|
|
break;
|
|
}
|
|
dbg("removed '%s'", path);
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static int delete_node(struct udevice *dev)
|
|
{
|
|
char filename[255];
|
|
int retval;
|
|
|
|
strncpy(filename, udev_root, sizeof(filename));
|
|
strncat(filename, dev->name, sizeof(filename));
|
|
|
|
dbg("unlinking node '%s'", filename);
|
|
retval = unlink(filename);
|
|
if (retval) {
|
|
dbg("unlink(%s) failed with error '%s'",
|
|
filename, strerror(errno));
|
|
return retval;
|
|
}
|
|
|
|
/* remove subdirectories */
|
|
if (strchr(dev->name, '/'))
|
|
delete_path(filename);
|
|
|
|
if (*dev->symlink) {
|
|
strncpy(filename, udev_root, sizeof(filename));
|
|
strncat(filename, dev->symlink, sizeof(filename));
|
|
dbg("unlinking symlink '%s'", filename);
|
|
retval = unlink(filename);
|
|
if (retval) {
|
|
dbg("unlink(%s) failed with error '%s'",
|
|
filename, strerror(errno));
|
|
return retval;
|
|
}
|
|
if (strchr(dev->symlink, '/')) {
|
|
delete_path(filename);
|
|
}
|
|
}
|
|
|
|
return retval;
|
|
}
|
|
|
|
#ifdef USE_DBUS
|
|
/** Send out a signal that a device node is deleted
|
|
*
|
|
* @param name Name of the device node, e.g. /udev/sda1
|
|
* @param path Sysfs path of device
|
|
*/
|
|
static void sysbus_send_remove(const char* name, const char *path)
|
|
{
|
|
char filename[255];
|
|
DBusMessage* message;
|
|
DBusMessageIter iter;
|
|
|
|
if (sysbus_connection == NULL)
|
|
return;
|
|
|
|
strncpy(filename, udev_root, sizeof(filename));
|
|
strncat(filename, name, sizeof(filename));
|
|
|
|
/* object, interface, member */
|
|
message = dbus_message_new_signal("/org/kernel/udev/NodeMonitor",
|
|
"org.kernel.udev.NodeMonitor",
|
|
"NodeDeleted");
|
|
|
|
dbus_message_iter_init(message, &iter);
|
|
dbus_message_iter_append_string(&iter, filename);
|
|
dbus_message_iter_append_string(&iter, path);
|
|
|
|
if ( !dbus_connection_send(sysbus_connection, message, NULL) )
|
|
dbg("error sending d-bus signal");
|
|
|
|
dbus_message_unref(message);
|
|
|
|
dbus_connection_flush(sysbus_connection);
|
|
}
|
|
#endif /* USE_DBUS */
|
|
|
|
/*
|
|
* Look up the sysfs path in the database to see if we have named this device
|
|
* something different from the kernel name. If we have, us it. If not, use
|
|
* the default kernel name for lack of anything else to know to do.
|
|
*/
|
|
int udev_remove_device(char *path, char *subsystem)
|
|
{
|
|
char name[100];
|
|
struct udevice *dev;
|
|
char *temp;
|
|
|
|
dev = udevdb_get_dev(path);
|
|
if (dev == NULL) {
|
|
dbg("'%s' not found in database, falling back on default name", path);
|
|
temp = strrchr(path, '/');
|
|
if (temp == NULL)
|
|
return -ENODEV;
|
|
strncpy(name, &temp[1], sizeof(name));
|
|
}
|
|
|
|
dbg("name is '%s'", dev->name);
|
|
udevdb_delete_dev(path);
|
|
|
|
#ifdef USE_DBUS
|
|
sysbus_send_remove(name, device);
|
|
#endif /* USE_DBUS */
|
|
|
|
return delete_node(dev);
|
|
}
|