2005-04-27 07:59:47 +04:00
/*
2005-07-22 20:35:58 +04:00
* Copyright ( C ) 2003 - 2004 Greg Kroah - Hartman < greg @ kroah . com >
2008-09-10 04:40:42 +04:00
* Copyright ( C ) 2004 - 2008 Kay Sievers < kay . sievers @ vrfy . org >
2005-04-27 07:59:47 +04: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 .
2005-04-27 07:59:47 +04: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/>.
2005-04-27 07:59:47 +04:00
*/
2004-03-23 09:22:20 +03:00
# include <stdio.h>
# include <stddef.h>
2005-04-27 07:59:47 +04:00
# include <stdlib.h>
# include <string.h>
2004-11-23 09:34:56 +03:00
# include <fcntl.h>
2003-12-03 12:08:46 +03:00
# include <ctype.h>
2004-03-23 09:22:20 +03:00
# include <errno.h>
2004-10-19 10:14:20 +04:00
# include <unistd.h>
2005-08-11 19:32:59 +04:00
# include <syslog.h>
2008-09-01 22:59:09 +04:00
# include <grp.h>
2011-04-20 03:53:03 +04:00
# include <sys/signalfd.h>
2003-04-10 21:53:46 +04:00
2005-04-27 07:59:47 +04:00
# include "udev.h"
2011-12-25 23:41:52 +04:00
void udev_main_log ( struct udev * udev , int priority ,
2012-01-10 04:34:15 +04:00
const char * file , int line , const char * fn ,
const char * format , va_list args ) { }
2011-12-25 23:41:52 +04:00
2008-09-03 01:19:36 +04:00
int main ( int argc , char * argv [ ] )
2003-12-31 09:31:37 +03:00
{
2012-01-10 04:34:15 +04:00
struct udev * udev ;
struct udev_event * event = NULL ;
struct udev_device * dev = NULL ;
struct udev_rules * rules = NULL ;
char syspath [ UTIL_PATH_SIZE ] ;
const char * devpath ;
const char * action ;
sigset_t mask , sigmask_orig ;
int err = - EINVAL ;
2012-05-31 00:13:48 +04:00
const char * prefixes [ ] = { " /dev " , " /run " , NULL } ;
2012-01-10 04:34:15 +04:00
udev = udev_new ( ) ;
if ( udev = = NULL )
2012-04-08 19:03:17 +04:00
exit ( EXIT_FAILURE ) ;
2012-04-08 18:06:20 +04:00
log_debug ( " version %s \n " , VERSION ) ;
2012-05-31 00:13:48 +04:00
label_init ( prefixes ) ;
2012-01-10 04:34:15 +04:00
sigprocmask ( SIG_SETMASK , NULL , & sigmask_orig ) ;
action = argv [ 1 ] ;
if ( action = = NULL ) {
2012-04-08 18:06:20 +04:00
log_error ( " action missing \n " ) ;
2012-01-10 04:34:15 +04:00
goto out ;
}
devpath = argv [ 2 ] ;
if ( devpath = = NULL ) {
2012-04-08 18:06:20 +04:00
log_error ( " devpath missing \n " ) ;
2012-01-10 04:34:15 +04:00
goto out ;
}
rules = udev_rules_new ( udev , 1 ) ;
2012-04-16 19:21:22 +04:00
util_strscpyl ( syspath , sizeof ( syspath ) , TEST_PREFIX " /sys " , devpath , NULL ) ;
2012-01-10 04:34:15 +04:00
dev = udev_device_new_from_syspath ( udev , syspath ) ;
if ( dev = = NULL ) {
2012-04-08 18:06:20 +04:00
log_debug ( " unknown device '%s' \n " , devpath ) ;
2012-01-10 04:34:15 +04:00
goto out ;
}
udev_device_set_action ( dev , action ) ;
event = udev_event_new ( dev ) ;
sigfillset ( & mask ) ;
sigprocmask ( SIG_SETMASK , & mask , & sigmask_orig ) ;
event - > fd_signal = signalfd ( - 1 , & mask , SFD_NONBLOCK | SFD_CLOEXEC ) ;
if ( event - > fd_signal < 0 ) {
fprintf ( stderr , " error creating signalfd \n " ) ;
goto out ;
}
/* do what devtmpfs usually provides us */
if ( udev_device_get_devnode ( dev ) ! = NULL ) {
2012-04-09 18:37:54 +04:00
mode_t mode = 0600 ;
2012-01-10 04:34:15 +04:00
if ( strcmp ( udev_device_get_subsystem ( dev ) , " block " ) = = 0 )
mode | = S_IFBLK ;
else
mode | = S_IFCHR ;
if ( strcmp ( action , " remove " ) ! = 0 ) {
2012-04-17 02:26:02 +04:00
mkdir_parents ( udev_device_get_devnode ( dev ) , 0755 ) ;
2012-01-10 04:34:15 +04:00
mknod ( udev_device_get_devnode ( dev ) , mode , udev_device_get_devnum ( dev ) ) ;
} else {
unlink ( udev_device_get_devnode ( dev ) ) ;
util_delete_path ( udev , udev_device_get_devnode ( dev ) ) ;
}
}
err = udev_event_execute_rules ( event , rules , & sigmask_orig ) ;
if ( err = = 0 )
udev_event_execute_run ( event , NULL ) ;
2011-04-20 03:53:03 +04:00
out :
2012-01-10 04:34:15 +04:00
if ( event ! = NULL & & event - > fd_signal > = 0 )
close ( event - > fd_signal ) ;
udev_event_unref ( event ) ;
udev_device_unref ( dev ) ;
udev_rules_unref ( rules ) ;
2012-04-17 18:05:03 +04:00
label_finish ( ) ;
2012-01-10 04:34:15 +04:00
udev_unref ( udev ) ;
if ( err ! = 0 )
2012-04-08 19:03:17 +04:00
return EXIT_FAILURE ;
return EXIT_SUCCESS ;
2005-04-27 07:59:47 +04:00
}