| tag | line | file | source code |
| elf_ex | 264 | ibcs/binfmt_elf.c | struct elfhdr elf_ex; |
| elf_ex | 287 | ibcs/binfmt_elf.c | elf_ex = *((struct elfhdr *) bprm->buf); /* exec-header */ |
| elf_ex | 289 | ibcs/binfmt_elf.c | if (elf_ex.e_ident[0] != 0x7f || |
| elf_ex | 290 | ibcs/binfmt_elf.c | strncmp(&elf_ex.e_ident[1], "ELF",3) != 0) |
| elf_ex | 295 | ibcs/binfmt_elf.c | if(elf_ex.e_type != ET_EXEC || |
| elf_ex | 296 | ibcs/binfmt_elf.c | (elf_ex.e_machine != EM_386 && elf_ex.e_machine != EM_486) || |
| elf_ex | 304 | ibcs/binfmt_elf.c | elf_phdata = (struct elf_phdr *) kmalloc(elf_ex.e_phentsize * |
| elf_ex | 305 | ibcs/binfmt_elf.c | elf_ex.e_phnum, GFP_KERNEL); |
| elf_ex | 309 | ibcs/binfmt_elf.c | retval = read_exec(bprm->inode, elf_ex.e_phoff, (char *) elf_phdata, |
| elf_ex | 310 | ibcs/binfmt_elf.c | elf_ex.e_phentsize * elf_ex.e_phnum); |
| elf_ex | 340 | ibcs/binfmt_elf.c | for(i=0;i < elf_ex.e_phnum; i++){ |
| elf_ex | 431 | ibcs/binfmt_elf.c | elf_entry = (unsigned int) elf_ex.e_entry; |
| elf_ex | 448 | ibcs/binfmt_elf.c | for(i=0;i < elf_ex.e_phnum; i++){ |
| elf_ex | 528 | ibcs/binfmt_elf.c | (interpreter_type == INTERPRETER_ELF ? &elf_ex : NULL), |
| elf_ex | 567 | ibcs/binfmt_elf.c | struct elfhdr elf_ex; |
| elf_ex | 583 | ibcs/binfmt_elf.c | if (file->f_op->read(inode, file, (char *) &elf_ex, sizeof(elf_ex)) != sizeof(elf_ex)) { |
| elf_ex | 589 | ibcs/binfmt_elf.c | if (elf_ex.e_ident[0] != 0x7f || |
| elf_ex | 590 | ibcs/binfmt_elf.c | strncmp(&elf_ex.e_ident[1], "ELF",3) != 0) |
| elf_ex | 594 | ibcs/binfmt_elf.c | if(elf_ex.e_type != ET_EXEC || elf_ex.e_phnum > 2 || |
| elf_ex | 595 | ibcs/binfmt_elf.c | (elf_ex.e_machine != EM_386 && elf_ex.e_machine != EM_486) || |
| elf_ex | 603 | ibcs/binfmt_elf.c | if(sizeof(struct elf_phdr) * elf_ex.e_phnum > PAGE_SIZE) |
| elf_ex | 607 | ibcs/binfmt_elf.c | kmalloc(sizeof(struct elf_phdr) * elf_ex.e_phnum, GFP_KERNEL); |
| elf_ex | 611 | ibcs/binfmt_elf.c | retval = read_exec(inode, elf_ex.e_phoff, (char *) elf_phdata, |
| elf_ex | 612 | ibcs/binfmt_elf.c | sizeof(struct elf_phdr) * elf_ex.e_phnum); |
| elf_ex | 616 | ibcs/binfmt_elf.c | for(i=0; i<elf_ex.e_phnum; i++) |