ALSA: pcm: Use dma_bytes as size parameter in dma_mmap_coherent()
[pandora-kernel.git] / fs / binfmt_misc.c
1 /*
2  *  binfmt_misc.c
3  *
4  *  Copyright (C) 1997 Richard Günther
5  *
6  *  binfmt_misc detects binaries via a magic or filename extension and invokes
7  *  a specified wrapper. This should obsolete binfmt_java, binfmt_em86 and
8  *  binfmt_mz.
9  *
10  *  1997-04-25 first version
11  *  [...]
12  *  1997-05-19 cleanup
13  *  1997-06-26 hpa: pass the real filename rather than argv[0]
14  *  1997-06-30 minor cleanup
15  *  1997-08-09 removed extension stripping, locking cleanup
16  *  2001-02-28 AV: rewritten into something that resembles C. Original didn't.
17  */
18
19 #include <linux/module.h>
20 #include <linux/init.h>
21 #include <linux/sched.h>
22 #include <linux/binfmts.h>
23 #include <linux/slab.h>
24 #include <linux/ctype.h>
25 #include <linux/file.h>
26 #include <linux/pagemap.h>
27 #include <linux/namei.h>
28 #include <linux/mount.h>
29 #include <linux/syscalls.h>
30 #include <linux/fs.h>
31
32 #include <asm/uaccess.h>
33
34 enum {
35         VERBOSE_STATUS = 1 /* make it zero to save 400 bytes kernel memory */
36 };
37
38 static LIST_HEAD(entries);
39 static int enabled = 1;
40
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)
45
46 typedef 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
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;
62
63 /* 
64  * Check if we support the binfmt
65  * if we do, return the node, else NULL
66  * locking is done in load_misc_binary
67  */
68 static Node *check_file(struct linux_binprm *bprm)
69 {
70         char *p = strrchr(bprm->interp, '.');
71         struct list_head *l;
72
73         list_for_each(l, &entries) {
74                 Node *e = list_entry(l, Node, list);
75                 char *s;
76                 int j;
77
78                 if (!test_bit(Enabled, &e->flags))
79                         continue;
80
81                 if (!test_bit(Magic, &e->flags)) {
82                         if (p && !strcmp(e->magic, p + 1))
83                                 return e;
84                         continue;
85                 }
86
87                 s = bprm->buf + e->offset;
88                 if (e->mask) {
89                         for (j = 0; j < e->size; j++)
90                                 if ((*s++ ^ e->magic[j]) & e->mask[j])
91                                         break;
92                 } else {
93                         for (j = 0; j < e->size; j++)
94                                 if ((*s++ ^ e->magic[j]))
95                                         break;
96                 }
97                 if (j == e->size)
98                         return e;
99         }
100         return NULL;
101 }
102
103 /*
104  * the loader itself
105  */
106 static int load_misc_binary(struct linux_binprm *bprm, struct pt_regs *regs)
107 {
108         Node *fmt;
109         struct file * interp_file = NULL;
110         char iname[BINPRM_BUF_SIZE];
111         const char *iname_addr = iname;
112         int retval;
113         int fd_binary = -1;
114
115         retval = -ENOEXEC;
116         if (!enabled)
117                 goto _ret;
118
119         /* to keep locking time low, we copy the interpreter string */
120         read_lock(&entries_lock);
121         fmt = check_file(bprm);
122         if (fmt)
123                 strlcpy(iname, fmt->interpreter, BINPRM_BUF_SIZE);
124         read_unlock(&entries_lock);
125         if (!fmt)
126                 goto _ret;
127
128         if (!(fmt->flags & MISC_FMT_PRESERVE_ARGV0)) {
129                 retval = remove_arg_zero(bprm);
130                 if (retval)
131                         goto _ret;
132         }
133
134         if (fmt->flags & MISC_FMT_OPEN_BINARY) {
135
136                 /* if the binary should be opened on behalf of the
137                  * interpreter than keep it open and assign descriptor
138                  * to it */
139                 fd_binary = get_unused_fd();
140                 if (fd_binary < 0) {
141                         retval = fd_binary;
142                         goto _ret;
143                 }
144                 fd_install(fd_binary, bprm->file);
145
146                 /* if the binary is not readable than enforce mm->dumpable=0
147                    regardless of the interpreter's permissions */
148                 would_dump(bprm, bprm->file);
149
150                 allow_write_access(bprm->file);
151                 bprm->file = NULL;
152
153                 /* mark the bprm that fd should be passed to interp */
154                 bprm->interp_flags |= BINPRM_FLAGS_EXECFD;
155                 bprm->interp_data = fd_binary;
156
157         } else {
158                 allow_write_access(bprm->file);
159                 fput(bprm->file);
160                 bprm->file = NULL;
161         }
162         /* make argv[1] be the path to the binary */
163         retval = copy_strings_kernel (1, &bprm->interp, bprm);
164         if (retval < 0)
165                 goto _error;
166         bprm->argc++;
167
168         /* add the interp as argv[0] */
169         retval = copy_strings_kernel (1, &iname_addr, bprm);
170         if (retval < 0)
171                 goto _error;
172         bprm->argc ++;
173
174         /* Update interp in case binfmt_script needs it. */
175         retval = bprm_change_interp(iname, bprm);
176         if (retval < 0)
177                 goto _error;
178
179         interp_file = open_exec (iname);
180         retval = PTR_ERR (interp_file);
181         if (IS_ERR (interp_file))
182                 goto _error;
183
184         bprm->file = interp_file;
185         if (fmt->flags & MISC_FMT_CREDENTIALS) {
186                 /*
187                  * No need to call prepare_binprm(), it's already been
188                  * done.  bprm->buf is stale, update from interp_file.
189                  */
190                 memset(bprm->buf, 0, BINPRM_BUF_SIZE);
191                 retval = kernel_read(bprm->file, 0, bprm->buf, BINPRM_BUF_SIZE);
192         } else
193                 retval = prepare_binprm (bprm);
194
195         if (retval < 0)
196                 goto _error;
197
198         retval = search_binary_handler (bprm, regs);
199         if (retval < 0)
200                 goto _error;
201
202 _ret:
203         return retval;
204 _error:
205         if (fd_binary > 0)
206                 sys_close(fd_binary);
207         bprm->interp_flags = 0;
208         bprm->interp_data = 0;
209         goto _ret;
210 }
211
212 /* Command parsers */
213
214 /*
215  * parses and copies one argument enclosed in del from *sp to *dp,
216  * recognising the \x special.
217  * returns pointer to the copied argument or NULL in case of an
218  * error (and sets err) or null argument length.
219  */
220 static char *scanarg(char *s, char del)
221 {
222         char c;
223
224         while ((c = *s++) != del) {
225                 if (c == '\\' && *s == 'x') {
226                         s++;
227                         if (!isxdigit(*s++))
228                                 return NULL;
229                         if (!isxdigit(*s++))
230                                 return NULL;
231                 }
232         }
233         return s;
234 }
235
236 static int unquote(char *from)
237 {
238         char c = 0, *s = from, *p = from;
239
240         while ((c = *s++) != '\0') {
241                 if (c == '\\' && *s == 'x') {
242                         s++;
243                         c = toupper(*s++);
244                         *p = (c - (isdigit(c) ? '0' : 'A' - 10)) << 4;
245                         c = toupper(*s++);
246                         *p++ |= c - (isdigit(c) ? '0' : 'A' - 10);
247                         continue;
248                 }
249                 *p++ = c;
250         }
251         return p - from;
252 }
253
254 static char * check_special_flags (char * sfs, Node * e)
255 {
256         char * p = sfs;
257         int cont = 1;
258
259         /* special flags */
260         while (cont) {
261                 switch (*p) {
262                         case 'P':
263                                 p++;
264                                 e->flags |= MISC_FMT_PRESERVE_ARGV0;
265                                 break;
266                         case 'O':
267                                 p++;
268                                 e->flags |= MISC_FMT_OPEN_BINARY;
269                                 break;
270                         case 'C':
271                                 p++;
272                                 /* this flags also implies the
273                                    open-binary flag */
274                                 e->flags |= (MISC_FMT_CREDENTIALS |
275                                                 MISC_FMT_OPEN_BINARY);
276                                 break;
277                         default:
278                                 cont = 0;
279                 }
280         }
281
282         return p;
283 }
284 /*
285  * This registers a new binary format, it recognises the syntax
286  * ':name:type:offset:magic:mask:interpreter:flags'
287  * where the ':' is the IFS, that can be chosen with the first char
288  */
289 static Node *create_entry(const char __user *buffer, size_t count)
290 {
291         Node *e;
292         int memsize, err;
293         char *buf, *p;
294         char del;
295
296         /* some sanity checks */
297         err = -EINVAL;
298         if ((count < 11) || (count > 256))
299                 goto out;
300
301         err = -ENOMEM;
302         memsize = sizeof(Node) + count + 8;
303         e = kmalloc(memsize, GFP_USER);
304         if (!e)
305                 goto out;
306
307         p = buf = (char *)e + sizeof(Node);
308
309         memset(e, 0, sizeof(Node));
310         if (copy_from_user(buf, buffer, count))
311                 goto Efault;
312
313         del = *p++;     /* delimeter */
314
315         memset(buf+count, del, 8);
316
317         e->name = p;
318         p = strchr(p, del);
319         if (!p)
320                 goto Einval;
321         *p++ = '\0';
322         if (!e->name[0] ||
323             !strcmp(e->name, ".") ||
324             !strcmp(e->name, "..") ||
325             strchr(e->name, '/'))
326                 goto Einval;
327         switch (*p++) {
328                 case 'E': e->flags = 1<<Enabled; break;
329                 case 'M': e->flags = (1<<Enabled) | (1<<Magic); break;
330                 default: goto Einval;
331         }
332         if (*p++ != del)
333                 goto Einval;
334         if (test_bit(Magic, &e->flags)) {
335                 char *s = strchr(p, del);
336                 if (!s)
337                         goto Einval;
338                 *s++ = '\0';
339                 e->offset = simple_strtoul(p, &p, 10);
340                 if (*p++)
341                         goto Einval;
342                 e->magic = p;
343                 p = scanarg(p, del);
344                 if (!p)
345                         goto Einval;
346                 p[-1] = '\0';
347                 if (!e->magic[0])
348                         goto Einval;
349                 e->mask = p;
350                 p = scanarg(p, del);
351                 if (!p)
352                         goto Einval;
353                 p[-1] = '\0';
354                 if (!e->mask[0])
355                         e->mask = NULL;
356                 e->size = unquote(e->magic);
357                 if (e->mask && unquote(e->mask) != e->size)
358                         goto Einval;
359                 if (e->size + e->offset > BINPRM_BUF_SIZE)
360                         goto Einval;
361         } else {
362                 p = strchr(p, del);
363                 if (!p)
364                         goto Einval;
365                 *p++ = '\0';
366                 e->magic = p;
367                 p = strchr(p, del);
368                 if (!p)
369                         goto Einval;
370                 *p++ = '\0';
371                 if (!e->magic[0] || strchr(e->magic, '/'))
372                         goto Einval;
373                 p = strchr(p, del);
374                 if (!p)
375                         goto Einval;
376                 *p++ = '\0';
377         }
378         e->interpreter = p;
379         p = strchr(p, del);
380         if (!p)
381                 goto Einval;
382         *p++ = '\0';
383         if (!e->interpreter[0])
384                 goto Einval;
385
386
387         p = check_special_flags (p, e);
388
389         if (*p == '\n')
390                 p++;
391         if (p != buf + count)
392                 goto Einval;
393         return e;
394
395 out:
396         return ERR_PTR(err);
397
398 Efault:
399         kfree(e);
400         return ERR_PTR(-EFAULT);
401 Einval:
402         kfree(e);
403         return ERR_PTR(-EINVAL);
404 }
405
406 /*
407  * Set status of entry/binfmt_misc:
408  * '1' enables, '0' disables and '-1' clears entry/binfmt_misc
409  */
410 static int parse_command(const char __user *buffer, size_t count)
411 {
412         char s[4];
413
414         if (!count)
415                 return 0;
416         if (count > 3)
417                 return -EINVAL;
418         if (copy_from_user(s, buffer, count))
419                 return -EFAULT;
420         if (s[count-1] == '\n')
421                 count--;
422         if (count == 1 && s[0] == '0')
423                 return 1;
424         if (count == 1 && s[0] == '1')
425                 return 2;
426         if (count == 2 && s[0] == '-' && s[1] == '1')
427                 return 3;
428         return -EINVAL;
429 }
430
431 /* generic stuff */
432
433 static void entry_status(Node *e, char *page)
434 {
435         char *dp;
436         char *status = "disabled";
437         const char * flags = "flags: ";
438
439         if (test_bit(Enabled, &e->flags))
440                 status = "enabled";
441
442         if (!VERBOSE_STATUS) {
443                 sprintf(page, "%s\n", status);
444                 return;
445         }
446
447         sprintf(page, "%s\ninterpreter %s\n", status, e->interpreter);
448         dp = page + strlen(page);
449
450         /* print the special flags */
451         sprintf (dp, "%s", flags);
452         dp += strlen (flags);
453         if (e->flags & MISC_FMT_PRESERVE_ARGV0) {
454                 *dp ++ = 'P';
455         }
456         if (e->flags & MISC_FMT_OPEN_BINARY) {
457                 *dp ++ = 'O';
458         }
459         if (e->flags & MISC_FMT_CREDENTIALS) {
460                 *dp ++ = 'C';
461         }
462         *dp ++ = '\n';
463
464
465         if (!test_bit(Magic, &e->flags)) {
466                 sprintf(dp, "extension .%s\n", e->magic);
467         } else {
468                 int i;
469
470                 sprintf(dp, "offset %i\nmagic ", e->offset);
471                 dp = page + strlen(page);
472                 for (i = 0; i < e->size; i++) {
473                         sprintf(dp, "%02x", 0xff & (int) (e->magic[i]));
474                         dp += 2;
475                 }
476                 if (e->mask) {
477                         sprintf(dp, "\nmask ");
478                         dp += 6;
479                         for (i = 0; i < e->size; i++) {
480                                 sprintf(dp, "%02x", 0xff & (int) (e->mask[i]));
481                                 dp += 2;
482                         }
483                 }
484                 *dp++ = '\n';
485                 *dp = '\0';
486         }
487 }
488
489 static struct inode *bm_get_inode(struct super_block *sb, int mode)
490 {
491         struct inode * inode = new_inode(sb);
492
493         if (inode) {
494                 inode->i_ino = get_next_ino();
495                 inode->i_mode = mode;
496                 inode->i_atime = inode->i_mtime = inode->i_ctime =
497                         current_fs_time(inode->i_sb);
498         }
499         return inode;
500 }
501
502 static void bm_evict_inode(struct inode *inode)
503 {
504         end_writeback(inode);
505         kfree(inode->i_private);
506 }
507
508 static void kill_node(Node *e)
509 {
510         struct dentry *dentry;
511
512         write_lock(&entries_lock);
513         dentry = e->dentry;
514         if (dentry) {
515                 list_del_init(&e->list);
516                 e->dentry = NULL;
517         }
518         write_unlock(&entries_lock);
519
520         if (dentry) {
521                 drop_nlink(dentry->d_inode);
522                 d_drop(dentry);
523                 dput(dentry);
524                 simple_release_fs(&bm_mnt, &entry_count);
525         }
526 }
527
528 /* /<entry> */
529
530 static ssize_t
531 bm_entry_read(struct file * file, char __user * buf, size_t nbytes, loff_t *ppos)
532 {
533         Node *e = file->f_path.dentry->d_inode->i_private;
534         ssize_t res;
535         char *page;
536
537         if (!(page = (char*) __get_free_page(GFP_KERNEL)))
538                 return -ENOMEM;
539
540         entry_status(e, page);
541
542         res = simple_read_from_buffer(buf, nbytes, ppos, page, strlen(page));
543
544         free_page((unsigned long) page);
545         return res;
546 }
547
548 static ssize_t bm_entry_write(struct file *file, const char __user *buffer,
549                                 size_t count, loff_t *ppos)
550 {
551         struct dentry *root;
552         Node *e = file->f_path.dentry->d_inode->i_private;
553         int res = parse_command(buffer, count);
554
555         switch (res) {
556                 case 1: clear_bit(Enabled, &e->flags);
557                         break;
558                 case 2: set_bit(Enabled, &e->flags);
559                         break;
560                 case 3: root = dget(file->f_path.mnt->mnt_sb->s_root);
561                         mutex_lock(&root->d_inode->i_mutex);
562
563                         kill_node(e);
564
565                         mutex_unlock(&root->d_inode->i_mutex);
566                         dput(root);
567                         break;
568                 default: return res;
569         }
570         return count;
571 }
572
573 static const struct file_operations bm_entry_operations = {
574         .read           = bm_entry_read,
575         .write          = bm_entry_write,
576         .llseek         = default_llseek,
577 };
578
579 /* /register */
580
581 static ssize_t bm_register_write(struct file *file, const char __user *buffer,
582                                size_t count, loff_t *ppos)
583 {
584         Node *e;
585         struct inode *inode;
586         struct dentry *root, *dentry;
587         struct super_block *sb = file->f_path.mnt->mnt_sb;
588         int err = 0;
589
590         e = create_entry(buffer, count);
591
592         if (IS_ERR(e))
593                 return PTR_ERR(e);
594
595         root = dget(sb->s_root);
596         mutex_lock(&root->d_inode->i_mutex);
597         dentry = lookup_one_len(e->name, root, strlen(e->name));
598         err = PTR_ERR(dentry);
599         if (IS_ERR(dentry))
600                 goto out;
601
602         err = -EEXIST;
603         if (dentry->d_inode)
604                 goto out2;
605
606         inode = bm_get_inode(sb, S_IFREG | 0644);
607
608         err = -ENOMEM;
609         if (!inode)
610                 goto out2;
611
612         err = simple_pin_fs(&bm_fs_type, &bm_mnt, &entry_count);
613         if (err) {
614                 iput(inode);
615                 inode = NULL;
616                 goto out2;
617         }
618
619         e->dentry = dget(dentry);
620         inode->i_private = e;
621         inode->i_fop = &bm_entry_operations;
622
623         d_instantiate(dentry, inode);
624         write_lock(&entries_lock);
625         list_add(&e->list, &entries);
626         write_unlock(&entries_lock);
627
628         err = 0;
629 out2:
630         dput(dentry);
631 out:
632         mutex_unlock(&root->d_inode->i_mutex);
633         dput(root);
634
635         if (err) {
636                 kfree(e);
637                 return -EINVAL;
638         }
639         return count;
640 }
641
642 static const struct file_operations bm_register_operations = {
643         .write          = bm_register_write,
644         .llseek         = noop_llseek,
645 };
646
647 /* /status */
648
649 static ssize_t
650 bm_status_read(struct file *file, char __user *buf, size_t nbytes, loff_t *ppos)
651 {
652         char *s = enabled ? "enabled\n" : "disabled\n";
653
654         return simple_read_from_buffer(buf, nbytes, ppos, s, strlen(s));
655 }
656
657 static ssize_t bm_status_write(struct file * file, const char __user * buffer,
658                 size_t count, loff_t *ppos)
659 {
660         int res = parse_command(buffer, count);
661         struct dentry *root;
662
663         switch (res) {
664                 case 1: enabled = 0; break;
665                 case 2: enabled = 1; break;
666                 case 3: root = dget(file->f_path.mnt->mnt_sb->s_root);
667                         mutex_lock(&root->d_inode->i_mutex);
668
669                         while (!list_empty(&entries))
670                                 kill_node(list_entry(entries.next, Node, list));
671
672                         mutex_unlock(&root->d_inode->i_mutex);
673                         dput(root);
674                 default: return res;
675         }
676         return count;
677 }
678
679 static const struct file_operations bm_status_operations = {
680         .read           = bm_status_read,
681         .write          = bm_status_write,
682         .llseek         = default_llseek,
683 };
684
685 /* Superblock handling */
686
687 static const struct super_operations s_ops = {
688         .statfs         = simple_statfs,
689         .evict_inode    = bm_evict_inode,
690 };
691
692 static int bm_fill_super(struct super_block * sb, void * data, int silent)
693 {
694         static struct tree_descr bm_files[] = {
695                 [2] = {"status", &bm_status_operations, S_IWUSR|S_IRUGO},
696                 [3] = {"register", &bm_register_operations, S_IWUSR},
697                 /* last one */ {""}
698         };
699         int err = simple_fill_super(sb, 0x42494e4d, bm_files);
700         if (!err)
701                 sb->s_op = &s_ops;
702         return err;
703 }
704
705 static struct dentry *bm_mount(struct file_system_type *fs_type,
706         int flags, const char *dev_name, void *data)
707 {
708         return mount_single(fs_type, flags, data, bm_fill_super);
709 }
710
711 static struct linux_binfmt misc_format = {
712         .module = THIS_MODULE,
713         .load_binary = load_misc_binary,
714 };
715
716 static struct file_system_type bm_fs_type = {
717         .owner          = THIS_MODULE,
718         .name           = "binfmt_misc",
719         .mount          = bm_mount,
720         .kill_sb        = kill_litter_super,
721 };
722
723 static int __init init_misc_binfmt(void)
724 {
725         int err = register_filesystem(&bm_fs_type);
726         if (!err) {
727                 err = insert_binfmt(&misc_format);
728                 if (err)
729                         unregister_filesystem(&bm_fs_type);
730         }
731         return err;
732 }
733
734 static void __exit exit_misc_binfmt(void)
735 {
736         unregister_binfmt(&misc_format);
737         unregister_filesystem(&bm_fs_type);
738 }
739
740 core_initcall(init_misc_binfmt);
741 module_exit(exit_misc_binfmt);
742 MODULE_LICENSE("GPL");