blob: 97aff2879cda3c1f9295d6e480a4e737e48e3df2 [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 }
Al Viro7d65cf12014-12-17 05:29:16 -0500257 s[-1] ='\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return s;
259}
260
Mike Frysingere6084d42014-12-10 15:52:10 -0800261static char *check_special_flags(char *sfs, Node *e)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262{
Mike Frysingere6084d42014-12-10 15:52:10 -0800263 char *p = sfs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 int cont = 1;
265
266 /* special flags */
267 while (cont) {
268 switch (*p) {
Mike Frysingere6084d42014-12-10 15:52:10 -0800269 case 'P':
270 pr_debug("register: flag: P (preserve argv0)\n");
271 p++;
272 e->flags |= MISC_FMT_PRESERVE_ARGV0;
273 break;
274 case 'O':
275 pr_debug("register: flag: O (open binary)\n");
276 p++;
277 e->flags |= MISC_FMT_OPEN_BINARY;
278 break;
279 case 'C':
280 pr_debug("register: flag: C (preserve creds)\n");
281 p++;
282 /* this flags also implies the
283 open-binary flag */
284 e->flags |= (MISC_FMT_CREDENTIALS |
285 MISC_FMT_OPEN_BINARY);
286 break;
287 default:
288 cont = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290 }
291
292 return p;
293}
Mike Frysingere6084d42014-12-10 15:52:10 -0800294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295/*
296 * This registers a new binary format, it recognises the syntax
297 * ':name:type:offset:magic:mask:interpreter:flags'
298 * where the ':' is the IFS, that can be chosen with the first char
299 */
300static Node *create_entry(const char __user *buffer, size_t count)
301{
302 Node *e;
303 int memsize, err;
304 char *buf, *p;
305 char del;
306
Mike Frysinger6b899c42014-12-10 15:52:08 -0800307 pr_debug("register: received %zu bytes\n", count);
308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* some sanity checks */
310 err = -EINVAL;
Mike Frysingerbbaecc02014-10-13 15:52:03 -0700311 if ((count < 11) || (count > MAX_REGISTER_LENGTH))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 goto out;
313
314 err = -ENOMEM;
315 memsize = sizeof(Node) + count + 8;
Andrew Mortonf7e1ad12014-12-10 15:52:13 -0800316 e = kmalloc(memsize, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 if (!e)
318 goto out;
319
320 p = buf = (char *)e + sizeof(Node);
321
322 memset(e, 0, sizeof(Node));
323 if (copy_from_user(buf, buffer, count))
Mike Frysingere6084d42014-12-10 15:52:10 -0800324 goto efault;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
326 del = *p++; /* delimeter */
327
Mike Frysinger6b899c42014-12-10 15:52:08 -0800328 pr_debug("register: delim: %#x {%c}\n", del, del);
329
330 /* Pad the buffer with the delim to simplify parsing below. */
Mike Frysingere6084d42014-12-10 15:52:10 -0800331 memset(buf + count, del, 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Mike Frysinger6b899c42014-12-10 15:52:08 -0800333 /* Parse the 'name' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 e->name = p;
335 p = strchr(p, del);
336 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800337 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 *p++ = '\0';
339 if (!e->name[0] ||
340 !strcmp(e->name, ".") ||
341 !strcmp(e->name, "..") ||
342 strchr(e->name, '/'))
Mike Frysingere6084d42014-12-10 15:52:10 -0800343 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800344
345 pr_debug("register: name: {%s}\n", e->name);
346
347 /* Parse the 'type' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 switch (*p++) {
Mike Frysinger6b899c42014-12-10 15:52:08 -0800349 case 'E':
350 pr_debug("register: type: E (extension)\n");
351 e->flags = 1 << Enabled;
352 break;
353 case 'M':
354 pr_debug("register: type: M (magic)\n");
355 e->flags = (1 << Enabled) | (1 << Magic);
356 break;
357 default:
Mike Frysingere6084d42014-12-10 15:52:10 -0800358 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 }
360 if (*p++ != del)
Mike Frysingere6084d42014-12-10 15:52:10 -0800361 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800362
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 if (test_bit(Magic, &e->flags)) {
Mike Frysinger6b899c42014-12-10 15:52:08 -0800364 /* Handle the 'M' (magic) format. */
365 char *s;
366
367 /* Parse the 'offset' field. */
368 s = strchr(p, del);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 if (!s)
Mike Frysingere6084d42014-12-10 15:52:10 -0800370 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 *s++ = '\0';
372 e->offset = simple_strtoul(p, &p, 10);
373 if (*p++)
Mike Frysingere6084d42014-12-10 15:52:10 -0800374 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800375 pr_debug("register: offset: %#x\n", e->offset);
376
377 /* Parse the 'magic' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 e->magic = p;
379 p = scanarg(p, del);
380 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800381 goto einval;
Al Viro7d65cf12014-12-17 05:29:16 -0500382 if (!e->magic[0])
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;
Al Viro7d65cf12014-12-17 05:29:16 -0500394 if (!e->mask[0]) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 e->mask = NULL;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800396 pr_debug("register: mask[raw]: none\n");
397 } else if (USE_DEBUG)
398 print_hex_dump_bytes(
399 KBUILD_MODNAME ": register: mask[raw]: ",
400 DUMP_PREFIX_NONE, e->mask, p - e->mask);
401
402 /*
403 * Decode the magic & mask fields.
404 * Note: while we might have accepted embedded NUL bytes from
405 * above, the unescape helpers here will stop at the first one
406 * it encounters.
407 */
Andy Shevchenko8d82e182013-04-30 15:27:33 -0700408 e->size = string_unescape_inplace(e->magic, UNESCAPE_HEX);
409 if (e->mask &&
410 string_unescape_inplace(e->mask, UNESCAPE_HEX) != e->size)
Mike Frysingere6084d42014-12-10 15:52:10 -0800411 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 if (e->size + e->offset > BINPRM_BUF_SIZE)
Mike Frysingere6084d42014-12-10 15:52:10 -0800413 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800414 pr_debug("register: magic/mask length: %i\n", e->size);
415 if (USE_DEBUG) {
416 print_hex_dump_bytes(
417 KBUILD_MODNAME ": register: magic[decoded]: ",
418 DUMP_PREFIX_NONE, e->magic, e->size);
419
420 if (e->mask) {
421 int i;
Andrew Mortonf7e1ad12014-12-10 15:52:13 -0800422 char *masked = kmalloc(e->size, GFP_KERNEL);
Mike Frysinger6b899c42014-12-10 15:52:08 -0800423
424 print_hex_dump_bytes(
425 KBUILD_MODNAME ": register: mask[decoded]: ",
426 DUMP_PREFIX_NONE, e->mask, e->size);
427
428 if (masked) {
429 for (i = 0; i < e->size; ++i)
430 masked[i] = e->magic[i] & e->mask[i];
431 print_hex_dump_bytes(
432 KBUILD_MODNAME ": register: magic[masked]: ",
433 DUMP_PREFIX_NONE, masked, e->size);
434
435 kfree(masked);
436 }
437 }
438 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 } else {
Mike Frysinger6b899c42014-12-10 15:52:08 -0800440 /* Handle the 'E' (extension) format. */
441
442 /* Skip the 'offset' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 p = strchr(p, del);
444 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800445 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 *p++ = '\0';
Mike Frysinger6b899c42014-12-10 15:52:08 -0800447
448 /* Parse the 'magic' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 e->magic = p;
450 p = strchr(p, del);
451 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800452 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 *p++ = '\0';
454 if (!e->magic[0] || strchr(e->magic, '/'))
Mike Frysingere6084d42014-12-10 15:52:10 -0800455 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800456 pr_debug("register: extension: {%s}\n", e->magic);
457
458 /* Skip the 'mask' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 p = strchr(p, del);
460 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800461 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 *p++ = '\0';
463 }
Mike Frysinger6b899c42014-12-10 15:52:08 -0800464
465 /* Parse the 'interpreter' field. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 e->interpreter = p;
467 p = strchr(p, del);
468 if (!p)
Mike Frysingere6084d42014-12-10 15:52:10 -0800469 goto einval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 *p++ = '\0';
471 if (!e->interpreter[0])
Mike Frysingere6084d42014-12-10 15:52:10 -0800472 goto einval;
Mike Frysinger6b899c42014-12-10 15:52:08 -0800473 pr_debug("register: interpreter: {%s}\n", e->interpreter);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Mike Frysinger6b899c42014-12-10 15:52:08 -0800475 /* Parse the 'flags' field. */
Mike Frysingere6084d42014-12-10 15:52:10 -0800476 p = check_special_flags(p, e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 if (*p == '\n')
478 p++;
479 if (p != buf + count)
Mike Frysingere6084d42014-12-10 15:52:10 -0800480 goto einval;
481
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 return e;
483
484out:
485 return ERR_PTR(err);
486
Mike Frysingere6084d42014-12-10 15:52:10 -0800487efault:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 kfree(e);
489 return ERR_PTR(-EFAULT);
Mike Frysingere6084d42014-12-10 15:52:10 -0800490einval:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 kfree(e);
492 return ERR_PTR(-EINVAL);
493}
494
495/*
496 * Set status of entry/binfmt_misc:
497 * '1' enables, '0' disables and '-1' clears entry/binfmt_misc
498 */
499static int parse_command(const char __user *buffer, size_t count)
500{
501 char s[4];
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 if (count > 3)
504 return -EINVAL;
505 if (copy_from_user(s, buffer, count))
506 return -EFAULT;
Arnd Bergmannde8288b2014-10-13 15:52:08 -0700507 if (!count)
508 return 0;
Mike Frysingere6084d42014-12-10 15:52:10 -0800509 if (s[count - 1] == '\n')
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 count--;
511 if (count == 1 && s[0] == '0')
512 return 1;
513 if (count == 1 && s[0] == '1')
514 return 2;
515 if (count == 2 && s[0] == '-' && s[1] == '1')
516 return 3;
517 return -EINVAL;
518}
519
520/* generic stuff */
521
522static void entry_status(Node *e, char *page)
523{
524 char *dp;
525 char *status = "disabled";
Mike Frysingere6084d42014-12-10 15:52:10 -0800526 const char *flags = "flags: ";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
528 if (test_bit(Enabled, &e->flags))
529 status = "enabled";
530
531 if (!VERBOSE_STATUS) {
532 sprintf(page, "%s\n", status);
533 return;
534 }
535
536 sprintf(page, "%s\ninterpreter %s\n", status, e->interpreter);
537 dp = page + strlen(page);
538
539 /* print the special flags */
Mike Frysingere6084d42014-12-10 15:52:10 -0800540 sprintf(dp, "%s", flags);
541 dp += strlen(flags);
542 if (e->flags & MISC_FMT_PRESERVE_ARGV0)
543 *dp++ = 'P';
544 if (e->flags & MISC_FMT_OPEN_BINARY)
545 *dp++ = 'O';
546 if (e->flags & MISC_FMT_CREDENTIALS)
547 *dp++ = 'C';
548 *dp++ = '\n';
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549
550 if (!test_bit(Magic, &e->flags)) {
551 sprintf(dp, "extension .%s\n", e->magic);
552 } else {
553 int i;
554
555 sprintf(dp, "offset %i\nmagic ", e->offset);
556 dp = page + strlen(page);
557 for (i = 0; i < e->size; i++) {
558 sprintf(dp, "%02x", 0xff & (int) (e->magic[i]));
559 dp += 2;
560 }
561 if (e->mask) {
562 sprintf(dp, "\nmask ");
563 dp += 6;
564 for (i = 0; i < e->size; i++) {
565 sprintf(dp, "%02x", 0xff & (int) (e->mask[i]));
566 dp += 2;
567 }
568 }
569 *dp++ = '\n';
570 *dp = '\0';
571 }
572}
573
574static struct inode *bm_get_inode(struct super_block *sb, int mode)
575{
Mike Frysingere6084d42014-12-10 15:52:10 -0800576 struct inode *inode = new_inode(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578 if (inode) {
Christoph Hellwig85fe4022010-10-23 11:19:54 -0400579 inode->i_ino = get_next_ino();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 inode->i_mode = mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 inode->i_atime = inode->i_mtime = inode->i_ctime =
582 current_fs_time(inode->i_sb);
583 }
584 return inode;
585}
586
Al Virob57922d2010-06-07 14:34:48 -0400587static void bm_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
Jan Karadbd57682012-05-03 14:48:02 +0200589 clear_inode(inode);
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700590 kfree(inode->i_private);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
593static void kill_node(Node *e)
594{
595 struct dentry *dentry;
596
597 write_lock(&entries_lock);
598 dentry = e->dentry;
599 if (dentry) {
600 list_del_init(&e->list);
601 e->dentry = NULL;
602 }
603 write_unlock(&entries_lock);
604
605 if (dentry) {
Miklos Szeredi6d6b77f2011-10-28 14:13:28 +0200606 drop_nlink(dentry->d_inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 d_drop(dentry);
608 dput(dentry);
609 simple_release_fs(&bm_mnt, &entry_count);
610 }
611}
612
613/* /<entry> */
614
615static ssize_t
Mike Frysingere6084d42014-12-10 15:52:10 -0800616bm_entry_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617{
Al Viro496ad9a2013-01-23 17:07:38 -0500618 Node *e = file_inode(file)->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619 ssize_t res;
620 char *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Mike Frysingere6084d42014-12-10 15:52:10 -0800622 page = (char *) __get_free_page(GFP_KERNEL);
623 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return -ENOMEM;
625
626 entry_status(e, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627
Akinobu Mita6e2c10a2008-07-23 21:29:15 -0700628 res = simple_read_from_buffer(buf, nbytes, ppos, page, strlen(page));
629
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630 free_page((unsigned long) page);
631 return res;
632}
633
634static ssize_t bm_entry_write(struct file *file, const char __user *buffer,
635 size_t count, loff_t *ppos)
636{
637 struct dentry *root;
Al Viro496ad9a2013-01-23 17:07:38 -0500638 Node *e = file_inode(file)->i_private;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639 int res = parse_command(buffer, count);
640
641 switch (res) {
Mike Frysingere6084d42014-12-10 15:52:10 -0800642 case 1:
643 /* Disable this handler. */
644 clear_bit(Enabled, &e->flags);
645 break;
646 case 2:
647 /* Enable this handler. */
648 set_bit(Enabled, &e->flags);
649 break;
650 case 3:
651 /* Delete this handler. */
652 root = dget(file->f_path.dentry->d_sb->s_root);
653 mutex_lock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654
Mike Frysingere6084d42014-12-10 15:52:10 -0800655 kill_node(e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Mike Frysingere6084d42014-12-10 15:52:10 -0800657 mutex_unlock(&root->d_inode->i_mutex);
658 dput(root);
659 break;
660 default:
661 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
Mike Frysingere6084d42014-12-10 15:52:10 -0800663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 return count;
665}
666
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800667static const struct file_operations bm_entry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 .read = bm_entry_read,
669 .write = bm_entry_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200670 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671};
672
673/* /register */
674
675static ssize_t bm_register_write(struct file *file, const char __user *buffer,
676 size_t count, loff_t *ppos)
677{
678 Node *e;
679 struct inode *inode;
680 struct dentry *root, *dentry;
Al Virod8c95842011-12-07 18:16:57 -0500681 struct super_block *sb = file->f_path.dentry->d_sb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 int err = 0;
683
684 e = create_entry(buffer, count);
685
686 if (IS_ERR(e))
687 return PTR_ERR(e);
688
689 root = dget(sb->s_root);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800690 mutex_lock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 dentry = lookup_one_len(e->name, root, strlen(e->name));
692 err = PTR_ERR(dentry);
693 if (IS_ERR(dentry))
694 goto out;
695
696 err = -EEXIST;
697 if (dentry->d_inode)
698 goto out2;
699
700 inode = bm_get_inode(sb, S_IFREG | 0644);
701
702 err = -ENOMEM;
703 if (!inode)
704 goto out2;
705
Trond Myklebust1f5ce9e2006-06-09 09:34:16 -0400706 err = simple_pin_fs(&bm_fs_type, &bm_mnt, &entry_count);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (err) {
708 iput(inode);
709 inode = NULL;
710 goto out2;
711 }
712
713 e->dentry = dget(dentry);
Theodore Ts'o8e18e292006-09-27 01:50:46 -0700714 inode->i_private = e;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 inode->i_fop = &bm_entry_operations;
716
717 d_instantiate(dentry, inode);
718 write_lock(&entries_lock);
719 list_add(&e->list, &entries);
720 write_unlock(&entries_lock);
721
722 err = 0;
723out2:
724 dput(dentry);
725out:
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800726 mutex_unlock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 dput(root);
728
729 if (err) {
730 kfree(e);
731 return -EINVAL;
732 }
733 return count;
734}
735
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800736static const struct file_operations bm_register_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 .write = bm_register_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200738 .llseek = noop_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739};
740
741/* /status */
742
743static ssize_t
744bm_status_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
745{
Qinghuang Feng87113e802009-01-06 14:41:38 -0800746 char *s = enabled ? "enabled\n" : "disabled\n";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Akinobu Mita92f4c702007-05-09 02:33:32 -0700748 return simple_read_from_buffer(buf, nbytes, ppos, s, strlen(s));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749}
750
Mike Frysingere6084d42014-12-10 15:52:10 -0800751static ssize_t bm_status_write(struct file *file, const char __user *buffer,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 size_t count, loff_t *ppos)
753{
754 int res = parse_command(buffer, count);
755 struct dentry *root;
756
757 switch (res) {
Mike Frysingere6084d42014-12-10 15:52:10 -0800758 case 1:
759 /* Disable all handlers. */
760 enabled = 0;
761 break;
762 case 2:
763 /* Enable all handlers. */
764 enabled = 1;
765 break;
766 case 3:
767 /* Delete all handlers. */
768 root = dget(file->f_path.dentry->d_sb->s_root);
769 mutex_lock(&root->d_inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
Mike Frysingere6084d42014-12-10 15:52:10 -0800771 while (!list_empty(&entries))
772 kill_node(list_entry(entries.next, Node, list));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773
Mike Frysingere6084d42014-12-10 15:52:10 -0800774 mutex_unlock(&root->d_inode->i_mutex);
775 dput(root);
776 break;
777 default:
778 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
Mike Frysingere6084d42014-12-10 15:52:10 -0800780
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 return count;
782}
783
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800784static const struct file_operations bm_status_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 .read = bm_status_read,
786 .write = bm_status_write,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200787 .llseek = default_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788};
789
790/* Superblock handling */
791
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800792static const struct super_operations s_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 .statfs = simple_statfs,
Al Virob57922d2010-06-07 14:34:48 -0400794 .evict_inode = bm_evict_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795};
796
Mike Frysingere6084d42014-12-10 15:52:10 -0800797static int bm_fill_super(struct super_block *sb, void *data, int silent)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
Mike Frysingere6084d42014-12-10 15:52:10 -0800799 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 static struct tree_descr bm_files[] = {
Jeff Layton1a1c9bb2007-05-08 00:32:31 -0700801 [2] = {"status", &bm_status_operations, S_IWUSR|S_IRUGO},
802 [3] = {"register", &bm_register_operations, S_IWUSR},
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 /* last one */ {""}
804 };
Mike Frysingere6084d42014-12-10 15:52:10 -0800805
806 err = simple_fill_super(sb, BINFMTFS_MAGIC, bm_files);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 if (!err)
808 sb->s_op = &s_ops;
809 return err;
810}
811
Al Virofc14f2f2010-07-25 01:48:30 +0400812static struct dentry *bm_mount(struct file_system_type *fs_type,
813 int flags, const char *dev_name, void *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Al Virofc14f2f2010-07-25 01:48:30 +0400815 return mount_single(fs_type, flags, data, bm_fill_super);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816}
817
818static struct linux_binfmt misc_format = {
819 .module = THIS_MODULE,
820 .load_binary = load_misc_binary,
821};
822
823static struct file_system_type bm_fs_type = {
824 .owner = THIS_MODULE,
825 .name = "binfmt_misc",
Al Virofc14f2f2010-07-25 01:48:30 +0400826 .mount = bm_mount,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 .kill_sb = kill_litter_super,
828};
Eric W. Biederman7f78e032013-03-02 19:39:14 -0800829MODULE_ALIAS_FS("binfmt_misc");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830
831static int __init init_misc_binfmt(void)
832{
833 int err = register_filesystem(&bm_fs_type);
Al Viro8fc3dc52012-03-17 03:05:16 -0400834 if (!err)
835 insert_binfmt(&misc_format);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 return err;
837}
838
839static void __exit exit_misc_binfmt(void)
840{
841 unregister_binfmt(&misc_format);
842 unregister_filesystem(&bm_fs_type);
843}
844
845core_initcall(init_misc_binfmt);
846module_exit(exit_misc_binfmt);
847MODULE_LICENSE("GPL");