1 #ifndef __LINUX_UMH_H__
2 #define __LINUX_UMH_H__
5 #include <linux/stddef.h>
6 #include <linux/errno.h>
7 #include <linux/compiler.h>
8 #include <linux/workqueue.h>
9 #include <linux/sysctl.h>
14 #define UMH_NO_WAIT 0x00 /* don't wait at all */
15 #define UMH_WAIT_EXEC 0x01 /* wait for the exec, but not the process */
16 #define UMH_WAIT_PROC 0x02 /* wait for the process to complete */
17 #define UMH_KILLABLE 0x04 /* wait for EXEC/PROC killable */
18 #define UMH_FREEZABLE 0x08 /* wait for EXEC/PROC freezable */
20 struct subprocess_info
{
21 struct work_struct work
;
22 struct completion
*complete
;
28 int (*init
)(struct subprocess_info
*info
, struct cred
*new);
29 void (*cleanup
)(struct subprocess_info
*info
);
34 call_usermodehelper(const char *path
, char **argv
, char **envp
, int wait
);
36 extern struct subprocess_info
*
37 call_usermodehelper_setup(const char *path
, char **argv
, char **envp
,
39 int (*init
)(struct subprocess_info
*info
, struct cred
*new),
40 void (*cleanup
)(struct subprocess_info
*), void *data
);
43 call_usermodehelper_exec(struct subprocess_info
*info
, int wait
);
45 enum umh_disable_depth
{
51 extern int __usermodehelper_disable(enum umh_disable_depth depth
);
52 extern void __usermodehelper_set_disable_depth(enum umh_disable_depth depth
);
54 static inline int usermodehelper_disable(void)
56 return __usermodehelper_disable(UMH_DISABLED
);
59 static inline void usermodehelper_enable(void)
61 __usermodehelper_set_disable_depth(UMH_ENABLED
);
64 extern int usermodehelper_read_trylock(void);
65 extern long usermodehelper_read_lock_wait(long timeout
);
66 extern void usermodehelper_read_unlock(void);
68 #endif /* __LINUX_UMH_H__ */