summaryrefslogtreecommitdiffstats
path: root/cpukit/libmisc/monitor/mon-command.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-19 14:59:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2008-12-19 14:59:35 +0000
commiteb961961837bd288fb57799c189326fc944047b5 (patch)
treee857eea22b553b5288811467a2089ab87ad368ad /cpukit/libmisc/monitor/mon-command.c
parent2008-12-18 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-eb961961837bd288fb57799c189326fc944047b5.tar.bz2
2008-12-19 Sebastian Huber <sebastian.huber@embedded-brains.de>
* libblock/src/ide_part_table.c: Fixed NULL pointer access. * libmisc/monitor/mon-command.c, libmisc/monitor/mon-editor.c, libmisc/monitor/mon-monitor.c, libmisc/monitor/monitor.h, libmisc/shell/cmds.c: The list of registered monitor commands is now private and only accessible via a lookup and iterate function.
Diffstat (limited to 'cpukit/libmisc/monitor/mon-command.c')
-rw-r--r--cpukit/libmisc/monitor/mon-command.c95
1 files changed, 51 insertions, 44 deletions
diff --git a/cpukit/libmisc/monitor/mon-command.c b/cpukit/libmisc/monitor/mon-command.c
index e5ee6aee53..bd4a6a8277 100644
--- a/cpukit/libmisc/monitor/mon-command.c
+++ b/cpukit/libmisc/monitor/mon-command.c
@@ -24,49 +24,6 @@
#include <rtems.h>
#include <rtems/monitor.h>
-/*
- * Look up a command in a command table
- *
- */
-
-const rtems_monitor_command_entry_t *rtems_monitor_command_lookup(
- const rtems_monitor_command_entry_t *table,
- const char *command_name
-)
-{
- const rtems_monitor_command_entry_t *found_it = NULL;
- size_t command_length = 0;
-
- if (command_name == NULL) {
- return NULL;
- }
-
- command_length = strlen(command_name);
-
- while (table != NULL) {
- if (table->command != NULL) {
- /* Check for ambiguity */
- if (!strncmp(table->command, command_name, command_length)) {
- if (found_it == NULL) {
- found_it = table;
- } else {
- return NULL;
- }
- }
- }
- table = table->next;
- }
-
- /* No ambiguity (the possible partial command was unique after all) */
-
- /* Ignore empty commands */
- if (found_it == NULL || found_it->command_function == NULL) {
- return NULL;
- }
-
- return found_it;
-}
-
static void
rtems_monitor_show_help (
const rtems_monitor_command_entry_t *help_cmd,
@@ -173,7 +130,7 @@ rtems_monitor_command_usage(
if (command_name && (*command_name != '\0'))
{
- command = rtems_monitor_command_lookup (table, command_name);
+ command = rtems_monitor_command_lookup (command_name);
if (command)
rtems_monitor_show_help (command, strlen (command_name));
@@ -231,3 +188,53 @@ void rtems_monitor_help_cmd(
rtems_monitor_command_usage(command, argv[arg]);
}
}
+
+typedef struct {
+ const char *name;
+ size_t length;
+ const rtems_monitor_command_entry_t *match;
+} rtems_monitor_command_lookup_entry;
+
+static bool rtems_monitor_command_lookup_routine(
+ const rtems_monitor_command_entry_t *e,
+ void *arg
+)
+{
+ rtems_monitor_command_lookup_entry *le =
+ (rtems_monitor_command_lookup_entry *) arg;
+
+ /* Check name */
+ if (strncmp(e->command, le->name, le->length) == 0) {
+ /* Check for ambiguity */
+ if (le->match == NULL) {
+ le->match = e;
+ } else {
+ return false;
+ }
+ }
+
+ return true;
+}
+
+/**
+ * @brief Looks for a command with the name @a name in the list of registered
+ * commands.
+ *
+ * The parameter @a name must not be NULL.
+ *
+ * Returns the corresponding command entry or NULL if no command is found.
+ */
+const rtems_monitor_command_entry_t *rtems_monitor_command_lookup(
+ const char *name
+)
+{
+ rtems_monitor_command_lookup_entry e = {
+ .name = name,
+ .length = strlen( name),
+ .match = NULL
+ };
+
+ rtems_monitor_command_iterate(rtems_monitor_command_lookup_routine, &e);
+
+ return e.match;
+}