123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930 |
- /* dl.c - loadable module support */
- /*
- * GRUB -- GRand Unified Bootloader
- * Copyright (C) 2002,2003,2004,2005,2007,2008,2009 Free Software Foundation, Inc.
- *
- * GRUB is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * GRUB is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
- */
- /* Force native word size */
- #define GRUB_TARGET_WORDSIZE (8 * GRUB_CPU_SIZEOF_VOID_P)
- #include <config.h>
- #include <grub/elf.h>
- #include <grub/dl.h>
- #include <grub/misc.h>
- #include <grub/mm.h>
- #include <grub/err.h>
- #include <grub/types.h>
- #include <grub/symbol.h>
- #include <grub/file.h>
- #include <grub/env.h>
- #include <grub/cache.h>
- #include <grub/i18n.h>
- #ifdef GRUB_MACHINE_EFI
- #include <grub/efi/memory.h>
- #endif
- /* Platforms where modules are in a readonly area of memory. */
- #if defined(GRUB_MACHINE_QEMU)
- #define GRUB_MODULES_MACHINE_READONLY
- #endif
- #ifdef GRUB_MACHINE_EFI
- #define DL_ALIGN GRUB_EFI_PAGE_SIZE
- #else
- #define DL_ALIGN 1
- #endif
- #pragma GCC diagnostic ignored "-Wcast-align"
- grub_dl_t grub_dl_head = 0;
- grub_err_t
- grub_dl_add (grub_dl_t mod);
- /* Keep global so that GDB scripts work. */
- grub_err_t
- grub_dl_add (grub_dl_t mod)
- {
- if (grub_dl_get (mod->name))
- return grub_error (GRUB_ERR_BAD_MODULE,
- "`%s' is already loaded", mod->name);
- return GRUB_ERR_NONE;
- }
- static void
- grub_dl_remove (grub_dl_t mod)
- {
- grub_dl_t *p, q;
- for (p = &grub_dl_head, q = *p; q; p = &q->next, q = *p)
- if (q == mod)
- {
- *p = q->next;
- return;
- }
- }
- struct grub_symbol
- {
- struct grub_symbol *next;
- const char *name;
- void *addr;
- int isfunc;
- grub_dl_t mod; /* The module to which this symbol belongs. */
- };
- typedef struct grub_symbol *grub_symbol_t;
- /* The size of the symbol table. */
- #define GRUB_SYMTAB_SIZE 509
- /* The symbol table (using an open-hash). */
- static struct grub_symbol *grub_symtab[GRUB_SYMTAB_SIZE];
- /* Simple hash function. */
- static unsigned
- grub_symbol_hash (const char *s)
- {
- unsigned key = 0;
- while (*s)
- key = key * 65599 + *s++;
- return (key + (key >> 5)) % GRUB_SYMTAB_SIZE;
- }
- /* Resolve the symbol name NAME and return the address.
- Return NULL, if not found. */
- static grub_symbol_t
- grub_dl_resolve_symbol (const char *name)
- {
- grub_symbol_t sym;
- for (sym = grub_symtab[grub_symbol_hash (name)]; sym; sym = sym->next)
- if (grub_strcmp (sym->name, name) == 0)
- return sym;
- return 0;
- }
- /* Register a symbol with the name NAME and the address ADDR. */
- grub_err_t
- grub_dl_register_symbol (const char *name, void *addr, int isfunc,
- grub_dl_t mod)
- {
- grub_symbol_t sym;
- unsigned k;
- sym = (grub_symbol_t) grub_malloc (sizeof (*sym));
- if (! sym)
- return grub_errno;
- if (mod)
- {
- sym->name = grub_strdup (name);
- if (! sym->name)
- {
- grub_free (sym);
- return grub_errno;
- }
- }
- else
- sym->name = name;
- sym->addr = addr;
- sym->mod = mod;
- sym->isfunc = isfunc;
- k = grub_symbol_hash (name);
- sym->next = grub_symtab[k];
- grub_symtab[k] = sym;
- return GRUB_ERR_NONE;
- }
- /* Unregister all the symbols defined in the module MOD. */
- static void
- grub_dl_unregister_symbols (grub_dl_t mod)
- {
- unsigned i;
- if (! mod)
- grub_fatal ("core symbols cannot be unregistered");
- for (i = 0; i < GRUB_SYMTAB_SIZE; i++)
- {
- grub_symbol_t sym, *p, q;
- for (p = &grub_symtab[i], sym = *p; sym; sym = q)
- {
- q = sym->next;
- if (sym->mod == mod)
- {
- *p = q;
- grub_free ((void *) sym->name);
- grub_free (sym);
- }
- else
- p = &sym->next;
- }
- }
- }
- /* Return the address of a section whose index is N. */
- static void *
- grub_dl_get_section_addr (grub_dl_t mod, unsigned n)
- {
- grub_dl_segment_t seg;
- for (seg = mod->segment; seg; seg = seg->next)
- if (seg->section == n)
- return seg->addr;
- return 0;
- }
- /* Check if EHDR is a valid ELF header. */
- static grub_err_t
- grub_dl_check_header (void *ehdr, grub_size_t size)
- {
- Elf_Ehdr *e = ehdr;
- grub_err_t err;
- /* Check the header size. */
- if (size < sizeof (Elf_Ehdr))
- return grub_error (GRUB_ERR_BAD_OS, "ELF header smaller than expected");
- /* Check the magic numbers. */
- if (e->e_ident[EI_MAG0] != ELFMAG0
- || e->e_ident[EI_MAG1] != ELFMAG1
- || e->e_ident[EI_MAG2] != ELFMAG2
- || e->e_ident[EI_MAG3] != ELFMAG3
- || e->e_ident[EI_VERSION] != EV_CURRENT
- || e->e_version != EV_CURRENT)
- return grub_error (GRUB_ERR_BAD_OS, N_("invalid arch-independent ELF magic"));
- err = grub_arch_dl_check_header (ehdr);
- if (err)
- return err;
- return GRUB_ERR_NONE;
- }
- /* Load all segments from memory specified by E. */
- static grub_err_t
- grub_dl_load_segments (grub_dl_t mod, const Elf_Ehdr *e)
- {
- unsigned i;
- const Elf_Shdr *s;
- grub_size_t tsize = 0, talign = 1, arch_addralign = 1;
- #if !defined (__i386__) && !defined (__x86_64__) && !defined(__riscv) && \
- !defined (__loongarch__)
- grub_size_t tramp;
- grub_size_t tramp_align;
- grub_size_t got;
- grub_size_t got_align;
- grub_err_t err;
- #endif
- char *ptr;
- arch_addralign = DL_ALIGN;
- for (i = 0, s = (const Elf_Shdr *)((const char *) e + e->e_shoff);
- i < e->e_shnum;
- i++, s = (const Elf_Shdr *)((const char *) s + e->e_shentsize))
- {
- grub_size_t sh_addralign;
- grub_size_t sh_size;
- if (s->sh_size == 0 || !(s->sh_flags & SHF_ALLOC))
- continue;
- sh_addralign = ALIGN_UP (s->sh_addralign, arch_addralign);
- sh_size = ALIGN_UP (s->sh_size, sh_addralign);
- tsize = ALIGN_UP (tsize, sh_addralign) + sh_size;
- talign = grub_max (talign, sh_addralign);
- }
- #if !defined (__i386__) && !defined (__x86_64__) && !defined(__riscv) && \
- !defined (__loongarch__)
- err = grub_arch_dl_get_tramp_got_size (e, &tramp, &got);
- if (err)
- return err;
- tramp_align = grub_max (GRUB_ARCH_DL_TRAMP_ALIGN, arch_addralign);
- tsize += ALIGN_UP (tramp, tramp_align);
- talign = grub_max (talign, tramp_align);
- got_align = grub_max (GRUB_ARCH_DL_GOT_ALIGN, arch_addralign);
- tsize += ALIGN_UP (got, got_align);
- talign = grub_max (talign, got_align);
- #endif
- #ifdef GRUB_MACHINE_EMU
- mod->base = grub_osdep_dl_memalign (talign, tsize);
- #else
- mod->base = grub_memalign (talign, tsize);
- #endif
- if (!mod->base)
- return grub_errno;
- mod->sz = tsize;
- ptr = mod->base;
- for (i = 0, s = (Elf_Shdr *)((char *) e + e->e_shoff);
- i < e->e_shnum;
- i++, s = (Elf_Shdr *)((char *) s + e->e_shentsize))
- {
- grub_size_t sh_addralign = ALIGN_UP (s->sh_addralign, arch_addralign);
- grub_size_t sh_size = ALIGN_UP (s->sh_size, sh_addralign);
- if (s->sh_flags & SHF_ALLOC)
- {
- grub_dl_segment_t seg;
- seg = (grub_dl_segment_t) grub_malloc (sizeof (*seg));
- if (! seg)
- return grub_errno;
- if (s->sh_size)
- {
- void *addr;
- ptr = (char *) ALIGN_UP ((grub_addr_t) ptr, sh_addralign);
- addr = ptr;
- ptr += sh_size;
- switch (s->sh_type)
- {
- case SHT_PROGBITS:
- grub_memcpy (addr, (char *) e + s->sh_offset, s->sh_size);
- grub_memset ((char *) addr + s->sh_size, 0, sh_size - s->sh_size);
- break;
- case SHT_NOBITS:
- grub_memset (addr, 0, sh_size);
- break;
- }
- seg->addr = addr;
- }
- else
- seg->addr = 0;
- seg->size = sh_size;
- seg->section = i;
- seg->next = mod->segment;
- mod->segment = seg;
- }
- }
- #if !defined (__i386__) && !defined (__x86_64__) && !defined(__riscv) && \
- !defined (__loongarch__)
- ptr = (char *) ALIGN_UP ((grub_addr_t) ptr, tramp_align);
- mod->tramp = ptr;
- mod->trampptr = ptr;
- ptr += tramp;
- ptr = (char *) ALIGN_UP ((grub_addr_t) ptr, got_align);
- mod->got = ptr;
- mod->gotptr = ptr;
- ptr += got;
- #endif
- return GRUB_ERR_NONE;
- }
- static grub_err_t
- grub_dl_resolve_symbols (grub_dl_t mod, Elf_Ehdr *e)
- {
- unsigned i;
- Elf_Shdr *s;
- Elf_Sym *sym;
- const char *str;
- Elf_Word size, entsize;
- for (i = 0, s = (Elf_Shdr *) ((char *) e + e->e_shoff);
- i < e->e_shnum;
- i++, s = (Elf_Shdr *) ((char *) s + e->e_shentsize))
- if (s->sh_type == SHT_SYMTAB)
- break;
- /* Module without symbol table may still be used to pull in dependencies.
- We verify at build time that such modules do not contain any relocations
- that may reference symbol table. */
- if (i == e->e_shnum)
- return GRUB_ERR_NONE;
- #ifdef GRUB_MODULES_MACHINE_READONLY
- mod->symtab = grub_malloc (s->sh_size);
- if (!mod->symtab)
- return grub_errno;
- grub_memcpy (mod->symtab, (char *) e + s->sh_offset, s->sh_size);
- #else
- mod->symtab = (Elf_Sym *) ((char *) e + s->sh_offset);
- #endif
- mod->symsize = s->sh_entsize;
- sym = mod->symtab;
- size = s->sh_size;
- entsize = s->sh_entsize;
- s = (Elf_Shdr *) ((char *) e + e->e_shoff + e->e_shentsize * s->sh_link);
- str = (char *) e + s->sh_offset;
- for (i = 0;
- i < size / entsize;
- i++, sym = (Elf_Sym *) ((char *) sym + entsize))
- {
- unsigned char type = ELF_ST_TYPE (sym->st_info);
- unsigned char bind = ELF_ST_BIND (sym->st_info);
- const char *name = str + sym->st_name;
- switch (type)
- {
- case STT_NOTYPE:
- case STT_OBJECT:
- /* Resolve a global symbol. */
- if (sym->st_name != 0 && sym->st_shndx == 0)
- {
- grub_symbol_t nsym = grub_dl_resolve_symbol (name);
- if (! nsym)
- return grub_error (GRUB_ERR_BAD_MODULE,
- N_("symbol `%s' not found"), name);
- sym->st_value = (Elf_Addr) nsym->addr;
- if (nsym->isfunc)
- sym->st_info = ELF_ST_INFO (bind, STT_FUNC);
- }
- else
- {
- sym->st_value += (Elf_Addr) grub_dl_get_section_addr (mod,
- sym->st_shndx);
- if (bind != STB_LOCAL)
- if (grub_dl_register_symbol (name, (void *) sym->st_value, 0, mod))
- return grub_errno;
- }
- break;
- case STT_FUNC:
- sym->st_value += (Elf_Addr) grub_dl_get_section_addr (mod,
- sym->st_shndx);
- #ifdef __ia64__
- {
- /* FIXME: free descriptor once it's not used anymore. */
- char **desc;
- desc = grub_malloc (2 * sizeof (char *));
- if (!desc)
- return grub_errno;
- desc[0] = (void *) sym->st_value;
- desc[1] = mod->base;
- sym->st_value = (grub_addr_t) desc;
- }
- #endif
- if (bind != STB_LOCAL)
- if (grub_dl_register_symbol (name, (void *) sym->st_value, 1, mod))
- return grub_errno;
- if (grub_strcmp (name, "grub_mod_init") == 0)
- mod->init = (void (*) (grub_dl_t)) sym->st_value;
- else if (grub_strcmp (name, "grub_mod_fini") == 0)
- mod->fini = (void (*) (void)) sym->st_value;
- break;
- case STT_SECTION:
- sym->st_value = (Elf_Addr) grub_dl_get_section_addr (mod,
- sym->st_shndx);
- break;
- case STT_FILE:
- sym->st_value = 0;
- break;
- default:
- return grub_error (GRUB_ERR_BAD_MODULE,
- "unknown symbol type `%d'", (int) type);
- }
- }
- return GRUB_ERR_NONE;
- }
- static Elf_Shdr *
- grub_dl_find_section (Elf_Ehdr *e, const char *name)
- {
- Elf_Shdr *s;
- const char *str;
- unsigned i;
- s = (Elf_Shdr *) ((char *) e + e->e_shoff + e->e_shstrndx * e->e_shentsize);
- str = (char *) e + s->sh_offset;
- for (i = 0, s = (Elf_Shdr *) ((char *) e + e->e_shoff);
- i < e->e_shnum;
- i++, s = (Elf_Shdr *) ((char *) s + e->e_shentsize))
- if (grub_strcmp (str + s->sh_name, name) == 0)
- return s;
- return NULL;
- }
- /* Me, Vladimir Serbinenko, hereby I add this module check as per new
- GNU module policy. Note that this license check is informative only.
- Modules have to be licensed under GPLv3 or GPLv3+ (optionally
- multi-licensed under other licences as well) independently of the
- presence of this check and solely by linking (module loading in GRUB
- constitutes linking) and GRUB core being licensed under GPLv3+.
- Be sure to understand your license obligations.
- */
- static grub_err_t
- grub_dl_check_license (grub_dl_t mod, Elf_Ehdr *e)
- {
- Elf_Shdr *s = grub_dl_find_section (e, ".module_license");
- if (s == NULL)
- return grub_error (GRUB_ERR_BAD_MODULE,
- "no license section in module %.63s", mod->name);
- if (grub_strcmp ((char *) e + s->sh_offset, "LICENSE=GPLv3") == 0
- || grub_strcmp ((char *) e + s->sh_offset, "LICENSE=GPLv3+") == 0
- || grub_strcmp ((char *) e + s->sh_offset, "LICENSE=GPLv2+") == 0)
- return GRUB_ERR_NONE;
- return grub_error (GRUB_ERR_BAD_MODULE,
- "incompatible license in module %.63s: %.63s", mod->name,
- (char *) e + s->sh_offset);
- }
- static grub_err_t
- grub_dl_resolve_name (grub_dl_t mod, Elf_Ehdr *e)
- {
- Elf_Shdr *s;
- s = grub_dl_find_section (e, ".modname");
- if (!s)
- return grub_error (GRUB_ERR_BAD_MODULE, "no module name found");
- mod->name = grub_strdup ((char *) e + s->sh_offset);
- if (! mod->name)
- return grub_errno;
- return GRUB_ERR_NONE;
- }
- static grub_err_t
- grub_dl_resolve_dependencies (grub_dl_t mod, Elf_Ehdr *e)
- {
- Elf_Shdr *s;
- s = grub_dl_find_section (e, ".moddeps");
- if (!s)
- return GRUB_ERR_NONE;
- const char *name = (char *) e + s->sh_offset;
- const char *max = name + s->sh_size;
- while ((name < max) && (*name))
- {
- grub_dl_t m;
- grub_dl_dep_t dep;
- m = grub_dl_load (name);
- if (! m)
- return grub_errno;
- grub_dl_ref (m);
- dep = (grub_dl_dep_t) grub_malloc (sizeof (*dep));
- if (! dep)
- return grub_errno;
- dep->mod = m;
- dep->next = mod->dep;
- mod->dep = dep;
- name += grub_strlen (name) + 1;
- }
- return GRUB_ERR_NONE;
- }
- int
- grub_dl_ref (grub_dl_t mod)
- {
- grub_dl_dep_t dep;
- if (!mod)
- return 0;
- for (dep = mod->dep; dep; dep = dep->next)
- grub_dl_ref (dep->mod);
- return ++mod->ref_count;
- }
- int
- grub_dl_unref (grub_dl_t mod)
- {
- grub_dl_dep_t dep;
- if (!mod)
- return 0;
- for (dep = mod->dep; dep; dep = dep->next)
- grub_dl_unref (dep->mod);
- return --mod->ref_count;
- }
- int
- grub_dl_ref_count (grub_dl_t mod)
- {
- if (mod == NULL)
- return 0;
- return mod->ref_count;
- }
- static void
- grub_dl_flush_cache (grub_dl_t mod)
- {
- grub_dprintf ("modules", "flushing 0x%lx bytes at %p\n",
- (unsigned long) mod->sz, mod->base);
- grub_arch_sync_caches (mod->base, mod->sz);
- }
- static grub_err_t
- grub_dl_relocate_symbols (grub_dl_t mod, void *ehdr)
- {
- Elf_Ehdr *e = ehdr;
- Elf_Shdr *s;
- unsigned i;
- for (i = 0, s = (Elf_Shdr *) ((char *) e + e->e_shoff);
- i < e->e_shnum;
- i++, s = (Elf_Shdr *) ((char *) s + e->e_shentsize))
- if (s->sh_type == SHT_REL || s->sh_type == SHT_RELA)
- {
- grub_dl_segment_t seg;
- grub_err_t err;
- /* Find the target segment. */
- for (seg = mod->segment; seg; seg = seg->next)
- if (seg->section == s->sh_info)
- break;
- if (seg)
- {
- if (!mod->symtab)
- return grub_error (GRUB_ERR_BAD_MODULE, "relocation without symbol table");
- err = grub_arch_dl_relocate_symbols (mod, ehdr, s, seg);
- if (err)
- return err;
- }
- }
- return GRUB_ERR_NONE;
- }
- /* Only define this on EFI to save space in core. */
- #ifdef GRUB_MACHINE_EFI
- static grub_err_t
- grub_dl_set_mem_attrs (grub_dl_t mod, void *ehdr)
- {
- unsigned i;
- const Elf_Shdr *s;
- const Elf_Ehdr *e = ehdr;
- grub_err_t err;
- #if !defined (__i386__) && !defined (__x86_64__) && !defined(__riscv) && \
- !defined (__loongarch__)
- grub_size_t arch_addralign = DL_ALIGN;
- grub_addr_t tgaddr;
- grub_size_t tgsz;
- #endif
- for (i = 0, s = (const Elf_Shdr *) ((const char *) e + e->e_shoff);
- i < e->e_shnum;
- i++, s = (const Elf_Shdr *) ((const char *) s + e->e_shentsize))
- {
- grub_dl_segment_t seg;
- grub_uint64_t set_attrs = GRUB_MEM_ATTR_R;
- grub_uint64_t clear_attrs = GRUB_MEM_ATTR_W | GRUB_MEM_ATTR_X;
- for (seg = mod->segment; seg; seg = seg->next)
- /* Does this ELF section's index match GRUB DL segment? */
- if (seg->section == s->sh_info)
- break;
- /* No GRUB DL segment found for this ELF section, skip it. */
- if (!seg)
- continue;
- if (seg->size == 0 || !(s->sh_flags & SHF_ALLOC))
- continue;
- if (s->sh_flags & SHF_WRITE)
- {
- set_attrs |= GRUB_MEM_ATTR_W;
- clear_attrs &= ~GRUB_MEM_ATTR_W;
- }
- if (s->sh_flags & SHF_EXECINSTR)
- {
- set_attrs |= GRUB_MEM_ATTR_X;
- clear_attrs &= ~GRUB_MEM_ATTR_X;
- }
- err = grub_update_mem_attrs ((grub_addr_t) seg->addr, seg->size,
- set_attrs, clear_attrs);
- if (err != GRUB_ERR_NONE)
- return err;
- }
- #if !defined (__i386__) && !defined (__x86_64__) && !defined(__riscv) && \
- !defined (__loongarch__)
- tgaddr = grub_min ((grub_addr_t) mod->tramp, (grub_addr_t) mod->got);
- tgsz = grub_max ((grub_addr_t) mod->trampptr, (grub_addr_t) mod->gotptr) - tgaddr;
- if (tgsz)
- {
- tgsz = ALIGN_UP (tgsz, arch_addralign);
- if (tgaddr < (grub_addr_t) mod->base ||
- tgsz > (grub_addr_t) -1 - tgaddr ||
- tgaddr + tgsz > (grub_addr_t) mod->base + mod->sz)
- return grub_error (GRUB_ERR_BUG,
- "BUG: trying to protect pages outside of module "
- "allocation (\"%s\"): module base %p, size 0x%"
- PRIxGRUB_SIZE "; tramp/GOT base 0x%" PRIxGRUB_ADDR
- ", size 0x%" PRIxGRUB_SIZE,
- mod->name, mod->base, mod->sz, tgaddr, tgsz);
- err = grub_update_mem_attrs (tgaddr, tgsz, GRUB_MEM_ATTR_R | GRUB_MEM_ATTR_X, GRUB_MEM_ATTR_W);
- if (err != GRUB_ERR_NONE)
- return err;
- }
- #endif
- return GRUB_ERR_NONE;
- }
- #else
- static grub_err_t
- grub_dl_set_mem_attrs (grub_dl_t mod __attribute__ ((unused)), void *ehdr __attribute__ ((unused)))
- {
- return GRUB_ERR_NONE;
- }
- #endif
- /* Load a module from core memory. */
- grub_dl_t
- grub_dl_load_core_noinit (void *addr, grub_size_t size)
- {
- Elf_Ehdr *e;
- grub_dl_t mod;
- grub_dprintf ("modules", "module at %p, size 0x%lx\n", addr,
- (unsigned long) size);
- e = addr;
- if (grub_dl_check_header (e, size))
- return 0;
- if (e->e_type != ET_REL)
- {
- grub_error (GRUB_ERR_BAD_MODULE, N_("this ELF file is not of the right type"));
- return 0;
- }
- /* Make sure that every section is within the core. */
- if (size < e->e_shoff + (grub_uint32_t) e->e_shentsize * e->e_shnum)
- {
- grub_error (GRUB_ERR_BAD_OS, "ELF sections outside core");
- return 0;
- }
- mod = (grub_dl_t) grub_zalloc (sizeof (*mod));
- if (! mod)
- return 0;
- mod->ref_count = 1;
- grub_dprintf ("modules", "relocating to %p\n", mod);
- /* Me, Vladimir Serbinenko, hereby I add this module check as per new
- GNU module policy. Note that this license check is informative only.
- Modules have to be licensed under GPLv3 or GPLv3+ (optionally
- multi-licensed under other licences as well) independently of the
- presence of this check and solely by linking (module loading in GRUB
- constitutes linking) and GRUB core being licensed under GPLv3+.
- Be sure to understand your license obligations.
- */
- if (grub_dl_resolve_name (mod, e)
- || grub_dl_check_license (mod, e)
- || grub_dl_resolve_dependencies (mod, e)
- || grub_dl_load_segments (mod, e)
- || grub_dl_resolve_symbols (mod, e)
- || grub_dl_relocate_symbols (mod, e)
- || grub_dl_set_mem_attrs (mod, e))
- {
- mod->fini = 0;
- grub_dl_unload (mod);
- return 0;
- }
- grub_dl_flush_cache (mod);
- grub_dprintf ("modules", "module name: %s\n", mod->name);
- grub_dprintf ("modules", "init function: %p\n", mod->init);
- if (grub_dl_add (mod))
- {
- grub_dl_unload (mod);
- return 0;
- }
- return mod;
- }
- grub_dl_t
- grub_dl_load_core (void *addr, grub_size_t size)
- {
- grub_dl_t mod;
- grub_boot_time ("Parsing module");
- mod = grub_dl_load_core_noinit (addr, size);
- if (!mod)
- return NULL;
- grub_boot_time ("Initing module %s", mod->name);
- grub_dl_init (mod);
- grub_boot_time ("Module %s inited", mod->name);
- return mod;
- }
- /* Load a module from the file FILENAME. */
- grub_dl_t
- grub_dl_load_file (const char *filename)
- {
- grub_file_t file = NULL;
- grub_ssize_t size;
- void *core = 0;
- grub_dl_t mod = 0;
- grub_boot_time ("Loading module %s", filename);
- file = grub_file_open (filename, GRUB_FILE_TYPE_GRUB_MODULE);
- if (! file)
- return 0;
- size = grub_file_size (file);
- core = grub_malloc (size);
- if (! core)
- {
- grub_file_close (file);
- return 0;
- }
- if (grub_file_read (file, core, size) != (int) size)
- {
- grub_file_close (file);
- grub_free (core);
- return 0;
- }
- /* We must close this before we try to process dependencies.
- Some disk backends do not handle gracefully multiple concurrent
- opens of the same device. */
- grub_file_close (file);
- mod = grub_dl_load_core (core, size);
- grub_free (core);
- if (! mod)
- return 0;
- mod->ref_count--;
- return mod;
- }
- /* Load a module using a symbolic name. */
- grub_dl_t
- grub_dl_load (const char *name)
- {
- char *filename;
- grub_dl_t mod;
- const char *grub_dl_dir = grub_env_get ("prefix");
- mod = grub_dl_get (name);
- if (mod)
- return mod;
- if (grub_no_modules)
- return 0;
- if (! grub_dl_dir) {
- grub_error (GRUB_ERR_FILE_NOT_FOUND, N_("variable `%s' isn't set"), "prefix");
- return 0;
- }
- filename = grub_xasprintf ("%s/" GRUB_TARGET_CPU "-" GRUB_PLATFORM "/%s.mod",
- grub_dl_dir, name);
- if (! filename)
- return 0;
- mod = grub_dl_load_file (filename);
- grub_free (filename);
- if (! mod)
- return 0;
- if (grub_strcmp (mod->name, name) != 0)
- grub_error (GRUB_ERR_BAD_MODULE, "mismatched names");
- return mod;
- }
- /* Unload the module MOD. */
- int
- grub_dl_unload (grub_dl_t mod)
- {
- grub_dl_dep_t dep, depn;
- if (mod->ref_count > 0)
- return 0;
- if (mod->fini)
- (mod->fini) ();
- grub_dl_remove (mod);
- grub_dl_unregister_symbols (mod);
- for (dep = mod->dep; dep; dep = depn)
- {
- depn = dep->next;
- grub_dl_unload (dep->mod);
- grub_free (dep);
- }
- #ifdef GRUB_MACHINE_EMU
- grub_dl_osdep_dl_free (mod->base);
- #else
- grub_free (mod->base);
- #endif
- grub_free (mod->name);
- #ifdef GRUB_MODULES_MACHINE_READONLY
- grub_free (mod->symtab);
- #endif
- grub_free (mod);
- return 1;
- }
|