2006-03-17 03:52:15 +03:00
/*
* Copyright ( C ) 2004 - 2006 Kay Sievers < kay @ vrfy . org >
* Copyright ( C ) 2006 Hannes Reinecke < hare @ suse . de >
*
* 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 . ,
2006-08-28 02:29:11 +04:00
* 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 , USA .
2006-03-17 03:52:15 +03:00
*
*/
# include <stdlib.h>
# include <stddef.h>
# include <string.h>
# include <stdio.h>
# include <unistd.h>
2006-09-03 05:04:20 +04:00
# include <getopt.h>
2006-03-17 03:52:15 +03:00
# include <errno.h>
# include <dirent.h>
# include <fcntl.h>
# include <syslog.h>
2006-09-03 05:04:20 +04:00
# include <fnmatch.h>
2006-03-17 03:52:15 +03:00
# include <sys/stat.h>
# include <sys/types.h>
# include "udev.h"
2006-08-20 20:22:44 +04:00
# include "udevd.h"
2006-03-17 03:52:15 +03:00
2006-09-19 19:51:31 +04:00
static int verbose ;
static int dry_run ;
LIST_HEAD ( device_list ) ;
LIST_HEAD ( filter_subsystem_match_list ) ;
LIST_HEAD ( filter_subsystem_nomatch_list ) ;
LIST_HEAD ( filter_attr_match_list ) ;
LIST_HEAD ( filter_attr_nomatch_list ) ;
2006-03-17 03:52:15 +03:00
# ifdef USE_LOG
void log_message ( int priority , const char * format , . . . )
{
va_list args ;
if ( priority > udev_log_priority )
return ;
va_start ( args , format ) ;
vsyslog ( priority , format , args ) ;
va_end ( args ) ;
}
# endif
2006-09-19 19:51:31 +04:00
/* devices that should run last cause of their dependencies */
static int delay_device ( const char * devpath )
{
static const char * delay_device_list [ ] = {
" */md* " ,
" */dm-* " ,
NULL
} ;
int i ;
2006-03-17 03:52:15 +03:00
2006-09-19 19:51:31 +04:00
for ( i = 0 ; delay_device_list [ i ] ! = NULL ; i + + )
if ( fnmatch ( delay_device_list [ i ] , devpath , 0 ) = = 0 )
return 1 ;
return 0 ;
}
2006-09-03 05:04:20 +04:00
2006-03-17 03:52:15 +03:00
static int device_list_insert ( const char * path )
{
2006-09-19 19:51:31 +04:00
char filename [ PATH_SIZE ] ;
char devpath [ PATH_SIZE ] ;
struct stat statbuf ;
2006-03-17 03:52:15 +03:00
dbg ( " add '%s' " , path ) ;
2006-09-19 19:51:31 +04:00
/* we only have a device, if we have an uevent file */
strlcpy ( filename , path , sizeof ( filename ) ) ;
strlcat ( filename , " /uevent " , sizeof ( filename ) ) ;
if ( stat ( filename , & statbuf ) < 0 )
return - 1 ;
if ( ! ( statbuf . st_mode & S_IWUSR ) )
return - 1 ;
strlcpy ( devpath , & path [ strlen ( sysfs_path ) ] , sizeof ( devpath ) ) ;
/* resolve possible link to real target */
if ( lstat ( path , & statbuf ) < 0 )
return - 1 ;
if ( S_ISLNK ( statbuf . st_mode ) )
if ( sysfs_resolve_link ( devpath , sizeof ( devpath ) ) ! = 0 )
return - 1 ;
name_list_add ( & device_list , devpath , 1 ) ;
2006-03-17 03:52:15 +03:00
return 0 ;
}
2007-07-09 05:59:08 +04:00
static void trigger_uevent ( const char * devpath , const char * action )
2006-03-17 03:52:15 +03:00
{
char filename [ PATH_SIZE ] ;
int fd ;
2006-09-19 19:51:31 +04:00
strlcpy ( filename , sysfs_path , sizeof ( filename ) ) ;
strlcat ( filename , devpath , sizeof ( filename ) ) ;
2006-03-17 03:52:15 +03:00
strlcat ( filename , " /uevent " , sizeof ( filename ) ) ;
if ( verbose )
2006-09-19 19:51:31 +04:00
printf ( " %s \n " , devpath ) ;
2006-03-17 03:52:15 +03:00
if ( dry_run )
return ;
fd = open ( filename , O_WRONLY ) ;
if ( fd < 0 ) {
2007-06-23 18:21:47 +04:00
dbg ( " error on opening %s: %s " , filename , strerror ( errno ) ) ;
2006-03-17 03:52:15 +03:00
return ;
}
2007-07-09 05:59:08 +04:00
if ( write ( fd , action , strlen ( action ) ) < 0 )
info ( " error writing '%s' to '%s': %s " , action , filename , strerror ( errno ) ) ;
2006-03-17 03:52:15 +03:00
close ( fd ) ;
}
2007-07-09 05:59:08 +04:00
static void exec_list ( const char * action )
2006-03-17 03:52:15 +03:00
{
struct name_entry * loop_device ;
struct name_entry * tmp_device ;
2006-09-19 19:51:31 +04:00
list_for_each_entry_safe ( loop_device , tmp_device , & device_list , node ) {
if ( delay_device ( loop_device - > name ) )
continue ;
2006-03-17 03:52:15 +03:00
2007-07-09 05:59:08 +04:00
trigger_uevent ( loop_device - > name , action ) ;
2006-03-17 03:52:15 +03:00
list_del ( & loop_device - > node ) ;
free ( loop_device ) ;
}
2006-09-19 19:51:31 +04:00
/* trigger remaining delayed devices */
list_for_each_entry_safe ( loop_device , tmp_device , & device_list , node ) {
2007-07-09 05:59:08 +04:00
trigger_uevent ( loop_device - > name , action ) ;
2006-03-17 03:52:15 +03:00
list_del ( & loop_device - > node ) ;
free ( loop_device ) ;
}
}
2006-09-03 05:04:20 +04:00
static int subsystem_filtered ( const char * subsystem )
{
struct name_entry * loop_name ;
/* skip devices matching the listed subsystems */
2006-09-03 16:13:11 +04:00
list_for_each_entry ( loop_name , & filter_subsystem_nomatch_list , node )
2006-09-03 07:45:51 +04:00
if ( fnmatch ( loop_name - > name , subsystem , 0 ) = = 0 )
2006-09-03 05:04:20 +04:00
return 1 ;
/* skip devices not matching the listed subsystems */
2006-09-03 16:13:11 +04:00
if ( ! list_empty ( & filter_subsystem_match_list ) ) {
list_for_each_entry ( loop_name , & filter_subsystem_match_list , node )
2006-09-03 07:45:51 +04:00
if ( fnmatch ( loop_name - > name , subsystem , 0 ) = = 0 )
2006-09-03 05:04:20 +04:00
return 0 ;
return 1 ;
}
return 0 ;
}
static int attr_match ( const char * path , const char * attr_value )
{
char attr [ NAME_SIZE ] ;
char file [ PATH_SIZE ] ;
char * match_value ;
strlcpy ( attr , attr_value , sizeof ( attr ) ) ;
/* separate attr and match value */
match_value = strchr ( attr , ' = ' ) ;
if ( match_value ! = NULL ) {
match_value [ 0 ] = ' \0 ' ;
match_value = & match_value [ 1 ] ;
}
strlcpy ( file , path , sizeof ( file ) ) ;
strlcat ( file , " / " , sizeof ( file ) ) ;
strlcat ( file , attr , sizeof ( file ) ) ;
if ( match_value ! = NULL ) {
/* match file content */
char value [ NAME_SIZE ] ;
int fd ;
ssize_t size ;
fd = open ( file , O_RDONLY ) ;
if ( fd < 0 )
return 0 ;
size = read ( fd , value , sizeof ( value ) ) ;
close ( fd ) ;
if ( size < 0 )
return 0 ;
value [ size ] = ' \0 ' ;
remove_trailing_chars ( value , ' \n ' ) ;
/* match if attribute value matches */
if ( fnmatch ( match_value , value , 0 ) = = 0 )
return 1 ;
} else {
/* match if attribute exists */
struct stat statbuf ;
if ( stat ( file , & statbuf ) = = 0 )
return 1 ;
}
return 0 ;
}
static int attr_filtered ( const char * path )
{
struct name_entry * loop_name ;
/* skip devices matching the listed sysfs attributes */
list_for_each_entry ( loop_name , & filter_attr_nomatch_list , node )
if ( attr_match ( path , loop_name - > name ) )
return 1 ;
/* skip devices not matching the listed sysfs attributes */
if ( ! list_empty ( & filter_attr_match_list ) ) {
list_for_each_entry ( loop_name , & filter_attr_match_list , node )
if ( attr_match ( path , loop_name - > name ) )
return 0 ;
return 1 ;
}
return 0 ;
}
2006-10-08 18:06:14 +04:00
static void scan_subsystem ( const char * subsys )
2006-03-17 03:52:15 +03:00
{
char base [ PATH_SIZE ] ;
DIR * dir ;
struct dirent * dent ;
strlcpy ( base , sysfs_path , sizeof ( base ) ) ;
2006-10-08 18:06:14 +04:00
strlcat ( base , " / " , sizeof ( base ) ) ;
strlcat ( base , subsys , sizeof ( base ) ) ;
2006-03-17 03:52:15 +03:00
dir = opendir ( base ) ;
if ( dir ! = NULL ) {
for ( dent = readdir ( dir ) ; dent ! = NULL ; dent = readdir ( dir ) ) {
char dirname [ PATH_SIZE ] ;
DIR * dir2 ;
struct dirent * dent2 ;
if ( dent - > d_name [ 0 ] = = ' . ' )
continue ;
2006-09-03 05:04:20 +04:00
if ( subsystem_filtered ( dent - > d_name ) )
continue ;
2006-03-17 03:52:15 +03:00
strlcpy ( dirname , base , sizeof ( dirname ) ) ;
strlcat ( dirname , " / " , sizeof ( dirname ) ) ;
strlcat ( dirname , dent - > d_name , sizeof ( dirname ) ) ;
strlcat ( dirname , " /devices " , sizeof ( dirname ) ) ;
/* look for devices */
dir2 = opendir ( dirname ) ;
if ( dir2 ! = NULL ) {
for ( dent2 = readdir ( dir2 ) ; dent2 ! = NULL ; dent2 = readdir ( dir2 ) ) {
char dirname2 [ PATH_SIZE ] ;
if ( dent2 - > d_name [ 0 ] = = ' . ' )
continue ;
strlcpy ( dirname2 , dirname , sizeof ( dirname2 ) ) ;
strlcat ( dirname2 , " / " , sizeof ( dirname2 ) ) ;
strlcat ( dirname2 , dent2 - > d_name , sizeof ( dirname2 ) ) ;
2006-09-03 05:04:20 +04:00
if ( attr_filtered ( dirname2 ) )
continue ;
2006-09-19 19:51:31 +04:00
device_list_insert ( dirname2 ) ;
2006-03-17 03:52:15 +03:00
}
closedir ( dir2 ) ;
}
}
closedir ( dir ) ;
}
}
2006-08-20 20:22:44 +04:00
static void scan_block ( void )
2006-03-17 03:52:15 +03:00
{
char base [ PATH_SIZE ] ;
DIR * dir ;
struct dirent * dent ;
2006-09-03 05:04:20 +04:00
if ( subsystem_filtered ( " block " ) )
return ;
2006-03-17 03:52:15 +03:00
strlcpy ( base , sysfs_path , sizeof ( base ) ) ;
strlcat ( base , " /block " , sizeof ( base ) ) ;
dir = opendir ( base ) ;
if ( dir ! = NULL ) {
for ( dent = readdir ( dir ) ; dent ! = NULL ; dent = readdir ( dir ) ) {
char dirname [ PATH_SIZE ] ;
DIR * dir2 ;
struct dirent * dent2 ;
if ( dent - > d_name [ 0 ] = = ' . ' )
continue ;
strlcpy ( dirname , base , sizeof ( dirname ) ) ;
strlcat ( dirname , " / " , sizeof ( dirname ) ) ;
strlcat ( dirname , dent - > d_name , sizeof ( dirname ) ) ;
2006-09-03 05:04:20 +04:00
if ( attr_filtered ( dirname ) )
continue ;
2006-09-20 14:22:24 +04:00
if ( device_list_insert ( dirname ) ! = 0 )
2006-03-17 03:52:15 +03:00
continue ;
/* look for partitions */
dir2 = opendir ( dirname ) ;
if ( dir2 ! = NULL ) {
for ( dent2 = readdir ( dir2 ) ; dent2 ! = NULL ; dent2 = readdir ( dir2 ) ) {
char dirname2 [ PATH_SIZE ] ;
if ( dent2 - > d_name [ 0 ] = = ' . ' )
continue ;
if ( ! strcmp ( dent2 - > d_name , " device " ) )
continue ;
strlcpy ( dirname2 , dirname , sizeof ( dirname2 ) ) ;
strlcat ( dirname2 , " / " , sizeof ( dirname2 ) ) ;
strlcat ( dirname2 , dent2 - > d_name , sizeof ( dirname2 ) ) ;
2006-09-03 05:04:20 +04:00
if ( attr_filtered ( dirname2 ) )
continue ;
2006-09-19 19:51:31 +04:00
device_list_insert ( dirname2 ) ;
2006-03-17 03:52:15 +03:00
}
closedir ( dir2 ) ;
}
}
closedir ( dir ) ;
}
}
2006-08-20 20:22:44 +04:00
static void scan_class ( void )
2006-03-17 03:52:15 +03:00
{
char base [ PATH_SIZE ] ;
DIR * dir ;
struct dirent * dent ;
strlcpy ( base , sysfs_path , sizeof ( base ) ) ;
strlcat ( base , " /class " , sizeof ( base ) ) ;
dir = opendir ( base ) ;
if ( dir ! = NULL ) {
for ( dent = readdir ( dir ) ; dent ! = NULL ; dent = readdir ( dir ) ) {
char dirname [ PATH_SIZE ] ;
DIR * dir2 ;
struct dirent * dent2 ;
if ( dent - > d_name [ 0 ] = = ' . ' )
continue ;
2006-09-03 05:04:20 +04:00
if ( subsystem_filtered ( dent - > d_name ) )
continue ;
2006-03-17 03:52:15 +03:00
strlcpy ( dirname , base , sizeof ( dirname ) ) ;
strlcat ( dirname , " / " , sizeof ( dirname ) ) ;
strlcat ( dirname , dent - > d_name , sizeof ( dirname ) ) ;
dir2 = opendir ( dirname ) ;
if ( dir2 ! = NULL ) {
for ( dent2 = readdir ( dir2 ) ; dent2 ! = NULL ; dent2 = readdir ( dir2 ) ) {
char dirname2 [ PATH_SIZE ] ;
if ( dent2 - > d_name [ 0 ] = = ' . ' )
continue ;
if ( ! strcmp ( dent2 - > d_name , " device " ) )
continue ;
strlcpy ( dirname2 , dirname , sizeof ( dirname2 ) ) ;
strlcat ( dirname2 , " / " , sizeof ( dirname2 ) ) ;
strlcat ( dirname2 , dent2 - > d_name , sizeof ( dirname2 ) ) ;
2006-09-03 05:04:20 +04:00
if ( attr_filtered ( dirname2 ) )
continue ;
2006-09-19 19:51:31 +04:00
device_list_insert ( dirname2 ) ;
2006-03-17 03:52:15 +03:00
}
closedir ( dir2 ) ;
}
}
closedir ( dir ) ;
}
}
2006-08-20 20:22:44 +04:00
static void scan_failed ( void )
{
char base [ PATH_SIZE ] ;
DIR * dir ;
struct dirent * dent ;
strlcpy ( base , udev_root , sizeof ( base ) ) ;
2006-09-03 06:44:33 +04:00
strlcat ( base , " / " EVENT_FAILED_DIR , sizeof ( base ) ) ;
2006-08-20 20:22:44 +04:00
dir = opendir ( base ) ;
if ( dir ! = NULL ) {
for ( dent = readdir ( dir ) ; dent ! = NULL ; dent = readdir ( dir ) ) {
2006-09-03 06:44:33 +04:00
char device [ PATH_SIZE ] ;
2007-03-14 23:41:33 +03:00
size_t start ;
2006-08-20 20:22:44 +04:00
if ( dent - > d_name [ 0 ] = = ' . ' )
continue ;
2007-03-16 05:09:02 +03:00
start = strlcpy ( device , sysfs_path , sizeof ( device ) ) ;
2007-03-14 23:41:33 +03:00
strlcat ( device , dent - > d_name , sizeof ( device ) ) ;
path_decode ( & device [ start ] ) ;
2006-09-19 19:51:31 +04:00
device_list_insert ( device ) ;
2006-08-20 20:22:44 +04:00
}
closedir ( dir ) ;
}
}
2006-03-17 03:52:15 +03:00
int main ( int argc , char * argv [ ] , char * envp [ ] )
{
2006-08-21 04:38:20 +04:00
int failed = 0 ;
2006-09-03 05:04:20 +04:00
int option ;
2007-07-09 05:59:08 +04:00
const char * action = " add " ;
2006-09-03 16:12:51 +04:00
static const struct option options [ ] = {
2006-09-03 05:04:20 +04:00
{ " verbose " , 0 , NULL , ' v ' } ,
{ " dry-run " , 0 , NULL , ' n ' } ,
{ " retry-failed " , 0 , NULL , ' F ' } ,
{ " help " , 0 , NULL , ' h ' } ,
2007-07-09 05:59:08 +04:00
{ " action " , 1 , NULL , ' c ' } ,
2006-09-03 05:04:20 +04:00
{ " subsystem-match " , 1 , NULL , ' s ' } ,
{ " subsystem-nomatch " , 1 , NULL , ' S ' } ,
{ " attr-match " , 1 , NULL , ' a ' } ,
{ " attr-nomatch " , 1 , NULL , ' A ' } ,
{ }
} ;
2006-03-17 03:52:15 +03:00
logging_init ( " udevtrigger " ) ;
udev_config_init ( ) ;
dbg ( " version %s " , UDEV_VERSION ) ;
2006-08-20 20:22:44 +04:00
sysfs_init ( ) ;
2006-03-17 03:52:15 +03:00
2006-09-03 05:04:20 +04:00
while ( 1 ) {
2007-07-09 05:59:08 +04:00
option = getopt_long ( argc , argv , " vnFhc:s:S:a:A: " , options , NULL ) ;
2006-09-03 05:04:20 +04:00
if ( option = = - 1 )
break ;
2006-03-17 03:52:15 +03:00
2006-09-03 05:04:20 +04:00
switch ( option ) {
case ' v ' :
2006-03-17 03:52:15 +03:00
verbose = 1 ;
2006-09-03 05:04:20 +04:00
break ;
case ' n ' :
2006-03-17 03:52:15 +03:00
dry_run = 1 ;
2006-09-03 05:04:20 +04:00
break ;
case ' F ' :
2006-08-21 04:38:20 +04:00
failed = 1 ;
2006-09-03 05:04:20 +04:00
break ;
2007-07-09 05:59:08 +04:00
case ' c ' :
action = optarg ;
break ;
2006-09-03 05:04:20 +04:00
case ' s ' :
2006-09-03 16:13:11 +04:00
name_list_add ( & filter_subsystem_match_list , optarg , 0 ) ;
2006-09-03 05:04:20 +04:00
break ;
case ' S ' :
2006-09-03 16:13:11 +04:00
name_list_add ( & filter_subsystem_nomatch_list , optarg , 0 ) ;
2006-09-03 05:04:20 +04:00
break ;
case ' a ' :
name_list_add ( & filter_attr_match_list , optarg , 0 ) ;
break ;
case ' A ' :
name_list_add ( & filter_attr_nomatch_list , optarg , 0 ) ;
break ;
case ' h ' :
printf ( " Usage: udevtrigger OPTIONS \n "
2006-09-03 07:45:51 +04:00
" --verbose print the list of devices while running \n "
" --dry-run do not actually trigger the events \n "
" --retry-failed trigger only the events which have been \n "
" marked as failed during a previous run \n "
" --subsystem-match=<subsystem> trigger devices from a matching subystem \n "
" --subsystem-nomatch=<subsystem> exclude devices from a matching subystem \n "
" --attr-match=<file[=<value>]> trigger devices with a matching sysfs \n "
" attribute \n "
" --attr-nomatch=<file[=<value>]> exclude devices with a matching sysfs \n "
" attribute \n "
" --help print this text \n "
2006-09-03 05:04:20 +04:00
" \n " ) ;
goto exit ;
default :
2006-08-20 20:22:44 +04:00
goto exit ;
2006-03-17 03:52:15 +03:00
}
}
2006-08-21 04:38:20 +04:00
if ( failed )
scan_failed ( ) ;
else {
2006-10-08 18:06:14 +04:00
char base [ PATH_SIZE ] ;
struct stat statbuf ;
/* if we have /sys/subsystem, forget all the old stuff */
strlcpy ( base , sysfs_path , sizeof ( base ) ) ;
strlcat ( base , " /subsystem " , sizeof ( base ) ) ;
if ( stat ( base , & statbuf ) = = 0 )
scan_subsystem ( " subsystem " ) ;
else {
scan_subsystem ( " bus " ) ;
scan_class ( ) ;
/* scan "block" if it isn't a "class" */
strlcpy ( base , sysfs_path , sizeof ( base ) ) ;
strlcat ( base , " /class/block " , sizeof ( base ) ) ;
if ( stat ( base , & statbuf ) ! = 0 )
scan_block ( ) ;
}
2006-08-21 04:38:20 +04:00
}
2007-07-09 05:59:08 +04:00
exec_list ( action ) ;
2006-03-17 03:52:15 +03:00
exit :
2006-09-03 16:13:11 +04:00
name_list_cleanup ( & filter_subsystem_match_list ) ;
name_list_cleanup ( & filter_subsystem_nomatch_list ) ;
2006-09-03 05:04:20 +04:00
name_list_cleanup ( & filter_attr_match_list ) ;
name_list_cleanup ( & filter_attr_nomatch_list ) ;
2006-08-20 20:22:44 +04:00
sysfs_cleanup ( ) ;
2006-03-17 03:52:15 +03:00
logging_close ( ) ;
return 0 ;
}