2006-03-17 03:52:15 +03:00
/*
2008-09-10 04:40:42 +04:00
* Copyright ( C ) 2004 - 2008 Kay Sievers < kay @ vrfy . org >
2006-03-17 03:52:15 +03:00
* Copyright ( C ) 2006 Hannes Reinecke < hare @ suse . de >
*
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 .
2006-03-17 03:52:15 +03: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/>.
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>
2008-03-27 02:58:20 +03:00
# include <sys/socket.h>
# include <sys/un.h>
2006-03-17 03:52:15 +03:00
# include "udev.h"
2008-03-27 02:58:20 +03:00
# include "udev_rules.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 ) ;
2008-03-27 02:58:20 +03:00
static int sock = - 1 ;
static struct sockaddr_un saddr ;
static socklen_t saddrlen ;
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
2008-09-06 17:45:31 +04:00
static int device_list_insert ( struct udev * udev , const char * path )
2006-03-17 03:52:15 +03:00
{
2008-09-10 23:50:21 +04:00
char filename [ UTIL_PATH_SIZE ] ;
char devpath [ UTIL_PATH_SIZE ] ;
2006-09-19 19:51:31 +04:00
struct stat statbuf ;
2006-03-17 03:52:15 +03:00
2008-09-06 17:45:31 +04:00
dbg ( udev , " add '%s' \n " , path ) ;
2006-09-19 19:51:31 +04:00
/* we only have a device, if we have an uevent file */
2008-09-10 20:59:42 +04:00
util_strlcpy ( filename , path , sizeof ( filename ) ) ;
util_strlcat ( filename , " /uevent " , sizeof ( filename ) ) ;
2006-09-19 19:51:31 +04:00
if ( stat ( filename , & statbuf ) < 0 )
return - 1 ;
if ( ! ( statbuf . st_mode & S_IWUSR ) )
return - 1 ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( devpath , & path [ strlen ( udev_get_sys_path ( udev ) ) ] , sizeof ( devpath ) ) ;
2006-09-19 19:51:31 +04:00
/* resolve possible link to real target */
if ( lstat ( path , & statbuf ) < 0 )
return - 1 ;
if ( S_ISLNK ( statbuf . st_mode ) )
2008-09-10 23:50:21 +04:00
if ( util_resolve_sys_link ( udev , devpath , sizeof ( devpath ) ) ! = 0 )
2006-09-19 19:51:31 +04:00
return - 1 ;
2008-09-06 17:45:31 +04:00
name_list_add ( udev , & device_list , devpath , 1 ) ;
2006-03-17 03:52:15 +03:00
return 0 ;
}
2008-09-06 17:45:31 +04:00
static void trigger_uevent ( struct udev * udev , const char * devpath , const char * action )
2006-03-17 03:52:15 +03:00
{
2008-09-10 23:50:21 +04:00
char filename [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
int fd ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( filename , udev_get_sys_path ( udev ) , sizeof ( filename ) ) ;
util_strlcat ( filename , devpath , sizeof ( filename ) ) ;
util_strlcat ( filename , " /uevent " , sizeof ( filename ) ) ;
2006-03-17 03:52:15 +03:00
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 ) {
2008-09-06 17:45:31 +04:00
dbg ( udev , " error on opening %s: %s \n " , 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 )
2008-09-06 17:45:31 +04:00
info ( udev , " error writing '%s' to '%s': %s \n " , action , filename , strerror ( errno ) ) ;
2006-03-17 03:52:15 +03:00
close ( fd ) ;
}
2008-09-06 17:45:31 +04:00
static int pass_to_socket ( struct udev * udev , const char * devpath , const char * action , const char * env )
2008-03-27 02:58:20 +03:00
{
2008-09-06 17:45:31 +04:00
struct udevice * udevice ;
2008-03-27 02:58:20 +03:00
struct name_entry * name_loop ;
char buf [ 4096 ] ;
size_t bufpos = 0 ;
ssize_t count ;
2008-09-10 23:50:21 +04:00
char path [ UTIL_PATH_SIZE ] ;
2008-03-27 02:58:20 +03:00
int fd ;
2008-09-10 23:50:21 +04:00
char link_target [ UTIL_PATH_SIZE ] ;
2008-03-27 02:58:20 +03:00
int len ;
int err = 0 ;
2008-03-29 19:20:34 +03:00
if ( verbose )
printf ( " %s \n " , devpath ) ;
2008-09-06 17:45:31 +04:00
udevice = udev_device_init ( udev ) ;
if ( udevice = = NULL )
2008-09-01 22:59:09 +04:00
return - 1 ;
2008-09-06 17:45:31 +04:00
udev_db_get_device ( udevice , devpath ) ;
2008-03-27 02:58:20 +03:00
/* add header */
bufpos = snprintf ( buf , sizeof ( buf ) - 1 , " %s@%s " , action , devpath ) ;
bufpos + + ;
2008-04-22 05:01:29 +04:00
/* add cookie */
if ( env ! = NULL ) {
bufpos + = snprintf ( & buf [ bufpos ] , sizeof ( buf ) - 1 , " %s " , env ) ;
bufpos + + ;
}
2008-03-27 02:58:20 +03:00
/* add standard keys */
bufpos + = snprintf ( & buf [ bufpos ] , sizeof ( buf ) - 1 , " DEVPATH=%s " , devpath ) ;
bufpos + + ;
bufpos + = snprintf ( & buf [ bufpos ] , sizeof ( buf ) - 1 , " ACTION=%s " , action ) ;
bufpos + + ;
/* add subsystem */
2008-09-10 20:59:42 +04:00
util_strlcpy ( path , udev_get_sys_path ( udev ) , sizeof ( path ) ) ;
util_strlcat ( path , devpath , sizeof ( path ) ) ;
util_strlcat ( path , " /subsystem " , sizeof ( path ) ) ;
2008-03-27 02:58:20 +03:00
len = readlink ( path , link_target , sizeof ( link_target ) ) ;
if ( len > 0 ) {
char * pos ;
link_target [ len ] = ' \0 ' ;
pos = strrchr ( link_target , ' / ' ) ;
if ( pos ! = NULL ) {
bufpos + = snprintf ( & buf [ bufpos ] , sizeof ( buf ) - 1 , " SUBSYSTEM=%s " , & pos [ 1 ] ) ;
bufpos + + ;
}
}
/* add symlinks and node name */
path [ 0 ] = ' \0 ' ;
2008-09-06 17:45:31 +04:00
list_for_each_entry ( name_loop , & udevice - > symlink_list , node ) {
2008-09-10 20:59:42 +04:00
util_strlcat ( path , udev_get_dev_path ( udev ) , sizeof ( path ) ) ;
util_strlcat ( path , " / " , sizeof ( path ) ) ;
util_strlcat ( path , name_loop - > name , sizeof ( path ) ) ;
util_strlcat ( path , " " , sizeof ( path ) ) ;
2008-03-27 02:58:20 +03:00
}
2008-09-10 20:39:23 +04:00
util_remove_trailing_chars ( path , ' ' ) ;
2008-03-27 02:58:20 +03:00
if ( path [ 0 ] ! = ' \0 ' ) {
bufpos + = snprintf ( & buf [ bufpos ] , sizeof ( buf ) - 1 , " DEVLINKS=%s " , path ) ;
bufpos + + ;
}
2008-09-06 17:45:31 +04:00
if ( udevice - > name [ 0 ] ! = ' \0 ' ) {
2008-09-10 20:59:42 +04:00
util_strlcpy ( path , udev_get_dev_path ( udev ) , sizeof ( path ) ) ;
util_strlcat ( path , " / " , sizeof ( path ) ) ;
util_strlcat ( path , udevice - > name , sizeof ( path ) ) ;
2008-03-27 02:58:20 +03:00
bufpos + = snprintf ( & buf [ bufpos ] , sizeof ( buf ) - 1 , " DEVNAME=%s " , path ) ;
bufpos + + ;
}
/* add keys from device "uevent" file */
2008-09-10 20:59:42 +04:00
util_strlcpy ( path , udev_get_sys_path ( udev ) , sizeof ( path ) ) ;
util_strlcat ( path , devpath , sizeof ( path ) ) ;
util_strlcat ( path , " /uevent " , sizeof ( path ) ) ;
2008-03-27 02:58:20 +03:00
fd = open ( path , O_RDONLY ) ;
if ( fd > = 0 ) {
char value [ 4096 ] ;
count = read ( fd , value , sizeof ( value ) ) ;
close ( fd ) ;
if ( count > 0 ) {
char * key ;
value [ count ] = ' \0 ' ;
key = value ;
while ( key [ 0 ] ! = ' \0 ' ) {
char * next ;
next = strchr ( key , ' \n ' ) ;
if ( next = = NULL )
break ;
next [ 0 ] = ' \0 ' ;
2008-09-10 20:59:42 +04:00
bufpos + = util_strlcpy ( & buf [ bufpos ] , key , sizeof ( buf ) - bufpos - 1 ) ;
2008-03-27 02:58:20 +03:00
bufpos + + ;
key = & next [ 1 ] ;
}
}
}
/* add keys from database */
2008-09-06 17:45:31 +04:00
list_for_each_entry ( name_loop , & udevice - > env_list , node ) {
2008-09-10 20:59:42 +04:00
bufpos + = util_strlcpy ( & buf [ bufpos ] , name_loop - > name , sizeof ( buf ) - bufpos - 1 ) ;
2008-03-27 02:58:20 +03:00
bufpos + + ;
}
if ( bufpos > sizeof ( buf ) )
bufpos = sizeof ( buf ) ;
count = sendto ( sock , & buf , bufpos , 0 , ( struct sockaddr * ) & saddr , saddrlen ) ;
if ( count < 0 )
err = - 1 ;
return err ;
}
2008-09-06 17:45:31 +04:00
static void exec_list ( struct udev * udev , const char * action , const char * env )
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 ;
2008-03-29 19:16:41 +03:00
if ( sock > = 0 )
2008-09-06 17:45:31 +04:00
pass_to_socket ( udev , loop_device - > name , action , env ) ;
2008-03-27 02:58:20 +03:00
else
2008-09-06 17:45:31 +04:00
trigger_uevent ( udev , 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 ) {
2008-03-29 19:16:41 +03:00
if ( sock > = 0 )
2008-09-06 17:45:31 +04:00
pass_to_socket ( udev , loop_device - > name , action , env ) ;
2008-03-27 02:58:20 +03:00
else
2008-09-06 17:45:31 +04:00
trigger_uevent ( udev , 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 )
{
2008-09-10 23:50:21 +04:00
char attr [ UTIL_NAME_SIZE ] ;
char file [ UTIL_PATH_SIZE ] ;
2006-09-03 05:04:20 +04:00
char * match_value ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( attr , attr_value , sizeof ( attr ) ) ;
2006-09-03 05:04:20 +04:00
/* separate attr and match value */
match_value = strchr ( attr , ' = ' ) ;
if ( match_value ! = NULL ) {
match_value [ 0 ] = ' \0 ' ;
match_value = & match_value [ 1 ] ;
}
2008-09-10 20:59:42 +04:00
util_strlcpy ( file , path , sizeof ( file ) ) ;
util_strlcat ( file , " / " , sizeof ( file ) ) ;
util_strlcat ( file , attr , sizeof ( file ) ) ;
2006-09-03 05:04:20 +04:00
if ( match_value ! = NULL ) {
/* match file content */
2008-09-10 23:50:21 +04:00
char value [ UTIL_NAME_SIZE ] ;
2006-09-03 05:04:20 +04:00
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 ' ;
2008-09-10 20:39:23 +04:00
util_remove_trailing_chars ( value , ' \n ' ) ;
2006-09-03 05:04:20 +04:00
/* 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 ;
}
2007-07-27 05:34:31 +04:00
enum scan_type {
SCAN_DEVICES ,
SCAN_SUBSYSTEM ,
} ;
2008-09-06 17:45:31 +04:00
static void scan_subsystem ( struct udev * udev , const char * subsys , enum scan_type scan )
2006-03-17 03:52:15 +03:00
{
2008-09-10 23:50:21 +04:00
char base [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
DIR * dir ;
struct dirent * dent ;
2007-07-27 05:34:31 +04:00
const char * subdir ;
if ( scan = = SCAN_DEVICES )
subdir = " /devices " ;
else if ( scan = = SCAN_SUBSYSTEM )
subdir = " /drivers " ;
else
return ;
2006-03-17 03:52:15 +03:00
2008-09-10 20:59:42 +04:00
util_strlcpy ( base , udev_get_sys_path ( udev ) , sizeof ( base ) ) ;
util_strlcat ( base , " / " , sizeof ( base ) ) ;
util_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 ) ) {
2008-09-10 23:50:21 +04:00
char dirname [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
DIR * dir2 ;
struct dirent * dent2 ;
if ( dent - > d_name [ 0 ] = = ' . ' )
continue ;
2007-07-27 05:34:31 +04:00
if ( scan = = SCAN_DEVICES )
if ( subsystem_filtered ( dent - > d_name ) )
continue ;
2006-09-03 05:04:20 +04:00
2008-09-10 20:59:42 +04:00
util_strlcpy ( dirname , base , sizeof ( dirname ) ) ;
util_strlcat ( dirname , " / " , sizeof ( dirname ) ) ;
util_strlcat ( dirname , dent - > d_name , sizeof ( dirname ) ) ;
2006-03-17 03:52:15 +03:00
2007-07-27 05:34:31 +04:00
if ( scan = = SCAN_SUBSYSTEM ) {
2008-08-09 00:39:32 +04:00
if ( attr_filtered ( dirname ) )
continue ;
2007-07-27 05:34:31 +04:00
if ( ! subsystem_filtered ( " subsystem " ) )
2008-09-06 17:45:31 +04:00
device_list_insert ( udev , dirname ) ;
2007-07-27 05:34:31 +04:00
if ( subsystem_filtered ( " drivers " ) )
continue ;
}
2008-09-10 20:59:42 +04:00
util_strlcat ( dirname , subdir , sizeof ( dirname ) ) ;
2007-07-27 05:34:31 +04:00
/* look for devices/drivers */
2006-03-17 03:52:15 +03:00
dir2 = opendir ( dirname ) ;
if ( dir2 ! = NULL ) {
for ( dent2 = readdir ( dir2 ) ; dent2 ! = NULL ; dent2 = readdir ( dir2 ) ) {
2008-09-10 23:50:21 +04:00
char dirname2 [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
if ( dent2 - > d_name [ 0 ] = = ' . ' )
continue ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( dirname2 , dirname , sizeof ( dirname2 ) ) ;
util_strlcat ( dirname2 , " / " , sizeof ( dirname2 ) ) ;
util_strlcat ( dirname2 , dent2 - > d_name , sizeof ( dirname2 ) ) ;
2006-09-03 05:04:20 +04:00
if ( attr_filtered ( dirname2 ) )
continue ;
2008-09-06 17:45:31 +04:00
device_list_insert ( udev , dirname2 ) ;
2006-03-17 03:52:15 +03:00
}
closedir ( dir2 ) ;
}
}
closedir ( dir ) ;
}
}
2008-09-06 17:45:31 +04:00
static void scan_block ( struct udev * udev )
2006-03-17 03:52:15 +03:00
{
2008-09-10 23:50:21 +04:00
char base [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
DIR * dir ;
struct dirent * dent ;
2006-09-03 05:04:20 +04:00
if ( subsystem_filtered ( " block " ) )
return ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( base , udev_get_sys_path ( udev ) , sizeof ( base ) ) ;
util_strlcat ( base , " /block " , 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 ) ) {
2008-09-10 23:50:21 +04:00
char dirname [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
DIR * dir2 ;
struct dirent * dent2 ;
if ( dent - > d_name [ 0 ] = = ' . ' )
continue ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( dirname , base , sizeof ( dirname ) ) ;
util_strlcat ( dirname , " / " , sizeof ( dirname ) ) ;
util_strlcat ( dirname , dent - > d_name , sizeof ( dirname ) ) ;
2006-09-03 05:04:20 +04:00
if ( attr_filtered ( dirname ) )
continue ;
2008-09-06 17:45:31 +04:00
if ( device_list_insert ( udev , 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 ) ) {
2008-09-10 23:50:21 +04:00
char dirname2 [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
if ( dent2 - > d_name [ 0 ] = = ' . ' )
continue ;
if ( ! strcmp ( dent2 - > d_name , " device " ) )
continue ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( dirname2 , dirname , sizeof ( dirname2 ) ) ;
util_strlcat ( dirname2 , " / " , sizeof ( dirname2 ) ) ;
util_strlcat ( dirname2 , dent2 - > d_name , sizeof ( dirname2 ) ) ;
2006-09-03 05:04:20 +04:00
if ( attr_filtered ( dirname2 ) )
continue ;
2008-09-06 17:45:31 +04:00
device_list_insert ( udev , dirname2 ) ;
2006-03-17 03:52:15 +03:00
}
closedir ( dir2 ) ;
}
}
closedir ( dir ) ;
}
}
2008-09-06 17:45:31 +04:00
static void scan_class ( struct udev * udev )
2006-03-17 03:52:15 +03:00
{
2008-09-10 23:50:21 +04:00
char base [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
DIR * dir ;
struct dirent * dent ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( base , udev_get_sys_path ( udev ) , sizeof ( base ) ) ;
util_strlcat ( base , " /class " , 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 ) ) {
2008-09-10 23:50:21 +04:00
char dirname [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
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 ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( dirname , base , sizeof ( dirname ) ) ;
util_strlcat ( dirname , " / " , sizeof ( dirname ) ) ;
util_strlcat ( dirname , dent - > d_name , sizeof ( dirname ) ) ;
2006-03-17 03:52:15 +03:00
dir2 = opendir ( dirname ) ;
if ( dir2 ! = NULL ) {
for ( dent2 = readdir ( dir2 ) ; dent2 ! = NULL ; dent2 = readdir ( dir2 ) ) {
2008-09-10 23:50:21 +04:00
char dirname2 [ UTIL_PATH_SIZE ] ;
2006-03-17 03:52:15 +03:00
if ( dent2 - > d_name [ 0 ] = = ' . ' )
continue ;
if ( ! strcmp ( dent2 - > d_name , " device " ) )
continue ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( dirname2 , dirname , sizeof ( dirname2 ) ) ;
util_strlcat ( dirname2 , " / " , sizeof ( dirname2 ) ) ;
util_strlcat ( dirname2 , dent2 - > d_name , sizeof ( dirname2 ) ) ;
2006-09-03 05:04:20 +04:00
if ( attr_filtered ( dirname2 ) )
continue ;
2008-09-06 17:45:31 +04:00
device_list_insert ( udev , dirname2 ) ;
2006-03-17 03:52:15 +03:00
}
closedir ( dir2 ) ;
}
}
closedir ( dir ) ;
}
}
2008-09-06 17:45:31 +04:00
static void scan_failed ( struct udev * udev )
2006-08-20 20:22:44 +04:00
{
2008-09-10 23:50:21 +04:00
char base [ UTIL_PATH_SIZE ] ;
2006-08-20 20:22:44 +04:00
DIR * dir ;
struct dirent * dent ;
2008-09-10 20:59:42 +04:00
util_strlcpy ( base , udev_get_dev_path ( udev ) , sizeof ( base ) ) ;
util_strlcat ( base , " /.udev/failed " , 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 ) ) {
2008-09-10 23:50:21 +04:00
char device [ UTIL_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 ;
2008-09-10 20:59:42 +04:00
start = util_strlcpy ( device , udev_get_sys_path ( udev ) , sizeof ( device ) ) ;
2007-08-24 10:14:21 +04:00
if ( start > = sizeof ( device ) )
start = sizeof ( device ) - 1 ;
2008-09-10 20:59:42 +04:00
util_strlcat ( device , dent - > d_name , sizeof ( device ) ) ;
2008-09-10 20:39:23 +04:00
util_path_decode ( & device [ start ] ) ;
2008-09-06 17:45:31 +04:00
device_list_insert ( udev , device ) ;
2006-08-20 20:22:44 +04:00
}
closedir ( dir ) ;
}
}
2008-09-06 17:45:31 +04:00
int udevadm_trigger ( struct udev * udev , int argc , char * argv [ ] )
2006-03-17 03:52:15 +03:00
{
2006-08-21 04:38:20 +04:00
int failed = 0 ;
2008-03-27 02:58:20 +03:00
const char * sockpath = NULL ;
2006-09-03 05:04:20 +04:00
int option ;
2007-07-09 05:59:08 +04:00
const char * action = " add " ;
2008-04-22 05:01:29 +04:00
const char * env = NULL ;
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 ' } ,
2008-03-27 02:58:20 +03:00
{ " socket " , 1 , NULL , ' o ' } ,
2006-09-03 05:04:20 +04:00
{ " 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 ' } ,
2008-04-22 05:01:29 +04:00
{ " env " , 1 , NULL , ' e ' } ,
2006-09-03 05:04:20 +04:00
{ }
} ;
2006-03-17 03:52:15 +03:00
2008-09-06 17:45:31 +04:00
dbg ( udev , " version %s \n " , VERSION ) ;
2006-03-17 03:52:15 +03:00
2006-09-03 05:04:20 +04:00
while ( 1 ) {
2008-04-22 05:01:29 +04:00
option = getopt_long ( argc , argv , " vnFo:hce::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 ;
2008-03-27 02:58:20 +03:00
case ' o ' :
sockpath = optarg ;
break ;
2007-07-09 05:59:08 +04:00
case ' c ' :
action = optarg ;
break ;
2008-04-22 05:01:29 +04:00
case ' e ' :
if ( strchr ( optarg , ' = ' ) ! = NULL )
env = optarg ;
break ;
2006-09-03 05:04:20 +04:00
case ' s ' :
2008-09-06 17:45:31 +04:00
name_list_add ( udev , & filter_subsystem_match_list , optarg , 0 ) ;
2006-09-03 05:04:20 +04:00
break ;
case ' S ' :
2008-09-06 17:45:31 +04:00
name_list_add ( udev , & filter_subsystem_nomatch_list , optarg , 0 ) ;
2006-09-03 05:04:20 +04:00
break ;
case ' a ' :
2008-09-06 17:45:31 +04:00
name_list_add ( udev , & filter_attr_match_list , optarg , 0 ) ;
2006-09-03 05:04:20 +04:00
break ;
case ' A ' :
2008-09-06 17:45:31 +04:00
name_list_add ( udev , & filter_attr_nomatch_list , optarg , 0 ) ;
2006-09-03 05:04:20 +04:00
break ;
case ' h ' :
2007-11-08 19:51:59 +03:00
printf ( " Usage: udevadm trigger 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 "
2008-04-22 05:01:29 +04:00
" --socket=<socket path> pass events to socket instead of triggering kernel events \n "
" --env=<KEY>=<value> pass an additional key (works only with --socket=) \n "
2006-09-03 07:45:51 +04:00
" --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
}
}
2008-03-27 02:58:20 +03:00
if ( sockpath ! = NULL ) {
2008-04-02 06:43:25 +04:00
struct stat stats ;
2008-03-27 02:58:20 +03:00
sock = socket ( AF_LOCAL , SOCK_DGRAM , 0 ) ;
memset ( & saddr , 0x00 , sizeof ( struct sockaddr_un ) ) ;
saddr . sun_family = AF_LOCAL ;
2008-04-02 06:43:25 +04:00
if ( sockpath [ 0 ] = = ' @ ' ) {
/* abstract namespace socket requested */
2008-09-10 20:59:42 +04:00
util_strlcpy ( & saddr . sun_path [ 1 ] , & sockpath [ 1 ] , sizeof ( saddr . sun_path ) - 1 ) ;
2008-04-02 06:43:25 +04:00
saddrlen = offsetof ( struct sockaddr_un , sun_path ) + 1 + strlen ( & saddr . sun_path [ 1 ] ) ;
} else if ( stat ( sockpath , & stats ) = = 0 & & S_ISSOCK ( stats . st_mode ) ) {
/* existing socket file */
2008-09-10 20:59:42 +04:00
util_strlcpy ( saddr . sun_path , sockpath , sizeof ( saddr . sun_path ) ) ;
2008-04-02 06:43:25 +04:00
saddrlen = offsetof ( struct sockaddr_un , sun_path ) + strlen ( saddr . sun_path ) ;
} else {
/* no socket file, assume abstract namespace socket */
2008-09-10 20:59:42 +04:00
util_strlcpy ( & saddr . sun_path [ 1 ] , sockpath , sizeof ( saddr . sun_path ) - 1 ) ;
2008-04-02 06:43:25 +04:00
saddrlen = offsetof ( struct sockaddr_un , sun_path ) + 1 + strlen ( & saddr . sun_path [ 1 ] ) ;
}
2008-04-22 05:01:29 +04:00
} else if ( env ! = NULL ) {
fprintf ( stderr , " error: --env= only valid with --socket= option \n " ) ;
goto exit ;
2008-03-27 02:58:20 +03:00
}
2007-07-27 05:34:31 +04:00
if ( failed ) {
2008-09-06 17:45:31 +04:00
scan_failed ( udev ) ;
exec_list ( udev , action , env ) ;
2007-07-27 05:34:31 +04:00
} else {
2008-09-10 23:50:21 +04:00
char base [ UTIL_PATH_SIZE ] ;
2006-10-08 18:06:14 +04:00
struct stat statbuf ;
/* if we have /sys/subsystem, forget all the old stuff */
2008-09-10 20:59:42 +04:00
util_strlcpy ( base , udev_get_sys_path ( udev ) , sizeof ( base ) ) ;
util_strlcat ( base , " /subsystem " , sizeof ( base ) ) ;
2007-07-27 05:34:31 +04:00
if ( stat ( base , & statbuf ) = = 0 ) {
2008-09-06 17:45:31 +04:00
scan_subsystem ( udev , " subsystem " , SCAN_SUBSYSTEM ) ;
exec_list ( udev , action , env ) ;
scan_subsystem ( udev , " subsystem " , SCAN_DEVICES ) ;
exec_list ( udev , action , env ) ;
2007-07-27 05:34:31 +04:00
} else {
2008-09-06 17:45:31 +04:00
scan_subsystem ( udev , " bus " , SCAN_SUBSYSTEM ) ;
exec_list ( udev , action , env ) ;
scan_subsystem ( udev , " bus " , SCAN_DEVICES ) ;
scan_class ( udev ) ;
2006-10-08 18:06:14 +04:00
/* scan "block" if it isn't a "class" */
2008-09-10 20:59:42 +04:00
util_strlcpy ( base , udev_get_sys_path ( udev ) , sizeof ( base ) ) ;
util_strlcat ( base , " /class/block " , sizeof ( base ) ) ;
2006-10-08 18:06:14 +04:00
if ( stat ( base , & statbuf ) ! = 0 )
2008-09-06 17:45:31 +04:00
scan_block ( udev ) ;
exec_list ( udev , action , env ) ;
2006-10-08 18:06:14 +04:00
}
2006-08-21 04:38:20 +04:00
}
2006-03-17 03:52:15 +03:00
exit :
2008-09-06 17:45:31 +04:00
name_list_cleanup ( udev , & filter_subsystem_match_list ) ;
name_list_cleanup ( udev , & filter_subsystem_nomatch_list ) ;
name_list_cleanup ( udev , & filter_attr_match_list ) ;
name_list_cleanup ( udev , & filter_attr_nomatch_list ) ;
2006-09-03 05:04:20 +04:00
2008-03-27 02:58:20 +03:00
if ( sock > = 0 )
close ( sock ) ;
2006-03-17 03:52:15 +03:00
return 0 ;
}