Changeset 5baf209 in mainline
- Timestamp:
- 2011-07-23T12:37:16Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 90b8d58
- Parents:
- a701812
- Location:
- uspace
- Files:
-
- 11 added
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/app/taskdump/elf_core.c
ra701812 r5baf209 1 1 /* 2 * Copyright (c) 201 0Jiri Svoboda2 * Copyright (c) 2011 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 38 38 * Looking at core files produced by Linux, these don't have section headers, 39 39 * only program headers, although objdump shows them as having sections. 40 * Basically at the beginning there should be a note segment (which we 41 * do not write) and one loadable segment per memory area (which we do write). 42 * 43 * The note segment probably contains register state, etc. -- we don't 44 * deal with these yet. Nevertheless you can use these core files with 45 * objdump or gdb. 46 */ 47 40 * Basically at the beginning there should be a note segment followed 41 * by one loadable segment per memory area. 42 * 43 * The note segment contains a series of records with register state, 44 * process info etc. We only write one record NT_PRSTATUS which contains 45 * process/register state (anything which is not register state we fill 46 * with zeroes). 47 */ 48 49 #include <align.h> 50 #include <elf/elf.h> 51 #include <elf/elf_linux.h> 48 52 #include <stdio.h> 49 53 #include <stdlib.h> … … 58 62 #include <udebug.h> 59 63 #include <macros.h> 60 61 #include <elf.h> 62 #include " include/elf_core.h"64 #include <libarch/istate.h> 65 66 #include "elf_core.h" 63 67 64 68 static off64_t align_foff_up(off64_t, uintptr_t, size_t); 65 static int write_all(int, void *, size_t); 69 static int write_all(int, const void *, size_t); 70 static int align_pos(int, size_t); 66 71 static int write_mem_area(int, as_area_info_t *, async_sess_t *); 67 72 … … 83 88 */ 84 89 int elf_core_save(const char *file_name, as_area_info_t *ainfo, unsigned int n, 85 async_sess_t *sess )90 async_sess_t *sess, istate_t *istate) 86 91 { 87 92 elf_header_t elf_hdr; … … 90 95 elf_word flags; 91 96 elf_segment_header_t *p_hdr; 97 elf_prstatus_t pr_status; 98 elf_note_t note; 99 size_t word_size; 92 100 93 101 int fd; … … 95 103 unsigned int i; 96 104 97 n_ph = n; 98 99 p_hdr = malloc(sizeof(elf_segment_header_t) * n); 105 #ifdef __32_BITS__ 106 word_size = 4; 107 #endif 108 #ifdef __64_BITS__ 109 word_size = 8; 110 #endif 111 memset(&pr_status, 0, sizeof(pr_status)); 112 istate_to_elf_regs(istate, &pr_status.regs); 113 114 n_ph = n + 1; 115 116 p_hdr = malloc(sizeof(elf_segment_header_t) * n_ph); 100 117 if (p_hdr == NULL) { 101 118 printf("Failed allocating memory.\n"); … … 115 132 * ELF header 116 133 * program headers 134 * note segment 117 135 * repeat: 118 136 * (pad for alignment) 119 * segment data137 * core segment 120 138 * end repeat 121 139 */ … … 147 165 foff = elf_hdr.e_phoff + n_ph * sizeof(elf_segment_header_t); 148 166 149 for (i = 1; i <= n; ++i) { 150 foff = align_foff_up(foff, ainfo[i - 1].start_addr, PAGE_SIZE); 167 memset(&p_hdr[0], 0, sizeof(p_hdr[0])); 168 p_hdr[0].p_type = PT_NOTE; 169 p_hdr[0].p_offset = foff; 170 p_hdr[0].p_vaddr = 0; 171 p_hdr[0].p_paddr = 0; 172 p_hdr[0].p_filesz = sizeof(elf_note_t) 173 + ALIGN_UP((str_size("CORE") + 1), word_size) 174 + ALIGN_UP(sizeof(elf_prstatus_t), word_size); 175 p_hdr[0].p_memsz = 0; 176 p_hdr[0].p_flags = 0; 177 p_hdr[0].p_align = 1; 178 179 foff += p_hdr[0].p_filesz; 180 181 for (i = 0; i < n; ++i) { 182 foff = align_foff_up(foff, ainfo[i].start_addr, PAGE_SIZE); 151 183 152 184 flags = 0; 153 if (ainfo[i - 1].flags & AS_AREA_READ)185 if (ainfo[i].flags & AS_AREA_READ) 154 186 flags |= PF_R; 155 if (ainfo[i - 1].flags & AS_AREA_WRITE)187 if (ainfo[i].flags & AS_AREA_WRITE) 156 188 flags |= PF_W; 157 if (ainfo[i - 1].flags & AS_AREA_EXEC)189 if (ainfo[i].flags & AS_AREA_EXEC) 158 190 flags |= PF_X; 159 191 160 memset(&p_hdr[i - 1], 0, sizeof(p_hdr[i -1]));161 p_hdr[i -1].p_type = PT_LOAD;162 p_hdr[i -1].p_offset = foff;163 p_hdr[i - 1].p_vaddr = ainfo[i - 1].start_addr;164 p_hdr[i -1].p_paddr = 0;165 p_hdr[i - 1].p_filesz = ainfo[i - 1].size;166 p_hdr[i - 1].p_memsz = ainfo[i - 1].size;167 p_hdr[i -1].p_flags = flags;168 p_hdr[i -1].p_align = PAGE_SIZE;169 170 foff += ainfo[i - 1].size;192 memset(&p_hdr[i + 1], 0, sizeof(p_hdr[i + 1])); 193 p_hdr[i + 1].p_type = PT_LOAD; 194 p_hdr[i + 1].p_offset = foff; 195 p_hdr[i + 1].p_vaddr = ainfo[i].start_addr; 196 p_hdr[i + 1].p_paddr = 0; 197 p_hdr[i + 1].p_filesz = ainfo[i].size; 198 p_hdr[i + 1].p_memsz = ainfo[i].size; 199 p_hdr[i + 1].p_flags = flags; 200 p_hdr[i + 1].p_align = PAGE_SIZE; 201 202 foff += ainfo[i].size; 171 203 } 172 204 … … 187 219 } 188 220 189 for (i = 0; i < n_ph; ++i) { 221 if (lseek(fd, p_hdr[0].p_offset, SEEK_SET) == (off64_t) -1) { 222 printf("Failed writing memory data.\n"); 223 free(p_hdr); 224 return EIO; 225 } 226 227 /* 228 * Write note header 229 */ 230 note.namesz = str_size("CORE") + 1; 231 note.descsz = sizeof(elf_prstatus_t); 232 note.type = NT_PRSTATUS; 233 234 rc = write_all(fd, ¬e, sizeof(elf_note_t)); 235 if (rc != EOK) { 236 printf("Failed writing note header.\n"); 237 free(p_hdr); 238 return EIO; 239 } 240 241 rc = write_all(fd, "CORE", note.namesz); 242 if (rc != EOK) { 243 printf("Failed writing note header.\n"); 244 free(p_hdr); 245 return EIO; 246 } 247 248 rc = align_pos(fd, word_size); 249 if (rc != EOK) { 250 printf("Failed writing note header.\n"); 251 free(p_hdr); 252 return EIO; 253 } 254 255 rc = write_all(fd, &pr_status, sizeof(elf_prstatus_t)); 256 if (rc != EOK) { 257 printf("Failed writing register data.\n"); 258 free(p_hdr); 259 return EIO; 260 } 261 262 for (i = 1; i < n_ph; ++i) { 190 263 if (lseek(fd, p_hdr[i].p_offset, SEEK_SET) == (off64_t) -1) { 191 264 printf("Failed writing memory data.\n"); … … 193 266 return EIO; 194 267 } 195 if (write_mem_area(fd, &ainfo[i ], sess) != EOK) {268 if (write_mem_area(fd, &ainfo[i - 1], sess) != EOK) { 196 269 printf("Failed writing memory data.\n"); 197 270 free(p_hdr); … … 210 283 off64_t rva = vaddr % page_size; 211 284 off64_t rfo = foff % page_size; 212 285 213 286 if (rva >= rfo) 214 287 return (foff + (rva - rfo)); 215 288 216 289 return (foff + (page_size + (rva - rfo))); 217 290 } … … 268 341 * failed. 269 342 */ 270 static int write_all(int fd, void *data, size_t len)343 static int write_all(int fd, const void *data, size_t len) 271 344 { 272 345 int cnt = 0; … … 287 360 } 288 361 362 static int align_pos(int fd, size_t align) 363 { 364 off64_t cur_pos; 365 size_t rem, adv; 366 367 cur_pos = lseek(fd, 0, SEEK_CUR); 368 if (cur_pos < 0) 369 return -1; 370 371 rem = cur_pos % align; 372 adv = align - rem; 373 374 cur_pos = lseek(fd, adv, SEEK_CUR); 375 if (cur_pos < 0) 376 return -1; 377 378 return EOK; 379 } 289 380 290 381 /** @} -
uspace/app/taskdump/include/elf_core.h
ra701812 r5baf209 37 37 38 38 #include <async.h> 39 #include <elf/elf_linux.h> 40 #include <libarch/istate.h> 39 41 40 42 extern int elf_core_save(const char *, as_area_info_t *, unsigned int, 41 async_sess_t * );43 async_sess_t *, istate_t *); 42 44 43 45 #endif -
uspace/app/taskdump/include/symtab.h
ra701812 r5baf209 36 36 #define SYMTAB_H_ 37 37 38 #include <elf/elf.h> 38 39 #include <sys/types.h> 39 #include <elf.h>40 40 41 41 typedef struct { -
uspace/app/taskdump/symtab.c
ra701812 r5baf209 36 36 */ 37 37 38 #include <elf/elf.h> 38 39 #include <stdio.h> 39 40 #include <stdlib.h> … … 43 44 #include <fcntl.h> 44 45 45 #include <elf.h>46 46 #include "include/symtab.h" 47 47 -
uspace/app/taskdump/taskdump.c
ra701812 r5baf209 34 34 35 35 #include <async.h> 36 #include <elf/elf_linux.h> 36 37 #include <stdio.h> 37 38 #include <stdlib.h> … … 72 73 static char *get_app_task_name(void); 73 74 static char *fmt_sym_address(uintptr_t addr); 75 76 static istate_t reg_state; 74 77 75 78 int main(int argc, char *argv[]) … … 293 296 if (write_core_file) { 294 297 printf("Writing core file '%s'\n", core_file_name); 295 rc = elf_core_save(core_file_name, ainfo_buf, n_areas, sess); 298 299 rc = elf_core_save(core_file_name, ainfo_buf, n_areas, sess, 300 ®_state); 301 296 302 if (rc != EOK) { 297 303 printf("Failed writing core file.\n"); … … 321 327 pc = istate_get_pc(&istate); 322 328 fp = istate_get_fp(&istate); 329 330 /* Save register state for dumping to core file later. */ 331 reg_state = istate; 323 332 324 333 sym_pc = fmt_sym_address(pc); -
uspace/lib/c/include/elf/elf.h
ra701812 r5baf209 27 27 */ 28 28 29 /** @addtogroup generic 29 /** @addtogroup generic 30 30 * @{ 31 31 */ … … 33 33 */ 34 34 35 #ifndef ELF_H_36 #define ELF_H_35 #ifndef LIBC_ELF_H_ 36 #define LIBC_ELF_H_ 37 37 38 38 #include <arch/elf.h> … … 44 44 #define EV_CURRENT 1 45 45 46 /** 47 * ELF types 46 /** 47 * ELF types 48 48 */ 49 49 #define ET_NONE 0 /* No type */ … … 329 329 }; 330 330 331 #ifdef __32_BITS__ 331 /* 332 * ELF note segment entry 333 */ 334 struct elf32_note { 335 elf_word namesz; 336 elf_word descsz; 337 elf_word type; 338 }; 339 struct elf64_note { 340 elf_xword namesz; 341 elf_xword descsz; 342 elf_xword type; 343 }; 344 345 #ifdef __32_BITS__ 332 346 typedef struct elf32_header elf_header_t; 333 347 typedef struct elf32_segment_header elf_segment_header_t; 334 348 typedef struct elf32_section_header elf_section_header_t; 335 349 typedef struct elf32_symbol elf_symbol_t; 350 typedef struct elf32_note elf_note_t; 336 351 #endif 337 352 #ifdef __64_BITS__ … … 340 355 typedef struct elf64_section_header elf_section_header_t; 341 356 typedef struct elf64_symbol elf_symbol_t; 357 typedef struct elf64_note elf_note_t; 342 358 #endif 343 359 360 /* 361 * Note types are not defined by the standard. These are the ones used 362 * by SVr4 derivatives. 363 */ 364 #define NT_PRSTATUS 1 365 344 366 extern char *elf_error(unsigned int rc); 345 367
Note:
See TracChangeset
for help on using the changeset viewer.