[2677758] | 1 | /*
|
---|
[df4ed85] | 2 | * Copyright (c) 2005 Jakub Jermar
|
---|
[2677758] | 3 | * All rights reserved.
|
---|
| 4 | *
|
---|
| 5 | * Redistribution and use in source and binary forms, with or without
|
---|
| 6 | * modification, are permitted provided that the following conditions
|
---|
| 7 | * are met:
|
---|
| 8 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[06e1e95] | 29 | /** @addtogroup genericconsole
|
---|
[b45c443] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 |
|
---|
[cf26ba9] | 33 | /**
|
---|
[d6c8ff6] | 34 | * @file kconsole.c
|
---|
| 35 | * @brief Kernel console.
|
---|
[cf26ba9] | 36 | *
|
---|
| 37 | * This file contains kernel thread managing the kernel console.
|
---|
[d6c8ff6] | 38 | *
|
---|
[cf26ba9] | 39 | */
|
---|
| 40 |
|
---|
[f4338d2] | 41 | #include <console/kconsole.h>
|
---|
[2677758] | 42 | #include <console/console.h>
|
---|
| 43 | #include <console/chardev.h>
|
---|
[442d0ae] | 44 | #include <console/cmd.h>
|
---|
[2677758] | 45 | #include <print.h>
|
---|
[ff3b3197] | 46 | #include <panic.h>
|
---|
[2677758] | 47 | #include <arch/types.h>
|
---|
[5c9a08b] | 48 | #include <adt/list.h>
|
---|
[ff3b3197] | 49 | #include <arch.h>
|
---|
| 50 | #include <macros.h>
|
---|
[f4338d2] | 51 | #include <debug.h>
|
---|
[442d0ae] | 52 | #include <func.h>
|
---|
[16da5f8e] | 53 | #include <string.h>
|
---|
[e07fe0c] | 54 | #include <macros.h>
|
---|
[3ad953c] | 55 | #include <sysinfo/sysinfo.h>
|
---|
| 56 | #include <ddi/device.h>
|
---|
[e2b762ec] | 57 | #include <symtab.h>
|
---|
[e16e0d59] | 58 | #include <errno.h>
|
---|
[eec616b] | 59 | #include <putchar.h>
|
---|
[d6c8ff6] | 60 | #include <string.h>
|
---|
[e2b762ec] | 61 |
|
---|
[ff3b3197] | 62 | /** Simple kernel console.
|
---|
| 63 | *
|
---|
| 64 | * The console is realized by kernel thread kconsole.
|
---|
[f4338d2] | 65 | * It doesn't understand any useful command on its own,
|
---|
| 66 | * but makes it possible for other kernel subsystems to
|
---|
[ff3b3197] | 67 | * register their own commands.
|
---|
| 68 | */
|
---|
[d6c8ff6] | 69 |
|
---|
[ff3b3197] | 70 | /** Locking.
|
---|
| 71 | *
|
---|
| 72 | * There is a list of cmd_info_t structures. This list
|
---|
| 73 | * is protected by cmd_lock spinlock. Note that specially
|
---|
| 74 | * the link elements of cmd_info_t are protected by
|
---|
| 75 | * this lock.
|
---|
| 76 | *
|
---|
| 77 | * Each cmd_info_t also has its own lock, which protects
|
---|
| 78 | * all elements thereof except the link element.
|
---|
| 79 | *
|
---|
| 80 | * cmd_lock must be acquired before any cmd_info lock.
|
---|
| 81 | * When locking two cmd info structures, structure with
|
---|
| 82 | * lower address must be locked first.
|
---|
| 83 | */
|
---|
| 84 |
|
---|
[d6c8ff6] | 85 | SPINLOCK_INITIALIZE(cmd_lock); /**< Lock protecting command list. */
|
---|
| 86 | LIST_INITIALIZE(cmd_head); /**< Command list. */
|
---|
| 87 |
|
---|
| 88 | static wchar_t history[KCONSOLE_HISTORY][MAX_CMDLINE] = {};
|
---|
[98000fb] | 89 | static size_t history_pos = 0;
|
---|
[ff3b3197] | 90 |
|
---|
[3ad953c] | 91 | /** Initialize kconsole data structures
|
---|
| 92 | *
|
---|
| 93 | * This is the most basic initialization, almost no
|
---|
| 94 | * other kernel subsystem is ready yet.
|
---|
| 95 | *
|
---|
| 96 | */
|
---|
[ff3b3197] | 97 | void kconsole_init(void)
|
---|
| 98 | {
|
---|
[3ad953c] | 99 | unsigned int i;
|
---|
[d6c8ff6] | 100 |
|
---|
[442d0ae] | 101 | cmd_init();
|
---|
[cf5ddf6] | 102 | for (i = 0; i < KCONSOLE_HISTORY; i++)
|
---|
[d6c8ff6] | 103 | history[i][0] = 0;
|
---|
[ff3b3197] | 104 | }
|
---|
| 105 |
|
---|
| 106 | /** Register kconsole command.
|
---|
| 107 | *
|
---|
| 108 | * @param cmd Structure describing the command.
|
---|
| 109 | *
|
---|
[d6c8ff6] | 110 | * @return False on failure, true on success.
|
---|
| 111 | *
|
---|
[ff3b3197] | 112 | */
|
---|
[d6c8ff6] | 113 | bool cmd_register(cmd_info_t *cmd)
|
---|
[ff3b3197] | 114 | {
|
---|
| 115 | link_t *cur;
|
---|
| 116 |
|
---|
| 117 | spinlock_lock(&cmd_lock);
|
---|
| 118 |
|
---|
| 119 | /*
|
---|
| 120 | * Make sure the command is not already listed.
|
---|
| 121 | */
|
---|
| 122 | for (cur = cmd_head.next; cur != &cmd_head; cur = cur->next) {
|
---|
[d6c8ff6] | 123 | cmd_info_t *hlp = list_get_instance(cur, cmd_info_t, link);
|
---|
[ff3b3197] | 124 |
|
---|
| 125 | if (hlp == cmd) {
|
---|
| 126 | /* The command is already there. */
|
---|
| 127 | spinlock_unlock(&cmd_lock);
|
---|
[d6c8ff6] | 128 | return false;
|
---|
[ff3b3197] | 129 | }
|
---|
[d6c8ff6] | 130 |
|
---|
[ff3b3197] | 131 | /* Avoid deadlock. */
|
---|
| 132 | if (hlp < cmd) {
|
---|
| 133 | spinlock_lock(&hlp->lock);
|
---|
| 134 | spinlock_lock(&cmd->lock);
|
---|
| 135 | } else {
|
---|
| 136 | spinlock_lock(&cmd->lock);
|
---|
| 137 | spinlock_lock(&hlp->lock);
|
---|
| 138 | }
|
---|
[d6c8ff6] | 139 |
|
---|
| 140 | if (str_cmp(hlp->name, cmd->name) == 0) {
|
---|
[ff3b3197] | 141 | /* The command is already there. */
|
---|
| 142 | spinlock_unlock(&hlp->lock);
|
---|
| 143 | spinlock_unlock(&cmd->lock);
|
---|
| 144 | spinlock_unlock(&cmd_lock);
|
---|
[d6c8ff6] | 145 | return false;
|
---|
[ff3b3197] | 146 | }
|
---|
| 147 |
|
---|
| 148 | spinlock_unlock(&hlp->lock);
|
---|
| 149 | spinlock_unlock(&cmd->lock);
|
---|
| 150 | }
|
---|
| 151 |
|
---|
| 152 | /*
|
---|
| 153 | * Now the command can be added.
|
---|
| 154 | */
|
---|
| 155 | list_append(&cmd->link, &cmd_head);
|
---|
| 156 |
|
---|
| 157 | spinlock_unlock(&cmd_lock);
|
---|
[d6c8ff6] | 158 | return true;
|
---|
[ff3b3197] | 159 | }
|
---|
[2677758] | 160 |
|
---|
[07bd114e] | 161 | /** Print count times a character */
|
---|
[98000fb] | 162 | static void print_cc(wchar_t ch, size_t count)
|
---|
[0c8e692] | 163 | {
|
---|
[98000fb] | 164 | size_t i;
|
---|
[cf5ddf6] | 165 | for (i = 0; i < count; i++)
|
---|
[0c8e692] | 166 | putchar(ch);
|
---|
| 167 | }
|
---|
| 168 |
|
---|
[2cf87e50] | 169 | /** Try to find a command beginning with prefix */
|
---|
[d6c8ff6] | 170 | static const char *cmdtab_search_one(const char *name, link_t **startpos)
|
---|
[0c8e692] | 171 | {
|
---|
[98000fb] | 172 | size_t namelen = str_length(name);
|
---|
[d6c8ff6] | 173 |
|
---|
[0c8e692] | 174 | spinlock_lock(&cmd_lock);
|
---|
[d6c8ff6] | 175 |
|
---|
| 176 | if (*startpos == NULL)
|
---|
[0c8e692] | 177 | *startpos = cmd_head.next;
|
---|
[d6c8ff6] | 178 |
|
---|
[cf5ddf6] | 179 | for (; *startpos != &cmd_head; *startpos = (*startpos)->next) {
|
---|
[d6c8ff6] | 180 | cmd_info_t *hlp = list_get_instance(*startpos, cmd_info_t, link);
|
---|
| 181 |
|
---|
| 182 | const char *curname = hlp->name;
|
---|
| 183 | if (str_length(curname) < namelen)
|
---|
[0c8e692] | 184 | continue;
|
---|
[d6c8ff6] | 185 |
|
---|
| 186 | if (str_lcmp(curname, name, namelen) == 0) {
|
---|
| 187 | spinlock_unlock(&cmd_lock);
|
---|
| 188 | return (curname + str_lsize(curname, namelen));
|
---|
[0c8e692] | 189 | }
|
---|
| 190 | }
|
---|
[d6c8ff6] | 191 |
|
---|
| 192 | spinlock_unlock(&cmd_lock);
|
---|
[0c8e692] | 193 | return NULL;
|
---|
| 194 | }
|
---|
| 195 |
|
---|
[d6c8ff6] | 196 | /** Command completion of the commands
|
---|
| 197 | *
|
---|
| 198 | * @param name String to match, changed to hint on exit
|
---|
| 199 | * @param size Input buffer size
|
---|
| 200 | *
|
---|
| 201 | * @return Number of found matches
|
---|
[0c8e692] | 202 | *
|
---|
| 203 | */
|
---|
[d6c8ff6] | 204 | static int cmdtab_compl(char *input, size_t size)
|
---|
[0c8e692] | 205 | {
|
---|
[d6c8ff6] | 206 | const char *name = input;
|
---|
| 207 |
|
---|
[98000fb] | 208 | size_t found = 0;
|
---|
[d6c8ff6] | 209 | link_t *pos = NULL;
|
---|
| 210 | const char *hint;
|
---|
| 211 | char output[MAX_CMDLINE];
|
---|
| 212 |
|
---|
| 213 | output[0] = 0;
|
---|
| 214 |
|
---|
| 215 | while ((hint = cmdtab_search_one(name, &pos))) {
|
---|
| 216 | if ((found == 0) || (str_length(output) > str_length(hint)))
|
---|
[f4b1535] | 217 | str_cpy(output, MAX_CMDLINE, hint);
|
---|
[d6c8ff6] | 218 |
|
---|
| 219 | pos = pos->next;
|
---|
[0c8e692] | 220 | found++;
|
---|
| 221 | }
|
---|
[d6c8ff6] | 222 |
|
---|
| 223 | if ((found > 1) && (str_length(output) != 0)) {
|
---|
[0c8e692] | 224 | printf("\n");
|
---|
[d6c8ff6] | 225 | pos = NULL;
|
---|
| 226 | while ((hint = cmdtab_search_one(name, &pos))) {
|
---|
| 227 | cmd_info_t *hlp = list_get_instance(pos, cmd_info_t, link);
|
---|
| 228 | printf("%s (%s)\n", hlp->name, hlp->description);
|
---|
| 229 | pos = pos->next;
|
---|
[0c8e692] | 230 | }
|
---|
| 231 | }
|
---|
[d6c8ff6] | 232 |
|
---|
| 233 | if (found > 0)
|
---|
[f4b1535] | 234 | str_cpy(input, size, output);
|
---|
[d6c8ff6] | 235 |
|
---|
[0c8e692] | 236 | return found;
|
---|
| 237 | }
|
---|
| 238 |
|
---|
[d6c8ff6] | 239 | static wchar_t *clever_readline(const char *prompt, indev_t *indev)
|
---|
[0c8e692] | 240 | {
|
---|
| 241 | printf("%s> ", prompt);
|
---|
[d6c8ff6] | 242 |
|
---|
[98000fb] | 243 | size_t position = 0;
|
---|
[d6c8ff6] | 244 | wchar_t *current = history[history_pos];
|
---|
| 245 | current[0] = 0;
|
---|
| 246 |
|
---|
| 247 | while (true) {
|
---|
[44b7783] | 248 | wchar_t ch = indev_pop_character(indev);
|
---|
[d6c8ff6] | 249 |
|
---|
| 250 | if (ch == '\n') {
|
---|
| 251 | /* Enter */
|
---|
| 252 | putchar(ch);
|
---|
[0c8e692] | 253 | break;
|
---|
[5d67baa] | 254 | }
|
---|
[d6c8ff6] | 255 |
|
---|
| 256 | if (ch == '\b') {
|
---|
| 257 | /* Backspace */
|
---|
[0c8e692] | 258 | if (position == 0)
|
---|
| 259 | continue;
|
---|
[d6c8ff6] | 260 |
|
---|
| 261 | if (wstr_remove(current, position - 1)) {
|
---|
| 262 | position--;
|
---|
[c8bf88d] | 263 | putchar('\b');
|
---|
| 264 | printf("%ls ", current + position);
|
---|
| 265 | print_cc('\b', wstr_length(current) - position + 1);
|
---|
[d6c8ff6] | 266 | continue;
|
---|
| 267 | }
|
---|
[0c8e692] | 268 | }
|
---|
[d6c8ff6] | 269 |
|
---|
| 270 | if (ch == '\t') {
|
---|
| 271 | /* Tab completion */
|
---|
| 272 |
|
---|
[0c8e692] | 273 | /* Move to the end of the word */
|
---|
[d6c8ff6] | 274 | for (; (current[position] != 0) && (!isspace(current[position]));
|
---|
[cf5ddf6] | 275 | position++)
|
---|
[0c8e692] | 276 | putchar(current[position]);
|
---|
[d6c8ff6] | 277 |
|
---|
| 278 | if (position == 0)
|
---|
| 279 | continue;
|
---|
| 280 |
|
---|
| 281 | /* Find the beginning of the word
|
---|
| 282 | and copy it to tmp */
|
---|
[98000fb] | 283 | size_t beg;
|
---|
[d6c8ff6] | 284 | for (beg = position - 1; (beg > 0) && (!isspace(current[beg]));
|
---|
| 285 | beg--);
|
---|
| 286 |
|
---|
| 287 | if (isspace(current[beg]))
|
---|
| 288 | beg++;
|
---|
| 289 |
|
---|
| 290 | char tmp[STR_BOUNDS(MAX_CMDLINE)];
|
---|
| 291 | wstr_nstr(tmp, current + beg, position - beg + 1);
|
---|
| 292 |
|
---|
| 293 | int found;
|
---|
| 294 | if (beg == 0) {
|
---|
| 295 | /* Command completion */
|
---|
| 296 | found = cmdtab_compl(tmp, STR_BOUNDS(MAX_CMDLINE));
|
---|
| 297 | } else {
|
---|
| 298 | /* Symbol completion */
|
---|
| 299 | found = symtab_compl(tmp, STR_BOUNDS(MAX_CMDLINE));
|
---|
[0c8e692] | 300 | }
|
---|
[d6c8ff6] | 301 |
|
---|
| 302 | if (found == 0)
|
---|
[0c8e692] | 303 | continue;
|
---|
[d6c8ff6] | 304 |
|
---|
[37c312a] | 305 | if (found > 1) {
|
---|
| 306 | /* No unique hint, list was printed */
|
---|
| 307 | printf("%s> ", prompt);
|
---|
| 308 | printf("%ls", current);
|
---|
| 309 | print_cc('\b', wstr_length(current) - position);
|
---|
| 310 | continue;
|
---|
| 311 | }
|
---|
| 312 |
|
---|
| 313 | /* We have a hint */
|
---|
| 314 |
|
---|
[d6c8ff6] | 315 | size_t off = 0;
|
---|
[98000fb] | 316 | size_t i = 0;
|
---|
[d6c8ff6] | 317 | while ((ch = str_decode(tmp, &off, STR_NO_LIMIT)) != 0) {
|
---|
| 318 | if (!wstr_linsert(current, ch, position + i, MAX_CMDLINE))
|
---|
| 319 | break;
|
---|
| 320 | i++;
|
---|
| 321 | }
|
---|
| 322 |
|
---|
[37c312a] | 323 | printf("%ls", current + position);
|
---|
| 324 | position += str_length(tmp);
|
---|
| 325 | print_cc('\b', wstr_length(current) - position);
|
---|
| 326 |
|
---|
| 327 | if (position == wstr_length(current)) {
|
---|
| 328 | /* Insert a space after the last completed argument */
|
---|
| 329 | if (wstr_linsert(current, ' ', position, MAX_CMDLINE)) {
|
---|
| 330 | printf("%ls", current + position);
|
---|
| 331 | position++;
|
---|
[0c8e692] | 332 | }
|
---|
| 333 | }
|
---|
| 334 | continue;
|
---|
| 335 | }
|
---|
[d6c8ff6] | 336 |
|
---|
[c8bf88d] | 337 | if (ch == U_LEFT_ARROW) {
|
---|
| 338 | /* Left */
|
---|
| 339 | if (position > 0) {
|
---|
| 340 | putchar('\b');
|
---|
| 341 | position--;
|
---|
| 342 | }
|
---|
| 343 | continue;
|
---|
| 344 | }
|
---|
| 345 |
|
---|
| 346 | if (ch == U_RIGHT_ARROW) {
|
---|
| 347 | /* Right */
|
---|
| 348 | if (position < wstr_length(current)) {
|
---|
| 349 | putchar(current[position]);
|
---|
| 350 | position++;
|
---|
| 351 | }
|
---|
| 352 | continue;
|
---|
| 353 | }
|
---|
| 354 |
|
---|
| 355 | if ((ch == U_UP_ARROW) || (ch == U_DOWN_ARROW)) {
|
---|
| 356 | /* Up, down */
|
---|
| 357 | print_cc('\b', position);
|
---|
| 358 | print_cc(' ', wstr_length(current));
|
---|
| 359 | print_cc('\b', wstr_length(current));
|
---|
[d6c8ff6] | 360 |
|
---|
[c8bf88d] | 361 | if (ch == U_UP_ARROW) {
|
---|
| 362 | /* Up */
|
---|
| 363 | if (history_pos == 0)
|
---|
| 364 | history_pos = KCONSOLE_HISTORY - 1;
|
---|
| 365 | else
|
---|
| 366 | history_pos--;
|
---|
| 367 | } else {
|
---|
| 368 | /* Down */
|
---|
| 369 | history_pos++;
|
---|
| 370 | history_pos = history_pos % KCONSOLE_HISTORY;
|
---|
| 371 | }
|
---|
| 372 | current = history[history_pos];
|
---|
| 373 | printf("%ls", current);
|
---|
| 374 | position = wstr_length(current);
|
---|
| 375 | continue;
|
---|
| 376 | }
|
---|
| 377 |
|
---|
| 378 | if (ch == U_HOME_ARROW) {
|
---|
| 379 | /* Home */
|
---|
| 380 | print_cc('\b', position);
|
---|
| 381 | position = 0;
|
---|
| 382 | continue;
|
---|
| 383 | }
|
---|
| 384 |
|
---|
| 385 | if (ch == U_END_ARROW) {
|
---|
| 386 | /* End */
|
---|
| 387 | printf("%ls", current + position);
|
---|
| 388 | position = wstr_length(current);
|
---|
| 389 | continue;
|
---|
| 390 | }
|
---|
| 391 |
|
---|
| 392 | if (ch == U_DELETE) {
|
---|
| 393 | /* Delete */
|
---|
| 394 | if (position == wstr_length(current))
|
---|
[0c8e692] | 395 | continue;
|
---|
[d6c8ff6] | 396 |
|
---|
[c8bf88d] | 397 | if (wstr_remove(current, position)) {
|
---|
| 398 | printf("%ls ", current + position);
|
---|
| 399 | print_cc('\b', wstr_length(current) - position + 1);
|
---|
[0c8e692] | 400 | }
|
---|
| 401 | continue;
|
---|
| 402 | }
|
---|
[d6c8ff6] | 403 |
|
---|
| 404 | if (wstr_linsert(current, ch, position, MAX_CMDLINE)) {
|
---|
| 405 | printf("%ls", current + position);
|
---|
| 406 | position++;
|
---|
| 407 | print_cc('\b', wstr_length(current) - position);
|
---|
| 408 | }
|
---|
[ba276f7] | 409 | }
|
---|
[a02e383] | 410 |
|
---|
[d6c8ff6] | 411 | if (wstr_length(current) > 0) {
|
---|
| 412 | history_pos++;
|
---|
| 413 | history_pos = history_pos % KCONSOLE_HISTORY;
|
---|
[2677758] | 414 | }
|
---|
| 415 |
|
---|
[d6c8ff6] | 416 | return current;
|
---|
[2677758] | 417 | }
|
---|
[ff3b3197] | 418 |
|
---|
[d6c8ff6] | 419 | bool kconsole_check_poll(void)
|
---|
[76fca31] | 420 | {
|
---|
[d6c8ff6] | 421 | return check_poll(stdin);
|
---|
[76fca31] | 422 | }
|
---|
| 423 |
|
---|
[d6c8ff6] | 424 | static bool parse_int_arg(const char *text, size_t len, unative_t *result)
|
---|
[91c78c9] | 425 | {
|
---|
| 426 | bool isaddr = false;
|
---|
[e5fcf00] | 427 | bool isptr = false;
|
---|
[91c78c9] | 428 |
|
---|
| 429 | /* If we get a name, try to find it in symbol table */
|
---|
[d0da921] | 430 | if (text[0] == '&') {
|
---|
| 431 | isaddr = true;
|
---|
[cf5ddf6] | 432 | text++;
|
---|
| 433 | len--;
|
---|
[d0da921] | 434 | } else if (text[0] == '*') {
|
---|
| 435 | isptr = true;
|
---|
[cf5ddf6] | 436 | text++;
|
---|
| 437 | len--;
|
---|
[d0da921] | 438 | }
|
---|
[d6c8ff6] | 439 |
|
---|
| 440 | if ((text[0] < '0') || (text[0] > '9')) {
|
---|
| 441 | char symname[MAX_SYMBOL_NAME];
|
---|
[f4b1535] | 442 | str_ncpy(symname, MAX_SYMBOL_NAME, text, len + 1);
|
---|
[d6c8ff6] | 443 |
|
---|
| 444 | uintptr_t symaddr;
|
---|
| 445 | int rc = symtab_addr_lookup(symname, &symaddr);
|
---|
[e16e0d59] | 446 | switch (rc) {
|
---|
| 447 | case ENOENT:
|
---|
[cf5ddf6] | 448 | printf("Symbol %s not found.\n", symname);
|
---|
[d6c8ff6] | 449 | return false;
|
---|
[e16e0d59] | 450 | case EOVERFLOW:
|
---|
[cf5ddf6] | 451 | printf("Duplicate symbol %s.\n", symname);
|
---|
[91c78c9] | 452 | symtab_print_search(symname);
|
---|
[d6c8ff6] | 453 | return false;
|
---|
| 454 | case ENOTSUP:
|
---|
[e16e0d59] | 455 | printf("No symbol information available.\n");
|
---|
[d6c8ff6] | 456 | return false;
|
---|
[91c78c9] | 457 | }
|
---|
[d6c8ff6] | 458 |
|
---|
[c102a5c8] | 459 | if (isaddr)
|
---|
[d6c8ff6] | 460 | *result = (unative_t) symaddr;
|
---|
[c102a5c8] | 461 | else if (isptr)
|
---|
[d6c8ff6] | 462 | *result = **((unative_t **) symaddr);
|
---|
[c102a5c8] | 463 | else
|
---|
[d6c8ff6] | 464 | *result = *((unative_t *) symaddr);
|
---|
| 465 | } else {
|
---|
| 466 | /* It's a number - convert it */
|
---|
[91c78c9] | 467 | *result = atoi(text);
|
---|
[c102a5c8] | 468 | if (isptr)
|
---|
[d6c8ff6] | 469 | *result = *((unative_t *) *result);
|
---|
[c102a5c8] | 470 | }
|
---|
[d6c8ff6] | 471 |
|
---|
| 472 | return true;
|
---|
| 473 | }
|
---|
[d0da921] | 474 |
|
---|
[d6c8ff6] | 475 | /** Parse argument.
|
---|
| 476 | *
|
---|
| 477 | * Find start and end positions of command line argument.
|
---|
| 478 | *
|
---|
| 479 | * @param cmdline Command line as read from the input device.
|
---|
| 480 | * @param size Size (in bytes) of the string.
|
---|
| 481 | * @param start On entry, 'start' contains pointer to the offset
|
---|
| 482 | * of the first unprocessed character of cmdline.
|
---|
| 483 | * On successful exit, it marks beginning of the next argument.
|
---|
| 484 | * @param end Undefined on entry. On exit, 'end' is the offset of the first
|
---|
| 485 | * character behind the next argument.
|
---|
| 486 | *
|
---|
| 487 | * @return False on failure, true on success.
|
---|
| 488 | *
|
---|
| 489 | */
|
---|
| 490 | static bool parse_argument(const char *cmdline, size_t size, size_t *start, size_t *end)
|
---|
| 491 | {
|
---|
| 492 | ASSERT(start != NULL);
|
---|
| 493 | ASSERT(end != NULL);
|
---|
| 494 |
|
---|
| 495 | bool found_start = false;
|
---|
| 496 | size_t offset = *start;
|
---|
| 497 | size_t prev = *start;
|
---|
| 498 | wchar_t ch;
|
---|
| 499 |
|
---|
| 500 | while ((ch = str_decode(cmdline, &offset, size)) != 0) {
|
---|
| 501 | if (!found_start) {
|
---|
| 502 | if (!isspace(ch)) {
|
---|
| 503 | *start = prev;
|
---|
| 504 | found_start = true;
|
---|
| 505 | }
|
---|
| 506 | } else {
|
---|
| 507 | if (isspace(ch))
|
---|
| 508 | break;
|
---|
| 509 | }
|
---|
| 510 |
|
---|
| 511 | prev = offset;
|
---|
| 512 | }
|
---|
[a7b1071] | 513 | *end = prev;
|
---|
[d6c8ff6] | 514 |
|
---|
| 515 | return found_start;
|
---|
[91c78c9] | 516 | }
|
---|
| 517 |
|
---|
[ff3b3197] | 518 | /** Parse command line.
|
---|
| 519 | *
|
---|
[d6c8ff6] | 520 | * @param cmdline Command line as read from input device.
|
---|
| 521 | * @param size Size (in bytes) of the string.
|
---|
[ff3b3197] | 522 | *
|
---|
| 523 | * @return Structure describing the command.
|
---|
[d6c8ff6] | 524 | *
|
---|
[ff3b3197] | 525 | */
|
---|
[d6c8ff6] | 526 | static cmd_info_t *parse_cmdline(const char *cmdline, size_t size)
|
---|
[ff3b3197] | 527 | {
|
---|
[d6c8ff6] | 528 | size_t start = 0;
|
---|
| 529 | size_t end = 0;
|
---|
| 530 | if (!parse_argument(cmdline, size, &start, &end)) {
|
---|
[ff3b3197] | 531 | /* Command line did not contain alphanumeric word. */
|
---|
| 532 | return NULL;
|
---|
| 533 | }
|
---|
| 534 | spinlock_lock(&cmd_lock);
|
---|
| 535 |
|
---|
[d6c8ff6] | 536 | cmd_info_t *cmd = NULL;
|
---|
| 537 | link_t *cur;
|
---|
| 538 |
|
---|
[ff3b3197] | 539 | for (cur = cmd_head.next; cur != &cmd_head; cur = cur->next) {
|
---|
[d6c8ff6] | 540 | cmd_info_t *hlp = list_get_instance(cur, cmd_info_t, link);
|
---|
[ff3b3197] | 541 | spinlock_lock(&hlp->lock);
|
---|
| 542 |
|
---|
[d6c8ff6] | 543 | if (str_lcmp(hlp->name, cmdline + start,
|
---|
| 544 | max(str_length(hlp->name),
|
---|
[98000fb] | 545 | str_nlength(cmdline + start, (size_t) (end - start) - 1))) == 0) {
|
---|
[ff3b3197] | 546 | cmd = hlp;
|
---|
| 547 | break;
|
---|
| 548 | }
|
---|
| 549 |
|
---|
| 550 | spinlock_unlock(&hlp->lock);
|
---|
| 551 | }
|
---|
| 552 |
|
---|
[d6c8ff6] | 553 | spinlock_unlock(&cmd_lock);
|
---|
[ff3b3197] | 554 |
|
---|
| 555 | if (!cmd) {
|
---|
| 556 | /* Unknown command. */
|
---|
[f4338d2] | 557 | printf("Unknown command.\n");
|
---|
[ff3b3197] | 558 | return NULL;
|
---|
| 559 | }
|
---|
[d6c8ff6] | 560 |
|
---|
[ff3b3197] | 561 | /* cmd == hlp is locked */
|
---|
| 562 |
|
---|
| 563 | /*
|
---|
| 564 | * The command line must be further analyzed and
|
---|
| 565 | * the parameters therefrom must be matched and
|
---|
| 566 | * converted to those specified in the cmd info
|
---|
| 567 | * structure.
|
---|
| 568 | */
|
---|
[d6c8ff6] | 569 |
|
---|
| 570 | bool error = false;
|
---|
[98000fb] | 571 | size_t i;
|
---|
[f4338d2] | 572 | for (i = 0; i < cmd->argc; i++) {
|
---|
[d6c8ff6] | 573 | start = end;
|
---|
| 574 | if (!parse_argument(cmdline, size, &start, &end)) {
|
---|
[f4338d2] | 575 | printf("Too few arguments.\n");
|
---|
| 576 | spinlock_unlock(&cmd->lock);
|
---|
| 577 | return NULL;
|
---|
| 578 | }
|
---|
| 579 |
|
---|
[d6c8ff6] | 580 | char *buf;
|
---|
[f4338d2] | 581 | switch (cmd->argv[i].type) {
|
---|
[6e716a59] | 582 | case ARG_TYPE_STRING:
|
---|
[093752c] | 583 | buf = (char *) cmd->argv[i].buffer;
|
---|
[f4b1535] | 584 | str_ncpy(buf, cmd->argv[i].len, cmdline + start,
|
---|
[87d71bf] | 585 | end - start);
|
---|
[f4338d2] | 586 | break;
|
---|
[d6c8ff6] | 587 | case ARG_TYPE_INT:
|
---|
| 588 | if (!parse_int_arg(cmdline + start, end - start,
|
---|
[cf5ddf6] | 589 | &cmd->argv[i].intval))
|
---|
[d6c8ff6] | 590 | error = true;
|
---|
[6e716a59] | 591 | break;
|
---|
[91c78c9] | 592 | case ARG_TYPE_VAR:
|
---|
[d6c8ff6] | 593 | if ((start < end - 1) && (cmdline[start] == '"')) {
|
---|
| 594 | if (cmdline[end - 1] == '"') {
|
---|
| 595 | buf = (char *) cmd->argv[i].buffer;
|
---|
[f4b1535] | 596 | str_ncpy(buf, cmd->argv[i].len,
|
---|
| 597 | cmdline + start + 1,
|
---|
| 598 | (end - start) - 1);
|
---|
[d6c8ff6] | 599 | cmd->argv[i].intval = (unative_t) buf;
|
---|
| 600 | cmd->argv[i].vartype = ARG_TYPE_STRING;
|
---|
| 601 | } else {
|
---|
| 602 | printf("Wrong synxtax.\n");
|
---|
| 603 | error = true;
|
---|
| 604 | }
|
---|
| 605 | } else if (parse_int_arg(cmdline + start,
|
---|
| 606 | end - start, &cmd->argv[i].intval)) {
|
---|
[91c78c9] | 607 | cmd->argv[i].vartype = ARG_TYPE_INT;
|
---|
[cf5ddf6] | 608 | } else {
|
---|
[91c78c9] | 609 | printf("Unrecognized variable argument.\n");
|
---|
[d6c8ff6] | 610 | error = true;
|
---|
[6e716a59] | 611 | }
|
---|
[91c78c9] | 612 | break;
|
---|
[6e716a59] | 613 | case ARG_TYPE_INVALID:
|
---|
| 614 | default:
|
---|
[d6c8ff6] | 615 | printf("Invalid argument type\n");
|
---|
| 616 | error = true;
|
---|
[f4338d2] | 617 | break;
|
---|
| 618 | }
|
---|
| 619 | }
|
---|
| 620 |
|
---|
[80bff342] | 621 | if (error) {
|
---|
| 622 | spinlock_unlock(&cmd->lock);
|
---|
| 623 | return NULL;
|
---|
| 624 | }
|
---|
| 625 |
|
---|
[d6c8ff6] | 626 | start = end;
|
---|
| 627 | if (parse_argument(cmdline, size, &start, &end)) {
|
---|
[f4338d2] | 628 | printf("Too many arguments.\n");
|
---|
| 629 | spinlock_unlock(&cmd->lock);
|
---|
| 630 | return NULL;
|
---|
| 631 | }
|
---|
[ff3b3197] | 632 |
|
---|
| 633 | spinlock_unlock(&cmd->lock);
|
---|
| 634 | return cmd;
|
---|
| 635 | }
|
---|
| 636 |
|
---|
[d6c8ff6] | 637 | /** Kernel console prompt.
|
---|
[f4338d2] | 638 | *
|
---|
[d6c8ff6] | 639 | * @param prompt Kernel console prompt (e.g kconsole/panic).
|
---|
| 640 | * @param msg Message to display in the beginning.
|
---|
| 641 | * @param kcon Wait for keypress to show the prompt
|
---|
| 642 | * and never exit.
|
---|
[f4338d2] | 643 | *
|
---|
| 644 | */
|
---|
[d6c8ff6] | 645 | void kconsole(char *prompt, char *msg, bool kcon)
|
---|
[f4338d2] | 646 | {
|
---|
[d6c8ff6] | 647 | if (!stdin) {
|
---|
| 648 | LOG("No stdin for kernel console");
|
---|
| 649 | return;
|
---|
| 650 | }
|
---|
[f4338d2] | 651 |
|
---|
[d6c8ff6] | 652 | if (msg)
|
---|
| 653 | printf("%s", msg);
|
---|
[f4338d2] | 654 |
|
---|
[d6c8ff6] | 655 | if (kcon)
|
---|
[44b7783] | 656 | indev_pop_character(stdin);
|
---|
[d6c8ff6] | 657 | else
|
---|
| 658 | printf("Type \"exit\" to leave the console.\n");
|
---|
| 659 |
|
---|
| 660 | while (true) {
|
---|
| 661 | wchar_t *tmp = clever_readline((char *) prompt, stdin);
|
---|
[98000fb] | 662 | size_t len = wstr_length(tmp);
|
---|
[d6c8ff6] | 663 | if (!len)
|
---|
| 664 | continue;
|
---|
| 665 |
|
---|
| 666 | char cmdline[STR_BOUNDS(MAX_CMDLINE)];
|
---|
| 667 | wstr_nstr(cmdline, tmp, STR_BOUNDS(MAX_CMDLINE));
|
---|
| 668 |
|
---|
| 669 | if ((!kcon) && (len == 4) && (str_lcmp(cmdline, "exit", 4) == 0))
|
---|
| 670 | break;
|
---|
| 671 |
|
---|
| 672 | cmd_info_t *cmd_info = parse_cmdline(cmdline, STR_BOUNDS(MAX_CMDLINE));
|
---|
| 673 | if (!cmd_info)
|
---|
| 674 | continue;
|
---|
| 675 |
|
---|
| 676 | (void) cmd_info->func(cmd_info->argv);
|
---|
[f4338d2] | 677 | }
|
---|
[d6c8ff6] | 678 | }
|
---|
[f4338d2] | 679 |
|
---|
[d6c8ff6] | 680 | /** Kernel console managing thread.
|
---|
| 681 | *
|
---|
| 682 | */
|
---|
| 683 | void kconsole_thread(void *data)
|
---|
| 684 | {
|
---|
| 685 | kconsole("kconsole", "Kernel console ready (press any key to activate)\n", true);
|
---|
[f4338d2] | 686 | }
|
---|
[b45c443] | 687 |
|
---|
[06e1e95] | 688 | /** @}
|
---|
[b45c443] | 689 | */
|
---|