2002-12-27 08:53:07 +00:00
|
|
|
|
/* dl.c - loadable module support */
|
|
|
|
|
/*
|
2004-04-04 13:46:03 +00:00
|
|
|
|
* GRUB -- GRand Unified Bootloader
|
2004-03-14 Marco Gerards <metgerards@student.han.nl>
* commands/boot.c: New file.
* commands/cat.c: Likewise.
* commands/cmp.c: Likewise.
* commands/ls.c: Likewise.
* commands/terminal.c: Likewise.
* normal/command.c: Include <pupa/env.h> and <pupa/dl.h>.
(pupa_register_command): Changed interface to match the new
argument parser.
(pupa_command_execute): Changed (almost rewritten) so it uses
pupa_split_command. Added support for setting variables using the
syntax `foo=bar'.
(rescue_command): Changed to work with the new argument parser.
(terminal_command): Moved from here to commands/terminal.c.
(set_command): New function.
(unset_command): New function.
(insmod_command): New function.
(rmmod_command): New function.
(lsmod_command): New function.
(pupa_command_init): Don't initialize the command terminal
anymore. Initialize the commands set, unset, insmod, rmmod and
lsmod.
* conf/i386-pc.rmk (kernel_img_SOURCES): Add kern/env.c.
(kernel_img_HEADERS): Add arg.h and env.h.
(pupa_mkimage_LDFLAGS): Add kern/env.c.
(pupa_emu_SOURCES): Add kern/env.c, commands/ls.c,
commands/terminal.c commands/boot.c commands/cmp.c commands/cat.c,
normal/arg.c.
(pkgdata_MODULES): Add ls.mod, boot.mod, cmp.mod, cat.mod and
terminal.mod.
(normal_mod_SOURCES): Add normal/arg.c and normal/arg.c.
(boot_mod_SOURCES): New variable.
(terminal_mod_SOURCES): Likewise.
(ls_mod_SOURCES): Likewise.
(cmp_mod_SOURCES): Likewise.
(cat_mod_SOURCES): Likewise.
* normal/arg.c: New file.
* kern/env.c: Likewise.
* include/pupa/arg.h: Likewise.
* include/pupa/env.h: Likewise.
* font/manager.c (font_command): Changed to match argument parsing
interface changes.
(PUPA_MOD_INIT): Likewise.
* hello/hello.c (pupa_cmd_hello): Likewise.
(PUPA_MOD_INIT): Likewise.
* include/pupa/disk.h: Include <pupa/device.h>.
(pupa_print_partinfo): New prototype.
* include/pupa/dl.h (pupa_dl_set_prefix): Prototype removed.
(pupa_dl_get_prefix): Likewise.
* include/pupa/misc.h: Include <pupa/err.h>.
(pupa_isgraph): New prototype.
(pupa_isdigit): Likewise.
(pupa_split_cmdline): Likewise.
* include/pupa/normal.h: Include <pupa/arg.h>.
(pupa_command): Changed the prototype of the member `func' to
match the argument parsing interface. Added member `options'.
(pupa_register_command): Updated to match function.
(pupa_arg_parse): New prototype.
(pupa_hello_init) [PUPA_UTIL]: New prototype.
(pupa_hello_fini) [PUPA_UTIL]: Likewise.
(pupa_ls_init) [PUPA_UTIL]: Likewise.
(pupa_ls_fini) [PUPA_UTIL]: Likewise.
(pupa_cat_init) [PUPA_UTIL]: Likewise.
(pupa_cat_fini) [PUPA_UTIL]: Likewise.
(pupa_boot_init) [PUPA_UTIL]: Likewise.
(pupa_boot_fini) [PUPA_UTIL]: Likewise.
(pupa_cmp_init) [PUPA_UTIL]: Likewise.
(pupa_cmp_fini) [PUPA_UTIL]: Likewise.
(pupa_terminal_init) [PUPA_UTIL]: Likewise.
(pupa_terminal_fini) [PUPA_UTIL]: Likewise.
* kern/disk.c: Include <pupa/file.h>.
(pupa_print_partinfo): New function.
* kern/dl.c: Include <pupa/env.h>.
(pupa_dl_dir): Variable removed.
(pupa_dl_load): Use the environment variable `prefix' instead of
the variable pupa_dl_dir.
(pupa_dl_set_prefix): Function removed.
(pupa_dl_get_prefix): Likewise.
* kern/i386/pc/init.c: Include <pupa/env.h>.
(pupa_machine_init): Use the environment variable `prefix' instead of
using pupa_dl_set_prefix to set the prefix.
* kern/main.c: Include <pupa/env.h>.
(pupa_set_root_dev): Use the environment variable `prefix' instead of
using pupa_dl_get_prefix to get the prefix.
* kern/misc.c: Include <pupa/env.h>.
(pupa_isdigit): New function.
(pupa_isgraph): Likewise.
(pupa_ftoa): Likewise.
(pupa_vsprintf): Added support for printing values of the type
`double'. Make it possible to format variable output when using
formatting like `%1.2%f'.
(pupa_split_cmdline): New function.
* kern/rescue.c: Include <pupa/env.h>.
(next_word): Removed function.
(pupa_rescue_cmd_prefix): Likewise.
(pupa_rescue_cmd_set): New function.
(pupa_rescue_cmd_unset): New function.
(pupa_enter_rescue_mode): Use the `pupa_split_cmdline' function to
split the command line instead of splitting it here. Added
support for setting variables using the syntax `foo=bar'. Don't
initialize the prefix command anymore. Initialized the set and
unset commands.
* normal/cmdline.c: Include <pupa/env.h>.
(pupa_tab_complete): Added prototypes for print_simple_completion,
print_partition_completion, add_completion, iterate_commands,
iterate_dev, iterate_part and iterate_dir. Moved code to print
partition information from here to kern/disk.c.
(pupa_cmdline_run): Don't check if the funtion exists anymore.
* normal/main.c: Include <pupa/env.h>.
(pupa_rescue_cmd_normal): Use the environment variable `prefix'
instead of using pupa_dl_get_prefix to get the prefix.
* term/i386/pc/vga.c: Include <pupa/arg.h>.
(check_vga_mem): Cast pointers to `void *' to silence a gcc
warning.
(pupa_vga_putchar) [! DEBUG_VGA]: Removed for this case.
(pupa_vga_setcolor): Declare unused variables with `__attribute__
((unused))' to silence a gcc warning.
(pupa_vga_setcolor): Likewise.
(debug_command): Changed to match argument parsing
interface changes.
* util/pupa-emu.c: Include <pupa/env.h>.
(options): Added 0's for unused fields to silence a gcc warning.
(argp): Likewise.
(main): Use the environment variable `prefix' instead of using
pupa_dl_set_prefix to set the prefix. Initialize the commands ls,
boot, cmp, cat and terminal. Finish the commands boot, cmp, cat
and terminal.
* util/i386/pc/getroot.c: Include <pupa/i386/pc/util/biosdisk.h>.
* util/misc.c: Include <malloc.h>.
(pupa_malloc): Rewritten so errors are correctly reported.
(pupa_realloc): Likewise.
(pupa_memalign): Likewise.
(pupa_mm_init_region): Declare unused variables with
`__attribute__ ((unused))' to silence a gcc warning.
* normal/i386/setjmp.S: Remove tab at the end of the file to
silence a gcc warning.
* loader/i386/pc/linux.c (pupa_rescue_cmd_initrd): Declare unused
variables with `__attribute__ ((unused))' to silence a gcc
warning.
* loader/i386/pc/multiboot.c (pupa_multiboot_unload): Make the
local variable i unsigned to silence a gcc warning.
* kern/term.c: Include <pupa/misc.h>.
(pupa_more_lines): New variable.
(pupa_more): Likewise.
(pupa_putcode): When the pager is active pause at the end of every
screen.
(pupa_set_more): New function.
* include/pupa/term.h (pupa_set_more): New prototype.
2004-03-13 13:59:25 +00:00
|
|
|
|
* Copyright (C) 2002, 2003 Free Software Foundation, Inc.
|
2002-12-27 08:53:07 +00:00
|
|
|
|
*
|
2004-04-04 13:46:03 +00:00
|
|
|
|
* GRUB is free software; you can redistribute it and/or modify
|
2002-12-27 08:53:07 +00:00
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
* (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program 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
|
2004-04-04 13:46:03 +00:00
|
|
|
|
* along with GRUB; if not, write to the Free Software
|
2002-12-27 08:53:07 +00:00
|
|
|
|
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
2004-04-04 13:46:03 +00:00
|
|
|
|
#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>
|
|
|
|
|
|
|
|
|
|
#if GRUB_HOST_SIZEOF_VOID_P == 4
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
typedef Elf32_Word Elf_Word;
|
|
|
|
|
typedef Elf32_Addr Elf_Addr;
|
|
|
|
|
typedef Elf32_Ehdr Elf_Ehdr;
|
|
|
|
|
typedef Elf32_Shdr Elf_Shdr;
|
|
|
|
|
typedef Elf32_Sym Elf_Sym;
|
|
|
|
|
|
|
|
|
|
# define ELF_ST_BIND(val) ELF32_ST_BIND (val)
|
|
|
|
|
# define ELF_ST_TYPE(val) ELF32_ST_TYPE (val)
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
#elif GRUB_HOST_SIZEOF_VOID_P == 8
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
typedef Elf64_Word Elf_Word;
|
|
|
|
|
typedef Elf64_Addr Elf_Addr;
|
|
|
|
|
typedef Elf64_Ehdr Elf_Ehdr;
|
|
|
|
|
typedef Elf64_Shdr Elf_Shdr;
|
|
|
|
|
typedef Elf64_Sym Elf_Sym;
|
|
|
|
|
|
|
|
|
|
# define ELF_ST_BIND(val) ELF64_ST_BIND (val)
|
|
|
|
|
# define ELF_ST_TYPE(val) ELF64_ST_TYPE (val)
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
struct grub_dl_list
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
struct grub_dl_list *next;
|
|
|
|
|
grub_dl_t mod;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
};
|
2004-04-04 13:46:03 +00:00
|
|
|
|
typedef struct grub_dl_list *grub_dl_list_t;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_dl_list_t grub_dl_head;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_dl_add (grub_dl_t mod)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_list_t l;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_dl_get (mod->name))
|
|
|
|
|
return grub_error (GRUB_ERR_BAD_MODULE,
|
2002-12-27 08:53:07 +00:00
|
|
|
|
"`%s' is already loaded", mod->name);
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
l = (grub_dl_list_t) grub_malloc (sizeof (*l));
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! l)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
l->mod = mod;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
l->next = grub_dl_head;
|
|
|
|
|
grub_dl_head = l;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return GRUB_ERR_NONE;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_remove (grub_dl_t mod)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_list_t *p, q;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
for (p = &grub_dl_head, q = *p; q; p = &q->next, q = *p)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (q->mod == mod)
|
|
|
|
|
{
|
|
|
|
|
*p = q->next;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_free (q);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t
|
|
|
|
|
grub_dl_get (const char *name)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_list_t l;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
for (l = grub_dl_head; l; l = l->next)
|
|
|
|
|
if (grub_strcmp (name, l->mod->name) == 0)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
return l->mod;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2003-01-06 00:01:35 +00:00
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_iterate (int (*hook) (grub_dl_t mod))
|
2003-01-06 00:01:35 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_list_t l;
|
2003-01-06 00:01:35 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
for (l = grub_dl_head; l; l = l->next)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
if (hook (l->mod))
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
struct grub_symbol
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
struct grub_symbol *next;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
const char *name;
|
|
|
|
|
void *addr;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t mod; /* The module to which this symbol belongs. */
|
2002-12-27 08:53:07 +00:00
|
|
|
|
};
|
2004-04-04 13:46:03 +00:00
|
|
|
|
typedef struct grub_symbol *grub_symbol_t;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
/* The size of the symbol table. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
#define GRUB_SYMTAB_SIZE 509
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
/* The symbol table (using an open-hash). */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static struct grub_symbol *grub_symtab[GRUB_SYMTAB_SIZE];
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
/* Simple hash function. */
|
|
|
|
|
static unsigned
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_symbol_hash (const char *s)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned key = 0;
|
|
|
|
|
|
|
|
|
|
while (*s)
|
|
|
|
|
key = key * 65599 + *s++;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return (key + (key >> 5)) % GRUB_SYMTAB_SIZE;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Resolve the symbol name NAME and return the address.
|
|
|
|
|
Return NULL, if not found. */
|
|
|
|
|
void *
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_resolve_symbol (const char *name)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_symbol_t sym;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
for (sym = grub_symtab[grub_symbol_hash (name)]; sym; sym = sym->next)
|
|
|
|
|
if (grub_strcmp (sym->name, name) == 0)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
return sym->addr;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Register a symbol with the name NAME and the address ADDR. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_err_t
|
|
|
|
|
grub_dl_register_symbol (const char *name, void *addr, grub_dl_t mod)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_symbol_t sym;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
unsigned k;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
sym = (grub_symbol_t) grub_malloc (sizeof (*sym));
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! sym)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
if (mod)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
sym->name = grub_strdup (name);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! sym->name)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_free (sym);
|
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
sym->name = name;
|
|
|
|
|
|
|
|
|
|
sym->addr = addr;
|
|
|
|
|
sym->mod = mod;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
k = grub_symbol_hash (name);
|
|
|
|
|
sym->next = grub_symtab[k];
|
|
|
|
|
grub_symtab[k] = sym;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return GRUB_ERR_NONE;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Unregister all the symbols defined in the module MOD. */
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unregister_symbols (grub_dl_t mod)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned i;
|
|
|
|
|
|
|
|
|
|
if (! mod)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_fatal ("core symbols cannot be unregistered");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
for (i = 0; i < GRUB_SYMTAB_SIZE; i++)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_symbol_t sym, *p, q;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
for (p = &grub_symtab[i], sym = *p; sym; sym = q)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
q = sym->next;
|
|
|
|
|
if (sym->mod == mod)
|
|
|
|
|
{
|
|
|
|
|
*p = q;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_free ((void *) sym->name);
|
|
|
|
|
grub_free (sym);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
p = &sym->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Return the address of a section whose index is N. */
|
|
|
|
|
static void *
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_get_section_addr (grub_dl_t mod, unsigned n)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_segment_t seg;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
for (seg = mod->segment; seg; seg = seg->next)
|
|
|
|
|
if (seg->section == n)
|
|
|
|
|
return seg->addr;
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Load all segments from memory specified by E. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_dl_load_segments (grub_dl_t mod, const Elf_Ehdr *e)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
unsigned i;
|
|
|
|
|
Elf_Shdr *s;
|
|
|
|
|
|
|
|
|
|
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_flags & SHF_ALLOC)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_segment_t seg;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
seg = (grub_dl_segment_t) grub_malloc (sizeof (*seg));
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! seg)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
if (s->sh_size)
|
|
|
|
|
{
|
|
|
|
|
void *addr;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
addr = grub_memalign (s->sh_addralign, s->sh_size);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! addr)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_free (seg);
|
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (s->sh_type)
|
|
|
|
|
{
|
|
|
|
|
case SHT_PROGBITS:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_memcpy (addr, (char *) e + s->sh_offset, s->sh_size);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
break;
|
|
|
|
|
case SHT_NOBITS:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_memset (addr, 0, s->sh_size);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
seg->addr = addr;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
seg->addr = 0;
|
|
|
|
|
|
|
|
|
|
seg->size = s->sh_size;
|
|
|
|
|
seg->section = i;
|
|
|
|
|
seg->next = mod->segment;
|
|
|
|
|
mod->segment = seg;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return GRUB_ERR_NONE;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_dl_resolve_symbols (grub_dl_t mod, Elf_Ehdr *e)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
if (i == e->e_shnum)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_MODULE, "no symbol table");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
sym = (Elf_Sym *) ((char *) e + s->sh_offset);
|
|
|
|
|
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:
|
|
|
|
|
/* Resolve a global symbol. */
|
|
|
|
|
if (sym->st_name != 0 && sym->st_shndx == 0)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
sym->st_value = (Elf_Addr) grub_dl_resolve_symbol (name);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! sym->st_value)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_MODULE,
|
2002-12-27 08:53:07 +00:00
|
|
|
|
"the symbol `%s' not found", name);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
sym->st_value = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case STT_OBJECT:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
sym->st_value += (Elf_Addr) grub_dl_get_section_addr (mod,
|
2002-12-27 08:53:07 +00:00
|
|
|
|
sym->st_shndx);
|
|
|
|
|
if (bind != STB_LOCAL)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_dl_register_symbol (name, (void *) sym->st_value, mod))
|
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case STT_FUNC:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
sym->st_value += (Elf_Addr) grub_dl_get_section_addr (mod,
|
2002-12-27 08:53:07 +00:00
|
|
|
|
sym->st_shndx);
|
|
|
|
|
if (bind != STB_LOCAL)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_dl_register_symbol (name, (void *) sym->st_value, mod))
|
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
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)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
mod->fini = (void (*) (void)) sym->st_value;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case STT_SECTION:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
sym->st_value = (Elf_Addr) grub_dl_get_section_addr (mod,
|
2002-12-27 08:53:07 +00:00
|
|
|
|
sym->st_shndx);
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case STT_FILE:
|
|
|
|
|
sym->st_value = 0;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_MODULE,
|
2002-12-27 08:53:07 +00:00
|
|
|
|
"unknown symbol type `%d'", (int) type);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return GRUB_ERR_NONE;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_call_init (grub_dl_t mod)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
if (mod->init)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
(mod->init) (mod);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_dl_resolve_name (grub_dl_t mod, Elf_Ehdr *e)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
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))
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_strcmp (str + s->sh_name, ".modname") == 0)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
mod->name = grub_strdup ((char *) e + s->sh_offset);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! mod->name)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (i == e->e_shnum)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_error (GRUB_ERR_BAD_MODULE, "no module name found");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return GRUB_ERR_NONE;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
static grub_err_t
|
|
|
|
|
grub_dl_resolve_dependencies (grub_dl_t mod, Elf_Ehdr *e)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
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))
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_strcmp (str + s->sh_name, ".moddeps") == 0)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
const char *name = (char *) e + s->sh_offset;
|
|
|
|
|
const char *max = name + s->sh_size;
|
|
|
|
|
|
|
|
|
|
while (name < max)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t m;
|
|
|
|
|
grub_dl_dep_t dep;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
m = grub_dl_load (name);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! m)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_errno;
|
2003-01-06 00:01:35 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_ref (m);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
dep = (grub_dl_dep_t) grub_malloc (sizeof (*dep));
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! dep)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return grub_errno;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
dep->mod = m;
|
|
|
|
|
dep->next = mod->dep;
|
|
|
|
|
mod->dep = dep;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
name += grub_strlen (name) + 1;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
return GRUB_ERR_NONE;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-01-06 00:01:35 +00:00
|
|
|
|
int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_ref (grub_dl_t mod)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_dep_t dep;
|
2003-01-20 04:13:46 +00:00
|
|
|
|
|
|
|
|
|
for (dep = mod->dep; dep; dep = dep->next)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_ref (dep->mod);
|
2003-01-20 04:13:46 +00:00
|
|
|
|
|
2003-01-06 00:01:35 +00:00
|
|
|
|
return ++mod->ref_count;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unref (grub_dl_t mod)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_dep_t dep;
|
2003-01-06 00:01:35 +00:00
|
|
|
|
|
2003-01-20 04:13:46 +00:00
|
|
|
|
for (dep = mod->dep; dep; dep = dep->next)
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unref (dep->mod);
|
2003-01-20 04:13:46 +00:00
|
|
|
|
|
|
|
|
|
return --mod->ref_count;
|
2003-01-06 00:01:35 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-12-27 08:53:07 +00:00
|
|
|
|
/* Load a module from core memory. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t
|
|
|
|
|
grub_dl_load_core (void *addr, grub_size_t size)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
Elf_Ehdr *e;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t mod;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
e = addr;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (! grub_arch_dl_check_header (e, size))
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_error (GRUB_ERR_BAD_MODULE, "invalid ELF header");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
mod = (grub_dl_t) grub_malloc (sizeof (*mod));
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! mod)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
mod->name = 0;
|
|
|
|
|
mod->ref_count = 1;
|
|
|
|
|
mod->dep = 0;
|
|
|
|
|
mod->segment = 0;
|
|
|
|
|
mod->init = 0;
|
|
|
|
|
mod->fini = 0;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_dl_resolve_name (mod, e)
|
|
|
|
|
|| grub_dl_resolve_dependencies (mod, e)
|
|
|
|
|
|| grub_dl_load_segments (mod, e)
|
|
|
|
|
|| grub_dl_resolve_symbols (mod, e)
|
|
|
|
|
|| grub_arch_dl_relocate_symbols (mod, e))
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
mod->fini = 0;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unload (mod);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_call_init (mod);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_dl_add (mod))
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unload (mod);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return mod;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Load a module from the file FILENAME. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t
|
|
|
|
|
grub_dl_load_file (const char *filename)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_file_t file;
|
|
|
|
|
grub_ssize_t size;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
void *core = 0;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t mod = 0;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
file = grub_file_open (filename);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! file)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
size = grub_file_size (file);
|
|
|
|
|
core = grub_malloc (size);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! core)
|
|
|
|
|
goto failed;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_file_read (file, core, size) != (int) size)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
goto failed;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
mod = grub_dl_load_core (core, size);
|
2003-01-06 00:01:35 +00:00
|
|
|
|
mod->ref_count = 0;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
failed:
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_file_close (file);
|
|
|
|
|
grub_free (core);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
return mod;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Load a module using a symbolic name. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t
|
|
|
|
|
grub_dl_load (const char *name)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
|
|
|
|
char *filename;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_t mod;
|
|
|
|
|
char *grub_dl_dir = grub_env_get ("prefix");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
mod = grub_dl_get (name);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (mod)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
return mod;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (! grub_dl_dir)
|
|
|
|
|
grub_fatal ("module dir is not initialized yet");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
filename = (char *) grub_malloc (grub_strlen (grub_dl_dir) + 1
|
|
|
|
|
+ grub_strlen (name) + 4 + 1);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
if (! filename)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_sprintf (filename, "%s/%s.mod", grub_dl_dir, name);
|
|
|
|
|
mod = grub_dl_load_file (filename);
|
|
|
|
|
grub_free (filename);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
if (! mod)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_strcmp (mod->name, name) != 0)
|
|
|
|
|
grub_error (GRUB_ERR_BAD_MODULE, "mismatched names");
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
return mod;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Unload the module MOD. */
|
2003-01-06 00:01:35 +00:00
|
|
|
|
int
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unload (grub_dl_t mod)
|
2002-12-27 08:53:07 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_dep_t dep, depn;
|
|
|
|
|
grub_dl_segment_t seg, segn;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
2003-01-06 00:01:35 +00:00
|
|
|
|
if (mod->ref_count > 0)
|
|
|
|
|
return 0;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
if (mod->fini)
|
|
|
|
|
(mod->fini) ();
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_remove (mod);
|
|
|
|
|
grub_dl_unregister_symbols (mod);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
|
|
|
|
|
for (dep = mod->dep; dep; dep = depn)
|
|
|
|
|
{
|
|
|
|
|
depn = dep->next;
|
2003-01-20 04:13:46 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (! grub_dl_unref (dep->mod))
|
|
|
|
|
grub_dl_unload (dep->mod);
|
2003-01-20 04:13:46 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_free (dep);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (seg = mod->segment; seg; seg = segn)
|
|
|
|
|
{
|
|
|
|
|
segn = seg->next;
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_free (seg->addr);
|
|
|
|
|
grub_free (seg);
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_free (mod->name);
|
|
|
|
|
grub_free (mod);
|
2003-01-06 00:01:35 +00:00
|
|
|
|
return 1;
|
2002-12-27 08:53:07 +00:00
|
|
|
|
}
|
|
|
|
|
|
2003-01-06 00:01:35 +00:00
|
|
|
|
/* Unload unneeded modules. */
|
2002-12-27 08:53:07 +00:00
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unload_unneeded (void)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
/* Because grub_dl_remove modifies the list of modules, this
|
2003-01-06 00:01:35 +00:00
|
|
|
|
implementation is tricky. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_list_t p = grub_dl_head;
|
2003-01-06 00:01:35 +00:00
|
|
|
|
|
|
|
|
|
while (p)
|
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
if (grub_dl_unload (p->mod))
|
2003-01-06 00:01:35 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
p = grub_dl_head;
|
2003-01-06 00:01:35 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p = p->next;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Unload all modules. */
|
|
|
|
|
void
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unload_all (void)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
while (grub_dl_head)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
{
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_list_t p;
|
2003-01-06 00:01:35 +00:00
|
|
|
|
|
2004-04-04 13:46:03 +00:00
|
|
|
|
grub_dl_unload_unneeded ();
|
2003-01-06 00:01:35 +00:00
|
|
|
|
|
|
|
|
|
/* Force to decrement the ref count. This will purge pre-loaded
|
|
|
|
|
modules and manually inserted modules. */
|
2004-04-04 13:46:03 +00:00
|
|
|
|
for (p = grub_dl_head; p; p = p->next)
|
2003-01-06 00:01:35 +00:00
|
|
|
|
p->mod->ref_count--;
|
|
|
|
|
}
|
|
|
|
|
}
|