Upgraded GRUB2 to 2.00 release.
[AROS.git] / arch / all-pc / boot / grub2-aros / grub-core / commands / blocklist.c
blob164a6fea31c26f6ffc4db89703c3aa26c3688ea5
1 /* blocklist.c - print the block list of a file */
2 /*
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2006,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/dl.h>
21 #include <grub/misc.h>
22 #include <grub/file.h>
23 #include <grub/mm.h>
24 #include <grub/disk.h>
25 #include <grub/partition.h>
26 #include <grub/command.h>
27 #include <grub/i18n.h>
29 GRUB_MOD_LICENSE ("GPLv3+");
31 static grub_err_t
32 grub_cmd_blocklist (grub_command_t cmd __attribute__ ((unused)),
33 int argc, char **args)
35 grub_file_t file;
36 char buf[GRUB_DISK_SECTOR_SIZE];
37 unsigned long start_sector = 0;
38 unsigned num_sectors = 0;
39 int num_entries = 0;
40 grub_disk_addr_t part_start = 0;
41 auto void NESTED_FUNC_ATTR read_blocklist (grub_disk_addr_t sector, unsigned offset,
42 unsigned length);
43 auto void NESTED_FUNC_ATTR print_blocklist (grub_disk_addr_t sector, unsigned num,
44 unsigned offset, unsigned length);
46 void NESTED_FUNC_ATTR read_blocklist (grub_disk_addr_t sector, unsigned offset,
47 unsigned length)
49 if (num_sectors > 0)
51 if (start_sector + num_sectors == sector
52 && offset == 0 && length == GRUB_DISK_SECTOR_SIZE)
54 num_sectors++;
55 return;
58 print_blocklist (start_sector, num_sectors, 0, 0);
59 num_sectors = 0;
62 if (offset == 0 && length == GRUB_DISK_SECTOR_SIZE)
64 start_sector = sector;
65 num_sectors++;
67 else
68 print_blocklist (sector, 0, offset, length);
71 void NESTED_FUNC_ATTR print_blocklist (grub_disk_addr_t sector, unsigned num,
72 unsigned offset, unsigned length)
74 if (num_entries++)
75 grub_printf (",");
77 grub_printf ("%llu", (unsigned long long) (sector - part_start));
78 if (num > 0)
79 grub_printf ("+%u", num);
80 if (offset != 0 || length != 0)
81 grub_printf ("[%u-%u]", offset, offset + length);
84 if (argc < 1)
85 return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("filename expected"));
87 grub_file_filter_disable_compression ();
88 file = grub_file_open (args[0]);
89 if (! file)
90 return grub_errno;
92 if (! file->device->disk)
93 return grub_error (GRUB_ERR_BAD_DEVICE,
94 "this command is available only for disk devices");
96 part_start = grub_partition_get_start (file->device->disk->partition);
98 file->read_hook = read_blocklist;
100 while (grub_file_read (file, buf, sizeof (buf)) > 0)
103 if (num_sectors > 0)
104 print_blocklist (start_sector, num_sectors, 0, 0);
106 grub_file_close (file);
108 return grub_errno;
111 static grub_command_t cmd;
113 GRUB_MOD_INIT(blocklist)
115 cmd = grub_register_command ("blocklist", grub_cmd_blocklist,
116 N_("FILE"), N_("Print a block list."));
119 GRUB_MOD_FINI(blocklist)
121 grub_unregister_command (cmd);