2004-02-13 06:48:07 +03:00
/*
2005-07-22 20:35:58 +04:00
* Copyright ( C ) 2003 - 2004 Greg Kroah - Hartman < greg @ kroah . com >
2006-08-21 04:38:20 +04:00
* Copyright ( C ) 2004 - 2006 Kay Sievers < kay . sievers @ vrfy . org >
2004-02-13 06:48:07 +03:00
*
* This program is free software ; you can redistribute it and / or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation version 2 of the License .
*
* This program is distributed in the hope that it will be useful , but
* WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the GNU
* General Public License for more details .
*
* You should have received a copy of the GNU General Public License along
* with this program ; if not , write to the Free Software Foundation , Inc . ,
2006-08-28 02:29:11 +04:00
* 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 , USA .
2004-02-13 06:48:07 +03:00
*
*/
# include <stdlib.h>
# include <string.h>
# include <stdio.h>
2006-01-09 23:18:00 +03:00
# include <stddef.h>
# include <unistd.h>
2004-02-13 06:48:07 +03:00
# include <errno.h>
# include <ctype.h>
# include <signal.h>
2005-03-27 03:11:03 +04:00
# include <syslog.h>
2004-02-13 06:48:07 +03:00
# include "udev.h"
2005-03-13 00:36:32 +03:00
# include "udev_rules.h"
2004-02-13 06:48:07 +03:00
2004-03-23 09:18:34 +03:00
2005-03-06 12:15:51 +03:00
# ifdef USE_LOG
2005-03-27 03:11:03 +04:00
void log_message ( int priority , const char * format , . . . )
2004-02-13 06:48:07 +03:00
{
2004-03-04 11:57:29 +03:00
va_list args ;
2004-02-13 06:48:07 +03:00
2005-03-27 03:11:03 +04:00
if ( priority > udev_log_priority )
return ;
2004-02-13 06:48:07 +03:00
va_start ( args , format ) ;
2004-02-13 07:19:21 +03:00
vprintf ( format , args ) ;
2004-02-13 06:48:07 +03:00
va_end ( args ) ;
2004-02-13 07:19:21 +03:00
if ( format [ strlen ( format ) - 1 ] ! = ' \n ' )
printf ( " \n " ) ;
2004-02-13 06:48:07 +03:00
}
# endif
2004-03-23 09:18:34 +03:00
int main ( int argc , char * argv [ ] , char * envp [ ] )
2004-02-13 06:48:07 +03:00
{
2006-08-21 04:38:20 +04:00
struct udev_rules rules = { } ;
char * devpath = NULL ;
2006-01-09 23:18:00 +03:00
struct udevice * udev ;
struct sysfs_device * dev ;
2006-08-21 04:38:20 +04:00
int i ;
2006-01-09 23:18:00 +03:00
int retval ;
int rc = 0 ;
2004-03-23 09:18:34 +03:00
info ( " version %s " , UDEV_VERSION ) ;
2006-01-09 23:18:00 +03:00
udev_config_init ( ) ;
2005-03-27 03:11:03 +04:00
if ( udev_log_priority < LOG_INFO )
udev_log_priority = LOG_INFO ;
2004-11-28 15:41:15 +03:00
2006-08-21 04:38:20 +04:00
for ( i = 1 ; i < argc ; i + + ) {
char * arg = argv [ i ] ;
if ( strcmp ( arg , " --help " ) = = 0 | | strcmp ( arg , " -h " ) = = 0 ) {
printf ( " Usage: udevtest [--help] <devpath> \n " ) ;
goto exit ;
} else
devpath = arg ;
}
if ( devpath = = NULL ) {
fprintf ( stderr , " devpath parameter missing \n " ) ;
rc = 1 ;
goto exit ;
2005-03-29 13:30:51 +04:00
}
2006-08-18 04:33:46 +04:00
sysfs_init ( ) ;
2006-08-21 04:38:20 +04:00
udev_rules_init ( & rules , 0 ) ;
2006-08-18 04:33:46 +04:00
/* remove /sys if given */
2006-08-21 04:38:20 +04:00
if ( strncmp ( devpath , sysfs_path , strlen ( sysfs_path ) ) = = 0 )
devpath = & devpath [ strlen ( sysfs_path ) ] ;
2004-02-13 06:48:07 +03:00
2006-01-09 23:18:00 +03:00
dev = sysfs_device_get ( devpath ) ;
if ( dev = = NULL ) {
2006-08-21 04:38:20 +04:00
fprintf ( stderr , " unable to open device '%s' \n " , devpath ) ;
2006-01-09 23:18:00 +03:00
rc = 2 ;
goto exit ;
}
2004-10-19 06:11:51 +04:00
2006-01-09 23:18:00 +03:00
udev = udev_device_init ( ) ;
if ( udev = = NULL ) {
2006-08-21 04:38:20 +04:00
fprintf ( stderr , " error initializing device \n " ) ;
2006-01-09 23:18:00 +03:00
rc = 3 ;
goto exit ;
2004-10-30 15:44:46 +04:00
}
2004-10-19 06:11:51 +04:00
2006-01-09 23:18:00 +03:00
/* override built-in sysfs device */
udev - > dev = dev ;
strcpy ( udev - > action , " add " ) ;
udev - > devt = udev_device_get_devt ( udev ) ;
2005-06-22 03:31:24 +04:00
2004-10-19 06:28:39 +04:00
/* simulate node creation with test flag */
2006-01-09 23:18:00 +03:00
udev - > test_run = 1 ;
setenv ( " DEVPATH " , udev - > dev - > devpath , 1 ) ;
setenv ( " SUBSYSTEM " , udev - > dev - > subsystem , 1 ) ;
setenv ( " ACTION " , " add " , 1 ) ;
2006-08-28 04:38:53 +04:00
printf ( " This program is for debugging only, it does not create any node, \n "
" or run any program specified by a RUN key. It may show incorrect results, \n "
" if rules match against subsystem specfic kernel event variables. \n "
" \n " ) ;
2006-01-09 23:18:00 +03:00
info ( " looking at device '%s' from subsystem '%s' " , udev - > dev - > devpath , udev - > dev - > subsystem ) ;
retval = udev_device_event ( & rules , udev ) ;
2006-01-25 04:18:13 +03:00
if ( retval = = 0 & & ! udev - > ignore_device & & udev_run ) {
2006-01-09 23:18:00 +03:00
struct name_entry * name_loop ;
2006-01-25 04:18:13 +03:00
list_for_each_entry ( name_loop , & udev - > run_list , node ) {
char program [ PATH_SIZE ] ;
strlcpy ( program , name_loop - > name , sizeof ( program ) ) ;
udev_rules_apply_format ( udev , program , sizeof ( program ) ) ;
info ( " run: '%s' " , program ) ;
}
2006-01-09 23:18:00 +03:00
}
exit :
udev_rules_cleanup ( & rules ) ;
sysfs_cleanup ( ) ;
return rc ;
2004-02-13 06:48:07 +03:00
}