source: mainline/kernel/generic/src/log/log.c@ 9f77d98

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 9f77d98 was 11b285d, checked in by Jiří Zárevúcky <jiri.zarevucky@…>, 8 years ago

Use standard signature for malloc() in kernel.

The remaining instances of blocking allocation are replaced with
a new separate function named nfmalloc (short for non-failing malloc).

  • Property mode set to 100644
File size: 9.2 KB
Line 
1/*
2 * Copyright (c) 2013 Martin Sucha
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
29/** @addtogroup genericlog
30 * @{
31 */
32/** @file
33 */
34
35#include <sysinfo/sysinfo.h>
36#include <synch/spinlock.h>
37#include <typedefs.h>
38#include <ddi/irq.h>
39#include <ddi/ddi.h>
40#include <ipc/event.h>
41#include <ipc/irq.h>
42#include <arch.h>
43#include <panic.h>
44#include <putchar.h>
45#include <atomic.h>
46#include <syscall/copy.h>
47#include <errno.h>
48#include <str.h>
49#include <print.h>
50#include <printf/printf_core.h>
51#include <stdarg.h>
52#include <log.h>
53#include <console/console.h>
54#include <abi/log.h>
55#include <mm/slab.h>
56
57#define LOG_PAGES 8
58#define LOG_LENGTH (LOG_PAGES * PAGE_SIZE)
59#define LOG_ENTRY_HEADER_LENGTH (sizeof(size_t) + sizeof(uint32_t))
60
61/** Cyclic buffer holding the data for kernel log */
62uint8_t log_buffer[LOG_LENGTH] __attribute__((aligned(PAGE_SIZE)));
63
64/** Kernel log initialized */
65static atomic_t log_inited = { false };
66
67/** Position in the cyclic buffer where the first log entry starts */
68size_t log_start = 0;
69
70/** Sum of length of all log entries currently stored in the cyclic buffer */
71size_t log_used = 0;
72
73/** Log spinlock */
74SPINLOCK_STATIC_INITIALIZE_NAME(log_lock, "log_lock");
75
76/** Overall count of logged messages, which may overflow as needed */
77static uint32_t log_counter = 0;
78
79/** Starting position of the entry currently being written to the log */
80static size_t log_current_start = 0;
81
82/** Length (including header) of the entry currently being written to the log */
83static size_t log_current_len = 0;
84
85/** Start of the next entry to be handed to uspace starting from log_start */
86static size_t next_for_uspace = 0;
87
88static void log_update(void *);
89
90/** Initialize kernel logging facility
91 *
92 */
93void log_init(void)
94{
95 event_set_unmask_callback(EVENT_KLOG, log_update);
96 atomic_set(&log_inited, true);
97}
98
99static size_t log_copy_from(uint8_t *data, size_t pos, size_t len)
100{
101 for (size_t i = 0; i < len; i++, pos = (pos + 1) % LOG_LENGTH) {
102 data[i] = log_buffer[pos];
103 }
104 return pos;
105}
106
107static size_t log_copy_to(const uint8_t *data, size_t pos, size_t len)
108{
109 for (size_t i = 0; i < len; i++, pos = (pos + 1) % LOG_LENGTH) {
110 log_buffer[pos] = data[i];
111 }
112 return pos;
113}
114
115/** Append data to the currently open log entry.
116 *
117 * This function requires that the log_lock is acquired by the caller.
118 */
119static void log_append(const uint8_t *data, size_t len)
120{
121 /* Cap the length so that the entry entirely fits into the buffer */
122 if (len > LOG_LENGTH - log_current_len) {
123 len = LOG_LENGTH - log_current_len;
124 }
125
126 if (len == 0)
127 return;
128
129 size_t log_free = LOG_LENGTH - log_used - log_current_len;
130
131 /* Discard older entries to make space, if necessary */
132 while (len > log_free) {
133 size_t entry_len;
134 log_copy_from((uint8_t *) &entry_len, log_start, sizeof(size_t));
135 log_start = (log_start + entry_len) % LOG_LENGTH;
136 log_used -= entry_len;
137 log_free += entry_len;
138 next_for_uspace -= entry_len;
139 }
140
141 size_t pos = (log_current_start + log_current_len) % LOG_LENGTH;
142 log_copy_to(data, pos, len);
143 log_current_len += len;
144}
145
146/** Begin writing an entry to the log.
147 *
148 * This acquires the log and output buffer locks, so only calls to log_* functions should
149 * be used until calling log_end.
150 */
151void log_begin(log_facility_t fac, log_level_t level)
152{
153 spinlock_lock(&log_lock);
154 spinlock_lock(&kio_lock);
155
156 log_current_start = (log_start + log_used) % LOG_LENGTH;
157 log_current_len = 0;
158
159 /* Write header of the log entry, the length will be written in log_end() */
160 log_append((uint8_t *) &log_current_len, sizeof(size_t));
161 log_append((uint8_t *) &log_counter, sizeof(uint32_t));
162 uint32_t fac32 = fac;
163 uint32_t lvl32 = level;
164 log_append((uint8_t *) &fac32, sizeof(uint32_t));
165 log_append((uint8_t *) &lvl32, sizeof(uint32_t));
166
167 log_counter++;
168}
169
170/** Finish writing an entry to the log.
171 *
172 * This releases the log and output buffer locks.
173 */
174void log_end(void)
175{
176 /* Set the length in the header to correct value */
177 log_copy_to((uint8_t *) &log_current_len, log_current_start, sizeof(size_t));
178 log_used += log_current_len;
179
180 kio_push_char('\n');
181 spinlock_unlock(&kio_lock);
182 spinlock_unlock(&log_lock);
183
184 /* This has to be called after we released the locks above */
185 kio_flush();
186 kio_update(NULL);
187 log_update(NULL);
188}
189
190static void log_update(void *event)
191{
192 if (!atomic_get(&log_inited))
193 return;
194
195 spinlock_lock(&log_lock);
196 if (next_for_uspace < log_used)
197 event_notify_0(EVENT_KLOG, true);
198 spinlock_unlock(&log_lock);
199}
200
201static int log_printf_str_write(const char *str, size_t size, void *data)
202{
203 size_t offset = 0;
204 size_t chars = 0;
205
206 while (offset < size) {
207 kio_push_char(str_decode(str, &offset, size));
208 chars++;
209 }
210
211 log_append((const uint8_t *)str, size);
212
213 return chars;
214}
215
216static int log_printf_wstr_write(const wchar_t *wstr, size_t size, void *data)
217{
218 char buffer[16];
219 size_t offset = 0;
220 size_t chars = 0;
221
222 for (offset = 0; offset < size; offset += sizeof(wchar_t), chars++) {
223 kio_push_char(wstr[chars]);
224
225 size_t buffer_offset = 0;
226 errno_t rc = chr_encode(wstr[chars], buffer, &buffer_offset, 16);
227 if (rc != EOK) {
228 return EOF;
229 }
230
231 log_append((const uint8_t *)buffer, buffer_offset);
232 }
233
234 return chars;
235}
236
237/** Append a message to the currently being written entry.
238 *
239 * Requires that an entry has been started using log_begin()
240 */
241int log_vprintf(const char *fmt, va_list args)
242{
243 int ret;
244
245 printf_spec_t ps = {
246 log_printf_str_write,
247 log_printf_wstr_write,
248 NULL
249 };
250
251
252 ret = printf_core(fmt, &ps, args);
253
254 return ret;
255}
256
257/** Append a message to the currently being written entry.
258 *
259 * Requires that an entry has been started using log_begin()
260 */
261int log_printf(const char *fmt, ...)
262{
263 int ret;
264 va_list args;
265
266 va_start(args, fmt);
267 ret = log_vprintf(fmt, args);
268 va_end(args);
269
270 return ret;
271}
272
273/** Log a message to the kernel log.
274 *
275 * This atomically appends a log entry.
276 * The resulting message should not contain a trailing newline, as the log
277 * entries are explicitly delimited when stored in the log.
278 */
279int log(log_facility_t fac, log_level_t level, const char *fmt, ...)
280{
281 int ret;
282 va_list args;
283
284 log_begin(fac, level);
285
286 va_start(args, fmt);
287 ret = log_vprintf(fmt, args);
288 va_end(args);
289
290 log_end();
291
292 return ret;
293}
294
295/** Control of the log from uspace
296 *
297 */
298sys_errno_t sys_klog(sysarg_t operation, void *buf, size_t size,
299 sysarg_t level, size_t *uspace_nread)
300{
301 char *data;
302 errno_t rc;
303
304 if (size > PAGE_SIZE)
305 return (sys_errno_t) ELIMIT;
306
307 switch (operation) {
308 case KLOG_WRITE:
309 data = (char *) malloc(size + 1);
310 if (!data)
311 return (sys_errno_t) ENOMEM;
312
313 rc = copy_from_uspace(data, buf, size);
314 if (rc) {
315 free(data);
316 return (sys_errno_t) rc;
317 }
318 data[size] = 0;
319
320 if (level >= LVL_LIMIT)
321 level = LVL_NOTE;
322
323 log(LF_USPACE, level, "%s", data);
324
325 free(data);
326 return EOK;
327 case KLOG_READ:
328 data = (char *) malloc(size);
329 if (!data)
330 return (sys_errno_t) ENOMEM;
331
332 size_t entry_len = 0;
333 size_t copied = 0;
334
335 rc = EOK;
336
337 spinlock_lock(&log_lock);
338
339 while (next_for_uspace < log_used) {
340 size_t pos = (log_start + next_for_uspace) % LOG_LENGTH;
341 log_copy_from((uint8_t *) &entry_len, pos, sizeof(size_t));
342
343 if (entry_len > PAGE_SIZE) {
344 /*
345 * Since we limit data transfer
346 * to uspace to a maximum of PAGE_SIZE
347 * bytes, skip any entries larger
348 * than this limit to prevent
349 * userspace being stuck trying to
350 * read them.
351 */
352 next_for_uspace += entry_len;
353 continue;
354 }
355
356 if (size < copied + entry_len) {
357 if (copied == 0)
358 rc = EOVERFLOW;
359 break;
360 }
361
362 log_copy_from((uint8_t *) (data + copied), pos, entry_len);
363 copied += entry_len;
364 next_for_uspace += entry_len;
365 }
366
367 spinlock_unlock(&log_lock);
368
369 if (rc != EOK) {
370 free(data);
371 return (sys_errno_t) rc;
372 }
373
374 rc = copy_to_uspace(buf, data, size);
375
376 free(data);
377
378 if (rc != EOK)
379 return (sys_errno_t) rc;
380
381 return copy_to_uspace(uspace_nread, &copied, sizeof(copied));
382 return EOK;
383 default:
384 return (sys_errno_t) ENOTSUP;
385 }
386}
387
388
389/** @}
390 */
Note: See TracBrowser for help on using the repository browser.