4 * Copyright (C) 1997 Richard Günther
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.
10 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
12 #include <linux/module.h>
13 #include <linux/init.h>
14 #include <linux/sched.h>
15 #include <linux/magic.h>
16 #include <linux/binfmts.h>
17 #include <linux/slab.h>
18 #include <linux/ctype.h>
19 #include <linux/string_helpers.h>
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>
26 #include <linux/uaccess.h>
35 VERBOSE_STATUS
= 1 /* make it zero to save 400 bytes kernel memory */
38 static LIST_HEAD(entries
);
39 static int enabled
= 1;
41 enum {Enabled
, Magic
};
42 #define MISC_FMT_PRESERVE_ARGV0 (1 << 31)
43 #define MISC_FMT_OPEN_BINARY (1 << 30)
44 #define MISC_FMT_CREDENTIALS (1 << 29)
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 */
55 struct dentry
*dentry
;
58 static DEFINE_RWLOCK(entries_lock
);
59 static struct file_system_type bm_fs_type
;
60 static struct vfsmount
*bm_mnt
;
61 static int entry_count
;
64 * Max length of the register string. Determined by:
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)
73 * Round that up a bit, and then back off to hold the internal data
76 #define MAX_REGISTER_LENGTH 1920
79 * Check if we support the binfmt
80 * if we do, return the node, else NULL
81 * locking is done in load_misc_binary
83 static Node
*check_file(struct linux_binprm
*bprm
)
85 char *p
= strrchr(bprm
->interp
, '.');
88 /* Walk all the registered handlers. */
89 list_for_each(l
, &entries
) {
90 Node
*e
= list_entry(l
, Node
, list
);
94 /* Make sure this one is currently enabled. */
95 if (!test_bit(Enabled
, &e
->flags
))
98 /* Do matching based on extension if applicable. */
99 if (!test_bit(Magic
, &e
->flags
)) {
100 if (p
&& !strcmp(e
->magic
, p
+ 1))
105 /* Do matching based on magic & mask. */
106 s
= bprm
->buf
+ e
->offset
;
108 for (j
= 0; j
< e
->size
; j
++)
109 if ((*s
++ ^ e
->magic
[j
]) & e
->mask
[j
])
112 for (j
= 0; j
< e
->size
; j
++)
113 if ((*s
++ ^ e
->magic
[j
]))
125 static int load_misc_binary(struct linux_binprm
*bprm
)
128 struct file
*interp_file
= NULL
;
129 char iname
[BINPRM_BUF_SIZE
];
130 const char *iname_addr
= iname
;
138 /* to keep locking time low, we copy the interpreter string */
139 read_lock(&entries_lock
);
140 fmt
= check_file(bprm
);
142 strlcpy(iname
, fmt
->interpreter
, BINPRM_BUF_SIZE
);
143 read_unlock(&entries_lock
);
147 /* Need to be able to load the file after exec */
148 if (bprm
->interp_flags
& BINPRM_FLAGS_PATH_INACCESSIBLE
)
151 if (!(fmt
->flags
& MISC_FMT_PRESERVE_ARGV0
)) {
152 retval
= remove_arg_zero(bprm
);
157 if (fmt
->flags
& MISC_FMT_OPEN_BINARY
) {
159 /* if the binary should be opened on behalf of the
160 * interpreter than keep it open and assign descriptor
163 fd_binary
= get_unused_fd_flags(0);
168 fd_install(fd_binary
, bprm
->file
);
170 /* if the binary is not readable than enforce mm->dumpable=0
171 regardless of the interpreter's permissions */
172 would_dump(bprm
, bprm
->file
);
174 allow_write_access(bprm
->file
);
177 /* mark the bprm that fd should be passed to interp */
178 bprm
->interp_flags
|= BINPRM_FLAGS_EXECFD
;
179 bprm
->interp_data
= fd_binary
;
182 allow_write_access(bprm
->file
);
186 /* make argv[1] be the path to the binary */
187 retval
= copy_strings_kernel(1, &bprm
->interp
, bprm
);
192 /* add the interp as argv[0] */
193 retval
= copy_strings_kernel(1, &iname_addr
, bprm
);
198 /* Update interp in case binfmt_script needs it. */
199 retval
= bprm_change_interp(iname
, bprm
);
203 interp_file
= open_exec(iname
);
204 retval
= PTR_ERR(interp_file
);
205 if (IS_ERR(interp_file
))
208 bprm
->file
= interp_file
;
209 if (fmt
->flags
& MISC_FMT_CREDENTIALS
) {
211 * No need to call prepare_binprm(), it's already been
212 * done. bprm->buf is stale, update from interp_file.
214 memset(bprm
->buf
, 0, BINPRM_BUF_SIZE
);
215 retval
= kernel_read(bprm
->file
, 0, bprm
->buf
, BINPRM_BUF_SIZE
);
217 retval
= prepare_binprm(bprm
);
222 retval
= search_binary_handler(bprm
);
230 sys_close(fd_binary
);
231 bprm
->interp_flags
= 0;
232 bprm
->interp_data
= 0;
236 /* Command parsers */
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.
244 static char *scanarg(char *s
, char del
)
248 while ((c
= *s
++) != del
) {
249 if (c
== '\\' && *s
== 'x') {
261 static char *check_special_flags(char *sfs
, Node
*e
)
270 pr_debug("register: flag: P (preserve argv0)\n");
272 e
->flags
|= MISC_FMT_PRESERVE_ARGV0
;
275 pr_debug("register: flag: O (open binary)\n");
277 e
->flags
|= MISC_FMT_OPEN_BINARY
;
280 pr_debug("register: flag: C (preserve creds)\n");
282 /* this flags also implies the
284 e
->flags
|= (MISC_FMT_CREDENTIALS
|
285 MISC_FMT_OPEN_BINARY
);
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
300 static Node
*create_entry(const char __user
*buffer
, size_t count
)
307 pr_debug("register: received %zu bytes\n", count
);
309 /* some sanity checks */
311 if ((count
< 11) || (count
> MAX_REGISTER_LENGTH
))
315 memsize
= sizeof(Node
) + count
+ 8;
316 e
= kmalloc(memsize
, GFP_KERNEL
);
320 p
= buf
= (char *)e
+ sizeof(Node
);
322 memset(e
, 0, sizeof(Node
));
323 if (copy_from_user(buf
, buffer
, count
))
326 del
= *p
++; /* delimeter */
328 pr_debug("register: delim: %#x {%c}\n", del
, del
);
330 /* Pad the buffer with the delim to simplify parsing below. */
331 memset(buf
+ count
, del
, 8);
333 /* Parse the 'name' field. */
340 !strcmp(e
->name
, ".") ||
341 !strcmp(e
->name
, "..") ||
342 strchr(e
->name
, '/'))
345 pr_debug("register: name: {%s}\n", e
->name
);
347 /* Parse the 'type' field. */
350 pr_debug("register: type: E (extension)\n");
351 e
->flags
= 1 << Enabled
;
354 pr_debug("register: type: M (magic)\n");
355 e
->flags
= (1 << Enabled
) | (1 << Magic
);
363 if (test_bit(Magic
, &e
->flags
)) {
364 /* Handle the 'M' (magic) format. */
367 /* Parse the 'offset' field. */
372 e
->offset
= simple_strtoul(p
, &p
, 10);
375 pr_debug("register: offset: %#x\n", e
->offset
);
377 /* Parse the 'magic' field. */
385 print_hex_dump_bytes(
386 KBUILD_MODNAME
": register: magic[raw]: ",
387 DUMP_PREFIX_NONE
, e
->magic
, p
- e
->magic
);
389 /* Parse the 'mask' field. */
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
);
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
408 e
->size
= string_unescape_inplace(e
->magic
, UNESCAPE_HEX
);
410 string_unescape_inplace(e
->mask
, UNESCAPE_HEX
) != e
->size
)
412 if (e
->size
+ e
->offset
> BINPRM_BUF_SIZE
)
414 pr_debug("register: magic/mask length: %i\n", e
->size
);
416 print_hex_dump_bytes(
417 KBUILD_MODNAME
": register: magic[decoded]: ",
418 DUMP_PREFIX_NONE
, e
->magic
, e
->size
);
422 char *masked
= kmalloc(e
->size
, GFP_KERNEL
);
424 print_hex_dump_bytes(
425 KBUILD_MODNAME
": register: mask[decoded]: ",
426 DUMP_PREFIX_NONE
, e
->mask
, e
->size
);
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
);
440 /* Handle the 'E' (extension) format. */
442 /* Skip the 'offset' field. */
448 /* Parse the 'magic' field. */
454 if (!e
->magic
[0] || strchr(e
->magic
, '/'))
456 pr_debug("register: extension: {%s}\n", e
->magic
);
458 /* Skip the 'mask' field. */
465 /* Parse the 'interpreter' field. */
471 if (!e
->interpreter
[0])
473 pr_debug("register: interpreter: {%s}\n", e
->interpreter
);
475 /* Parse the 'flags' field. */
476 p
= check_special_flags(p
, e
);
479 if (p
!= buf
+ count
)
489 return ERR_PTR(-EFAULT
);
492 return ERR_PTR(-EINVAL
);
496 * Set status of entry/binfmt_misc:
497 * '1' enables, '0' disables and '-1' clears entry/binfmt_misc
499 static int parse_command(const char __user
*buffer
, size_t count
)
505 if (copy_from_user(s
, buffer
, count
))
509 if (s
[count
- 1] == '\n')
511 if (count
== 1 && s
[0] == '0')
513 if (count
== 1 && s
[0] == '1')
515 if (count
== 2 && s
[0] == '-' && s
[1] == '1')
522 static void entry_status(Node
*e
, char *page
)
525 char *status
= "disabled";
526 const char *flags
= "flags: ";
528 if (test_bit(Enabled
, &e
->flags
))
531 if (!VERBOSE_STATUS
) {
532 sprintf(page
, "%s\n", status
);
536 sprintf(page
, "%s\ninterpreter %s\n", status
, e
->interpreter
);
537 dp
= page
+ strlen(page
);
539 /* print the special flags */
540 sprintf(dp
, "%s", flags
);
542 if (e
->flags
& MISC_FMT_PRESERVE_ARGV0
)
544 if (e
->flags
& MISC_FMT_OPEN_BINARY
)
546 if (e
->flags
& MISC_FMT_CREDENTIALS
)
550 if (!test_bit(Magic
, &e
->flags
)) {
551 sprintf(dp
, "extension .%s\n", e
->magic
);
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
]));
562 sprintf(dp
, "\nmask ");
564 for (i
= 0; i
< e
->size
; i
++) {
565 sprintf(dp
, "%02x", 0xff & (int) (e
->mask
[i
]));
574 static struct inode
*bm_get_inode(struct super_block
*sb
, int mode
)
576 struct inode
*inode
= new_inode(sb
);
579 inode
->i_ino
= get_next_ino();
580 inode
->i_mode
= mode
;
581 inode
->i_atime
= inode
->i_mtime
= inode
->i_ctime
=
582 current_fs_time(inode
->i_sb
);
587 static void bm_evict_inode(struct inode
*inode
)
590 kfree(inode
->i_private
);
593 static void kill_node(Node
*e
)
595 struct dentry
*dentry
;
597 write_lock(&entries_lock
);
600 list_del_init(&e
->list
);
603 write_unlock(&entries_lock
);
606 drop_nlink(dentry
->d_inode
);
609 simple_release_fs(&bm_mnt
, &entry_count
);
616 bm_entry_read(struct file
*file
, char __user
*buf
, size_t nbytes
, loff_t
*ppos
)
618 Node
*e
= file_inode(file
)->i_private
;
622 page
= (char *) __get_free_page(GFP_KERNEL
);
626 entry_status(e
, page
);
628 res
= simple_read_from_buffer(buf
, nbytes
, ppos
, page
, strlen(page
));
630 free_page((unsigned long) page
);
634 static ssize_t
bm_entry_write(struct file
*file
, const char __user
*buffer
,
635 size_t count
, loff_t
*ppos
)
638 Node
*e
= file_inode(file
)->i_private
;
639 int res
= parse_command(buffer
, count
);
643 /* Disable this handler. */
644 clear_bit(Enabled
, &e
->flags
);
647 /* Enable this handler. */
648 set_bit(Enabled
, &e
->flags
);
651 /* Delete this handler. */
652 root
= dget(file
->f_path
.dentry
->d_sb
->s_root
);
653 mutex_lock(&root
->d_inode
->i_mutex
);
657 mutex_unlock(&root
->d_inode
->i_mutex
);
667 static const struct file_operations bm_entry_operations
= {
668 .read
= bm_entry_read
,
669 .write
= bm_entry_write
,
670 .llseek
= default_llseek
,
675 static ssize_t
bm_register_write(struct file
*file
, const char __user
*buffer
,
676 size_t count
, loff_t
*ppos
)
680 struct dentry
*root
, *dentry
;
681 struct super_block
*sb
= file
->f_path
.dentry
->d_sb
;
684 e
= create_entry(buffer
, count
);
689 root
= dget(sb
->s_root
);
690 mutex_lock(&root
->d_inode
->i_mutex
);
691 dentry
= lookup_one_len(e
->name
, root
, strlen(e
->name
));
692 err
= PTR_ERR(dentry
);
700 inode
= bm_get_inode(sb
, S_IFREG
| 0644);
706 err
= simple_pin_fs(&bm_fs_type
, &bm_mnt
, &entry_count
);
713 e
->dentry
= dget(dentry
);
714 inode
->i_private
= e
;
715 inode
->i_fop
= &bm_entry_operations
;
717 d_instantiate(dentry
, inode
);
718 write_lock(&entries_lock
);
719 list_add(&e
->list
, &entries
);
720 write_unlock(&entries_lock
);
726 mutex_unlock(&root
->d_inode
->i_mutex
);
736 static const struct file_operations bm_register_operations
= {
737 .write
= bm_register_write
,
738 .llseek
= noop_llseek
,
744 bm_status_read(struct file
*file
, char __user
*buf
, size_t nbytes
, loff_t
*ppos
)
746 char *s
= enabled
? "enabled\n" : "disabled\n";
748 return simple_read_from_buffer(buf
, nbytes
, ppos
, s
, strlen(s
));
751 static ssize_t
bm_status_write(struct file
*file
, const char __user
*buffer
,
752 size_t count
, loff_t
*ppos
)
754 int res
= parse_command(buffer
, count
);
759 /* Disable all handlers. */
763 /* Enable all handlers. */
767 /* Delete all handlers. */
768 root
= dget(file
->f_path
.dentry
->d_sb
->s_root
);
769 mutex_lock(&root
->d_inode
->i_mutex
);
771 while (!list_empty(&entries
))
772 kill_node(list_entry(entries
.next
, Node
, list
));
774 mutex_unlock(&root
->d_inode
->i_mutex
);
784 static const struct file_operations bm_status_operations
= {
785 .read
= bm_status_read
,
786 .write
= bm_status_write
,
787 .llseek
= default_llseek
,
790 /* Superblock handling */
792 static const struct super_operations s_ops
= {
793 .statfs
= simple_statfs
,
794 .evict_inode
= bm_evict_inode
,
797 static int bm_fill_super(struct super_block
*sb
, void *data
, int silent
)
800 static struct tree_descr bm_files
[] = {
801 [2] = {"status", &bm_status_operations
, S_IWUSR
|S_IRUGO
},
802 [3] = {"register", &bm_register_operations
, S_IWUSR
},
806 err
= simple_fill_super(sb
, BINFMTFS_MAGIC
, bm_files
);
812 static struct dentry
*bm_mount(struct file_system_type
*fs_type
,
813 int flags
, const char *dev_name
, void *data
)
815 return mount_single(fs_type
, flags
, data
, bm_fill_super
);
818 static struct linux_binfmt misc_format
= {
819 .module
= THIS_MODULE
,
820 .load_binary
= load_misc_binary
,
823 static struct file_system_type bm_fs_type
= {
824 .owner
= THIS_MODULE
,
825 .name
= "binfmt_misc",
827 .kill_sb
= kill_litter_super
,
829 MODULE_ALIAS_FS("binfmt_misc");
831 static int __init
init_misc_binfmt(void)
833 int err
= register_filesystem(&bm_fs_type
);
835 insert_binfmt(&misc_format
);
839 static void __exit
exit_misc_binfmt(void)
841 unregister_binfmt(&misc_format
);
842 unregister_filesystem(&bm_fs_type
);
845 core_initcall(init_misc_binfmt
);
846 module_exit(exit_misc_binfmt
);
847 MODULE_LICENSE("GPL");