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 inline bool spacetab(char c
) { return c
== ' ' || c
== '\t'; }
18 static inline char *next_non_spacetab(char *first
, const char *last
)
20 for (; first
<= last
; first
++)
21 if (!spacetab(*first
))
25 static inline char *next_terminator(char *first
, const char *last
)
27 for (; first
<= last
; first
++)
28 if (spacetab(*first
) || !*first
)
33 static int load_script(struct linux_binprm
*bprm
)
35 const char *i_arg
, *i_name
;
40 /* Not ours to exec if we don't start with "#!". */
41 if ((bprm
->buf
[0] != '#') || (bprm
->buf
[1] != '!'))
45 * If the script filename will be inaccessible after exec, typically
46 * because it is a "/dev/fd/<fd>/.." path against an O_CLOEXEC fd, give
47 * up now (on the assumption that the interpreter will want to load
50 if (bprm
->interp_flags
& BINPRM_FLAGS_PATH_INACCESSIBLE
)
53 /* Release since we are not mapping a binary into memory. */
54 allow_write_access(bprm
->file
);
59 * This section handles parsing the #! line into separate
60 * interpreter path and argument strings. We must be careful
61 * because bprm->buf is not yet guaranteed to be NUL-terminated
62 * (though the buffer will have trailing NUL padding when the
63 * file size was smaller than the buffer size).
65 * We do not want to exec a truncated interpreter path, so either
66 * we find a newline (which indicates nothing is truncated), or
67 * we find a space/tab/NUL after the interpreter path (which
68 * itself may be preceded by spaces/tabs). Truncating the
69 * arguments is fine: the interpreter can re-read the script to
70 * parse them on its own.
72 buf_end
= bprm
->buf
+ sizeof(bprm
->buf
) - 1;
73 cp
= strnchr(bprm
->buf
, sizeof(bprm
->buf
), '\n');
75 cp
= next_non_spacetab(bprm
->buf
+ 2, buf_end
);
77 return -ENOEXEC
; /* Entire buf is spaces/tabs */
79 * If there is no later space/tab/NUL we must assume the
80 * interpreter path is truncated.
82 if (!next_terminator(cp
, buf_end
))
86 /* NUL-terminate the buffer and any trailing spaces/tabs. */
88 while (cp
> bprm
->buf
) {
90 if ((*cp
== ' ') || (*cp
== '\t'))
95 for (cp
= bprm
->buf
+2; (*cp
== ' ') || (*cp
== '\t'); cp
++);
97 return -ENOEXEC
; /* No interpreter name found */
100 for ( ; *cp
&& (*cp
!= ' ') && (*cp
!= '\t'); cp
++)
102 while ((*cp
== ' ') || (*cp
== '\t'))
107 * OK, we've parsed out the interpreter name and
108 * (optional) argument.
109 * Splice in (1) the interpreter's name for argv[0]
110 * (2) (optional) argument to interpreter
111 * (3) filename of shell script (replace argv[0])
113 * This is done in reverse order, because of how the
114 * user environment and arguments are stored.
116 retval
= remove_arg_zero(bprm
);
119 retval
= copy_strings_kernel(1, &bprm
->interp
, bprm
);
124 retval
= copy_strings_kernel(1, &i_arg
, bprm
);
129 retval
= copy_strings_kernel(1, &i_name
, bprm
);
133 retval
= bprm_change_interp(i_name
, bprm
);
138 * OK, now restart the process with the interpreter's dentry.
140 file
= open_exec(i_name
);
142 return PTR_ERR(file
);
145 retval
= prepare_binprm(bprm
);
148 return search_binary_handler(bprm
);
151 static struct linux_binfmt script_format
= {
152 .module
= THIS_MODULE
,
153 .load_binary
= load_script
,
156 static int __init
init_script_binfmt(void)
158 register_binfmt(&script_format
);
162 static void __exit
exit_script_binfmt(void)
164 unregister_binfmt(&script_format
);
167 core_initcall(init_script_binfmt
);
168 module_exit(exit_script_binfmt
);
169 MODULE_LICENSE("GPL");