1 /* $NetBSD: m68k4k_exec.c,v 1.21 2008/11/21 19:55:38 he Exp $ */
4 * Copyright (c) 1993, 1994 Christopher G. Demetriou
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. All advertising materials mentioning features or use of this software
16 * must display the following acknowledgement:
17 * This product includes software developed by Christopher G. Demetriou.
18 * 4. The name of the author may not be used to endorse or promote products
19 * derived from this software without specific prior written permission
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.
34 * Exec glue to provide compatibility with older NetBSD m68k4k exectuables.
36 * Taken directly from kern/exec_aout.c and frobbed to map text and
37 * data as m68k4k executables expect.
39 * This module only works on machines with PAGE_SIZE == 4096. It's not clear
40 * that making it work on other machines is worth the trouble.
43 #include <sys/cdefs.h>
44 __KERNEL_RCSID(0, "$NetBSD: m68k4k_exec.c,v 1.21 2008/11/21 19:55:38 he Exp $");
46 #if !defined(__m68k__)
47 #error YOU GOTTA BE KIDDING!
50 #include <sys/param.h>
51 #include <sys/systm.h>
53 #include <sys/malloc.h>
54 #include <sys/module.h>
55 #include <sys/vnode.h>
57 #include <sys/exec_aout.h>
58 #include <sys/resourcevar.h>
60 #include <compat/m68k4k/m68k4k_exec.h>
63 #define DEP "coredump"
68 MODULE(MODULE_CLASS_MISC
, exec_m68k4k
, DEP
);
70 static struct execsw exec_m68k4k_execsw
[] = {
71 { sizeof(struct exec
),
84 exec_m68k4k_modcmd(modcmd_t cmd
, void *arg
)
89 return exec_add(exec_m68k4k_execsw
,
90 __arraycount(exec_m68k4k_execsw
));
93 return exec_remove(exec_m68k4k_execsw
,
94 __arraycount(exec_m68k4k_execsw
));
101 int exec_m68k4k_prep_zmagic(struct lwp
*, struct exec_package
*);
102 int exec_m68k4k_prep_nmagic(struct lwp
*, struct exec_package
*);
103 int exec_m68k4k_prep_omagic(struct lwp
*, struct exec_package
*);
106 * exec_m68k4k_makecmds(): Check if it's an a.out-format executable
107 * with an m68k4k magic number.
109 * Given a proc pointer and an exec package pointer, see if the referent
110 * of the epp is in a.out format. Just check 'standard' magic numbers for
113 * This function, in the former case, or the hook, in the latter, is
114 * responsible for creating a set of vmcmds which can be used to build
115 * the process's vm space and inserting them into the exec package.
119 exec_m68k4k_makecmds(struct lwp
*l
, struct exec_package
*epp
)
121 u_long midmag
, magic
;
124 struct exec
*execp
= epp
->ep_hdr
;
126 /* See note above... */
127 if (M68K4K_LDPGSZ
!= PAGE_SIZE
)
130 if (epp
->ep_hdrvalid
< sizeof(struct exec
))
133 midmag
= ntohl(execp
->a_midmag
);
134 mid
= (midmag
>> 16) & 0x3ff;
135 magic
= midmag
& 0xffff;
137 midmag
= mid
<< 16 | magic
;
140 case (MID_M68K4K
<< 16) | ZMAGIC
:
141 error
= exec_m68k4k_prep_zmagic(l
, epp
);
143 case (MID_M68K4K
<< 16) | NMAGIC
:
144 error
= exec_m68k4k_prep_nmagic(l
, epp
);
146 case (MID_M68K4K
<< 16) | OMAGIC
:
147 error
= exec_m68k4k_prep_omagic(l
, epp
);
154 kill_vmcmds(&epp
->ep_vmcmds
);
160 * exec_m68k4k_prep_zmagic(): Prepare an m68k4k ZMAGIC binary's exec package
162 * First, set of the various offsets/lengths in the exec package.
164 * Then, mark the text image busy (so it can be demand paged) or error
165 * out if this is not possible. Finally, set up vmcmds for the
166 * text, data, bss, and stack segments.
170 exec_m68k4k_prep_zmagic(struct lwp
*l
, struct exec_package
*epp
)
172 struct exec
*execp
= epp
->ep_hdr
;
175 epp
->ep_taddr
= M68K4K_USRTEXT
;
176 epp
->ep_tsize
= execp
->a_text
;
177 epp
->ep_daddr
= epp
->ep_taddr
+ execp
->a_text
;
178 epp
->ep_dsize
= execp
->a_data
+ execp
->a_bss
;
179 epp
->ep_entry
= execp
->a_entry
;
181 error
= vn_marktext(epp
->ep_vp
);
185 /* set up command for text segment */
186 NEW_VMCMD(&epp
->ep_vmcmds
, vmcmd_map_pagedvn
, execp
->a_text
,
187 epp
->ep_taddr
, epp
->ep_vp
, 0, VM_PROT_READ
|VM_PROT_EXECUTE
);
189 /* set up command for data segment */
190 NEW_VMCMD(&epp
->ep_vmcmds
, vmcmd_map_pagedvn
, execp
->a_data
,
191 epp
->ep_daddr
, epp
->ep_vp
, execp
->a_text
,
192 VM_PROT_READ
|VM_PROT_WRITE
|VM_PROT_EXECUTE
);
194 /* set up command for bss segment */
196 NEW_VMCMD(&epp
->ep_vmcmds
, vmcmd_map_zero
, execp
->a_bss
,
197 epp
->ep_daddr
+ execp
->a_data
, NULLVP
, 0,
198 VM_PROT_READ
|VM_PROT_WRITE
|VM_PROT_EXECUTE
);
200 return (*epp
->ep_esch
->es_setup_stack
)(l
, epp
);
204 * exec_m68k4k_prep_nmagic(): Prepare a m68k4k NMAGIC binary's exec package
208 exec_m68k4k_prep_nmagic(struct lwp
*l
, struct exec_package
*epp
)
210 struct exec
*execp
= epp
->ep_hdr
;
213 epp
->ep_taddr
= M68K4K_USRTEXT
;
214 epp
->ep_tsize
= execp
->a_text
;
215 epp
->ep_daddr
= roundup(epp
->ep_taddr
+ execp
->a_text
,
217 epp
->ep_dsize
= execp
->a_data
+ execp
->a_bss
;
218 epp
->ep_entry
= execp
->a_entry
;
220 /* set up command for text segment */
221 NEW_VMCMD(&epp
->ep_vmcmds
, vmcmd_map_readvn
, execp
->a_text
,
222 epp
->ep_taddr
, epp
->ep_vp
, sizeof(struct exec
),
223 VM_PROT_READ
|VM_PROT_EXECUTE
);
225 /* set up command for data segment */
226 NEW_VMCMD(&epp
->ep_vmcmds
, vmcmd_map_readvn
, execp
->a_data
,
227 epp
->ep_daddr
, epp
->ep_vp
, execp
->a_text
+ sizeof(struct exec
),
228 VM_PROT_READ
|VM_PROT_WRITE
|VM_PROT_EXECUTE
);
230 /* set up command for bss segment */
231 baddr
= roundup(epp
->ep_daddr
+ execp
->a_data
, PAGE_SIZE
);
232 bsize
= epp
->ep_daddr
+ epp
->ep_dsize
- baddr
;
234 NEW_VMCMD(&epp
->ep_vmcmds
, vmcmd_map_zero
, bsize
, baddr
,
235 NULLVP
, 0, VM_PROT_READ
|VM_PROT_WRITE
|VM_PROT_EXECUTE
);
237 return (*epp
->ep_esch
->es_setup_stack
)(l
, epp
);
241 * exec_m68k4k_prep_omagic(): Prepare a m68k4k OMAGIC binary's exec package
245 exec_m68k4k_prep_omagic(struct lwp
*l
, struct exec_package
*epp
)
247 struct exec
*execp
= epp
->ep_hdr
;
248 long dsize
, bsize
, baddr
;
250 epp
->ep_taddr
= M68K4K_USRTEXT
;
251 epp
->ep_tsize
= execp
->a_text
;
252 epp
->ep_daddr
= epp
->ep_taddr
+ execp
->a_text
;
253 epp
->ep_dsize
= execp
->a_data
+ execp
->a_bss
;
254 epp
->ep_entry
= execp
->a_entry
;
256 /* set up command for text and data segments */
257 NEW_VMCMD(&epp
->ep_vmcmds
, vmcmd_map_readvn
,
258 execp
->a_text
+ execp
->a_data
, epp
->ep_taddr
, epp
->ep_vp
,
259 sizeof(struct exec
), VM_PROT_READ
|VM_PROT_WRITE
|VM_PROT_EXECUTE
);
261 /* set up command for bss segment */
262 baddr
= roundup(epp
->ep_daddr
+ execp
->a_data
, PAGE_SIZE
);
263 bsize
= epp
->ep_daddr
+ epp
->ep_dsize
- baddr
;
265 NEW_VMCMD(&epp
->ep_vmcmds
, vmcmd_map_zero
, bsize
, baddr
,
266 NULLVP
, 0, VM_PROT_READ
|VM_PROT_WRITE
|VM_PROT_EXECUTE
);
269 * Make sure (# of pages) mapped above equals (vm_tsize + vm_dsize);
270 * obreak(2) relies on this fact. Both `vm_tsize' and `vm_dsize' are
271 * computed (in execve(2)) by rounding *up* `ep_tsize' and `ep_dsize'
272 * respectively to page boundaries.
273 * Compensate `ep_dsize' for the amount of data covered by the last
276 dsize
= epp
->ep_dsize
+ execp
->a_text
- roundup(execp
->a_text
,
278 epp
->ep_dsize
= (dsize
> 0) ? dsize
: 0;
279 return (*epp
->ep_esch
->es_setup_stack
)(l
, epp
);