| 
									
										
										
										
											2008-10-26 20:33:16 +00:00
										 |  |  | /* Code for loading BSD executables.  Mostly linux kernel code.  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-01-29 17:49:53 +00:00
										 |  |  | #include "qemu/osdep.h"
 | 
					
						
							| 
									
										
										
										
											2008-10-26 20:33:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #include "qemu.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-06-13 15:10:28 +00:00
										 |  |  | #define TARGET_NGROUPS 32
 | 
					
						
							| 
									
										
										
										
											2008-10-26 20:33:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | /* ??? This should really be somewhere else.  */ | 
					
						
							|  |  |  | abi_long memcpy_to_target(abi_ulong dest, const void *src, | 
					
						
							|  |  |  |                           unsigned long len) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     void *host_ptr; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     host_ptr = lock_user(VERIFY_WRITE, dest, len, 0); | 
					
						
							|  |  |  |     if (!host_ptr) | 
					
						
							|  |  |  |         return -TARGET_EFAULT; | 
					
						
							|  |  |  |     memcpy(host_ptr, src, len); | 
					
						
							|  |  |  |     unlock_user(host_ptr, dest, 1); | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int count(char ** vec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int         i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for(i = 0; *vec; i++) { | 
					
						
							|  |  |  |         vec++; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return(i); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int prepare_binprm(struct linux_binprm *bprm) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct stat         st; | 
					
						
							|  |  |  |     int mode; | 
					
						
							| 
									
										
										
										
											2017-07-18 17:26:33 +01:00
										 |  |  |     int retval; | 
					
						
							| 
									
										
										
										
											2008-10-26 20:33:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     if(fstat(bprm->fd, &st) < 0) { | 
					
						
							|  |  |  |         return(-errno); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     mode = st.st_mode; | 
					
						
							|  |  |  |     if(!S_ISREG(mode)) {        /* Must be regular file */ | 
					
						
							|  |  |  |         return(-EACCES); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if(!(mode & 0111)) {        /* Must have at least one execute bit set */ | 
					
						
							|  |  |  |         return(-EACCES); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bprm->e_uid = geteuid(); | 
					
						
							|  |  |  |     bprm->e_gid = getegid(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Set-uid? */ | 
					
						
							|  |  |  |     if(mode & S_ISUID) { | 
					
						
							|  |  |  |         bprm->e_uid = st.st_uid; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Set-gid? */ | 
					
						
							|  |  |  |     /*
 | 
					
						
							|  |  |  |      * If setgid is set but no group execute bit then this | 
					
						
							|  |  |  |      * is a candidate for mandatory locking, not a setgid | 
					
						
							|  |  |  |      * executable. | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  |     if ((mode & (S_ISGID | S_IXGRP)) == (S_ISGID | S_IXGRP)) { | 
					
						
							|  |  |  |         bprm->e_gid = st.st_gid; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     memset(bprm->buf, 0, sizeof(bprm->buf)); | 
					
						
							|  |  |  |     retval = lseek(bprm->fd, 0L, SEEK_SET); | 
					
						
							|  |  |  |     if(retval >= 0) { | 
					
						
							|  |  |  |         retval = read(bprm->fd, bprm->buf, 128); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     if(retval < 0) { | 
					
						
							|  |  |  |         perror("prepare_binprm"); | 
					
						
							|  |  |  |         exit(-1); | 
					
						
							|  |  |  |         /* return(-errno); */ | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							|  |  |  |         return(retval); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* Construct the envp and argv tables on the target stack.  */ | 
					
						
							|  |  |  | abi_ulong loader_build_argptr(int envc, int argc, abi_ulong sp, | 
					
						
							|  |  |  |                               abi_ulong stringp, int push_ptr) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int n = sizeof(abi_ulong); | 
					
						
							|  |  |  |     abi_ulong envp; | 
					
						
							|  |  |  |     abi_ulong argv; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     sp -= (envc + 1) * n; | 
					
						
							|  |  |  |     envp = sp; | 
					
						
							|  |  |  |     sp -= (argc + 1) * n; | 
					
						
							|  |  |  |     argv = sp; | 
					
						
							|  |  |  |     if (push_ptr) { | 
					
						
							|  |  |  |         /* FIXME - handle put_user() failures */ | 
					
						
							|  |  |  |         sp -= n; | 
					
						
							|  |  |  |         put_user_ual(envp, sp); | 
					
						
							|  |  |  |         sp -= n; | 
					
						
							|  |  |  |         put_user_ual(argv, sp); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     sp -= n; | 
					
						
							|  |  |  |     /* FIXME - handle put_user() failures */ | 
					
						
							|  |  |  |     put_user_ual(argc, sp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     while (argc-- > 0) { | 
					
						
							|  |  |  |         /* FIXME - handle put_user() failures */ | 
					
						
							|  |  |  |         put_user_ual(stringp, argv); | 
					
						
							|  |  |  |         argv += n; | 
					
						
							|  |  |  |         stringp += target_strlen(stringp) + 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* FIXME - handle put_user() failures */ | 
					
						
							|  |  |  |     put_user_ual(0, argv); | 
					
						
							|  |  |  |     while (envc-- > 0) { | 
					
						
							|  |  |  |         /* FIXME - handle put_user() failures */ | 
					
						
							|  |  |  |         put_user_ual(stringp, envp); | 
					
						
							|  |  |  |         envp += n; | 
					
						
							|  |  |  |         stringp += target_strlen(stringp) + 1; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* FIXME - handle put_user() failures */ | 
					
						
							|  |  |  |     put_user_ual(0, envp); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     return sp; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int loader_exec(const char * filename, char ** argv, char ** envp, | 
					
						
							|  |  |  |              struct target_pt_regs * regs, struct image_info *infop) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     struct linux_binprm bprm; | 
					
						
							|  |  |  |     int retval; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     bprm.p = TARGET_PAGE_SIZE*MAX_ARG_PAGES-sizeof(unsigned int); | 
					
						
							|  |  |  |     for (i=0 ; i<MAX_ARG_PAGES ; i++)       /* clear page-table */ | 
					
						
							| 
									
										
										
										
											2009-08-01 10:13:20 +00:00
										 |  |  |             bprm.page[i] = NULL; | 
					
						
							| 
									
										
										
										
											2008-10-26 20:33:16 +00:00
										 |  |  |     retval = open(filename, O_RDONLY); | 
					
						
							|  |  |  |     if (retval < 0) | 
					
						
							|  |  |  |         return retval; | 
					
						
							|  |  |  |     bprm.fd = retval; | 
					
						
							|  |  |  |     bprm.filename = (char *)filename; | 
					
						
							|  |  |  |     bprm.argc = count(argv); | 
					
						
							|  |  |  |     bprm.argv = argv; | 
					
						
							|  |  |  |     bprm.envc = count(envp); | 
					
						
							|  |  |  |     bprm.envp = envp; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     retval = prepare_binprm(&bprm); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(retval>=0) { | 
					
						
							|  |  |  |         if (bprm.buf[0] == 0x7f | 
					
						
							|  |  |  |                 && bprm.buf[1] == 'E' | 
					
						
							|  |  |  |                 && bprm.buf[2] == 'L' | 
					
						
							|  |  |  |                 && bprm.buf[3] == 'F') { | 
					
						
							|  |  |  |             retval = load_elf_binary(&bprm,regs,infop); | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2014-06-02 13:24:37 +01:00
										 |  |  |             fprintf(stderr, "Unknown binary format\n"); | 
					
						
							| 
									
										
										
										
											2008-10-26 20:33:16 +00:00
										 |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if(retval>=0) { | 
					
						
							|  |  |  |         /* success.  Initialize important registers */ | 
					
						
							|  |  |  |         do_init_thread(regs, infop); | 
					
						
							|  |  |  |         return retval; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* Something went wrong, return the inode and free the argument pages*/ | 
					
						
							|  |  |  |     for (i=0 ; i<MAX_ARG_PAGES ; i++) { | 
					
						
							| 
									
										
										
										
											2011-11-21 21:06:22 +01:00
										 |  |  |         g_free(bprm.page[i]); | 
					
						
							| 
									
										
										
										
											2008-10-26 20:33:16 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return(retval); | 
					
						
							|  |  |  | } |