]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/binfmt_misc.c
checkpatch: avoid "spaces required around that ':'" false positive
[mirror_ubuntu-artful-kernel.git] / fs / binfmt_misc.c
CommitLineData
1da177e4 1/*
e6084d4a 2 * binfmt_misc.c
1da177e4 3 *
e6084d4a 4 * Copyright (C) 1997 Richard Günther
1da177e4 5 *
e6084d4a
MF
6 * binfmt_misc detects binaries via a magic or filename extension and invokes
7 * a specified wrapper. See Documentation/binfmt_misc.txt for more details.
1da177e4
LT
8 */
9
6b899c4e
MF
10#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11
1da177e4
LT
12#include <linux/module.h>
13#include <linux/init.h>
e8edc6e0 14#include <linux/sched.h>
b502bd11 15#include <linux/magic.h>
1da177e4
LT
16#include <linux/binfmts.h>
17#include <linux/slab.h>
18#include <linux/ctype.h>
8d82e180 19#include <linux/string_helpers.h>
1da177e4
LT
20#include <linux/file.h>
21#include <linux/pagemap.h>
22#include <linux/namei.h>
23#include <linux/mount.h>
24#include <linux/syscalls.h>
6e2c10a1 25#include <linux/fs.h>
6b899c4e 26#include <linux/uaccess.h>
1da177e4 27
6b899c4e
MF
28#ifdef DEBUG
29# define USE_DEBUG 1
30#else
31# define USE_DEBUG 0
32#endif
1da177e4
LT
33
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};
e6084d4a
MF
42#define MISC_FMT_PRESERVE_ARGV0 (1 << 31)
43#define MISC_FMT_OPEN_BINARY (1 << 30)
44#define MISC_FMT_CREDENTIALS (1 << 29)
1da177e4
LT
45
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);
1f5ce9e9 59static struct file_system_type bm_fs_type;
1da177e4
LT
60static struct vfsmount *bm_mnt;
61static int entry_count;
62
bbaecc08
MF
63/*
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/*
1da177e4
LT
79 * 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
6b899c4e 88 /* Walk all the registered handlers. */
1da177e4
LT
89 list_for_each(l, &entries) {
90 Node *e = list_entry(l, Node, list);
91 char *s;
92 int j;
93
6b899c4e 94 /* Make sure this one is currently enabled. */
1da177e4
LT
95 if (!test_bit(Enabled, &e->flags))
96 continue;
97
6b899c4e 98 /* Do matching based on extension if applicable. */
1da177e4
LT
99 if (!test_bit(Magic, &e->flags)) {
100 if (p && !strcmp(e->magic, p + 1))
101 return e;
102 continue;
103 }
104
6b899c4e 105 /* Do matching based on magic & mask. */
1da177e4
LT
106 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 */
71613c3b 125static int load_misc_binary(struct linux_binprm *bprm)
1da177e4
LT
126{
127 Node *fmt;
e6084d4a 128 struct file *interp_file = NULL;
1da177e4 129 char iname[BINPRM_BUF_SIZE];
d7627467 130 const char *iname_addr = iname;
1da177e4
LT
131 int retval;
132 int fd_binary = -1;
1da177e4
LT
133
134 retval = -ENOEXEC;
135 if (!enabled)
e6084d4a 136 goto ret;
1da177e4
LT
137
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)
e6084d4a 145 goto ret;
1da177e4 146
51f39a1f
DD
147 /* Need to be able to load the file after exec */
148 if (bprm->interp_flags & BINPRM_FLAGS_PATH_INACCESSIBLE)
149 return -ENOENT;
150
1da177e4 151 if (!(fmt->flags & MISC_FMT_PRESERVE_ARGV0)) {
b6a2fea3
OW
152 retval = remove_arg_zero(bprm);
153 if (retval)
e6084d4a 154 goto ret;
1da177e4
LT
155 }
156
157 if (fmt->flags & MISC_FMT_OPEN_BINARY) {
158
1da177e4
LT
159 /* if the binary should be opened on behalf of the
160 * interpreter than keep it open and assign descriptor
e6084d4a
MF
161 * to it
162 */
c6cb898b 163 fd_binary = get_unused_fd_flags(0);
e6084d4a
MF
164 if (fd_binary < 0) {
165 retval = fd_binary;
166 goto ret;
167 }
168 fd_install(fd_binary, bprm->file);
1da177e4
LT
169
170 /* if the binary is not readable than enforce mm->dumpable=0
171 regardless of the interpreter's permissions */
1b5d783c 172 would_dump(bprm, bprm->file);
1da177e4
LT
173
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
e6084d4a
MF
181 } else {
182 allow_write_access(bprm->file);
183 fput(bprm->file);
184 bprm->file = NULL;
185 }
1da177e4 186 /* make argv[1] be the path to the binary */
e6084d4a 187 retval = copy_strings_kernel(1, &bprm->interp, bprm);
1da177e4 188 if (retval < 0)
e6084d4a 189 goto error;
1da177e4
LT
190 bprm->argc++;
191
192 /* add the interp as argv[0] */
e6084d4a 193 retval = copy_strings_kernel(1, &iname_addr, bprm);
1da177e4 194 if (retval < 0)
e6084d4a
MF
195 goto error;
196 bprm->argc++;
1da177e4 197
b66c5984
KC
198 /* Update interp in case binfmt_script needs it. */
199 retval = bprm_change_interp(iname, bprm);
200 if (retval < 0)
e6084d4a 201 goto error;
1da177e4 202
e6084d4a
MF
203 interp_file = open_exec(iname);
204 retval = PTR_ERR(interp_file);
205 if (IS_ERR(interp_file))
206 goto error;
1da177e4
LT
207
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
e6084d4a 217 retval = prepare_binprm(bprm);
1da177e4
LT
218
219 if (retval < 0)
e6084d4a 220 goto error;
1da177e4 221
3c456bfc 222 retval = search_binary_handler(bprm);
1da177e4 223 if (retval < 0)
e6084d4a 224 goto error;
1da177e4 225
e6084d4a 226ret:
1da177e4 227 return retval;
e6084d4a 228error:
1da177e4
LT
229 if (fd_binary > 0)
230 sys_close(fd_binary);
231 bprm->interp_flags = 0;
232 bprm->interp_data = 0;
e6084d4a 233 goto ret;
1da177e4
LT
234}
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 }
7d65cf10 257 s[-1] ='\0';
1da177e4
LT
258 return s;
259}
260
e6084d4a 261static char *check_special_flags(char *sfs, Node *e)
1da177e4 262{
e6084d4a 263 char *p = sfs;
1da177e4
LT
264 int cont = 1;
265
266 /* special flags */
267 while (cont) {
268 switch (*p) {
e6084d4a
MF
269 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;
1da177e4
LT
289 }
290 }
291
292 return p;
293}
e6084d4a 294
1da177e4
LT
295/*
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
6b899c4e
MF
307 pr_debug("register: received %zu bytes\n", count);
308
1da177e4
LT
309 /* some sanity checks */
310 err = -EINVAL;
bbaecc08 311 if ((count < 11) || (count > MAX_REGISTER_LENGTH))
1da177e4
LT
312 goto out;
313
314 err = -ENOMEM;
315 memsize = sizeof(Node) + count + 8;
f7e1ad1a 316 e = kmalloc(memsize, GFP_KERNEL);
1da177e4
LT
317 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))
e6084d4a 324 goto efault;
1da177e4
LT
325
326 del = *p++; /* delimeter */
327
6b899c4e
MF
328 pr_debug("register: delim: %#x {%c}\n", del, del);
329
330 /* Pad the buffer with the delim to simplify parsing below. */
e6084d4a 331 memset(buf + count, del, 8);
1da177e4 332
6b899c4e 333 /* Parse the 'name' field. */
1da177e4
LT
334 e->name = p;
335 p = strchr(p, del);
336 if (!p)
e6084d4a 337 goto einval;
1da177e4
LT
338 *p++ = '\0';
339 if (!e->name[0] ||
340 !strcmp(e->name, ".") ||
341 !strcmp(e->name, "..") ||
342 strchr(e->name, '/'))
e6084d4a 343 goto einval;
6b899c4e
MF
344
345 pr_debug("register: name: {%s}\n", e->name);
346
347 /* Parse the 'type' field. */
1da177e4 348 switch (*p++) {
6b899c4e
MF
349 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:
e6084d4a 358 goto einval;
1da177e4
LT
359 }
360 if (*p++ != del)
e6084d4a 361 goto einval;
6b899c4e 362
1da177e4 363 if (test_bit(Magic, &e->flags)) {
6b899c4e
MF
364 /* Handle the 'M' (magic) format. */
365 char *s;
366
367 /* Parse the 'offset' field. */
368 s = strchr(p, del);
1da177e4 369 if (!s)
e6084d4a 370 goto einval;
1da177e4
LT
371 *s++ = '\0';
372 e->offset = simple_strtoul(p, &p, 10);
373 if (*p++)
e6084d4a 374 goto einval;
6b899c4e
MF
375 pr_debug("register: offset: %#x\n", e->offset);
376
377 /* Parse the 'magic' field. */
1da177e4
LT
378 e->magic = p;
379 p = scanarg(p, del);
380 if (!p)
e6084d4a 381 goto einval;
7d65cf10 382 if (!e->magic[0])
e6084d4a 383 goto einval;
6b899c4e
MF
384 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. */
1da177e4
LT
390 e->mask = p;
391 p = scanarg(p, del);
392 if (!p)
e6084d4a 393 goto einval;
7d65cf10 394 if (!e->mask[0]) {
1da177e4 395 e->mask = NULL;
6b899c4e
MF
396 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 */
8d82e180
AS
408 e->size = string_unescape_inplace(e->magic, UNESCAPE_HEX);
409 if (e->mask &&
410 string_unescape_inplace(e->mask, UNESCAPE_HEX) != e->size)
e6084d4a 411 goto einval;
1da177e4 412 if (e->size + e->offset > BINPRM_BUF_SIZE)
e6084d4a 413 goto einval;
6b899c4e
MF
414 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;
f7e1ad1a 422 char *masked = kmalloc(e->size, GFP_KERNEL);
6b899c4e
MF
423
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 }
1da177e4 439 } else {
6b899c4e
MF
440 /* Handle the 'E' (extension) format. */
441
442 /* Skip the 'offset' field. */
1da177e4
LT
443 p = strchr(p, del);
444 if (!p)
e6084d4a 445 goto einval;
1da177e4 446 *p++ = '\0';
6b899c4e
MF
447
448 /* Parse the 'magic' field. */
1da177e4
LT
449 e->magic = p;
450 p = strchr(p, del);
451 if (!p)
e6084d4a 452 goto einval;
1da177e4
LT
453 *p++ = '\0';
454 if (!e->magic[0] || strchr(e->magic, '/'))
e6084d4a 455 goto einval;
6b899c4e
MF
456 pr_debug("register: extension: {%s}\n", e->magic);
457
458 /* Skip the 'mask' field. */
1da177e4
LT
459 p = strchr(p, del);
460 if (!p)
e6084d4a 461 goto einval;
1da177e4
LT
462 *p++ = '\0';
463 }
6b899c4e
MF
464
465 /* Parse the 'interpreter' field. */
1da177e4
LT
466 e->interpreter = p;
467 p = strchr(p, del);
468 if (!p)
e6084d4a 469 goto einval;
1da177e4
LT
470 *p++ = '\0';
471 if (!e->interpreter[0])
e6084d4a 472 goto einval;
6b899c4e 473 pr_debug("register: interpreter: {%s}\n", e->interpreter);
1da177e4 474
6b899c4e 475 /* Parse the 'flags' field. */
e6084d4a 476 p = check_special_flags(p, e);
1da177e4
LT
477 if (*p == '\n')
478 p++;
479 if (p != buf + count)
e6084d4a
MF
480 goto einval;
481
1da177e4
LT
482 return e;
483
484out:
485 return ERR_PTR(err);
486
e6084d4a 487efault:
1da177e4
LT
488 kfree(e);
489 return ERR_PTR(-EFAULT);
e6084d4a 490einval:
1da177e4
LT
491 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
1da177e4
LT
503 if (count > 3)
504 return -EINVAL;
505 if (copy_from_user(s, buffer, count))
506 return -EFAULT;
de8288b1
AB
507 if (!count)
508 return 0;
e6084d4a 509 if (s[count - 1] == '\n')
1da177e4
LT
510 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";
e6084d4a 526 const char *flags = "flags: ";
1da177e4
LT
527
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 */
e6084d4a
MF
540 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';
1da177e4
LT
549
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{
e6084d4a 576 struct inode *inode = new_inode(sb);
1da177e4
LT
577
578 if (inode) {
85fe4025 579 inode->i_ino = get_next_ino();
1da177e4 580 inode->i_mode = mode;
1da177e4
LT
581 inode->i_atime = inode->i_mtime = inode->i_ctime =
582 current_fs_time(inode->i_sb);
583 }
584 return inode;
585}
586
b57922d9 587static void bm_evict_inode(struct inode *inode)
1da177e4 588{
dbd5768f 589 clear_inode(inode);
8e18e294 590 kfree(inode->i_private);
1da177e4
LT
591}
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) {
6d6b77f1 606 drop_nlink(dentry->d_inode);
1da177e4
LT
607 d_drop(dentry);
608 dput(dentry);
609 simple_release_fs(&bm_mnt, &entry_count);
610 }
611}
612
613/* /<entry> */
614
615static ssize_t
e6084d4a 616bm_entry_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
1da177e4 617{
496ad9aa 618 Node *e = file_inode(file)->i_private;
1da177e4
LT
619 ssize_t res;
620 char *page;
1da177e4 621
e6084d4a
MF
622 page = (char *) __get_free_page(GFP_KERNEL);
623 if (!page)
1da177e4
LT
624 return -ENOMEM;
625
626 entry_status(e, page);
1da177e4 627
6e2c10a1
AM
628 res = simple_read_from_buffer(buf, nbytes, ppos, page, strlen(page));
629
1da177e4
LT
630 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;
496ad9aa 638 Node *e = file_inode(file)->i_private;
1da177e4
LT
639 int res = parse_command(buffer, count);
640
641 switch (res) {
e6084d4a
MF
642 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);
1da177e4 654
e6084d4a 655 kill_node(e);
1da177e4 656
e6084d4a
MF
657 mutex_unlock(&root->d_inode->i_mutex);
658 dput(root);
659 break;
660 default:
661 return res;
1da177e4 662 }
e6084d4a 663
1da177e4
LT
664 return count;
665}
666
4b6f5d20 667static const struct file_operations bm_entry_operations = {
1da177e4
LT
668 .read = bm_entry_read,
669 .write = bm_entry_write,
6038f373 670 .llseek = default_llseek,
1da177e4
LT
671};
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;
d8c9584e 681 struct super_block *sb = file->f_path.dentry->d_sb;
1da177e4
LT
682 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);
1b1dcc1b 690 mutex_lock(&root->d_inode->i_mutex);
1da177e4
LT
691 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
1f5ce9e9 706 err = simple_pin_fs(&bm_fs_type, &bm_mnt, &entry_count);
1da177e4
LT
707 if (err) {
708 iput(inode);
709 inode = NULL;
710 goto out2;
711 }
712
713 e->dentry = dget(dentry);
8e18e294 714 inode->i_private = e;
1da177e4
LT
715 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:
1b1dcc1b 726 mutex_unlock(&root->d_inode->i_mutex);
1da177e4
LT
727 dput(root);
728
729 if (err) {
730 kfree(e);
731 return -EINVAL;
732 }
733 return count;
734}
735
4b6f5d20 736static const struct file_operations bm_register_operations = {
1da177e4 737 .write = bm_register_write,
6038f373 738 .llseek = noop_llseek,
1da177e4
LT
739};
740
741/* /status */
742
743static ssize_t
744bm_status_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
745{
87113e80 746 char *s = enabled ? "enabled\n" : "disabled\n";
1da177e4 747
92f4c701 748 return simple_read_from_buffer(buf, nbytes, ppos, s, strlen(s));
1da177e4
LT
749}
750
e6084d4a 751static ssize_t bm_status_write(struct file *file, const char __user *buffer,
1da177e4
LT
752 size_t count, loff_t *ppos)
753{
754 int res = parse_command(buffer, count);
755 struct dentry *root;
756
757 switch (res) {
e6084d4a
MF
758 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);
1da177e4 770
e6084d4a
MF
771 while (!list_empty(&entries))
772 kill_node(list_entry(entries.next, Node, list));
1da177e4 773
e6084d4a
MF
774 mutex_unlock(&root->d_inode->i_mutex);
775 dput(root);
776 break;
777 default:
778 return res;
1da177e4 779 }
e6084d4a 780
1da177e4
LT
781 return count;
782}
783
4b6f5d20 784static const struct file_operations bm_status_operations = {
1da177e4
LT
785 .read = bm_status_read,
786 .write = bm_status_write,
6038f373 787 .llseek = default_llseek,
1da177e4
LT
788};
789
790/* Superblock handling */
791
ee9b6d61 792static const struct super_operations s_ops = {
1da177e4 793 .statfs = simple_statfs,
b57922d9 794 .evict_inode = bm_evict_inode,
1da177e4
LT
795};
796
e6084d4a 797static int bm_fill_super(struct super_block *sb, void *data, int silent)
1da177e4 798{
e6084d4a 799 int err;
1da177e4 800 static struct tree_descr bm_files[] = {
1a1c9bb4
JL
801 [2] = {"status", &bm_status_operations, S_IWUSR|S_IRUGO},
802 [3] = {"register", &bm_register_operations, S_IWUSR},
1da177e4
LT
803 /* last one */ {""}
804 };
e6084d4a
MF
805
806 err = simple_fill_super(sb, BINFMTFS_MAGIC, bm_files);
1da177e4
LT
807 if (!err)
808 sb->s_op = &s_ops;
809 return err;
810}
811
fc14f2fe
AV
812static struct dentry *bm_mount(struct file_system_type *fs_type,
813 int flags, const char *dev_name, void *data)
1da177e4 814{
fc14f2fe 815 return mount_single(fs_type, flags, data, bm_fill_super);
1da177e4
LT
816}
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",
fc14f2fe 826 .mount = bm_mount,
1da177e4
LT
827 .kill_sb = kill_litter_super,
828};
7f78e035 829MODULE_ALIAS_FS("binfmt_misc");
1da177e4
LT
830
831static int __init init_misc_binfmt(void)
832{
833 int err = register_filesystem(&bm_fs_type);
8fc3dc5a
AV
834 if (!err)
835 insert_binfmt(&misc_format);
1da177e4
LT
836 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");