Per-CPU VFS Namecache Effectiveness Statistics:
[dragonfly.git] / sys / emulation / svr4 / imgact_svr4.c
1 /*-
2  * Copyright (c) 1998 Mark Newton
3  * Copyright (c) 1994-1996 Søren Schmidt
4  * All rights reserved.
5  *
6  * Based heavily on /sys/kern/imgact_aout.c which is:
7  * Copyright (c) 1993, David Greenman
8  *
9  * Redistribution and use in source and binary forms, with or without
10  * modification, are permitted provided that the following conditions
11  * are met:
12  * 1. Redistributions of source code must retain the above copyright
13  *    notice, this list of conditions and the following disclaimer 
14  *    in this position and unchanged.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. The name of the author may not be used to endorse or promote products
19  *    derived from this software withough specific prior written permission
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
22  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
23  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
24  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  *
32  * $FreeBSD: src/sys/svr4/imgact_svr4.c,v 1.8.2.1 2001/11/03 01:41:09 ps Exp $
33  * $DragonFly: src/sys/emulation/svr4/Attic/imgact_svr4.c,v 1.7 2004/01/20 18:41:51 dillon Exp $
34  */
35
36 #include <sys/param.h>
37 #include <sys/systm.h>
38 #include <sys/resourcevar.h>
39 #include <sys/exec.h>
40 #include <sys/mman.h>
41 #include <sys/imgact.h>
42 #include <sys/imgact_aout.h>
43 #include <sys/kernel.h>
44 #include <sys/lock.h>
45 #include <sys/proc.h>
46 #include <sys/vnode.h>
47
48 #include <vm/vm.h>
49 #include <vm/vm_kern.h>
50 #include <vm/vm_param.h>
51 #include <vm/pmap.h>
52 #include <vm/vm_map.h>
53 #include <vm/vm_extern.h>
54
55 #include "svr4.h"
56
57 static int      exec_svr4_imgact (struct image_params *iparams);
58
59 static int
60 exec_svr4_imgact(imgp)
61     struct image_params *imgp;
62 {
63     const struct exec *a_out = (const struct exec *) imgp->image_header;
64     struct vmspace *vmspace;
65     vm_offset_t vmaddr;
66     unsigned long virtual_offset, file_offset;
67     vm_offset_t buffer;
68     unsigned long bss_size;
69     int error;
70
71     if (((a_out->a_magic >> 16) & 0xff) != 0x64)
72         return -1;
73
74     /*
75      * Set file/virtual offset based on a.out variant.
76      */
77     switch ((int)(a_out->a_magic & 0xffff)) {
78     case 0413:
79         virtual_offset = 0;
80         file_offset = 1024;
81         break;
82     case 0314:
83         virtual_offset = 4096;
84         file_offset = 0;
85         break;
86     default:
87         return (-1);
88     }
89     bss_size = round_page(a_out->a_bss);
90 #ifdef DEBUG
91     printf("imgact: text: %08lx, data: %08lx, bss: %08lx\n", a_out->a_text, a_out->a_data, bss_size);
92 #endif
93
94     /*
95      * Check various fields in header for validity/bounds.
96      */
97     if (a_out->a_entry < virtual_offset ||
98         a_out->a_entry >= virtual_offset + a_out->a_text ||
99         a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK)
100         return (-1);
101
102     /* text + data can't exceed file size */
103     if (a_out->a_data + a_out->a_text > imgp->attr->va_size)
104         return (EFAULT);
105     /*
106      * text/data/bss must not exceed limits
107      */
108     if (a_out->a_text > maxtsiz ||
109         a_out->a_data + bss_size > imgp->proc->p_rlimit[RLIMIT_DATA].rlim_cur)
110         return (ENOMEM);
111
112     /*
113      * Destroy old process VM and create a new one (with a new stack)
114      */
115     exec_new_vmspace(imgp, NULL);
116     vmspace = imgp->proc->p_vmspace;
117
118     /*
119      * Check if file_offset page aligned,.
120      * Currently we cannot handle misalinged file offsets,
121      * and so we read in the entire image (what a waste).
122      */
123     if (file_offset & PAGE_MASK) {
124 #ifdef DEBUG
125         printf("imgact: Non page aligned binary %ld\n", file_offset);
126 #endif
127         /*
128          * Map text+data+bss read/write/execute
129          */
130         vmaddr = virtual_offset;
131         error = vm_map_find(&vmspace->vm_map, NULL, 0, &vmaddr,
132                             a_out->a_text + a_out->a_data + bss_size, FALSE,
133                             VM_PROT_ALL, VM_PROT_ALL, 0);
134         if (error)
135             return error;
136
137         error = vm_mmap(kernel_map, &buffer,
138                         round_page(a_out->a_text + a_out->a_data + file_offset),
139                         VM_PROT_READ, VM_PROT_READ, 0,
140                         (caddr_t) imgp->vp, trunc_page(file_offset));
141         if (error)
142             return error;
143
144         error = copyout((caddr_t)(buffer + file_offset), (caddr_t)vmaddr, 
145                         a_out->a_text + a_out->a_data);
146
147         vm_map_remove(kernel_map, buffer,
148                       buffer + round_page(a_out->a_text + a_out->a_data + file_offset));
149
150         if (error)
151             return error;
152
153         /*
154          * remove write enable on the 'text' part
155          */
156         error = vm_map_protect(&vmspace->vm_map,
157                                vmaddr,
158                                vmaddr + a_out->a_text,
159                                VM_PROT_EXECUTE|VM_PROT_READ,
160                                TRUE);
161         if (error)
162             return error;
163     }
164     else {
165 #ifdef DEBUG
166         printf("imgact: Page aligned binary %ld\n", file_offset);
167 #endif
168         /*
169          * Map text+data read/execute
170          */
171         vmaddr = virtual_offset;
172         error = vm_mmap(&vmspace->vm_map, &vmaddr,
173                         a_out->a_text + a_out->a_data,
174                         VM_PROT_READ | VM_PROT_EXECUTE,
175                         VM_PROT_ALL,
176                         MAP_PRIVATE | MAP_FIXED,
177                         (caddr_t)imgp->vp, file_offset);
178         if (error)
179             return (error);
180     
181 #ifdef DEBUG
182         printf("imgact: startaddr=%08x, length=%08lx\n", vmaddr, a_out->a_text + a_out->a_data);
183 #endif
184         /*
185          * allow read/write of data
186          */
187         error = vm_map_protect(&vmspace->vm_map,
188                                vmaddr + a_out->a_text,
189                                vmaddr + a_out->a_text + a_out->a_data,
190                                VM_PROT_ALL,
191                                FALSE);
192         if (error)
193             return (error);
194     
195         /*
196          * Allocate anon demand-zeroed area for uninitialized data
197          */
198         if (bss_size != 0) {
199             vmaddr = virtual_offset + a_out->a_text + a_out->a_data;
200             error = vm_map_find(&vmspace->vm_map, NULL, 0, &vmaddr, 
201                                 bss_size, FALSE, VM_PROT_ALL, VM_PROT_ALL, 0);
202             if (error)
203                 return (error);
204 #ifdef DEBUG
205             printf("imgact: bssaddr=%08x, length=%08lx\n", vmaddr, bss_size);
206 #endif
207
208         }
209         /* Indicate that this file should not be modified */
210         imgp->vp->v_flag |= VTEXT;
211     }
212     /* Fill in process VM information */
213     vmspace->vm_tsize = round_page(a_out->a_text) >> PAGE_SHIFT;
214     vmspace->vm_dsize = round_page(a_out->a_data + bss_size) >> PAGE_SHIFT;
215     vmspace->vm_taddr = (caddr_t)virtual_offset;
216     vmspace->vm_daddr = (caddr_t)virtual_offset + a_out->a_text;
217
218     /* Fill in image_params */
219     imgp->interpreted = 0;
220     imgp->entry_addr = a_out->a_entry;
221     
222     imgp->proc->p_sysent = &svr4_sysvec;
223     return (0);
224 }
225
226 /*
227  * Tell kern_execve.c about it, with a little help from the linker.
228  */
229 struct execsw svr4_execsw = { exec_svr4_imgact, "svr4 ELF" };
230 EXEC_SET(execsw_set, svr4_execsw);
231