2003-07-21 07:48:48 +04:00
/*
2008-09-10 04:40:42 +04:00
* Copyright ( C ) 2004 - 2008 Kay Sievers < kay . sievers @ vrfy . org >
2003-07-21 07:48:48 +04:00
*
2008-09-10 04:40:42 +04: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 , either version 2 of the License , or
* ( at your option ) any later version .
2003-07-21 07:48:48 +04:00
*
2008-09-10 04:40:42 +04:00
* 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 , see < http : //www.gnu.org/licenses/>.
2003-07-21 07:48:48 +04:00
*/
# include <stdlib.h>
# include <string.h>
# include <stdio.h>
2006-01-09 23:18:00 +03:00
# include <stddef.h>
2003-07-21 07:48:48 +04:00
# include <fcntl.h>
# include <unistd.h>
# include <errno.h>
2006-02-03 15:52:37 +03:00
# include <grp.h>
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
# include <dirent.h>
2003-10-23 06:39:54 +04:00
# include <sys/stat.h>
2003-11-24 07:56:18 +03:00
# include <sys/types.h>
2003-07-21 07:48:48 +04:00
# include "udev.h"
2004-10-06 10:39:05 +04:00
2007-06-21 04:28:09 +04:00
# define TMP_FILE_EXT ".udev-tmp"
2003-07-21 07:48:48 +04:00
2008-10-16 19:16:58 +04:00
/* reverse mapping from the device file name to the devpath */
static int name_index ( struct udev * udev , const char * devpath , const char * name , int add , int test )
2004-02-17 08:44:28 +03:00
{
2008-10-16 19:16:58 +04:00
char device [ UTIL_PATH_SIZE ] ;
char filename [ UTIL_PATH_SIZE * 2 ] ;
size_t devlen = strlen ( udev_get_dev_path ( udev ) ) + 1 ;
size_t start ;
int fd ;
/* directory with device name */
util_strlcpy ( filename , udev_get_dev_path ( udev ) , sizeof ( filename ) ) ;
start = util_strlcat ( filename , " /.udev/names/ " , sizeof ( filename ) ) ;
util_strlcat ( filename , & name [ devlen ] , sizeof ( filename ) ) ;
util_path_encode ( & filename [ start ] , sizeof ( filename ) - start ) ;
/* entry with the devpath */
util_strlcpy ( device , devpath , sizeof ( device ) ) ;
util_path_encode ( device , sizeof ( device ) ) ;
util_strlcat ( filename , " / " , sizeof ( filename ) ) ;
util_strlcat ( filename , device , sizeof ( filename ) ) ;
if ( add ) {
info ( udev , " creating index: '%s' \n " , filename ) ;
2008-10-18 22:12:55 +04:00
util_create_path ( udev , filename ) ;
2008-10-16 19:16:58 +04:00
fd = open ( filename , O_WRONLY | O_TRUNC | O_CREAT , 0644 ) ;
if ( fd > 0 )
close ( fd ) ;
} else {
info ( udev , " removing index: '%s' \n " , filename ) ;
unlink ( filename ) ;
2008-10-18 22:12:55 +04:00
util_delete_path ( udev , filename ) ;
2008-10-16 19:16:58 +04:00
}
return 0 ;
}
int udev_node_mknod ( struct udev_device * dev , const char * file , dev_t devnum , mode_t mode , uid_t uid , gid_t gid )
{
struct udev * udev = udev_device_get_udev ( dev ) ;
2008-09-10 23:50:21 +04:00
char file_tmp [ UTIL_PATH_SIZE + sizeof ( TMP_FILE_EXT ) ] ;
2004-04-03 10:16:38 +04:00
struct stat stats ;
2008-07-11 01:54:28 +04:00
int preserve = 0 ;
int err = 0 ;
2004-04-03 10:16:38 +04:00
2008-10-16 19:16:58 +04:00
if ( major ( devnum ) = = 0 )
devnum = udev_device_get_devnum ( dev ) ;
if ( strcmp ( udev_device_get_subsystem ( dev ) , " block " ) = = 0 )
2005-06-18 12:57:10 +04:00
mode | = S_IFBLK ;
2006-01-09 23:18:00 +03:00
else
2005-06-18 12:57:10 +04:00
mode | = S_IFCHR ;
2008-10-16 19:16:58 +04:00
if ( file = = NULL )
file = udev_device_get_devnode ( dev ) ;
2007-06-21 04:28:09 +04:00
if ( lstat ( file , & stats ) = = 0 ) {
2008-10-16 19:16:58 +04:00
if ( ( ( stats . st_mode & S_IFMT ) = = ( mode & S_IFMT ) ) & & ( stats . st_rdev = = devnum ) ) {
info ( udev , " preserve file '%s', because it has correct dev_t \n " , file ) ;
2008-07-11 01:54:28 +04:00
preserve = 1 ;
2008-10-16 19:16:58 +04:00
udev_selinux_lsetfilecon ( udev , file , mode ) ;
2008-07-11 01:54:28 +04:00
} else {
2008-10-16 19:16:58 +04:00
info ( udev , " atomically replace existing file '%s' \n " , file ) ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( file_tmp , file , sizeof ( file_tmp ) ) ;
util_strlcat ( file_tmp , TMP_FILE_EXT , sizeof ( file_tmp ) ) ;
2008-07-11 01:54:28 +04:00
unlink ( file_tmp ) ;
2008-10-16 19:16:58 +04:00
udev_selinux_setfscreatecon ( udev , file_tmp , mode ) ;
err = mknod ( file_tmp , mode , devnum ) ;
udev_selinux_resetfscreatecon ( udev ) ;
2008-07-11 01:54:28 +04:00
if ( err ! = 0 ) {
2008-10-16 19:16:58 +04:00
err ( udev , " mknod(%s, %#o, %u, %u) failed: %m \n " ,
file_tmp , mode , major ( devnum ) , minor ( devnum ) ) ;
2008-07-11 01:54:28 +04:00
goto exit ;
}
err = rename ( file_tmp , file ) ;
if ( err ! = 0 ) {
2008-10-16 19:16:58 +04:00
err ( udev , " rename(%s, %s) failed: %m \n " , file_tmp , file ) ;
2008-07-11 01:54:28 +04:00
unlink ( file_tmp ) ;
}
2007-06-21 04:28:09 +04:00
}
2007-06-21 11:00:35 +04:00
} else {
2008-10-16 19:16:58 +04:00
info ( udev , " mknod(%s, %#o, (%u,%u)) \n " , file , mode , major ( devnum ) , minor ( devnum ) ) ;
udev_selinux_setfscreatecon ( udev , file , mode ) ;
err = mknod ( file , mode , devnum ) ;
udev_selinux_resetfscreatecon ( udev ) ;
2008-07-11 01:54:28 +04:00
if ( err ! = 0 ) {
2008-10-16 19:16:58 +04:00
err ( udev , " mknod(%s, %#o, (%u,%u) failed: %m \n " , file , mode , major ( devnum ) , minor ( devnum ) ) ;
2008-07-11 01:54:28 +04:00
goto exit ;
}
2004-02-17 08:44:28 +03:00
}
2008-07-11 01:54:28 +04:00
if ( ! preserve | | stats . st_mode ! = mode ) {
2008-10-16 19:16:58 +04:00
info ( udev , " chmod(%s, %#o) \n " , file , mode ) ;
2008-07-11 01:54:28 +04:00
err = chmod ( file , mode ) ;
if ( err ! = 0 ) {
2008-10-16 19:16:58 +04:00
err ( udev , " chmod(%s, %#o) failed: %m \n " , file , mode ) ;
2008-07-11 01:54:28 +04:00
goto exit ;
}
2004-02-17 08:44:28 +03:00
}
2008-07-11 01:54:28 +04:00
if ( ! preserve | | stats . st_uid ! = uid | | stats . st_gid ! = gid ) {
2008-10-16 19:16:58 +04:00
info ( udev , " chown(%s, %u, %u) \n " , file , uid , gid ) ;
2008-07-11 01:54:28 +04:00
err = chown ( file , uid , gid ) ;
if ( err ! = 0 ) {
2008-10-16 19:16:58 +04:00
err ( udev , " chown(%s, %u, %u) failed: %m \n " , file , uid , gid ) ;
[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 11:12:57 +04:00
goto exit ;
2004-02-17 08:44:28 +03:00
}
}
[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 11:12:57 +04:00
exit :
2008-07-11 01:54:28 +04:00
return err ;
2004-02-17 08:44:28 +03:00
}
2008-10-16 19:16:58 +04:00
static int node_symlink ( struct udev * udev , const char * node , const char * slink )
2006-06-14 18:32:52 +04:00
{
2007-06-21 04:28:09 +04:00
struct stat stats ;
2008-09-10 23:50:21 +04:00
char target [ UTIL_PATH_SIZE ] = " " ;
char slink_tmp [ UTIL_PATH_SIZE + sizeof ( TMP_FILE_EXT ) ] ;
2007-03-15 05:54:12 +03:00
int i = 0 ;
int tail = 0 ;
2006-06-14 18:32:52 +04:00
int len ;
2008-10-16 19:16:58 +04:00
int err = 0 ;
2006-06-14 18:32:52 +04:00
2007-03-15 05:54:12 +03:00
/* use relative link */
while ( node [ i ] & & ( node [ i ] = = slink [ i ] ) ) {
if ( node [ i ] = = ' / ' )
tail = i + 1 ;
i + + ;
}
while ( slink [ i ] ! = ' \0 ' ) {
if ( slink [ i ] = = ' / ' )
2008-09-10 20:59:42 +04:00
util_strlcat ( target , " ../ " , sizeof ( target ) ) ;
2007-03-15 05:54:12 +03:00
i + + ;
}
2008-09-10 20:59:42 +04:00
util_strlcat ( target , & node [ tail ] , sizeof ( target ) ) ;
2007-03-15 05:54:12 +03:00
2007-06-21 04:28:09 +04:00
/* preserve link with correct target, do not replace node of other device */
if ( lstat ( slink , & stats ) = = 0 ) {
if ( S_ISBLK ( stats . st_mode ) | | S_ISCHR ( stats . st_mode ) ) {
struct stat stats2 ;
2008-10-16 19:16:58 +04:00
info ( udev , " found existing node instead of symlink '%s' \n " , slink ) ;
2007-06-21 04:28:09 +04:00
if ( lstat ( node , & stats2 ) = = 0 ) {
if ( ( stats . st_mode & S_IFMT ) = = ( stats2 . st_mode & S_IFMT ) & &
stats . st_rdev = = stats2 . st_rdev ) {
2008-10-16 19:16:58 +04:00
info ( udev , " replace device node '%s' with symlink to our node '%s' \n " ,
slink , node ) ;
2007-06-21 04:28:09 +04:00
} else {
2008-10-16 19:16:58 +04:00
err ( udev , " device node '%s' already exists, "
" link to '%s' will not overwrite it \n " ,
slink , node ) ;
2007-06-21 04:28:09 +04:00
goto exit ;
}
}
} else if ( S_ISLNK ( stats . st_mode ) ) {
2008-09-10 23:50:21 +04:00
char buf [ UTIL_PATH_SIZE ] ;
2007-06-21 04:28:09 +04:00
2008-10-16 19:16:58 +04:00
info ( udev , " found existing symlink '%s' \n " , slink ) ;
2007-06-21 04:28:09 +04:00
len = readlink ( slink , buf , sizeof ( buf ) ) ;
if ( len > 0 ) {
buf [ len ] = ' \0 ' ;
if ( strcmp ( target , buf ) = = 0 ) {
2008-10-16 19:16:58 +04:00
info ( udev , " preserve already existing symlink '%s' to '%s' \n " ,
slink , target ) ;
udev_selinux_lsetfilecon ( udev , slink , S_IFLNK ) ;
2007-06-21 04:28:09 +04:00
goto exit ;
}
}
2006-06-14 18:32:52 +04:00
}
2007-06-21 11:00:35 +04:00
} else {
2008-10-16 19:16:58 +04:00
info ( udev , " creating symlink '%s' to '%s' \n " , slink , target ) ;
udev_selinux_setfscreatecon ( udev , slink , S_IFLNK ) ;
err = symlink ( target , slink ) ;
udev_selinux_resetfscreatecon ( udev ) ;
if ( err = = 0 )
2007-06-21 11:00:35 +04:00
goto exit ;
2006-06-14 18:32:52 +04:00
}
2008-10-16 19:16:58 +04:00
info ( udev , " atomically replace '%s' \n " , slink ) ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( slink_tmp , slink , sizeof ( slink_tmp ) ) ;
util_strlcat ( slink_tmp , TMP_FILE_EXT , sizeof ( slink_tmp ) ) ;
2007-06-25 18:03:11 +04:00
unlink ( slink_tmp ) ;
2008-10-16 19:16:58 +04:00
udev_selinux_setfscreatecon ( udev , slink , S_IFLNK ) ;
err = symlink ( target , slink_tmp ) ;
udev_selinux_resetfscreatecon ( udev ) ;
if ( err ! = 0 ) {
err ( udev , " symlink(%s, %s) failed: %m \n " , target , slink_tmp ) ;
2007-06-21 04:28:09 +04:00
goto exit ;
}
2008-10-16 19:16:58 +04:00
err = rename ( slink_tmp , slink ) ;
if ( err ! = 0 ) {
err ( udev , " rename(%s, %s) failed: %m \n " , slink_tmp , slink ) ;
2007-06-21 04:28:09 +04:00
unlink ( slink_tmp ) ;
goto exit ;
}
2006-06-14 18:32:52 +04:00
exit :
2008-10-16 19:16:58 +04:00
return err ;
2006-06-14 18:32:52 +04:00
}
2008-10-16 21:23:07 +04:00
static int name_index_get_devices ( struct udev * udev , const char * name , struct udev_list_node * dev_list )
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
{
2008-10-16 19:16:58 +04:00
char dirname [ PATH_MAX ] ;
size_t devlen = strlen ( udev_get_dev_path ( udev ) ) + 1 ;
size_t start ;
DIR * dir ;
int count = 0 ;
util_strlcpy ( dirname , udev_get_dev_path ( udev ) , sizeof ( dirname ) ) ;
start = util_strlcat ( dirname , " /.udev/names/ " , sizeof ( dirname ) ) ;
util_strlcat ( dirname , & name [ devlen ] , sizeof ( dirname ) ) ;
util_path_encode ( & dirname [ start ] , sizeof ( dirname ) - start ) ;
dir = opendir ( dirname ) ;
if ( dir = = NULL ) {
info ( udev , " no index directory '%s': %m \n " , dirname ) ;
count = - 1 ;
goto out ;
}
info ( udev , " found index directory '%s' \n " , dirname ) ;
2008-10-16 21:23:07 +04:00
2008-10-16 19:16:58 +04:00
while ( 1 ) {
struct dirent * ent ;
char device [ UTIL_PATH_SIZE ] ;
ent = readdir ( dir ) ;
if ( ent = = NULL | | ent - > d_name [ 0 ] = = ' \0 ' )
break ;
if ( ent - > d_name [ 0 ] = = ' . ' )
continue ;
util_strlcpy ( device , udev_get_sys_path ( udev ) , sizeof ( device ) ) ;
util_strlcat ( device , ent - > d_name , sizeof ( device ) ) ;
util_path_decode ( device ) ;
2008-10-16 21:23:07 +04:00
udev_list_entry_add ( udev , dev_list , device , NULL , 1 , 0 ) ;
2008-10-16 19:16:58 +04:00
count + + ;
}
closedir ( dir ) ;
out :
return count ;
}
static int update_link ( struct udev_device * dev , const char * slink , int test )
{
struct udev * udev = udev_device_get_udev ( dev ) ;
2008-10-16 21:23:07 +04:00
struct udev_list_node dev_list ;
struct udev_list_entry * dev_entry ;
2008-09-10 23:50:21 +04:00
char target [ UTIL_PATH_SIZE ] = " " ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
int count ;
int priority = 0 ;
int rc = 0 ;
2008-10-16 19:16:58 +04:00
info ( udev , " update symlink '%s' of '%s' \n " , slink , udev_device_get_syspath ( dev ) ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
2008-10-16 21:23:07 +04:00
udev_list_init ( & dev_list ) ;
count = name_index_get_devices ( udev , slink , & dev_list ) ;
2008-10-16 19:16:58 +04:00
info ( udev , " found %i devices with name '%s' \n " , count , slink ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
2007-03-21 13:55:26 +03:00
/* if we don't have a reference, delete it */
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
if ( count < = 0 ) {
2008-10-16 19:16:58 +04:00
info ( udev , " no reference left, remove '%s' \n " , slink ) ;
if ( ! test ) {
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
unlink ( slink ) ;
2008-10-18 22:12:55 +04:00
util_delete_path ( udev , slink ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
}
goto out ;
}
/* find the device with the highest priority */
2008-10-16 21:23:07 +04:00
udev_list_entry_foreach ( dev_entry , udev_list_get_entry ( & dev_list ) ) {
const char * syspath ;
2008-10-16 19:16:58 +04:00
struct udev_device * dev_db ;
const char * devnode ;
2008-10-16 21:23:07 +04:00
syspath = udev_list_entry_get_name ( dev_entry ) ;
info ( udev , " found '%s' for '%s' \n " , syspath , slink ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
/* did we find ourself? we win, if we have the same priority */
2008-10-16 21:23:07 +04:00
if ( strcmp ( udev_device_get_syspath ( dev ) , syspath ) = = 0 ) {
2008-10-16 19:16:58 +04:00
info ( udev , " compare (our own) priority of '%s' %i >= %i \n " ,
udev_device_get_devpath ( dev ) , udev_device_get_devlink_priority ( dev ) , priority ) ;
if ( strcmp ( udev_device_get_devnode ( dev ) , slink ) = = 0 ) {
info ( udev , " '%s' is our device node, database inconsistent, skip link update \n " ,
udev_device_get_devnode ( dev ) ) ;
} else if ( target [ 0 ] = = ' \0 ' | | udev_device_get_devlink_priority ( dev ) > = priority ) {
priority = udev_device_get_devlink_priority ( dev ) ;
util_strlcpy ( target , udev_device_get_devnode ( dev ) , sizeof ( target ) ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
}
continue ;
}
2007-09-20 21:38:58 +04:00
/* another device, read priority from database */
2008-10-16 21:23:07 +04:00
dev_db = udev_device_new_from_syspath ( udev , syspath ) ;
2008-10-16 19:16:58 +04:00
if ( dev_db = = NULL )
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
continue ;
2008-10-16 19:16:58 +04:00
devnode = udev_device_get_devnode ( dev_db ) ;
if ( devnode ! = NULL ) {
if ( strcmp ( devnode , slink ) = = 0 ) {
info ( udev , " '%s' is a device node of '%s', skip link update \n " ,
2008-10-16 21:23:07 +04:00
devnode , syspath ) ;
2007-09-12 02:21:53 +04:00
} else {
2008-10-16 19:16:58 +04:00
info ( udev , " compare priority of '%s' %i > %i \n " ,
udev_device_get_devpath ( dev_db ) ,
udev_device_get_devlink_priority ( dev_db ) ,
priority ) ;
if ( target [ 0 ] = = ' \0 ' | | udev_device_get_devlink_priority ( dev_db ) > priority ) {
priority = udev_device_get_devlink_priority ( dev_db ) ;
util_strlcpy ( target , devnode , sizeof ( target ) ) ;
2007-09-12 02:21:53 +04:00
}
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
}
}
2008-10-16 19:16:58 +04:00
udev_device_unref ( dev_db ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
}
2008-10-18 21:27:38 +04:00
udev_list_cleanup_entries ( udev , & dev_list ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
if ( target [ 0 ] = = ' \0 ' ) {
2008-10-16 19:16:58 +04:00
info ( udev , " no current target for '%s' found \n " , slink ) ;
2007-09-12 02:21:53 +04:00
rc = 1 ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
goto out ;
}
/* create symlink to the target with the highest priority */
2008-10-16 19:16:58 +04:00
info ( udev , " '%s' with target '%s' has the highest priority %i, create it \n " , slink , target , priority ) ;
if ( ! test ) {
2008-10-18 22:12:55 +04:00
util_create_path ( udev , slink ) ;
2008-10-16 19:16:58 +04:00
node_symlink ( udev , target , slink ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
}
out :
return rc ;
}
2008-10-16 19:16:58 +04:00
void udev_node_update_old_links ( struct udev_device * dev , struct udev_device * dev_old , int test )
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
{
2008-10-16 19:16:58 +04:00
struct udev * udev = udev_device_get_udev ( dev ) ;
struct udev_list_entry * list_entry ;
const char * devnode_old ;
/* update possible left-over symlinks */
udev_list_entry_foreach ( list_entry , udev_device_get_devlinks_list_entry ( dev_old ) ) {
struct udev_list_entry * list_entry_current ;
udev_list_entry_foreach ( list_entry_current , udev_device_get_devlinks_list_entry ( dev ) ) {
if ( strcmp ( udev_list_entry_get_name ( list_entry_current ) ,
udev_list_entry_get_name ( list_entry ) ) = = 0 )
continue ;
}
/* link does no longer belong to this device */
info ( udev , " update old symlink '%s' no longer belonging to '%s' \n " ,
udev_list_entry_get_name ( list_entry ) , udev_device_get_devpath ( dev ) ) ;
update_link ( dev , udev_list_entry_get_name ( list_entry ) , test ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
}
2008-10-16 19:16:58 +04:00
/*
* if the node name has changed , delete the node ,
* and possibly restore a symlink of another device
*/
devnode_old = udev_device_get_devnode ( dev_old ) ;
if ( devnode_old ! = NULL ) {
const char * devnode = udev_device_get_devnode ( dev ) ;
2007-03-19 13:57:54 +03:00
2008-10-16 19:16:58 +04:00
if ( devnode ! = NULL & & strcmp ( devnode_old , devnode ) ! = 0 )
update_link ( dev , devnode_old , test ) ;
priority based symlink handling
Symlinks can have priorities now, the priority is assigned to the device
and specified with OPTIONS="link_priority=100". Devices with higher
priorities overwrite the symlinks of devices with lower priorities.
If the device, that currently owns the link goes away, the symlink
will be removed, and recreated, pointing to the next device with the
highest actual priority.
This should solve the issue, that inserting an USB-stick may overwrite the
/dev/disk/by-id/-link of another disk, and removes the entire link after the
USB-stick is disconnected. If no priorities are specified, the new link will
overwrite the current one, and if the device goes away, it will restore
the old link. It should be possible to assign lower priorities to removable
devices, if needed.
In multipath setups, we see several devices, which all connect to the same
volume, and therefore all try to create the same metadata-links. The
different path-devices are combined into one device-mapper device, which also
contains the same metadata. It should be possible, to assign multipath-table
device-mapper devices a higher priority, so path-devices that appear and
disappear, will not overwrite or delete the device-mapper device links.
2007-03-18 14:51:57 +03:00
}
}
2008-10-16 19:16:58 +04:00
int udev_node_add ( struct udev_device * dev , mode_t mode , const char * owner , const char * group , int test )
2004-03-02 10:31:06 +03:00
{
2008-10-16 19:16:58 +04:00
struct udev * udev = udev_device_get_udev ( dev ) ;
2005-03-10 04:46:26 +03:00
uid_t uid ;
gid_t gid ;
2005-03-05 07:35:31 +03:00
int i ;
2008-10-16 19:16:58 +04:00
int num ;
struct udev_list_entry * list_entry ;
int err = 0 ;
2006-04-06 00:29:33 +04:00
2008-10-18 22:12:55 +04:00
util_create_path ( udev , udev_device_get_devnode ( dev ) ) ;
2003-11-12 14:48:01 +03:00
2008-10-16 19:16:58 +04:00
if ( strcmp ( owner , " root " ) = = 0 )
2005-03-10 04:46:26 +03:00
uid = 0 ;
else {
2003-11-12 14:47:57 +03:00
char * endptr ;
2005-03-10 04:46:26 +03:00
unsigned long id ;
2005-02-09 10:43:18 +03:00
2008-10-16 19:16:58 +04:00
id = strtoul ( owner , & endptr , 10 ) ;
2004-01-20 06:44:24 +03:00
if ( endptr [ 0 ] = = ' \0 ' )
2003-11-12 14:47:57 +03:00
uid = ( uid_t ) id ;
2005-03-06 08:16:52 +03:00
else
2008-10-18 22:12:55 +04:00
uid = util_lookup_user ( udev , owner ) ;
2003-11-12 14:47:57 +03:00
}
2008-10-16 19:16:58 +04:00
if ( strcmp ( group , " root " ) = = 0 )
2005-03-10 04:46:26 +03:00
gid = 0 ;
else {
2003-11-12 14:47:57 +03:00
char * endptr ;
2005-03-10 04:46:26 +03:00
unsigned long id ;
2005-02-09 10:43:18 +03:00
2008-10-16 19:16:58 +04:00
id = strtoul ( group , & endptr , 10 ) ;
2004-01-20 06:44:24 +03:00
if ( endptr [ 0 ] = = ' \0 ' )
2003-11-12 14:47:57 +03:00
gid = ( gid_t ) id ;
2005-03-06 08:16:52 +03:00
else
2008-10-18 22:12:55 +04:00
gid = util_lookup_group ( udev , group ) ;
2003-11-12 14:47:57 +03:00
}
2008-10-16 19:16:58 +04:00
info ( udev , " creating device node '%s', devnum=%d:%d, mode=%#o, uid=%d, gid=%d \n " ,
udev_device_get_devnode ( dev ) ,
major ( udev_device_get_devnum ( dev ) ) , minor ( udev_device_get_devnum ( dev ) ) ,
mode , uid , gid ) ;
2006-01-25 04:18:13 +03:00
2008-10-16 19:16:58 +04:00
if ( ! test )
if ( udev_node_mknod ( dev , NULL , makedev ( 0 , 0 ) , mode , uid , gid ) ! = 0 ) {
err = - 1 ;
2006-04-06 00:29:33 +04:00
goto exit ;
}
2006-01-25 04:18:13 +03:00
[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 11:12:57 +04:00
/* create all_partitions if requested */
2008-10-16 19:16:58 +04:00
num = udev_device_get_num_fake_partitions ( dev ) ;
if ( num > 0 ) {
info ( udev , " creating device partition nodes '%s[1-%i]' \n " , udev_device_get_devnode ( dev ) , num ) ;
if ( ! test ) {
for ( i = 1 ; i < = num ; i + + ) {
char partitionname [ UTIL_PATH_SIZE ] ;
dev_t part_devnum ;
snprintf ( partitionname , sizeof ( partitionname ) , " %s%d " ,
udev_device_get_devnode ( dev ) , i ) ;
2005-03-07 06:29:43 +03:00
partitionname [ sizeof ( partitionname ) - 1 ] = ' \0 ' ;
2008-10-16 19:16:58 +04:00
part_devnum = makedev ( major ( udev_device_get_devnum ( dev ) ) ,
minor ( udev_device_get_devnum ( dev ) ) + i ) ;
udev_node_mknod ( dev , partitionname , part_devnum , mode , uid , gid ) ;
2004-02-17 08:58:25 +03:00
}
2004-02-17 08:44:28 +03:00
}
2003-12-07 20:12:07 +03:00
}
2008-10-16 19:16:58 +04:00
/* add node and to name index */
name_index ( udev , udev_device_get_devpath ( dev ) , udev_device_get_devnode ( dev ) , 1 , test ) ;
/* create/update symlinks, add symlinks to name index */
udev_list_entry_foreach ( list_entry , udev_device_get_devlinks_list_entry ( dev ) ) {
name_index ( udev , udev_device_get_devpath ( dev ) , udev_list_entry_get_name ( list_entry ) , 1 , test ) ;
update_link ( dev , udev_list_entry_get_name ( list_entry ) , test ) ;
}
2006-04-06 00:29:33 +04:00
exit :
2008-10-16 19:16:58 +04:00
return err ;
2003-07-21 07:48:48 +04:00
}
2008-10-16 19:16:58 +04:00
extern int udev_node_remove ( struct udev_device * dev , int test )
2006-04-13 00:08:05 +04:00
{
2008-10-16 19:16:58 +04:00
struct udev * udev = udev_device_get_udev ( dev ) ;
struct udev_list_entry * list_entry ;
const char * devnode ;
2008-09-10 23:50:21 +04:00
char partitionname [ UTIL_PATH_SIZE ] ;
2006-04-13 00:08:05 +04:00
struct stat stats ;
2008-10-16 19:16:58 +04:00
int err = 0 ;
2006-04-13 00:08:05 +04:00
int num ;
2008-10-16 19:16:58 +04:00
/* remove node from name index */
name_index ( udev , udev_device_get_devpath ( dev ) , udev_device_get_devnode ( dev ) , 0 , test ) ;
/* remove,update symlinks, remove symlinks from name index */
udev_list_entry_foreach ( list_entry , udev_device_get_devlinks_list_entry ( dev ) ) {
name_index ( udev , udev_device_get_devpath ( dev ) , udev_list_entry_get_name ( list_entry ) , 0 , test ) ;
update_link ( dev , udev_list_entry_get_name ( list_entry ) , test ) ;
}
devnode = udev_device_get_devnode ( dev ) ;
if ( devnode = = NULL )
return 0 ;
if ( stat ( devnode , & stats ) ! = 0 ) {
info ( udev , " device node '%s' not found \n " , devnode ) ;
2007-12-29 19:19:06 +03:00
return 0 ;
2006-04-06 00:29:33 +04:00
}
2008-10-16 19:16:58 +04:00
if ( stats . st_rdev ! = udev_device_get_devnum ( dev ) ) {
info ( udev , " device node '%s' points to a different device, skip removal \n " , devnode ) ;
2006-04-06 00:29:33 +04:00
return - 1 ;
}
2008-10-16 19:16:58 +04:00
info ( udev , " removing device node '%s' \n " , devnode ) ;
if ( ! test )
2008-10-18 22:12:55 +04:00
err = util_unlink_secure ( udev , devnode ) ;
2008-10-16 19:16:58 +04:00
if ( err )
return err ;
2006-04-06 00:29:33 +04:00
2008-10-16 19:16:58 +04:00
num = udev_device_get_num_fake_partitions ( dev ) ;
2006-04-06 00:29:33 +04:00
if ( num > 0 ) {
2006-04-13 00:08:05 +04:00
int i ;
2008-10-16 19:16:58 +04:00
info ( udev , " removing all_partitions '%s[1-%i]' \n " , devnode , num ) ;
2007-03-16 23:15:54 +03:00
if ( num > 255 )
2006-04-06 00:29:33 +04:00
return - 1 ;
for ( i = 1 ; i < = num ; i + + ) {
2008-10-16 19:16:58 +04:00
snprintf ( partitionname , sizeof ( partitionname ) , " %s%d " , devnode , i ) ;
2006-04-06 00:29:33 +04:00
partitionname [ sizeof ( partitionname ) - 1 ] = ' \0 ' ;
2008-10-16 19:16:58 +04:00
if ( ! test )
2008-10-18 22:12:55 +04:00
util_unlink_secure ( udev , partitionname ) ;
2004-10-19 06:28:39 +04:00
}
[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 10:19:39 +03:00
}
2008-10-18 22:12:55 +04:00
util_delete_path ( udev , devnode ) ;
2008-10-16 19:16:58 +04:00
return err ;
2003-07-21 07:48:48 +04:00
}