2 * linux/fs/binfmt_script.c
4 * Copyright (C) 1996 Martin von Löwis
5 * original #!-checking implemented by tytso.
8 #include <linux/module.h>
9 #include <linux/string.h>
10 #include <linux/stat.h>
11 #include <linux/binfmts.h>
12 #include <linux/init.h>
13 #include <linux/file.h>
14 #include <linux/err.h>
17 static int load_script(struct linux_binprm
*bprm
)
19 const char *i_arg
, *i_name
;
24 if ((bprm
->buf
[0] != '#') || (bprm
->buf
[1] != '!'))
28 * If the script filename will be inaccessible after exec, typically
29 * because it is a "/dev/fd/<fd>/.." path against an O_CLOEXEC fd, give
30 * up now (on the assumption that the interpreter will want to load
33 if (bprm
->interp_flags
& BINPRM_FLAGS_PATH_INACCESSIBLE
)
37 * This section does the #! interpretation.
38 * Sorta complicated, but hopefully it will work. -TYT
41 allow_write_access(bprm
->file
);
45 bprm
->buf
[BINPRM_BUF_SIZE
- 1] = '\0';
46 if ((cp
= strchr(bprm
->buf
, '\n')) == NULL
)
47 cp
= bprm
->buf
+BINPRM_BUF_SIZE
-1;
49 while (cp
> bprm
->buf
) {
51 if ((*cp
== ' ') || (*cp
== '\t'))
56 for (cp
= bprm
->buf
+2; (*cp
== ' ') || (*cp
== '\t'); cp
++);
58 return -ENOEXEC
; /* No interpreter name found */
61 for ( ; *cp
&& (*cp
!= ' ') && (*cp
!= '\t'); cp
++)
63 while ((*cp
== ' ') || (*cp
== '\t'))
68 * OK, we've parsed out the interpreter name and
69 * (optional) argument.
70 * Splice in (1) the interpreter's name for argv[0]
71 * (2) (optional) argument to interpreter
72 * (3) filename of shell script (replace argv[0])
74 * This is done in reverse order, because of how the
75 * user environment and arguments are stored.
77 retval
= remove_arg_zero(bprm
);
80 retval
= copy_strings_kernel(1, &bprm
->interp
, bprm
);
85 retval
= copy_strings_kernel(1, &i_arg
, bprm
);
90 retval
= copy_strings_kernel(1, &i_name
, bprm
);
94 retval
= bprm_change_interp(i_name
, bprm
);
99 * OK, now restart the process with the interpreter's dentry.
101 file
= open_exec(i_name
);
103 return PTR_ERR(file
);
106 retval
= prepare_binprm(bprm
);
109 return search_binary_handler(bprm
);
112 static struct linux_binfmt script_format
= {
113 .module
= THIS_MODULE
,
114 .load_binary
= load_script
,
117 static int __init
init_script_binfmt(void)
119 register_binfmt(&script_format
);
123 static void __exit
exit_script_binfmt(void)
125 unregister_binfmt(&script_format
);
128 core_initcall(init_script_binfmt
);
129 module_exit(exit_script_binfmt
);
130 MODULE_LICENSE("GPL");