sbin/fsck_hammer2: Add destroy.c to destroy ondisk inode/dirent
[dragonfly.git] / sys / kern / imgact_aout.c
1 /*
2  * Copyright (c) 1993, David Greenman
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
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.
13  *
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
24  * SUCH DAMAGE.
25  *
26  * $FreeBSD: src/sys/kern/imgact_aout.c,v 1.59.2.5 2001/11/03 01:41:08 ps Exp $
27  */
28
29 #include <sys/param.h>
30 #include <sys/resourcevar.h>
31 #include <sys/exec.h>
32 #include <sys/fcntl.h>
33 #include <sys/imgact.h>
34 #include <sys/imgact_aout.h>
35 #include <sys/kernel.h>
36 #include <sys/malloc.h>
37 #include <sys/systm.h>
38 #include <sys/proc.h>
39 #include <sys/namei.h>
40 #include <sys/pioctl.h>
41 #include <sys/signalvar.h>
42 #include <sys/stat.h>
43 #include <sys/sysent.h>
44 #include <sys/syscall.h>
45 #include <sys/vnode.h>
46 #include <machine/md_var.h>
47
48 #include <vm/vm.h>
49 #include <vm/vm_param.h>
50 #include <sys/lock.h>
51 #include <vm/pmap.h>
52 #include <vm/vm_map.h>
53 #include <vm/vm_object.h>
54
55 static int      exec_aout_imgact (struct image_params *imgp);
56
57 struct sysentvec aout_sysvec = {
58         SYS_MAXSYSCALL,
59         sysent,
60         0,
61         0,
62         0,
63         0,
64         0,
65         0,
66         sendsig,
67         sigcode,
68         &szsigcode,
69         "FreeBSD a.out",
70         NULL,
71         NULL,
72         MINSIGSTKSZ
73 };
74
75 static int
76 exec_aout_imgact(struct image_params *imgp)
77 {
78         const struct exec *a_out = (const struct exec *) imgp->image_header;
79         struct vmspace *vmspace;
80         struct vnode *vp;
81         int count;
82         vm_map_t map;
83         vm_object_t object;
84         vm_offset_t text_end, data_end;
85         unsigned long virtual_offset;
86         unsigned long file_offset;
87         unsigned long bss_size;
88         int error;
89
90         /*
91          * Linux and *BSD binaries look very much alike,
92          * only the machine id is different:
93          * 0x64 for Linux, 0x86 for *BSD, 0x00 for BSDI.
94          * NetBSD is in network byte order.. ugh.
95          */
96         if (((a_out->a_magic >> 16) & 0xff) != 0x86 &&
97             ((a_out->a_magic >> 16) & 0xff) != 0 &&
98             ((((int)ntohl(a_out->a_magic)) >> 16) & 0xff) != 0x86)
99                 return -1;
100
101         /*
102          * Set file/virtual offset based on a.out variant.
103          *      We do two cases: host byte order and network byte order
104          *      (for NetBSD compatibility)
105          */
106         switch ((int)(a_out->a_magic & 0xffff)) {
107         case ZMAGIC:
108                 virtual_offset = 0;
109                 if (a_out->a_text) {
110                         file_offset = PAGE_SIZE;
111                 } else {
112                         /* Bill's "screwball mode" */
113                         file_offset = 0;
114                 }
115                 break;
116         case QMAGIC:
117                 virtual_offset = PAGE_SIZE;
118                 file_offset = 0;
119                 /* Pass PS_STRINGS for BSD/OS binaries only. */
120                 if (N_GETMID(*a_out) == MID_ZERO)
121                         imgp->ps_strings = PS_STRINGS;
122                 break;
123         default:
124                 /* NetBSD compatibility */
125                 switch ((int)(ntohl(a_out->a_magic) & 0xffff)) {
126                 case ZMAGIC:
127                 case QMAGIC:
128                         virtual_offset = PAGE_SIZE;
129                         file_offset = 0;
130                         break;
131                 default:
132                         return (-1);
133                 }
134         }
135
136         bss_size = roundup(a_out->a_bss, PAGE_SIZE);
137
138         /*
139          * Check various fields in header for validity/bounds.
140          */
141         if (/* entry point must lay with text region */
142             a_out->a_entry < virtual_offset ||
143             a_out->a_entry >= virtual_offset + a_out->a_text ||
144
145             /* text and data size must each be page rounded */
146             a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK)
147                 return (-1);
148
149         /* text + data can't exceed file size */
150         if (a_out->a_data + a_out->a_text > imgp->attr->va_size)
151                 return (EFAULT);
152
153         /*
154          * text/data/bss must not exceed limits
155          */
156         if (/* text can't exceed maximum text size */
157             a_out->a_text > maxtsiz ||
158
159             /* data + bss can't exceed rlimit */
160             a_out->a_data + bss_size >
161                 imgp->proc->p_rlimit[RLIMIT_DATA].rlim_cur)
162                         return (ENOMEM);
163
164         /*
165          * Destroy old process VM and create a new one (with a new stack)
166          */
167         exec_new_vmspace(imgp, NULL);
168
169         /*
170          * The vm space can be changed by exec_new_vmspace
171          */
172         vmspace = imgp->proc->p_vmspace;
173
174         vp = imgp->vp;
175         map = &vmspace->vm_map;
176         count = vm_map_entry_reserve(MAP_RESERVE_COUNT);
177         vm_map_lock(map);
178         object = vp->v_object;
179         vm_object_hold(object);
180         vm_object_reference_locked(object);
181
182         text_end = virtual_offset + a_out->a_text;
183         error = vm_map_insert(map, &count, object, NULL,
184                 file_offset,
185                 virtual_offset, text_end,
186                 VM_MAPTYPE_NORMAL,
187                 VM_SUBSYS_IMGACT,
188                 VM_PROT_READ | VM_PROT_EXECUTE, VM_PROT_ALL,
189                 MAP_COPY_ON_WRITE | MAP_PREFAULT | MAP_PREFAULT_RELOCK);
190
191         if (error) {
192                 vm_object_deallocate_locked(object);
193                 vm_object_drop(object);
194                 vm_map_unlock(map);
195                 vm_map_entry_release(count);
196                 return (error);
197         }
198
199         data_end = text_end + a_out->a_data;
200         if (a_out->a_data) {
201                 vm_object_reference_locked(object);
202                 error = vm_map_insert(map, &count, object, NULL,
203                         file_offset + a_out->a_text,
204                         text_end, data_end,
205                         VM_MAPTYPE_NORMAL,
206                         VM_SUBSYS_IMGACT,
207                         VM_PROT_ALL, VM_PROT_ALL,
208                         MAP_COPY_ON_WRITE | MAP_PREFAULT | MAP_PREFAULT_RELOCK);
209                 if (error) {
210                         vm_object_deallocate_locked(object);
211                         vm_object_drop(object);
212                         vm_map_unlock(map);
213                         vm_map_entry_release(count);
214                         return (error);
215                 }
216         }
217         vm_object_drop(object);
218
219         if (bss_size) {
220                 error = vm_map_insert(map, &count, NULL, NULL,
221                         0, data_end, data_end + bss_size,
222                         VM_MAPTYPE_NORMAL,
223                         VM_SUBSYS_IMGACT,
224                         VM_PROT_ALL, VM_PROT_ALL,
225                         0);
226                 if (error) {
227                         vm_map_unlock(map);
228                         vm_map_entry_release(count);
229                         return (error);
230                 }
231         }
232         vm_map_unlock(map);
233         vm_map_entry_release(count);
234
235         /* Fill in process VM information */
236         vmspace->vm_tsize = a_out->a_text;              /* in bytes */
237         vmspace->vm_dsize = a_out->a_data + bss_size;   /* in bytes */
238         vmspace->vm_taddr = (caddr_t) (uintptr_t) virtual_offset;
239         vmspace->vm_daddr = (caddr_t) (uintptr_t)
240                             (virtual_offset + a_out->a_text);
241
242         /* Fill in image_params */
243         imgp->interpreted = 0;
244         imgp->entry_addr = a_out->a_entry;
245
246         imgp->proc->p_sysent = &aout_sysvec;
247
248         /* Indicate that this file should not be modified */
249         vsetflags(imgp->vp, VTEXT);
250
251         return (0);
252 }
253
254 /*
255  * Tell kern_execve.c about it, with a little help from the linker.
256  */
257 static struct execsw aout_execsw = { exec_aout_imgact, "a.out" };
258 EXEC_SET(aout, aout_execsw);