2003-07-17 12:24:51 +04:00
/*
* namedev . h
*
* Userspace devfs
*
* Copyright ( C ) 2003 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 .
*
* 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 , write to the Free Software Foundation , Inc . ,
* 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*
*/
# ifndef NAMEDEV_H
# define NAMEDEV_H
2003-08-06 10:57:23 +04:00
# include "udev.h"
2003-07-24 02:56:56 +04:00
# include "list.h"
2003-07-19 16:06:55 +04:00
struct sysfs_class_device ;
2003-07-17 12:24:51 +04:00
2003-07-24 02:56:56 +04:00
enum config_type {
KERNEL_NAME = 0 , /* must be 0 to let memset() default to this value */
LABEL = 1 ,
NUMBER = 2 ,
TOPOLOGY = 3 ,
REPLACE = 4 ,
2003-10-15 10:32:17 +04:00
CALLOUT = 5 ,
2003-07-24 02:56:56 +04:00
} ;
# define BUS_SIZE 30
# define FILE_SIZE 50
# define VALUE_SIZE 100
# define ID_SIZE 50
# define PLACE_SIZE 50
2003-12-03 05:38:30 +03:00
# define TYPE_LABEL "LABEL"
# define TYPE_NUMBER "NUMBER"
# define TYPE_TOPOLOGY "TOPOLOGY"
# define TYPE_REPLACE "REPLACE"
# define TYPE_CALLOUT "CALLOUT"
2003-12-17 10:36:19 +03:00
# define FIELD_BUS "BUS"
# define FIELD_ID "ID"
# define FIELD_SYSFS "SYSFS_"
# define FIELD_PLACE "PLACE"
# define FIELD_PROGRAM "PROGRAM"
# define FIELD_KERNEL "KERNEL"
# define FIELD_NAME "NAME"
# define FIELD_SYMLINK "SYMLINK"
2003-12-03 05:38:30 +03:00
# define CALLOUT_MAXARG 8
2003-12-23 09:31:35 +03:00
# define MAX_SYSFS_PAIRS 5
struct sysfs_pair {
char file [ FILE_SIZE ] ;
char value [ VALUE_SIZE ] ;
} ;
2003-07-24 02:56:56 +04:00
struct config_device {
struct list_head node ;
enum config_type type ;
char bus [ BUS_SIZE ] ;
char id [ ID_SIZE ] ;
char place [ PLACE_SIZE ] ;
char kernel_name [ NAME_SIZE ] ;
2003-10-15 10:32:17 +04:00
char exec_program [ FILE_SIZE ] ;
2003-12-04 05:33:58 +03:00
char name [ NAME_SIZE ] ;
2003-12-07 20:12:07 +03:00
char symlink [ NAME_SIZE ] ;
2003-12-23 09:31:35 +03:00
struct sysfs_pair sysfs_pair [ MAX_SYSFS_PAIRS ] ;
2003-12-04 05:33:58 +03:00
} ;
struct perm_device {
struct list_head node ;
2003-11-25 09:27:17 +03:00
2003-10-22 09:28:32 +04:00
char name [ NAME_SIZE ] ;
char owner [ OWNER_SIZE ] ;
char group [ GROUP_SIZE ] ;
mode_t mode ;
2003-07-24 02:56:56 +04:00
} ;
2003-12-03 05:38:30 +03:00
extern struct list_head config_device_list ;
2003-12-04 05:33:58 +03:00
extern struct list_head perm_device_list ;
2003-07-24 02:56:56 +04:00
2003-07-17 12:24:51 +04:00
extern int namedev_init ( void ) ;
2003-10-22 09:28:32 +04:00
extern int namedev_name_device ( struct sysfs_class_device * class_dev , struct udevice * dev ) ;
2003-12-03 05:38:30 +03:00
extern int namedev_init_permissions ( void ) ;
2003-12-03 12:08:46 +03:00
extern int namedev_init_rules ( void ) ;
2003-12-03 05:38:30 +03:00
2003-12-04 05:33:58 +03:00
extern int add_perm_dev ( struct perm_device * new_dev ) ;
2003-12-03 05:38:30 +03:00
extern void dump_config_dev ( struct config_device * dev ) ;
extern void dump_config_dev_list ( void ) ;
2003-12-04 05:33:58 +03:00
extern void dump_perm_dev ( struct perm_device * dev ) ;
extern void dump_perm_dev_list ( void ) ;
2003-07-17 12:24:51 +04:00
2003-12-03 12:08:46 +03:00
extern int get_pair ( char * * orig_string , char * * left , char * * right ) ;
2003-07-17 12:24:51 +04:00
# endif