vserver 2.0 rc7
[linux-2.6.git] / fs / binfmt_som.c
1 /*
2  * linux/fs/binfmt_som.c
3  *
4  * These are the functions used to load SOM format executables as used
5  * by HP-UX.  
6  *
7  * Copyright 1999 Matthew Wilcox <willy@bofh.ai>
8  * based on binfmt_elf which is
9  * Copyright 1993, 1994: Eric Youngdale (ericy@cais.com).
10  */
11
12 #include <linux/module.h>
13
14 #include <linux/fs.h>
15 #include <linux/stat.h>
16 #include <linux/sched.h>
17 #include <linux/mm.h>
18 #include <linux/mman.h>
19 #include <linux/errno.h>
20 #include <linux/signal.h>
21 #include <linux/binfmts.h>
22 #include <linux/som.h>
23 #include <linux/string.h>
24 #include <linux/file.h>
25 #include <linux/fcntl.h>
26 #include <linux/ptrace.h>
27 #include <linux/slab.h>
28 #include <linux/shm.h>
29 #include <linux/personality.h>
30 #include <linux/init.h>
31 #include <linux/vs_memory.h>
32
33 #include <asm/uaccess.h>
34 #include <asm/pgtable.h>
35
36 #include <linux/config.h>
37
38 #include <linux/elf.h>
39
40 static int load_som_binary(struct linux_binprm * bprm, struct pt_regs * regs);
41 static int load_som_library(struct file *);
42
43 /*
44  * If we don't support core dumping, then supply a NULL so we
45  * don't even try.
46  */
47 #if 0
48 static int som_core_dump(long signr, struct pt_regs * regs);
49 #else
50 #define som_core_dump   NULL
51 #endif
52
53 #define SOM_PAGESTART(_v) ((_v) & ~(unsigned long)(SOM_PAGESIZE-1))
54 #define SOM_PAGEOFFSET(_v) ((_v) & (SOM_PAGESIZE-1))
55 #define SOM_PAGEALIGN(_v) (((_v) + SOM_PAGESIZE - 1) & ~(SOM_PAGESIZE - 1))
56
57 static struct linux_binfmt som_format = {
58         .module         = THIS_MODULE,
59         .load_binary    = load_som_binary,
60         .load_shlib     = load_som_library,
61         .core_dump      = som_core_dump,
62         .min_coredump   = SOM_PAGESIZE
63 };
64
65 /*
66  * create_som_tables() parses the env- and arg-strings in new user
67  * memory and creates the pointer tables from them, and puts their
68  * addresses on the "stack", returning the new stack pointer value.
69  */
70 static void create_som_tables(struct linux_binprm *bprm)
71 {
72         char **argv, **envp;
73         int argc = bprm->argc;
74         int envc = bprm->envc;
75         unsigned long p;
76         unsigned long *sp;
77
78         /* Word-align the stack pointer */
79         sp = (unsigned long *)((bprm->p + 3) & ~3);
80
81         envp = (char **) sp;
82         sp += envc + 1;
83         argv = (char **) sp;
84         sp += argc + 1;
85
86         __put_user((unsigned long) envp,++sp);
87         __put_user((unsigned long) argv,++sp);
88
89         __put_user(argc, ++sp);
90
91         bprm->p = (unsigned long) sp;
92
93         p = current->mm->arg_start;
94         while (argc-- > 0) {
95                 __put_user((char *)p,argv++);
96                 p += strlen_user((char *)p);
97         }
98         __put_user(NULL, argv);
99         current->mm->arg_end = current->mm->env_start = p;
100         while (envc-- > 0) {
101                 __put_user((char *)p,envp++);
102                 p += strlen_user((char *)p);
103         }
104         __put_user(NULL, envp);
105         current->mm->env_end = p;
106 }
107
108 static int check_som_header(struct som_hdr *som_ex)
109 {
110         int *buf = (int *)som_ex;
111         int i, ck;
112
113         if (som_ex->system_id != SOM_SID_PARISC_1_0 &&
114             som_ex->system_id != SOM_SID_PARISC_1_1 &&
115             som_ex->system_id != SOM_SID_PARISC_2_0)
116                 return -ENOEXEC;
117
118         if (som_ex->a_magic != SOM_EXEC_NONSHARE &&
119             som_ex->a_magic != SOM_EXEC_SHARE &&
120             som_ex->a_magic != SOM_EXEC_DEMAND)
121                 return -ENOEXEC;
122
123         if (som_ex->version_id != SOM_ID_OLD &&
124             som_ex->version_id != SOM_ID_NEW)
125                 return -ENOEXEC;
126
127         ck = 0;
128         for (i=0; i<32; i++)
129                 ck ^= buf[i];
130         if (ck != 0)
131                 return -ENOEXEC;
132
133         return 0;
134 }
135
136 static int map_som_binary(struct file *file,
137                 const struct som_exec_auxhdr *hpuxhdr)
138 {
139         unsigned long code_start, code_size, data_start, data_size;
140         unsigned long bss_start, som_brk;
141         int retval;
142         int prot = PROT_READ | PROT_EXEC;
143         int flags = MAP_FIXED|MAP_PRIVATE|MAP_DENYWRITE|MAP_EXECUTABLE;
144
145         mm_segment_t old_fs = get_fs();
146         set_fs(get_ds());
147
148         code_start = SOM_PAGESTART(hpuxhdr->exec_tmem);
149         code_size = SOM_PAGEALIGN(hpuxhdr->exec_tsize);
150         current->mm->start_code = code_start;
151         current->mm->end_code = code_start + code_size;
152         down_write(&current->mm->mmap_sem);
153         retval = do_mmap(file, code_start, code_size, prot,
154                         flags, SOM_PAGESTART(hpuxhdr->exec_tfile));
155         up_write(&current->mm->mmap_sem);
156         if (retval < 0 && retval > -1024)
157                 goto out;
158
159         data_start = SOM_PAGESTART(hpuxhdr->exec_dmem);
160         data_size = SOM_PAGEALIGN(hpuxhdr->exec_dsize);
161         current->mm->start_data = data_start;
162         current->mm->end_data = bss_start = data_start + data_size;
163         down_write(&current->mm->mmap_sem);
164         retval = do_mmap(file, data_start, data_size,
165                         prot | PROT_WRITE, flags,
166                         SOM_PAGESTART(hpuxhdr->exec_dfile));
167         up_write(&current->mm->mmap_sem);
168         if (retval < 0 && retval > -1024)
169                 goto out;
170
171         som_brk = bss_start + SOM_PAGEALIGN(hpuxhdr->exec_bsize);
172         current->mm->start_brk = current->mm->brk = som_brk;
173         down_write(&current->mm->mmap_sem);
174         retval = do_mmap(NULL, bss_start, som_brk - bss_start,
175                         prot | PROT_WRITE, MAP_FIXED | MAP_PRIVATE, 0);
176         up_write(&current->mm->mmap_sem);
177         if (retval > 0 || retval < -1024)
178                 retval = 0;
179 out:
180         set_fs(old_fs);
181         return retval;
182 }
183
184
185 /*
186  * These are the functions used to load SOM executables and shared
187  * libraries.  There is no binary dependent code anywhere else.
188  */
189
190 static int
191 load_som_binary(struct linux_binprm * bprm, struct pt_regs * regs)
192 {
193         int som_exec_fileno;
194         int retval;
195         unsigned int size;
196         unsigned long som_entry;
197         struct som_hdr *som_ex;
198         struct som_exec_auxhdr *hpuxhdr;
199
200         /* Get the exec-header */
201         som_ex = (struct som_hdr *) bprm->buf;
202
203         retval = check_som_header(som_ex);
204         if (retval != 0)
205                 goto out;
206
207         /* Now read in the auxiliary header information */
208
209         retval = -ENOMEM;
210         size = som_ex->aux_header_size;
211         if (size > SOM_PAGESIZE)
212                 goto out;
213         hpuxhdr = (struct som_exec_auxhdr *) kmalloc(size, GFP_KERNEL);
214         if (!hpuxhdr)
215                 goto out;
216
217         retval = kernel_read(bprm->file, som_ex->aux_header_location,
218                         (char *) hpuxhdr, size);
219         if (retval < 0)
220                 goto out_free;
221 #error "Fix security hole before enabling me"
222         retval = get_unused_fd();
223         if (retval < 0)
224                 goto out_free;
225         get_file(bprm->file);
226         fd_install(som_exec_fileno = retval, bprm->file);
227
228         /* Flush all traces of the currently running executable */
229         retval = flush_old_exec(bprm);
230         if (retval)
231                 goto out_free;
232
233         /* OK, This is the point of no return */
234         current->flags &= ~PF_FORKNOEXEC;
235         current->personality = PER_HPUX;
236
237         /* Set the task size for HP-UX processes such that
238          * the gateway page is outside the address space.
239          * This can be fixed later, but for now, this is much
240          * easier.
241          */
242
243         current->thread.task_size = 0xc0000000;
244
245         /* Set map base to allow enough room for hp-ux heap growth */
246
247         current->thread.map_base = 0x80000000;
248
249         retval = map_som_binary(bprm->file, hpuxhdr);
250         if (retval < 0)
251                 goto out_free;
252
253         som_entry = hpuxhdr->exec_entry;
254         kfree(hpuxhdr);
255
256         set_binfmt(&som_format);
257         compute_creds(bprm);
258         setup_arg_pages(bprm, STACK_TOP, EXSTACK_DEFAULT);
259
260         create_som_tables(bprm);
261
262         current->mm->start_stack = bprm->p;
263         set_mm_counter(current->mm, rss, 0);
264
265 #if 0
266         printk("(start_brk) %08lx\n" , (unsigned long) current->mm->start_brk);
267         printk("(end_code) %08lx\n" , (unsigned long) current->mm->end_code);
268         printk("(start_code) %08lx\n" , (unsigned long) current->mm->start_code);
269         printk("(end_data) %08lx\n" , (unsigned long) current->mm->end_data);
270         printk("(start_stack) %08lx\n" , (unsigned long) current->mm->start_stack);
271         printk("(brk) %08lx\n" , (unsigned long) current->mm->brk);
272 #endif
273
274         map_hpux_gateway_page(current,current->mm);
275
276         start_thread_som(regs, som_entry, bprm->p);
277         if (current->ptrace & PT_PTRACED)
278                 send_sig(SIGTRAP, current, 0);
279         return 0;
280
281         /* error cleanup */
282 out_free:
283         kfree(hpuxhdr);
284 out:
285         return retval;
286 }
287
288 static int load_som_library(struct file *f)
289 {
290 /* No lib support in SOM yet.  gizza chance.. */
291         return -ENOEXEC;
292 }
293         /* Install the SOM loader.
294          * N.B. We *rely* on the table being the right size with the
295          * right number of free slots...
296          */
297
298 static int __init init_som_binfmt(void)
299 {
300         return register_binfmt(&som_format);
301 }
302
303 static void __exit exit_som_binfmt(void)
304 {
305         /* Remove the SOM loader. */
306         unregister_binfmt(&som_format);
307 }
308
309 core_initcall(init_som_binfmt);
310 module_exit(exit_som_binfmt);