2003-07-19 07:08:00 +04:00
/*
* sysfs_driver . c
*
* Driver utility functions for libsysfs
*
2003-10-21 12:19:14 +04:00
* Copyright ( C ) IBM Corp . 2003
2003-07-19 07:08:00 +04:00
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation ; either
* version 2.1 of the License , or ( at your option ) any later version .
*
* This library 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
* Lesser General Public License for more details .
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*
*/
2004-02-18 10:59:06 +03:00
# include "sysfs/libsysfs.h"
2003-07-19 07:08:00 +04:00
# include "sysfs.h"
2003-12-16 08:53:28 +03:00
static void sysfs_close_driver_device ( void * device )
2003-10-21 12:19:14 +04:00
{
sysfs_close_device ( ( struct sysfs_device * ) device ) ;
}
/**
2003-12-16 08:53:28 +03:00
* sysfs_close_driver : closes driver and deletes device lists too
2003-10-21 12:19:14 +04:00
* @ driver : driver to close
*/
2003-12-16 08:53:28 +03:00
void sysfs_close_driver ( struct sysfs_driver * driver )
2003-10-21 12:19:14 +04:00
{
if ( driver ! = NULL ) {
if ( driver - > devices ! = NULL )
dlist_destroy ( driver - > devices ) ;
if ( driver - > directory ! = NULL )
sysfs_close_directory ( driver - > directory ) ;
free ( driver ) ;
}
}
2003-12-16 08:53:28 +03:00
/**
* open_driver_dir : Open the sysfs_directory for this driver
* @ driver : Driver whose directory to be opened
* Returns 0 on success and 1 on failure
*/
static int open_driver_dir ( struct sysfs_driver * driver )
{
if ( driver = = NULL ) {
errno = EINVAL ;
return 1 ;
}
if ( driver - > directory = = NULL ) {
driver - > directory = sysfs_open_directory ( driver - > path ) ;
if ( driver - > directory = = NULL ) {
dprintf ( " Error opening driver directory at %s \n " ,
driver - > path ) ;
return 1 ;
}
}
return 0 ;
}
2003-07-19 07:08:00 +04:00
/**
* alloc_driver : allocates and initializes driver
* returns struct sysfs_driver with success and NULL with error .
*/
static struct sysfs_driver * alloc_driver ( void )
{
return ( struct sysfs_driver * ) calloc ( 1 , sizeof ( struct sysfs_driver ) ) ;
}
/**
2003-12-20 05:29:10 +03:00
* sysfs_open_driver_path : opens and initializes driver structure
2003-07-19 07:08:00 +04:00
* @ path : path to driver directory
* returns struct sysfs_driver with success and NULL with error
*/
2004-03-12 11:57:30 +03:00
struct sysfs_driver * sysfs_open_driver_path ( const char * path )
2003-07-19 07:08:00 +04:00
{
struct sysfs_driver * driver = NULL ;
if ( path = = NULL ) {
errno = EINVAL ;
return NULL ;
}
2003-12-16 08:53:28 +03:00
if ( ( sysfs_path_is_dir ( path ) ) ! = 0 ) {
dprintf ( " Invalid path to driver: %s \n " , path ) ;
2003-07-19 07:08:00 +04:00
return NULL ;
}
driver = alloc_driver ( ) ;
if ( driver = = NULL ) {
2003-10-21 12:19:14 +04:00
dprintf ( " Error allocating driver at %s \n " , path ) ;
2003-07-19 07:08:00 +04:00
return NULL ;
}
2003-12-16 08:53:28 +03:00
if ( ( sysfs_get_name_from_path ( path , driver - > name ,
SYSFS_NAME_LEN ) ) ! = 0 ) {
dprintf ( " Error getting driver name from path \n " ) ;
free ( driver ) ;
return NULL ;
}
2004-03-12 11:57:30 +03:00
safestrcpy ( driver - > path , path ) ;
2004-01-15 09:21:38 +03:00
if ( ( sysfs_remove_trailing_slash ( driver - > path ) ) ! = 0 ) {
dprintf ( " Invalid path to driver %s \n " , driver - > path ) ;
sysfs_close_driver ( driver ) ;
return NULL ;
}
2003-07-19 07:08:00 +04:00
return driver ;
}
2003-10-21 12:19:14 +04:00
/**
* sysfs_get_driver_attributes : gets list of attributes for the given driver
* @ driver : sysfs_driver for which attributes are required
* returns a dlist of attributes corresponding to the driver if present
* NULL otherwise
*/
struct dlist * sysfs_get_driver_attributes ( struct sysfs_driver * driver )
{
2003-12-16 08:53:28 +03:00
if ( driver = = NULL ) {
errno = EINVAL ;
2003-10-21 12:19:14 +04:00
return NULL ;
2003-12-16 08:53:28 +03:00
}
2003-10-21 12:19:14 +04:00
2003-12-16 08:53:28 +03:00
if ( driver - > directory = = NULL ) {
if ( ( open_driver_dir ( driver ) ) = = 1 )
return NULL ;
}
if ( driver - > directory - > attributes = = NULL ) {
2004-01-15 09:21:38 +03:00
if ( ( sysfs_read_dir_attributes ( driver - > directory ) ) ! = 0 )
2003-12-16 08:53:28 +03:00
return NULL ;
}
2003-10-21 12:19:14 +04:00
return ( driver - > directory - > attributes ) ;
}
2004-01-15 09:21:38 +03:00
/**
* sysfs_refresh_driver_attributes : refreshes the driver ' s list of attributes
* @ driver : sysfs_driver whose attributes to refresh
*
* NOTE : Upon return , prior references to sysfs_attributes for this driver
* _may_ not be valid
*
* Returns list of attributes on success and NULL on failure
*/
struct dlist * sysfs_refresh_driver_attributes ( struct sysfs_driver * driver )
{
if ( driver = = NULL ) {
errno = EINVAL ;
return NULL ;
}
if ( driver - > directory = = NULL )
return ( sysfs_get_driver_attributes ( driver ) ) ;
if ( ( sysfs_refresh_dir_attributes ( driver - > directory ) ) ! = 0 ) {
dprintf ( " Error refreshing driver attributes \n " ) ;
return NULL ;
}
return ( driver - > directory - > attributes ) ;
}
2003-10-21 12:19:14 +04:00
/**
* sysfs_get_driver_attr : searches driver ' s attributes by name
* @ drv : driver to look through
* @ name : attribute name to get
* returns sysfs_attribute reference on success or NULL with error
*/
struct sysfs_attribute * sysfs_get_driver_attr ( struct sysfs_driver * drv ,
2004-03-12 11:57:30 +03:00
const char * name )
2003-10-21 12:19:14 +04:00
{
2003-12-16 08:53:28 +03:00
struct dlist * attrlist = NULL ;
2003-10-21 12:19:14 +04:00
2003-12-16 08:53:28 +03:00
if ( drv = = NULL ) {
2003-10-21 12:19:14 +04:00
errno = EINVAL ;
return NULL ;
}
2003-12-16 08:53:28 +03:00
attrlist = sysfs_get_driver_attributes ( drv ) ;
2004-03-12 11:57:30 +03:00
if ( attrlist = = NULL )
2004-01-15 09:21:38 +03:00
return NULL ;
2004-03-12 11:57:30 +03:00
return sysfs_get_directory_attribute ( drv - > directory , ( char * ) name ) ;
2003-10-21 12:19:14 +04:00
}
/**
* sysfs_get_driver_links : gets list of links from the given driver
* @ driver : sysfs_driver for which links list is required
* returns a dlist of links corresponding to the driver if present
* NULL otherwise
*/
struct dlist * sysfs_get_driver_links ( struct sysfs_driver * driver )
{
2003-12-16 08:53:28 +03:00
if ( driver = = NULL ) {
errno = EINVAL ;
2003-10-21 12:19:14 +04:00
return NULL ;
2003-12-16 08:53:28 +03:00
}
2004-03-12 11:57:30 +03:00
if ( driver - > directory = = NULL )
2003-12-16 08:53:28 +03:00
if ( ( open_driver_dir ( driver ) ) = = 1 )
return NULL ;
2004-03-12 11:57:30 +03:00
if ( driver - > directory - > links = = NULL )
2003-12-20 05:29:10 +03:00
if ( ( sysfs_read_dir_links ( driver - > directory ) ) ! = 0 )
2003-12-16 08:53:28 +03:00
return NULL ;
2004-03-12 11:57:30 +03:00
2003-10-21 12:19:14 +04:00
return ( driver - > directory - > links ) ;
}
2003-12-16 08:53:28 +03:00
/**
* sysfs_get_driver_devices : open up the list of devices this driver supports
* @ driver : sysfs_driver for which devices are needed
* Returns dlist of devices on SUCCESS or NULL with ERROR
*/
struct dlist * sysfs_get_driver_devices ( struct sysfs_driver * driver )
{
struct sysfs_link * curlink = NULL ;
struct sysfs_device * device = NULL ;
if ( driver = = NULL ) {
errno = EINVAL ;
return NULL ;
}
if ( driver - > devices ! = NULL )
return ( driver - > devices ) ;
2004-03-12 11:57:30 +03:00
if ( driver - > directory = = NULL | | driver - > directory - > links = = NULL ) {
struct dlist * list = NULL ;
list = sysfs_get_driver_links ( driver ) ;
2003-12-16 08:53:28 +03:00
}
2004-03-12 11:57:30 +03:00
2003-12-16 08:53:28 +03:00
if ( driver - > directory - > links ! = NULL ) {
dlist_for_each_data ( driver - > directory - > links , curlink ,
struct sysfs_link ) {
2003-12-20 05:29:10 +03:00
device = sysfs_open_device_path ( curlink - > target ) ;
2003-12-16 08:53:28 +03:00
if ( device = = NULL ) {
dprintf ( " Error opening device at %s \n " ,
curlink - > target ) ;
return NULL ;
}
if ( driver - > devices = = NULL )
driver - > devices = dlist_new_with_delete
( sizeof ( struct sysfs_device ) ,
sysfs_close_driver_device ) ;
2004-03-12 11:57:30 +03:00
dlist_unshift_sorted ( driver - > devices , device ,
sort_list ) ;
2003-12-16 08:53:28 +03:00
}
}
return ( driver - > devices ) ;
}
2004-01-15 09:21:38 +03:00
/**
* sysfs_refresh_driver_devices : Refreshes drivers list of devices
* @ driver : sysfs_driver whose devices list needs to be refreshed
*
* NOTE : Upon return from this function , prior sysfs_device references from
* this driver ' s list of devices _may_ not be valid
*
* Returns dlist of devices on success and NULL on failure
*/
struct dlist * sysfs_refresh_driver_devices ( struct sysfs_driver * driver )
{
if ( driver = = NULL ) {
errno = EINVAL ;
return NULL ;
}
if ( driver - > devices ! = NULL ) {
dlist_destroy ( driver - > devices ) ;
driver - > devices = NULL ;
}
if ( driver - > directory = = NULL )
return ( sysfs_get_driver_devices ( driver ) ) ;
if ( ( sysfs_refresh_dir_links ( driver - > directory ) ) ! = 0 ) {
dprintf ( " Error refreshing driver links \n " ) ;
return NULL ;
}
return ( sysfs_get_driver_devices ( driver ) ) ;
}
2003-12-16 08:53:28 +03:00
/**
* sysfs_get_driver_device : looks up a device from a list of driver ' s devices
* and returns its sysfs_device corresponding to it
* @ driver : sysfs_driver on which to search
* @ name : name of the device to search
* Returns a sysfs_device if found , NULL otherwise
*/
struct sysfs_device * sysfs_get_driver_device ( struct sysfs_driver * driver ,
2004-03-12 11:57:30 +03:00
const char * name )
2003-12-16 08:53:28 +03:00
{
struct sysfs_device * device = NULL ;
struct dlist * devlist = NULL ;
if ( driver = = NULL | | name = = NULL ) {
errno = EINVAL ;
return NULL ;
}
if ( driver - > devices = = NULL ) {
devlist = sysfs_get_driver_devices ( driver ) ;
if ( devlist = = NULL ) {
dprintf ( " Error getting driver devices \n " ) ;
return NULL ;
}
}
dlist_for_each_data ( driver - > devices , device , struct sysfs_device ) {
if ( ! ( strncmp ( device - > name , name , SYSFS_NAME_LEN ) ) )
return device ;
}
return NULL ;
}
2003-11-25 10:47:43 +03:00
/**
* get_driver_path : looks up the bus the driver is on and builds path to
* the driver .
* @ bus : bus on which to search
* @ drv : driver to look for
* @ path : buffer to return path to driver
* @ psize : size of " path "
* Returns 0 on success and - 1 on error
*/
2004-03-12 11:57:30 +03:00
static int get_driver_path ( const char * bus , const char * drv ,
char * path , size_t psize )
2003-11-25 10:47:43 +03:00
{
2004-03-12 11:57:30 +03:00
if ( bus = = NULL | | drv = = NULL | | path = = NULL | | psize = = 0 ) {
2003-11-25 10:47:43 +03:00
errno = EINVAL ;
return - 1 ;
}
if ( sysfs_get_mnt_path ( path , psize ) ! = 0 ) {
dprintf ( " Error getting sysfs mount path \n " ) ;
return - 1 ;
}
[PATCH] more Libsysfs updates
On Thu, Mar 11, 2004 at 02:36:23PM +0100, Kay Sievers wrote:
> On Thu, 2004-03-11 at 15:02, Ananth N Mavinakayanahalli wrote:
> > On Thu, Mar 11, 2004 at 02:04:36PM +0100, Kay Sievers wrote:
> > > On Thu, Mar 11, 2004 at 11:53:50AM +0500, Ananth N Mavinakayanahalli wrote:
> > >
> > > > +#define safestrcpy(to, from) strncpy(to, from, sizeof(to)-1)
> > > > +#define safestrcat(to, from) strncat(to, from, sizeof(to) - strlen(to)-1)
> > >
> > > These strings are not terminated with '\0' if from is longer than
> > > the sizeof to.
> >
> > Did not do it on purpose as the "to" elements are either calloc'd or memset to
> > '0' explicitly in the library. Thats the reason I mentioned "scaled down" :)
>
> Ahh, sounds good.
>
> > > > +#define safestrncpy(to, from, maxsize) \
> > > > +do { \
> > > > + to[maxsize-1] = '\0'; \
> > > > + strncpy(to, from, maxsize-1); \
> > > > +} while (0)
> > > > +
> > > > +#define safestrncat(to, from, maxsize) \
> > > > +do { \
> > > > + to[maxsize-1] = '\0'; \
> > > > + strncat(to, from, maxsize - strlen(to)-1); \
> > > > +} while (0)
> > >
> > > We all expect a similar behavior like strncat/strncpy according to the
> > > names, but these macros are limiting by the target size and do not limit
> > > the count of chars copied.
> > > This is confusing I think and suggest using a different name like
> > > 'safestrcopymax()' or something.
> >
> > Good point.. will make the change
>
> Nice. I've had these *n* names too and I forgot about the logic and only
> 10 days later I introduced a ugly bug cause I can't limit the count of
> copied chars :)
Inlined is the patch for this... applies on the earlier _BIG_ patch.
2004-03-12 11:57:36 +03:00
safestrcatmax ( path , " / " , psize ) ;
safestrcatmax ( path , SYSFS_BUS_NAME , psize ) ;
safestrcatmax ( path , " / " , psize ) ;
safestrcatmax ( path , bus , psize ) ;
safestrcatmax ( path , " / " , psize ) ;
safestrcatmax ( path , SYSFS_DRIVERS_NAME , psize ) ;
safestrcatmax ( path , " / " , psize ) ;
safestrcatmax ( path , drv , psize ) ;
2003-11-25 10:47:43 +03:00
return 0 ;
}
2003-10-21 12:19:14 +04:00
/**
2003-11-25 10:47:43 +03:00
* sysfs_open_driver_attr : read the user supplied driver attribute
* @ bus : bus on which to look
2003-10-21 12:19:14 +04:00
* @ drv : driver whose attribute has to be read
* @ attrib : Attribute to be read
2003-11-25 10:47:43 +03:00
* Returns struct sysfs_attribute on success and NULL on failure
*
* NOTE :
* A call to sysfs_close_attribute ( ) is required to close the
* attribute returned and to free memory
2003-10-21 12:19:14 +04:00
*/
2004-03-12 11:57:30 +03:00
struct sysfs_attribute * sysfs_open_driver_attr ( const char * bus ,
const char * drv , const char * attrib )
2003-10-21 12:19:14 +04:00
{
struct sysfs_attribute * attribute = NULL ;
2004-03-12 11:57:30 +03:00
char path [ SYSFS_PATH_MAX ] ;
2003-10-21 12:19:14 +04:00
2003-11-25 10:47:43 +03:00
if ( bus = = NULL | | drv = = NULL | | attrib = = NULL ) {
2003-10-21 12:19:14 +04:00
errno = EINVAL ;
2003-11-25 10:47:43 +03:00
return NULL ;
2003-10-21 12:19:14 +04:00
}
2003-12-20 05:29:10 +03:00
memset ( path , 0 , SYSFS_PATH_MAX ) ;
2003-11-25 10:47:43 +03:00
if ( ( get_driver_path ( bus , drv , path , SYSFS_PATH_MAX ) ) ! = 0 ) {
2003-10-21 12:19:14 +04:00
dprintf ( " Error getting to driver %s \n " , drv ) ;
2003-11-25 10:47:43 +03:00
return NULL ;
2003-10-21 12:19:14 +04:00
}
2004-03-12 11:57:30 +03:00
safestrcat ( path , " / " ) ;
safestrcat ( path , attrib ) ;
2003-10-21 12:19:14 +04:00
attribute = sysfs_open_attribute ( path ) ;
if ( attribute = = NULL ) {
dprintf ( " Error opening attribute %s for driver %s \n " ,
attrib , drv ) ;
2003-11-25 10:47:43 +03:00
return NULL ;
2003-10-21 12:19:14 +04:00
}
if ( ( sysfs_read_attribute ( attribute ) ) ! = 0 ) {
dprintf ( " Error reading attribute %s for driver %s \n " ,
attrib , drv ) ;
sysfs_close_attribute ( attribute ) ;
2003-11-25 10:47:43 +03:00
return NULL ;
2003-10-21 12:19:14 +04:00
}
2003-11-25 10:47:43 +03:00
return attribute ;
2003-10-21 12:19:14 +04:00
}
2003-12-20 05:29:10 +03:00
/**
* sysfs_open_driver : open driver by name , given its bus
* @ bus_name : Name of the bus
2004-03-12 11:57:30 +03:00
* @ drv_name : Name of the driver
2003-12-20 05:29:10 +03:00
* Returns the sysfs_driver reference on success and NULL on failure
*/
2004-03-12 11:57:30 +03:00
struct sysfs_driver * sysfs_open_driver ( const char * bus_name ,
const char * drv_name )
2003-12-20 05:29:10 +03:00
{
2004-03-12 11:57:30 +03:00
char path [ SYSFS_PATH_MAX ] ;
2003-12-20 05:29:10 +03:00
struct sysfs_driver * driver = NULL ;
if ( drv_name = = NULL | | bus_name = = NULL ) {
errno = EINVAL ;
return NULL ;
}
memset ( path , 0 , SYSFS_PATH_MAX ) ;
if ( ( get_driver_path ( bus_name , drv_name , path , SYSFS_PATH_MAX ) ) ! = 0 ) {
dprintf ( " Error getting to driver %s \n " , drv_name ) ;
return NULL ;
}
driver = sysfs_open_driver_path ( path ) ;
if ( driver = = NULL ) {
dprintf ( " Error opening driver at %s \n " , path ) ;
return NULL ;
}
return driver ;
}