source: mainline/kernel/generic/src/console/console.c@ 171f9a1

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 171f9a1 was 171f9a1, checked in by Jiri Svoboda <jirik.svoboda@…>, 16 years ago

Character encoding/decoding un uspace. Partially fix klog application.

  • Property mode set to 100644
File size: 7.6 KB
RevLine 
[2677758]1/*
[df4ed85]2 * Copyright (c) 2003 Josef Cejka
3 * Copyright (c) 2005 Jakub Jermar
[2677758]4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
9 *
10 * - Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * - Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * - The name of the author may not be used to endorse or promote products
16 * derived from this software without specific prior written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
19 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
20 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
21 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
22 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
23 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
[06e1e95]30/** @addtogroup genericconsole
[b45c443]31 * @{
32 */
33/** @file
34 */
35
[2677758]36#include <console/console.h>
37#include <console/chardev.h>
[82b71ef1]38#include <sysinfo/sysinfo.h>
[2677758]39#include <synch/waitq.h>
40#include <synch/spinlock.h>
41#include <arch/types.h>
[82b71ef1]42#include <ddi/irq.h>
43#include <ddi/ddi.h>
[05641a9e]44#include <event/event.h>
[82b71ef1]45#include <ipc/irq.h>
[2677758]46#include <arch.h>
[93b84b3]47#include <func.h>
48#include <print.h>
[eec616b]49#include <putchar.h>
[23684b7]50#include <atomic.h>
[312cc68]51#include <syscall/copy.h>
52#include <errno.h>
[c583970]53#include <string.h>
[2677758]54
[eec616b]55#define KLOG_SIZE PAGE_SIZE
[171f9a1]56#define KLOG_LENGTH (KLOG_SIZE / sizeof(wchar_t))
[eec616b]57#define KLOG_LATENCY 8
[c859753]58
[c0855a0]59/** Kernel log cyclic buffer */
[171f9a1]60static wchar_t klog[KLOG_LENGTH] __attribute__ ((aligned (PAGE_SIZE)));
[c859753]61
[c0855a0]62/** Kernel log initialized */
[82b71ef1]63static bool klog_inited = false;
[c0855a0]64/** First kernel log characters */
[c859753]65static index_t klog_start = 0;
[c0855a0]66/** Number of valid kernel log characters */
[c859753]67static size_t klog_len = 0;
[c0855a0]68/** Number of stored (not printed) kernel log characters */
[c859753]69static size_t klog_stored = 0;
[c0855a0]70/** Number of stored kernel log characters for uspace */
[82b71ef1]71static size_t klog_uspace = 0;
72
[c0855a0]73/** Silence output */
[691eb52]74bool silent = false;
[516ff92]75
[c0855a0]76/** Kernel log spinlock */
[82b71ef1]77SPINLOCK_INITIALIZE(klog_lock);
78
79/** Physical memory area used for klog buffer */
80static parea_t klog_parea;
[516ff92]81
[ac8e7a9]82/** Standard input and output character devices */
83indev_t *stdin = NULL;
84outdev_t *stdout = NULL;
[411b6a6]85
[82b71ef1]86/** Initialize kernel logging facility
87 *
88 * The shared area contains kernel cyclic buffer. Userspace application may
89 * be notified on new data with indication of position and size
90 * of the data within the circular buffer.
[ac8e7a9]91 *
[82b71ef1]92 */
93void klog_init(void)
94{
95 void *faddr = (void *) KA2PA(klog);
96
97 ASSERT((uintptr_t) faddr % FRAME_SIZE == 0);
98 ASSERT(KLOG_SIZE % FRAME_SIZE == 0);
99
100 klog_parea.pbase = (uintptr_t) faddr;
[eec616b]101 klog_parea.frames = SIZE2FRAMES(sizeof(klog));
[82b71ef1]102 ddi_parea_register(&klog_parea);
[ac8e7a9]103
[82b71ef1]104 sysinfo_set_item_val("klog.faddr", NULL, (unative_t) faddr);
[eec616b]105 sysinfo_set_item_val("klog.pages", NULL, SIZE2FRAMES(sizeof(klog)));
[ac8e7a9]106
[82b71ef1]107 spinlock_lock(&klog_lock);
108 klog_inited = true;
109 spinlock_unlock(&klog_lock);
110}
111
[516ff92]112void grab_console(void)
113{
114 silent = false;
115 arch_grab_console();
116}
117
118void release_console(void)
119{
120 silent = true;
121 arch_release_console();
122}
123
[312cc68]124/** Tell kernel to get keyboard/console access again */
125unative_t sys_debug_enable_console(void)
126{
127#ifdef CONFIG_KCONSOLE
128 grab_console();
129 return true;
130#else
131 return false;
132#endif
133}
134
135/** Tell kernel to relinquish keyboard/console access */
136unative_t sys_debug_disable_console(void)
137{
138 release_console();
139 return true;
140}
141
[ac8e7a9]142bool check_poll(indev_t *indev)
143{
144 if (indev == NULL)
145 return false;
146
147 if (indev->op == NULL)
148 return false;
149
150 return (indev->op->poll != NULL);
151}
152
153/** Get character from input character device. Do not echo character.
[e8a9dc3]154 *
[ac8e7a9]155 * @param indev Input character device.
[e8a9dc3]156 * @return Character read.
[ac8e7a9]157 *
[e8a9dc3]158 */
[c583970]159wchar_t _getc(indev_t *indev)
[e8a9dc3]160{
[36e7ee98]161 if (atomic_get(&haltstate)) {
[ac8e7a9]162 /* If we are here, we are hopefully on the processor that
[93b84b3]163 * issued the 'halt' command, so proceed to read the character
164 * directly from input
165 */
[ac8e7a9]166 if (check_poll(indev))
167 return indev->op->poll(indev);
168
169 /* No other way of interacting with user */
170 interrupts_disable();
171
[36e7ee98]172 if (CPU)
[c859753]173 printf("cpu%u: ", CPU->id);
[36e7ee98]174 else
175 printf("cpu: ");
[ac8e7a9]176 printf("halted (no polling input)\n");
[93b84b3]177 cpu_halt();
178 }
[ac8e7a9]179
180 waitq_sleep(&indev->wq);
181 ipl_t ipl = interrupts_disable();
182 spinlock_lock(&indev->lock);
[c583970]183 wchar_t ch = indev->buffer[(indev->index - indev->counter) % INDEV_BUFLEN];
[ac8e7a9]184 indev->counter--;
185 spinlock_unlock(&indev->lock);
[e8a9dc3]186 interrupts_restore(ipl);
[ac8e7a9]187
[e8a9dc3]188 return ch;
189}
190
[ac8e7a9]191/** Get string from input character device.
[2677758]192 *
[ac8e7a9]193 * Read characters from input character device until first occurrence
[2677758]194 * of newline character.
195 *
[ac8e7a9]196 * @param indev Input character device.
[c583970]197 * @param buf Buffer where to store string terminated by NULL.
[abbc16e]198 * @param buflen Size of the buffer.
[ff3b3197]199 *
200 * @return Number of characters read.
[ac8e7a9]201 *
[2677758]202 */
[ac8e7a9]203count_t gets(indev_t *indev, char *buf, size_t buflen)
[2677758]204{
[c583970]205 size_t offset = 0;
206 count_t count = 0;
207 buf[offset] = 0;
[516ff92]208
[c583970]209 wchar_t ch;
210 while ((ch = _getc(indev)) != '\n') {
[e8a9dc3]211 if (ch == '\b') {
[c583970]212 if (count > 0) {
213 /* Space, backspace, space */
[e8a9dc3]214 putchar('\b');
215 putchar(' ');
216 putchar('\b');
[c583970]217
218 count--;
219 offset = str_lsize(buf, count);
220 buf[offset] = 0;
[e8a9dc3]221 }
[2677758]222 }
[c583970]223 if (chr_encode(ch, buf, &offset, buflen - 1) == EOK) {
224 putchar(ch);
225 count++;
226 buf[offset] = 0;
227 }
[2677758]228 }
[ac8e7a9]229
[c583970]230 return count;
[2677758]231}
232
[ac8e7a9]233/** Get character from input device & echo it to screen */
[c583970]234wchar_t getc(indev_t *indev)
[2677758]235{
[c583970]236 wchar_t ch = _getc(indev);
[e8a9dc3]237 putchar(ch);
[2677758]238 return ch;
239}
[973be64e]240
[82b71ef1]241void klog_update(void)
242{
243 spinlock_lock(&klog_lock);
244
[18251cc]245 if ((klog_inited) && (event_is_subscribed(EVENT_KLOG)) && (klog_uspace > 0)) {
[05641a9e]246 event_notify_3(EVENT_KLOG, klog_start, klog_len, klog_uspace);
247 klog_uspace = 0;
248 }
[82b71ef1]249
250 spinlock_unlock(&klog_lock);
251}
252
[eec616b]253void putchar(const wchar_t ch)
[973be64e]254{
[82b71ef1]255 spinlock_lock(&klog_lock);
256
[ac8e7a9]257 if ((klog_stored > 0) && (stdout) && (stdout->op->write)) {
[c859753]258 /* Print charaters stored in kernel log */
259 index_t i;
260 for (i = klog_len - klog_stored; i < klog_len; i++)
[171f9a1]261 stdout->op->write(stdout, klog[(klog_start + i) % KLOG_LENGTH], silent);
[c859753]262 klog_stored = 0;
263 }
264
265 /* Store character in the cyclic kernel log */
[171f9a1]266 klog[(klog_start + klog_len) % KLOG_LENGTH] = ch;
267 if (klog_len < KLOG_LENGTH)
[c859753]268 klog_len++;
269 else
[171f9a1]270 klog_start = (klog_start + 1) % KLOG_LENGTH;
[c859753]271
[ac8e7a9]272 if ((stdout) && (stdout->op->write))
[eec616b]273 stdout->op->write(stdout, ch, silent);
[c859753]274 else {
275 /* The character is just in the kernel log */
276 if (klog_stored < klog_len)
277 klog_stored++;
278 }
[82b71ef1]279
280 /* The character is stored for uspace */
281 if (klog_uspace < klog_len)
282 klog_uspace++;
283
[c05a50f]284 /* Check notify uspace to update */
285 bool update;
[eec616b]286 if ((klog_uspace > KLOG_LATENCY) || (ch == '\n'))
[c05a50f]287 update = true;
288 else
289 update = false;
290
[82b71ef1]291 spinlock_unlock(&klog_lock);
292
[c05a50f]293 if (update)
294 klog_update();
[973be64e]295}
[b45c443]296
[312cc68]297/** Print using kernel facility
298 *
299 * Print to kernel log.
300 *
301 */
[c583970]302unative_t sys_klog(int fd, const void *buf, size_t size)
[312cc68]303{
304 char *data;
305 int rc;
[eec616b]306
[c583970]307 if (size > PAGE_SIZE)
[312cc68]308 return ELIMIT;
309
[c583970]310 if (size > 0) {
311 data = (char *) malloc(size + 1, 0);
[312cc68]312 if (!data)
313 return ENOMEM;
314
[c583970]315 rc = copy_from_uspace(data, buf, size);
[312cc68]316 if (rc) {
317 free(data);
318 return rc;
319 }
[c583970]320 data[size] = 0;
[312cc68]321
322 printf("%s", data);
323 free(data);
324 } else
325 klog_update();
326
[c583970]327 return size;
[312cc68]328}
329
[06e1e95]330/** @}
[b45c443]331 */
Note: See TracBrowser for help on using the repository browser.