Subversion Repositories HelenOS

Rev

Rev 3268 | Rev 3275 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /* Copyright (c) 2008, Tim Post <tinkertim@gmail.com>
  2.  * All rights reserved.
  3.  * Copyright (c) 2008, Jiri Svoboda - 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 are met:
  7.  *
  8.  * Redistributions of source code must retain the above copyright notice, this
  9.  * list of conditions and the following disclaimer.
  10.  *
  11.  * Redistributions in binary form must reproduce the above copyright notice,
  12.  * this list of conditions and the following disclaimer in the documentation
  13.  * and/or other materials provided with the distribution.
  14.  *
  15.  * Neither the name of the original program's authors nor the names of its
  16.  * contributors may be used to endorse or promote products derived from this
  17.  * software without specific prior written permission.
  18.  *
  19.  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20.  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22.  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  23.  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24.  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25.  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26.  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27.  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28.  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29.  * POSSIBILITY OF SUCH DAMAGE.
  30.  */
  31.  
  32. #include <stdio.h>
  33. #include <stdlib.h>
  34. #include <string.h>
  35.  
  36. #ifdef HELENOS
  37. #include <io/stream.h>
  38. #endif
  39.  
  40. #include "config.h"
  41. #include "util.h"
  42. #include "scli.h"
  43. #include "input.h"
  44. #include "errors.h"
  45. #include "exec.h"
  46.  
  47. extern volatile unsigned int cli_interactive;
  48.  
  49. /* More than a macro than anything */
  50. void cli_restricted(char *cmd)
  51. {
  52.     cli_verbose("%s is not available in %s mode\n", cmd,
  53.         cli_interactive ? "interactive" : "non-interactive");
  54.  
  55.     return;
  56. }
  57.  
  58. /* Tokenizes input from console, sees if the first word is a built-in, if so
  59.  * invokes the built-in entry point (a[0]) passing all arguments in a[] to
  60.  * the handler */
  61. int tok_input(cliuser_t *usr)
  62. {
  63.     char *cmd[WORD_MAX];
  64.     int n = 0, i = 0;
  65.     int rc = 0;
  66.     char *tmp;
  67.  
  68.     if (NULL == usr->line)
  69.         return CL_EFAIL;
  70.  
  71.     tmp = cli_strdup(usr->line);
  72.     cli_verbose("Tok: tmp = %s", tmp);
  73.     /* Break up what the user typed, space delimited */
  74.     cmd[n] = cli_strtok(tmp, " ");
  75.     while (cmd[n] && n < WORD_MAX) {
  76.         cmd[++n] = cli_strtok(NULL, " ");
  77.     }
  78.  
  79.     for (n = 0; cmd[n] != NULL; n++)
  80.         cli_verbose("arg[%d] => `%s'", n, cmd[n]);
  81.  
  82.     /* We have rubbish */
  83.     if (NULL == cmd[0]) {
  84.         rc = CL_ENOENT;
  85.         goto finit;
  86.     }
  87.  
  88.     /* Check what kind of command argv[0] might be */
  89.     if ((i = (is_builtin(cmd[0]))) > -1) {
  90.         /* Its a builtin */
  91.         if (builtin_is_restricted(i)) {
  92.             /* Try an external command matching argv[0] */
  93.                 rc = try_exec(cmd[0], cmd);
  94.                 if (rc)
  95.                     cli_restricted(cmd[0]);
  96.                 goto finit;
  97.         }
  98.         rc = run_builtin(i, cmd, usr);
  99.         goto finit;
  100.     } else if ((i = (is_module(cmd[0]))) > -1) {
  101.         /* Its a module, it can't modify cliuser_t */
  102.         if (module_is_restricted(i)) {
  103.             rc = try_exec(cmd[0], cmd);
  104.             if (rc)
  105.                 cli_restricted(cmd[0]);
  106.             goto finit;
  107.         }
  108.         rc = run_module(i, cmd);
  109.         goto finit;
  110.     } else {
  111.         /* See what try_exec() thinks of it */
  112.         rc = try_exec(cmd[0], cmd);
  113.         goto finit;
  114.     }
  115.  
  116. finit:
  117.     /* Why is free complaining about these ?
  118.     if (NULL != usr->line) {
  119.         free(usr->line);
  120.         usr->line = (char *) NULL;
  121.     }
  122.     if (NULL != tmp)
  123.         free(tmp);
  124.     */
  125.     return rc;
  126. }
  127.  
  128. #ifdef HELENOS
  129. /* Borrowed from Jiri Svoboda's 'cli' uspace app */
  130. void read_line(char *buffer, int n)
  131. {
  132.     char c;
  133.     int chars;
  134.  
  135.     chars = 0;
  136.     while (chars < n - 1) {
  137.         c = getchar();
  138.         if (c < 0)
  139.             return;
  140.         if (c == '\n')
  141.             break;
  142.         if (c == '\b') {
  143.             if (chars > 0) {
  144.                 putchar('\b');
  145.                 --chars;
  146.             }
  147.             continue;
  148.         }
  149.         putchar(c);
  150.         buffer[chars++] = c;
  151.     }
  152.     putchar('\n');
  153.     buffer[chars] = '\0';
  154. }
  155. #endif
  156.  
  157. /* This is soupy, fix me */
  158. void get_input(cliuser_t *usr)
  159. {
  160.     char line[INPUT_MAX];
  161.     size_t len = 0;
  162.  
  163.     printf("%s", usr->prompt);
  164. #ifdef HELENOS
  165.     read_line(line, INPUT_MAX);
  166. #else
  167.     fgets(line, INPUT_MAX, stdin);
  168. #endif
  169.     len = strlen(line);
  170.     /* Make sure we don't have rubbish or a C/R happy user */
  171.     if (len == 0)
  172.         return;
  173.     if (len == 1 && line[len-1] == '\n')
  174.         return;
  175. #ifndef HELENOS
  176.     /* Null terminate line */
  177.     if (len > 0 && line[len-1] == '\n')
  178.         line[len-1] = '\0';
  179. #endif
  180.     usr->line = cli_strdup(line);
  181.     return;
  182. }
  183.  
  184.