1 /* Code for loading Linux executables. Mostly linux kernel code. */
3 #include "qemu/osdep.h"
9 /* ??? This should really be somewhere else. */
10 abi_long
memcpy_to_target(abi_ulong dest
, const void *src
,
15 host_ptr
= lock_user(VERIFY_WRITE
, dest
, len
, 0);
17 return -TARGET_EFAULT
;
18 memcpy(host_ptr
, src
, len
);
19 unlock_user(host_ptr
, dest
, 1);
23 static int count(char ** vec
)
27 for(i
= 0; *vec
; i
++) {
34 static int prepare_binprm(struct linux_binprm
*bprm
)
40 if(fstat(bprm
->fd
, &st
) < 0) {
45 if(!S_ISREG(mode
)) { /* Must be regular file */
48 if(!(mode
& 0111)) { /* Must have at least one execute bit set */
52 bprm
->e_uid
= geteuid();
53 bprm
->e_gid
= getegid();
57 bprm
->e_uid
= st
.st_uid
;
62 * If setgid is set but no group execute bit then this
63 * is a candidate for mandatory locking, not a setgid
66 if ((mode
& (S_ISGID
| S_IXGRP
)) == (S_ISGID
| S_IXGRP
)) {
67 bprm
->e_gid
= st
.st_gid
;
70 retval
= read(bprm
->fd
, bprm
->buf
, BPRM_BUF_SIZE
);
72 perror("prepare_binprm");
75 if (retval
< BPRM_BUF_SIZE
) {
76 /* Make sure the rest of the loader won't read garbage. */
77 memset(bprm
->buf
+ retval
, 0, BPRM_BUF_SIZE
- retval
);
82 /* Construct the envp and argv tables on the target stack. */
83 abi_ulong
loader_build_argptr(int envc
, int argc
, abi_ulong sp
,
84 abi_ulong stringp
, int push_ptr
)
86 TaskState
*ts
= (TaskState
*)thread_cpu
->opaque
;
87 int n
= sizeof(abi_ulong
);
96 /* FIXME - handle put_user() failures */
98 put_user_ual(envp
, sp
);
100 put_user_ual(argv
, sp
);
103 /* FIXME - handle put_user() failures */
104 put_user_ual(argc
, sp
);
105 ts
->info
->arg_start
= stringp
;
107 /* FIXME - handle put_user() failures */
108 put_user_ual(stringp
, argv
);
110 stringp
+= target_strlen(stringp
) + 1;
112 ts
->info
->arg_end
= stringp
;
113 /* FIXME - handle put_user() failures */
114 put_user_ual(0, argv
);
116 /* FIXME - handle put_user() failures */
117 put_user_ual(stringp
, envp
);
119 stringp
+= target_strlen(stringp
) + 1;
121 /* FIXME - handle put_user() failures */
122 put_user_ual(0, envp
);
127 int loader_exec(int fdexec
, const char *filename
, char **argv
, char **envp
,
128 struct target_pt_regs
* regs
, struct image_info
*infop
,
129 struct linux_binprm
*bprm
)
134 bprm
->filename
= (char *)filename
;
135 bprm
->argc
= count(argv
);
137 bprm
->envc
= count(envp
);
140 retval
= prepare_binprm(bprm
);
143 if (bprm
->buf
[0] == 0x7f
144 && bprm
->buf
[1] == 'E'
145 && bprm
->buf
[2] == 'L'
146 && bprm
->buf
[3] == 'F') {
147 retval
= load_elf_binary(bprm
, infop
);
148 #if defined(TARGET_HAS_BFLT)
149 } else if (bprm
->buf
[0] == 'b'
150 && bprm
->buf
[1] == 'F'
151 && bprm
->buf
[2] == 'L'
152 && bprm
->buf
[3] == 'T') {
153 retval
= load_flt_binary(bprm
, infop
);
161 /* success. Initialize important registers */
162 do_init_thread(regs
, infop
);