1 /* testload.c - load the same file in multiple ways */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2003,2005,2006,2007,2009,2010 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/>.
24 #include <grub/misc.h>
25 #include <grub/file.h>
26 #include <grub/disk.h>
27 #include <grub/term.h>
28 #include <grub/loader.h>
29 #include <grub/command.h>
30 #include <grub/i18n.h>
32 GRUB_MOD_LICENSE ("GPLv3+");
34 /* Helper for grub_cmd_testload. */
36 read_progress (grub_disk_addr_t sector
__attribute__ ((unused
)),
37 unsigned offset
__attribute__ ((unused
)),
39 void *data
__attribute__ ((unused
)))
41 for (; len
>= GRUB_DISK_SECTOR_SIZE
; len
-= GRUB_DISK_SECTOR_SIZE
)
49 grub_cmd_testload (struct grub_command
*cmd
__attribute__ ((unused
)),
50 int argc
, char *argv
[])
58 return grub_error (GRUB_ERR_BAD_ARGUMENT
, N_("filename expected"));
60 file
= grub_file_open (argv
[0]);
64 size
= grub_file_size (file
) & ~(GRUB_DISK_SECTOR_SIZE
- 1);
67 grub_file_close (file
);
71 buf
= grub_malloc (size
);
75 grub_printf ("Reading %s sequentially", argv
[0]);
76 file
->read_hook
= read_progress
;
77 if (grub_file_read (file
, buf
, size
) != (grub_ssize_t
) size
)
79 grub_printf (" Done.\n");
81 /* Read sequentially again. */
82 grub_printf ("Reading %s sequentially again", argv
[0]);
83 grub_file_seek (file
, 0);
85 for (pos
= 0; pos
< size
;)
87 char sector
[GRUB_DISK_SECTOR_SIZE
];
88 grub_size_t curlen
= GRUB_DISK_SECTOR_SIZE
;
90 if (curlen
> size
- pos
)
93 if (grub_file_read (file
, sector
, curlen
)
94 != (grub_ssize_t
) curlen
)
97 if (grub_memcmp (sector
, buf
+ pos
, curlen
) != 0)
99 grub_printf ("\nDiffers in %lld\n", (unsigned long long) pos
);
104 grub_printf (" Done.\n");
106 /* Read backwards and compare. */
107 grub_printf ("Reading %s backwards", argv
[0]);
111 char sector
[GRUB_DISK_SECTOR_SIZE
];
113 if (pos
>= GRUB_DISK_SECTOR_SIZE
)
114 pos
-= GRUB_DISK_SECTOR_SIZE
;
118 grub_file_seek (file
, pos
);
120 if (grub_file_read (file
, sector
, GRUB_DISK_SECTOR_SIZE
)
121 != GRUB_DISK_SECTOR_SIZE
)
124 if (grub_memcmp (sector
, buf
+ pos
, GRUB_DISK_SECTOR_SIZE
) != 0)
128 grub_printf ("\nDiffers in %lld\n", (unsigned long long) pos
);
130 for (i
= 0; i
< GRUB_DISK_SECTOR_SIZE
; i
++)
132 grub_printf ("%02x ", buf
[pos
+ i
]);
143 grub_printf (" Done.\n");
145 return GRUB_ERR_NONE
;
149 grub_file_close (file
);
153 grub_error (GRUB_ERR_IO
, "bad read");
157 static grub_command_t cmd
;
159 GRUB_MOD_INIT(testload
)
162 grub_register_command ("testload", grub_cmd_testload
,
164 N_("Load the same file in multiple ways."));
167 GRUB_MOD_FINI(testload
)
169 grub_unregister_command (cmd
);