loader.h 2.66 KB
Newer Older
okuji's avatar
okuji committed
1 2
/* loader.h - OS loaders */
/*
3
 *  GRUB  --  GRand Unified Bootloader
4
 *  Copyright (C) 2002,2003,2004,2006,2007,2009  Free Software Foundation, Inc.
okuji's avatar
okuji committed
5
 *
6
 *  GRUB is free software: you can redistribute it and/or modify
okuji's avatar
okuji committed
7
 *  it under the terms of the GNU General Public License as published by
8
 *  the Free Software Foundation, either version 3 of the License, or
okuji's avatar
okuji committed
9 10
 *  (at your option) any later version.
 *
11
 *  GRUB is distributed in the hope that it will be useful,
okuji's avatar
okuji committed
12 13 14 15 16
 *  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
17
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
okuji's avatar
okuji committed
18 19
 */

20 21
#ifndef GRUB_LOADER_HEADER
#define GRUB_LOADER_HEADER	1
okuji's avatar
okuji committed
22

23 24 25 26
#include <grub/file.h>
#include <grub/symbol.h>
#include <grub/err.h>
#include <grub/types.h>
okuji's avatar
okuji committed
27

28
/* Check if a loader is loaded.  */
29
int EXPORT_FUNC (grub_loader_is_loaded) (void);
30

31 32 33 34 35 36 37
/* Set loader functions.  */
enum
{
  GRUB_LOADER_FLAG_NORETURN = 1,
  GRUB_LOADER_FLAG_PXE_NOT_UNLOAD = 2,
};

38
void EXPORT_FUNC (grub_loader_set) (grub_err_t (*boot) (void),
39 40
				    grub_err_t (*unload) (void),
				    int flags);
41 42

/* Unset current loader, if any.  */
43
void EXPORT_FUNC (grub_loader_unset) (void);
okuji's avatar
okuji committed
44

45 46
/* Call the boot hook in current loader. This may or may not return,
   depending on the setting by grub_loader_set.  */
47
grub_err_t grub_loader_boot (void);
okuji's avatar
okuji committed
48

49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
/* The space between numbers is intentional for the simplicity of adding new
   values even if external modules use them. */
typedef enum {
  /* A preboot hook which can use everything and turns nothing off. */
  GRUB_LOADER_PREBOOT_HOOK_PRIO_NORMAL = 400,
  /* A preboot hook which can't use disks and may stop disks. */
  GRUB_LOADER_PREBOOT_HOOK_PRIO_DISK = 300,
  /* A preboot hook which can't use disks or console and may stop console. */
  GRUB_LOADER_PREBOOT_HOOK_PRIO_CONSOLE = 200,
  /* A preboot hook which can't use disks or console, can't modify memory map
     and may stop memory services or finalize memory map. */
  GRUB_LOADER_PREBOOT_HOOK_PRIO_MEMORY = 100,
} grub_loader_preboot_hook_prio_t;

/* Register a preboot hook. */
64 65 66 67 68
struct grub_preboot;

struct grub_preboot *EXPORT_FUNC(grub_loader_register_preboot_hook) (grub_err_t (*preboot_func) (int noret),
								     grub_err_t (*preboot_rest_func) (void),
								     grub_loader_preboot_hook_prio_t prio);
69 70

/* Unregister given preboot hook. */
71
void EXPORT_FUNC (grub_loader_unregister_preboot_hook) (struct grub_preboot *hnd);
72

73 74 75 76 77
#ifndef GRUB_MACHINE_EMU
void grub_boot_init (void);
void grub_boot_fini (void);
#endif

78
#endif /* ! GRUB_LOADER_HEADER */