2 * Copyright (c) 1993, David Greenman
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 #include <sys/cdefs.h>
28 __FBSDID("$FreeBSD$");
30 #include <sys/param.h>
32 #include <sys/imgact.h>
33 #include <sys/imgact_aout.h>
34 #include <sys/kernel.h>
36 #include <sys/malloc.h>
37 #include <sys/mutex.h>
39 #include <sys/resourcevar.h>
40 #include <sys/signalvar.h>
41 #include <sys/syscall.h>
42 #include <sys/sysent.h>
43 #include <sys/systm.h>
44 #include <sys/vnode.h>
46 #include <machine/frame.h>
47 #include <machine/md_var.h>
51 #include <vm/vm_map.h>
52 #include <vm/vm_object.h>
53 #include <vm/vm_param.h>
55 static int exec_aout_imgact(struct image_params
*imgp
);
56 static int aout_fixup(register_t
**stack_base
, struct image_params
*imgp
);
58 struct sysentvec aout_sysvec
= {
88 aout_fixup(stack_base
, imgp
)
89 register_t
**stack_base
;
90 struct image_params
*imgp
;
93 return (suword(--(*stack_base
), imgp
->args
->argc
));
97 exec_aout_imgact(imgp
)
98 struct image_params
*imgp
;
100 const struct exec
*a_out
= (const struct exec
*) imgp
->image_header
;
101 struct vmspace
*vmspace
;
104 vm_offset_t text_end
, data_end
;
105 unsigned long virtual_offset
;
106 unsigned long file_offset
;
107 unsigned long bss_size
;
111 * Linux and *BSD binaries look very much alike,
112 * only the machine id is different:
113 * 0x64 for Linux, 0x86 for *BSD, 0x00 for BSDI.
114 * NetBSD is in network byte order.. ugh.
116 if (((a_out
->a_magic
>> 16) & 0xff) != 0x86 &&
117 ((a_out
->a_magic
>> 16) & 0xff) != 0 &&
118 ((((int)ntohl(a_out
->a_magic
)) >> 16) & 0xff) != 0x86)
122 * Set file/virtual offset based on a.out variant.
123 * We do two cases: host byte order and network byte order
124 * (for NetBSD compatibility)
126 switch ((int)(a_out
->a_magic
& 0xffff)) {
130 file_offset
= PAGE_SIZE
;
132 /* Bill's "screwball mode" */
137 virtual_offset
= PAGE_SIZE
;
139 /* Pass PS_STRINGS for BSD/OS binaries only. */
140 if (N_GETMID(*a_out
) == MID_ZERO
)
141 imgp
->ps_strings
= aout_sysvec
.sv_psstrings
;
144 /* NetBSD compatibility */
145 switch ((int)(ntohl(a_out
->a_magic
) & 0xffff)) {
148 virtual_offset
= PAGE_SIZE
;
156 bss_size
= roundup(a_out
->a_bss
, PAGE_SIZE
);
159 * Check various fields in header for validity/bounds.
161 if (/* entry point must lay with text region */
162 a_out
->a_entry
< virtual_offset
||
163 a_out
->a_entry
>= virtual_offset
+ a_out
->a_text
||
165 /* text and data size must each be page rounded */
166 a_out
->a_text
& PAGE_MASK
|| a_out
->a_data
& PAGE_MASK
)
169 /* text + data can't exceed file size */
170 if (a_out
->a_data
+ a_out
->a_text
> imgp
->attr
->va_size
)
174 * text/data/bss must not exceed limits
176 PROC_LOCK(imgp
->proc
);
177 if (/* text can't exceed maximum text size */
178 a_out
->a_text
> maxtsiz
||
180 /* data + bss can't exceed rlimit */
181 a_out
->a_data
+ bss_size
> lim_cur(imgp
->proc
, RLIMIT_DATA
)) {
182 PROC_UNLOCK(imgp
->proc
);
185 PROC_UNLOCK(imgp
->proc
);
188 * Avoid a possible deadlock if the current address space is destroyed
189 * and that address space maps the locked vnode. In the common case,
190 * the locked vnode's v_usecount is decremented but remains greater
191 * than zero. Consequently, the vnode lock is not needed by vrele().
192 * However, in cases where the vnode lock is external, such as nullfs,
193 * v_usecount may become zero.
195 VOP_UNLOCK(imgp
->vp
, 0);
198 * Destroy old process VM and create a new one (with a new stack)
200 error
= exec_new_vmspace(imgp
, &aout_sysvec
);
202 vn_lock(imgp
->vp
, LK_EXCLUSIVE
| LK_RETRY
);
207 * The vm space can be changed by exec_new_vmspace
209 vmspace
= imgp
->proc
->p_vmspace
;
211 object
= imgp
->object
;
212 map
= &vmspace
->vm_map
;
214 vm_object_reference(object
);
216 text_end
= virtual_offset
+ a_out
->a_text
;
217 error
= vm_map_insert(map
, object
,
219 virtual_offset
, text_end
,
220 VM_PROT_READ
| VM_PROT_EXECUTE
, VM_PROT_ALL
,
221 MAP_COPY_ON_WRITE
| MAP_PREFAULT
);
224 vm_object_deallocate(object
);
227 data_end
= text_end
+ a_out
->a_data
;
229 vm_object_reference(object
);
230 error
= vm_map_insert(map
, object
,
231 file_offset
+ a_out
->a_text
,
233 VM_PROT_ALL
, VM_PROT_ALL
,
234 MAP_COPY_ON_WRITE
| MAP_PREFAULT
);
237 vm_object_deallocate(object
);
243 error
= vm_map_insert(map
, NULL
, 0,
244 data_end
, data_end
+ bss_size
,
245 VM_PROT_ALL
, VM_PROT_ALL
, 0);
253 /* Fill in process VM information */
254 vmspace
->vm_tsize
= a_out
->a_text
>> PAGE_SHIFT
;
255 vmspace
->vm_dsize
= (a_out
->a_data
+ bss_size
) >> PAGE_SHIFT
;
256 vmspace
->vm_taddr
= (caddr_t
) (uintptr_t) virtual_offset
;
257 vmspace
->vm_daddr
= (caddr_t
) (uintptr_t)
258 (virtual_offset
+ a_out
->a_text
);
260 /* Fill in image_params */
261 imgp
->interpreted
= 0;
262 imgp
->entry_addr
= a_out
->a_entry
;
264 imgp
->proc
->p_sysent
= &aout_sysvec
;
270 * Tell kern_execve.c about it, with a little help from the linker.
272 static struct execsw aout_execsw
= { exec_aout_imgact
, "a.out" };
273 EXEC_SET(aout
, aout_execsw
);