Upgrade libressl. 1/2
[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/pioctl.h>
40 #include <sys/signalvar.h>
41 #include <sys/stat.h>
42 #include <sys/sysent.h>
43 #include <sys/syscall.h>
44 #include <sys/vnode.h>
45 #include <machine/md_var.h>
46
47 #include <vm/vm.h>
48 #include <vm/vm_param.h>
49 #include <sys/lock.h>
50 #include <vm/pmap.h>
51 #include <vm/vm_map.h>
52 #include <vm/vm_object.h>
53
54 static int      exec_aout_imgact (struct image_params *imgp);
55
56 struct sysentvec aout_sysvec = {
57         SYS_MAXSYSCALL,
58         sysent,
59         0,
60         0,
61         0,
62         0,
63         0,
64         0,
65         sendsig,
66         sigcode,
67         &szsigcode,
68         "FreeBSD a.out",
69         NULL,
70         NULL,
71         MINSIGSTKSZ
72 };
73
74 static int
75 exec_aout_imgact(struct image_params *imgp)
76 {
77         const struct exec *a_out = (const struct exec *) imgp->image_header;
78         struct vmspace *vmspace;
79         struct vnode *vp;
80         int count;
81         vm_map_t map;
82         vm_object_t object;
83         vm_offset_t text_end, data_end;
84         unsigned long virtual_offset;
85         unsigned long file_offset;
86         unsigned long bss_size;
87         int error;
88
89         /*
90          * Linux and *BSD binaries look very much alike,
91          * only the machine id is different:
92          * 0x64 for Linux, 0x86 for *BSD, 0x00 for BSDI.
93          * NetBSD is in network byte order.. ugh.
94          */
95         if (((a_out->a_magic >> 16) & 0xff) != 0x86 &&
96             ((a_out->a_magic >> 16) & 0xff) != 0 &&
97             ((((int)ntohl(a_out->a_magic)) >> 16) & 0xff) != 0x86)
98                 return -1;
99
100         /*
101          * Set file/virtual offset based on a.out variant.
102          *      We do two cases: host byte order and network byte order
103          *      (for NetBSD compatibility)
104          */
105         switch ((int)(a_out->a_magic & 0xffff)) {
106         case ZMAGIC:
107                 virtual_offset = 0;
108                 if (a_out->a_text) {
109                         file_offset = PAGE_SIZE;
110                 } else {
111                         /* Bill's "screwball mode" */
112                         file_offset = 0;
113                 }
114                 break;
115         case QMAGIC:
116                 virtual_offset = PAGE_SIZE;
117                 file_offset = 0;
118                 /* Pass PS_STRINGS for BSD/OS binaries only. */
119                 if (N_GETMID(*a_out) == MID_ZERO)
120                         imgp->ps_strings = PS_STRINGS;
121                 break;
122         default:
123                 /* NetBSD compatibility */
124                 switch ((int)(ntohl(a_out->a_magic) & 0xffff)) {
125                 case ZMAGIC:
126                 case QMAGIC:
127                         virtual_offset = PAGE_SIZE;
128                         file_offset = 0;
129                         break;
130                 default:
131                         return (-1);
132                 }
133         }
134
135         bss_size = roundup(a_out->a_bss, PAGE_SIZE);
136
137         /*
138          * Check various fields in header for validity/bounds.
139          */
140         if (/* entry point must lay with text region */
141             a_out->a_entry < virtual_offset ||
142             a_out->a_entry >= virtual_offset + a_out->a_text ||
143
144             /* text and data size must each be page rounded */
145             a_out->a_text & PAGE_MASK || a_out->a_data & PAGE_MASK)
146                 return (-1);
147
148         /* text + data can't exceed file size */
149         if (a_out->a_data + a_out->a_text > imgp->attr->va_size)
150                 return (EFAULT);
151
152         /*
153          * text/data/bss must not exceed limits
154          */
155         if (/* text can't exceed maximum text size */
156             a_out->a_text > maxtsiz ||
157
158             /* data + bss can't exceed rlimit */
159             a_out->a_data + bss_size >
160                 imgp->proc->p_rlimit[RLIMIT_DATA].rlim_cur)
161                         return (ENOMEM);
162
163         /*
164          * Destroy old process VM and create a new one (with a new stack)
165          */
166         exec_new_vmspace(imgp, NULL);
167
168         /*
169          * The vm space can be changed by exec_new_vmspace
170          */
171         vmspace = imgp->proc->p_vmspace;
172
173         vp = imgp->vp;
174         map = &vmspace->vm_map;
175         count = vm_map_entry_reserve(MAP_RESERVE_COUNT);
176         vm_map_lock(map);
177         object = vp->v_object;
178         vm_object_hold(object);
179         vm_object_reference_locked(object);
180
181         text_end = virtual_offset + a_out->a_text;
182         error = vm_map_insert(map, &count, object, NULL,
183                 file_offset, NULL,
184                 virtual_offset, text_end,
185                 VM_MAPTYPE_NORMAL,
186                 VM_SUBSYS_IMGACT,
187                 VM_PROT_READ | VM_PROT_EXECUTE, VM_PROT_ALL,
188                 MAP_COPY_ON_WRITE | MAP_PREFAULT | MAP_PREFAULT_RELOCK);
189
190         if (error) {
191                 vm_object_deallocate_locked(object);
192                 vm_object_drop(object);
193                 vm_map_unlock(map);
194                 vm_map_entry_release(count);
195                 return (error);
196         }
197
198         data_end = text_end + a_out->a_data;
199         if (a_out->a_data) {
200                 vm_object_reference_locked(object);
201                 error = vm_map_insert(map, &count, object, NULL,
202                         file_offset + a_out->a_text, NULL,
203                         text_end, data_end,
204                         VM_MAPTYPE_NORMAL,
205                         VM_SUBSYS_IMGACT,
206                         VM_PROT_ALL, VM_PROT_ALL,
207                         MAP_COPY_ON_WRITE | MAP_PREFAULT | MAP_PREFAULT_RELOCK);
208                 if (error) {
209                         vm_object_deallocate_locked(object);
210                         vm_object_drop(object);
211                         vm_map_unlock(map);
212                         vm_map_entry_release(count);
213                         return (error);
214                 }
215         }
216         vm_object_drop(object);
217
218         if (bss_size) {
219                 error = vm_map_insert(map, &count, NULL, NULL,
220                         0, NULL,
221                         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);