blob: c04ef1d4f18a573726f83d7f5a1401f06ec9652b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Mike Frysingere6084d42014-12-10 15:52:10 -08002 * binfmt_misc.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
Mike Frysingere6084d42014-12-10 15:52:10 -08004 * Copyright (C) 1997 Richard Günther
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
Mike Frysingere6084d42014-12-10 15:52:10 -08006 * binfmt_misc detects binaries via a magic or filename extension and invokes
7 * a specified wrapper. See Documentation/binfmt_misc.txt for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
Mike Frysinger6b899c42014-12-10 15:52:08 -080010#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/module.h>
13#include <linux/init.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040014#include <linux/sched.h>
Muthu Kumarb502bd12012-03-23 15:01:50 -070015#include <linux/magic.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/binfmts.h>
17#include <linux/slab.h>
18#include <linux/ctype.h>
Andy Shevchenko8d82e182013-04-30 15:27:33 -070019#include <linux/string_helpers.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/file.h>
21#include <linux/pagemap.h>
22#include <linux/namei.h>
23#include <linux/mount.h>
24#include <linux/syscalls.h>
Akinobu Mita6e2c10a2008-07-23 21:29:15 -070025#include <linux/fs.h>
Mike Frysinger6b899c42014-12-10 15:52:08 -080026#include <linux/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Mike Frysinger6b899c42014-12-10 15:52:08 -080028#ifdef DEBUG
29# define USE_DEBUG 1
30#else
31# define USE_DEBUG 0
32#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34enum {
35 VERBOSE_STATUS = 1 /* make it zero to save 400 bytes kernel memory */
36};
37
38static LIST_HEAD(entries);
39static int enabled = 1;
40
41enum {Enabled, Magic};
Mike Frysingere6084d42014-12-10 15:52:10 -080042#define MISC_FMT_PRESERVE_ARGV0 (1 << 31)
43#define MISC_FMT_OPEN_BINARY (1 << 30)
44#define MISC_FMT_CREDENTIALS (1 << 29)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46typedef struct {
47 struct list_head list;
48 unsigned long flags; /* type, status, etc. */
49 int offset; /* offset of magic */
50 int size; /* size of magic/mask */
51 char *magic; /* magic or filename extension */
52 char *mask; /* mask, NULL for exact match */
53 char *interpreter; /* filename of interpreter */
54 char *name;
55 struct dentry *dentry;
56} Node;
57
58static DEFINE_RWLOCK(entries_lock);
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -040059static struct file_system_type bm_fs_type;
Linus Torvalds1da177e2005-04-16 15:20:36 -070060static struct vfsmount *bm_mnt;
61static int entry_count;
62
Mike Frysingerbbaecc02014-10-13 15:52:03 -070063/*
64 * Max length of the register string. Determined by:
65 * - 7 delimiters
66 * - name: ~50 bytes
67 * - type: 1 byte
68 * - offset: 3 bytes (has to be smaller than BINPRM_BUF_SIZE)
69 * - magic: 128 bytes (512 in escaped form)
70 * - mask: 128 bytes (512 in escaped form)
71 * - interp: ~50 bytes
72 * - flags: 5 bytes
73 * Round that up a bit, and then back off to hold the internal data
74 * (like struct Node).
75 */
76#define MAX_REGISTER_LENGTH 1920
77
78/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 * Check if we support the binfmt
80 * if we do, return the node, else NULL
81 * locking is done in load_misc_binary
82 */
83static Node *check_file(struct linux_binprm *bprm)
84{
85 char *p = strrchr(bprm->interp, '.');
86 struct list_head *l;
87
Mike Frysinger6b899c42014-12-10 15:52:08 -080088 /* Walk all the registered handlers. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 list_for_each(l, &entries) {
90 Node *e = list_entry(l, Node, list);
91 char *s;
92 int j;
93
Mike Frysinger6b899c42014-12-10 15:52:08 -080094 /* Make sure this one is currently enabled. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 if (!test_bit(Enabled, &e->flags))
96 continue;
97
Mike Frysinger6b899c42014-12-10 15:52:08 -080098 /* Do matching based on extension if applicable. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 if (!test_bit(Magic, &e->flags)) {
100 if (p && !strcmp(e->magic, p + 1))
101 return e;
102 continue;
103 }
104
Mike Frysinger6b899c42014-12-10 15:52:08 -0800105 /* Do matching based on magic & mask. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 s = bprm->buf + e->offset;
107 if (e->mask) {
108 for (j = 0; j < e->size; j++)
109 if ((*s++ ^ e->magic[j]) & e->mask[j])
110 break;
111 } else {
112 for (j = 0; j < e->size; j++)
113 if ((*s++ ^ e->magic[j]))
114 break;
115 }
116 if (j == e->size)
117 return e;
118 }
119 return NULL;
120}
121
122/*
123 * the loader itself
124 */
Al Viro71613c32012-10-20 22:00:48 -0400125static int load_misc_binary(struct linux_binprm *bprm)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126{
127 Node *fmt;
Mike Frysingere6084d42014-12-10 15:52:10 -0800128 struct file *interp_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 char iname[BINPRM_BUF_SIZE];
David Howellsd7627462010-08-17 23:52:56 +0100130 const char *iname_addr = iname;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 int retval;
132 int fd_binary = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133
134 retval = -ENOEXEC;
135 if (!enabled)
Mike Frysingere6084d42014-12-10 15:52:10 -0800136 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138 /* to keep locking time low, we copy the interpreter string */
139 read_lock(&entries_lock);
140 fmt = check_file(bprm);
141 if (fmt)
142 strlcpy(iname, fmt->interpreter, BINPRM_BUF_SIZE);
143 read_unlock(&entries_lock);
144 if (!fmt)
Mike Frysingere6084d42014-12-10 15:52:10 -0800145 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
David Drysdale51f39a12014-12-12 16:57:29 -0800147 /* Need to be able to load the file after exec */
148 if (bprm->interp_flags & BINPRM_FLAGS_PATH_INACCESSIBLE)
149 return -ENOENT;
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 if (!(fmt->flags & MISC_FMT_PRESERVE_ARGV0)) {
Ollie Wildb6a2fea2007-07-19 01:48:16 -0700152 retval = remove_arg_zero(bprm);
153 if (retval)
Mike Frysingere6084d42014-12-10 15:52:10 -0800154 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 }
156
157 if (fmt->flags & MISC_FMT_OPEN_BINARY) {
158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 /* if the binary should be opened on behalf of the
160 * interpreter than keep it open and assign descriptor
Mike Frysingere6084d42014-12-10 15:52:10 -0800161 * to it
162 */
Yann Droneaudc6cb8982014-12-10 15:45:42 -0800163 fd_binary = get_unused_fd_flags(0);
Mike Frysingere6084d42014-12-10 15:52:10 -0800164 if (fd_binary < 0) {
165 retval = fd_binary;
166 goto ret;
167 }
168 fd_install(fd_binary, bprm->file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* if the binary is not readable than enforce mm->dumpable=0
171 regardless of the interpreter's permissions */
Al Viro1b5d7832011-06-19 12:49:47 -0400172 would_dump(bprm, bprm->file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
174 allow_write_access(bprm->file);
175 bprm->file = NULL;
176
177 /* mark the bprm that fd should be passed to interp */
178 bprm->interp_flags |= BINPRM_FLAGS_EXECFD;
179 bprm->interp_data = fd_binary;
180
Mike Frysingere6084d42014-12-10 15:52:10 -0800181 } else {
182 allow_write_access(bprm->file);
183 fput(bprm->file);
184 bprm->file = NULL;
185 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 /* make argv[1] be the path to the binary */
Mike Frysingere6084d42014-12-10 15:52:10 -0800187 retval = copy_strings_kernel(1, &bprm->interp, bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188 if (retval < 0)
Mike Frysingere6084d42014-12-10 15:52:10 -0800189 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 bprm->argc++;
191
192 /* add the interp as argv[0] */
Mike Frysingere6084d42014-12-10 15:52:10 -0800193 retval = copy_strings_kernel(1, &iname_addr, bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 if (retval < 0)
Mike Frysingere6084d42014-12-10 15:52:10 -0800195 goto error;
196 bprm->argc++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Kees Cookb66c5982012-12-20 15:05:16 -0800198 /* Update interp in case binfmt_script needs it. */
199 retval = bprm_change_interp(iname, bprm);
200 if (retval < 0)
Mike Frysingere6084d42014-12-10 15:52:10 -0800201 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202
Mike Frysingere6084d42014-12-10 15:52:10 -0800203 interp_file = open_exec(iname);
204 retval = PTR_ERR(interp_file);
205 if (IS_ERR(interp_file))
206 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
208 bprm->file = interp_file;
209 if (fmt->flags & MISC_FMT_CREDENTIALS) {
210 /*
211 * No need to call prepare_binprm(), it's already been
212 * done. bprm->buf is stale, update from interp_file.
213 */
214 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
215 retval = kernel_read(bprm->file, 0, bprm->buf, BINPRM_BUF_SIZE);
216 } else
Mike Frysingere6084d42014-12-10 15:52:10 -0800217 retval = prepare_binprm(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218
219 if (retval < 0)
Mike Frysingere6084d42014-12-10 15:52:10 -0800220 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Al Viro3c456bf2012-10-20 21:53:31 -0400222 retval = search_binary_handler(bprm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 if (retval < 0)
Mike Frysingere6084d42014-12-10 15:52:10 -0800224 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Mike Frysingere6084d42014-12-10 15:52:10 -0800226ret:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 return retval;
Mike Frysingere6084d42014-12-10 15:52:10 -0800228error:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 if (fd_binary > 0)
230 sys_close(fd_binary);
231 bprm->interp_flags = 0;
232 bprm->interp_data = 0;
Mike Frysingere6084d42014-12-10 15:52:10 -0800233 goto ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234}
235
236/* Command parsers */
237
238/*
239 * parses and copies one argument enclosed in del from *sp to *dp,
240 * recognising the \x special.
241 * returns pointer to the copied argument or NULL in case of an
242 * error (and sets err) or null argument length.
243 */
244static char *scanarg(char *s, char del)
245{
246 char c;
247
248 while ((c = *s++) != del) {
249 if (c == '\\' && *s == 'x') {
250 s++;
251 if (!isxdigit(*s++))
252 return NULL;
253 if (!isxdigit(*s++))
254 return NULL;
255 }
256 }
257 return s;
258}
259
Mike Frysingere6084d42014-12-10 15:52:10 -0800260static char *check_special_flags(char *sfs, Node *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261{
Mike Frysingere6084d42014-12-10 15:52:10 -0800262 char *p = sfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 int cont = 1;
264
265 /* special flags */
266 while (cont) {
267 switch (*p) {
Mike Frysingere6084d42014-12-10 15:52:10 -0800268 case 'P':
269 pr_debug("register: flag: P (preserve argv0)\n");
270 p++;
271 e->flags |= MISC_FMT_PRESERVE_ARGV0;
272 break;
273 case 'O':
274 pr_debug("register: flag: O (open binary)\n");
275 p++;
276 e->flags |= MISC_FMT_OPEN_BINARY;
277 break;
278 case 'C':
279 pr_debug("register: flag: C (preserve creds)\n");
280 p++;
281 /* this flags also implies the
282 open-binary flag */
283 e->flags |= (MISC_FMT_CREDENTIALS |
284 MISC_FMT_OPEN_BINARY);
285 break;
286 default:
287 cont = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 }
289 }
290
291 return p;
292}
Mike Frysingere6084d42014-12-10 15:52:10 -0800293
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294/*
295 * This registers a new binary format, it recognises the syntax
296 * ':name:type:offset:magic:mask:interpreter:flags'
297 * where the ':' is the IFS, that can be chosen with the first char
298 */
299static Node *create_entry(const char __user *buffer, size_t count)
300{
301 Node *e;
302 int memsize, err;
303 char *buf, *p;
304 char del;
305
Mike Frysinger6b899c42014-12-10 15:52:08 -0800306 pr_debug("register: received %zu bytes\n", count);
307
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 /* some sanity checks */
309 err = -EINVAL;
Mike Frysingerbbaecc02014-10-13 15:52:03 -0700310 if ((count < 11) || (count > MAX_REGISTER_LENGTH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 goto out;
312
313 err = -ENOMEM;
314 memsize = sizeof(Node) + count + 8;
Andrew Mortonf7e1ad12014-12-10 15:52:13 -0800315 e = kmalloc(memsize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 if (!e)
317 goto out;
318
319 p = buf = (char *)e + sizeof(Node);
320
321 memset(e, 0, sizeof(Node));
322 if (copy_from_user(buf, buffer, count))
Mike Frysingere6084d42014-12-10 15:52:10 -0800323 goto efault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 del = *p++; /* delimeter */
326
Mike Frysinger6b899c42014-12-10 15:52:08 -0800327 pr_debug("register: delim: %#x {%c}\n", del, del);
328
329 /* Pad the buffer with the delim to simplify parsing below. */
Mike Frysingere6084d42014-12-10 15:52:10 -0800330 memset(buf + count, del, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331
Mike Frysinger6b899c42014-12-10 15:52:08 -0800332 /* Parse the 'name' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 e->name = p;
334 p = strchr(p, del);
335 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800336 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337 *p++ = '\0';
338 if (!e->name[0] ||
339 !strcmp(e->name, ".") ||
340 !strcmp(e->name, "..") ||
341 strchr(e->name, '/'))
Mike Frysingere6084d42014-12-10 15:52:10 -0800342 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800343
344 pr_debug("register: name: {%s}\n", e->name);
345
346 /* Parse the 'type' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 switch (*p++) {
Mike Frysinger6b899c42014-12-10 15:52:08 -0800348 case 'E':
349 pr_debug("register: type: E (extension)\n");
350 e->flags = 1 << Enabled;
351 break;
352 case 'M':
353 pr_debug("register: type: M (magic)\n");
354 e->flags = (1 << Enabled) | (1 << Magic);
355 break;
356 default:
Mike Frysingere6084d42014-12-10 15:52:10 -0800357 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358 }
359 if (*p++ != del)
Mike Frysingere6084d42014-12-10 15:52:10 -0800360 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 if (test_bit(Magic, &e->flags)) {
Mike Frysinger6b899c42014-12-10 15:52:08 -0800363 /* Handle the 'M' (magic) format. */
364 char *s;
365
366 /* Parse the 'offset' field. */
367 s = strchr(p, del);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 if (!s)
Mike Frysingere6084d42014-12-10 15:52:10 -0800369 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 *s++ = '\0';
371 e->offset = simple_strtoul(p, &p, 10);
372 if (*p++)
Mike Frysingere6084d42014-12-10 15:52:10 -0800373 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800374 pr_debug("register: offset: %#x\n", e->offset);
375
376 /* Parse the 'magic' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 e->magic = p;
378 p = scanarg(p, del);
379 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800380 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 p[-1] = '\0';
Mike Frysinger6b899c42014-12-10 15:52:08 -0800382 if (p == e->magic)
Mike Frysingere6084d42014-12-10 15:52:10 -0800383 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800384 if (USE_DEBUG)
385 print_hex_dump_bytes(
386 KBUILD_MODNAME ": register: magic[raw]: ",
387 DUMP_PREFIX_NONE, e->magic, p - e->magic);
388
389 /* Parse the 'mask' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 e->mask = p;
391 p = scanarg(p, del);
392 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800393 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 p[-1] = '\0';
Mike Frysinger6b899c42014-12-10 15:52:08 -0800395 if (p == e->mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 e->mask = NULL;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800397 pr_debug("register: mask[raw]: none\n");
398 } else if (USE_DEBUG)
399 print_hex_dump_bytes(
400 KBUILD_MODNAME ": register: mask[raw]: ",
401 DUMP_PREFIX_NONE, e->mask, p - e->mask);
402
403 /*
404 * Decode the magic & mask fields.
405 * Note: while we might have accepted embedded NUL bytes from
406 * above, the unescape helpers here will stop at the first one
407 * it encounters.
408 */
Andy Shevchenko8d82e182013-04-30 15:27:33 -0700409 e->size = string_unescape_inplace(e->magic, UNESCAPE_HEX);
410 if (e->mask &&
411 string_unescape_inplace(e->mask, UNESCAPE_HEX) != e->size)
Mike Frysingere6084d42014-12-10 15:52:10 -0800412 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 if (e->size + e->offset > BINPRM_BUF_SIZE)
Mike Frysingere6084d42014-12-10 15:52:10 -0800414 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800415 pr_debug("register: magic/mask length: %i\n", e->size);
416 if (USE_DEBUG) {
417 print_hex_dump_bytes(
418 KBUILD_MODNAME ": register: magic[decoded]: ",
419 DUMP_PREFIX_NONE, e->magic, e->size);
420
421 if (e->mask) {
422 int i;
Andrew Mortonf7e1ad12014-12-10 15:52:13 -0800423 char *masked = kmalloc(e->size, GFP_KERNEL);
Mike Frysinger6b899c42014-12-10 15:52:08 -0800424
425 print_hex_dump_bytes(
426 KBUILD_MODNAME ": register: mask[decoded]: ",
427 DUMP_PREFIX_NONE, e->mask, e->size);
428
429 if (masked) {
430 for (i = 0; i < e->size; ++i)
431 masked[i] = e->magic[i] & e->mask[i];
432 print_hex_dump_bytes(
433 KBUILD_MODNAME ": register: magic[masked]: ",
434 DUMP_PREFIX_NONE, masked, e->size);
435
436 kfree(masked);
437 }
438 }
439 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 } else {
Mike Frysinger6b899c42014-12-10 15:52:08 -0800441 /* Handle the 'E' (extension) format. */
442
443 /* Skip the 'offset' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 p = strchr(p, del);
445 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800446 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *p++ = '\0';
Mike Frysinger6b899c42014-12-10 15:52:08 -0800448
449 /* Parse the 'magic' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 e->magic = p;
451 p = strchr(p, del);
452 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800453 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 *p++ = '\0';
455 if (!e->magic[0] || strchr(e->magic, '/'))
Mike Frysingere6084d42014-12-10 15:52:10 -0800456 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800457 pr_debug("register: extension: {%s}\n", e->magic);
458
459 /* Skip the 'mask' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 p = strchr(p, del);
461 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800462 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 *p++ = '\0';
464 }
Mike Frysinger6b899c42014-12-10 15:52:08 -0800465
466 /* Parse the 'interpreter' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467 e->interpreter = p;
468 p = strchr(p, del);
469 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800470 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 *p++ = '\0';
472 if (!e->interpreter[0])
Mike Frysingere6084d42014-12-10 15:52:10 -0800473 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800474 pr_debug("register: interpreter: {%s}\n", e->interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475
Mike Frysinger6b899c42014-12-10 15:52:08 -0800476 /* Parse the 'flags' field. */
Mike Frysingere6084d42014-12-10 15:52:10 -0800477 p = check_special_flags(p, e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 if (*p == '\n')
479 p++;
480 if (p != buf + count)
Mike Frysingere6084d42014-12-10 15:52:10 -0800481 goto einval;
482
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 return e;
484
485out:
486 return ERR_PTR(err);
487
Mike Frysingere6084d42014-12-10 15:52:10 -0800488efault:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 kfree(e);
490 return ERR_PTR(-EFAULT);
Mike Frysingere6084d42014-12-10 15:52:10 -0800491einval:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 kfree(e);
493 return ERR_PTR(-EINVAL);
494}
495
496/*
497 * Set status of entry/binfmt_misc:
498 * '1' enables, '0' disables and '-1' clears entry/binfmt_misc
499 */
500static int parse_command(const char __user *buffer, size_t count)
501{
502 char s[4];
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 if (count > 3)
505 return -EINVAL;
506 if (copy_from_user(s, buffer, count))
507 return -EFAULT;
Arnd Bergmannde8288b2014-10-13 15:52:08 -0700508 if (!count)
509 return 0;
Mike Frysingere6084d42014-12-10 15:52:10 -0800510 if (s[count - 1] == '\n')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 count--;
512 if (count == 1 && s[0] == '0')
513 return 1;
514 if (count == 1 && s[0] == '1')
515 return 2;
516 if (count == 2 && s[0] == '-' && s[1] == '1')
517 return 3;
518 return -EINVAL;
519}
520
521/* generic stuff */
522
523static void entry_status(Node *e, char *page)
524{
525 char *dp;
526 char *status = "disabled";
Mike Frysingere6084d42014-12-10 15:52:10 -0800527 const char *flags = "flags: ";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528
529 if (test_bit(Enabled, &e->flags))
530 status = "enabled";
531
532 if (!VERBOSE_STATUS) {
533 sprintf(page, "%s\n", status);
534 return;
535 }
536
537 sprintf(page, "%s\ninterpreter %s\n", status, e->interpreter);
538 dp = page + strlen(page);
539
540 /* print the special flags */
Mike Frysingere6084d42014-12-10 15:52:10 -0800541 sprintf(dp, "%s", flags);
542 dp += strlen(flags);
543 if (e->flags & MISC_FMT_PRESERVE_ARGV0)
544 *dp++ = 'P';
545 if (e->flags & MISC_FMT_OPEN_BINARY)
546 *dp++ = 'O';
547 if (e->flags & MISC_FMT_CREDENTIALS)
548 *dp++ = 'C';
549 *dp++ = '\n';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
551 if (!test_bit(Magic, &e->flags)) {
552 sprintf(dp, "extension .%s\n", e->magic);
553 } else {
554 int i;
555
556 sprintf(dp, "offset %i\nmagic ", e->offset);
557 dp = page + strlen(page);
558 for (i = 0; i < e->size; i++) {
559 sprintf(dp, "%02x", 0xff & (int) (e->magic[i]));
560 dp += 2;
561 }
562 if (e->mask) {
563 sprintf(dp, "\nmask ");
564 dp += 6;
565 for (i = 0; i < e->size; i++) {
566 sprintf(dp, "%02x", 0xff & (int) (e->mask[i]));
567 dp += 2;
568 }
569 }
570 *dp++ = '\n';
571 *dp = '\0';
572 }
573}
574
575static struct inode *bm_get_inode(struct super_block *sb, int mode)
576{
Mike Frysingere6084d42014-12-10 15:52:10 -0800577 struct inode *inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
579 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400580 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 inode->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 inode->i_atime = inode->i_mtime = inode->i_ctime =
583 current_fs_time(inode->i_sb);
584 }
585 return inode;
586}
587
Al Virob57922d2010-06-07 14:34:48 -0400588static void bm_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Jan Karadbd57682012-05-03 14:48:02 +0200590 clear_inode(inode);
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700591 kfree(inode->i_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592}
593
594static void kill_node(Node *e)
595{
596 struct dentry *dentry;
597
598 write_lock(&entries_lock);
599 dentry = e->dentry;
600 if (dentry) {
601 list_del_init(&e->list);
602 e->dentry = NULL;
603 }
604 write_unlock(&entries_lock);
605
606 if (dentry) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200607 drop_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 d_drop(dentry);
609 dput(dentry);
610 simple_release_fs(&bm_mnt, &entry_count);
611 }
612}
613
614/* /<entry> */
615
616static ssize_t
Mike Frysingere6084d42014-12-10 15:52:10 -0800617bm_entry_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618{
Al Viro496ad9a2013-01-23 17:07:38 -0500619 Node *e = file_inode(file)->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 ssize_t res;
621 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622
Mike Frysingere6084d42014-12-10 15:52:10 -0800623 page = (char *) __get_free_page(GFP_KERNEL);
624 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 return -ENOMEM;
626
627 entry_status(e, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628
Akinobu Mita6e2c10a2008-07-23 21:29:15 -0700629 res = simple_read_from_buffer(buf, nbytes, ppos, page, strlen(page));
630
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 free_page((unsigned long) page);
632 return res;
633}
634
635static ssize_t bm_entry_write(struct file *file, const char __user *buffer,
636 size_t count, loff_t *ppos)
637{
638 struct dentry *root;
Al Viro496ad9a2013-01-23 17:07:38 -0500639 Node *e = file_inode(file)->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640 int res = parse_command(buffer, count);
641
642 switch (res) {
Mike Frysingere6084d42014-12-10 15:52:10 -0800643 case 1:
644 /* Disable this handler. */
645 clear_bit(Enabled, &e->flags);
646 break;
647 case 2:
648 /* Enable this handler. */
649 set_bit(Enabled, &e->flags);
650 break;
651 case 3:
652 /* Delete this handler. */
653 root = dget(file->f_path.dentry->d_sb->s_root);
654 mutex_lock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Mike Frysingere6084d42014-12-10 15:52:10 -0800656 kill_node(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657
Mike Frysingere6084d42014-12-10 15:52:10 -0800658 mutex_unlock(&root->d_inode->i_mutex);
659 dput(root);
660 break;
661 default:
662 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 }
Mike Frysingere6084d42014-12-10 15:52:10 -0800664
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 return count;
666}
667
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800668static const struct file_operations bm_entry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 .read = bm_entry_read,
670 .write = bm_entry_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200671 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672};
673
674/* /register */
675
676static ssize_t bm_register_write(struct file *file, const char __user *buffer,
677 size_t count, loff_t *ppos)
678{
679 Node *e;
680 struct inode *inode;
681 struct dentry *root, *dentry;
Al Virod8c95842011-12-07 18:16:57 -0500682 struct super_block *sb = file->f_path.dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 int err = 0;
684
685 e = create_entry(buffer, count);
686
687 if (IS_ERR(e))
688 return PTR_ERR(e);
689
690 root = dget(sb->s_root);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800691 mutex_lock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 dentry = lookup_one_len(e->name, root, strlen(e->name));
693 err = PTR_ERR(dentry);
694 if (IS_ERR(dentry))
695 goto out;
696
697 err = -EEXIST;
698 if (dentry->d_inode)
699 goto out2;
700
701 inode = bm_get_inode(sb, S_IFREG | 0644);
702
703 err = -ENOMEM;
704 if (!inode)
705 goto out2;
706
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400707 err = simple_pin_fs(&bm_fs_type, &bm_mnt, &entry_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 if (err) {
709 iput(inode);
710 inode = NULL;
711 goto out2;
712 }
713
714 e->dentry = dget(dentry);
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700715 inode->i_private = e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 inode->i_fop = &bm_entry_operations;
717
718 d_instantiate(dentry, inode);
719 write_lock(&entries_lock);
720 list_add(&e->list, &entries);
721 write_unlock(&entries_lock);
722
723 err = 0;
724out2:
725 dput(dentry);
726out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800727 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 dput(root);
729
730 if (err) {
731 kfree(e);
732 return -EINVAL;
733 }
734 return count;
735}
736
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800737static const struct file_operations bm_register_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 .write = bm_register_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200739 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740};
741
742/* /status */
743
744static ssize_t
745bm_status_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
746{
Qinghuang Feng87113e802009-01-06 14:41:38 -0800747 char *s = enabled ? "enabled\n" : "disabled\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Akinobu Mita92f4c702007-05-09 02:33:32 -0700749 return simple_read_from_buffer(buf, nbytes, ppos, s, strlen(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750}
751
Mike Frysingere6084d42014-12-10 15:52:10 -0800752static ssize_t bm_status_write(struct file *file, const char __user *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 size_t count, loff_t *ppos)
754{
755 int res = parse_command(buffer, count);
756 struct dentry *root;
757
758 switch (res) {
Mike Frysingere6084d42014-12-10 15:52:10 -0800759 case 1:
760 /* Disable all handlers. */
761 enabled = 0;
762 break;
763 case 2:
764 /* Enable all handlers. */
765 enabled = 1;
766 break;
767 case 3:
768 /* Delete all handlers. */
769 root = dget(file->f_path.dentry->d_sb->s_root);
770 mutex_lock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Mike Frysingere6084d42014-12-10 15:52:10 -0800772 while (!list_empty(&entries))
773 kill_node(list_entry(entries.next, Node, list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
Mike Frysingere6084d42014-12-10 15:52:10 -0800775 mutex_unlock(&root->d_inode->i_mutex);
776 dput(root);
777 break;
778 default:
779 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
Mike Frysingere6084d42014-12-10 15:52:10 -0800781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 return count;
783}
784
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800785static const struct file_operations bm_status_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 .read = bm_status_read,
787 .write = bm_status_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200788 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789};
790
791/* Superblock handling */
792
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800793static const struct super_operations s_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 .statfs = simple_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400795 .evict_inode = bm_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796};
797
Mike Frysingere6084d42014-12-10 15:52:10 -0800798static int bm_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Mike Frysingere6084d42014-12-10 15:52:10 -0800800 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 static struct tree_descr bm_files[] = {
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700802 [2] = {"status", &bm_status_operations, S_IWUSR|S_IRUGO},
803 [3] = {"register", &bm_register_operations, S_IWUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 /* last one */ {""}
805 };
Mike Frysingere6084d42014-12-10 15:52:10 -0800806
807 err = simple_fill_super(sb, BINFMTFS_MAGIC, bm_files);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 if (!err)
809 sb->s_op = &s_ops;
810 return err;
811}
812
Al Virofc14f2f2010-07-25 01:48:30 +0400813static struct dentry *bm_mount(struct file_system_type *fs_type,
814 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Al Virofc14f2f2010-07-25 01:48:30 +0400816 return mount_single(fs_type, flags, data, bm_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817}
818
819static struct linux_binfmt misc_format = {
820 .module = THIS_MODULE,
821 .load_binary = load_misc_binary,
822};
823
824static struct file_system_type bm_fs_type = {
825 .owner = THIS_MODULE,
826 .name = "binfmt_misc",
Al Virofc14f2f2010-07-25 01:48:30 +0400827 .mount = bm_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 .kill_sb = kill_litter_super,
829};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800830MODULE_ALIAS_FS("binfmt_misc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
832static int __init init_misc_binfmt(void)
833{
834 int err = register_filesystem(&bm_fs_type);
Al Viro8fc3dc52012-03-17 03:05:16 -0400835 if (!err)
836 insert_binfmt(&misc_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 return err;
838}
839
840static void __exit exit_misc_binfmt(void)
841{
842 unregister_binfmt(&misc_format);
843 unregister_filesystem(&bm_fs_type);
844}
845
846core_initcall(init_misc_binfmt);
847module_exit(exit_misc_binfmt);
848MODULE_LICENSE("GPL");