1 /* minicmd.c - commands for the rescue mode */
3 * GRUB -- GRand Unified Bootloader
4 * Copyright (C) 2003,2005,2006,2007,2009 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+");
36 grub_mini_cmd_cat (struct grub_command
*cmd
__attribute__ ((unused
)),
37 int argc
, char *argv
[])
40 char buf
[GRUB_DISK_SECTOR_SIZE
];
44 return grub_error (GRUB_ERR_BAD_ARGUMENT
, N_("filename expected"));
46 file
= grub_file_open (argv
[0]);
50 while ((size
= grub_file_read (file
, buf
, sizeof (buf
))) > 0)
54 for (i
= 0; i
< size
; i
++)
56 unsigned char c
= buf
[i
];
58 if ((grub_isprint (c
) || grub_isspace (c
)) && c
!= '\r')
59 grub_printf ("%c", c
);
62 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT
);
63 grub_printf ("<%x>", (int) c
);
64 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD
);
71 grub_file_close (file
);
78 grub_mini_cmd_help (struct grub_command
*cmd
__attribute__ ((unused
)),
79 int argc
__attribute__ ((unused
)),
80 char *argv
[] __attribute__ ((unused
)))
84 for (p
= grub_command_list
; p
; p
= p
->next
)
85 grub_printf ("%s (%d%c)\t%s\n", p
->name
,
86 p
->prio
& GRUB_COMMAND_PRIO_MASK
,
87 (p
->prio
& GRUB_COMMAND_FLAG_ACTIVE
) ? '+' : '-',
93 /* dump ADDRESS [SIZE] */
95 grub_mini_cmd_dump (struct grub_command
*cmd
__attribute__ ((unused
)),
96 int argc
, char *argv
[])
102 return grub_error (GRUB_ERR_BAD_ARGUMENT
, "no address specified");
104 #if GRUB_CPU_SIZEOF_VOID_P == GRUB_CPU_SIZEOF_LONG
105 #define grub_strtoaddr grub_strtoul
107 #define grub_strtoaddr grub_strtoull
110 addr
= (grub_uint8_t
*) grub_strtoaddr (argv
[0], 0, 0);
115 size
= (grub_size_t
) grub_strtoaddr (argv
[1], 0, 0);
119 grub_printf ("%x%x ", *addr
>> 4, *addr
& 0xf);
128 grub_mini_cmd_rmmod (struct grub_command
*cmd
__attribute__ ((unused
)),
129 int argc
, char *argv
[])
134 return grub_error (GRUB_ERR_BAD_ARGUMENT
, "no module specified");
136 mod
= grub_dl_get (argv
[0]);
138 return grub_error (GRUB_ERR_BAD_ARGUMENT
, "no such module");
140 if (grub_dl_unref (mod
) <= 0)
141 grub_dl_unload (mod
);
148 grub_mini_cmd_lsmod (struct grub_command
*cmd
__attribute__ ((unused
)),
149 int argc
__attribute__ ((unused
)),
150 char *argv
[] __attribute__ ((unused
)))
154 /* TRANSLATORS: this is module list header. Name
155 is module name, Ref Count is a reference counter
156 (how many modules or open descriptors use it).
157 Dependencies are the other modules it uses.
159 grub_printf_ (N_("Name\tRef Count\tDependencies\n"));
164 grub_printf ("%s\t%d\t\t", mod
->name
, mod
->ref_count
);
165 for (dep
= mod
->dep
; dep
; dep
= dep
->next
)
170 grub_printf ("%s", dep
->mod
->name
);
179 static grub_err_t
__attribute__ ((noreturn
))
180 grub_mini_cmd_exit (struct grub_command
*cmd
__attribute__ ((unused
)),
181 int argc
__attribute__ ((unused
)),
182 char *argv
[] __attribute__ ((unused
)))
188 static grub_command_t cmd_cat
, cmd_help
;
189 static grub_command_t cmd_dump
, cmd_rmmod
, cmd_lsmod
, cmd_exit
;
191 GRUB_MOD_INIT(minicmd
)
194 grub_register_command ("cat", grub_mini_cmd_cat
,
195 N_("FILE"), N_("Show the contents of a file."));
197 grub_register_command ("help", grub_mini_cmd_help
,
198 0, N_("Show this message."));
200 grub_register_command ("dump", grub_mini_cmd_dump
,
201 N_("ADDR [SIZE]"), N_("Show memory contents."));
203 grub_register_command ("rmmod", grub_mini_cmd_rmmod
,
204 N_("MODULE"), N_("Remove a module."));
206 grub_register_command ("lsmod", grub_mini_cmd_lsmod
,
207 0, N_("Show loaded modules."));
209 grub_register_command ("exit", grub_mini_cmd_exit
,
210 0, N_("Exit from GRUB."));
213 GRUB_MOD_FINI(minicmd
)
215 grub_unregister_command (cmd_cat
);
216 grub_unregister_command (cmd_help
);
217 grub_unregister_command (cmd_dump
);
218 grub_unregister_command (cmd_rmmod
);
219 grub_unregister_command (cmd_lsmod
);
220 grub_unregister_command (cmd_exit
);