Merge tag 'for-5.8/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device...
[linux/fpc-iii.git] / fs / binfmt_em86.c
blob06b9b9fddf7083720b03b117fcbf142461c6940e
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * linux/fs/binfmt_em86.c
5 * Based on linux/fs/binfmt_script.c
6 * Copyright (C) 1996 Martin von Löwis
7 * original #!-checking implemented by tytso.
9 * em86 changes Copyright (C) 1997 Jim Paradis
12 #include <linux/module.h>
13 #include <linux/string.h>
14 #include <linux/stat.h>
15 #include <linux/binfmts.h>
16 #include <linux/elf.h>
17 #include <linux/init.h>
18 #include <linux/fs.h>
19 #include <linux/file.h>
20 #include <linux/errno.h>
23 #define EM86_INTERP "/usr/bin/em86"
24 #define EM86_I_NAME "em86"
26 static int load_em86(struct linux_binprm *bprm)
28 const char *i_name, *i_arg;
29 char *interp;
30 struct file * file;
31 int retval;
32 struct elfhdr elf_ex;
34 /* Make sure this is a Linux/Intel ELF executable... */
35 elf_ex = *((struct elfhdr *)bprm->buf);
37 if (memcmp(elf_ex.e_ident, ELFMAG, SELFMAG) != 0)
38 return -ENOEXEC;
40 /* First of all, some simple consistency checks */
41 if ((elf_ex.e_type != ET_EXEC && elf_ex.e_type != ET_DYN) ||
42 (!((elf_ex.e_machine == EM_386) || (elf_ex.e_machine == EM_486))) ||
43 !bprm->file->f_op->mmap) {
44 return -ENOEXEC;
47 /* Need to be able to load the file after exec */
48 if (bprm->interp_flags & BINPRM_FLAGS_PATH_INACCESSIBLE)
49 return -ENOENT;
51 /* Unlike in the script case, we don't have to do any hairy
52 * parsing to find our interpreter... it's hardcoded!
54 interp = EM86_INTERP;
55 i_name = EM86_I_NAME;
56 i_arg = NULL; /* We reserve the right to add an arg later */
59 * Splice in (1) the interpreter's name for argv[0]
60 * (2) (optional) argument to interpreter
61 * (3) filename of emulated file (replace argv[0])
63 * This is done in reverse order, because of how the
64 * user environment and arguments are stored.
66 remove_arg_zero(bprm);
67 retval = copy_string_kernel(bprm->filename, bprm);
68 if (retval < 0) return retval;
69 bprm->argc++;
70 if (i_arg) {
71 retval = copy_string_kernel(i_arg, bprm);
72 if (retval < 0) return retval;
73 bprm->argc++;
75 retval = copy_string_kernel(i_name, bprm);
76 if (retval < 0) return retval;
77 bprm->argc++;
80 * OK, now restart the process with the interpreter's inode.
81 * Note that we use open_exec() as the name is now in kernel
82 * space, and we don't need to copy it.
84 file = open_exec(interp);
85 if (IS_ERR(file))
86 return PTR_ERR(file);
88 bprm->interpreter = file;
89 return 0;
92 static struct linux_binfmt em86_format = {
93 .module = THIS_MODULE,
94 .load_binary = load_em86,
97 static int __init init_em86_binfmt(void)
99 register_binfmt(&em86_format);
100 return 0;
103 static void __exit exit_em86_binfmt(void)
105 unregister_binfmt(&em86_format);
108 core_initcall(init_em86_binfmt);
109 module_exit(exit_em86_binfmt);
110 MODULE_LICENSE("GPL");