{
        struct section *sec;
 
-       list_for_each_entry(sec, &elf->sections, list)
+       hash_for_each_possible(elf->section_hash, sec, hash, idx)
                if (sec->idx == idx)
                        return sec;
 
                INIT_LIST_HEAD(&sec->rela_list);
                hash_init(sec->rela_hash);
 
-               list_add_tail(&sec->list, &elf->sections);
-
                s = elf_getscn(elf->elf, i);
                if (!s) {
                        WARN_ELF("elf_getscn");
                        }
                }
                sec->len = sec->sh.sh_size;
+
+               list_add_tail(&sec->list, &elf->sections);
+               hash_add(elf->section_hash, &sec->hash, sec->idx);
        }
 
        if (stats)
        memset(elf, 0, sizeof(*elf));
 
        hash_init(elf->symbol_hash);
+       hash_init(elf->section_hash);
        INIT_LIST_HEAD(&elf->sections);
 
        elf->fd = open(name, flags);
        INIT_LIST_HEAD(&sec->rela_list);
        hash_init(sec->rela_hash);
 
-       list_add_tail(&sec->list, &elf->sections);
-
        s = elf_newscn(elf->elf);
        if (!s) {
                WARN_ELF("elf_newscn");
        shstrtab->len += strlen(name) + 1;
        shstrtab->changed = true;
 
+       list_add_tail(&sec->list, &elf->sections);
+       hash_add(elf->section_hash, &sec->hash, sec->idx);
+
        return sec;
 }
 
 
 
 struct section {
        struct list_head list;
+       struct hlist_node hash;
        GElf_Shdr sh;
        struct list_head symbol_list;
        struct list_head rela_list;
        char *name;
        struct list_head sections;
        DECLARE_HASHTABLE(symbol_hash, 20);
+       DECLARE_HASHTABLE(section_hash, 16);
 };