2014-08-02 19:12:21 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2007-11-08 19:51:59 +03:00
/*
2012-11-12 22:36:23 +04:00
* Copyright ( C ) 2007 - 2012 Kay Sievers < kay @ 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>
2014-12-27 20:46:36 +03:00
# include "selinux-util.h"
2007-11-08 19:51:59 +03:00
# include "udev.h"
2014-07-29 17:47:41 +04:00
static int adm_version ( struct udev * udev , int argc , char * argv [ ] ) {
2012-01-10 04:34:15 +04:00
printf ( " %s \n " , VERSION ) ;
return 0 ;
2007-11-08 19:51:59 +03:00
}
2012-04-08 18:06:20 +04:00
2011-07-14 03:53:23 +04:00
static const struct udevadm_cmd udevadm_version = {
2012-01-10 04:34:15 +04:00
. name = " version " ,
. cmd = adm_version ,
2011-07-14 03:53:23 +04:00
} ;
static int adm_help ( struct udev * udev , int argc , char * argv [ ] ) ;
2012-04-08 18:06:20 +04:00
2011-07-14 03:53:23 +04:00
static const struct udevadm_cmd udevadm_help = {
2012-01-10 04:34:15 +04:00
. name = " help " ,
. cmd = adm_help ,
2011-07-14 03:53:23 +04:00
} ;
static const struct udevadm_cmd * udevadm_cmds [ ] = {
2012-01-10 04:34:15 +04:00
& udevadm_info ,
& udevadm_trigger ,
& udevadm_settle ,
& udevadm_control ,
& udevadm_monitor ,
2012-10-22 20:23:08 +04:00
& udevadm_hwdb ,
2012-01-10 04:34:15 +04:00
& udevadm_test ,
& udevadm_test_builtin ,
& udevadm_version ,
& udevadm_help ,
2011-07-14 03:53:23 +04:00
} ;
2007-11-08 19:51:59 +03:00
2014-07-29 17:47:41 +04:00
static int adm_help ( struct udev * udev , int argc , char * argv [ ] ) {
2012-01-10 04:34:15 +04:00
unsigned int i ;
fprintf ( stderr , " Usage: udevadm [--help] [--version] [--debug] COMMAND [COMMAND OPTIONS] \n " ) ;
2012-04-16 05:13:22 +04:00
for ( i = 0 ; i < ELEMENTSOF ( udevadm_cmds ) ; i + + )
2012-01-10 04:34:15 +04:00
if ( udevadm_cmds [ i ] - > help ! = NULL )
printf ( " %-12s %s \n " , udevadm_cmds [ i ] - > name , udevadm_cmds [ i ] - > help ) ;
fprintf ( stderr , " \n " ) ;
return 0 ;
2007-11-08 19:51:59 +03:00
}
2014-07-29 17:47:41 +04:00
static int run_command ( struct udev * udev , const struct udevadm_cmd * cmd , int argc , char * argv [ ] ) {
2012-04-08 18:06:20 +04:00
if ( cmd - > debug )
log_set_max_level ( LOG_DEBUG ) ;
2013-12-24 19:39:37 +04:00
log_debug ( " calling: %s " , cmd - > name ) ;
2012-01-10 04:34:15 +04:00
return cmd - > cmd ( udev , argc , argv ) ;
2008-09-06 17:45:31 +04:00
}
2014-07-29 17:47:41 +04:00
int main ( int argc , char * argv [ ] ) {
2012-01-10 04:34:15 +04:00
struct udev * udev ;
static const struct option options [ ] = {
{ " debug " , no_argument , NULL , ' d ' } ,
{ " help " , no_argument , NULL , ' h ' } ,
{ " version " , no_argument , NULL , ' V ' } ,
{ }
} ;
const char * command ;
unsigned int i ;
2014-08-02 19:12:21 +04:00
int rc = 1 , c ;
2012-01-10 04:34:15 +04:00
udev = udev_new ( ) ;
if ( udev = = NULL )
goto out ;
2012-04-08 18:06:20 +04:00
log_parse_environment ( ) ;
2012-07-13 17:45:45 +04:00
log_open ( ) ;
2014-10-23 12:23:46 +04:00
mac_selinux_init ( " /dev " ) ;
2012-01-10 04:34:15 +04:00
2014-08-02 19:12:21 +04:00
while ( ( c = getopt_long ( argc , argv , " +dhV " , options , NULL ) ) > = 0 )
switch ( c ) {
2012-01-10 04:34:15 +04:00
case ' d ' :
2012-04-08 18:06:20 +04:00
log_set_max_level ( LOG_DEBUG ) ;
2012-01-10 04:34:15 +04:00
break ;
2014-08-02 19:12:21 +04:00
2012-01-10 04:34:15 +04:00
case ' h ' :
rc = adm_help ( udev , argc , argv ) ;
goto out ;
2014-08-02 19:12:21 +04:00
2012-01-10 04:34:15 +04:00
case ' V ' :
rc = adm_version ( udev , argc , argv ) ;
goto out ;
2014-08-02 19:12:21 +04:00
2012-01-10 04:34:15 +04:00
default :
goto out ;
}
2014-08-02 19:12:21 +04:00
2012-01-10 04:34:15 +04:00
command = argv [ optind ] ;
if ( command ! = NULL )
2014-08-02 19:12:21 +04:00
for ( i = 0 ; i < ELEMENTSOF ( udevadm_cmds ) ; i + + )
2013-02-13 21:13:22 +04:00
if ( streq ( udevadm_cmds [ i ] - > name , command ) ) {
2012-01-10 04:34:15 +04:00
argc - = optind ;
argv + = optind ;
2012-10-25 23:31:38 +04:00
/* we need '0' here to reset the internal state */
optind = 0 ;
2012-01-10 04:34:15 +04:00
rc = run_command ( udev , udevadm_cmds [ i ] , argc , argv ) ;
goto out ;
}
2014-08-27 20:02:17 +04:00
fprintf ( stderr , " %s: missing or unknown command \n " , program_invocation_short_name ) ;
2012-01-10 04:34:15 +04:00
rc = 2 ;
2007-11-08 19:51:59 +03:00
out :
2014-10-23 12:23:46 +04:00
mac_selinux_finish ( ) ;
2012-01-10 04:34:15 +04:00
udev_unref ( udev ) ;
2012-04-08 18:06:20 +04:00
log_close ( ) ;
2012-01-10 04:34:15 +04:00
return rc ;
2007-11-08 19:51:59 +03:00
}