binfmt_elf_fdpic.c 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863
  1. /* binfmt_elf_fdpic.c: FDPIC ELF binary format
  2. *
  3. * Copyright (C) 2003, 2004, 2006 Red Hat, Inc. All Rights Reserved.
  4. * Written by David Howells (dhowells@redhat.com)
  5. * Derived from binfmt_elf.c
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version
  10. * 2 of the License, or (at your option) any later version.
  11. */
  12. #include <linux/module.h>
  13. #include <linux/fs.h>
  14. #include <linux/stat.h>
  15. #include <linux/sched.h>
  16. #include <linux/mm.h>
  17. #include <linux/mman.h>
  18. #include <linux/errno.h>
  19. #include <linux/signal.h>
  20. #include <linux/binfmts.h>
  21. #include <linux/string.h>
  22. #include <linux/file.h>
  23. #include <linux/fcntl.h>
  24. #include <linux/slab.h>
  25. #include <linux/pagemap.h>
  26. #include <linux/security.h>
  27. #include <linux/highmem.h>
  28. #include <linux/highuid.h>
  29. #include <linux/personality.h>
  30. #include <linux/ptrace.h>
  31. #include <linux/init.h>
  32. #include <linux/elf.h>
  33. #include <linux/elf-fdpic.h>
  34. #include <linux/elfcore.h>
  35. #include <linux/coredump.h>
  36. #include <asm/uaccess.h>
  37. #include <asm/param.h>
  38. #include <asm/pgalloc.h>
  39. #include <asm/exec.h>
  40. typedef char *elf_caddr_t;
  41. #if 0
  42. #define kdebug(fmt, ...) printk("FDPIC "fmt"\n" ,##__VA_ARGS__ )
  43. #else
  44. #define kdebug(fmt, ...) do {} while(0)
  45. #endif
  46. #if 0
  47. #define kdcore(fmt, ...) printk("FDPIC "fmt"\n" ,##__VA_ARGS__ )
  48. #else
  49. #define kdcore(fmt, ...) do {} while(0)
  50. #endif
  51. MODULE_LICENSE("GPL");
  52. static int load_elf_fdpic_binary(struct linux_binprm *, struct pt_regs *);
  53. static int elf_fdpic_fetch_phdrs(struct elf_fdpic_params *, struct file *);
  54. static int elf_fdpic_map_file(struct elf_fdpic_params *, struct file *,
  55. struct mm_struct *, const char *);
  56. static int create_elf_fdpic_tables(struct linux_binprm *, struct mm_struct *,
  57. struct elf_fdpic_params *,
  58. struct elf_fdpic_params *);
  59. #ifndef CONFIG_MMU
  60. static int elf_fdpic_transfer_args_to_stack(struct linux_binprm *,
  61. unsigned long *);
  62. static int elf_fdpic_map_file_constdisp_on_uclinux(struct elf_fdpic_params *,
  63. struct file *,
  64. struct mm_struct *);
  65. #endif
  66. static int elf_fdpic_map_file_by_direct_mmap(struct elf_fdpic_params *,
  67. struct file *, struct mm_struct *);
  68. #ifdef CONFIG_ELF_CORE
  69. static int elf_fdpic_core_dump(struct coredump_params *cprm);
  70. #endif
  71. static struct linux_binfmt elf_fdpic_format = {
  72. .module = THIS_MODULE,
  73. .load_binary = load_elf_fdpic_binary,
  74. #ifdef CONFIG_ELF_CORE
  75. .core_dump = elf_fdpic_core_dump,
  76. #endif
  77. .min_coredump = ELF_EXEC_PAGESIZE,
  78. };
  79. static int __init init_elf_fdpic_binfmt(void)
  80. {
  81. register_binfmt(&elf_fdpic_format);
  82. return 0;
  83. }
  84. static void __exit exit_elf_fdpic_binfmt(void)
  85. {
  86. unregister_binfmt(&elf_fdpic_format);
  87. }
  88. core_initcall(init_elf_fdpic_binfmt);
  89. module_exit(exit_elf_fdpic_binfmt);
  90. static int is_elf_fdpic(struct elfhdr *hdr, struct file *file)
  91. {
  92. if (memcmp(hdr->e_ident, ELFMAG, SELFMAG) != 0)
  93. return 0;
  94. if (hdr->e_type != ET_EXEC && hdr->e_type != ET_DYN)
  95. return 0;
  96. if (!elf_check_arch(hdr) || !elf_check_fdpic(hdr))
  97. return 0;
  98. if (!file->f_op || !file->f_op->mmap)
  99. return 0;
  100. return 1;
  101. }
  102. /*****************************************************************************/
  103. /*
  104. * read the program headers table into memory
  105. */
  106. static int elf_fdpic_fetch_phdrs(struct elf_fdpic_params *params,
  107. struct file *file)
  108. {
  109. struct elf32_phdr *phdr;
  110. unsigned long size;
  111. int retval, loop;
  112. if (params->hdr.e_phentsize != sizeof(struct elf_phdr))
  113. return -ENOMEM;
  114. if (params->hdr.e_phnum > 65536U / sizeof(struct elf_phdr))
  115. return -ENOMEM;
  116. size = params->hdr.e_phnum * sizeof(struct elf_phdr);
  117. params->phdrs = kmalloc(size, GFP_KERNEL);
  118. if (!params->phdrs)
  119. return -ENOMEM;
  120. retval = kernel_read(file, params->hdr.e_phoff,
  121. (char *) params->phdrs, size);
  122. if (unlikely(retval != size))
  123. return retval < 0 ? retval : -ENOEXEC;
  124. /* determine stack size for this binary */
  125. phdr = params->phdrs;
  126. for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
  127. if (phdr->p_type != PT_GNU_STACK)
  128. continue;
  129. if (phdr->p_flags & PF_X)
  130. params->flags |= ELF_FDPIC_FLAG_EXEC_STACK;
  131. else
  132. params->flags |= ELF_FDPIC_FLAG_NOEXEC_STACK;
  133. params->stack_size = phdr->p_memsz;
  134. break;
  135. }
  136. return 0;
  137. }
  138. /*****************************************************************************/
  139. /*
  140. * load an fdpic binary into various bits of memory
  141. */
  142. static int load_elf_fdpic_binary(struct linux_binprm *bprm,
  143. struct pt_regs *regs)
  144. {
  145. struct elf_fdpic_params exec_params, interp_params;
  146. struct elf_phdr *phdr;
  147. unsigned long stack_size, entryaddr;
  148. #ifdef ELF_FDPIC_PLAT_INIT
  149. unsigned long dynaddr;
  150. #endif
  151. #ifndef CONFIG_MMU
  152. unsigned long stack_prot;
  153. #endif
  154. struct file *interpreter = NULL; /* to shut gcc up */
  155. char *interpreter_name = NULL;
  156. int executable_stack;
  157. int retval, i;
  158. kdebug("____ LOAD %d ____", current->pid);
  159. memset(&exec_params, 0, sizeof(exec_params));
  160. memset(&interp_params, 0, sizeof(interp_params));
  161. exec_params.hdr = *(struct elfhdr *) bprm->buf;
  162. exec_params.flags = ELF_FDPIC_FLAG_PRESENT | ELF_FDPIC_FLAG_EXECUTABLE;
  163. /* check that this is a binary we know how to deal with */
  164. retval = -ENOEXEC;
  165. if (!is_elf_fdpic(&exec_params.hdr, bprm->file))
  166. goto error;
  167. /* read the program header table */
  168. retval = elf_fdpic_fetch_phdrs(&exec_params, bprm->file);
  169. if (retval < 0)
  170. goto error;
  171. /* scan for a program header that specifies an interpreter */
  172. phdr = exec_params.phdrs;
  173. for (i = 0; i < exec_params.hdr.e_phnum; i++, phdr++) {
  174. switch (phdr->p_type) {
  175. case PT_INTERP:
  176. retval = -ENOMEM;
  177. if (phdr->p_filesz > PATH_MAX)
  178. goto error;
  179. retval = -ENOENT;
  180. if (phdr->p_filesz < 2)
  181. goto error;
  182. /* read the name of the interpreter into memory */
  183. interpreter_name = kmalloc(phdr->p_filesz, GFP_KERNEL);
  184. if (!interpreter_name)
  185. goto error;
  186. retval = kernel_read(bprm->file,
  187. phdr->p_offset,
  188. interpreter_name,
  189. phdr->p_filesz);
  190. if (unlikely(retval != phdr->p_filesz)) {
  191. if (retval >= 0)
  192. retval = -ENOEXEC;
  193. goto error;
  194. }
  195. retval = -ENOENT;
  196. if (interpreter_name[phdr->p_filesz - 1] != '\0')
  197. goto error;
  198. kdebug("Using ELF interpreter %s", interpreter_name);
  199. /* replace the program with the interpreter */
  200. interpreter = open_exec(interpreter_name);
  201. retval = PTR_ERR(interpreter);
  202. if (IS_ERR(interpreter)) {
  203. interpreter = NULL;
  204. goto error;
  205. }
  206. /*
  207. * If the binary is not readable then enforce
  208. * mm->dumpable = 0 regardless of the interpreter's
  209. * permissions.
  210. */
  211. would_dump(bprm, interpreter);
  212. retval = kernel_read(interpreter, 0, bprm->buf,
  213. BINPRM_BUF_SIZE);
  214. if (unlikely(retval != BINPRM_BUF_SIZE)) {
  215. if (retval >= 0)
  216. retval = -ENOEXEC;
  217. goto error;
  218. }
  219. interp_params.hdr = *((struct elfhdr *) bprm->buf);
  220. break;
  221. case PT_LOAD:
  222. #ifdef CONFIG_MMU
  223. if (exec_params.load_addr == 0)
  224. exec_params.load_addr = phdr->p_vaddr;
  225. #endif
  226. break;
  227. }
  228. }
  229. if (elf_check_const_displacement(&exec_params.hdr))
  230. exec_params.flags |= ELF_FDPIC_FLAG_CONSTDISP;
  231. /* perform insanity checks on the interpreter */
  232. if (interpreter_name) {
  233. retval = -ELIBBAD;
  234. if (!is_elf_fdpic(&interp_params.hdr, interpreter))
  235. goto error;
  236. interp_params.flags = ELF_FDPIC_FLAG_PRESENT;
  237. /* read the interpreter's program header table */
  238. retval = elf_fdpic_fetch_phdrs(&interp_params, interpreter);
  239. if (retval < 0)
  240. goto error;
  241. }
  242. stack_size = exec_params.stack_size;
  243. if (exec_params.flags & ELF_FDPIC_FLAG_EXEC_STACK)
  244. executable_stack = EXSTACK_ENABLE_X;
  245. else if (exec_params.flags & ELF_FDPIC_FLAG_NOEXEC_STACK)
  246. executable_stack = EXSTACK_DISABLE_X;
  247. else
  248. executable_stack = EXSTACK_DEFAULT;
  249. if (stack_size == 0) {
  250. stack_size = interp_params.stack_size;
  251. if (interp_params.flags & ELF_FDPIC_FLAG_EXEC_STACK)
  252. executable_stack = EXSTACK_ENABLE_X;
  253. else if (interp_params.flags & ELF_FDPIC_FLAG_NOEXEC_STACK)
  254. executable_stack = EXSTACK_DISABLE_X;
  255. else
  256. executable_stack = EXSTACK_DEFAULT;
  257. }
  258. retval = -ENOEXEC;
  259. if (stack_size == 0)
  260. goto error;
  261. if (elf_check_const_displacement(&interp_params.hdr))
  262. interp_params.flags |= ELF_FDPIC_FLAG_CONSTDISP;
  263. /* flush all traces of the currently running executable */
  264. retval = flush_old_exec(bprm);
  265. if (retval)
  266. goto error;
  267. /* there's now no turning back... the old userspace image is dead,
  268. * defunct, deceased, etc. after this point we have to exit via
  269. * error_kill */
  270. set_personality(PER_LINUX_FDPIC);
  271. if (elf_read_implies_exec(&exec_params.hdr, executable_stack))
  272. current->personality |= READ_IMPLIES_EXEC;
  273. setup_new_exec(bprm);
  274. set_binfmt(&elf_fdpic_format);
  275. current->mm->start_code = 0;
  276. current->mm->end_code = 0;
  277. current->mm->start_stack = 0;
  278. current->mm->start_data = 0;
  279. current->mm->end_data = 0;
  280. current->mm->context.exec_fdpic_loadmap = 0;
  281. current->mm->context.interp_fdpic_loadmap = 0;
  282. #ifdef CONFIG_MMU
  283. elf_fdpic_arch_lay_out_mm(&exec_params,
  284. &interp_params,
  285. &current->mm->start_stack,
  286. &current->mm->start_brk);
  287. retval = setup_arg_pages(bprm, current->mm->start_stack,
  288. executable_stack);
  289. if (retval < 0) {
  290. send_sig(SIGKILL, current, 0);
  291. goto error_kill;
  292. }
  293. #endif
  294. /* load the executable and interpreter into memory */
  295. retval = elf_fdpic_map_file(&exec_params, bprm->file, current->mm,
  296. "executable");
  297. if (retval < 0)
  298. goto error_kill;
  299. if (interpreter_name) {
  300. retval = elf_fdpic_map_file(&interp_params, interpreter,
  301. current->mm, "interpreter");
  302. if (retval < 0) {
  303. printk(KERN_ERR "Unable to load interpreter\n");
  304. goto error_kill;
  305. }
  306. allow_write_access(interpreter);
  307. fput(interpreter);
  308. interpreter = NULL;
  309. }
  310. #ifdef CONFIG_MMU
  311. if (!current->mm->start_brk)
  312. current->mm->start_brk = current->mm->end_data;
  313. current->mm->brk = current->mm->start_brk =
  314. PAGE_ALIGN(current->mm->start_brk);
  315. #else
  316. /* create a stack and brk area big enough for everyone
  317. * - the brk heap starts at the bottom and works up
  318. * - the stack starts at the top and works down
  319. */
  320. stack_size = (stack_size + PAGE_SIZE - 1) & PAGE_MASK;
  321. if (stack_size < PAGE_SIZE * 2)
  322. stack_size = PAGE_SIZE * 2;
  323. stack_prot = PROT_READ | PROT_WRITE;
  324. if (executable_stack == EXSTACK_ENABLE_X ||
  325. (executable_stack == EXSTACK_DEFAULT && VM_STACK_FLAGS & VM_EXEC))
  326. stack_prot |= PROT_EXEC;
  327. current->mm->start_brk = vm_mmap(NULL, 0, stack_size, stack_prot,
  328. MAP_PRIVATE | MAP_ANONYMOUS |
  329. MAP_UNINITIALIZED | MAP_GROWSDOWN,
  330. 0);
  331. if (IS_ERR_VALUE(current->mm->start_brk)) {
  332. retval = current->mm->start_brk;
  333. current->mm->start_brk = 0;
  334. goto error_kill;
  335. }
  336. current->mm->brk = current->mm->start_brk;
  337. current->mm->context.end_brk = current->mm->start_brk;
  338. current->mm->context.end_brk +=
  339. (stack_size > PAGE_SIZE) ? (stack_size - PAGE_SIZE) : 0;
  340. current->mm->start_stack = current->mm->start_brk + stack_size;
  341. #endif
  342. install_exec_creds(bprm);
  343. if (create_elf_fdpic_tables(bprm, current->mm,
  344. &exec_params, &interp_params) < 0)
  345. goto error_kill;
  346. kdebug("- start_code %lx", current->mm->start_code);
  347. kdebug("- end_code %lx", current->mm->end_code);
  348. kdebug("- start_data %lx", current->mm->start_data);
  349. kdebug("- end_data %lx", current->mm->end_data);
  350. kdebug("- start_brk %lx", current->mm->start_brk);
  351. kdebug("- brk %lx", current->mm->brk);
  352. kdebug("- start_stack %lx", current->mm->start_stack);
  353. #ifdef ELF_FDPIC_PLAT_INIT
  354. /*
  355. * The ABI may specify that certain registers be set up in special
  356. * ways (on i386 %edx is the address of a DT_FINI function, for
  357. * example. This macro performs whatever initialization to
  358. * the regs structure is required.
  359. */
  360. dynaddr = interp_params.dynamic_addr ?: exec_params.dynamic_addr;
  361. ELF_FDPIC_PLAT_INIT(regs, exec_params.map_addr, interp_params.map_addr,
  362. dynaddr);
  363. #endif
  364. /* everything is now ready... get the userspace context ready to roll */
  365. entryaddr = interp_params.entry_addr ?: exec_params.entry_addr;
  366. start_thread(regs, entryaddr, current->mm->start_stack);
  367. retval = 0;
  368. error:
  369. if (interpreter) {
  370. allow_write_access(interpreter);
  371. fput(interpreter);
  372. }
  373. kfree(interpreter_name);
  374. kfree(exec_params.phdrs);
  375. kfree(exec_params.loadmap);
  376. kfree(interp_params.phdrs);
  377. kfree(interp_params.loadmap);
  378. return retval;
  379. /* unrecoverable error - kill the process */
  380. error_kill:
  381. send_sig(SIGSEGV, current, 0);
  382. goto error;
  383. }
  384. /*****************************************************************************/
  385. #ifndef ELF_BASE_PLATFORM
  386. /*
  387. * AT_BASE_PLATFORM indicates the "real" hardware/microarchitecture.
  388. * If the arch defines ELF_BASE_PLATFORM (in asm/elf.h), the value
  389. * will be copied to the user stack in the same manner as AT_PLATFORM.
  390. */
  391. #define ELF_BASE_PLATFORM NULL
  392. #endif
  393. /*
  394. * present useful information to the program by shovelling it onto the new
  395. * process's stack
  396. */
  397. static int create_elf_fdpic_tables(struct linux_binprm *bprm,
  398. struct mm_struct *mm,
  399. struct elf_fdpic_params *exec_params,
  400. struct elf_fdpic_params *interp_params)
  401. {
  402. const struct cred *cred = current_cred();
  403. unsigned long sp, csp, nitems;
  404. elf_caddr_t __user *argv, *envp;
  405. size_t platform_len = 0, len;
  406. char *k_platform, *k_base_platform;
  407. char __user *u_platform, *u_base_platform, *p;
  408. long hwcap;
  409. int loop;
  410. int nr; /* reset for each csp adjustment */
  411. #ifdef CONFIG_MMU
  412. /* In some cases (e.g. Hyper-Threading), we want to avoid L1 evictions
  413. * by the processes running on the same package. One thing we can do is
  414. * to shuffle the initial stack for them, so we give the architecture
  415. * an opportunity to do so here.
  416. */
  417. sp = arch_align_stack(bprm->p);
  418. #else
  419. sp = mm->start_stack;
  420. /* stack the program arguments and environment */
  421. if (elf_fdpic_transfer_args_to_stack(bprm, &sp) < 0)
  422. return -EFAULT;
  423. #endif
  424. hwcap = ELF_HWCAP;
  425. /*
  426. * If this architecture has a platform capability string, copy it
  427. * to userspace. In some cases (Sparc), this info is impossible
  428. * for userspace to get any other way, in others (i386) it is
  429. * merely difficult.
  430. */
  431. k_platform = ELF_PLATFORM;
  432. u_platform = NULL;
  433. if (k_platform) {
  434. platform_len = strlen(k_platform) + 1;
  435. sp -= platform_len;
  436. u_platform = (char __user *) sp;
  437. if (__copy_to_user(u_platform, k_platform, platform_len) != 0)
  438. return -EFAULT;
  439. }
  440. /*
  441. * If this architecture has a "base" platform capability
  442. * string, copy it to userspace.
  443. */
  444. k_base_platform = ELF_BASE_PLATFORM;
  445. u_base_platform = NULL;
  446. if (k_base_platform) {
  447. platform_len = strlen(k_base_platform) + 1;
  448. sp -= platform_len;
  449. u_base_platform = (char __user *) sp;
  450. if (__copy_to_user(u_base_platform, k_base_platform, platform_len) != 0)
  451. return -EFAULT;
  452. }
  453. sp &= ~7UL;
  454. /* stack the load map(s) */
  455. len = sizeof(struct elf32_fdpic_loadmap);
  456. len += sizeof(struct elf32_fdpic_loadseg) * exec_params->loadmap->nsegs;
  457. sp = (sp - len) & ~7UL;
  458. exec_params->map_addr = sp;
  459. if (copy_to_user((void __user *) sp, exec_params->loadmap, len) != 0)
  460. return -EFAULT;
  461. current->mm->context.exec_fdpic_loadmap = (unsigned long) sp;
  462. if (interp_params->loadmap) {
  463. len = sizeof(struct elf32_fdpic_loadmap);
  464. len += sizeof(struct elf32_fdpic_loadseg) *
  465. interp_params->loadmap->nsegs;
  466. sp = (sp - len) & ~7UL;
  467. interp_params->map_addr = sp;
  468. if (copy_to_user((void __user *) sp, interp_params->loadmap,
  469. len) != 0)
  470. return -EFAULT;
  471. current->mm->context.interp_fdpic_loadmap = (unsigned long) sp;
  472. }
  473. /* force 16 byte _final_ alignment here for generality */
  474. #define DLINFO_ITEMS 15
  475. nitems = 1 + DLINFO_ITEMS + (k_platform ? 1 : 0) +
  476. (k_base_platform ? 1 : 0) + AT_VECTOR_SIZE_ARCH;
  477. if (bprm->interp_flags & BINPRM_FLAGS_EXECFD)
  478. nitems++;
  479. csp = sp;
  480. sp -= nitems * 2 * sizeof(unsigned long);
  481. sp -= (bprm->envc + 1) * sizeof(char *); /* envv[] */
  482. sp -= (bprm->argc + 1) * sizeof(char *); /* argv[] */
  483. sp -= 1 * sizeof(unsigned long); /* argc */
  484. csp -= sp & 15UL;
  485. sp -= sp & 15UL;
  486. /* put the ELF interpreter info on the stack */
  487. #define NEW_AUX_ENT(id, val) \
  488. do { \
  489. struct { unsigned long _id, _val; } __user *ent; \
  490. \
  491. ent = (void __user *) csp; \
  492. __put_user((id), &ent[nr]._id); \
  493. __put_user((val), &ent[nr]._val); \
  494. nr++; \
  495. } while (0)
  496. nr = 0;
  497. csp -= 2 * sizeof(unsigned long);
  498. NEW_AUX_ENT(AT_NULL, 0);
  499. if (k_platform) {
  500. nr = 0;
  501. csp -= 2 * sizeof(unsigned long);
  502. NEW_AUX_ENT(AT_PLATFORM,
  503. (elf_addr_t) (unsigned long) u_platform);
  504. }
  505. if (k_base_platform) {
  506. nr = 0;
  507. csp -= 2 * sizeof(unsigned long);
  508. NEW_AUX_ENT(AT_BASE_PLATFORM,
  509. (elf_addr_t) (unsigned long) u_base_platform);
  510. }
  511. if (bprm->interp_flags & BINPRM_FLAGS_EXECFD) {
  512. nr = 0;
  513. csp -= 2 * sizeof(unsigned long);
  514. NEW_AUX_ENT(AT_EXECFD, bprm->interp_data);
  515. }
  516. nr = 0;
  517. csp -= DLINFO_ITEMS * 2 * sizeof(unsigned long);
  518. NEW_AUX_ENT(AT_HWCAP, hwcap);
  519. NEW_AUX_ENT(AT_PAGESZ, PAGE_SIZE);
  520. NEW_AUX_ENT(AT_CLKTCK, CLOCKS_PER_SEC);
  521. NEW_AUX_ENT(AT_PHDR, exec_params->ph_addr);
  522. NEW_AUX_ENT(AT_PHENT, sizeof(struct elf_phdr));
  523. NEW_AUX_ENT(AT_PHNUM, exec_params->hdr.e_phnum);
  524. NEW_AUX_ENT(AT_BASE, interp_params->elfhdr_addr);
  525. NEW_AUX_ENT(AT_FLAGS, 0);
  526. NEW_AUX_ENT(AT_ENTRY, exec_params->entry_addr);
  527. NEW_AUX_ENT(AT_UID, (elf_addr_t) from_kuid_munged(cred->user_ns, cred->uid));
  528. NEW_AUX_ENT(AT_EUID, (elf_addr_t) from_kuid_munged(cred->user_ns, cred->euid));
  529. NEW_AUX_ENT(AT_GID, (elf_addr_t) from_kgid_munged(cred->user_ns, cred->gid));
  530. NEW_AUX_ENT(AT_EGID, (elf_addr_t) from_kgid_munged(cred->user_ns, cred->egid));
  531. NEW_AUX_ENT(AT_SECURE, security_bprm_secureexec(bprm));
  532. NEW_AUX_ENT(AT_EXECFN, bprm->exec);
  533. #ifdef ARCH_DLINFO
  534. nr = 0;
  535. csp -= AT_VECTOR_SIZE_ARCH * 2 * sizeof(unsigned long);
  536. /* ARCH_DLINFO must come last so platform specific code can enforce
  537. * special alignment requirements on the AUXV if necessary (eg. PPC).
  538. */
  539. ARCH_DLINFO;
  540. #endif
  541. #undef NEW_AUX_ENT
  542. /* allocate room for argv[] and envv[] */
  543. csp -= (bprm->envc + 1) * sizeof(elf_caddr_t);
  544. envp = (elf_caddr_t __user *) csp;
  545. csp -= (bprm->argc + 1) * sizeof(elf_caddr_t);
  546. argv = (elf_caddr_t __user *) csp;
  547. /* stack argc */
  548. csp -= sizeof(unsigned long);
  549. __put_user(bprm->argc, (unsigned long __user *) csp);
  550. BUG_ON(csp != sp);
  551. /* fill in the argv[] array */
  552. #ifdef CONFIG_MMU
  553. current->mm->arg_start = bprm->p;
  554. #else
  555. current->mm->arg_start = current->mm->start_stack -
  556. (MAX_ARG_PAGES * PAGE_SIZE - bprm->p);
  557. #endif
  558. p = (char __user *) current->mm->arg_start;
  559. for (loop = bprm->argc; loop > 0; loop--) {
  560. __put_user((elf_caddr_t) p, argv++);
  561. len = strnlen_user(p, MAX_ARG_STRLEN);
  562. if (!len || len > MAX_ARG_STRLEN)
  563. return -EINVAL;
  564. p += len;
  565. }
  566. __put_user(NULL, argv);
  567. current->mm->arg_end = (unsigned long) p;
  568. /* fill in the envv[] array */
  569. current->mm->env_start = (unsigned long) p;
  570. for (loop = bprm->envc; loop > 0; loop--) {
  571. __put_user((elf_caddr_t)(unsigned long) p, envp++);
  572. len = strnlen_user(p, MAX_ARG_STRLEN);
  573. if (!len || len > MAX_ARG_STRLEN)
  574. return -EINVAL;
  575. p += len;
  576. }
  577. __put_user(NULL, envp);
  578. current->mm->env_end = (unsigned long) p;
  579. mm->start_stack = (unsigned long) sp;
  580. return 0;
  581. }
  582. /*****************************************************************************/
  583. /*
  584. * transfer the program arguments and environment from the holding pages onto
  585. * the stack
  586. */
  587. #ifndef CONFIG_MMU
  588. static int elf_fdpic_transfer_args_to_stack(struct linux_binprm *bprm,
  589. unsigned long *_sp)
  590. {
  591. unsigned long index, stop, sp;
  592. char *src;
  593. int ret = 0;
  594. stop = bprm->p >> PAGE_SHIFT;
  595. sp = *_sp;
  596. for (index = MAX_ARG_PAGES - 1; index >= stop; index--) {
  597. src = kmap(bprm->page[index]);
  598. sp -= PAGE_SIZE;
  599. if (copy_to_user((void *) sp, src, PAGE_SIZE) != 0)
  600. ret = -EFAULT;
  601. kunmap(bprm->page[index]);
  602. if (ret < 0)
  603. goto out;
  604. }
  605. *_sp = (*_sp - (MAX_ARG_PAGES * PAGE_SIZE - bprm->p)) & ~15;
  606. out:
  607. return ret;
  608. }
  609. #endif
  610. /*****************************************************************************/
  611. /*
  612. * load the appropriate binary image (executable or interpreter) into memory
  613. * - we assume no MMU is available
  614. * - if no other PIC bits are set in params->hdr->e_flags
  615. * - we assume that the LOADable segments in the binary are independently relocatable
  616. * - we assume R/O executable segments are shareable
  617. * - else
  618. * - we assume the loadable parts of the image to require fixed displacement
  619. * - the image is not shareable
  620. */
  621. static int elf_fdpic_map_file(struct elf_fdpic_params *params,
  622. struct file *file,
  623. struct mm_struct *mm,
  624. const char *what)
  625. {
  626. struct elf32_fdpic_loadmap *loadmap;
  627. #ifdef CONFIG_MMU
  628. struct elf32_fdpic_loadseg *mseg;
  629. #endif
  630. struct elf32_fdpic_loadseg *seg;
  631. struct elf32_phdr *phdr;
  632. unsigned long load_addr, stop;
  633. unsigned nloads, tmp;
  634. size_t size;
  635. int loop, ret;
  636. /* allocate a load map table */
  637. nloads = 0;
  638. for (loop = 0; loop < params->hdr.e_phnum; loop++)
  639. if (params->phdrs[loop].p_type == PT_LOAD)
  640. nloads++;
  641. if (nloads == 0)
  642. return -ELIBBAD;
  643. size = sizeof(*loadmap) + nloads * sizeof(*seg);
  644. loadmap = kzalloc(size, GFP_KERNEL);
  645. if (!loadmap)
  646. return -ENOMEM;
  647. params->loadmap = loadmap;
  648. loadmap->version = ELF32_FDPIC_LOADMAP_VERSION;
  649. loadmap->nsegs = nloads;
  650. load_addr = params->load_addr;
  651. seg = loadmap->segs;
  652. /* map the requested LOADs into the memory space */
  653. switch (params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) {
  654. case ELF_FDPIC_FLAG_CONSTDISP:
  655. case ELF_FDPIC_FLAG_CONTIGUOUS:
  656. #ifndef CONFIG_MMU
  657. ret = elf_fdpic_map_file_constdisp_on_uclinux(params, file, mm);
  658. if (ret < 0)
  659. return ret;
  660. break;
  661. #endif
  662. default:
  663. ret = elf_fdpic_map_file_by_direct_mmap(params, file, mm);
  664. if (ret < 0)
  665. return ret;
  666. break;
  667. }
  668. /* map the entry point */
  669. if (params->hdr.e_entry) {
  670. seg = loadmap->segs;
  671. for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
  672. if (params->hdr.e_entry >= seg->p_vaddr &&
  673. params->hdr.e_entry < seg->p_vaddr + seg->p_memsz) {
  674. params->entry_addr =
  675. (params->hdr.e_entry - seg->p_vaddr) +
  676. seg->addr;
  677. break;
  678. }
  679. }
  680. }
  681. /* determine where the program header table has wound up if mapped */
  682. stop = params->hdr.e_phoff;
  683. stop += params->hdr.e_phnum * sizeof (struct elf_phdr);
  684. phdr = params->phdrs;
  685. for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
  686. if (phdr->p_type != PT_LOAD)
  687. continue;
  688. if (phdr->p_offset > params->hdr.e_phoff ||
  689. phdr->p_offset + phdr->p_filesz < stop)
  690. continue;
  691. seg = loadmap->segs;
  692. for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
  693. if (phdr->p_vaddr >= seg->p_vaddr &&
  694. phdr->p_vaddr + phdr->p_filesz <=
  695. seg->p_vaddr + seg->p_memsz) {
  696. params->ph_addr =
  697. (phdr->p_vaddr - seg->p_vaddr) +
  698. seg->addr +
  699. params->hdr.e_phoff - phdr->p_offset;
  700. break;
  701. }
  702. }
  703. break;
  704. }
  705. /* determine where the dynamic section has wound up if there is one */
  706. phdr = params->phdrs;
  707. for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
  708. if (phdr->p_type != PT_DYNAMIC)
  709. continue;
  710. seg = loadmap->segs;
  711. for (loop = loadmap->nsegs; loop > 0; loop--, seg++) {
  712. if (phdr->p_vaddr >= seg->p_vaddr &&
  713. phdr->p_vaddr + phdr->p_memsz <=
  714. seg->p_vaddr + seg->p_memsz) {
  715. params->dynamic_addr =
  716. (phdr->p_vaddr - seg->p_vaddr) +
  717. seg->addr;
  718. /* check the dynamic section contains at least
  719. * one item, and that the last item is a NULL
  720. * entry */
  721. if (phdr->p_memsz == 0 ||
  722. phdr->p_memsz % sizeof(Elf32_Dyn) != 0)
  723. goto dynamic_error;
  724. tmp = phdr->p_memsz / sizeof(Elf32_Dyn);
  725. if (((Elf32_Dyn *)
  726. params->dynamic_addr)[tmp - 1].d_tag != 0)
  727. goto dynamic_error;
  728. break;
  729. }
  730. }
  731. break;
  732. }
  733. /* now elide adjacent segments in the load map on MMU linux
  734. * - on uClinux the holes between may actually be filled with system
  735. * stuff or stuff from other processes
  736. */
  737. #ifdef CONFIG_MMU
  738. nloads = loadmap->nsegs;
  739. mseg = loadmap->segs;
  740. seg = mseg + 1;
  741. for (loop = 1; loop < nloads; loop++) {
  742. /* see if we have a candidate for merging */
  743. if (seg->p_vaddr - mseg->p_vaddr == seg->addr - mseg->addr) {
  744. load_addr = PAGE_ALIGN(mseg->addr + mseg->p_memsz);
  745. if (load_addr == (seg->addr & PAGE_MASK)) {
  746. mseg->p_memsz +=
  747. load_addr -
  748. (mseg->addr + mseg->p_memsz);
  749. mseg->p_memsz += seg->addr & ~PAGE_MASK;
  750. mseg->p_memsz += seg->p_memsz;
  751. loadmap->nsegs--;
  752. continue;
  753. }
  754. }
  755. mseg++;
  756. if (mseg != seg)
  757. *mseg = *seg;
  758. }
  759. #endif
  760. kdebug("Mapped Object [%s]:", what);
  761. kdebug("- elfhdr : %lx", params->elfhdr_addr);
  762. kdebug("- entry : %lx", params->entry_addr);
  763. kdebug("- PHDR[] : %lx", params->ph_addr);
  764. kdebug("- DYNAMIC[]: %lx", params->dynamic_addr);
  765. seg = loadmap->segs;
  766. for (loop = 0; loop < loadmap->nsegs; loop++, seg++)
  767. kdebug("- LOAD[%d] : %08x-%08x [va=%x ms=%x]",
  768. loop,
  769. seg->addr, seg->addr + seg->p_memsz - 1,
  770. seg->p_vaddr, seg->p_memsz);
  771. return 0;
  772. dynamic_error:
  773. printk("ELF FDPIC %s with invalid DYNAMIC section (inode=%lu)\n",
  774. what, file->f_path.dentry->d_inode->i_ino);
  775. return -ELIBBAD;
  776. }
  777. /*****************************************************************************/
  778. /*
  779. * map a file with constant displacement under uClinux
  780. */
  781. #ifndef CONFIG_MMU
  782. static int elf_fdpic_map_file_constdisp_on_uclinux(
  783. struct elf_fdpic_params *params,
  784. struct file *file,
  785. struct mm_struct *mm)
  786. {
  787. struct elf32_fdpic_loadseg *seg;
  788. struct elf32_phdr *phdr;
  789. unsigned long load_addr, base = ULONG_MAX, top = 0, maddr = 0, mflags;
  790. loff_t fpos;
  791. int loop, ret;
  792. load_addr = params->load_addr;
  793. seg = params->loadmap->segs;
  794. /* determine the bounds of the contiguous overall allocation we must
  795. * make */
  796. phdr = params->phdrs;
  797. for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
  798. if (params->phdrs[loop].p_type != PT_LOAD)
  799. continue;
  800. if (base > phdr->p_vaddr)
  801. base = phdr->p_vaddr;
  802. if (top < phdr->p_vaddr + phdr->p_memsz)
  803. top = phdr->p_vaddr + phdr->p_memsz;
  804. }
  805. /* allocate one big anon block for everything */
  806. mflags = MAP_PRIVATE;
  807. if (params->flags & ELF_FDPIC_FLAG_EXECUTABLE)
  808. mflags |= MAP_EXECUTABLE;
  809. maddr = vm_mmap(NULL, load_addr, top - base,
  810. PROT_READ | PROT_WRITE | PROT_EXEC, mflags, 0);
  811. if (IS_ERR_VALUE(maddr))
  812. return (int) maddr;
  813. if (load_addr != 0)
  814. load_addr += PAGE_ALIGN(top - base);
  815. /* and then load the file segments into it */
  816. phdr = params->phdrs;
  817. for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
  818. if (params->phdrs[loop].p_type != PT_LOAD)
  819. continue;
  820. fpos = phdr->p_offset;
  821. seg->addr = maddr + (phdr->p_vaddr - base);
  822. seg->p_vaddr = phdr->p_vaddr;
  823. seg->p_memsz = phdr->p_memsz;
  824. ret = file->f_op->read(file, (void *) seg->addr,
  825. phdr->p_filesz, &fpos);
  826. if (ret < 0)
  827. return ret;
  828. /* map the ELF header address if in this segment */
  829. if (phdr->p_offset == 0)
  830. params->elfhdr_addr = seg->addr;
  831. /* clear any space allocated but not loaded */
  832. if (phdr->p_filesz < phdr->p_memsz) {
  833. if (clear_user((void *) (seg->addr + phdr->p_filesz),
  834. phdr->p_memsz - phdr->p_filesz))
  835. return -EFAULT;
  836. }
  837. if (mm) {
  838. if (phdr->p_flags & PF_X) {
  839. if (!mm->start_code) {
  840. mm->start_code = seg->addr;
  841. mm->end_code = seg->addr +
  842. phdr->p_memsz;
  843. }
  844. } else if (!mm->start_data) {
  845. mm->start_data = seg->addr;
  846. mm->end_data = seg->addr + phdr->p_memsz;
  847. }
  848. }
  849. seg++;
  850. }
  851. return 0;
  852. }
  853. #endif
  854. /*****************************************************************************/
  855. /*
  856. * map a binary by direct mmap() of the individual PT_LOAD segments
  857. */
  858. static int elf_fdpic_map_file_by_direct_mmap(struct elf_fdpic_params *params,
  859. struct file *file,
  860. struct mm_struct *mm)
  861. {
  862. struct elf32_fdpic_loadseg *seg;
  863. struct elf32_phdr *phdr;
  864. unsigned long load_addr, delta_vaddr;
  865. int loop, dvset;
  866. load_addr = params->load_addr;
  867. delta_vaddr = 0;
  868. dvset = 0;
  869. seg = params->loadmap->segs;
  870. /* deal with each load segment separately */
  871. phdr = params->phdrs;
  872. for (loop = 0; loop < params->hdr.e_phnum; loop++, phdr++) {
  873. unsigned long maddr, disp, excess, excess1;
  874. int prot = 0, flags;
  875. if (phdr->p_type != PT_LOAD)
  876. continue;
  877. kdebug("[LOAD] va=%lx of=%lx fs=%lx ms=%lx",
  878. (unsigned long) phdr->p_vaddr,
  879. (unsigned long) phdr->p_offset,
  880. (unsigned long) phdr->p_filesz,
  881. (unsigned long) phdr->p_memsz);
  882. /* determine the mapping parameters */
  883. if (phdr->p_flags & PF_R) prot |= PROT_READ;
  884. if (phdr->p_flags & PF_W) prot |= PROT_WRITE;
  885. if (phdr->p_flags & PF_X) prot |= PROT_EXEC;
  886. flags = MAP_PRIVATE | MAP_DENYWRITE;
  887. if (params->flags & ELF_FDPIC_FLAG_EXECUTABLE)
  888. flags |= MAP_EXECUTABLE;
  889. maddr = 0;
  890. switch (params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) {
  891. case ELF_FDPIC_FLAG_INDEPENDENT:
  892. /* PT_LOADs are independently locatable */
  893. break;
  894. case ELF_FDPIC_FLAG_HONOURVADDR:
  895. /* the specified virtual address must be honoured */
  896. maddr = phdr->p_vaddr;
  897. flags |= MAP_FIXED;
  898. break;
  899. case ELF_FDPIC_FLAG_CONSTDISP:
  900. /* constant displacement
  901. * - can be mapped anywhere, but must be mapped as a
  902. * unit
  903. */
  904. if (!dvset) {
  905. maddr = load_addr;
  906. delta_vaddr = phdr->p_vaddr;
  907. dvset = 1;
  908. } else {
  909. maddr = load_addr + phdr->p_vaddr - delta_vaddr;
  910. flags |= MAP_FIXED;
  911. }
  912. break;
  913. case ELF_FDPIC_FLAG_CONTIGUOUS:
  914. /* contiguity handled later */
  915. break;
  916. default:
  917. BUG();
  918. }
  919. maddr &= PAGE_MASK;
  920. /* create the mapping */
  921. disp = phdr->p_vaddr & ~PAGE_MASK;
  922. maddr = vm_mmap(file, maddr, phdr->p_memsz + disp, prot, flags,
  923. phdr->p_offset - disp);
  924. kdebug("mmap[%d] <file> sz=%lx pr=%x fl=%x of=%lx --> %08lx",
  925. loop, phdr->p_memsz + disp, prot, flags,
  926. phdr->p_offset - disp, maddr);
  927. if (IS_ERR_VALUE(maddr))
  928. return (int) maddr;
  929. if ((params->flags & ELF_FDPIC_FLAG_ARRANGEMENT) ==
  930. ELF_FDPIC_FLAG_CONTIGUOUS)
  931. load_addr += PAGE_ALIGN(phdr->p_memsz + disp);
  932. seg->addr = maddr + disp;
  933. seg->p_vaddr = phdr->p_vaddr;
  934. seg->p_memsz = phdr->p_memsz;
  935. /* map the ELF header address if in this segment */
  936. if (phdr->p_offset == 0)
  937. params->elfhdr_addr = seg->addr;
  938. /* clear the bit between beginning of mapping and beginning of
  939. * PT_LOAD */
  940. if (prot & PROT_WRITE && disp > 0) {
  941. kdebug("clear[%d] ad=%lx sz=%lx", loop, maddr, disp);
  942. if (clear_user((void __user *) maddr, disp))
  943. return -EFAULT;
  944. maddr += disp;
  945. }
  946. /* clear any space allocated but not loaded
  947. * - on uClinux we can just clear the lot
  948. * - on MMU linux we'll get a SIGBUS beyond the last page
  949. * extant in the file
  950. */
  951. excess = phdr->p_memsz - phdr->p_filesz;
  952. excess1 = PAGE_SIZE - ((maddr + phdr->p_filesz) & ~PAGE_MASK);
  953. #ifdef CONFIG_MMU
  954. if (excess > excess1) {
  955. unsigned long xaddr = maddr + phdr->p_filesz + excess1;
  956. unsigned long xmaddr;
  957. flags |= MAP_FIXED | MAP_ANONYMOUS;
  958. xmaddr = vm_mmap(NULL, xaddr, excess - excess1,
  959. prot, flags, 0);
  960. kdebug("mmap[%d] <anon>"
  961. " ad=%lx sz=%lx pr=%x fl=%x of=0 --> %08lx",
  962. loop, xaddr, excess - excess1, prot, flags,
  963. xmaddr);
  964. if (xmaddr != xaddr)
  965. return -ENOMEM;
  966. }
  967. if (prot & PROT_WRITE && excess1 > 0) {
  968. kdebug("clear[%d] ad=%lx sz=%lx",
  969. loop, maddr + phdr->p_filesz, excess1);
  970. if (clear_user((void __user *) maddr + phdr->p_filesz,
  971. excess1))
  972. return -EFAULT;
  973. }
  974. #else
  975. if (excess > 0) {
  976. kdebug("clear[%d] ad=%lx sz=%lx",
  977. loop, maddr + phdr->p_filesz, excess);
  978. if (clear_user((void *) maddr + phdr->p_filesz, excess))
  979. return -EFAULT;
  980. }
  981. #endif
  982. if (mm) {
  983. if (phdr->p_flags & PF_X) {
  984. if (!mm->start_code) {
  985. mm->start_code = maddr;
  986. mm->end_code = maddr + phdr->p_memsz;
  987. }
  988. } else if (!mm->start_data) {
  989. mm->start_data = maddr;
  990. mm->end_data = maddr + phdr->p_memsz;
  991. }
  992. }
  993. seg++;
  994. }
  995. return 0;
  996. }
  997. /*****************************************************************************/
  998. /*
  999. * ELF-FDPIC core dumper
  1000. *
  1001. * Modelled on fs/exec.c:aout_core_dump()
  1002. * Jeremy Fitzhardinge <jeremy@sw.oz.au>
  1003. *
  1004. * Modelled on fs/binfmt_elf.c core dumper
  1005. */
  1006. #ifdef CONFIG_ELF_CORE
  1007. /*
  1008. * Decide whether a segment is worth dumping; default is yes to be
  1009. * sure (missing info is worse than too much; etc).
  1010. * Personally I'd include everything, and use the coredump limit...
  1011. *
  1012. * I think we should skip something. But I am not sure how. H.J.
  1013. */
  1014. static int maydump(struct vm_area_struct *vma, unsigned long mm_flags)
  1015. {
  1016. int dump_ok;
  1017. /* Do not dump I/O mapped devices or special mappings */
  1018. if (vma->vm_flags & (VM_IO | VM_RESERVED)) {
  1019. kdcore("%08lx: %08lx: no (IO)", vma->vm_start, vma->vm_flags);
  1020. return 0;
  1021. }
  1022. /* If we may not read the contents, don't allow us to dump
  1023. * them either. "dump_write()" can't handle it anyway.
  1024. */
  1025. if (!(vma->vm_flags & VM_READ)) {
  1026. kdcore("%08lx: %08lx: no (!read)", vma->vm_start, vma->vm_flags);
  1027. return 0;
  1028. }
  1029. /* By default, dump shared memory if mapped from an anonymous file. */
  1030. if (vma->vm_flags & VM_SHARED) {
  1031. if (vma->vm_file->f_path.dentry->d_inode->i_nlink == 0) {
  1032. dump_ok = test_bit(MMF_DUMP_ANON_SHARED, &mm_flags);
  1033. kdcore("%08lx: %08lx: %s (share)", vma->vm_start,
  1034. vma->vm_flags, dump_ok ? "yes" : "no");
  1035. return dump_ok;
  1036. }
  1037. dump_ok = test_bit(MMF_DUMP_MAPPED_SHARED, &mm_flags);
  1038. kdcore("%08lx: %08lx: %s (share)", vma->vm_start,
  1039. vma->vm_flags, dump_ok ? "yes" : "no");
  1040. return dump_ok;
  1041. }
  1042. #ifdef CONFIG_MMU
  1043. /* By default, if it hasn't been written to, don't write it out */
  1044. if (!vma->anon_vma) {
  1045. dump_ok = test_bit(MMF_DUMP_MAPPED_PRIVATE, &mm_flags);
  1046. kdcore("%08lx: %08lx: %s (!anon)", vma->vm_start,
  1047. vma->vm_flags, dump_ok ? "yes" : "no");
  1048. return dump_ok;
  1049. }
  1050. #endif
  1051. dump_ok = test_bit(MMF_DUMP_ANON_PRIVATE, &mm_flags);
  1052. kdcore("%08lx: %08lx: %s", vma->vm_start, vma->vm_flags,
  1053. dump_ok ? "yes" : "no");
  1054. return dump_ok;
  1055. }
  1056. /* An ELF note in memory */
  1057. struct memelfnote
  1058. {
  1059. const char *name;
  1060. int type;
  1061. unsigned int datasz;
  1062. void *data;
  1063. };
  1064. static int notesize(struct memelfnote *en)
  1065. {
  1066. int sz;
  1067. sz = sizeof(struct elf_note);
  1068. sz += roundup(strlen(en->name) + 1, 4);
  1069. sz += roundup(en->datasz, 4);
  1070. return sz;
  1071. }
  1072. /* #define DEBUG */
  1073. #define DUMP_WRITE(addr, nr, foffset) \
  1074. do { if (!dump_write(file, (addr), (nr))) return 0; *foffset += (nr); } while(0)
  1075. static int alignfile(struct file *file, loff_t *foffset)
  1076. {
  1077. static const char buf[4] = { 0, };
  1078. DUMP_WRITE(buf, roundup(*foffset, 4) - *foffset, foffset);
  1079. return 1;
  1080. }
  1081. static int writenote(struct memelfnote *men, struct file *file,
  1082. loff_t *foffset)
  1083. {
  1084. struct elf_note en;
  1085. en.n_namesz = strlen(men->name) + 1;
  1086. en.n_descsz = men->datasz;
  1087. en.n_type = men->type;
  1088. DUMP_WRITE(&en, sizeof(en), foffset);
  1089. DUMP_WRITE(men->name, en.n_namesz, foffset);
  1090. if (!alignfile(file, foffset))
  1091. return 0;
  1092. DUMP_WRITE(men->data, men->datasz, foffset);
  1093. if (!alignfile(file, foffset))
  1094. return 0;
  1095. return 1;
  1096. }
  1097. #undef DUMP_WRITE
  1098. static inline void fill_elf_fdpic_header(struct elfhdr *elf, int segs)
  1099. {
  1100. memcpy(elf->e_ident, ELFMAG, SELFMAG);
  1101. elf->e_ident[EI_CLASS] = ELF_CLASS;
  1102. elf->e_ident[EI_DATA] = ELF_DATA;
  1103. elf->e_ident[EI_VERSION] = EV_CURRENT;
  1104. elf->e_ident[EI_OSABI] = ELF_OSABI;
  1105. memset(elf->e_ident+EI_PAD, 0, EI_NIDENT-EI_PAD);
  1106. elf->e_type = ET_CORE;
  1107. elf->e_machine = ELF_ARCH;
  1108. elf->e_version = EV_CURRENT;
  1109. elf->e_entry = 0;
  1110. elf->e_phoff = sizeof(struct elfhdr);
  1111. elf->e_shoff = 0;
  1112. elf->e_flags = ELF_FDPIC_CORE_EFLAGS;
  1113. elf->e_ehsize = sizeof(struct elfhdr);
  1114. elf->e_phentsize = sizeof(struct elf_phdr);
  1115. elf->e_phnum = segs;
  1116. elf->e_shentsize = 0;
  1117. elf->e_shnum = 0;
  1118. elf->e_shstrndx = 0;
  1119. return;
  1120. }
  1121. static inline void fill_elf_note_phdr(struct elf_phdr *phdr, int sz, loff_t offset)
  1122. {
  1123. phdr->p_type = PT_NOTE;
  1124. phdr->p_offset = offset;
  1125. phdr->p_vaddr = 0;
  1126. phdr->p_paddr = 0;
  1127. phdr->p_filesz = sz;
  1128. phdr->p_memsz = 0;
  1129. phdr->p_flags = 0;
  1130. phdr->p_align = 0;
  1131. return;
  1132. }
  1133. static inline void fill_note(struct memelfnote *note, const char *name, int type,
  1134. unsigned int sz, void *data)
  1135. {
  1136. note->name = name;
  1137. note->type = type;
  1138. note->datasz = sz;
  1139. note->data = data;
  1140. return;
  1141. }
  1142. /*
  1143. * fill up all the fields in prstatus from the given task struct, except
  1144. * registers which need to be filled up separately.
  1145. */
  1146. static void fill_prstatus(struct elf_prstatus *prstatus,
  1147. struct task_struct *p, long signr)
  1148. {
  1149. prstatus->pr_info.si_signo = prstatus->pr_cursig = signr;
  1150. prstatus->pr_sigpend = p->pending.signal.sig[0];
  1151. prstatus->pr_sighold = p->blocked.sig[0];
  1152. rcu_read_lock();
  1153. prstatus->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
  1154. rcu_read_unlock();
  1155. prstatus->pr_pid = task_pid_vnr(p);
  1156. prstatus->pr_pgrp = task_pgrp_vnr(p);
  1157. prstatus->pr_sid = task_session_vnr(p);
  1158. if (thread_group_leader(p)) {
  1159. struct task_cputime cputime;
  1160. /*
  1161. * This is the record for the group leader. It shows the
  1162. * group-wide total, not its individual thread total.
  1163. */
  1164. thread_group_cputime(p, &cputime);
  1165. cputime_to_timeval(cputime.utime, &prstatus->pr_utime);
  1166. cputime_to_timeval(cputime.stime, &prstatus->pr_stime);
  1167. } else {
  1168. cputime_to_timeval(p->utime, &prstatus->pr_utime);
  1169. cputime_to_timeval(p->stime, &prstatus->pr_stime);
  1170. }
  1171. cputime_to_timeval(p->signal->cutime, &prstatus->pr_cutime);
  1172. cputime_to_timeval(p->signal->cstime, &prstatus->pr_cstime);
  1173. prstatus->pr_exec_fdpic_loadmap = p->mm->context.exec_fdpic_loadmap;
  1174. prstatus->pr_interp_fdpic_loadmap = p->mm->context.interp_fdpic_loadmap;
  1175. }
  1176. static int fill_psinfo(struct elf_prpsinfo *psinfo, struct task_struct *p,
  1177. struct mm_struct *mm)
  1178. {
  1179. const struct cred *cred;
  1180. unsigned int i, len;
  1181. /* first copy the parameters from user space */
  1182. memset(psinfo, 0, sizeof(struct elf_prpsinfo));
  1183. len = mm->arg_end - mm->arg_start;
  1184. if (len >= ELF_PRARGSZ)
  1185. len = ELF_PRARGSZ - 1;
  1186. if (copy_from_user(&psinfo->pr_psargs,
  1187. (const char __user *) mm->arg_start, len))
  1188. return -EFAULT;
  1189. for (i = 0; i < len; i++)
  1190. if (psinfo->pr_psargs[i] == 0)
  1191. psinfo->pr_psargs[i] = ' ';
  1192. psinfo->pr_psargs[len] = 0;
  1193. rcu_read_lock();
  1194. psinfo->pr_ppid = task_pid_vnr(rcu_dereference(p->real_parent));
  1195. rcu_read_unlock();
  1196. psinfo->pr_pid = task_pid_vnr(p);
  1197. psinfo->pr_pgrp = task_pgrp_vnr(p);
  1198. psinfo->pr_sid = task_session_vnr(p);
  1199. i = p->state ? ffz(~p->state) + 1 : 0;
  1200. psinfo->pr_state = i;
  1201. psinfo->pr_sname = (i > 5) ? '.' : "RSDTZW"[i];
  1202. psinfo->pr_zomb = psinfo->pr_sname == 'Z';
  1203. psinfo->pr_nice = task_nice(p);
  1204. psinfo->pr_flag = p->flags;
  1205. rcu_read_lock();
  1206. cred = __task_cred(p);
  1207. SET_UID(psinfo->pr_uid, from_kuid_munged(cred->user_ns, cred->uid));
  1208. SET_GID(psinfo->pr_gid, from_kgid_munged(cred->user_ns, cred->gid));
  1209. rcu_read_unlock();
  1210. strncpy(psinfo->pr_fname, p->comm, sizeof(psinfo->pr_fname));
  1211. return 0;
  1212. }
  1213. /* Here is the structure in which status of each thread is captured. */
  1214. struct elf_thread_status
  1215. {
  1216. struct list_head list;
  1217. struct elf_prstatus prstatus; /* NT_PRSTATUS */
  1218. elf_fpregset_t fpu; /* NT_PRFPREG */
  1219. struct task_struct *thread;
  1220. #ifdef ELF_CORE_COPY_XFPREGS
  1221. elf_fpxregset_t xfpu; /* ELF_CORE_XFPREG_TYPE */
  1222. #endif
  1223. struct memelfnote notes[3];
  1224. int num_notes;
  1225. };
  1226. /*
  1227. * In order to add the specific thread information for the elf file format,
  1228. * we need to keep a linked list of every thread's pr_status and then create
  1229. * a single section for them in the final core file.
  1230. */
  1231. static int elf_dump_thread_status(long signr, struct elf_thread_status *t)
  1232. {
  1233. struct task_struct *p = t->thread;
  1234. int sz = 0;
  1235. t->num_notes = 0;
  1236. fill_prstatus(&t->prstatus, p, signr);
  1237. elf_core_copy_task_regs(p, &t->prstatus.pr_reg);
  1238. fill_note(&t->notes[0], "CORE", NT_PRSTATUS, sizeof(t->prstatus),
  1239. &t->prstatus);
  1240. t->num_notes++;
  1241. sz += notesize(&t->notes[0]);
  1242. t->prstatus.pr_fpvalid = elf_core_copy_task_fpregs(p, NULL, &t->fpu);
  1243. if (t->prstatus.pr_fpvalid) {
  1244. fill_note(&t->notes[1], "CORE", NT_PRFPREG, sizeof(t->fpu),
  1245. &t->fpu);
  1246. t->num_notes++;
  1247. sz += notesize(&t->notes[1]);
  1248. }
  1249. #ifdef ELF_CORE_COPY_XFPREGS
  1250. if (elf_core_copy_task_xfpregs(p, &t->xfpu)) {
  1251. fill_note(&t->notes[2], "LINUX", ELF_CORE_XFPREG_TYPE,
  1252. sizeof(t->xfpu), &t->xfpu);
  1253. t->num_notes++;
  1254. sz += notesize(&t->notes[2]);
  1255. }
  1256. #endif
  1257. return sz;
  1258. }
  1259. static void fill_extnum_info(struct elfhdr *elf, struct elf_shdr *shdr4extnum,
  1260. elf_addr_t e_shoff, int segs)
  1261. {
  1262. elf->e_shoff = e_shoff;
  1263. elf->e_shentsize = sizeof(*shdr4extnum);
  1264. elf->e_shnum = 1;
  1265. elf->e_shstrndx = SHN_UNDEF;
  1266. memset(shdr4extnum, 0, sizeof(*shdr4extnum));
  1267. shdr4extnum->sh_type = SHT_NULL;
  1268. shdr4extnum->sh_size = elf->e_shnum;
  1269. shdr4extnum->sh_link = elf->e_shstrndx;
  1270. shdr4extnum->sh_info = segs;
  1271. }
  1272. /*
  1273. * dump the segments for an MMU process
  1274. */
  1275. #ifdef CONFIG_MMU
  1276. static int elf_fdpic_dump_segments(struct file *file, size_t *size,
  1277. unsigned long *limit, unsigned long mm_flags)
  1278. {
  1279. struct vm_area_struct *vma;
  1280. int err = 0;
  1281. for (vma = current->mm->mmap; vma; vma = vma->vm_next) {
  1282. unsigned long addr;
  1283. if (!maydump(vma, mm_flags))
  1284. continue;
  1285. for (addr = vma->vm_start; addr < vma->vm_end;
  1286. addr += PAGE_SIZE) {
  1287. struct page *page = get_dump_page(addr);
  1288. if (page) {
  1289. void *kaddr = kmap(page);
  1290. *size += PAGE_SIZE;
  1291. if (*size > *limit)
  1292. err = -EFBIG;
  1293. else if (!dump_write(file, kaddr, PAGE_SIZE))
  1294. err = -EIO;
  1295. kunmap(page);
  1296. page_cache_release(page);
  1297. } else if (!dump_seek(file, PAGE_SIZE))
  1298. err = -EFBIG;
  1299. if (err)
  1300. goto out;
  1301. }
  1302. }
  1303. out:
  1304. return err;
  1305. }
  1306. #endif
  1307. /*
  1308. * dump the segments for a NOMMU process
  1309. */
  1310. #ifndef CONFIG_MMU
  1311. static int elf_fdpic_dump_segments(struct file *file, size_t *size,
  1312. unsigned long *limit, unsigned long mm_flags)
  1313. {
  1314. struct vm_area_struct *vma;
  1315. for (vma = current->mm->mmap; vma; vma = vma->vm_next) {
  1316. if (!maydump(vma, mm_flags))
  1317. continue;
  1318. if ((*size += PAGE_SIZE) > *limit)
  1319. return -EFBIG;
  1320. if (!dump_write(file, (void *) vma->vm_start,
  1321. vma->vm_end - vma->vm_start))
  1322. return -EIO;
  1323. }
  1324. return 0;
  1325. }
  1326. #endif
  1327. static size_t elf_core_vma_data_size(unsigned long mm_flags)
  1328. {
  1329. struct vm_area_struct *vma;
  1330. size_t size = 0;
  1331. for (vma = current->mm->mmap; vma; vma = vma->vm_next)
  1332. if (maydump(vma, mm_flags))
  1333. size += vma->vm_end - vma->vm_start;
  1334. return size;
  1335. }
  1336. /*
  1337. * Actual dumper
  1338. *
  1339. * This is a two-pass process; first we find the offsets of the bits,
  1340. * and then they are actually written out. If we run out of core limit
  1341. * we just truncate.
  1342. */
  1343. static int elf_fdpic_core_dump(struct coredump_params *cprm)
  1344. {
  1345. #define NUM_NOTES 6
  1346. int has_dumped = 0;
  1347. mm_segment_t fs;
  1348. int segs;
  1349. size_t size = 0;
  1350. int i;
  1351. struct vm_area_struct *vma;
  1352. struct elfhdr *elf = NULL;
  1353. loff_t offset = 0, dataoff, foffset;
  1354. int numnote;
  1355. struct memelfnote *notes = NULL;
  1356. struct elf_prstatus *prstatus = NULL; /* NT_PRSTATUS */
  1357. struct elf_prpsinfo *psinfo = NULL; /* NT_PRPSINFO */
  1358. LIST_HEAD(thread_list);
  1359. struct list_head *t;
  1360. elf_fpregset_t *fpu = NULL;
  1361. #ifdef ELF_CORE_COPY_XFPREGS
  1362. elf_fpxregset_t *xfpu = NULL;
  1363. #endif
  1364. int thread_status_size = 0;
  1365. elf_addr_t *auxv;
  1366. struct elf_phdr *phdr4note = NULL;
  1367. struct elf_shdr *shdr4extnum = NULL;
  1368. Elf_Half e_phnum;
  1369. elf_addr_t e_shoff;
  1370. /*
  1371. * We no longer stop all VM operations.
  1372. *
  1373. * This is because those proceses that could possibly change map_count
  1374. * or the mmap / vma pages are now blocked in do_exit on current
  1375. * finishing this core dump.
  1376. *
  1377. * Only ptrace can touch these memory addresses, but it doesn't change
  1378. * the map_count or the pages allocated. So no possibility of crashing
  1379. * exists while dumping the mm->vm_next areas to the core file.
  1380. */
  1381. /* alloc memory for large data structures: too large to be on stack */
  1382. elf = kmalloc(sizeof(*elf), GFP_KERNEL);
  1383. if (!elf)
  1384. goto cleanup;
  1385. prstatus = kzalloc(sizeof(*prstatus), GFP_KERNEL);
  1386. if (!prstatus)
  1387. goto cleanup;
  1388. psinfo = kmalloc(sizeof(*psinfo), GFP_KERNEL);
  1389. if (!psinfo)
  1390. goto cleanup;
  1391. notes = kmalloc(NUM_NOTES * sizeof(struct memelfnote), GFP_KERNEL);
  1392. if (!notes)
  1393. goto cleanup;
  1394. fpu = kmalloc(sizeof(*fpu), GFP_KERNEL);
  1395. if (!fpu)
  1396. goto cleanup;
  1397. #ifdef ELF_CORE_COPY_XFPREGS
  1398. xfpu = kmalloc(sizeof(*xfpu), GFP_KERNEL);
  1399. if (!xfpu)
  1400. goto cleanup;
  1401. #endif
  1402. if (cprm->signr) {
  1403. struct core_thread *ct;
  1404. struct elf_thread_status *tmp;
  1405. for (ct = current->mm->core_state->dumper.next;
  1406. ct; ct = ct->next) {
  1407. tmp = kzalloc(sizeof(*tmp), GFP_KERNEL);
  1408. if (!tmp)
  1409. goto cleanup;
  1410. tmp->thread = ct->task;
  1411. list_add(&tmp->list, &thread_list);
  1412. }
  1413. list_for_each(t, &thread_list) {
  1414. struct elf_thread_status *tmp;
  1415. int sz;
  1416. tmp = list_entry(t, struct elf_thread_status, list);
  1417. sz = elf_dump_thread_status(cprm->signr, tmp);
  1418. thread_status_size += sz;
  1419. }
  1420. }
  1421. /* now collect the dump for the current */
  1422. fill_prstatus(prstatus, current, cprm->signr);
  1423. elf_core_copy_regs(&prstatus->pr_reg, cprm->regs);
  1424. segs = current->mm->map_count;
  1425. segs += elf_core_extra_phdrs();
  1426. /* for notes section */
  1427. segs++;
  1428. /* If segs > PN_XNUM(0xffff), then e_phnum overflows. To avoid
  1429. * this, kernel supports extended numbering. Have a look at
  1430. * include/linux/elf.h for further information. */
  1431. e_phnum = segs > PN_XNUM ? PN_XNUM : segs;
  1432. /* Set up header */
  1433. fill_elf_fdpic_header(elf, e_phnum);
  1434. has_dumped = 1;
  1435. current->flags |= PF_DUMPCORE;
  1436. /*
  1437. * Set up the notes in similar form to SVR4 core dumps made
  1438. * with info from their /proc.
  1439. */
  1440. fill_note(notes + 0, "CORE", NT_PRSTATUS, sizeof(*prstatus), prstatus);
  1441. fill_psinfo(psinfo, current->group_leader, current->mm);
  1442. fill_note(notes + 1, "CORE", NT_PRPSINFO, sizeof(*psinfo), psinfo);
  1443. numnote = 2;
  1444. auxv = (elf_addr_t *) current->mm->saved_auxv;
  1445. i = 0;
  1446. do
  1447. i += 2;
  1448. while (auxv[i - 2] != AT_NULL);
  1449. fill_note(&notes[numnote++], "CORE", NT_AUXV,
  1450. i * sizeof(elf_addr_t), auxv);
  1451. /* Try to dump the FPU. */
  1452. if ((prstatus->pr_fpvalid =
  1453. elf_core_copy_task_fpregs(current, cprm->regs, fpu)))
  1454. fill_note(notes + numnote++,
  1455. "CORE", NT_PRFPREG, sizeof(*fpu), fpu);
  1456. #ifdef ELF_CORE_COPY_XFPREGS
  1457. if (elf_core_copy_task_xfpregs(current, xfpu))
  1458. fill_note(notes + numnote++,
  1459. "LINUX", ELF_CORE_XFPREG_TYPE, sizeof(*xfpu), xfpu);
  1460. #endif
  1461. fs = get_fs();
  1462. set_fs(KERNEL_DS);
  1463. offset += sizeof(*elf); /* Elf header */
  1464. offset += segs * sizeof(struct elf_phdr); /* Program headers */
  1465. foffset = offset;
  1466. /* Write notes phdr entry */
  1467. {
  1468. int sz = 0;
  1469. for (i = 0; i < numnote; i++)
  1470. sz += notesize(notes + i);
  1471. sz += thread_status_size;
  1472. phdr4note = kmalloc(sizeof(*phdr4note), GFP_KERNEL);
  1473. if (!phdr4note)
  1474. goto end_coredump;
  1475. fill_elf_note_phdr(phdr4note, sz, offset);
  1476. offset += sz;
  1477. }
  1478. /* Page-align dumped data */
  1479. dataoff = offset = roundup(offset, ELF_EXEC_PAGESIZE);
  1480. offset += elf_core_vma_data_size(cprm->mm_flags);
  1481. offset += elf_core_extra_data_size();
  1482. e_shoff = offset;
  1483. if (e_phnum == PN_XNUM) {
  1484. shdr4extnum = kmalloc(sizeof(*shdr4extnum), GFP_KERNEL);
  1485. if (!shdr4extnum)
  1486. goto end_coredump;
  1487. fill_extnum_info(elf, shdr4extnum, e_shoff, segs);
  1488. }
  1489. offset = dataoff;
  1490. size += sizeof(*elf);
  1491. if (size > cprm->limit || !dump_write(cprm->file, elf, sizeof(*elf)))
  1492. goto end_coredump;
  1493. size += sizeof(*phdr4note);
  1494. if (size > cprm->limit
  1495. || !dump_write(cprm->file, phdr4note, sizeof(*phdr4note)))
  1496. goto end_coredump;
  1497. /* write program headers for segments dump */
  1498. for (vma = current->mm->mmap; vma; vma = vma->vm_next) {
  1499. struct elf_phdr phdr;
  1500. size_t sz;
  1501. sz = vma->vm_end - vma->vm_start;
  1502. phdr.p_type = PT_LOAD;
  1503. phdr.p_offset = offset;
  1504. phdr.p_vaddr = vma->vm_start;
  1505. phdr.p_paddr = 0;
  1506. phdr.p_filesz = maydump(vma, cprm->mm_flags) ? sz : 0;
  1507. phdr.p_memsz = sz;
  1508. offset += phdr.p_filesz;
  1509. phdr.p_flags = vma->vm_flags & VM_READ ? PF_R : 0;
  1510. if (vma->vm_flags & VM_WRITE)
  1511. phdr.p_flags |= PF_W;
  1512. if (vma->vm_flags & VM_EXEC)
  1513. phdr.p_flags |= PF_X;
  1514. phdr.p_align = ELF_EXEC_PAGESIZE;
  1515. size += sizeof(phdr);
  1516. if (size > cprm->limit
  1517. || !dump_write(cprm->file, &phdr, sizeof(phdr)))
  1518. goto end_coredump;
  1519. }
  1520. if (!elf_core_write_extra_phdrs(cprm->file, offset, &size, cprm->limit))
  1521. goto end_coredump;
  1522. /* write out the notes section */
  1523. for (i = 0; i < numnote; i++)
  1524. if (!writenote(notes + i, cprm->file, &foffset))
  1525. goto end_coredump;
  1526. /* write out the thread status notes section */
  1527. list_for_each(t, &thread_list) {
  1528. struct elf_thread_status *tmp =
  1529. list_entry(t, struct elf_thread_status, list);
  1530. for (i = 0; i < tmp->num_notes; i++)
  1531. if (!writenote(&tmp->notes[i], cprm->file, &foffset))
  1532. goto end_coredump;
  1533. }
  1534. if (!dump_seek(cprm->file, dataoff - foffset))
  1535. goto end_coredump;
  1536. if (elf_fdpic_dump_segments(cprm->file, &size, &cprm->limit,
  1537. cprm->mm_flags) < 0)
  1538. goto end_coredump;
  1539. if (!elf_core_write_extra_data(cprm->file, &size, cprm->limit))
  1540. goto end_coredump;
  1541. if (e_phnum == PN_XNUM) {
  1542. size += sizeof(*shdr4extnum);
  1543. if (size > cprm->limit
  1544. || !dump_write(cprm->file, shdr4extnum,
  1545. sizeof(*shdr4extnum)))
  1546. goto end_coredump;
  1547. }
  1548. if (cprm->file->f_pos != offset) {
  1549. /* Sanity check */
  1550. printk(KERN_WARNING
  1551. "elf_core_dump: file->f_pos (%lld) != offset (%lld)\n",
  1552. cprm->file->f_pos, offset);
  1553. }
  1554. end_coredump:
  1555. set_fs(fs);
  1556. cleanup:
  1557. while (!list_empty(&thread_list)) {
  1558. struct list_head *tmp = thread_list.next;
  1559. list_del(tmp);
  1560. kfree(list_entry(tmp, struct elf_thread_status, list));
  1561. }
  1562. kfree(phdr4note);
  1563. kfree(elf);
  1564. kfree(prstatus);
  1565. kfree(psinfo);
  1566. kfree(notes);
  1567. kfree(fpu);
  1568. kfree(shdr4extnum);
  1569. #ifdef ELF_CORE_COPY_XFPREGS
  1570. kfree(xfpu);
  1571. #endif
  1572. return has_dumped;
  1573. #undef NUM_NOTES
  1574. }
  1575. #endif /* CONFIG_ELF_CORE */