1 /* memdisk.c - Access embedded memory disk. */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2007,2008 Free Software Foundation, Inc.
6 * GRUB is free software: you can redistribute it and/or modify
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
9 * (at your option) any later version.
11 * GRUB is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 #include <grub/disk.h>
22 #include <grub/kernel.h>
23 #include <grub/misc.h>
25 #include <grub/types.h>
27 GRUB_MOD_LICENSE ("GPLv3+");
29 static char *memdisk_addr
;
30 static grub_off_t memdisk_size
= 0;
33 grub_memdisk_iterate (grub_disk_dev_iterate_hook_t hook
, void *hook_data
,
34 grub_disk_pull_t pull
)
36 if (pull
!= GRUB_DISK_PULL_NONE
)
39 return hook ("memdisk", hook_data
);
43 grub_memdisk_open (const char *name
, grub_disk_t disk
)
45 if (grub_strcmp (name
, "memdisk"))
46 return grub_error (GRUB_ERR_UNKNOWN_DEVICE
, "not a memdisk");
48 disk
->total_sectors
= memdisk_size
/ GRUB_DISK_SECTOR_SIZE
;
49 disk
->max_agglomerate
= GRUB_DISK_MAX_MAX_AGGLOMERATE
;
56 grub_memdisk_close (grub_disk_t disk
__attribute((unused
)))
61 grub_memdisk_read (grub_disk_t disk
__attribute((unused
)), grub_disk_addr_t sector
,
62 grub_size_t size
, char *buf
)
64 grub_memcpy (buf
, memdisk_addr
+ (sector
<< GRUB_DISK_SECTOR_BITS
), size
<< GRUB_DISK_SECTOR_BITS
);
69 grub_memdisk_write (grub_disk_t disk
__attribute((unused
)), grub_disk_addr_t sector
,
70 grub_size_t size
, const char *buf
)
72 grub_memcpy (memdisk_addr
+ (sector
<< GRUB_DISK_SECTOR_BITS
), buf
, size
<< GRUB_DISK_SECTOR_BITS
);
76 static struct grub_disk_dev grub_memdisk_dev
=
79 .id
= GRUB_DISK_DEVICE_MEMDISK_ID
,
80 .iterate
= grub_memdisk_iterate
,
81 .open
= grub_memdisk_open
,
82 .close
= grub_memdisk_close
,
83 .read
= grub_memdisk_read
,
84 .write
= grub_memdisk_write
,
88 GRUB_MOD_INIT(memdisk
)
90 struct grub_module_header
*header
;
92 if (header
->type
== OBJ_TYPE_MEMDISK
)
94 char *memdisk_orig_addr
;
95 memdisk_orig_addr
= (char *) header
+ sizeof (struct grub_module_header
);
97 grub_dprintf ("memdisk", "Found memdisk image at %p\n", memdisk_orig_addr
);
99 memdisk_size
= header
->size
- sizeof (struct grub_module_header
);
100 memdisk_addr
= grub_malloc (memdisk_size
);
102 grub_dprintf ("memdisk", "Copying memdisk image to dynamic memory\n");
103 grub_memmove (memdisk_addr
, memdisk_orig_addr
, memdisk_size
);
105 grub_disk_dev_register (&grub_memdisk_dev
);
110 GRUB_MOD_FINI(memdisk
)
114 grub_free (memdisk_addr
);
115 grub_disk_dev_unregister (&grub_memdisk_dev
);