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