2008-08-27 19:11:58 +04:00
/*
* libudev - interface to udev device information
*
* Copyright ( C ) 2008 Kay Sievers < kay . sievers @ vrfy . org >
*
* 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 .
*
* 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/>.
*/
# ifndef _LIBUDEV_PRIVATE_H_
# define _LIBUDEV_PRIVATE_H_
2008-09-06 17:45:31 +04:00
# include "config.h"
# include <syslog.h>
2008-08-27 19:11:58 +04:00
# include "libudev.h"
2008-09-10 20:00:31 +04:00
# include "list.h"
2008-08-27 19:11:58 +04:00
# ifdef USE_LOG
2008-09-06 17:45:31 +04:00
# ifdef USE_DEBUG
# define dbg(udev, arg...) \
2008-08-27 19:11:58 +04:00
udev_log ( udev , LOG_DEBUG , __FILE__ , __LINE__ , __FUNCTION__ , # # arg )
2008-09-06 17:45:31 +04:00
# else
# define dbg(format, arg...) do { } while (0)
# endif /* USE_DEBUG */
2008-08-27 19:11:58 +04:00
2008-09-06 17:45:31 +04:00
# define info(udev, arg...) \
2008-08-27 19:11:58 +04:00
udev_log ( udev , LOG_INFO , __FILE__ , __LINE__ , __FUNCTION__ , # # arg )
2008-09-06 17:45:31 +04:00
# define err(udev, arg...) \
2008-08-27 19:11:58 +04:00
udev_log ( udev , LOG_ERR , __FILE__ , __LINE__ , __FUNCTION__ , # # arg )
2008-09-06 17:45:31 +04:00
# else
# define dbg(format, arg...) do { } while (0)
# define info(format, arg...) do { } while (0)
# define err(format, arg...) do { } while (0)
# endif
2008-08-27 19:11:58 +04:00
2008-09-06 17:45:31 +04:00
/* libudev */
2008-08-27 19:11:58 +04:00
void udev_log ( struct udev * udev ,
int priority , const char * file , int line , const char * fn ,
const char * format , . . . )
__attribute__ ( ( format ( printf , 6 , 7 ) ) ) ;
2008-08-29 01:05:01 +04:00
extern struct udev_device * device_init ( struct udev * udev ) ;
2008-09-06 17:45:31 +04:00
extern const char * udev_get_rules_path ( struct udev * udev ) ;
extern int udev_get_run ( struct udev * udev ) ;
2008-09-01 20:52:22 +04:00
/* libudev-device */
extern int device_set_devpath ( struct udev_device * udev_device , const char * devpath ) ;
extern int device_set_subsystem ( struct udev_device * udev_device , const char * subsystem ) ;
extern int device_set_devname ( struct udev_device * udev_device , const char * devname ) ;
extern int device_add_devlink ( struct udev_device * udev_device , const char * devlink ) ;
extern int device_add_property ( struct udev_device * udev_device , const char * property ) ;
2008-09-09 16:06:20 +04:00
extern int device_set_action ( struct udev_device * udev_device , const char * action ) ;
extern int device_set_driver ( struct udev_device * udev_device , const char * driver ) ;
extern const char * device_get_devpath_old ( struct udev_device * udev_device ) ;
extern int device_set_devpath_old ( struct udev_device * udev_device , const char * devpath_old ) ;
extern const char * device_get_physdevpath ( struct udev_device * udev_device ) ;
extern int device_set_physdevpath ( struct udev_device * udev_device , const char * physdevpath ) ;
extern int device_get_timeout ( struct udev_device * udev_device ) ;
extern int device_set_timeout ( struct udev_device * udev_device , int timeout ) ;
extern int device_set_devnum ( struct udev_device * udev_device , dev_t devnum ) ;
2008-09-09 16:37:36 +04:00
extern int device_set_seqnum ( struct udev_device * udev_device , unsigned long long int seqnum ) ;
2008-09-10 12:09:34 +04:00
extern int device_get_num_fake_partitions ( struct udev_device * udev_device ) ;
extern int device_set_num_fake_partitions ( struct udev_device * udev_device , int num ) ;
2008-09-10 16:17:36 +04:00
extern int device_get_devlink_priority ( struct udev_device * udev_device ) ;
extern int device_set_devlink_priority ( struct udev_device * udev_device , int prio ) ;
2008-09-10 12:09:34 +04:00
extern int device_get_ignore_remove ( struct udev_device * udev_device ) ;
extern int device_set_ignore_remove ( struct udev_device * udev_device , int ignore ) ;
2008-09-01 20:52:22 +04:00
2008-09-08 19:59:00 +04:00
/* udev_ctrl - daemon runtime setup */
struct udev_ctrl ;
extern struct udev_ctrl * udev_ctrl_new_from_socket ( struct udev * udev , const char * socket_path ) ;
extern int udev_ctrl_enable_receiving ( struct udev_ctrl * uctrl ) ;
extern struct udev_ctrl * udev_ctrl_ref ( struct udev_ctrl * uctrl ) ;
extern void udev_ctrl_unref ( struct udev_ctrl * uctrl ) ;
extern struct udev * udev_ctrl_get_udev ( struct udev_ctrl * uctrl ) ;
extern int udev_ctrl_get_fd ( struct udev_ctrl * uctrl ) ;
extern int udev_ctrl_send_set_log_level ( struct udev_ctrl * uctrl , int priority ) ;
extern int udev_ctrl_send_stop_exec_queue ( struct udev_ctrl * uctrl ) ;
extern int udev_ctrl_send_start_exec_queue ( struct udev_ctrl * uctrl ) ;
extern int udev_ctrl_send_reload_rules ( struct udev_ctrl * uctrl ) ;
extern int udev_ctrl_send_set_env ( struct udev_ctrl * uctrl , const char * key ) ;
extern int udev_ctrl_send_set_max_childs ( struct udev_ctrl * uctrl , int count ) ;
struct udev_ctrl_msg ;
extern struct udev_ctrl_msg * udev_ctrl_msg ( struct udev_ctrl * uctrl ) ;
extern struct udev_ctrl_msg * udev_ctrl_receive_msg ( struct udev_ctrl * uctrl ) ;
extern struct udev_ctrl_msg * udev_ctrl_msg_ref ( struct udev_ctrl_msg * ctrl_msg ) ;
extern void udev_ctrl_msg_unref ( struct udev_ctrl_msg * ctrl_msg ) ;
extern int udev_ctrl_get_set_log_level ( struct udev_ctrl_msg * ctrl_msg ) ;
extern int udev_ctrl_get_stop_exec_queue ( struct udev_ctrl_msg * ctrl_msg ) ;
extern int udev_ctrl_get_start_exec_queue ( struct udev_ctrl_msg * ctrl_msg ) ;
extern int udev_ctrl_get_reload_rules ( struct udev_ctrl_msg * ctrl_msg ) ;
extern const char * udev_ctrl_get_set_env ( struct udev_ctrl_msg * ctrl_msg ) ;
extern int udev_ctrl_get_set_max_childs ( struct udev_ctrl_msg * ctrl_msg ) ;
2008-09-01 20:52:22 +04:00
/* libudev-utils */
2008-09-10 20:00:31 +04:00
# define UTIL_PATH_SIZE 1024
2008-09-10 23:50:21 +04:00
# define UTIL_LINE_SIZE 2048
# define UTIL_NAME_SIZE 512
2008-09-10 20:00:31 +04:00
struct util_name_entry {
struct list_head node ;
char * name ;
int * i ;
} ;
2008-08-28 00:02:41 +04:00
extern ssize_t util_get_sys_subsystem ( struct udev * udev , const char * devpath , char * subsystem , size_t size ) ;
2008-09-09 20:14:54 +04:00
extern ssize_t util_get_sys_driver ( struct udev * udev , const char * devpath , char * driver , size_t size ) ;
2008-09-10 16:29:07 +04:00
extern int util_resolve_sys_link ( struct udev * udev , char * devpath , size_t size ) ;
2008-09-10 19:08:24 +04:00
extern struct util_name_entry * util_name_list_add ( struct udev * udev , struct list_head * name_list ,
const char * name , int sort ) ;
extern void util_name_list_cleanup ( struct udev * udev , struct list_head * name_list ) ;
extern int util_log_priority ( const char * priority ) ;
extern size_t util_path_encode ( char * s , size_t len ) ;
extern size_t util_path_decode ( char * s ) ;
extern void util_remove_trailing_chars ( char * path , char c ) ;
2008-09-10 20:00:31 +04:00
extern size_t util_strlcpy ( char * dst , const char * src , size_t size ) ;
extern size_t util_strlcat ( char * dst , const char * src , size_t size ) ;
2008-09-10 20:24:39 +04:00
extern int util_replace_chars ( char * str , const char * white ) ;
2008-08-27 19:11:58 +04:00
# endif