kmod.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:10k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. kmod, the new module loader (replaces kerneld)
  3. Kirk Petersen
  4. Reorganized not to be a daemon by Adam Richter, with guidance
  5. from Greg Zornetzer.
  6. Modified to avoid chroot and file sharing problems.
  7. Mikael Pettersson
  8. Limit the concurrent number of kmod modprobes to catch loops from
  9. "modprobe needs a service that is in a module".
  10. Keith Owens <kaos@ocs.com.au> December 1999
  11. Unblock all signals when we exec a usermode process.
  12. Shuu Yamaguchi <shuu@wondernetworkresources.com> December 2000
  13. */
  14. #define __KERNEL_SYSCALLS__
  15. #include <linux/config.h>
  16. #include <linux/module.h>
  17. #include <linux/sched.h>
  18. #include <linux/unistd.h>
  19. #include <linux/kmod.h>
  20. #include <linux/smp_lock.h>
  21. #include <linux/completion.h>
  22. #include <asm/uaccess.h>
  23. extern int max_threads;
  24. static inline void
  25. use_init_fs_context(void)
  26. {
  27. struct fs_struct *our_fs, *init_fs;
  28. struct dentry *root, *pwd;
  29. struct vfsmount *rootmnt, *pwdmnt;
  30. /*
  31.  * Make modprobe's fs context be a copy of init's.
  32.  *
  33.  * We cannot use the user's fs context, because it
  34.  * may have a different root than init.
  35.  * Since init was created with CLONE_FS, we can grab
  36.  * its fs context from "init_task".
  37.  *
  38.  * The fs context has to be a copy. If it is shared
  39.  * with init, then any chdir() call in modprobe will
  40.  * also affect init and the other threads sharing
  41.  * init_task's fs context.
  42.  *
  43.  * We created the exec_modprobe thread without CLONE_FS,
  44.  * so we can update the fields in our fs context freely.
  45.  */
  46. init_fs = init_task.fs;
  47. read_lock(&init_fs->lock);
  48. rootmnt = mntget(init_fs->rootmnt);
  49. root = dget(init_fs->root);
  50. pwdmnt = mntget(init_fs->pwdmnt);
  51. pwd = dget(init_fs->pwd);
  52. read_unlock(&init_fs->lock);
  53. /* FIXME - unsafe ->fs access */
  54. our_fs = current->fs;
  55. our_fs->umask = init_fs->umask;
  56. set_fs_root(our_fs, rootmnt, root);
  57. set_fs_pwd(our_fs, pwdmnt, pwd);
  58. write_lock(&our_fs->lock);
  59. if (our_fs->altroot) {
  60. struct vfsmount *mnt = our_fs->altrootmnt;
  61. struct dentry *dentry = our_fs->altroot;
  62. our_fs->altrootmnt = NULL;
  63. our_fs->altroot = NULL;
  64. write_unlock(&our_fs->lock);
  65. dput(dentry);
  66. mntput(mnt);
  67. } else 
  68. write_unlock(&our_fs->lock);
  69. dput(root);
  70. mntput(rootmnt);
  71. dput(pwd);
  72. mntput(pwdmnt);
  73. }
  74. int exec_usermodehelper(char *program_path, char *argv[], char *envp[])
  75. {
  76. int i;
  77. struct task_struct *curtask = current;
  78. curtask->session = 1;
  79. curtask->pgrp = 1;
  80. use_init_fs_context();
  81. /* Prevent parent user process from sending signals to child.
  82.    Otherwise, if the modprobe program does not exist, it might
  83.    be possible to get a user defined signal handler to execute
  84.    as the super user right after the execve fails if you time
  85.    the signal just right.
  86. */
  87. spin_lock_irq(&curtask->sigmask_lock);
  88. sigemptyset(&curtask->blocked);
  89. flush_signals(curtask);
  90. flush_signal_handlers(curtask);
  91. recalc_sigpending(curtask);
  92. spin_unlock_irq(&curtask->sigmask_lock);
  93. for (i = 0; i < curtask->files->max_fds; i++ ) {
  94. if (curtask->files->fd[i]) close(i);
  95. }
  96. /* Drop the "current user" thing */
  97. {
  98. struct user_struct *user = curtask->user;
  99. curtask->user = INIT_USER;
  100. atomic_inc(&INIT_USER->__count);
  101. atomic_inc(&INIT_USER->processes);
  102. atomic_dec(&user->processes);
  103. free_uid(user);
  104. }
  105. /* Give kmod all effective privileges.. */
  106. curtask->euid = curtask->fsuid = 0;
  107. curtask->egid = curtask->fsgid = 0;
  108. cap_set_full(curtask->cap_effective);
  109. /* Allow execve args to be in kernel space. */
  110. set_fs(KERNEL_DS);
  111. /* Go, go, go... */
  112. if (execve(program_path, argv, envp) < 0)
  113. return -errno;
  114. return 0;
  115. }
  116. #ifdef CONFIG_KMOD
  117. /*
  118. modprobe_path is set via /proc/sys.
  119. */
  120. char modprobe_path[256] = "/sbin/modprobe";
  121. static int exec_modprobe(void * module_name)
  122. {
  123. static char * envp[] = { "HOME=/", "TERM=linux", "PATH=/sbin:/usr/sbin:/bin:/usr/bin", NULL };
  124. char *argv[] = { modprobe_path, "-s", "-k", "--", (char*)module_name, NULL };
  125. int ret;
  126. ret = exec_usermodehelper(modprobe_path, argv, envp);
  127. if (ret) {
  128. printk(KERN_ERR
  129.        "kmod: failed to exec %s -s -k %s, errno = %dn",
  130.        modprobe_path, (char*) module_name, errno);
  131. }
  132. return ret;
  133. }
  134. /**
  135.  * request_module - try to load a kernel module
  136.  * @module_name: Name of module
  137.  *
  138.  * Load a module using the user mode module loader. The function returns
  139.  * zero on success or a negative errno code on failure. Note that a
  140.  * successful module load does not mean the module did not then unload
  141.  * and exit on an error of its own. Callers must check that the service
  142.  * they requested is now available not blindly invoke it.
  143.  *
  144.  * If module auto-loading support is disabled then this function
  145.  * becomes a no-operation.
  146.  */
  147. int request_module(const char * module_name)
  148. {
  149. pid_t pid;
  150. int waitpid_result;
  151. sigset_t tmpsig;
  152. int i;
  153. static atomic_t kmod_concurrent = ATOMIC_INIT(0);
  154. #define MAX_KMOD_CONCURRENT 50 /* Completely arbitrary value - KAO */
  155. static int kmod_loop_msg;
  156. /* Don't allow request_module() before the root fs is mounted!  */
  157. if ( ! current->fs->root ) {
  158. printk(KERN_ERR "request_module[%s]: Root fs not mountedn",
  159. module_name);
  160. return -EPERM;
  161. }
  162. /* If modprobe needs a service that is in a module, we get a recursive
  163.  * loop.  Limit the number of running kmod threads to max_threads/2 or
  164.  * MAX_KMOD_CONCURRENT, whichever is the smaller.  A cleaner method
  165.  * would be to run the parents of this process, counting how many times
  166.  * kmod was invoked.  That would mean accessing the internals of the
  167.  * process tables to get the command line, proc_pid_cmdline is static
  168.  * and it is not worth changing the proc code just to handle this case. 
  169.  * KAO.
  170.  */
  171. i = max_threads/2;
  172. if (i > MAX_KMOD_CONCURRENT)
  173. i = MAX_KMOD_CONCURRENT;
  174. atomic_inc(&kmod_concurrent);
  175. if (atomic_read(&kmod_concurrent) > i) {
  176. if (kmod_loop_msg++ < 5)
  177. printk(KERN_ERR
  178.        "kmod: runaway modprobe loop assumed and stoppedn");
  179. atomic_dec(&kmod_concurrent);
  180. return -ENOMEM;
  181. }
  182. pid = kernel_thread(exec_modprobe, (void*) module_name, 0);
  183. if (pid < 0) {
  184. printk(KERN_ERR "request_module[%s]: fork failed, errno %dn", module_name, -pid);
  185. atomic_dec(&kmod_concurrent);
  186. return pid;
  187. }
  188. /* Block everything but SIGKILL/SIGSTOP */
  189. spin_lock_irq(&current->sigmask_lock);
  190. tmpsig = current->blocked;
  191. siginitsetinv(&current->blocked, sigmask(SIGKILL) | sigmask(SIGSTOP));
  192. recalc_sigpending(current);
  193. spin_unlock_irq(&current->sigmask_lock);
  194. waitpid_result = waitpid(pid, NULL, __WCLONE);
  195. atomic_dec(&kmod_concurrent);
  196. /* Allow signals again.. */
  197. spin_lock_irq(&current->sigmask_lock);
  198. current->blocked = tmpsig;
  199. recalc_sigpending(current);
  200. spin_unlock_irq(&current->sigmask_lock);
  201. if (waitpid_result != pid) {
  202. printk(KERN_ERR "request_module[%s]: waitpid(%d,...) failed, errno %dn",
  203.        module_name, pid, -waitpid_result);
  204. }
  205. return 0;
  206. }
  207. #endif /* CONFIG_KMOD */
  208. #ifdef CONFIG_HOTPLUG
  209. /*
  210. hotplug path is set via /proc/sys
  211. invoked by hotplug-aware bus drivers,
  212. with exec_usermodehelper and some thread-spawner
  213. argv [0] = hotplug_path;
  214. argv [1] = "usb", "scsi", "pci", "network", etc;
  215. ... plus optional type-specific parameters
  216. argv [n] = 0;
  217. envp [*] = HOME, PATH; optional type-specific parameters
  218. a hotplug bus should invoke this for device add/remove
  219. events.  the command is expected to load drivers when
  220. necessary, and may perform additional system setup.
  221. */
  222. char hotplug_path[256] = "/sbin/hotplug";
  223. EXPORT_SYMBOL(hotplug_path);
  224. #endif /* CONFIG_HOTPLUG */
  225. struct subprocess_info {
  226. struct completion *complete;
  227. char *path;
  228. char **argv;
  229. char **envp;
  230. pid_t retval;
  231. };
  232. /*
  233.  * This is the task which runs the usermode application
  234.  */
  235. static int ____call_usermodehelper(void *data)
  236. {
  237. struct subprocess_info *sub_info = data;
  238. int retval;
  239. retval = -EPERM;
  240. if (current->fs->root)
  241. retval = exec_usermodehelper(sub_info->path, sub_info->argv, sub_info->envp);
  242. /* Exec failed? */
  243. sub_info->retval = (pid_t)retval;
  244. do_exit(0);
  245. }
  246. /*
  247.  * This is run by keventd.
  248.  */
  249. static void __call_usermodehelper(void *data)
  250. {
  251. struct subprocess_info *sub_info = data;
  252. pid_t pid;
  253. /*
  254.  * CLONE_VFORK: wait until the usermode helper has execve'd successfully
  255.  * We need the data structures to stay around until that is done.
  256.  */
  257. pid = kernel_thread(____call_usermodehelper, sub_info, CLONE_VFORK | SIGCHLD);
  258. if (pid < 0)
  259. sub_info->retval = pid;
  260. complete(sub_info->complete);
  261. }
  262. /**
  263.  * call_usermodehelper - start a usermode application
  264.  * @path: pathname for the application
  265.  * @argv: null-terminated argument list
  266.  * @envp: null-terminated environment list
  267.  *
  268.  * Runs a user-space application.  The application is started asynchronously.  It
  269.  * runs as a child of keventd.  It runs with full root capabilities.  keventd silently
  270.  * reaps the child when it exits.
  271.  *
  272.  * Must be called from process context.  Returns zero on success, else a negative
  273.  * error code.
  274.  */
  275. int call_usermodehelper(char *path, char **argv, char **envp)
  276. {
  277. DECLARE_COMPLETION(work);
  278. struct subprocess_info sub_info = {
  279. complete: &work,
  280. path: path,
  281. argv: argv,
  282. envp: envp,
  283. retval: 0,
  284. };
  285. struct tq_struct tqs = {
  286. routine: __call_usermodehelper,
  287. data: &sub_info,
  288. };
  289. if (path[0] == '')
  290. goto out;
  291. if (current_is_keventd()) {
  292. /* We can't wait on keventd! */
  293. __call_usermodehelper(&sub_info);
  294. } else {
  295. schedule_task(&tqs);
  296. wait_for_completion(&work);
  297. }
  298. out:
  299. return sub_info.retval;
  300. }
  301. /*
  302.  * This is for the serialisation of device probe() functions
  303.  * against device open() functions
  304.  */
  305. static DECLARE_MUTEX(dev_probe_sem);
  306. void dev_probe_lock(void)
  307. {
  308. down(&dev_probe_sem);
  309. }
  310. void dev_probe_unlock(void)
  311. {
  312. up(&dev_probe_sem);
  313. }
  314. EXPORT_SYMBOL(exec_usermodehelper);
  315. EXPORT_SYMBOL(call_usermodehelper);
  316. #ifdef CONFIG_KMOD
  317. EXPORT_SYMBOL(request_module);
  318. #endif