1 /* hexdump.c - command to dump the contents of a file or memory */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2007 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/normal.h>
23 #include <grub/file.h>
24 #include <grub/disk.h>
25 #include <grub/misc.h>
26 #include <grub/gzio.h>
27 #include <grub/partition.h>
28 #include <grub/lib/hexdump.h>
30 static const struct grub_arg_option options
[] = {
31 {"skip", 's', 0, "skip offset bytes from the beginning of file.", 0,
33 {"length", 'n', 0, "read only length bytes", 0, ARG_TYPE_INT
},
38 grub_cmd_hexdump (struct grub_arg_list
*state
, int argc
, char **args
)
40 char buf
[GRUB_DISK_SECTOR_SIZE
* 4];
41 grub_ssize_t size
, length
;
46 return grub_error (GRUB_ERR_BAD_ARGUMENT
, "file name required");
48 namelen
= grub_strlen (args
[0]);
49 skip
= (state
[0].set
) ? grub_strtoul (state
[0].arg
, 0, 0) : 0;
50 length
= (state
[1].set
) ? grub_strtoul (state
[1].arg
, 0, 0) : 256;
52 if (!grub_strcmp (args
[0], "(mem)"))
53 hexdump (skip
, (char *) skip
, length
);
54 else if ((args
[0][0] == '(') && (args
[0][namelen
- 1] == ')'))
57 grub_disk_addr_t sector
;
60 args
[0][namelen
- 1] = 0;
61 disk
= grub_disk_open (&args
[0][1]);
66 skip
+= grub_partition_get_start (disk
->partition
) << GRUB_DISK_SECTOR_BITS
;
68 sector
= (skip
>> (GRUB_DISK_SECTOR_BITS
+ 2)) * 4;
69 ofs
= skip
& (GRUB_DISK_SECTOR_SIZE
* 4 - 1);
75 if (ofs
+ len
> sizeof (buf
))
76 len
= sizeof (buf
) - ofs
;
78 n
= ((ofs
+ len
+ GRUB_DISK_SECTOR_SIZE
- 1)
79 >> GRUB_DISK_SECTOR_BITS
);
80 if (disk
->dev
->read (disk
, sector
, n
, buf
))
83 hexdump (skip
, &buf
[ofs
], len
);
91 grub_disk_close (disk
);
97 file
= grub_gzfile_open (args
[0], 1);
103 while ((size
= grub_file_read (file
, buf
, sizeof (buf
))) > 0)
107 len
= ((length
) && (size
> length
)) ? length
: size
;
108 hexdump (skip
, buf
, len
);
118 grub_file_close (file
);
125 GRUB_MOD_INIT (hexdump
)
127 (void) mod
; /* To stop warning. */
128 grub_register_command ("hexdump", grub_cmd_hexdump
, GRUB_COMMAND_FLAG_BOTH
,
129 "hexdump [OPTIONS] FILE_OR_DEVICE",
130 "Dump the contents of a file or memory.", options
);
133 GRUB_MOD_FINI (hexdump
)
135 grub_unregister_command ("hexdump");