source: mainline/kernel/generic/src/log/log.c@ c7c6afd

Last change on this file since c7c6afd was 163e34c, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 8 months ago

Actually convert the printf outputs everywhere

  • Property mode set to 100644
File size: 8.7 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 kernel_generic
30 * @{
31 */
32/** @file
33 */
34
35#include <abi/log.h>
36#include <arch.h>
37#include <atomic.h>
38#include <console/console.h>
39#include <ddi/ddi.h>
40#include <ddi/irq.h>
41#include <errno.h>
42#include <ipc/event.h>
43#include <ipc/irq.h>
44#include <log.h>
45#include <panic.h>
46#include <print.h>
47#include <printf_core.h>
48#include <putchar.h>
49#include <stdarg.h>
50#include <stdlib.h>
51#include <str.h>
52#include <synch/spinlock.h>
53#include <syscall/copy.h>
54#include <sysinfo/sysinfo.h>
55#include <typedefs.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_bool 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_store(&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 console_lock();
154 spinlock_lock(&log_lock);
155 spinlock_lock(&kio_lock);
156
157 log_current_start = (log_start + log_used) % LOG_LENGTH;
158 log_current_len = 0;
159
160 /* Write header of the log entry, the length will be written in log_end() */
161 log_append((uint8_t *) &log_current_len, sizeof(size_t));
162 log_append((uint8_t *) &log_counter, sizeof(uint32_t));
163 uint32_t fac32 = fac;
164 uint32_t lvl32 = level;
165 log_append((uint8_t *) &fac32, sizeof(uint32_t));
166 log_append((uint8_t *) &lvl32, sizeof(uint32_t));
167
168 log_counter++;
169}
170
171/** Finish writing an entry to the log.
172 *
173 * This releases the log and output buffer locks.
174 */
175void log_end(void)
176{
177 /* Set the length in the header to correct value */
178 log_copy_to((uint8_t *) &log_current_len, log_current_start, sizeof(size_t));
179 log_used += log_current_len;
180
181 kio_push_char('\n');
182 spinlock_unlock(&kio_lock);
183 spinlock_unlock(&log_lock);
184
185 /* This has to be called after we released the locks above */
186 kio_flush();
187 kio_update(NULL);
188 log_update(NULL);
189 console_unlock();
190}
191
192static void log_update(void *event)
193{
194 if (!atomic_load(&log_inited))
195 return;
196
197 spinlock_lock(&log_lock);
198 if (next_for_uspace < log_used)
199 event_notify_0(EVENT_KLOG, true);
200 spinlock_unlock(&log_lock);
201}
202
203static int log_printf_str_write(const char *str, size_t size, void *data)
204{
205 size_t offset = 0;
206
207 while (offset < size)
208 kio_push_char(str_decode(str, &offset, size));
209
210 log_append((const uint8_t *)str, size);
211
212 return EOK;
213}
214
215/** Append a message to the currently being written entry.
216 *
217 * Requires that an entry has been started using log_begin()
218 */
219int log_vprintf(const char *fmt, va_list args)
220{
221 printf_spec_t ps = {
222 log_printf_str_write,
223 NULL
224 };
225
226 return printf_core(fmt, &ps, args);
227}
228
229/** Append a message to the currently being written entry.
230 *
231 * Requires that an entry has been started using log_begin()
232 */
233int log_printf(const char *fmt, ...)
234{
235 int ret;
236 va_list args;
237
238 va_start(args, fmt);
239 ret = log_vprintf(fmt, args);
240 va_end(args);
241
242 return ret;
243}
244
245/** Log a message to the kernel log.
246 *
247 * This atomically appends a log entry.
248 * The resulting message should not contain a trailing newline, as the log
249 * entries are explicitly delimited when stored in the log.
250 */
251int log(log_facility_t fac, log_level_t level, const char *fmt, ...)
252{
253 int ret;
254 va_list args;
255
256 log_begin(fac, level);
257
258 va_start(args, fmt);
259 ret = log_vprintf(fmt, args);
260 va_end(args);
261
262 log_end();
263
264 return ret;
265}
266
267/** Control of the log from uspace
268 *
269 */
270sys_errno_t sys_klog(sysarg_t operation, uspace_addr_t buf, size_t size,
271 sysarg_t level, uspace_ptr_size_t uspace_nread)
272{
273 char *data;
274 errno_t rc;
275
276 if (size > PAGE_SIZE)
277 return (sys_errno_t) ELIMIT;
278
279 switch (operation) {
280 case KLOG_WRITE:
281 data = (char *) malloc(size + 1);
282 if (!data)
283 return (sys_errno_t) ENOMEM;
284
285 rc = copy_from_uspace(data, buf, size);
286 if (rc) {
287 free(data);
288 return (sys_errno_t) rc;
289 }
290 data[size] = 0;
291
292 if (level >= LVL_LIMIT)
293 level = LVL_NOTE;
294
295 log(LF_USPACE, level, "%s", data);
296
297 free(data);
298 return EOK;
299 case KLOG_READ:
300 data = (char *) malloc(size);
301 if (!data)
302 return (sys_errno_t) ENOMEM;
303
304 size_t entry_len = 0;
305 size_t copied = 0;
306
307 rc = EOK;
308
309 spinlock_lock(&log_lock);
310
311 while (next_for_uspace < log_used) {
312 size_t pos = (log_start + next_for_uspace) % LOG_LENGTH;
313 log_copy_from((uint8_t *) &entry_len, pos, sizeof(size_t));
314
315 if (entry_len > PAGE_SIZE) {
316 /*
317 * Since we limit data transfer
318 * to uspace to a maximum of PAGE_SIZE
319 * bytes, skip any entries larger
320 * than this limit to prevent
321 * userspace being stuck trying to
322 * read them.
323 */
324 next_for_uspace += entry_len;
325 continue;
326 }
327
328 if (size < copied + entry_len) {
329 if (copied == 0)
330 rc = EOVERFLOW;
331 break;
332 }
333
334 log_copy_from((uint8_t *) (data + copied), pos, entry_len);
335 copied += entry_len;
336 next_for_uspace += entry_len;
337 }
338
339 spinlock_unlock(&log_lock);
340
341 if (rc != EOK) {
342 free(data);
343 return (sys_errno_t) rc;
344 }
345
346 rc = copy_to_uspace(buf, data, size);
347
348 free(data);
349
350 if (rc != EOK)
351 return (sys_errno_t) rc;
352
353 return copy_to_uspace(uspace_nread, &copied, sizeof(copied));
354 return EOK;
355 default:
356 return (sys_errno_t) ENOTSUP;
357 }
358}
359
360/** @}
361 */
Note: See TracBrowser for help on using the repository browser.