binfmt_script.c 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * linux/fs/binfmt_script.c
  3. *
  4. * Copyright (C) 1996 Martin von Löwis
  5. * original #!-checking implemented by tytso.
  6. */
  7. #include <linux/module.h>
  8. #include <linux/string.h>
  9. #include <linux/stat.h>
  10. #include <linux/slab.h>
  11. #include <linux/binfmts.h>
  12. #include <linux/init.h>
  13. #include <linux/file.h>
  14. #include <linux/err.h>
  15. #include <linux/fs.h>
  16. static int load_script(struct linux_binprm *bprm,struct pt_regs *regs)
  17. {
  18. char *cp, *i_name, *i_arg;
  19. struct file *file;
  20. char interp[BINPRM_BUF_SIZE];
  21. int retval;
  22. if ((bprm->buf[0] != '#') || (bprm->buf[1] != '!') || (bprm->sh_bang))
  23. return -ENOEXEC;
  24. /*
  25. * This section does the #! interpretation.
  26. * Sorta complicated, but hopefully it will work. -TYT
  27. */
  28. bprm->sh_bang++;
  29. allow_write_access(bprm->file);
  30. fput(bprm->file);
  31. bprm->file = NULL;
  32. bprm->buf[BINPRM_BUF_SIZE - 1] = '\0';
  33. if ((cp = strchr(bprm->buf, '\n')) == NULL)
  34. cp = bprm->buf+BINPRM_BUF_SIZE-1;
  35. *cp = '\0';
  36. while (cp > bprm->buf) {
  37. cp--;
  38. if ((*cp == ' ') || (*cp == '\t'))
  39. *cp = '\0';
  40. else
  41. break;
  42. }
  43. for (cp = bprm->buf+2; (*cp == ' ') || (*cp == '\t'); cp++);
  44. if (*cp == '\0')
  45. return -ENOEXEC; /* No interpreter name found */
  46. i_name = cp;
  47. i_arg = NULL;
  48. for ( ; *cp && (*cp != ' ') && (*cp != '\t'); cp++)
  49. /* nothing */ ;
  50. while ((*cp == ' ') || (*cp == '\t'))
  51. *cp++ = '\0';
  52. if (*cp)
  53. i_arg = cp;
  54. strcpy (interp, i_name);
  55. /*
  56. * OK, we've parsed out the interpreter name and
  57. * (optional) argument.
  58. * Splice in (1) the interpreter's name for argv[0]
  59. * (2) (optional) argument to interpreter
  60. * (3) filename of shell script (replace argv[0])
  61. *
  62. * This is done in reverse order, because of how the
  63. * user environment and arguments are stored.
  64. */
  65. remove_arg_zero(bprm);
  66. retval = copy_strings_kernel(1, &bprm->interp, bprm);
  67. if (retval < 0) return retval;
  68. bprm->argc++;
  69. if (i_arg) {
  70. retval = copy_strings_kernel(1, &i_arg, bprm);
  71. if (retval < 0) return retval;
  72. bprm->argc++;
  73. }
  74. retval = copy_strings_kernel(1, &i_name, bprm);
  75. if (retval) return retval;
  76. bprm->argc++;
  77. bprm->interp = interp;
  78. /*
  79. * OK, now restart the process with the interpreter's dentry.
  80. */
  81. file = open_exec(interp);
  82. if (IS_ERR(file))
  83. return PTR_ERR(file);
  84. bprm->file = file;
  85. retval = prepare_binprm(bprm);
  86. if (retval < 0)
  87. return retval;
  88. return search_binary_handler(bprm,regs);
  89. }
  90. static struct linux_binfmt script_format = {
  91. .module = THIS_MODULE,
  92. .load_binary = load_script,
  93. };
  94. static int __init init_script_binfmt(void)
  95. {
  96. return register_binfmt(&script_format);
  97. }
  98. static void __exit exit_script_binfmt(void)
  99. {
  100. unregister_binfmt(&script_format);
  101. }
  102. core_initcall(init_script_binfmt);
  103. module_exit(exit_script_binfmt);
  104. MODULE_LICENSE("GPL");