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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/binfmt_em86.c
  3.  *
  4.  *  Based on linux/fs/binfmt_script.c
  5.  *  Copyright (C) 1996  Martin von L鰓is
  6.  *  original #!-checking implemented by tytso.
  7.  *
  8.  *  em86 changes Copyright (C) 1997  Jim Paradis
  9.  */
  10. #include <linux/module.h>
  11. #include <linux/string.h>
  12. #include <linux/stat.h>
  13. #include <linux/slab.h>
  14. #include <linux/locks.h>
  15. #include <linux/smp_lock.h>
  16. #include <linux/binfmts.h>
  17. #include <linux/elf.h>
  18. #include <linux/init.h>
  19. #include <linux/file.h>
  20. #define EM86_INTERP "/usr/bin/em86"
  21. #define EM86_I_NAME "em86"
  22. static int load_em86(struct linux_binprm *bprm,struct pt_regs *regs)
  23. {
  24. char *interp, *i_name, *i_arg;
  25. struct file * file;
  26. int retval;
  27. struct elfhdr elf_ex;
  28. /* Make sure this is a Linux/Intel ELF executable... */
  29. elf_ex = *((struct elfhdr *)bprm->buf);
  30. if (memcmp(elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
  31. return  -ENOEXEC;
  32. /* First of all, some simple consistency checks */
  33. if ((elf_ex.e_type != ET_EXEC && elf_ex.e_type != ET_DYN) ||
  34. (!((elf_ex.e_machine == EM_386) || (elf_ex.e_machine == EM_486))) ||
  35. (!bprm->file->f_op || !bprm->file->f_op->mmap)) {
  36. return -ENOEXEC;
  37. }
  38. bprm->sh_bang++; /* Well, the bang-shell is implicit... */
  39. allow_write_access(bprm->file);
  40. fput(bprm->file);
  41. bprm->file = NULL;
  42. /* Unlike in the script case, we don't have to do any hairy
  43.  * parsing to find our interpreter... it's hardcoded!
  44.  */
  45. interp = EM86_INTERP;
  46. i_name = EM86_I_NAME;
  47. i_arg = NULL; /* We reserve the right to add an arg later */
  48. /*
  49.  * Splice in (1) the interpreter's name for argv[0]
  50.  *           (2) (optional) argument to interpreter
  51.  *           (3) filename of emulated file (replace argv[0])
  52.  *
  53.  * This is done in reverse order, because of how the
  54.  * user environment and arguments are stored.
  55.  */
  56. remove_arg_zero(bprm);
  57. retval = copy_strings_kernel(1, &bprm->filename, bprm);
  58. if (retval < 0) return retval; 
  59. bprm->argc++;
  60. if (i_arg) {
  61. retval = copy_strings_kernel(1, &i_arg, bprm);
  62. if (retval < 0) return retval; 
  63. bprm->argc++;
  64. }
  65. retval = copy_strings_kernel(1, &i_name, bprm);
  66. if (retval < 0) return retval;
  67. bprm->argc++;
  68. /*
  69.  * OK, now restart the process with the interpreter's inode.
  70.  * Note that we use open_exec() as the name is now in kernel
  71.  * space, and we don't need to copy it.
  72.  */
  73. file = open_exec(interp);
  74. if (IS_ERR(file))
  75. return PTR_ERR(file);
  76. bprm->file = file;
  77. retval = prepare_binprm(bprm);
  78. if (retval < 0)
  79. return retval;
  80. return search_binary_handler(bprm, regs);
  81. }
  82. struct linux_binfmt em86_format = {
  83. NULL, THIS_MODULE, load_em86, NULL, NULL, 0
  84. };
  85. static int __init init_em86_binfmt(void)
  86. {
  87. return register_binfmt(&em86_format);
  88. }
  89. static void __exit exit_em86_binfmt(void)
  90. {
  91. unregister_binfmt(&em86_format);
  92. }
  93. module_init(init_em86_binfmt)
  94. module_exit(exit_em86_binfmt)