exec_ecoff.c revision 1.27 1 1.27 ad /* $NetBSD: exec_ecoff.c,v 1.27 2008/11/19 18:36:06 ad Exp $ */
2 1.3 cgd
3 1.1 glass /*
4 1.1 glass * Copyright (c) 1994 Adam Glass
5 1.10 cgd * Copyright (c) 1993, 1994, 1996, 1999 Christopher G. Demetriou
6 1.1 glass * All rights reserved.
7 1.1 glass *
8 1.1 glass * Redistribution and use in source and binary forms, with or without
9 1.1 glass * modification, are permitted provided that the following conditions
10 1.1 glass * are met:
11 1.1 glass * 1. Redistributions of source code must retain the above copyright
12 1.1 glass * notice, this list of conditions and the following disclaimer.
13 1.1 glass * 2. Redistributions in binary form must reproduce the above copyright
14 1.1 glass * notice, this list of conditions and the following disclaimer in the
15 1.1 glass * documentation and/or other materials provided with the distribution.
16 1.1 glass * 3. All advertising materials mentioning features or use of this software
17 1.1 glass * must display the following acknowledgement:
18 1.10 cgd * This product includes software developed by Christopher G. Demetriou
19 1.10 cgd * for the NetBSD Project.
20 1.1 glass * 4. The name of the author may not be used to endorse or promote products
21 1.1 glass * derived from this software without specific prior written permission
22 1.1 glass *
23 1.1 glass * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
24 1.1 glass * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25 1.1 glass * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
26 1.1 glass * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
27 1.1 glass * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
28 1.1 glass * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
29 1.1 glass * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
30 1.1 glass * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 1.1 glass * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
32 1.1 glass * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33 1.1 glass */
34 1.16 lukem
35 1.16 lukem #include <sys/cdefs.h>
36 1.27 ad __KERNEL_RCSID(0, "$NetBSD: exec_ecoff.c,v 1.27 2008/11/19 18:36:06 ad Exp $");
37 1.27 ad
38 1.27 ad #ifdef _KERNEL_OPT
39 1.27 ad #include "opt_coredump.h"
40 1.27 ad #endif
41 1.1 glass
42 1.1 glass #include <sys/param.h>
43 1.1 glass #include <sys/systm.h>
44 1.1 glass #include <sys/proc.h>
45 1.1 glass #include <sys/malloc.h>
46 1.1 glass #include <sys/vnode.h>
47 1.1 glass #include <sys/exec.h>
48 1.1 glass #include <sys/resourcevar.h>
49 1.27 ad #include <sys/module.h>
50 1.27 ad #include <sys/exec.h>
51 1.27 ad #include <sys/exec_ecoff.h>
52 1.27 ad
53 1.27 ad #ifdef COREDUMP
54 1.27 ad #define DEP "coredump"
55 1.27 ad #else
56 1.27 ad #define DEP NULL
57 1.27 ad #endif
58 1.27 ad
59 1.27 ad MODULE(MODULE_CLASS_MISC, exec_ecoff, DEP)
60 1.27 ad
61 1.27 ad static const struct exec_ecoff_execsw = {
62 1.27 ad ECOFF_HDR_SIZE,
63 1.27 ad exec_ecoff_makecmds,
64 1.27 ad { .ecoff_probe_func = cpu_exec_ecoff_probe },
65 1.27 ad &emul_netbsd,
66 1.27 ad EXECSW_PRIO_ANY,
67 1.27 ad 0,
68 1.27 ad copyargs,
69 1.27 ad cpu_exec_ecoff_setregs,
70 1.27 ad coredump_netbsd,
71 1.27 ad exec_setup_stack
72 1.27 ad };
73 1.27 ad
74 1.27 ad static int
75 1.27 ad exec_ecoff_modcmd(modcmd_t cmd, void *arg)
76 1.27 ad {
77 1.27 ad int error;
78 1.27 ad
79 1.27 ad switch (cmd) {
80 1.27 ad case MODULE_CMD_INIT:
81 1.27 ad return exec_add(&exec_ecoff_execsw, 1);
82 1.27 ad
83 1.27 ad case MODULE_CMD_FINI:
84 1.27 ad return exec_remove(&exec_ecoff_execsw, 1);
85 1.1 glass
86 1.27 ad default:
87 1.27 ad return ENOTTY;
88 1.27 ad }
89 1.27 ad }
90 1.1 glass
91 1.1 glass /*
92 1.1 glass * exec_ecoff_makecmds(): Check if it's an ecoff-format executable.
93 1.1 glass *
94 1.1 glass * Given a proc pointer and an exec package pointer, see if the referent
95 1.1 glass * of the epp is in ecoff format. Check 'standard' magic numbers for
96 1.1 glass * this architecture. If that fails, return failure.
97 1.1 glass *
98 1.1 glass * This function is responsible for creating a set of vmcmds which can be
99 1.1 glass * used to build the process's vm space and inserting them into the exec
100 1.1 glass * package.
101 1.1 glass */
102 1.1 glass int
103 1.26 christos exec_ecoff_makecmds(struct lwp *l, struct exec_package *epp)
104 1.1 glass {
105 1.1 glass int error;
106 1.7 cgd struct ecoff_exechdr *execp = epp->ep_hdr;
107 1.1 glass
108 1.1 glass if (epp->ep_hdrvalid < ECOFF_HDR_SIZE)
109 1.1 glass return ENOEXEC;
110 1.1 glass
111 1.7 cgd if (ECOFF_BADMAG(execp))
112 1.1 glass return ENOEXEC;
113 1.10 cgd
114 1.26 christos error = (*epp->ep_esch->u.ecoff_probe_func)(l, epp);
115 1.10 cgd
116 1.10 cgd /*
117 1.10 cgd * if there was an error or there are already vmcmds set up,
118 1.10 cgd * we return. (the latter can happen if cpu_exec_ecoff_hook()
119 1.10 cgd * recursively invokes check_exec() to handle loading of a
120 1.10 cgd * dynamically linked binary's shared loader.
121 1.10 cgd */
122 1.10 cgd if (error || epp->ep_vmcmds.evs_cnt)
123 1.10 cgd return (error);
124 1.10 cgd
125 1.10 cgd /*
126 1.10 cgd * prepare the exec package to map the executable.
127 1.10 cgd */
128 1.7 cgd switch (execp->a.magic) {
129 1.2 glass case ECOFF_OMAGIC:
130 1.26 christos error = exec_ecoff_prep_omagic(l, epp, epp->ep_hdr,
131 1.10 cgd epp->ep_vp);
132 1.2 glass break;
133 1.2 glass case ECOFF_NMAGIC:
134 1.26 christos error = exec_ecoff_prep_nmagic(l, epp, epp->ep_hdr,
135 1.10 cgd epp->ep_vp);
136 1.2 glass break;
137 1.1 glass case ECOFF_ZMAGIC:
138 1.26 christos error = exec_ecoff_prep_zmagic(l, epp, epp->ep_hdr,
139 1.10 cgd epp->ep_vp);
140 1.1 glass break;
141 1.1 glass default:
142 1.1 glass return ENOEXEC;
143 1.1 glass }
144 1.1 glass
145 1.10 cgd /* set up the stack */
146 1.10 cgd if (!error)
147 1.26 christos error = (*epp->ep_esch->es_setup_stack)(l, epp);
148 1.1 glass
149 1.1 glass if (error)
150 1.1 glass kill_vmcmds(&epp->ep_vmcmds);
151 1.1 glass
152 1.1 glass return error;
153 1.2 glass }
154 1.1 glass
155 1.1 glass /*
156 1.1 glass * exec_ecoff_prep_omagic(): Prepare a ECOFF OMAGIC binary's exec package
157 1.1 glass */
158 1.2 glass int
159 1.26 christos exec_ecoff_prep_omagic(struct lwp *l, struct exec_package *epp,
160 1.13 thorpej struct ecoff_exechdr *execp, struct vnode *vp)
161 1.1 glass {
162 1.7 cgd struct ecoff_aouthdr *eap = &execp->a;
163 1.7 cgd
164 1.7 cgd epp->ep_taddr = ECOFF_SEGMENT_ALIGN(execp, eap->text_start);
165 1.7 cgd epp->ep_tsize = eap->tsize;
166 1.7 cgd epp->ep_daddr = ECOFF_SEGMENT_ALIGN(execp, eap->data_start);
167 1.7 cgd epp->ep_dsize = eap->dsize + eap->bsize;
168 1.7 cgd epp->ep_entry = eap->entry;
169 1.1 glass
170 1.1 glass /* set up command for text and data segments */
171 1.1 glass NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn,
172 1.10 cgd eap->tsize + eap->dsize, epp->ep_taddr, vp,
173 1.7 cgd ECOFF_TXTOFF(execp),
174 1.7 cgd VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
175 1.1 glass
176 1.1 glass /* set up command for bss segment */
177 1.7 cgd if (eap->bsize > 0)
178 1.7 cgd NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, eap->bsize,
179 1.7 cgd ECOFF_SEGMENT_ALIGN(execp, eap->bss_start), NULLVP, 0,
180 1.7 cgd VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
181 1.25 perry
182 1.10 cgd return 0;
183 1.1 glass }
184 1.1 glass
185 1.1 glass /*
186 1.2 glass * exec_ecoff_prep_nmagic(): Prepare a 'native' NMAGIC ECOFF binary's exec
187 1.2 glass * package.
188 1.2 glass */
189 1.2 glass int
190 1.26 christos exec_ecoff_prep_nmagic(struct lwp *l, struct exec_package *epp,
191 1.13 thorpej struct ecoff_exechdr *execp, struct vnode *vp)
192 1.2 glass {
193 1.7 cgd struct ecoff_aouthdr *eap = &execp->a;
194 1.7 cgd
195 1.7 cgd epp->ep_taddr = ECOFF_SEGMENT_ALIGN(execp, eap->text_start);
196 1.7 cgd epp->ep_tsize = eap->tsize;
197 1.7 cgd epp->ep_daddr = ECOFF_ROUND(eap->data_start, ECOFF_LDPGSZ);
198 1.7 cgd epp->ep_dsize = eap->dsize + eap->bsize;
199 1.7 cgd epp->ep_entry = eap->entry;
200 1.2 glass
201 1.2 glass /* set up command for text segment */
202 1.2 glass NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, epp->ep_tsize,
203 1.10 cgd epp->ep_taddr, vp, ECOFF_TXTOFF(execp),
204 1.7 cgd VM_PROT_READ|VM_PROT_EXECUTE);
205 1.2 glass
206 1.2 glass /* set up command for data segment */
207 1.2 glass NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_readvn, epp->ep_dsize,
208 1.10 cgd epp->ep_daddr, vp, ECOFF_DATOFF(execp),
209 1.7 cgd VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
210 1.2 glass
211 1.2 glass /* set up command for bss segment */
212 1.7 cgd if (eap->bsize > 0)
213 1.7 cgd NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, eap->bsize,
214 1.7 cgd ECOFF_SEGMENT_ALIGN(execp, eap->bss_start), NULLVP, 0,
215 1.7 cgd VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
216 1.2 glass
217 1.10 cgd return 0;
218 1.2 glass }
219 1.2 glass
220 1.2 glass /*
221 1.2 glass * exec_ecoff_prep_zmagic(): Prepare a ECOFF ZMAGIC binary's exec package
222 1.1 glass *
223 1.2 glass * First, set the various offsets/lengths in the exec package.
224 1.1 glass *
225 1.2 glass * Then, mark the text image busy (so it can be demand paged) or error
226 1.2 glass * out if this is not possible. Finally, set up vmcmds for the
227 1.2 glass * text, data, bss, and stack segments.
228 1.1 glass */
229 1.1 glass int
230 1.26 christos exec_ecoff_prep_zmagic(struct lwp *l, struct exec_package *epp,
231 1.13 thorpej struct ecoff_exechdr *execp, struct vnode *vp)
232 1.1 glass {
233 1.7 cgd struct ecoff_aouthdr *eap = &execp->a;
234 1.18 chs int error;
235 1.7 cgd
236 1.7 cgd epp->ep_taddr = ECOFF_SEGMENT_ALIGN(execp, eap->text_start);
237 1.7 cgd epp->ep_tsize = eap->tsize;
238 1.7 cgd epp->ep_daddr = ECOFF_SEGMENT_ALIGN(execp, eap->data_start);
239 1.7 cgd epp->ep_dsize = eap->dsize + eap->bsize;
240 1.7 cgd epp->ep_entry = eap->entry;
241 1.1 glass
242 1.19 chs error = vn_marktext(vp);
243 1.18 chs if (error)
244 1.18 chs return (error);
245 1.2 glass
246 1.2 glass /* set up command for text segment */
247 1.7 cgd NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, eap->tsize,
248 1.10 cgd epp->ep_taddr, vp, ECOFF_TXTOFF(execp),
249 1.7 cgd VM_PROT_READ|VM_PROT_EXECUTE);
250 1.2 glass
251 1.2 glass /* set up command for data segment */
252 1.7 cgd NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_pagedvn, eap->dsize,
253 1.10 cgd epp->ep_daddr, vp, ECOFF_DATOFF(execp),
254 1.7 cgd VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
255 1.2 glass
256 1.2 glass /* set up command for bss segment */
257 1.24 christos if (eap->bsize > 0)
258 1.24 christos NEW_VMCMD(&epp->ep_vmcmds, vmcmd_map_zero, eap->bsize,
259 1.24 christos ECOFF_SEGMENT_ALIGN(execp, eap->bss_start), NULLVP, 0,
260 1.24 christos VM_PROT_READ|VM_PROT_WRITE|VM_PROT_EXECUTE);
261 1.1 glass
262 1.10 cgd return 0;
263 1.1 glass }
264