| tag | line | file | source code |
| elf_ex | 265 | ibcs/binfmt_elf.c | struct elfhdr elf_ex; |
| elf_ex | 288 | ibcs/binfmt_elf.c | elf_ex = *((struct elfhdr *) bprm->buf); /* exec-header */ |
| elf_ex | 290 | ibcs/binfmt_elf.c | if (elf_ex.e_ident[0] != 0x7f || |
| elf_ex | 291 | ibcs/binfmt_elf.c | strncmp(&elf_ex.e_ident[1], "ELF",3) != 0) |
| elf_ex | 296 | ibcs/binfmt_elf.c | if(elf_ex.e_type != ET_EXEC || |
| elf_ex | 297 | ibcs/binfmt_elf.c | (elf_ex.e_machine != EM_386 && elf_ex.e_machine != EM_486) || |
| elf_ex | 305 | ibcs/binfmt_elf.c | elf_phdata = (struct elf_phdr *) kmalloc(elf_ex.e_phentsize * |
| elf_ex | 306 | ibcs/binfmt_elf.c | elf_ex.e_phnum, GFP_KERNEL); |
| elf_ex | 310 | ibcs/binfmt_elf.c | retval = read_exec(bprm->inode, elf_ex.e_phoff, (char *) elf_phdata, |
| elf_ex | 311 | ibcs/binfmt_elf.c | elf_ex.e_phentsize * elf_ex.e_phnum); |
| elf_ex | 341 | ibcs/binfmt_elf.c | for(i=0;i < elf_ex.e_phnum; i++){ |
| elf_ex | 432 | ibcs/binfmt_elf.c | elf_entry = (unsigned int) elf_ex.e_entry; |
| elf_ex | 449 | ibcs/binfmt_elf.c | for(i=0;i < elf_ex.e_phnum; i++){ |
| elf_ex | 529 | ibcs/binfmt_elf.c | (interpreter_type == INTERPRETER_ELF ? &elf_ex : NULL), |
| elf_ex | 568 | ibcs/binfmt_elf.c | struct elfhdr elf_ex; |
| elf_ex | 584 | ibcs/binfmt_elf.c | if (file->f_op->read(inode, file, (char *) &elf_ex, sizeof(elf_ex)) != sizeof(elf_ex)) { |
| elf_ex | 590 | ibcs/binfmt_elf.c | if (elf_ex.e_ident[0] != 0x7f || |
| elf_ex | 591 | ibcs/binfmt_elf.c | strncmp(&elf_ex.e_ident[1], "ELF",3) != 0) |
| elf_ex | 595 | ibcs/binfmt_elf.c | if(elf_ex.e_type != ET_EXEC || elf_ex.e_phnum > 2 || |
| elf_ex | 596 | ibcs/binfmt_elf.c | (elf_ex.e_machine != EM_386 && elf_ex.e_machine != EM_486) || |
| elf_ex | 604 | ibcs/binfmt_elf.c | if(sizeof(struct elf_phdr) * elf_ex.e_phnum > PAGE_SIZE) |
| elf_ex | 608 | ibcs/binfmt_elf.c | kmalloc(sizeof(struct elf_phdr) * elf_ex.e_phnum, GFP_KERNEL); |
| elf_ex | 612 | ibcs/binfmt_elf.c | retval = read_exec(inode, elf_ex.e_phoff, (char *) elf_phdata, |
| elf_ex | 613 | ibcs/binfmt_elf.c | sizeof(struct elf_phdr) * elf_ex.e_phnum); |
| elf_ex | 617 | ibcs/binfmt_elf.c | for(i=0; i<elf_ex.e_phnum; i++) |