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/malloc.h>
12 #include <linux/binfmts.h>
13 #include <linux/init.h>
15 static int do_load_script(struct linux_binprm
*bprm
,struct pt_regs
*regs
)
17 char *cp
, *i_name
, *i_name_start
, *i_arg
;
18 struct dentry
* dentry
;
22 if ((bprm
->buf
[0] != '#') || (bprm
->buf
[1] != '!') || (bprm
->sh_bang
))
25 * This section does the #! interpretation.
26 * Sorta complicated, but hopefully it will work. -TYT
33 bprm
->buf
[127] = '\0';
34 if ((cp
= strchr(bprm
->buf
, '\n')) == NULL
)
37 while (cp
> bprm
->buf
) {
39 if ((*cp
== ' ') || (*cp
== '\t'))
44 for (cp
= bprm
->buf
+2; (*cp
== ' ') || (*cp
== '\t'); cp
++);
46 return -ENOEXEC
; /* No interpreter name found */
47 i_name_start
= i_name
= cp
;
49 for ( ; *cp
&& (*cp
!= ' ') && (*cp
!= '\t'); cp
++) {
53 while ((*cp
== ' ') || (*cp
== '\t'))
57 strcpy (interp
, i_name_start
);
59 * OK, we've parsed out the interpreter name and
60 * (optional) argument.
61 * Splice in (1) the interpreter's name for argv[0]
62 * (2) (optional) argument to interpreter
63 * (3) filename of shell script (replace argv[0])
65 * This is done in reverse order, because of how the
66 * user environment and arguments are stored.
68 remove_arg_zero(bprm
);
69 retval
= copy_strings_kernel(1, &bprm
->filename
, bprm
);
70 if (retval
< 0) return retval
;
73 retval
= copy_strings_kernel(1, &i_arg
, bprm
);
74 if (retval
< 0) return retval
;
77 retval
= copy_strings_kernel(1, &i_name
, bprm
);
78 if (retval
) return retval
;
81 * OK, now restart the process with the interpreter's dentry.
83 dentry
= open_namei(interp
, 0, 0);
85 return PTR_ERR(dentry
);
87 bprm
->dentry
= dentry
;
88 retval
= prepare_binprm(bprm
);
91 return search_binary_handler(bprm
,regs
);
94 static int load_script(struct linux_binprm
*bprm
,struct pt_regs
*regs
)
98 retval
= do_load_script(bprm
,regs
);
103 struct linux_binfmt script_format
= {
104 NULL
, THIS_MODULE
, load_script
, NULL
, NULL
, 0
107 static int __init
init_script_binfmt(void)
109 return register_binfmt(&script_format
);
112 static void __exit
exit_script_binfmt(void)
114 unregister_binfmt(&script_format
);
117 module_init(init_script_binfmt
)
118 module_exit(exit_script_binfmt
)