Import 2.3.12pre9
[davej-history.git] / fs / binfmt_em86.c
blob0a499e7d0ea751b22b6d4181805ac796695e9ef3
1 /*
2 * linux/fs/binfmt_em86.c
4 * Based on linux/fs/binfmt_script.c
5 * Copyright (C) 1996 Martin von Löwis
6 * original #!-checking implemented by tytso.
8 * em86 changes Copyright (C) 1997 Jim Paradis
9 */
11 #include <linux/module.h>
12 #include <linux/string.h>
13 #include <linux/stat.h>
14 #include <linux/malloc.h>
15 #include <linux/binfmts.h>
16 #include <linux/elf.h>
17 #include <linux/init.h>
20 #define EM86_INTERP "/usr/bin/em86"
21 #define EM86_I_NAME "em86"
23 static int do_load_em86(struct linux_binprm *bprm,struct pt_regs *regs)
25 char *interp, *i_name, *i_arg;
26 struct dentry * dentry;
27 int retval;
28 struct elfhdr elf_ex;
30 /* Make sure this is a Linux/Intel ELF executable... */
31 elf_ex = *((struct elfhdr *)bprm->buf);
33 if (elf_ex.e_ident[0] != 0x7f ||
34 strncmp(&elf_ex.e_ident[1], "ELF",3) != 0) {
35 return -ENOEXEC;
39 /* First of all, some simple consistency checks */
40 if ((elf_ex.e_type != ET_EXEC &&
41 elf_ex.e_type != ET_DYN) ||
42 (!((elf_ex.e_machine == EM_386) || (elf_ex.e_machine == EM_486))) ||
43 (!bprm->dentry->d_inode->i_op || !bprm->dentry->d_inode->i_op->default_file_ops ||
44 !bprm->dentry->d_inode->i_op->default_file_ops->mmap)){
45 return -ENOEXEC;
48 bprm->sh_bang++; /* Well, the bang-shell is implicit... */
49 dput(bprm->dentry);
50 bprm->dentry = NULL;
52 /* Unlike in the script case, we don't have to do any hairy
53 * parsing to find our interpreter... it's hardcoded!
55 interp = EM86_INTERP;
56 i_name = EM86_I_NAME;
57 i_arg = NULL; /* We reserve the right to add an arg later */
60 * Splice in (1) the interpreter's name for argv[0]
61 * (2) (optional) argument to interpreter
62 * (3) filename of emulated file (replace argv[0])
64 * This is done in reverse order, because of how the
65 * user environment and arguments are stored.
67 remove_arg_zero(bprm);
68 retval = copy_strings_kernel(1, &bprm->filename, bprm);
69 if (retval < 0) return retval;
70 bprm->argc++;
71 if (i_arg) {
72 retval = copy_strings_kernel(1, &i_arg, bprm);
73 if (retval < 0) return retval;
74 bprm->argc++;
76 retval = copy_strings_kernel(1, &i_name, bprm);
77 if (retval < 0) return retval;
78 bprm->argc++;
81 * OK, now restart the process with the interpreter's inode.
82 * Note that we use open_namei() as the name is now in kernel
83 * space, and we don't need to copy it.
85 dentry = open_namei(interp, 0, 0);
86 if (IS_ERR(dentry))
87 return PTR_ERR(dentry);
89 bprm->dentry = dentry;
91 retval = prepare_binprm(bprm);
92 if (retval < 0)
93 return retval;
95 return search_binary_handler(bprm, regs);
98 static int load_em86(struct linux_binprm *bprm,struct pt_regs *regs)
100 int retval;
101 MOD_INC_USE_COUNT;
102 retval = do_load_em86(bprm,regs);
103 MOD_DEC_USE_COUNT;
104 return retval;
107 struct linux_binfmt em86_format = {
108 NULL,
109 #ifndef MODULE
110 NULL,
111 #else
112 &__this_module,
113 #endif
114 load_em86, NULL, NULL, 0
117 int __init init_em86_binfmt(void)
119 return register_binfmt(&em86_format);
122 #ifdef MODULE
123 int init_module(void)
125 return init_em86_binfmt();
128 void cleanup_module( void) {
129 unregister_binfmt(&em86_format);
131 #endif