2005-04-27 07:59:47 +04:00
/*
* Copyright ( C ) 2003 Greg Kroah - Hartman < greg @ kroah . com >
2010-04-12 17:51:16 +04:00
* Copyright ( C ) 2003 - 2010 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
# ifndef _UDEV_H_
# define _UDEV_H_
2005-04-27 07:59:47 +04:00
2005-02-09 06:37:32 +03:00
# include <sys/types.h>
2003-12-02 11:26:46 +03:00
# include <sys/param.h>
2009-09-05 11:48:23 +04:00
# include <signal.h>
2006-01-09 23:18:00 +03:00
2009-06-08 23:36:06 +04:00
# include "libudev.h"
# include "libudev-private.h"
2005-04-27 07:59:47 +04:00
2011-04-20 03:53:03 +04:00
# define UDEV_EVENT_TIMEOUT_SEC 120
2005-02-09 10:43:18 +03:00
2009-06-17 04:25:07 +04:00
# define UDEV_CTRL_SOCK_PATH "@ / org / kernel / udev / udevd"
2008-09-08 19:59:00 +04:00
2008-10-16 19:16:58 +04:00
struct udev_event {
struct udev * udev ;
struct udev_device * dev ;
struct udev_device * dev_parent ;
2010-04-12 17:51:16 +04:00
struct udev_device * dev_db ;
2008-10-23 04:57:08 +04:00
char * name ;
2008-10-23 04:34:22 +04:00
char * tmp_node ;
char * program_result ;
2008-10-16 19:16:58 +04:00
mode_t mode ;
2008-10-23 02:13:59 +04:00
uid_t uid ;
gid_t gid ;
2008-10-16 19:16:58 +04:00
struct udev_list_node run_list ;
2010-05-28 14:07:27 +04:00
int exec_delay ;
2011-04-20 03:53:03 +04:00
unsigned long long birth_usec ;
unsigned long long timeout_usec ;
int fd_signal ;
bool sigterm ;
2010-07-07 13:35:40 +04:00
bool inotify_watch ;
bool inotify_watch_final ;
2010-05-20 19:09:04 +04:00
bool group_final ;
bool owner_final ;
bool mode_final ;
bool name_final ;
bool devlink_final ;
bool run_final ;
2008-10-16 19:16:58 +04:00
} ;
2009-02-11 20:38:56 +03:00
struct udev_watch {
struct udev_list_node node ;
int handle ;
char * name ;
} ;
2008-10-18 16:33:37 +04:00
/* udev-rules.c */
2008-10-18 21:19:56 +04:00
struct udev_rules ;
2009-04-26 15:59:39 +04:00
struct udev_rules * udev_rules_new ( struct udev * udev , int resolve_names ) ;
void udev_rules_unref ( struct udev_rules * rules ) ;
2011-04-20 03:53:03 +04:00
int udev_rules_apply_to_event ( struct udev_rules * rules , struct udev_event * event , const sigset_t * sigmask ) ;
2010-05-20 19:09:04 +04:00
void udev_rules_apply_static_dev_perms ( struct udev_rules * rules ) ;
2008-10-18 21:19:56 +04:00
/* udev-event.c */
2009-04-26 15:59:39 +04:00
struct udev_event * udev_event_new ( struct udev_device * dev ) ;
void udev_event_unref ( struct udev_event * event ) ;
2009-05-20 19:57:52 +04:00
size_t udev_event_apply_format ( struct udev_event * event , const char * src , char * dest , size_t size ) ;
2009-04-26 15:59:39 +04:00
int udev_event_apply_subsys_kernel ( struct udev_event * event , const char * string ,
char * result , size_t maxsize , int read_value ) ;
2011-04-20 03:53:03 +04:00
int udev_event_spawn ( struct udev_event * event ,
const char * cmd , char * * envp , const sigset_t * sigmask ,
char * result , size_t ressize ) ;
int udev_event_execute_rules ( struct udev_event * event , struct udev_rules * rules , const sigset_t * sigset ) ;
int udev_event_execute_run ( struct udev_event * event , const sigset_t * sigset ) ;
2008-10-18 16:33:37 +04:00
2009-02-11 20:38:56 +03:00
/* udev-watch.c */
2009-06-04 03:44:04 +04:00
int udev_watch_init ( struct udev * udev ) ;
2009-04-26 15:59:39 +04:00
void udev_watch_restore ( struct udev * udev ) ;
void udev_watch_begin ( struct udev * udev , struct udev_device * dev ) ;
void udev_watch_end ( struct udev * udev , struct udev_device * dev ) ;
struct udev_device * udev_watch_lookup ( struct udev * udev , int wd ) ;
2009-02-11 20:38:56 +03:00
2008-10-16 19:16:58 +04:00
/* udev-node.c */
2010-05-03 20:08:51 +04:00
int udev_node_mknod ( struct udev_device * dev , const char * file , mode_t mode , uid_t uid , gid_t gid ) ;
2009-04-26 15:59:39 +04:00
int udev_node_add ( struct udev_device * dev , mode_t mode , uid_t uid , gid_t gid ) ;
int udev_node_remove ( struct udev_device * dev ) ;
void udev_node_update_old_links ( struct udev_device * dev , struct udev_device * dev_old ) ;
2008-10-16 19:16:58 +04:00
2008-09-04 01:38:32 +04:00
/* udevadm commands */
2009-04-26 15:59:39 +04:00
int udevadm_monitor ( struct udev * udev , int argc , char * argv [ ] ) ;
int udevadm_info ( struct udev * udev , int argc , char * argv [ ] ) ;
int udevadm_control ( struct udev * udev , int argc , char * argv [ ] ) ;
int udevadm_trigger ( struct udev * udev , int argc , char * argv [ ] ) ;
int udevadm_settle ( struct udev * udev , int argc , char * argv [ ] ) ;
int udevadm_test ( struct udev * udev , int argc , char * argv [ ] ) ;
2005-04-27 07:59:47 +04:00
# endif