2007-11-08 19:51:59 +03:00
/*
* Copyright ( C ) 2007 Kay Sievers < kay . sievers @ vrfy . org >
*
* 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 . ,
* 51 Franklin Street , Fifth Floor , Boston , MA 02110 - 1301 , USA .
*
*/
2008-07-30 03:45:23 +04:00
# include "config.h"
2007-11-08 19:51:59 +03:00
# include <unistd.h>
# include <stdio.h>
# include <stdlib.h>
# include <stddef.h>
# include <string.h>
# include <errno.h>
# include <getopt.h>
# include "udev.h"
2008-04-20 23:07:06 +04:00
static int debug ;
2007-11-08 19:51:59 +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 ) ;
2008-07-30 03:45:23 +04:00
if ( debug )
2007-11-08 19:51:59 +03:00
vprintf ( format , args ) ;
2008-07-30 03:45:23 +04:00
else
2007-11-08 19:51:59 +03:00
vsyslog ( priority , format , args ) ;
va_end ( args ) ;
}
# endif
struct command {
const char * name ;
2008-09-03 01:19:36 +04:00
int ( * cmd ) ( int argc , char * argv [ ] ) ;
2007-11-08 19:51:59 +03:00
const char * help ;
2008-04-20 23:07:06 +04:00
int debug ;
2007-11-08 19:51:59 +03:00
} ;
static const struct command cmds [ ] ;
2008-09-03 01:19:36 +04:00
static int version ( int argc , char * argv [ ] )
2007-11-08 19:51:59 +03:00
{
2008-07-30 03:45:23 +04:00
printf ( " %s \n " , VERSION ) ;
2007-11-08 19:51:59 +03:00
return 0 ;
}
2008-09-03 01:19:36 +04:00
static int help ( int argc , char * argv [ ] )
2007-11-08 19:51:59 +03:00
{
const struct command * cmd ;
2007-11-09 02:49:50 +03:00
printf ( " Usage: udevadm COMMAND [OPTIONS] \n " ) ;
2007-11-08 19:51:59 +03:00
for ( cmd = cmds ; cmd - > name ! = NULL ; cmd + + )
printf ( " %-12s %s \n " , cmd - > name , cmd - > help ) ;
printf ( " \n " ) ;
return 0 ;
}
static const struct command cmds [ ] = {
{
. name = " info " ,
2008-09-04 01:38:32 +04:00
. cmd = udevadm_info ,
2007-11-08 19:51:59 +03:00
. help = " query sysfs or the udev database " ,
} ,
{
. name = " trigger " ,
2008-09-04 01:38:32 +04:00
. cmd = udevadm_trigger ,
2007-11-08 19:51:59 +03:00
. help = " request events from the kernel " ,
} ,
{
. name = " settle " ,
2008-09-04 01:38:32 +04:00
. cmd = udevadm_settle , " " ,
2007-11-08 19:51:59 +03:00
. help = " wait for the event queue to finish " ,
} ,
{
. name = " control " ,
2008-09-04 01:38:32 +04:00
. cmd = udevadm_control ,
2007-11-08 19:51:59 +03:00
. help = " control the udev daemon " ,
} ,
{
. name = " monitor " ,
2008-09-04 01:38:32 +04:00
. cmd = udevadm_monitor ,
2007-11-08 19:51:59 +03:00
. help = " listen to kernel and udev events " ,
} ,
{
. name = " test " ,
2008-09-04 01:38:32 +04:00
. cmd = udevadm_test ,
2007-11-08 19:51:59 +03:00
. help = " simulation run " ,
2008-04-20 23:07:06 +04:00
. debug = 1 ,
2007-11-08 19:51:59 +03:00
} ,
{
. name = " version " ,
. cmd = version ,
. help = " print the version number " ,
} ,
{
. name = " help " ,
. cmd = help ,
. help = " print this help text " ,
} ,
{ }
} ;
2008-09-03 01:19:36 +04:00
int main ( int argc , char * argv [ ] )
2007-11-08 19:51:59 +03:00
{
2008-09-03 23:59:21 +04:00
const char * command = argv [ 1 ] ;
int i ;
2007-11-08 19:51:59 +03:00
const char * pos ;
int rc ;
2008-09-03 23:59:21 +04:00
/* find command */
if ( command ! = NULL )
for ( i = 0 ; cmds [ i ] . cmd ! = NULL ; i + + ) {
if ( strcmp ( cmds [ i ] . name , command ) = = 0 ) {
debug = cmds [ i ] . debug ;
rc = cmds [ i ] . cmd ( argc - 1 , & argv [ 1 ] ) ;
goto out ;
}
}
/* try to find compat link, will be removed in a future release */
command = argv [ 0 ] ;
pos = strrchr ( command , ' / ' ) ;
2007-11-08 19:51:59 +03:00
if ( pos ! = NULL )
command = & pos [ 1 ] ;
2008-09-03 23:59:21 +04:00
/* the trailing part of the binary or link name is the command */
2007-11-08 19:51:59 +03:00
if ( strncmp ( command , " udev " , 4 ) = = 0 )
command = & command [ 4 ] ;
2008-09-03 23:59:21 +04:00
for ( i = 0 ; cmds [ i ] . cmd ! = NULL ; i + + ) {
if ( strcmp ( cmds [ i ] . name , command ) = = 0 ) {
char path [ 128 ] ;
char prog [ 512 ] ;
ssize_t len ;
snprintf ( path , sizeof ( path ) , " /proc/%lu/exe " , ( unsigned long ) getppid ( ) ) ;
len = readlink ( path , prog , sizeof ( prog ) ) ;
if ( len > 0 ) {
prog [ len ] = ' \0 ' ;
fprintf ( stderr , " the program '%s' called '%s', it should use 'udevadm %s <options>', "
" this will stop working in a future release \n " , prog , argv [ 0 ] , command ) ;
info ( " the program '%s' called '%s', it should use 'udevadm %s <options>', "
" this will stop working in a future release \n " , prog , argv [ 0 ] , command ) ;
}
debug = cmds [ i ] . debug ;
rc = cmds [ i ] . cmd ( argc , argv ) ;
2007-11-08 19:51:59 +03:00
goto out ;
}
}
fprintf ( stderr , " unknown command, try help \n \n " ) ;
rc = 2 ;
out :
return rc ;
}