binfmt_aout.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:14k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/fs/binfmt_aout.c
  3.  *
  4.  *  Copyright (C) 1991, 1992, 1996  Linus Torvalds
  5.  */
  6. #include <linux/module.h>
  7. #include <linux/sched.h>
  8. #include <linux/kernel.h>
  9. #include <linux/mm.h>
  10. #include <linux/mman.h>
  11. #include <linux/a.out.h>
  12. #include <linux/errno.h>
  13. #include <linux/signal.h>
  14. #include <linux/string.h>
  15. #include <linux/fs.h>
  16. #include <linux/file.h>
  17. #include <linux/stat.h>
  18. #include <linux/fcntl.h>
  19. #include <linux/ptrace.h>
  20. #include <linux/user.h>
  21. #include <linux/slab.h>
  22. #include <linux/binfmts.h>
  23. #include <linux/personality.h>
  24. #include <linux/init.h>
  25. #include <asm/system.h>
  26. #include <asm/uaccess.h>
  27. #include <asm/pgalloc.h>
  28. static int load_aout_binary(struct linux_binprm *, struct pt_regs * regs);
  29. static int load_aout_library(struct file*);
  30. static int aout_core_dump(long signr, struct pt_regs * regs, struct file *file);
  31. extern void dump_thread(struct pt_regs *, struct user *);
  32. static struct linux_binfmt aout_format = {
  33. NULL, THIS_MODULE, load_aout_binary, load_aout_library, aout_core_dump, PAGE_SIZE
  34. };
  35. static void set_brk(unsigned long start, unsigned long end)
  36. {
  37. start = PAGE_ALIGN(start);
  38. end = PAGE_ALIGN(end);
  39. if (end <= start)
  40. return;
  41. do_brk(start, end - start);
  42. }
  43. /*
  44.  * These are the only things you should do on a core-file: use only these
  45.  * macros to write out all the necessary info.
  46.  */
  47. static int dump_write(struct file *file, const void *addr, int nr)
  48. {
  49. return file->f_op->write(file, addr, nr, &file->f_pos) == nr;
  50. }
  51. #define DUMP_WRITE(addr, nr)
  52. if (!dump_write(file, (void *)(addr), (nr))) 
  53. goto end_coredump;
  54. #define DUMP_SEEK(offset) 
  55. if (file->f_op->llseek) { 
  56. if (file->f_op->llseek(file,(offset),0) != (offset)) 
  57.   goto end_coredump; 
  58. } else file->f_pos = (offset)
  59. /*
  60.  * Routine writes a core dump image in the current directory.
  61.  * Currently only a stub-function.
  62.  *
  63.  * Note that setuid/setgid files won't make a core-dump if the uid/gid
  64.  * changed due to the set[u|g]id. It's enforced by the "current->mm->dumpable"
  65.  * field, which also makes sure the core-dumps won't be recursive if the
  66.  * dumping of the process results in another error..
  67.  */
  68. static int aout_core_dump(long signr, struct pt_regs * regs, struct file *file)
  69. {
  70. mm_segment_t fs;
  71. int has_dumped = 0;
  72. unsigned long dump_start, dump_size;
  73. struct user dump;
  74. #if defined(__alpha__)
  75. #       define START_DATA(u) (u.start_data)
  76. #elif defined(__arm__)
  77. # define START_DATA(u) ((u.u_tsize << PAGE_SHIFT) + u.start_code)
  78. #elif defined(__sparc__)
  79. #       define START_DATA(u)    (u.u_tsize)
  80. #elif defined(__i386__) || defined(__mc68000__) || defined(__arch_um__)
  81. #       define START_DATA(u) (u.u_tsize << PAGE_SHIFT)
  82. #endif
  83. #ifdef __sparc__
  84. #       define START_STACK(u)   ((regs->u_regs[UREG_FP]) & ~(PAGE_SIZE - 1))
  85. #else
  86. #       define START_STACK(u)   (u.start_stack)
  87. #endif
  88. fs = get_fs();
  89. set_fs(KERNEL_DS);
  90. has_dumped = 1;
  91. current->flags |= PF_DUMPCORE;
  92.         strncpy(dump.u_comm, current->comm, sizeof(current->comm));
  93. #ifndef __sparc__
  94. dump.u_ar0 = (void *)(((unsigned long)(&dump.regs)) - ((unsigned long)(&dump)));
  95. #endif
  96. dump.signal = signr;
  97. dump_thread(regs, &dump);
  98. /* If the size of the dump file exceeds the rlimit, then see what would happen
  99.    if we wrote the stack, but not the data area.  */
  100. #ifdef __sparc__
  101. if ((dump.u_dsize+dump.u_ssize) >
  102.     current->rlim[RLIMIT_CORE].rlim_cur)
  103. dump.u_dsize = 0;
  104. #else
  105. if ((dump.u_dsize+dump.u_ssize+1) * PAGE_SIZE >
  106.     current->rlim[RLIMIT_CORE].rlim_cur)
  107. dump.u_dsize = 0;
  108. #endif
  109. /* Make sure we have enough room to write the stack and data areas. */
  110. #ifdef __sparc__
  111. if ((dump.u_ssize) >
  112.     current->rlim[RLIMIT_CORE].rlim_cur)
  113. dump.u_ssize = 0;
  114. #else
  115. if ((dump.u_ssize+1) * PAGE_SIZE >
  116.     current->rlim[RLIMIT_CORE].rlim_cur)
  117. dump.u_ssize = 0;
  118. #endif
  119. /* make sure we actually have a data and stack area to dump */
  120. set_fs(USER_DS);
  121. #ifdef __sparc__
  122. if (verify_area(VERIFY_READ, (void *) START_DATA(dump), dump.u_dsize))
  123. dump.u_dsize = 0;
  124. if (verify_area(VERIFY_READ, (void *) START_STACK(dump), dump.u_ssize))
  125. dump.u_ssize = 0;
  126. #else
  127. if (verify_area(VERIFY_READ, (void *) START_DATA(dump), dump.u_dsize << PAGE_SHIFT))
  128. dump.u_dsize = 0;
  129. if (verify_area(VERIFY_READ, (void *) START_STACK(dump), dump.u_ssize << PAGE_SHIFT))
  130. dump.u_ssize = 0;
  131. #endif
  132. set_fs(KERNEL_DS);
  133. /* struct user */
  134. DUMP_WRITE(&dump,sizeof(dump));
  135. /* Now dump all of the user data.  Include malloced stuff as well */
  136. #ifndef __sparc__
  137. DUMP_SEEK(PAGE_SIZE);
  138. #endif
  139. /* now we start writing out the user space info */
  140. set_fs(USER_DS);
  141. /* Dump the data area */
  142. if (dump.u_dsize != 0) {
  143. dump_start = START_DATA(dump);
  144. #ifdef __sparc__
  145. dump_size = dump.u_dsize;
  146. #else
  147. dump_size = dump.u_dsize << PAGE_SHIFT;
  148. #endif
  149. DUMP_WRITE(dump_start,dump_size);
  150. }
  151. /* Now prepare to dump the stack area */
  152. if (dump.u_ssize != 0) {
  153. dump_start = START_STACK(dump);
  154. #ifdef __sparc__
  155. dump_size = dump.u_ssize;
  156. #else
  157. dump_size = dump.u_ssize << PAGE_SHIFT;
  158. #endif
  159. DUMP_WRITE(dump_start,dump_size);
  160. }
  161. /* Finally dump the task struct.  Not be used by gdb, but could be useful */
  162. set_fs(KERNEL_DS);
  163. DUMP_WRITE(current,sizeof(*current));
  164. end_coredump:
  165. set_fs(fs);
  166. return has_dumped;
  167. }
  168. /*
  169.  * create_aout_tables() parses the env- and arg-strings in new user
  170.  * memory and creates the pointer tables from them, and puts their
  171.  * addresses on the "stack", returning the new stack pointer value.
  172.  */
  173. static unsigned long * create_aout_tables(char * p, struct linux_binprm * bprm)
  174. {
  175. char **argv, **envp;
  176. unsigned long * sp;
  177. int argc = bprm->argc;
  178. int envc = bprm->envc;
  179. sp = (unsigned long *) ((-(unsigned long)sizeof(char *)) & (unsigned long) p);
  180. #ifdef __sparc__
  181. /* This imposes the proper stack alignment for a new process. */
  182. sp = (unsigned long *) (((unsigned long) sp) & ~7);
  183. if ((envc+argc+3)&1) --sp;
  184. #endif
  185. #ifdef __alpha__
  186. /* whee.. test-programs are so much fun. */
  187. put_user(0, --sp);
  188. put_user(0, --sp);
  189. if (bprm->loader) {
  190. put_user(0, --sp);
  191. put_user(0x3eb, --sp);
  192. put_user(bprm->loader, --sp);
  193. put_user(0x3ea, --sp);
  194. }
  195. put_user(bprm->exec, --sp);
  196. put_user(0x3e9, --sp);
  197. #endif
  198. sp -= envc+1;
  199. envp = (char **) sp;
  200. sp -= argc+1;
  201. argv = (char **) sp;
  202. #if defined(__i386__) || defined(__mc68000__) || defined(__arm__) || defined(__arch_um__)
  203. put_user((unsigned long) envp,--sp);
  204. put_user((unsigned long) argv,--sp);
  205. #endif
  206. put_user(argc,--sp);
  207. current->mm->arg_start = (unsigned long) p;
  208. while (argc-->0) {
  209. char c;
  210. put_user(p,argv++);
  211. do {
  212. get_user(c,p++);
  213. } while (c);
  214. }
  215. put_user(NULL,argv);
  216. current->mm->arg_end = current->mm->env_start = (unsigned long) p;
  217. while (envc-->0) {
  218. char c;
  219. put_user(p,envp++);
  220. do {
  221. get_user(c,p++);
  222. } while (c);
  223. }
  224. put_user(NULL,envp);
  225. current->mm->env_end = (unsigned long) p;
  226. return sp;
  227. }
  228. /*
  229.  * These are the functions used to load a.out style executables and shared
  230.  * libraries.  There is no binary dependent code anywhere else.
  231.  */
  232. static int load_aout_binary(struct linux_binprm * bprm, struct pt_regs * regs)
  233. {
  234. struct exec ex;
  235. unsigned long error;
  236. unsigned long fd_offset;
  237. unsigned long rlim;
  238. int retval;
  239. ex = *((struct exec *) bprm->buf); /* exec-header */
  240. if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != OMAGIC &&
  241.      N_MAGIC(ex) != QMAGIC && N_MAGIC(ex) != NMAGIC) ||
  242.     N_TRSIZE(ex) || N_DRSIZE(ex) ||
  243.     bprm->file->f_dentry->d_inode->i_size < ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
  244. return -ENOEXEC;
  245. }
  246. fd_offset = N_TXTOFF(ex);
  247. /* Check initial limits. This avoids letting people circumvent
  248.  * size limits imposed on them by creating programs with large
  249.  * arrays in the data or bss.
  250.  */
  251. rlim = current->rlim[RLIMIT_DATA].rlim_cur;
  252. if (rlim >= RLIM_INFINITY)
  253. rlim = ~0;
  254. if (ex.a_data + ex.a_bss > rlim)
  255. return -ENOMEM;
  256. /* Flush all traces of the currently running executable */
  257. retval = flush_old_exec(bprm);
  258. if (retval)
  259. return retval;
  260. /* OK, This is the point of no return */
  261. #if defined(__alpha__)
  262. SET_AOUT_PERSONALITY(bprm, ex);
  263. #elif defined(__sparc__)
  264. set_personality(PER_SUNOS);
  265. #if !defined(__sparc_v9__)
  266. memcpy(&current->thread.core_exec, &ex, sizeof(struct exec));
  267. #endif
  268. #else
  269. set_personality(PER_LINUX);
  270. #endif
  271. current->mm->end_code = ex.a_text +
  272. (current->mm->start_code = N_TXTADDR(ex));
  273. current->mm->end_data = ex.a_data +
  274. (current->mm->start_data = N_DATADDR(ex));
  275. current->mm->brk = ex.a_bss +
  276. (current->mm->start_brk = N_BSSADDR(ex));
  277. current->mm->rss = 0;
  278. current->mm->mmap = NULL;
  279. compute_creds(bprm);
  280.   current->flags &= ~PF_FORKNOEXEC;
  281. #ifdef __sparc__
  282. if (N_MAGIC(ex) == NMAGIC) {
  283. loff_t pos = fd_offset;
  284. /* Fuck me plenty... */
  285. /* <AOL></AOL> */
  286. error = do_brk(N_TXTADDR(ex), ex.a_text);
  287. bprm->file->f_op->read(bprm->file, (char *) N_TXTADDR(ex),
  288.   ex.a_text, &pos);
  289. error = do_brk(N_DATADDR(ex), ex.a_data);
  290. bprm->file->f_op->read(bprm->file, (char *) N_DATADDR(ex),
  291.   ex.a_data, &pos);
  292. goto beyond_if;
  293. }
  294. #endif
  295. if (N_MAGIC(ex) == OMAGIC) {
  296. unsigned long text_addr, map_size;
  297. loff_t pos;
  298. text_addr = N_TXTADDR(ex);
  299. #if defined(__alpha__) || defined(__sparc__)
  300. pos = fd_offset;
  301. map_size = ex.a_text+ex.a_data + PAGE_SIZE - 1;
  302. #else
  303. pos = 32;
  304. map_size = ex.a_text+ex.a_data;
  305. #endif
  306. error = do_brk(text_addr & PAGE_MASK, map_size);
  307. if (error != (text_addr & PAGE_MASK)) {
  308. send_sig(SIGKILL, current, 0);
  309. return error;
  310. }
  311. error = bprm->file->f_op->read(bprm->file, (char *)text_addr,
  312.   ex.a_text+ex.a_data, &pos);
  313. if ((signed long)error < 0) {
  314. send_sig(SIGKILL, current, 0);
  315. return error;
  316. }
  317.  
  318. flush_icache_range(text_addr, text_addr+ex.a_text+ex.a_data);
  319. } else {
  320. static unsigned long error_time, error_time2;
  321. if ((ex.a_text & 0xfff || ex.a_data & 0xfff) &&
  322.     (N_MAGIC(ex) != NMAGIC) && (jiffies-error_time2) > 5*HZ)
  323. {
  324. printk(KERN_NOTICE "executable not page alignedn");
  325. error_time2 = jiffies;
  326. }
  327. if ((fd_offset & ~PAGE_MASK) != 0 &&
  328.     (jiffies-error_time) > 5*HZ)
  329. {
  330. printk(KERN_WARNING 
  331.        "fd_offset is not page aligned. Please convert program: %sn",
  332.        bprm->file->f_dentry->d_name.name);
  333. error_time = jiffies;
  334. }
  335. if (!bprm->file->f_op->mmap||((fd_offset & ~PAGE_MASK) != 0)) {
  336. loff_t pos = fd_offset;
  337. do_brk(N_TXTADDR(ex), ex.a_text+ex.a_data);
  338. bprm->file->f_op->read(bprm->file,(char *)N_TXTADDR(ex),
  339. ex.a_text+ex.a_data, &pos);
  340. flush_icache_range((unsigned long) N_TXTADDR(ex),
  341.    (unsigned long) N_TXTADDR(ex) +
  342.    ex.a_text+ex.a_data);
  343. goto beyond_if;
  344. }
  345. down_write(&current->mm->mmap_sem);
  346. error = do_mmap(bprm->file, N_TXTADDR(ex), ex.a_text,
  347. PROT_READ | PROT_EXEC,
  348. MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE,
  349. fd_offset);
  350. up_write(&current->mm->mmap_sem);
  351. if (error != N_TXTADDR(ex)) {
  352. send_sig(SIGKILL, current, 0);
  353. return error;
  354. }
  355. down_write(&current->mm->mmap_sem);
  356.   error = do_mmap(bprm->file, N_DATADDR(ex), ex.a_data,
  357. PROT_READ | PROT_WRITE | PROT_EXEC,
  358. MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE | MAP_EXECUTABLE,
  359. fd_offset + ex.a_text);
  360. up_write(&current->mm->mmap_sem);
  361. if (error != N_DATADDR(ex)) {
  362. send_sig(SIGKILL, current, 0);
  363. return error;
  364. }
  365. }
  366. beyond_if:
  367. set_binfmt(&aout_format);
  368. set_brk(current->mm->start_brk, current->mm->brk);
  369. retval = setup_arg_pages(bprm); 
  370. if (retval < 0) { 
  371. /* Someone check-me: is this error path enough? */ 
  372. send_sig(SIGKILL, current, 0); 
  373. return retval;
  374. }
  375. current->mm->start_stack =
  376. (unsigned long) create_aout_tables((char *) bprm->p, bprm);
  377. #ifdef __alpha__
  378. regs->gp = ex.a_gpvalue;
  379. #endif
  380. start_thread(regs, ex.a_entry, current->mm->start_stack);
  381. if (current->ptrace & PT_PTRACED)
  382. send_sig(SIGTRAP, current, 0);
  383. return 0;
  384. }
  385. static int load_aout_library(struct file *file)
  386. {
  387. struct inode * inode;
  388. unsigned long bss, start_addr, len;
  389. unsigned long error;
  390. int retval;
  391. struct exec ex;
  392. inode = file->f_dentry->d_inode;
  393. retval = -ENOEXEC;
  394. error = kernel_read(file, 0, (char *) &ex, sizeof(ex));
  395. if (error != sizeof(ex))
  396. goto out;
  397. /* We come in here for the regular a.out style of shared libraries */
  398. if ((N_MAGIC(ex) != ZMAGIC && N_MAGIC(ex) != QMAGIC) || N_TRSIZE(ex) ||
  399.     N_DRSIZE(ex) || ((ex.a_entry & 0xfff) && N_MAGIC(ex) == ZMAGIC) ||
  400.     inode->i_size < ex.a_text+ex.a_data+N_SYMSIZE(ex)+N_TXTOFF(ex)) {
  401. goto out;
  402. }
  403. if (N_FLAGS(ex))
  404. goto out;
  405. /* For  QMAGIC, the starting address is 0x20 into the page.  We mask
  406.    this off to get the starting address for the page */
  407. start_addr =  ex.a_entry & 0xfffff000;
  408. if ((N_TXTOFF(ex) & ~PAGE_MASK) != 0) {
  409. static unsigned long error_time;
  410. loff_t pos = N_TXTOFF(ex);
  411. if ((jiffies-error_time) > 5*HZ)
  412. {
  413. printk(KERN_WARNING 
  414.        "N_TXTOFF is not page aligned. Please convert library: %sn",
  415.        file->f_dentry->d_name.name);
  416. error_time = jiffies;
  417. }
  418. do_brk(start_addr, ex.a_text + ex.a_data + ex.a_bss);
  419. file->f_op->read(file, (char *)start_addr,
  420. ex.a_text + ex.a_data, &pos);
  421. flush_icache_range((unsigned long) start_addr,
  422.    (unsigned long) start_addr + ex.a_text + ex.a_data);
  423. retval = 0;
  424. goto out;
  425. }
  426. /* Now use mmap to map the library into memory. */
  427. down_write(&current->mm->mmap_sem);
  428. error = do_mmap(file, start_addr, ex.a_text + ex.a_data,
  429. PROT_READ | PROT_WRITE | PROT_EXEC,
  430. MAP_FIXED | MAP_PRIVATE | MAP_DENYWRITE,
  431. N_TXTOFF(ex));
  432. up_write(&current->mm->mmap_sem);
  433. retval = error;
  434. if (error != start_addr)
  435. goto out;
  436. len = PAGE_ALIGN(ex.a_text + ex.a_data);
  437. bss = ex.a_text + ex.a_data + ex.a_bss;
  438. if (bss > len) {
  439. error = do_brk(start_addr + len, bss - len);
  440. retval = error;
  441. if (error != start_addr + len)
  442. goto out;
  443. }
  444. retval = 0;
  445. out:
  446. return retval;
  447. }
  448. static int __init init_aout_binfmt(void)
  449. {
  450. return register_binfmt(&aout_format);
  451. }
  452. static void __exit exit_aout_binfmt(void)
  453. {
  454. unregister_binfmt(&aout_format);
  455. }
  456. EXPORT_NO_SYMBOLS;
  457. module_init(init_aout_binfmt);
  458. module_exit(exit_aout_binfmt);
  459. MODULE_LICENSE("GPL");