2004-03-25 07:46:58 +03:00
/*
2004-03-27 12:21:46 +03:00
* dev_d . c - dev . d / multiplexer
2004-03-25 07:46:58 +03:00
*
* Copyright ( C ) 2004 Greg Kroah - Hartman < greg @ kroah . com >
*
* 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 .
*/
2004-03-27 12:21:46 +03:00
/*
2004-03-25 07:46:58 +03:00
* This essentially emulates the following shell script logic in C :
2004-03-27 12:21:46 +03:00
* DIR = " /etc/dev.d "
2004-04-09 05:48:56 +04:00
* export DEVNAME = " whatever_dev_name_udev_just_gave "
* for I in " ${DIR}/$DEVNAME/ " * . dev " ${DIR}/$1/ " * . dev " ${DIR}/default/ " * . dev ; do
2004-03-27 12:21:46 +03:00
* if [ - f $ I ] ; then $ I $ 1 ; fi
* done
* exit 1 ;
2004-03-25 07:46:58 +03:00
*/
# include <stdio.h>
# include <stdlib.h>
# include <string.h>
# include <sys/types.h>
# include <sys/wait.h>
2004-10-06 11:54:08 +04:00
# include <sys/stat.h>
2004-03-25 07:46:58 +03:00
# include <unistd.h>
2004-10-06 11:54:08 +04:00
# include <fcntl.h>
2004-03-25 07:46:58 +03:00
# include "udev.h"
# include "udev_lib.h"
2004-10-06 11:54:08 +04:00
# include "udevdb.h"
2004-03-25 07:46:58 +03:00
# include "logging.h"
2004-03-27 12:21:46 +03:00
# define DEVD_DIR " / etc / dev.d / "
# define DEVD_SUFFIX ".dev"
2004-03-25 07:46:58 +03:00
2004-03-27 12:21:46 +03:00
static int run_program ( char * name )
2004-03-25 07:46:58 +03:00
{
pid_t pid ;
2004-10-06 11:54:08 +04:00
int fd ;
2004-10-07 11:17:11 +04:00
char * argv [ 3 ] ;
2004-03-25 07:46:58 +03:00
dbg ( " running %s " , name ) ;
pid = fork ( ) ;
2004-03-27 12:21:46 +03:00
switch ( pid ) {
case 0 :
/* child */
2004-10-06 11:54:08 +04:00
udevdb_exit ( ) ; /* close udevdb */
fd = open ( " /dev/null " , O_RDWR ) ;
if ( fd > = 0 ) {
dup2 ( fd , STDOUT_FILENO ) ;
dup2 ( fd , STDIN_FILENO ) ;
dup2 ( fd , STDERR_FILENO ) ;
}
close ( fd ) ;
2004-10-07 11:17:11 +04:00
argv [ 0 ] = name ;
argv [ 1 ] = main_argv [ 1 ] ;
argv [ 2 ] = NULL ;
execv ( name , argv ) ;
2004-03-27 12:21:46 +03:00
dbg ( " exec of child failed " ) ;
exit ( 1 ) ;
case - 1 :
dbg ( " fork of child failed " ) ;
break ;
return - 1 ;
default :
2004-03-25 07:46:58 +03:00
wait ( NULL ) ;
}
2004-03-27 12:21:46 +03:00
return 0 ;
2004-03-25 07:46:58 +03:00
}
2004-03-27 12:21:46 +03:00
/*
* runs files in these directories in order :
* < node name given by udev > /
* subsystem /
* default /
2004-03-25 07:46:58 +03:00
*/
[PATCH] Make udev/udevstart be one binary
Hi,
The following patch makes udev/udevstart be a common binary. First,
doing this grows udev by a total of 1.8kB (ppc32, stripped) whereas
udevstart by itself is 6.4kB. I know you mentioned being able to
replace udevstart with a script, but at 1.8kB I don't think it'll be
easy to beat this with size there. Next, the following are by-eye
timings of before, after, and with devfs on a slow, but still usable
embedded platform (config stripped down to more-or-less bare for
ramdisk):
-- Embedded Planet RPX LITE, 64Mhz MPC 823e --
devfs : 15.333s, 15.253s, 14.988s (15.191s avg)
udev-pristine : 18.675s, 18.079s, 18.418s (18.390s avg)
udev-multi : 14.587s, 14.747s, 14.868s (14.734s avg)
The patch ends up being rather large to add this, as in doing so I ended
up making all refs (that I hit..) to devpath/subsystem be marked as
'const'.
Signed-off-by: Tom Rini <trini@kernel.crashing.org>
Signed-off-by: Greg Kroah-Hartman <greg@kroah.com>
2004-08-10 11:50:21 +04:00
void dev_d_send ( struct udevice * dev , const char * subsystem , const char * devpath )
2004-03-25 07:46:58 +03:00
{
char dirname [ 256 ] ;
2004-04-22 07:24:51 +04:00
char env_devname [ NAME_SIZE ] ;
char * devname ;
char * temp ;
2004-03-25 07:46:58 +03:00
[PATCH] netdev - udevdb+dev.d changes
Here is a patch to change the netdev handling in the database and for
the dev.d/ calls. I applies on top of the udevd.patch, cause klibc has
no sysinfo().
o netdev's are also put into our database now. I want this for the
udevruler gui to get a list of all handled devices.
All devices in the db are stamped with the system uptime value at
the creation time. 'udevinfo -d' prints it.
o the DEVPATH value is the key for udevdb, but if we rename
a netdev, the name is replaced in the kernel, so we add
the changed name to the db to match with the remove event.
NOTE: The dev.d/ scripts still get the original name from the
hotplug call. Should we replace DEVPATH with the new name too?
o We now only add a device to the db, if we have successfully created
the main node or successfully renamed a netdev. This is the main part
of the patch, cause I needed to clean the retval passing trough all
the functions used for node creation.
o DEVNODE sounds a bit ugly for netdev's so I exported DEVNAME too.
Can we change the name?
o I've added a UDEV_NO_DEVD to possibly skip the script execution
and used it in udev-test.pl.
udevstart is the same horror now, if you have scripts with logging
statements in dev.d/ it takes minutes to finish, can we skip the
scripts here too?
o The get_device_type() function is changed to be more strict, cause
'udevinfo -a -p /block/' gets a class device for it and tries to
print the major/minor values.
o bugfix, the RESULT value has now a working newline removal and a test
for this case.
2004-04-01 11:12:57 +04:00
if ( udev_dev_d = = 0 )
return ;
2004-10-06 11:23:37 +04:00
memset ( env_devname , 0x00 , sizeof ( env_devname ) ) ;
[PATCH] netdev - udevdb+dev.d changes
Here is a patch to change the netdev handling in the database and for
the dev.d/ calls. I applies on top of the udevd.patch, cause klibc has
no sysinfo().
o netdev's are also put into our database now. I want this for the
udevruler gui to get a list of all handled devices.
All devices in the db are stamped with the system uptime value at
the creation time. 'udevinfo -d' prints it.
o the DEVPATH value is the key for udevdb, but if we rename
a netdev, the name is replaced in the kernel, so we add
the changed name to the db to match with the remove event.
NOTE: The dev.d/ scripts still get the original name from the
hotplug call. Should we replace DEVPATH with the new name too?
o We now only add a device to the db, if we have successfully created
the main node or successfully renamed a netdev. This is the main part
of the patch, cause I needed to clean the retval passing trough all
the functions used for node creation.
o DEVNODE sounds a bit ugly for netdev's so I exported DEVNAME too.
Can we change the name?
o I've added a UDEV_NO_DEVD to possibly skip the script execution
and used it in udev-test.pl.
udevstart is the same horror now, if you have scripts with logging
statements in dev.d/ it takes minutes to finish, can we skip the
scripts here too?
o The get_device_type() function is changed to be more strict, cause
'udevinfo -a -p /block/' gets a class device for it and tries to
print the major/minor values.
o bugfix, the RESULT value has now a working newline removal and a test
for this case.
2004-04-01 11:12:57 +04:00
if ( dev - > type = = ' b ' | | dev - > type = = ' c ' ) {
2004-04-22 07:24:51 +04:00
strfieldcpy ( env_devname , udev_root ) ;
strfieldcat ( env_devname , dev - > name ) ;
[PATCH] netdev - udevdb+dev.d changes
Here is a patch to change the netdev handling in the database and for
the dev.d/ calls. I applies on top of the udevd.patch, cause klibc has
no sysinfo().
o netdev's are also put into our database now. I want this for the
udevruler gui to get a list of all handled devices.
All devices in the db are stamped with the system uptime value at
the creation time. 'udevinfo -d' prints it.
o the DEVPATH value is the key for udevdb, but if we rename
a netdev, the name is replaced in the kernel, so we add
the changed name to the db to match with the remove event.
NOTE: The dev.d/ scripts still get the original name from the
hotplug call. Should we replace DEVPATH with the new name too?
o We now only add a device to the db, if we have successfully created
the main node or successfully renamed a netdev. This is the main part
of the patch, cause I needed to clean the retval passing trough all
the functions used for node creation.
o DEVNODE sounds a bit ugly for netdev's so I exported DEVNAME too.
Can we change the name?
o I've added a UDEV_NO_DEVD to possibly skip the script execution
and used it in udev-test.pl.
udevstart is the same horror now, if you have scripts with logging
statements in dev.d/ it takes minutes to finish, can we skip the
scripts here too?
o The get_device_type() function is changed to be more strict, cause
'udevinfo -a -p /block/' gets a class device for it and tries to
print the major/minor values.
o bugfix, the RESULT value has now a working newline removal and a test
for this case.
2004-04-01 11:12:57 +04:00
} else if ( dev - > type = = ' n ' ) {
2004-04-22 07:24:51 +04:00
strfieldcpy ( env_devname , dev - > name ) ;
2004-10-08 09:26:02 +04:00
setenv ( " DEVPATH " , devpath , 1 ) ;
[PATCH] netdev - udevdb+dev.d changes
Here is a patch to change the netdev handling in the database and for
the dev.d/ calls. I applies on top of the udevd.patch, cause klibc has
no sysinfo().
o netdev's are also put into our database now. I want this for the
udevruler gui to get a list of all handled devices.
All devices in the db are stamped with the system uptime value at
the creation time. 'udevinfo -d' prints it.
o the DEVPATH value is the key for udevdb, but if we rename
a netdev, the name is replaced in the kernel, so we add
the changed name to the db to match with the remove event.
NOTE: The dev.d/ scripts still get the original name from the
hotplug call. Should we replace DEVPATH with the new name too?
o We now only add a device to the db, if we have successfully created
the main node or successfully renamed a netdev. This is the main part
of the patch, cause I needed to clean the retval passing trough all
the functions used for node creation.
o DEVNODE sounds a bit ugly for netdev's so I exported DEVNAME too.
Can we change the name?
o I've added a UDEV_NO_DEVD to possibly skip the script execution
and used it in udev-test.pl.
udevstart is the same horror now, if you have scripts with logging
statements in dev.d/ it takes minutes to finish, can we skip the
scripts here too?
o The get_device_type() function is changed to be more strict, cause
'udevinfo -a -p /block/' gets a class device for it and tries to
print the major/minor values.
o bugfix, the RESULT value has now a working newline removal and a test
for this case.
2004-04-01 11:12:57 +04:00
}
2004-04-22 07:24:51 +04:00
setenv ( " DEVNAME " , env_devname , 1 ) ;
dbg ( " DEVNAME='%s' " , env_devname ) ;
devname = strdup ( dev - > name ) ;
if ( ! devname ) {
dbg ( " out of memory " ) ;
return ;
}
/* Chop the device name up into pieces based on '/' */
temp = strchr ( devname , ' / ' ) ;
while ( temp ! = NULL ) {
* temp = 0x00 ;
strcpy ( dirname , DEVD_DIR ) ;
strfieldcat ( dirname , devname ) ;
call_foreach_file ( run_program , dirname , DEVD_SUFFIX ) ;
* temp = ' / ' ;
+ + temp ;
temp = strchr ( temp , ' / ' ) ;
}
2004-03-25 07:46:58 +03:00
2004-03-27 12:21:46 +03:00
strcpy ( dirname , DEVD_DIR ) ;
strfieldcat ( dirname , dev - > name ) ;
call_foreach_file ( run_program , dirname , DEVD_SUFFIX ) ;
2004-03-25 07:46:58 +03:00
2004-03-27 12:21:46 +03:00
strcpy ( dirname , DEVD_DIR ) ;
strfieldcat ( dirname , subsystem ) ;
call_foreach_file ( run_program , dirname , DEVD_SUFFIX ) ;
2004-03-25 07:46:58 +03:00
2004-03-27 12:21:46 +03:00
strcpy ( dirname , DEVD_DIR " default " ) ;
call_foreach_file ( run_program , dirname , DEVD_SUFFIX ) ;
2004-03-25 07:46:58 +03:00
}