1 // SPDX-License-Identifier: GPL-2.0+
5 * Copyright (c) 2017 Google, Inc
6 * Written by Simon Glass <sjg@chromium.org>
12 #include <dm/uclass.h>
14 DECLARE_GLOBAL_DATA_PTR;
16 static const char *const log_cat_name[] = {
31 _Static_assert(ARRAY_SIZE(log_cat_name) == LOGC_COUNT - LOGC_NONE,
34 static const char *const log_level_name[] = {
47 _Static_assert(ARRAY_SIZE(log_level_name) == LOGL_COUNT, "log_level_name size");
49 /* All error responses MUST begin with '<' */
50 const char *log_get_cat_name(enum log_category_t cat)
54 if (cat < 0 || cat >= LOGC_COUNT)
57 return log_cat_name[cat - LOGC_NONE];
59 #if CONFIG_IS_ENABLED(DM)
60 name = uclass_get_name((enum uclass_id)cat);
65 return name ? name : "<missing>";
68 enum log_category_t log_get_cat_by_name(const char *name)
73 for (i = LOGC_NONE; i < LOGC_COUNT; i++)
74 if (!strcmp(name, log_cat_name[i - LOGC_NONE]))
76 id = uclass_get_by_name(name);
77 if (id != UCLASS_INVALID)
78 return (enum log_category_t)id;
83 const char *log_get_level_name(enum log_level_t level)
85 if (level >= LOGL_COUNT)
87 return log_level_name[level];
90 enum log_level_t log_get_level_by_name(const char *name)
94 for (i = 0; i < LOGL_COUNT; i++) {
95 if (!strcasecmp(log_level_name[i], name))
102 struct log_device *log_device_find_by_name(const char *drv_name)
104 struct log_device *ldev;
106 list_for_each_entry(ldev, &gd->log_head, sibling_node) {
107 if (!strcmp(drv_name, ldev->drv->name))
114 bool log_has_cat(enum log_category_t cat_list[], enum log_category_t cat)
118 for (i = 0; i < LOGF_MAX_CATEGORIES && cat_list[i] != LOGC_END; i++) {
119 if (cat_list[i] == cat)
126 bool log_has_file(const char *file_list, const char *file)
128 int file_len = strlen(file);
132 for (s = file_list; *s; s = p + (*p != '\0')) {
133 p = strchrnul(s, ',');
135 if (file_len >= substr_len &&
136 !strncmp(file + file_len - substr_len, s, substr_len))
144 * log_passes_filters() - check if a log record passes the filters for a device
146 * @ldev: Log device to check
147 * @rec: Log record to check
148 * @return true if @rec is not blocked by the filters in @ldev, false if it is
150 static bool log_passes_filters(struct log_device *ldev, struct log_rec *rec)
152 struct log_filter *filt;
154 if (rec->force_debug)
157 /* If there are no filters, filter on the default log level */
158 if (list_empty(&ldev->filter_head)) {
159 if (rec->level > gd->default_log_level)
164 list_for_each_entry(filt, &ldev->filter_head, sibling_node) {
165 if (filt->flags & LOGFF_LEVEL_MIN) {
166 if (rec->level < filt->level)
168 } else if (rec->level > filt->level) {
172 if ((filt->flags & LOGFF_HAS_CAT) &&
173 !log_has_cat(filt->cat_list, rec->cat))
176 if (filt->file_list &&
177 !log_has_file(filt->file_list, rec->file))
180 if (filt->flags & LOGFF_DENY)
190 * log_dispatch() - Send a log record to all log devices for processing
192 * The log record is sent to each log device in turn, skipping those which have
193 * filters which block the record.
195 * All log messages created while processing log record @rec are ignored.
197 * @rec: log record to dispatch
198 * Return: 0 msg sent, 1 msg not sent while already dispatching another msg
200 static int log_dispatch(struct log_rec *rec)
202 struct log_device *ldev;
205 * When a log driver writes messages (e.g. via the network stack) this
206 * may result in further generated messages. We cannot process them here
207 * as this might result in infinite recursion.
209 if (gd->processing_msg)
213 gd->processing_msg = true;
214 list_for_each_entry(ldev, &gd->log_head, sibling_node) {
215 if ((ldev->flags & LOGDF_ENABLE) &&
216 log_passes_filters(ldev, rec))
217 ldev->drv->emit(ldev, rec);
219 gd->processing_msg = false;
223 int _log(enum log_category_t cat, enum log_level_t level, const char *file,
224 int line, const char *func, const char *fmt, ...)
226 char buf[CONFIG_SYS_CBSIZE];
230 /* Check for message continuation */
231 if (cat == LOGC_CONT)
233 if (level == LOGL_CONT)
234 level = gd->logl_prev;
237 rec.level = level & LOGL_LEVEL_MASK;
238 rec.force_debug = level & LOGL_FORCE_DEBUG;
243 vsnprintf(buf, sizeof(buf), fmt, args);
246 if (!gd || !(gd->flags & GD_FLG_LOG_READY)) {
248 gd->log_drop_count++;
251 if (!log_dispatch(&rec)) {
253 gd->logl_prev = level;
259 int log_add_filter_flags(const char *drv_name, enum log_category_t cat_list[],
260 enum log_level_t level, const char *file_list,
263 struct log_filter *filt;
264 struct log_device *ldev;
268 ldev = log_device_find_by_name(drv_name);
271 filt = calloc(1, sizeof(*filt));
277 filt->flags |= LOGFF_HAS_CAT;
279 if (i == ARRAY_SIZE(filt->cat_list)) {
283 filt->cat_list[i] = cat_list[i];
284 if (cat_list[i] == LOGC_END)
290 filt->file_list = strdup(file_list);
291 if (!filt->file_list) {
296 filt->filter_num = ldev->next_filter_num++;
297 /* Add deny filters to the beginning of the list */
298 if (flags & LOGFF_DENY)
299 list_add(&filt->sibling_node, &ldev->filter_head);
301 list_add_tail(&filt->sibling_node, &ldev->filter_head);
303 return filt->filter_num;
310 int log_remove_filter(const char *drv_name, int filter_num)
312 struct log_filter *filt;
313 struct log_device *ldev;
315 ldev = log_device_find_by_name(drv_name);
319 list_for_each_entry(filt, &ldev->filter_head, sibling_node) {
320 if (filt->filter_num == filter_num) {
321 list_del(&filt->sibling_node);
332 * log_find_device_by_drv() - Find a device by its driver
335 * @return Device associated with that driver, or NULL if not found
337 static struct log_device *log_find_device_by_drv(struct log_driver *drv)
339 struct log_device *ldev;
341 list_for_each_entry(ldev, &gd->log_head, sibling_node) {
342 if (ldev->drv == drv)
346 * It is quite hard to pass an invalid driver since passing an unknown
347 * LOG_GET_DRIVER(xxx) would normally produce a compilation error. But
348 * it is possible to pass NULL, for example, so this
354 int log_device_set_enable(struct log_driver *drv, bool enable)
356 struct log_device *ldev;
358 ldev = log_find_device_by_drv(drv);
362 ldev->flags |= LOGDF_ENABLE;
364 ldev->flags &= ~LOGDF_ENABLE;
371 struct log_driver *drv = ll_entry_start(struct log_driver, log_driver);
372 const int count = ll_entry_count(struct log_driver, log_driver);
373 struct log_driver *end = drv + count;
376 * We cannot add runtime data to the driver since it is likely stored
377 * in rodata. Instead, set up a 'device' corresponding to each driver.
378 * We only support having a single device.
380 INIT_LIST_HEAD((struct list_head *)&gd->log_head);
382 struct log_device *ldev;
384 ldev = calloc(1, sizeof(*ldev));
386 debug("%s: Cannot allocate memory\n", __func__);
389 INIT_LIST_HEAD(&ldev->filter_head);
391 ldev->flags = drv->flags;
392 list_add_tail(&ldev->sibling_node,
393 (struct list_head *)&gd->log_head);
396 gd->flags |= GD_FLG_LOG_READY;
397 if (!gd->default_log_level)
398 gd->default_log_level = CONFIG_LOG_DEFAULT_LEVEL;
399 gd->log_fmt = log_get_default_format();
400 gd->logc_prev = LOGC_NONE;
401 gd->logl_prev = LOGL_INFO;