patch-2.6.6-vs1.9.0
[linux-2.6.git] / fs / binfmt_aout.c
1 /*
2  *  linux/fs/binfmt_aout.c
3  *
4  *  Copyright (C) 1991, 1992, 1996  Linus Torvalds
5  */
6
7 #include <linux/module.h>
8
9 #include <linux/time.h>
10 #include <linux/kernel.h>
11 #include <linux/mm.h>
12 #include <linux/mman.h>
13 #include <linux/a.out.h>
14 #include <linux/errno.h>
15 #include <linux/signal.h>
16 #include <linux/string.h>
17 #include <linux/fs.h>
18 #include <linux/file.h>
19 #include <linux/stat.h>
20 #include <linux/fcntl.h>
21 #include <linux/ptrace.h>
22 #include <linux/user.h>
23 #include <linux/slab.h>
24 #include <linux/binfmts.h>
25 #include <linux/personality.h>
26 #include <linux/init.h>
27
28 #include <asm/system.h>
29 #include <asm/uaccess.h>
30 #include <asm/pgalloc.h>
31 #include <asm/cacheflush.h>
32
33 static int load_aout_binary(struct linux_binprm *, struct pt_regs * regs);
34 static int load_aout_library(struct file*);
35 static int aout_core_dump(long signr, struct pt_regs * regs, struct file *file);
36
37 extern void dump_thread(struct pt_regs *, struct user *);
38
39 static struct linux_binfmt aout_format = {
40         .module         = THIS_MODULE,
41         .load_binary    = load_aout_binary,
42         .load_shlib     = load_aout_library,
43         .core_dump      = aout_core_dump,
44         .min_coredump   = PAGE_SIZE
45 };
46
47 static void set_brk(unsigned long start, unsigned long end)
48 {
49         start = PAGE_ALIGN(start);
50         end = PAGE_ALIGN(end);
51         if (end <= start)
52                 return;
53         do_brk(start, end - start);
54 }
55
56 /*
57  * These are the only things you should do on a core-file: use only these
58  * macros to write out all the necessary info.
59  */
60
61 static int dump_write(struct file *file, const void *addr, int nr)
62 {
63         return file->f_op->write(file, addr, nr, &file->f_pos) == nr;
64 }
65
66 #define DUMP_WRITE(addr, nr)    \
67         if (!dump_write(file, (void *)(addr), (nr))) \
68                 goto end_coredump;
69
70 #define DUMP_SEEK(offset) \
71 if (file->f_op->llseek) { \
72         if (file->f_op->llseek(file,(offset),0) != (offset)) \
73                 goto end_coredump; \
74 } else file->f_pos = (offset)
75
76 /*
77  * Routine writes a core dump image in the current directory.
78  * Currently only a stub-function.
79  *
80  * Note that setuid/setgid files won't make a core-dump if the uid/gid
81  * changed due to the set[u|g]id. It's enforced by the "current->mm->dumpable"
82  * field, which also makes sure the core-dumps won't be recursive if the
83  * dumping of the process results in another error..
84  */
85
86 static int aout_core_dump(long signr, struct pt_regs * regs, struct file *file)
87 {
88         mm_segment_t fs;
89         int has_dumped = 0;
90         unsigned long dump_start, dump_size;
91         struct user dump;
92 #if defined(__alpha__)
93 #       define START_DATA(u)    (u.start_data)
94 #elif defined(__arm__)
95 #       define START_DATA(u)    ((u.u_tsize << PAGE_SHIFT) + u.start_code)
96 #elif defined(__sparc__)
97 #       define START_DATA(u)    (u.u_tsize)
98 #elif defined(__i386__) || defined(__mc68000__) || defined(__arch_um__)
99 #       define START_DATA(u)    (u.u_tsize << PAGE_SHIFT)
100 #endif
101 #ifdef __sparc__
102 #       define START_STACK(u)   ((regs->u_regs[UREG_FP]) & ~(PAGE_SIZE - 1))
103 #else
104 #       define START_STACK(u)   (u.start_stack)
105 #endif
106
107         fs = get_fs();
108         set_fs(KERNEL_DS);
109         has_dumped = 1;
110         current->flags |= PF_DUMPCORE;
111         strncpy(dump.u_comm, current->comm, sizeof(current->comm));
112 #ifndef __sparc__
113         dump.u_ar0 = (void *)(((unsigned long)(&dump.regs)) - ((unsigned long)(&dump)));
114 #endif
115         dump.signal = signr;
116         dump_thread(regs, &dump);
117
118 /* If the size of the dump file exceeds the rlimit, then see what would happen
119    if we wrote the stack, but not the data area.  */
120 #ifdef __sparc__
121         if ((dump.u_dsize+dump.u_ssize) >
122             current->rlim[RLIMIT_CORE].rlim_cur)
123                 dump.u_dsize = 0;
124 #else
125         if ((dump.u_dsize+dump.u_ssize+1) * PAGE_SIZE >
126             current->rlim[RLIMIT_CORE].rlim_cur)
127                 dump.u_dsize = 0;
128 #endif
129
130 /* Make sure we have enough room to write the stack and data areas. */
131 #ifdef __sparc__
132         if ((dump.u_ssize) >
133             current->rlim[RLIMIT_CORE].rlim_cur)
134                 dump.u_ssize = 0;
135 #else
136         if ((dump.u_ssize+1) * PAGE_SIZE >
137             current->rlim[RLIMIT_CORE].rlim_cur)
138                 dump.u_ssize = 0;
139 #endif
140
141 /* make sure we actually have a data and stack area to dump */
142         set_fs(USER_DS);
143 #ifdef __sparc__
144         if (verify_area(VERIFY_READ, (void *) START_DATA(dump), dump.u_dsize))
145                 dump.u_dsize = 0;
146         if (verify_area(VERIFY_READ, (void *) START_STACK(dump), dump.u_ssize))
147                 dump.u_ssize = 0;
148 #else
149         if (verify_area(VERIFY_READ, (void *) START_DATA(dump), dump.u_dsize << PAGE_SHIFT))
150                 dump.u_dsize = 0;
151         if (verify_area(VERIFY_READ, (void *) START_STACK(dump), dump.u_ssize << PAGE_SHIFT))
152                 dump.u_ssize = 0;
153 #endif
154
155         set_fs(KERNEL_DS);
156 /* struct user */
157         DUMP_WRITE(&dump,sizeof(dump));
158 /* Now dump all of the user data.  Include malloced stuff as well */
159 #ifndef __sparc__
160         DUMP_SEEK(PAGE_SIZE);
161 #endif
162 /* now we start writing out the user space info */
163         set_fs(USER_DS);
164 /* Dump the data area */
165         if (dump.u_dsize != 0) {
166                 dump_start = START_DATA(dump);
167 #ifdef __sparc__
168                 dump_size = dump.u_dsize;
169 #else
170                 dump_size = dump.u_dsize << PAGE_SHIFT;
171 #endif
172                 DUMP_WRITE(dump_start,dump_size);
173         }
174 /* Now prepare to dump the stack area */
175         if (dump.u_ssize != 0) {
176                 dump_start = START_STACK(dump);
177 #ifdef __sparc__
178                 dump_size = dump.u_ssize;
179 #else
180                 dump_size = dump.u_ssize << PAGE_SHIFT;
181 #endif
182                 DUMP_WRITE(dump_start,dump_size);
183         }
184 /* Finally dump the task struct.  Not be used by gdb, but could be useful */
185         set_fs(KERNEL_DS);
186         DUMP_WRITE(current,sizeof(*current));
187 end_coredump:
188         set_fs(fs);
189         return has_dumped;
190 }
191
192 /*
193  * create_aout_tables() parses the env- and arg-strings in new user
194  * memory and creates the pointer tables from them, and puts their
195  * addresses on the "stack", returning the new stack pointer value.
196  */
197 static unsigned long * create_aout_tables(char * p, struct linux_binprm * bprm)
198 {
199         char **argv, **envp;
200         unsigned long * sp;
201         int argc = bprm->argc;
202         int envc = bprm->envc;
203
204         sp = (unsigned long *) ((-(unsigned long)sizeof(char *)) & (unsigned long) p);
205 #ifdef __sparc__
206         /* This imposes the proper stack alignment for a new process. */
207         sp = (unsigned long *) (((unsigned long) sp) & ~7);
208         if ((envc+argc+3)&1) --sp;
209 #endif
210 #ifdef __alpha__
211 /* whee.. test-programs are so much fun. */
212         put_user(0, --sp);
213         put_user(0, --sp);
214         if (bprm->loader) {
215                 put_user(0, --sp);
216                 put_user(0x3eb, --sp);
217                 put_user(bprm->loader, --sp);
218                 put_user(0x3ea, --sp);
219         }
220         put_user(bprm->exec, --sp);
221         put_user(0x3e9, --sp);
222 #endif
223         sp -= envc+1;
224         envp = (char **) sp;
225         sp -= argc+1;
226         argv = (char **) sp;
227 #if defined(__i386__) || defined(__mc68000__) || defined(__arm__) || defined(__arch_um__)
228         put_user((unsigned long) envp,--sp);
229         put_user((unsigned long) argv,--sp);
230 #endif
231         put_user(argc,--sp);
232         current->mm->arg_start = (unsigned long) p;
233         while (argc-->0) {
234                 char c;
235                 put_user(p,argv++);
236                 do {
237                         get_user(c,p++);
238                 } while (c);
239         }
240         put_user(NULL,argv);
241         current->mm->arg_end = current->mm->env_start = (unsigned long) p;
242         while (envc-->0) {
243                 char c;
244                 put_user(p,envp++);
245                 do {
246                         get_user(c,p++);
247                 } while (c);
248         }
249         put_user(NULL,envp);
250         current->mm->env_end = (unsigned long) p;
251         return sp;
252 }
253
254 /*
255  * These are the functions used to load a.out style executables and shared
256  * libraries.  There is no binary dependent code anywhere else.
257  */
258
259 static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
260 {
261         struct exec ex;
262         unsigned long error;
263         unsigned long fd_offset;
264         unsigned long rlim;
265         int retval;
266
267         ex = *((struct exec *) bprm->buf);              /* exec-header */
268         if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC &&
269              N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) ||
270             N_TRSIZE(ex) || N_DRSIZE(ex) ||
271             i_size_read(bprm->file->f_dentry->d_inode) < ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
272                 return -ENOEXEC;
273         }
274
275         fd_offset = N_TXTOFF(ex);
276
277         /* Check initial limits. This avoids letting people circumvent
278          * size limits imposed on them by creating programs with large
279          * arrays in the data or bss.
280          */
281         rlim = current->rlim[RLIMIT_DATA].rlim_cur;
282         if (rlim >= RLIM_INFINITY)
283                 rlim = ~0;
284         if (ex.a_data + ex.a_bss > rlim)
285                 return -ENOMEM;
286
287         /* Flush all traces of the currently running executable */
288         retval = flush_old_exec(bprm);
289         if (retval)
290                 return retval;
291
292         /* OK, This is the point of no return */
293 #if defined(__alpha__)
294         SET_AOUT_PERSONALITY(bprm, ex);
295 #elif defined(__sparc__)
296         set_personality(PER_SUNOS);
297 #if !defined(__sparc_v9__)
298         memcpy(&current->thread.core_exec, &ex, sizeof(struct exec));
299 #endif
300 #else
301         set_personality(PER_LINUX);
302 #endif
303
304         current->mm->end_code = ex.a_text +
305                 (current->mm->start_code = N_TXTADDR(ex));
306         current->mm->end_data = ex.a_data +
307                 (current->mm->start_data = N_DATADDR(ex));
308         current->mm->brk = ex.a_bss +
309                 (current->mm->start_brk = N_BSSADDR(ex));
310         current->mm->free_area_cache = TASK_UNMAPPED_BASE;
311
312         // current->mm->rss = 0;
313         vx_rsspages_sub(current->mm, current->mm->rss);
314         current->mm->mmap = NULL;
315         compute_creds(bprm);
316         current->flags &= ~PF_FORKNOEXEC;
317 #ifdef __sparc__
318         if (N_MAGIC(ex) == NMAGIC) {
319                 loff_t pos = fd_offset;
320                 /* Fuck me plenty... */
321                 /* <AOL></AOL> */
322                 error = do_brk(N_TXTADDR(ex), ex.a_text);
323                 bprm->file->f_op->read(bprm->file, (char *) N_TXTADDR(ex),
324                           ex.a_text, &pos);
325                 error = do_brk(N_DATADDR(ex), ex.a_data);
326                 bprm->file->f_op->read(bprm->file, (char *) N_DATADDR(ex),
327                           ex.a_data, &pos);
328                 goto beyond_if;
329         }
330 #endif
331
332         if (N_MAGIC(ex) == OMAGIC) {
333                 unsigned long text_addr, map_size;
334                 loff_t pos;
335
336                 text_addr = N_TXTADDR(ex);
337
338 #if defined(__alpha__) || defined(__sparc__)
339                 pos = fd_offset;
340                 map_size = ex.a_text+ex.a_data + PAGE_SIZE - 1;
341 #else
342                 pos = 32;
343                 map_size = ex.a_text+ex.a_data;
344 #endif
345
346                 error = do_brk(text_addr & PAGE_MASK, map_size);
347                 if (error != (text_addr & PAGE_MASK)) {
348                         send_sig(SIGKILL, current, 0);
349                         return error;
350                 }
351
352                 error = bprm->file->f_op->read(bprm->file, (char *)text_addr,
353                           ex.a_text+ex.a_data, &pos);
354                 if ((signed long)error < 0) {
355                         send_sig(SIGKILL, current, 0);
356                         return error;
357                 }
358                          
359                 flush_icache_range(text_addr, text_addr+ex.a_text+ex.a_data);
360         } else {
361                 static unsigned long error_time, error_time2;
362                 if ((ex.a_text & 0xfff || ex.a_data & 0xfff) &&
363                     (N_MAGIC(ex) != NMAGIC) && (jiffies-error_time2) > 5*HZ)
364                 {
365                         printk(KERN_NOTICE "executable not page aligned\n");
366                         error_time2 = jiffies;
367                 }
368
369                 if ((fd_offset & ~PAGE_MASK) != 0 &&
370                     (jiffies-error_time) > 5*HZ)
371                 {
372                         printk(KERN_WARNING 
373                                "fd_offset is not page aligned. Please convert program: %s\n",
374                                bprm->file->f_dentry->d_name.name);
375                         error_time = jiffies;
376                 }
377
378                 if (!bprm->file->f_op->mmap||((fd_offset & ~PAGE_MASK) != 0)) {
379                         loff_t pos = fd_offset;
380                         do_brk(N_TXTADDR(ex), ex.a_text+ex.a_data);
381                         bprm->file->f_op->read(bprm->file,(char *)N_TXTADDR(ex),
382                                         ex.a_text+ex.a_data, &pos);
383                         flush_icache_range((unsigned long) N_TXTADDR(ex),
384                                            (unsigned long) N_TXTADDR(ex) +
385                                            ex.a_text+ex.a_data);
386                         goto beyond_if;
387                 }
388
389                 down_write(&current->mm->mmap_sem);
390                 error = do_mmap(bprm->file, N_TXTADDR(ex), ex.a_text,
391                         PROT_READ | PROT_EXEC,
392                         MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE,
393                         fd_offset);
394                 up_write(&current->mm->mmap_sem);
395
396                 if (error != N_TXTADDR(ex)) {
397                         send_sig(SIGKILL, current, 0);
398                         return error;
399                 }
400
401                 down_write(&current->mm->mmap_sem);
402                 error = do_mmap(bprm->file, N_DATADDR(ex), ex.a_data,
403                                 PROT_READ | PROT_WRITE | PROT_EXEC,
404                                 MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE,
405                                 fd_offset + ex.a_text);
406                 up_write(&current->mm->mmap_sem);
407                 if (error != N_DATADDR(ex)) {
408                         send_sig(SIGKILL, current, 0);
409                         return error;
410                 }
411         }
412 beyond_if:
413         set_binfmt(&aout_format);
414
415         set_brk(current->mm->start_brk, current->mm->brk);
416
417         retval = setup_arg_pages(bprm, EXSTACK_DEFAULT);
418         if (retval < 0) { 
419                 /* Someone check-me: is this error path enough? */ 
420                 send_sig(SIGKILL, current, 0); 
421                 return retval;
422         }
423
424         current->mm->start_stack =
425                 (unsigned long) create_aout_tables((char *) bprm->p, bprm);
426 #ifdef __alpha__
427         regs->gp = ex.a_gpvalue;
428 #endif
429         start_thread(regs, ex.a_entry, current->mm->start_stack);
430         if (unlikely(current->ptrace & PT_PTRACED)) {
431                 if (current->ptrace & PT_TRACE_EXEC)
432                         ptrace_notify ((PTRACE_EVENT_EXEC << 8) | SIGTRAP);
433                 else
434                         send_sig(SIGTRAP, current, 0);
435         }
436         return 0;
437 }
438
439 static int load_aout_library(struct file *file)
440 {
441         struct inode * inode;
442         unsigned long bss, start_addr, len;
443         unsigned long error;
444         int retval;
445         struct exec ex;
446
447         inode = file->f_dentry->d_inode;
448
449         retval = -ENOEXEC;
450         error = kernel_read(file, 0, (char *) &ex, sizeof(ex));
451         if (error != sizeof(ex))
452                 goto out;
453
454         /* We come in here for the regular a.out style of shared libraries */
455         if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != QMAGIC) || N_TRSIZE(ex) ||
456             N_DRSIZE(ex) || ((ex.a_entry & 0xfff) && N_MAGIC(ex) == ZMAGIC) ||
457             i_size_read(inode) < ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
458                 goto out;
459         }
460
461         if (N_FLAGS(ex))
462                 goto out;
463
464         /* For  QMAGIC, the starting address is 0x20 into the page.  We mask
465            this off to get the starting address for the page */
466
467         start_addr =  ex.a_entry & 0xfffff000;
468
469         if ((N_TXTOFF(ex) & ~PAGE_MASK) != 0) {
470                 static unsigned long error_time;
471                 loff_t pos = N_TXTOFF(ex);
472
473                 if ((jiffies-error_time) > 5*HZ)
474                 {
475                         printk(KERN_WARNING 
476                                "N_TXTOFF is not page aligned. Please convert library: %s\n",
477                                file->f_dentry->d_name.name);
478                         error_time = jiffies;
479                 }
480
481                 do_brk(start_addr, ex.a_text + ex.a_data + ex.a_bss);
482                 
483                 file->f_op->read(file, (char *)start_addr,
484                         ex.a_text + ex.a_data, &pos);
485                 flush_icache_range((unsigned long) start_addr,
486                                    (unsigned long) start_addr + ex.a_text + ex.a_data);
487
488                 retval = 0;
489                 goto out;
490         }
491         /* Now use mmap to map the library into memory. */
492         down_write(&current->mm->mmap_sem);
493         error = do_mmap(file, start_addr, ex.a_text + ex.a_data,
494                         PROT_READ | PROT_WRITE | PROT_EXEC,
495                         MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE,
496                         N_TXTOFF(ex));
497         up_write(&current->mm->mmap_sem);
498         retval = error;
499         if (error != start_addr)
500                 goto out;
501
502         len = PAGE_ALIGN(ex.a_text + ex.a_data);
503         bss = ex.a_text + ex.a_data + ex.a_bss;
504         if (bss > len) {
505                 error = do_brk(start_addr + len, bss - len);
506                 retval = error;
507                 if (error != start_addr + len)
508                         goto out;
509         }
510         retval = 0;
511 out:
512         return retval;
513 }
514
515 static int __init init_aout_binfmt(void)
516 {
517         return register_binfmt(&aout_format);
518 }
519
520 static void __exit exit_aout_binfmt(void)
521 {
522         unregister_binfmt(&aout_format);
523 }
524
525 module_init(init_aout_binfmt);
526 module_exit(exit_aout_binfmt);
527 MODULE_LICENSE("GPL");