Blame view

include/linux/kmod.h 3.65 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  #ifndef __LINUX_KMOD_H__
  #define __LINUX_KMOD_H__
  
  /*
   *	include/linux/kmod.h
   *
   *      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, write to the Free Software
   *      Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   */
ac331d158   KOSAKI Motohiro   call_usermodehelp...
21
  #include <linux/gfp.h>
7888e7ff4   David Howells   [PATCH] Keys: Pas...
22
  #include <linux/stddef.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
23
24
  #include <linux/errno.h>
  #include <linux/compiler.h>
a06a4dc3a   Neil Horman   kmod: add init fu...
25
  #include <linux/workqueue.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
26
27
  
  #define KMOD_PATH_LEN 256
a1ef5adb4   Johannes Berg   remove CONFIG_KMO...
28
  #ifdef CONFIG_MODULES
5ed109103   Dave Young   sysctl extern cle...
29
  extern char modprobe_path[]; /* for sysctl */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
30
31
  /* modprobe exit status on success, -ve on error.  Return value
   * usually useless though. */
acae05156   Arjan van de Ven   module: create a ...
32
33
34
35
36
  extern int __request_module(bool wait, const char *name, ...) \
  	__attribute__((format(printf, 2, 3)));
  #define request_module(mod...) __request_module(true, mod)
  #define request_module_nowait(mod...) __request_module(false, mod)
  #define try_then_request_module(x, mod...) \
97c18e2c7   Herbert Xu   module: try_then_...
37
  	((x) ?: (__request_module(true, mod), (x)))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
38
  #else
acae05156   Arjan van de Ven   module: create a ...
39
40
  static inline int request_module(const char *name, ...) { return -ENOSYS; }
  static inline int request_module_nowait(const char *name, ...) { return -ENOSYS; }
df648c9fb   Johannes Berg   rework try_then_r...
41
  #define try_then_request_module(x, mod...) (x)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
  #endif
7888e7ff4   David Howells   [PATCH] Keys: Pas...
43
44
  
  struct key;
0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
45
  struct file;
a06a4dc3a   Neil Horman   kmod: add init fu...
46
47
48
49
50
51
52
53
54
55
  
  enum umh_wait {
  	UMH_NO_WAIT = -1,	/* don't wait at all */
  	UMH_WAIT_EXEC = 0,	/* wait for the exec, but not the process */
  	UMH_WAIT_PROC = 1,	/* wait for the process to complete */
  };
  
  struct subprocess_info {
  	struct work_struct work;
  	struct completion *complete;
a06a4dc3a   Neil Horman   kmod: add init fu...
56
57
58
59
60
  	char *path;
  	char **argv;
  	char **envp;
  	enum umh_wait wait;
  	int retval;
a06a4dc3a   Neil Horman   kmod: add init fu...
61
62
63
64
  	int (*init)(struct subprocess_info *info);
  	void (*cleanup)(struct subprocess_info *info);
  	void *data;
  };
0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
65
66
  
  /* Allocate a subprocess_info structure */
ac331d158   KOSAKI Motohiro   call_usermodehelp...
67
68
  struct subprocess_info *call_usermodehelper_setup(char *path, char **argv,
  						  char **envp, gfp_t gfp_mask);
0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
69
70
  
  /* Set various pieces of state into the subprocess_info structure */
a06a4dc3a   Neil Horman   kmod: add init fu...
71
72
73
74
  void call_usermodehelper_setfns(struct subprocess_info *info,
  		    int (*init)(struct subprocess_info *info),
  		    void (*cleanup)(struct subprocess_info *info),
  		    void *data);
86313c488   Jeremy Fitzhardinge   usermodehelper: T...
75

0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
76
  /* Actually execute the sub-process */
86313c488   Jeremy Fitzhardinge   usermodehelper: T...
77
  int call_usermodehelper_exec(struct subprocess_info *info, enum umh_wait wait);
0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
78
79
80
81
  
  /* Free the subprocess_info. This is only needed if you're not going
     to call call_usermodehelper_exec */
  void call_usermodehelper_freeinfo(struct subprocess_info *info);
7888e7ff4   David Howells   [PATCH] Keys: Pas...
82
83
  
  static inline int
a06a4dc3a   Neil Horman   kmod: add init fu...
84
85
86
87
  call_usermodehelper_fns(char *path, char **argv, char **envp,
  			enum umh_wait wait,
  			int (*init)(struct subprocess_info *info),
  			void (*cleanup)(struct subprocess_info *), void *data)
7888e7ff4   David Howells   [PATCH] Keys: Pas...
88
  {
0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
89
  	struct subprocess_info *info;
ac331d158   KOSAKI Motohiro   call_usermodehelp...
90
  	gfp_t gfp_mask = (wait == UMH_NO_WAIT) ? GFP_ATOMIC : GFP_KERNEL;
0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
91

ac331d158   KOSAKI Motohiro   call_usermodehelp...
92
  	info = call_usermodehelper_setup(path, argv, envp, gfp_mask);
a06a4dc3a   Neil Horman   kmod: add init fu...
93

0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
94
95
  	if (info == NULL)
  		return -ENOMEM;
a06a4dc3a   Neil Horman   kmod: add init fu...
96
97
  
  	call_usermodehelper_setfns(info, init, cleanup, data);
0ab4dc922   Jeremy Fitzhardinge   usermodehelper: s...
98
99
100
101
  	return call_usermodehelper_exec(info, wait);
  }
  
  static inline int
a06a4dc3a   Neil Horman   kmod: add init fu...
102
103
104
105
106
  call_usermodehelper(char *path, char **argv, char **envp, enum umh_wait wait)
  {
  	return call_usermodehelper_fns(path, argv, envp, wait,
  				       NULL, NULL, NULL);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
  extern void usermodehelper_init(void);
1bfcf1304   Rafael J. Wysocki   pm: rework disabl...
108
109
  extern int usermodehelper_disable(void);
  extern void usermodehelper_enable(void);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
110
  #endif /* __LINUX_KMOD_H__ */