2 * ----------------------------------------------------------------------------
3 * "THE BEER-WARE LICENSE" (Revision 42):
4 * <phk@login.dkuug.dk> wrote this file. As long as you retain this notice you
5 * can do whatever you want with this stuff. If we meet some day, and you think
6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
7 * ----------------------------------------------------------------------------
9 * $FreeBSD: src/sys/kern/imgact_gzip.c,v 1.40.2.1 2001/11/03 01:41:08 ps Exp $
10 * $DragonFly: src/sys/kern/imgact_gzip.c,v 1.9 2006/12/28 21:24:01 dillon Exp $
12 * This module handles execution of a.out files which have been run through
13 * "gzip". This saves diskspace, but wastes cpu-cycles and VM.
16 * text-segments should be made R/O after being filled
17 * is the vm-stuff safe ?
18 * should handle the entire header of gzip'ed stuff.
19 * inflate isn't quite reentrant yet...
20 * error-handling is a mess...
22 * tidy up unnecesary includes
25 #include <sys/param.h>
27 #include <sys/imgact.h>
28 #include <sys/imgact_aout.h>
29 #include <sys/kernel.h>
32 #include <sys/resourcevar.h>
33 #include <sys/sysent.h>
34 #include <sys/systm.h>
35 #include <sys/vnode.h>
36 #include <sys/inflate.h>
39 #include <vm/vm_param.h>
42 #include <vm/vm_map.h>
43 #include <vm/vm_kern.h>
44 #include <vm/vm_extern.h>
47 struct image_params
*ip
;
57 u_long virtual_offset
, file_offset
, file_end
, bss_size
;
60 static int exec_gzip_imgact (struct image_params
*imgp
);
61 static int NextByte (void *vp
);
62 static int do_aout_hdr (struct imgact_gzip
*);
63 static int Flush (void *vp
, u_char
*, u_long siz
);
66 exec_gzip_imgact(struct image_params
*imgp
)
68 int error
, error2
= 0;
69 const u_char
*p
= (const u_char
*) imgp
->image_header
;
70 struct imgact_gzip igz
;
72 struct vmspace
*vmspace
;
74 /* If these four are not OK, it isn't a gzip file */
76 return -1; /* 0 Simply magic */
78 return -1; /* 1 Simply magic */
80 return -1; /* 2 Compression method */
82 return -1; /* 9 OS compressed on */
85 * If this one contains anything but a comment or a filename marker,
86 * we don't want to chew on it
89 return ENOEXEC
; /* 3 Flags */
91 /* These are of no use to us */
95 bzero(&igz
, sizeof igz
);
96 bzero(&infl
, sizeof infl
);
97 infl
.gz_private
= (void *) &igz
;
98 infl
.gz_input
= NextByte
;
99 infl
.gz_output
= Flush
;
104 if (p
[3] & 0x08) { /* skip a filename */
106 if (igz
.idx
>= PAGE_SIZE
)
109 if (p
[3] & 0x10) { /* skip a comment */
111 if (igz
.idx
>= PAGE_SIZE
)
114 igz
.len
= imgp
->attr
->va_size
;
116 error
= inflate(&infl
);
119 * The unzipped file may not even have been long enough to contain
120 * a header giving Flush() a chance to return error. Check for this.
122 if ( !igz
.gotheader
)
126 vmspace
= imgp
->proc
->p_vmspace
;
127 error
= vm_map_protect(&vmspace
->vm_map
,
128 (vm_offset_t
) vmspace
->vm_taddr
,
129 (vm_offset_t
) (vmspace
->vm_taddr
+
130 (vmspace
->vm_tsize
<< PAGE_SHIFT
)) ,
131 VM_PROT_READ
|VM_PROT_EXECUTE
,0);
135 error2
= vm_map_remove(&kernel_map
, (vm_offset_t
)igz
.inbuf
,
136 (vm_offset_t
)igz
.inbuf
+ PAGE_SIZE
);
138 if (igz
.error
|| error
|| error2
) {
139 kprintf("Output=%lu ", igz
.output
);
140 kprintf("Inflate_error=%d igz.error=%d error2=%d where=%d\n",
141 error
, igz
.error
, error2
, igz
.where
);
153 do_aout_hdr(struct imgact_gzip
* gz
)
156 struct vmspace
*vmspace
;
160 * Set file/virtual offset based on a.out variant. We do two cases:
161 * host byte order and network byte order (for NetBSD compatibility)
163 switch ((int) (gz
->a_out
.a_magic
& 0xffff)) {
165 gz
->virtual_offset
= 0;
166 if (gz
->a_out
.a_text
) {
167 gz
->file_offset
= PAGE_SIZE
;
169 /* Bill's "screwball mode" */
174 gz
->virtual_offset
= PAGE_SIZE
;
178 /* NetBSD compatibility */
179 switch ((int) (ntohl(gz
->a_out
.a_magic
) & 0xffff)) {
182 gz
->virtual_offset
= PAGE_SIZE
;
186 gz
->where
= __LINE__
;
191 gz
->bss_size
= roundup(gz
->a_out
.a_bss
, PAGE_SIZE
);
194 * Check various fields in header for validity/bounds.
196 if ( /* entry point must lay with text region */
197 gz
->a_out
.a_entry
< gz
->virtual_offset
||
198 gz
->a_out
.a_entry
>= gz
->virtual_offset
+ gz
->a_out
.a_text
||
200 /* text and data size must each be page rounded */
201 gz
->a_out
.a_text
& PAGE_MASK
|| gz
->a_out
.a_data
& PAGE_MASK
) {
202 gz
->where
= __LINE__
;
206 * text/data/bss must not exceed limits
208 if ( /* text can't exceed maximum text size */
209 gz
->a_out
.a_text
> maxtsiz
||
211 /* data + bss can't exceed rlimit */
212 gz
->a_out
.a_data
+ gz
->bss_size
>
213 gz
->ip
->proc
->p_rlimit
[RLIMIT_DATA
].rlim_cur
) {
214 gz
->where
= __LINE__
;
217 /* Find out how far we should go */
218 gz
->file_end
= gz
->file_offset
+ gz
->a_out
.a_text
+ gz
->a_out
.a_data
;
221 * Destroy old process VM and create a new one (with a new stack)
223 exec_new_vmspace(gz
->ip
, NULL
);
225 vmspace
= gz
->ip
->proc
->p_vmspace
;
227 vmaddr
= gz
->virtual_offset
;
229 error
= vm_mmap(&vmspace
->vm_map
,
231 gz
->a_out
.a_text
+ gz
->a_out
.a_data
,
232 VM_PROT_ALL
, VM_PROT_ALL
, MAP_ANON
| MAP_FIXED
,
237 gz
->where
= __LINE__
;
241 if (gz
->bss_size
!= 0) {
243 * Allocate demand-zeroed area for uninitialized data.
244 * "bss" = 'block started by symbol' - named after the
245 * IBM 7090 instruction of the same name.
247 vmaddr
= gz
->virtual_offset
+ gz
->a_out
.a_text
+
249 error
= vm_map_find(&vmspace
->vm_map
,
251 &vmaddr
, gz
->bss_size
,
254 VM_PROT_ALL
, VM_PROT_ALL
,
257 gz
->where
= __LINE__
;
261 /* Fill in process VM information */
262 vmspace
->vm_tsize
= gz
->a_out
.a_text
>> PAGE_SHIFT
;
263 vmspace
->vm_dsize
= (gz
->a_out
.a_data
+ gz
->bss_size
) >> PAGE_SHIFT
;
264 vmspace
->vm_taddr
= (caddr_t
) (uintptr_t) gz
->virtual_offset
;
265 vmspace
->vm_daddr
= (caddr_t
) (uintptr_t)
266 (gz
->virtual_offset
+ gz
->a_out
.a_text
);
268 /* Fill in image_params */
269 gz
->ip
->interpreted
= 0;
270 gz
->ip
->entry_addr
= gz
->a_out
.a_entry
;
272 gz
->ip
->proc
->p_sysent
= &aout_sysvec
;
281 struct imgact_gzip
*igz
= (struct imgact_gzip
*) vp
;
283 if (igz
->idx
>= igz
->len
) {
284 igz
->where
= __LINE__
;
287 if (igz
->inbuf
&& igz
->idx
< (igz
->offset
+ PAGE_SIZE
)) {
288 return igz
->inbuf
[(igz
->idx
++) - igz
->offset
];
291 error
= vm_map_remove(&kernel_map
, (vm_offset_t
)igz
->inbuf
,
292 (vm_offset_t
)igz
->inbuf
+ PAGE_SIZE
);
294 igz
->where
= __LINE__
;
299 igz
->offset
= igz
->idx
& ~PAGE_MASK
;
301 error
= vm_mmap(&kernel_map
, /* map */
302 (vm_offset_t
*) & igz
->inbuf
, /* address */
303 PAGE_SIZE
, /* size */
304 VM_PROT_READ
, /* protection */
305 VM_PROT_READ
, /* max protection */
307 (caddr_t
) igz
->ip
->vp
, /* vnode */
308 igz
->offset
); /* offset */
310 igz
->where
= __LINE__
;
314 return igz
->inbuf
[(igz
->idx
++) - igz
->offset
];
318 Flush(void *vp
, u_char
* ptr
, u_long siz
)
320 struct imgact_gzip
*gz
= (struct imgact_gzip
*) vp
;
324 /* First, find a a.out-header */
325 if (gz
->output
< sizeof gz
->a_out
) {
326 q
= (u_char
*) & gz
->a_out
;
327 i
= min(siz
, sizeof gz
->a_out
- gz
->output
);
328 bcopy(p
, q
+ gz
->output
, i
);
332 if (gz
->output
== sizeof gz
->a_out
) {
337 gz
->where
= __LINE__
;
341 gz
->where
= __LINE__
;
345 if (gz
->file_offset
== 0) {
346 q
= (u_char
*) (uintptr_t) gz
->virtual_offset
;
347 copyout(&gz
->a_out
, q
, sizeof gz
->a_out
);
351 /* Skip over zero-padded first PAGE if needed */
352 if (gz
->output
< gz
->file_offset
&&
353 gz
->output
+ siz
> gz
->file_offset
) {
354 i
= min(siz
, gz
->file_offset
- gz
->output
);
359 if (gz
->output
>= gz
->file_offset
&& gz
->output
< gz
->file_end
) {
360 i
= min(siz
, gz
->file_end
- gz
->output
);
361 q
= (u_char
*) (uintptr_t)
362 (gz
->virtual_offset
+ gz
->output
- gz
->file_offset
);
374 * Tell kern_execve.c about it, with a little help from the linker.
376 static struct execsw gzip_execsw
= {exec_gzip_imgact
, "gzip"};
377 EXEC_SET(execgzip
, gzip_execsw
);