http://www.hht-eu.com/pls/hht/docs/F3140/bcm963xx_Speedport500V.0.09.04L.300L01.V27_c...
[bcm963xx.git] / kernel / linux / fs / exec.c
1 /*
2  *  linux/fs/exec.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  */
6
7 /*
8  * #!-checking implemented by tytso.
9  */
10 /*
11  * Demand-loading implemented 01.12.91 - no need to read anything but
12  * the header into memory. The inode of the executable is put into
13  * "current->executable", and page faults do the actual loading. Clean.
14  *
15  * Once more I can proudly say that linux stood up to being changed: it
16  * was less than 2 hours work to get demand-loading completely implemented.
17  *
18  * Demand loading changed July 1993 by Eric Youngdale.   Use mmap instead,
19  * current->executable is only used by the procfs.  This allows a dispatch
20  * table to check for several different types  of binary formats.  We keep
21  * trying until we recognize the file or we run out of supported binary
22  * formats. 
23  */
24
25 #include <linux/config.h>
26 #include <linux/slab.h>
27 #include <linux/file.h>
28 #include <linux/mman.h>
29 #include <linux/a.out.h>
30 #include <linux/stat.h>
31 #include <linux/fcntl.h>
32 #include <linux/smp_lock.h>
33 #include <linux/init.h>
34 #include <linux/pagemap.h>
35 #include <linux/highmem.h>
36 #include <linux/spinlock.h>
37 #include <linux/personality.h>
38 #include <linux/binfmts.h>
39 #include <linux/swap.h>
40 #include <linux/utsname.h>
41 #include <linux/module.h>
42 #include <linux/namei.h>
43 #include <linux/proc_fs.h>
44 #include <linux/ptrace.h>
45 #include <linux/mount.h>
46 #include <linux/security.h>
47 #include <linux/syscalls.h>
48 #include <linux/rmap.h>
49
50 #include <asm/uaccess.h>
51 #include <asm/mmu_context.h>
52
53 #ifdef CONFIG_KMOD
54 #include <linux/kmod.h>
55 #endif
56
57 int core_uses_pid;
58 char core_pattern[65] = "core";
59 /* The maximal length of core_pattern is also specified in sysctl.c */
60
61 static struct linux_binfmt *formats;
62 static rwlock_t binfmt_lock = RW_LOCK_UNLOCKED;
63
64 int register_binfmt(struct linux_binfmt * fmt)
65 {
66         struct linux_binfmt ** tmp = &formats;
67
68         if (!fmt)
69                 return -EINVAL;
70         if (fmt->next)
71                 return -EBUSY;
72         write_lock(&binfmt_lock);
73         while (*tmp) {
74                 if (fmt == *tmp) {
75                         write_unlock(&binfmt_lock);
76                         return -EBUSY;
77                 }
78                 tmp = &(*tmp)->next;
79         }
80         fmt->next = formats;
81         formats = fmt;
82         write_unlock(&binfmt_lock);
83         return 0;       
84 }
85
86 EXPORT_SYMBOL(register_binfmt);
87
88 int unregister_binfmt(struct linux_binfmt * fmt)
89 {
90         struct linux_binfmt ** tmp = &formats;
91
92         write_lock(&binfmt_lock);
93         while (*tmp) {
94                 if (fmt == *tmp) {
95                         *tmp = fmt->next;
96                         write_unlock(&binfmt_lock);
97                         return 0;
98                 }
99                 tmp = &(*tmp)->next;
100         }
101         write_unlock(&binfmt_lock);
102         return -EINVAL;
103 }
104
105 EXPORT_SYMBOL(unregister_binfmt);
106
107 static inline void put_binfmt(struct linux_binfmt * fmt)
108 {
109         module_put(fmt->module);
110 }
111
112 /*
113  * Note that a shared library must be both readable and executable due to
114  * security reasons.
115  *
116  * Also note that we take the address to load from from the file itself.
117  */
118 asmlinkage long sys_uselib(const char __user * library)
119 {
120         struct file * file;
121         struct nameidata nd;
122         int error;
123
124         nd.intent.open.flags = FMODE_READ;
125         error = __user_walk(library, LOOKUP_FOLLOW|LOOKUP_OPEN, &nd);
126         if (error)
127                 goto out;
128
129         error = -EINVAL;
130         if (!S_ISREG(nd.dentry->d_inode->i_mode))
131                 goto exit;
132
133         error = permission(nd.dentry->d_inode, MAY_READ | MAY_EXEC, &nd);
134         if (error)
135                 goto exit;
136
137         file = dentry_open(nd.dentry, nd.mnt, O_RDONLY);
138         error = PTR_ERR(file);
139         if (IS_ERR(file))
140                 goto out;
141
142         error = -ENOEXEC;
143         if(file->f_op) {
144                 struct linux_binfmt * fmt;
145
146                 read_lock(&binfmt_lock);
147                 for (fmt = formats ; fmt ; fmt = fmt->next) {
148                         if (!fmt->load_shlib)
149                                 continue;
150                         if (!try_module_get(fmt->module))
151                                 continue;
152                         read_unlock(&binfmt_lock);
153                         error = fmt->load_shlib(file);
154                         read_lock(&binfmt_lock);
155                         put_binfmt(fmt);
156                         if (error != -ENOEXEC)
157                                 break;
158                 }
159                 read_unlock(&binfmt_lock);
160         }
161         fput(file);
162 out:
163         return error;
164 exit:
165         path_release(&nd);
166         goto out;
167 }
168
169 /*
170  * count() counts the number of strings in array ARGV.
171  */
172 static int count(char __user * __user * argv, int max)
173 {
174         int i = 0;
175
176         if (argv != NULL) {
177                 for (;;) {
178                         char __user * p;
179
180                         if (get_user(p, argv))
181                                 return -EFAULT;
182                         if (!p)
183                                 break;
184                         argv++;
185                         if(++i > max)
186                                 return -E2BIG;
187                 }
188         }
189         return i;
190 }
191
192 /*
193  * 'copy_strings()' copies argument/environment strings from user
194  * memory to free pages in kernel mem. These are in a format ready
195  * to be put directly into the top of new user memory.
196  */
197 int copy_strings(int argc,char __user * __user * argv, struct linux_binprm *bprm)
198 {
199         struct page *kmapped_page = NULL;
200         char *kaddr = NULL;
201         int ret;
202
203         while (argc-- > 0) {
204                 char __user *str;
205                 int len;
206                 unsigned long pos;
207
208                 if (get_user(str, argv+argc) ||
209                                 !(len = strnlen_user(str, bprm->p))) {
210                         ret = -EFAULT;
211                         goto out;
212                 }
213
214                 if (bprm->p < len)  {
215                         ret = -E2BIG;
216                         goto out;
217                 }
218
219                 bprm->p -= len;
220                 /* XXX: add architecture specific overflow check here. */
221                 pos = bprm->p;
222
223                 while (len > 0) {
224                         int i, new, err;
225                         int offset, bytes_to_copy;
226                         struct page *page;
227
228                         offset = pos % PAGE_SIZE;
229                         i = pos/PAGE_SIZE;
230                         page = bprm->page[i];
231                         new = 0;
232                         if (!page) {
233                                 page = alloc_page(GFP_HIGHUSER);
234                                 bprm->page[i] = page;
235                                 if (!page) {
236                                         ret = -ENOMEM;
237                                         goto out;
238                                 }
239                                 new = 1;
240                         }
241
242                         if (page != kmapped_page) {
243                                 if (kmapped_page)
244                                         kunmap(kmapped_page);
245                                 kmapped_page = page;
246                                 kaddr = kmap(kmapped_page);
247                         }
248                         if (new && offset)
249                                 memset(kaddr, 0, offset);
250                         bytes_to_copy = PAGE_SIZE - offset;
251                         if (bytes_to_copy > len) {
252                                 bytes_to_copy = len;
253                                 if (new)
254                                         memset(kaddr+offset+len, 0,
255                                                 PAGE_SIZE-offset-len);
256                         }
257                         err = copy_from_user(kaddr+offset, str, bytes_to_copy);
258                         if (err) {
259                                 ret = -EFAULT;
260                                 goto out;
261                         }
262
263                         pos += bytes_to_copy;
264                         str += bytes_to_copy;
265                         len -= bytes_to_copy;
266                 }
267         }
268         ret = 0;
269 out:
270         if (kmapped_page)
271                 kunmap(kmapped_page);
272         return ret;
273 }
274
275 /*
276  * Like copy_strings, but get argv and its values from kernel memory.
277  */
278 int copy_strings_kernel(int argc,char ** argv, struct linux_binprm *bprm)
279 {
280         int r;
281         mm_segment_t oldfs = get_fs();
282         set_fs(KERNEL_DS);
283         r = copy_strings(argc, (char __user * __user *)argv, bprm);
284         set_fs(oldfs);
285         return r;
286 }
287
288 EXPORT_SYMBOL(copy_strings_kernel);
289
290 #ifdef CONFIG_MMU
291 /*
292  * This routine is used to map in a page into an address space: needed by
293  * execve() for the initial stack and environment pages.
294  *
295  * vma->vm_mm->mmap_sem is held for writing.
296  */
297 void install_arg_page(struct vm_area_struct *vma,
298                         struct page *page, unsigned long address)
299 {
300         struct mm_struct *mm = vma->vm_mm;
301         pgd_t * pgd;
302         pmd_t * pmd;
303         pte_t * pte;
304
305         if (unlikely(anon_vma_prepare(vma)))
306                 goto out_sig;
307
308         flush_dcache_page(page);
309         pgd = pgd_offset(mm, address);
310
311         spin_lock(&mm->page_table_lock);
312         pmd = pmd_alloc(mm, pgd, address);
313         if (!pmd)
314                 goto out;
315         pte = pte_alloc_map(mm, pmd, address);
316         if (!pte)
317                 goto out;
318         if (!pte_none(*pte)) {
319                 pte_unmap(pte);
320                 goto out;
321         }
322         mm->rss++;
323         lru_cache_add_active(page);
324         set_pte(pte, pte_mkdirty(pte_mkwrite(mk_pte(
325                                         page, vma->vm_page_prot))));
326         page_add_anon_rmap(page, vma, address);
327         pte_unmap(pte);
328         spin_unlock(&mm->page_table_lock);
329
330         /* no need for flush_tlb */
331         return;
332 out:
333         spin_unlock(&mm->page_table_lock);
334 out_sig:
335         __free_page(page);
336         force_sig(SIGKILL, current);
337 }
338
339 int setup_arg_pages(struct linux_binprm *bprm, int executable_stack)
340 {
341         unsigned long stack_base;
342         struct vm_area_struct *mpnt;
343         struct mm_struct *mm = current->mm;
344         int i;
345         long arg_size;
346
347 #ifdef CONFIG_STACK_GROWSUP
348         /* Move the argument and environment strings to the bottom of the
349          * stack space.
350          */
351         int offset, j;
352         char *to, *from;
353
354         /* Start by shifting all the pages down */
355         i = 0;
356         for (j = 0; j < MAX_ARG_PAGES; j++) {
357                 struct page *page = bprm->page[j];
358                 if (!page)
359                         continue;
360                 bprm->page[i++] = page;
361         }
362
363         /* Now move them within their pages */
364         offset = bprm->p % PAGE_SIZE;
365         to = kmap(bprm->page[0]);
366         for (j = 1; j < i; j++) {
367                 memmove(to, to + offset, PAGE_SIZE - offset);
368                 from = kmap(bprm->page[j]);
369                 memcpy(to + PAGE_SIZE - offset, from, offset);
370                 kunmap(bprm->page[j - 1]);
371                 to = from;
372         }
373         memmove(to, to + offset, PAGE_SIZE - offset);
374         kunmap(bprm->page[j - 1]);
375
376         /* Adjust bprm->p to point to the end of the strings. */
377         bprm->p = PAGE_SIZE * i - offset;
378
379         /* Limit stack size to 1GB */
380         stack_base = current->rlim[RLIMIT_STACK].rlim_max;
381         if (stack_base > (1 << 30))
382                 stack_base = 1 << 30;
383         stack_base = PAGE_ALIGN(STACK_TOP - stack_base);
384
385         mm->arg_start = stack_base;
386         arg_size = i << PAGE_SHIFT;
387
388         /* zero pages that were copied above */
389         while (i < MAX_ARG_PAGES)
390                 bprm->page[i++] = NULL;
391 #else
392         stack_base = STACK_TOP - MAX_ARG_PAGES * PAGE_SIZE;
393         mm->arg_start = bprm->p + stack_base;
394         arg_size = STACK_TOP - (PAGE_MASK & (unsigned long) mm->arg_start);
395 #endif
396
397         bprm->p += stack_base;
398         if (bprm->loader)
399                 bprm->loader += stack_base;
400         bprm->exec += stack_base;
401
402         mpnt = kmem_cache_alloc(vm_area_cachep, SLAB_KERNEL);
403         if (!mpnt)
404                 return -ENOMEM;
405
406         if (security_vm_enough_memory(arg_size >> PAGE_SHIFT)) {
407                 kmem_cache_free(vm_area_cachep, mpnt);
408                 return -ENOMEM;
409         }
410
411         memset(mpnt, 0, sizeof(*mpnt));
412
413         down_write(&mm->mmap_sem);
414         {
415                 mpnt->vm_mm = mm;
416 #ifdef CONFIG_STACK_GROWSUP
417                 mpnt->vm_start = stack_base;
418                 mpnt->vm_end = PAGE_MASK &
419                         (PAGE_SIZE - 1 + (unsigned long) bprm->p);
420 #else
421                 mpnt->vm_start = PAGE_MASK & (unsigned long) bprm->p;
422                 mpnt->vm_end = STACK_TOP;
423 #endif
424                 /* Adjust stack execute permissions; explicitly enable
425                  * for EXSTACK_ENABLE_X, disable for EXSTACK_DISABLE_X
426                  * and leave alone (arch default) otherwise. */
427                 if (unlikely(executable_stack == EXSTACK_ENABLE_X))
428                         mpnt->vm_flags = VM_STACK_FLAGS |  VM_EXEC;
429                 else if (executable_stack == EXSTACK_DISABLE_X)
430                         mpnt->vm_flags = VM_STACK_FLAGS & ~VM_EXEC;
431                 else
432                         mpnt->vm_flags = VM_STACK_FLAGS;
433                 mpnt->vm_flags |= mm->def_flags;
434                 mpnt->vm_page_prot = protection_map[mpnt->vm_flags & 0x7];
435                 insert_vm_struct(mm, mpnt);
436                 mm->total_vm = (mpnt->vm_end - mpnt->vm_start) >> PAGE_SHIFT;
437         }
438
439         for (i = 0 ; i < MAX_ARG_PAGES ; i++) {
440                 struct page *page = bprm->page[i];
441                 if (page) {
442                         bprm->page[i] = NULL;
443                         install_arg_page(mpnt, page, stack_base);
444                 }
445                 stack_base += PAGE_SIZE;
446         }
447         up_write(&mm->mmap_sem);
448         
449         return 0;
450 }
451
452 EXPORT_SYMBOL(setup_arg_pages);
453
454 #define free_arg_pages(bprm) do { } while (0)
455
456 #else
457
458 static inline void free_arg_pages(struct linux_binprm *bprm)
459 {
460         int i;
461
462         for (i = 0; i < MAX_ARG_PAGES; i++) {
463                 if (bprm->page[i])
464                         __free_page(bprm->page[i]);
465                 bprm->page[i] = NULL;
466         }
467 }
468
469 #endif /* CONFIG_MMU */
470
471 struct file *open_exec(const char *name)
472 {
473         struct nameidata nd;
474         int err;
475         struct file *file;
476
477         nd.intent.open.flags = FMODE_READ;
478         err = path_lookup(name, LOOKUP_FOLLOW|LOOKUP_OPEN, &nd);
479         file = ERR_PTR(err);
480
481         if (!err) {
482                 struct inode *inode = nd.dentry->d_inode;
483                 file = ERR_PTR(-EACCES);
484                 if (!(nd.mnt->mnt_flags & MNT_NOEXEC) &&
485                     S_ISREG(inode->i_mode)) {
486                         int err = permission(inode, MAY_EXEC, &nd);
487                         if (!err && !(inode->i_mode & 0111))
488                                 err = -EACCES;
489                         file = ERR_PTR(err);
490                         if (!err) {
491                                 file = dentry_open(nd.dentry, nd.mnt, O_RDONLY);
492                                 if (!IS_ERR(file)) {
493                                         err = deny_write_access(file);
494                                         if (err) {
495                                                 fput(file);
496                                                 file = ERR_PTR(err);
497                                         }
498                                 }
499 out:
500                                 return file;
501                         }
502                 }
503                 path_release(&nd);
504         }
505         goto out;
506 }
507
508 EXPORT_SYMBOL(open_exec);
509
510 int kernel_read(struct file *file, unsigned long offset,
511         char *addr, unsigned long count)
512 {
513         mm_segment_t old_fs;
514         loff_t pos = offset;
515         int result;
516
517         old_fs = get_fs();
518         set_fs(get_ds());
519         /* The cast to a user pointer is valid due to the set_fs() */
520         result = vfs_read(file, (void __user *)addr, count, &pos);
521         set_fs(old_fs);
522         return result;
523 }
524
525 EXPORT_SYMBOL(kernel_read);
526
527 static int exec_mmap(struct mm_struct *mm)
528 {
529         struct task_struct *tsk;
530         struct mm_struct * old_mm, *active_mm;
531
532         /* Add it to the list of mm's */
533         spin_lock(&mmlist_lock);
534         list_add(&mm->mmlist, &init_mm.mmlist);
535         mmlist_nr++;
536         spin_unlock(&mmlist_lock);
537
538         /* Notify parent that we're no longer interested in the old VM */
539         tsk = current;
540         old_mm = current->mm;
541         mm_release(tsk, old_mm);
542
543         task_lock(tsk);
544         active_mm = tsk->active_mm;
545         tsk->mm = mm;
546         tsk->active_mm = mm;
547         activate_mm(active_mm, mm);
548         task_unlock(tsk);
549         if (old_mm) {
550                 if (active_mm != old_mm) BUG();
551                 mmput(old_mm);
552                 return 0;
553         }
554         mmdrop(active_mm);
555         return 0;
556 }
557
558 /*
559  * This function makes sure the current process has its own signal table,
560  * so that flush_signal_handlers can later reset the handlers without
561  * disturbing other processes.  (Other processes might share the signal
562  * table via the CLONE_SIGHAND option to clone().)
563  */
564 static inline int de_thread(struct task_struct *tsk)
565 {
566         struct signal_struct *newsig, *oldsig = tsk->signal;
567         struct sighand_struct *newsighand, *oldsighand = tsk->sighand;
568         spinlock_t *lock = &oldsighand->siglock;
569         int count;
570
571         /*
572          * If we don't share sighandlers, then we aren't sharing anything
573          * and we can just re-use it all.
574          */
575         if (atomic_read(&oldsighand->count) <= 1)
576                 return 0;
577
578         newsighand = kmem_cache_alloc(sighand_cachep, GFP_KERNEL);
579         if (!newsighand)
580                 return -ENOMEM;
581
582         spin_lock_init(&newsighand->siglock);
583         atomic_set(&newsighand->count, 1);
584         memcpy(newsighand->action, oldsighand->action, sizeof(newsighand->action));
585
586         /*
587          * See if we need to allocate a new signal structure
588          */
589         newsig = NULL;
590         if (atomic_read(&oldsig->count) > 1) {
591                 newsig = kmem_cache_alloc(signal_cachep, GFP_KERNEL);
592                 if (!newsig) {
593                         kmem_cache_free(sighand_cachep, newsighand);
594                         return -ENOMEM;
595                 }
596                 atomic_set(&newsig->count, 1);
597                 newsig->group_exit = 0;
598                 newsig->group_exit_code = 0;
599                 newsig->group_exit_task = NULL;
600                 newsig->group_stop_count = 0;
601                 newsig->curr_target = NULL;
602                 init_sigpending(&newsig->shared_pending);
603                 INIT_LIST_HEAD(&newsig->posix_timers);
604
605                 newsig->tty = oldsig->tty;
606                 newsig->pgrp = oldsig->pgrp;
607                 newsig->session = oldsig->session;
608                 newsig->leader = oldsig->leader;
609                 newsig->tty_old_pgrp = oldsig->tty_old_pgrp;
610         }
611
612         if (thread_group_empty(current))
613                 goto no_thread_group;
614
615         /*
616          * Kill all other threads in the thread group.
617          * We must hold tasklist_lock to call zap_other_threads.
618          */
619         read_lock(&tasklist_lock);
620         spin_lock_irq(lock);
621         if (oldsig->group_exit) {
622                 /*
623                  * Another group action in progress, just
624                  * return so that the signal is processed.
625                  */
626                 spin_unlock_irq(lock);
627                 read_unlock(&tasklist_lock);
628                 kmem_cache_free(sighand_cachep, newsighand);
629                 if (newsig)
630                         kmem_cache_free(signal_cachep, newsig);
631                 return -EAGAIN;
632         }
633         oldsig->group_exit = 1;
634         zap_other_threads(current);
635         read_unlock(&tasklist_lock);
636
637         /*
638          * Account for the thread group leader hanging around:
639          */
640         count = 2;
641         if (current->pid == current->tgid)
642                 count = 1;
643         while (atomic_read(&oldsig->count) > count) {
644                 oldsig->group_exit_task = current;
645                 oldsig->notify_count = count;
646                 __set_current_state(TASK_UNINTERRUPTIBLE);
647                 spin_unlock_irq(lock);
648                 schedule();
649                 spin_lock_irq(lock);
650         }
651         spin_unlock_irq(lock);
652
653         /*
654          * At this point all other threads have exited, all we have to
655          * do is to wait for the thread group leader to become inactive,
656          * and to assume its PID:
657          */
658         if (current->pid != current->tgid) {
659                 struct task_struct *leader = current->group_leader, *parent;
660                 struct dentry *proc_dentry1, *proc_dentry2;
661                 unsigned long state, ptrace;
662
663                 /*
664                  * Wait for the thread group leader to be a zombie.
665                  * It should already be zombie at this point, most
666                  * of the time.
667                  */
668                 while (leader->state != TASK_ZOMBIE)
669                         yield();
670
671                 spin_lock(&leader->proc_lock);
672                 spin_lock(&current->proc_lock);
673                 proc_dentry1 = proc_pid_unhash(current);
674                 proc_dentry2 = proc_pid_unhash(leader);
675                 write_lock_irq(&tasklist_lock);
676
677                 if (leader->tgid != current->tgid)
678                         BUG();
679                 if (current->pid == current->tgid)
680                         BUG();
681                 /*
682                  * An exec() starts a new thread group with the
683                  * TGID of the previous thread group. Rehash the
684                  * two threads with a switched PID, and release
685                  * the former thread group leader:
686                  */
687                 ptrace = leader->ptrace;
688                 parent = leader->parent;
689
690                 ptrace_unlink(current);
691                 ptrace_unlink(leader);
692                 remove_parent(current);
693                 remove_parent(leader);
694
695                 switch_exec_pids(leader, current);
696
697                 current->parent = current->real_parent = leader->real_parent;
698                 leader->parent = leader->real_parent = child_reaper;
699                 current->group_leader = current;
700                 leader->group_leader = leader;
701
702                 add_parent(current, current->parent);
703                 add_parent(leader, leader->parent);
704                 if (ptrace) {
705                         current->ptrace = ptrace;
706                         __ptrace_link(current, parent);
707                 }
708
709                 list_del(&current->tasks);
710                 list_add_tail(&current->tasks, &init_task.tasks);
711                 current->exit_signal = SIGCHLD;
712                 state = leader->state;
713
714                 write_unlock_irq(&tasklist_lock);
715                 spin_unlock(&leader->proc_lock);
716                 spin_unlock(&current->proc_lock);
717                 proc_pid_flush(proc_dentry1);
718                 proc_pid_flush(proc_dentry2);
719
720                 if (state != TASK_ZOMBIE)
721                         BUG();
722                 release_task(leader);
723         }
724
725 no_thread_group:
726
727         write_lock_irq(&tasklist_lock);
728         spin_lock(&oldsighand->siglock);
729         spin_lock(&newsighand->siglock);
730
731         if (current == oldsig->curr_target)
732                 oldsig->curr_target = next_thread(current);
733         if (newsig)
734                 current->signal = newsig;
735         current->sighand = newsighand;
736         init_sigpending(&current->pending);
737         recalc_sigpending();
738
739         spin_unlock(&newsighand->siglock);
740         spin_unlock(&oldsighand->siglock);
741         write_unlock_irq(&tasklist_lock);
742
743         if (newsig && atomic_dec_and_test(&oldsig->count))
744                 kmem_cache_free(signal_cachep, oldsig);
745
746         if (atomic_dec_and_test(&oldsighand->count))
747                 kmem_cache_free(sighand_cachep, oldsighand);
748
749         if (!thread_group_empty(current))
750                 BUG();
751         if (current->tgid != current->pid)
752                 BUG();
753         return 0;
754 }
755         
756 /*
757  * These functions flushes out all traces of the currently running executable
758  * so that a new one can be started
759  */
760
761 static inline void flush_old_files(struct files_struct * files)
762 {
763         long j = -1;
764
765         spin_lock(&files->file_lock);
766         for (;;) {
767                 unsigned long set, i;
768
769                 j++;
770                 i = j * __NFDBITS;
771                 if (i >= files->max_fds || i >= files->max_fdset)
772                         break;
773                 set = files->close_on_exec->fds_bits[j];
774                 if (!set)
775                         continue;
776                 files->close_on_exec->fds_bits[j] = 0;
777                 spin_unlock(&files->file_lock);
778                 for ( ; set ; i++,set >>= 1) {
779                         if (set & 1) {
780                                 sys_close(i);
781                         }
782                 }
783                 spin_lock(&files->file_lock);
784
785         }
786         spin_unlock(&files->file_lock);
787 }
788
789 int flush_old_exec(struct linux_binprm * bprm)
790 {
791         char * name;
792         int i, ch, retval;
793         struct files_struct *files;
794
795         /*
796          * Make sure we have a private signal table and that
797          * we are unassociated from the previous thread group.
798          */
799         retval = de_thread(current);
800         if (retval)
801                 goto out;
802
803         /*
804          * Make sure we have private file handles. Ask the
805          * fork helper to do the work for us and the exit
806          * helper to do the cleanup of the old one.
807          */
808         files = current->files;         /* refcounted so safe to hold */
809         retval = unshare_files();
810         if (retval)
811                 goto out;
812         /*
813          * Release all of the old mmap stuff
814          */
815         retval = exec_mmap(bprm->mm);
816         if (retval)
817                 goto mmap_failed;
818
819         bprm->mm = NULL;                /* We're using it now */
820
821         /* This is the point of no return */
822         steal_locks(files);
823         put_files_struct(files);
824
825         current->sas_ss_sp = current->sas_ss_size = 0;
826
827         if (current->euid == current->uid && current->egid == current->gid)
828                 current->mm->dumpable = 1;
829         name = bprm->filename;
830         for (i=0; (ch = *(name++)) != '\0';) {
831                 if (ch == '/')
832                         i = 0;
833                 else
834                         if (i < 15)
835                                 current->comm[i++] = ch;
836         }
837         current->comm[i] = '\0';
838
839         flush_thread();
840
841         if (bprm->e_uid != current->euid || bprm->e_gid != current->egid || 
842             permission(bprm->file->f_dentry->d_inode,MAY_READ, NULL) ||
843             (bprm->interp_flags & BINPRM_FLAGS_ENFORCE_NONDUMP))
844                 current->mm->dumpable = 0;
845
846         /* An exec changes our domain. We are no longer part of the thread
847            group */
848
849         current->self_exec_id++;
850                         
851         flush_signal_handlers(current, 0);
852         flush_old_files(current->files);
853
854         return 0;
855
856 mmap_failed:
857         put_files_struct(current->files);
858         current->files = files;
859 out:
860         return retval;
861 }
862
863 EXPORT_SYMBOL(flush_old_exec);
864
865 /* 
866  * Fill the binprm structure from the inode. 
867  * Check permissions, then read the first 128 (BINPRM_BUF_SIZE) bytes
868  */
869 int prepare_binprm(struct linux_binprm *bprm)
870 {
871         int mode;
872         struct inode * inode = bprm->file->f_dentry->d_inode;
873         int retval;
874
875         mode = inode->i_mode;
876         /*
877          * Check execute perms again - if the caller has CAP_DAC_OVERRIDE,
878          * vfs_permission lets a non-executable through
879          */
880         if (!(mode & 0111))     /* with at least _one_ execute bit set */
881                 return -EACCES;
882         if (bprm->file->f_op == NULL)
883                 return -EACCES;
884
885         bprm->e_uid = current->euid;
886         bprm->e_gid = current->egid;
887
888         if(!(bprm->file->f_vfsmnt->mnt_flags & MNT_NOSUID)) {
889                 /* Set-uid? */
890                 if (mode & S_ISUID) {
891                         current->personality &= ~PER_CLEAR_ON_SETID;
892                         bprm->e_uid = inode->i_uid;
893                 }
894
895                 /* Set-gid? */
896                 /*
897                  * If setgid is set but no group execute bit then this
898                  * is a candidate for mandatory locking, not a setgid
899                  * executable.
900                  */
901                 if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) {
902                         current->personality &= ~PER_CLEAR_ON_SETID;
903                         bprm->e_gid = inode->i_gid;
904                 }
905         }
906
907         /* fill in binprm security blob */
908         retval = security_bprm_set(bprm);
909         if (retval)
910                 return retval;
911
912         memset(bprm->buf,0,BINPRM_BUF_SIZE);
913         return kernel_read(bprm->file,0,bprm->buf,BINPRM_BUF_SIZE);
914 }
915
916 EXPORT_SYMBOL(prepare_binprm);
917
918 static inline int unsafe_exec(struct task_struct *p)
919 {
920         int unsafe = 0;
921         if (p->ptrace & PT_PTRACED) {
922                 if (p->ptrace & PT_PTRACE_CAP)
923                         unsafe |= LSM_UNSAFE_PTRACE_CAP;
924                 else
925                         unsafe |= LSM_UNSAFE_PTRACE;
926         }
927         if (atomic_read(&p->fs->count) > 1 ||
928             atomic_read(&p->files->count) > 1 ||
929             atomic_read(&p->sighand->count) > 1)
930                 unsafe |= LSM_UNSAFE_SHARE;
931
932         return unsafe;
933 }
934
935 void compute_creds(struct linux_binprm *bprm)
936 {
937         int unsafe;
938         task_lock(current);
939         unsafe = unsafe_exec(current);
940         security_bprm_apply_creds(bprm, unsafe);
941         task_unlock(current);
942 }
943
944 EXPORT_SYMBOL(compute_creds);
945
946 void remove_arg_zero(struct linux_binprm *bprm)
947 {
948         if (bprm->argc) {
949                 unsigned long offset;
950                 char * kaddr;
951                 struct page *page;
952
953                 offset = bprm->p % PAGE_SIZE;
954                 goto inside;
955
956                 while (bprm->p++, *(kaddr+offset++)) {
957                         if (offset != PAGE_SIZE)
958                                 continue;
959                         offset = 0;
960                         kunmap_atomic(kaddr, KM_USER0);
961 inside:
962                         page = bprm->page[bprm->p/PAGE_SIZE];
963                         kaddr = kmap_atomic(page, KM_USER0);
964                 }
965                 kunmap_atomic(kaddr, KM_USER0);
966                 bprm->argc--;
967         }
968 }
969
970 EXPORT_SYMBOL(remove_arg_zero);
971
972 /*
973  * cycle the list of binary formats handler, until one recognizes the image
974  */
975 int search_binary_handler(struct linux_binprm *bprm,struct pt_regs *regs)
976 {
977         int try,retval=0;
978         struct linux_binfmt *fmt;
979 #ifdef __alpha__
980         /* handle /sbin/loader.. */
981         {
982             struct exec * eh = (struct exec *) bprm->buf;
983
984             if (!bprm->loader && eh->fh.f_magic == 0x183 &&
985                 (eh->fh.f_flags & 0x3000) == 0x3000)
986             {
987                 struct file * file;
988                 unsigned long loader;
989
990                 allow_write_access(bprm->file);
991                 fput(bprm->file);
992                 bprm->file = NULL;
993
994                 loader = PAGE_SIZE*MAX_ARG_PAGES-sizeof(void *);
995
996                 file = open_exec("/sbin/loader");
997                 retval = PTR_ERR(file);
998                 if (IS_ERR(file))
999                         return retval;
1000
1001                 /* Remember if the application is TASO.  */
1002                 bprm->sh_bang = eh->ah.entry < 0x100000000UL;
1003
1004                 bprm->file = file;
1005                 bprm->loader = loader;
1006                 retval = prepare_binprm(bprm);
1007                 if (retval<0)
1008                         return retval;
1009                 /* should call search_binary_handler recursively here,
1010                    but it does not matter */
1011             }
1012         }
1013 #endif
1014         retval = security_bprm_check(bprm);
1015         if (retval)
1016                 return retval;
1017
1018         /* kernel module loader fixup */
1019         /* so we don't try to load run modprobe in kernel space. */
1020         set_fs(USER_DS);
1021         for (try=0; try<2; try++) {
1022                 read_lock(&binfmt_lock);
1023                 for (fmt = formats ; fmt ; fmt = fmt->next) {
1024                         int (*fn)(struct linux_binprm *, struct pt_regs *) = fmt->load_binary;
1025                         if (!fn)
1026                                 continue;
1027                         if (!try_module_get(fmt->module))
1028                                 continue;
1029                         read_unlock(&binfmt_lock);
1030                         retval = fn(bprm, regs);
1031                         if (retval >= 0) {
1032                                 put_binfmt(fmt);
1033                                 allow_write_access(bprm->file);
1034                                 if (bprm->file)
1035                                         fput(bprm->file);
1036                                 bprm->file = NULL;
1037                                 current->did_exec = 1;
1038                                 return retval;
1039                         }
1040                         read_lock(&binfmt_lock);
1041                         put_binfmt(fmt);
1042                         if (retval != -ENOEXEC || bprm->mm == NULL)
1043                                 break;
1044                         if (!bprm->file) {
1045                                 read_unlock(&binfmt_lock);
1046                                 return retval;
1047                         }
1048                 }
1049                 read_unlock(&binfmt_lock);
1050                 if (retval != -ENOEXEC || bprm->mm == NULL) {
1051                         break;
1052 #ifdef CONFIG_KMOD
1053                 }else{
1054 #define printable(c) (((c)=='\t') || ((c)=='\n') || (0x20<=(c) && (c)<=0x7e))
1055                         if (printable(bprm->buf[0]) &&
1056                             printable(bprm->buf[1]) &&
1057                             printable(bprm->buf[2]) &&
1058                             printable(bprm->buf[3]))
1059                                 break; /* -ENOEXEC */
1060                         request_module("binfmt-%04x", *(unsigned short *)(&bprm->buf[2]));
1061 #endif
1062                 }
1063         }
1064         return retval;
1065 }
1066
1067 EXPORT_SYMBOL(search_binary_handler);
1068
1069 /*
1070  * sys_execve() executes a new program.
1071  */
1072 int do_execve(char * filename,
1073         char __user *__user *argv,
1074         char __user *__user *envp,
1075         struct pt_regs * regs)
1076 {
1077         struct linux_binprm bprm;
1078         struct file *file;
1079         int retval;
1080         int i;
1081
1082         file = open_exec(filename);
1083
1084         retval = PTR_ERR(file);
1085         if (IS_ERR(file))
1086                 return retval;
1087
1088         sched_balance_exec();
1089
1090         bprm.p = PAGE_SIZE*MAX_ARG_PAGES-sizeof(void *);
1091         memset(bprm.page, 0, MAX_ARG_PAGES*sizeof(bprm.page[0]));
1092
1093         bprm.file = file;
1094         bprm.filename = filename;
1095         bprm.interp = filename;
1096         bprm.interp_flags = 0;
1097         bprm.interp_data = 0;
1098         bprm.sh_bang = 0;
1099         bprm.loader = 0;
1100         bprm.exec = 0;
1101         bprm.security = NULL;
1102         bprm.mm = mm_alloc();
1103         retval = -ENOMEM;
1104         if (!bprm.mm)
1105                 goto out_file;
1106
1107         retval = init_new_context(current, bprm.mm);
1108         if (retval < 0)
1109                 goto out_mm;
1110
1111         bprm.argc = count(argv, bprm.p / sizeof(void *));
1112         if ((retval = bprm.argc) < 0)
1113                 goto out_mm;
1114
1115         bprm.envc = count(envp, bprm.p / sizeof(void *));
1116         if ((retval = bprm.envc) < 0)
1117                 goto out_mm;
1118
1119         retval = security_bprm_alloc(&bprm);
1120         if (retval)
1121                 goto out;
1122
1123         retval = prepare_binprm(&bprm);
1124         if (retval < 0)
1125                 goto out;
1126
1127         retval = copy_strings_kernel(1, &bprm.filename, &bprm);
1128         if (retval < 0)
1129                 goto out;
1130
1131         bprm.exec = bprm.p;
1132         retval = copy_strings(bprm.envc, envp, &bprm);
1133         if (retval < 0)
1134                 goto out;
1135
1136         retval = copy_strings(bprm.argc, argv, &bprm);
1137         if (retval < 0)
1138                 goto out;
1139
1140         retval = search_binary_handler(&bprm,regs);
1141         if (retval >= 0) {
1142                 free_arg_pages(&bprm);
1143
1144                 /* execve success */
1145                 security_bprm_free(&bprm);
1146                 return retval;
1147         }
1148
1149 out:
1150         /* Something went wrong, return the inode and free the argument pages*/
1151         for (i = 0 ; i < MAX_ARG_PAGES ; i++) {
1152                 struct page * page = bprm.page[i];
1153                 if (page)
1154                         __free_page(page);
1155         }
1156
1157         if (bprm.security)
1158                 security_bprm_free(&bprm);
1159
1160 out_mm:
1161         if (bprm.mm)
1162                 mmdrop(bprm.mm);
1163
1164 out_file:
1165         if (bprm.file) {
1166                 allow_write_access(bprm.file);
1167                 fput(bprm.file);
1168         }
1169         return retval;
1170 }
1171
1172 EXPORT_SYMBOL(do_execve);
1173
1174 int set_binfmt(struct linux_binfmt *new)
1175 {
1176         struct linux_binfmt *old = current->binfmt;
1177
1178         if (new) {
1179                 if (!try_module_get(new->module))
1180                         return -1;
1181         }
1182         current->binfmt = new;
1183         if (old)
1184                 module_put(old->module);
1185         return 0;
1186 }
1187
1188 EXPORT_SYMBOL(set_binfmt);
1189
1190 #define CORENAME_MAX_SIZE 64
1191
1192 /* format_corename will inspect the pattern parameter, and output a
1193  * name into corename, which must have space for at least
1194  * CORENAME_MAX_SIZE bytes plus one byte for the zero terminator.
1195  */
1196 void format_corename(char *corename, const char *pattern, long signr)
1197 {
1198         const char *pat_ptr = pattern;
1199         char *out_ptr = corename;
1200         char *const out_end = corename + CORENAME_MAX_SIZE;
1201         int rc;
1202         int pid_in_pattern = 0;
1203
1204         /* Repeat as long as we have more pattern to process and more output
1205            space */
1206         while (*pat_ptr) {
1207                 if (*pat_ptr != '%') {
1208                         if (out_ptr == out_end)
1209                                 goto out;
1210                         *out_ptr++ = *pat_ptr++;
1211                 } else {
1212                         switch (*++pat_ptr) {
1213                         case 0:
1214                                 goto out;
1215                         /* Double percent, output one percent */
1216                         case '%':
1217                                 if (out_ptr == out_end)
1218                                         goto out;
1219                                 *out_ptr++ = '%';
1220                                 break;
1221                         /* pid */
1222                         case 'p':
1223                                 pid_in_pattern = 1;
1224                                 rc = snprintf(out_ptr, out_end - out_ptr,
1225                                               "%d", current->tgid);
1226                                 if (rc > out_end - out_ptr)
1227                                         goto out;
1228                                 out_ptr += rc;
1229                                 break;
1230                         /* uid */
1231                         case 'u':
1232                                 rc = snprintf(out_ptr, out_end - out_ptr,
1233                                               "%d", current->uid);
1234                                 if (rc > out_end - out_ptr)
1235                                         goto out;
1236                                 out_ptr += rc;
1237                                 break;
1238                         /* gid */
1239                         case 'g':
1240                                 rc = snprintf(out_ptr, out_end - out_ptr,
1241                                               "%d", current->gid);
1242                                 if (rc > out_end - out_ptr)
1243                                         goto out;
1244                                 out_ptr += rc;
1245                                 break;
1246                         /* signal that caused the coredump */
1247                         case 's':
1248                                 rc = snprintf(out_ptr, out_end - out_ptr,
1249                                               "%ld", signr);
1250                                 if (rc > out_end - out_ptr)
1251                                         goto out;
1252                                 out_ptr += rc;
1253                                 break;
1254                         /* UNIX time of coredump */
1255                         case 't': {
1256                                 struct timeval tv;
1257                                 do_gettimeofday(&tv);
1258                                 rc = snprintf(out_ptr, out_end - out_ptr,
1259                                               "%lu", tv.tv_sec);
1260                                 if (rc > out_end - out_ptr)
1261                                         goto out;
1262                                 out_ptr += rc;
1263                                 break;
1264                         }
1265                         /* hostname */
1266                         case 'h':
1267                                 down_read(&uts_sem);
1268                                 rc = snprintf(out_ptr, out_end - out_ptr,
1269                                               "%s", system_utsname.nodename);
1270                                 up_read(&uts_sem);
1271                                 if (rc > out_end - out_ptr)
1272                                         goto out;
1273                                 out_ptr += rc;
1274                                 break;
1275                         /* executable */
1276                         case 'e':
1277                                 rc = snprintf(out_ptr, out_end - out_ptr,
1278                                               "%s", current->comm);
1279                                 if (rc > out_end - out_ptr)
1280                                         goto out;
1281                                 out_ptr += rc;
1282                                 break;
1283                         default:
1284                                 break;
1285                         }
1286                         ++pat_ptr;
1287                 }
1288         }
1289         /* Backward compatibility with core_uses_pid:
1290          *
1291          * If core_pattern does not include a %p (as is the default)
1292          * and core_uses_pid is set, then .%pid will be appended to
1293          * the filename */
1294         if (!pid_in_pattern
1295             && (core_uses_pid || atomic_read(&current->mm->mm_users) != 1)) {
1296                 rc = snprintf(out_ptr, out_end - out_ptr,
1297                               ".%d", current->tgid);
1298                 if (rc > out_end - out_ptr)
1299                         goto out;
1300                 out_ptr += rc;
1301         }
1302       out:
1303         *out_ptr = 0;
1304 }
1305
1306 static void zap_threads (struct mm_struct *mm)
1307 {
1308         struct task_struct *g, *p;
1309         struct task_struct *tsk = current;
1310         struct completion *vfork_done = tsk->vfork_done;
1311
1312         /*
1313          * Make sure nobody is waiting for us to release the VM,
1314          * otherwise we can deadlock when we wait on each other
1315          */
1316         if (vfork_done) {
1317                 tsk->vfork_done = NULL;
1318                 complete(vfork_done);
1319         }
1320
1321         read_lock(&tasklist_lock);
1322         do_each_thread(g,p)
1323                 if (mm == p->mm && p != tsk) {
1324                         force_sig_specific(SIGKILL, p);
1325                         mm->core_waiters++;
1326                 }
1327         while_each_thread(g,p);
1328
1329         read_unlock(&tasklist_lock);
1330 }
1331
1332 static void coredump_wait(struct mm_struct *mm)
1333 {
1334         DECLARE_COMPLETION(startup_done);
1335
1336         mm->core_waiters++; /* let other threads block */
1337         mm->core_startup_done = &startup_done;
1338
1339         /* give other threads a chance to run: */
1340         yield();
1341
1342         zap_threads(mm);
1343         if (--mm->core_waiters) {
1344                 up_write(&mm->mmap_sem);
1345                 wait_for_completion(&startup_done);
1346         } else
1347                 up_write(&mm->mmap_sem);
1348         BUG_ON(mm->core_waiters);
1349 }
1350
1351 int do_coredump(long signr, int exit_code, struct pt_regs * regs)
1352 {
1353         char corename[CORENAME_MAX_SIZE + 1];
1354         struct mm_struct *mm = current->mm;
1355         struct linux_binfmt * binfmt;
1356         struct inode * inode;
1357         struct file * file;
1358         int retval = 0;
1359
1360         lock_kernel();
1361         binfmt = current->binfmt;
1362         if (!binfmt || !binfmt->core_dump)
1363                 goto fail;
1364         down_write(&mm->mmap_sem);
1365         if (!mm->dumpable) {
1366                 up_write(&mm->mmap_sem);
1367                 goto fail;
1368         }
1369         mm->dumpable = 0;
1370         init_completion(&mm->core_done);
1371         current->signal->group_exit = 1;
1372         current->signal->group_exit_code = exit_code;
1373         coredump_wait(mm);
1374
1375         if (current->rlim[RLIMIT_CORE].rlim_cur < binfmt->min_coredump)
1376                 goto fail_unlock;
1377
1378         format_corename(corename, core_pattern, signr);
1379         file = filp_open(corename, O_CREAT | 2 | O_NOFOLLOW | O_LARGEFILE, 0600);
1380         if (IS_ERR(file))
1381                 goto fail_unlock;
1382         inode = file->f_dentry->d_inode;
1383         if (inode->i_nlink > 1)
1384                 goto close_fail;        /* multiple links - don't dump */
1385         if (d_unhashed(file->f_dentry))
1386                 goto close_fail;
1387
1388         if (!S_ISREG(inode->i_mode))
1389                 goto close_fail;
1390         if (!file->f_op)
1391                 goto close_fail;
1392         if (!file->f_op->write)
1393                 goto close_fail;
1394         if (do_truncate(file->f_dentry, 0) != 0)
1395                 goto close_fail;
1396
1397         retval = binfmt->core_dump(signr, regs, file);
1398
1399         current->signal->group_exit_code |= 0x80;
1400 close_fail:
1401         filp_close(file, NULL);
1402 fail_unlock:
1403         complete_all(&mm->core_done);
1404 fail:
1405         unlock_kernel();
1406         return retval;
1407 }