blob: 1b6625e959587da5b0545cb1ef88ab16a6530199 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * linux/fs/binfmt_script.c
4 *
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 * Copyright (C) 1996 Martin von Löwis
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * original #!-checking implemented by tytso.
7 */
8
9#include <linux/module.h>
10#include <linux/string.h>
11#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/binfmts.h>
13#include <linux/init.h>
14#include <linux/file.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/err.h>
16#include <linux/fs.h>
17
Kees Cookb5372fe2019-02-18 16:36:48 -080018static inline bool spacetab(char c) { return c == ' ' || c == '\t'; }
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050019static inline const char *next_non_spacetab(const char *first, const char *last)
Kees Cookb5372fe2019-02-18 16:36:48 -080020{
21 for (; first <= last; first++)
22 if (!spacetab(*first))
23 return first;
24 return NULL;
25}
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050026static inline const char *next_terminator(const char *first, const char *last)
Kees Cookb5372fe2019-02-18 16:36:48 -080027{
28 for (; first <= last; first++)
29 if (spacetab(*first) || !*first)
30 return first;
31 return NULL;
32}
33
Al Viro71613c32012-10-20 22:00:48 -040034static int load_script(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050036 const char *i_name, *i_sep, *i_arg, *i_end, *buf_end;
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 struct file *file;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 int retval;
39
Kees Cookb5372fe2019-02-18 16:36:48 -080040 /* Not ours to exec if we don't start with "#!". */
Kees Cookd7402692012-12-17 16:03:20 -080041 if ((bprm->buf[0] != '#') || (bprm->buf[1] != '!'))
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 return -ENOEXEC;
David Drysdale51f39a12014-12-12 16:57:29 -080043
44 /*
Kees Cookb5372fe2019-02-18 16:36:48 -080045 * This section handles parsing the #! line into separate
46 * interpreter path and argument strings. We must be careful
47 * because bprm->buf is not yet guaranteed to be NUL-terminated
48 * (though the buffer will have trailing NUL padding when the
49 * file size was smaller than the buffer size).
50 *
51 * We do not want to exec a truncated interpreter path, so either
52 * we find a newline (which indicates nothing is truncated), or
53 * we find a space/tab/NUL after the interpreter path (which
54 * itself may be preceded by spaces/tabs). Truncating the
55 * arguments is fine: the interpreter can re-read the script to
56 * parse them on its own.
57 */
58 buf_end = bprm->buf + sizeof(bprm->buf) - 1;
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050059 i_end = strnchr(bprm->buf, sizeof(bprm->buf), '\n');
60 if (!i_end) {
61 i_end = next_non_spacetab(bprm->buf + 2, buf_end);
62 if (!i_end)
Kees Cookb5372fe2019-02-18 16:36:48 -080063 return -ENOEXEC; /* Entire buf is spaces/tabs */
64 /*
65 * If there is no later space/tab/NUL we must assume the
66 * interpreter path is truncated.
67 */
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050068 if (!next_terminator(i_end, buf_end))
Kees Cookb5372fe2019-02-18 16:36:48 -080069 return -ENOEXEC;
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050070 i_end = buf_end;
Kees Cookb5372fe2019-02-18 16:36:48 -080071 }
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050072 /* Trim any trailing spaces/tabs from i_end */
73 while (spacetab(i_end[-1]))
74 i_end--;
75
76 /* Skip over leading spaces/tabs */
77 i_name = next_non_spacetab(bprm->buf+2, i_end);
78 if (!i_name || (i_name == i_end))
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 return -ENOEXEC; /* No interpreter name found */
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050080
81 /* Is there an optional argument? */
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 i_arg = NULL;
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -050083 i_sep = next_terminator(i_name, i_end);
84 if (i_sep && (*i_sep != '\0'))
85 i_arg = next_non_spacetab(i_sep, i_end);
86
87 /*
88 * If the script filename will be inaccessible after exec, typically
89 * because it is a "/dev/fd/<fd>/.." path against an O_CLOEXEC fd, give
90 * up now (on the assumption that the interpreter will want to load
91 * this file).
92 */
93 if (bprm->interp_flags & BINPRM_FLAGS_PATH_INACCESSIBLE)
94 return -ENOENT;
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 /*
97 * OK, we've parsed out the interpreter name and
98 * (optional) argument.
99 * Splice in (1) the interpreter's name for argv[0]
100 * (2) (optional) argument to interpreter
101 * (3) filename of shell script (replace argv[0])
102 *
103 * This is done in reverse order, because of how the
104 * user environment and arguments are stored.
105 */
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700106 retval = remove_arg_zero(bprm);
107 if (retval)
108 return retval;
Christoph Hellwig986db2d2020-06-04 16:51:14 -0700109 retval = copy_string_kernel(bprm->interp, bprm);
Oleg Nesterovc2315c12017-10-03 16:15:42 -0700110 if (retval < 0)
111 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 bprm->argc++;
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -0500113 *((char *)i_end) = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 if (i_arg) {
Eric W. Biedermanccbb18b2020-05-18 10:11:10 -0500115 *((char *)i_sep) = '\0';
Christoph Hellwig986db2d2020-06-04 16:51:14 -0700116 retval = copy_string_kernel(i_arg, bprm);
Oleg Nesterovc2315c12017-10-03 16:15:42 -0700117 if (retval < 0)
118 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 bprm->argc++;
120 }
Christoph Hellwig986db2d2020-06-04 16:51:14 -0700121 retval = copy_string_kernel(i_name, bprm);
Oleg Nesterovc2315c12017-10-03 16:15:42 -0700122 if (retval)
123 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 bprm->argc++;
Oleg Nesterovc2315c12017-10-03 16:15:42 -0700125 retval = bprm_change_interp(i_name, bprm);
Kees Cookb66c5982012-12-20 15:05:16 -0800126 if (retval < 0)
127 return retval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /*
130 * OK, now restart the process with the interpreter's dentry.
131 */
Oleg Nesterovc2315c12017-10-03 16:15:42 -0700132 file = open_exec(i_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 if (IS_ERR(file))
134 return PTR_ERR(file);
135
Eric W. Biedermanbc2bf332020-05-18 18:43:20 -0500136 bprm->interpreter = file;
137 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138}
139
140static struct linux_binfmt script_format = {
141 .module = THIS_MODULE,
142 .load_binary = load_script,
143};
144
145static int __init init_script_binfmt(void)
146{
Al Viro8fc3dc52012-03-17 03:05:16 -0400147 register_binfmt(&script_format);
148 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149}
150
151static void __exit exit_script_binfmt(void)
152{
153 unregister_binfmt(&script_format);
154}
155
156core_initcall(init_script_binfmt);
157module_exit(exit_script_binfmt);
158MODULE_LICENSE("GPL");