Subversion Repositories HelenOS

Rev

Rev 4011 | Rev 4132 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

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