Indentation fix, cleanup.
[AROS.git] / arch / all-pc / boot / grub2-aros / grub-core / commands / minicmd.c
bloba3a11824172869043cf1a36238d49ae3fa491d15
1 /* minicmd.c - commands for the rescue mode */
2 /*
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/>.
20 #include <grub/dl.h>
21 #include <grub/mm.h>
22 #include <grub/err.h>
23 #include <grub/env.h>
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 /* cat FILE */
35 static grub_err_t
36 grub_mini_cmd_cat (struct grub_command *cmd __attribute__ ((unused)),
37 int argc, char *argv[])
39 grub_file_t file;
40 char buf[GRUB_DISK_SECTOR_SIZE];
41 grub_ssize_t size;
43 if (argc < 1)
44 return grub_error (GRUB_ERR_BAD_ARGUMENT, N_("filename expected"));
46 file = grub_file_open (argv[0]);
47 if (! file)
48 return grub_errno;
50 while ((size = grub_file_read (file, buf, sizeof (buf))) > 0)
52 int i;
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);
60 else
62 grub_setcolorstate (GRUB_TERM_COLOR_HIGHLIGHT);
63 grub_printf ("<%x>", (int) c);
64 grub_setcolorstate (GRUB_TERM_COLOR_STANDARD);
69 grub_xputs ("\n");
70 grub_refresh ();
71 grub_file_close (file);
73 return 0;
76 /* help */
77 static grub_err_t
78 grub_mini_cmd_help (struct grub_command *cmd __attribute__ ((unused)),
79 int argc __attribute__ ((unused)),
80 char *argv[] __attribute__ ((unused)))
82 grub_command_t p;
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) ? '+' : '-',
88 p->description);
90 return 0;
93 /* dump ADDRESS [SIZE] */
94 static grub_err_t
95 grub_mini_cmd_dump (struct grub_command *cmd __attribute__ ((unused)),
96 int argc, char *argv[])
98 grub_uint8_t *addr;
99 grub_size_t size = 4;
101 if (argc == 0)
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
106 #else
107 #define grub_strtoaddr grub_strtoull
108 #endif
110 addr = (grub_uint8_t *) grub_strtoaddr (argv[0], 0, 0);
111 if (grub_errno)
112 return grub_errno;
114 if (argc > 1)
115 size = (grub_size_t) grub_strtoaddr (argv[1], 0, 0);
117 while (size--)
119 grub_printf ("%x%x ", *addr >> 4, *addr & 0xf);
120 addr++;
123 return 0;
126 /* rmmod MODULE */
127 static grub_err_t
128 grub_mini_cmd_rmmod (struct grub_command *cmd __attribute__ ((unused)),
129 int argc, char *argv[])
131 grub_dl_t mod;
133 if (argc == 0)
134 return grub_error (GRUB_ERR_BAD_ARGUMENT, "no module specified");
136 mod = grub_dl_get (argv[0]);
137 if (! mod)
138 return grub_error (GRUB_ERR_BAD_ARGUMENT, "no such module");
140 if (grub_dl_unref (mod) <= 0)
141 grub_dl_unload (mod);
143 return 0;
146 /* lsmod */
147 static grub_err_t
148 grub_mini_cmd_lsmod (struct grub_command *cmd __attribute__ ((unused)),
149 int argc __attribute__ ((unused)),
150 char *argv[] __attribute__ ((unused)))
152 grub_dl_t mod;
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"));
160 FOR_DL_MODULES (mod)
162 grub_dl_dep_t dep;
164 grub_printf ("%s\t%d\t\t", mod->name, mod->ref_count);
165 for (dep = mod->dep; dep; dep = dep->next)
167 if (dep != mod->dep)
168 grub_xputs (",");
170 grub_printf ("%s", dep->mod->name);
172 grub_xputs ("\n");
175 return 0;
178 /* exit */
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)))
184 grub_exit ();
185 /* Not reached. */
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)
193 cmd_cat =
194 grub_register_command ("cat", grub_mini_cmd_cat,
195 N_("FILE"), N_("Show the contents of a file."));
196 cmd_help =
197 grub_register_command ("help", grub_mini_cmd_help,
198 0, N_("Show this message."));
199 cmd_dump =
200 grub_register_command ("dump", grub_mini_cmd_dump,
201 N_("ADDR [SIZE]"), N_("Show memory contents."));
202 cmd_rmmod =
203 grub_register_command ("rmmod", grub_mini_cmd_rmmod,
204 N_("MODULE"), N_("Remove a module."));
205 cmd_lsmod =
206 grub_register_command ("lsmod", grub_mini_cmd_lsmod,
207 0, N_("Show loaded modules."));
208 cmd_exit =
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);