2007-11-08 19:51:59 +03:00
/*
2008-09-06 17:45:31 +04:00
* Copyright ( C ) 2007 - 2008 Kay Sievers < kay . sievers @ vrfy . org >
2007-11-08 19:51:59 +03: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 .
2007-11-08 19:51:59 +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/>.
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
2008-09-06 17:45:31 +04:00
static void log_fn ( struct udev * udev , int priority ,
const char * file , int line , const char * fn ,
const char * format , va_list args )
2007-11-08 19:51:59 +03:00
{
2008-09-06 17:45:31 +04:00
if ( debug ) {
fprintf ( stderr , " %s: " , fn ) ;
vfprintf ( stderr , format , args ) ;
} else {
2007-11-08 19:51:59 +03:00
vsyslog ( priority , format , args ) ;
2008-09-06 17:45:31 +04:00
}
2007-11-08 19:51:59 +03:00
}
struct command {
const char * name ;
2008-09-06 17:45:31 +04:00
int ( * cmd ) ( struct udev * udev , 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-06 17:45:31 +04:00
static int version ( struct udev * udev , 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-06 17:45:31 +04:00
static int help ( struct udev * udev , int argc , char * argv [ ] )
2007-11-08 19:51:59 +03:00
{
const struct command * cmd ;
2008-09-06 17:45:31 +04:00
printf ( " Usage: udevadm [--help] [--version] [--debug] COMMAND [COMMAND OPTIONS] \n " ) ;
2007-11-08 19:51:59 +03:00
for ( cmd = cmds ; cmd - > name ! = NULL ; cmd + + )
2008-09-07 16:48:33 +04:00
if ( cmd - > help ! = NULL )
printf ( " %-12s %s \n " , cmd - > name , cmd - > help ) ;
2007-11-08 19:51:59 +03:00
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 ,
} ,
{
. name = " help " ,
. cmd = help ,
} ,
{ }
} ;
2008-09-06 17:45:31 +04:00
static int run_command ( struct udev * udev , const struct command * cmd , int argc , char * argv [ ] )
{
if ( cmd - > debug ) {
debug = 1 ;
if ( udev_get_log_priority ( udev ) < LOG_INFO )
udev_set_log_priority ( udev , LOG_INFO ) ;
}
info ( udev , " calling: %s \n " , cmd - > name ) ;
return cmd - > cmd ( udev , argc , argv ) ;
}
2008-09-03 01:19:36 +04:00
int main ( int argc , char * argv [ ] )
2007-11-08 19:51:59 +03:00
{
2008-09-06 17:45:31 +04:00
struct udev * udev ;
static const struct option options [ ] = {
2008-10-02 18:49:05 +04:00
{ " debug " , no_argument , NULL , ' d ' } ,
{ " help " , no_argument , NULL , ' h ' } ,
{ " version " , no_argument , NULL , ' V ' } ,
2008-09-06 17:45:31 +04:00
{ }
} ;
const char * command ;
2008-09-03 23:59:21 +04:00
int i ;
2007-11-08 19:51:59 +03:00
const char * pos ;
2008-09-06 17:45:31 +04:00
int rc = 1 ;
udev = udev_new ( ) ;
if ( udev = = NULL )
goto out ;
2007-11-08 19:51:59 +03:00
2008-09-04 12:34:48 +04:00
logging_init ( " udevadm " ) ;
2008-09-06 17:45:31 +04:00
udev_set_log_fn ( udev , log_fn ) ;
2008-10-02 20:48:40 +04:00
selinux_init ( udev ) ;
2008-09-04 12:34:48 +04:00
2008-09-06 17:45:31 +04:00
/* see if we are a compat link, this will be removed in a future release */
2008-09-03 23:59:21 +04:00
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 ) ;
2008-09-09 16:48:42 +04:00
err ( udev , " the program '%s' called '%s', it should use 'udevadm %s <options>', "
" this will stop working in a future release \n " , prog , argv [ 0 ] , command ) ;
2008-09-03 23:59:21 +04:00
}
2008-09-06 17:45:31 +04:00
rc = run_command ( udev , & cmds [ i ] , argc , argv ) ;
goto out ;
}
}
while ( 1 ) {
int option ;
option = getopt_long ( argc , argv , " +dhV " , options , NULL ) ;
if ( option = = - 1 )
break ;
switch ( option ) {
case ' d ' :
debug = 1 ;
if ( udev_get_log_priority ( udev ) < LOG_INFO )
udev_set_log_priority ( udev , LOG_INFO ) ;
break ;
case ' h ' :
rc = help ( udev , argc , argv ) ;
goto out ;
case ' V ' :
rc = version ( udev , argc , argv ) ;
goto out ;
default :
2007-11-08 19:51:59 +03:00
goto out ;
}
}
2008-09-06 17:45:31 +04:00
command = argv [ optind ] ;
if ( command ! = NULL )
for ( i = 0 ; cmds [ i ] . cmd ! = NULL ; i + + ) {
if ( strcmp ( cmds [ i ] . name , command ) = = 0 ) {
optind + + ;
rc = run_command ( udev , & cmds [ i ] , argc , argv ) ;
goto out ;
}
}
2007-11-08 19:51:59 +03:00
2008-09-07 16:48:33 +04:00
fprintf ( stderr , " missing or unknown command \n \n " ) ;
help ( udev , argc , argv ) ;
2007-11-08 19:51:59 +03:00
rc = 2 ;
out :
2008-10-02 20:48:40 +04:00
selinux_exit ( udev ) ;
2008-09-06 17:45:31 +04:00
udev_unref ( udev ) ;
2008-09-04 12:34:48 +04:00
logging_close ( ) ;
2007-11-08 19:51:59 +03:00
return rc ;
}