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 *log_cat_name[LOGC_COUNT - LOGC_NONE] = {
31 static const char *log_level_name[LOGL_COUNT] = {
44 const char *log_get_cat_name(enum log_category_t cat)
48 if (cat < 0 || cat >= LOGC_COUNT)
51 return log_cat_name[cat - LOGC_NONE];
53 #if CONFIG_IS_ENABLED(DM)
54 name = uclass_get_name((enum uclass_id)cat);
59 return name ? name : "<missing>";
62 enum log_category_t log_get_cat_by_name(const char *name)
67 for (i = LOGC_NONE; i < LOGC_COUNT; i++)
68 if (!strcmp(name, log_cat_name[i - LOGC_NONE]))
70 id = uclass_get_by_name(name);
71 if (id != UCLASS_INVALID)
72 return (enum log_category_t)id;
77 const char *log_get_level_name(enum log_level_t level)
79 if (level >= LOGL_COUNT)
81 return log_level_name[level];
84 enum log_level_t log_get_level_by_name(const char *name)
88 for (i = 0; i < LOGL_COUNT; i++) {
89 if (!strcasecmp(log_level_name[i], name))
96 static struct log_device *log_device_find_by_name(const char *drv_name)
98 struct log_device *ldev;
100 list_for_each_entry(ldev, &gd->log_head, sibling_node) {
101 if (!strcmp(drv_name, ldev->drv->name))
109 * log_has_cat() - check if a log category exists within a list
111 * @cat_list: List of categories to check, at most LOGF_MAX_CATEGORIES entries
112 * long, terminated by LC_END if fewer
113 * @cat: Category to search for
114 * @return true if @cat is in @cat_list, else false
116 static bool log_has_cat(enum log_category_t cat_list[], enum log_category_t cat)
120 for (i = 0; i < LOGF_MAX_CATEGORIES && cat_list[i] != LOGC_END; i++) {
121 if (cat_list[i] == cat)
129 * log_has_file() - check if a file is with a list
131 * @file_list: List of files to check, separated by comma
132 * @file: File to check for. This string is matched against the end of each
133 * file in the list, i.e. ignoring any preceding path. The list is
134 * intended to consist of relative pathnames, e.g. common/main.c,cmd/log.c
135 * @return true if @file is in @file_list, else false
137 static bool log_has_file(const char *file_list, const char *file)
139 int file_len = strlen(file);
143 for (s = file_list; *s; s = p + (*p != '\0')) {
144 p = strchrnul(s, ',');
146 if (file_len >= substr_len &&
147 !strncmp(file + file_len - substr_len, s, substr_len))
155 * log_passes_filters() - check if a log record passes the filters for a device
157 * @ldev: Log device to check
158 * @rec: Log record to check
159 * @return true if @rec is not blocked by the filters in @ldev, false if it is
161 static bool log_passes_filters(struct log_device *ldev, struct log_rec *rec)
163 struct log_filter *filt;
165 if (rec->force_debug)
168 /* If there are no filters, filter on the default log level */
169 if (list_empty(&ldev->filter_head)) {
170 if (rec->level > gd->default_log_level)
175 list_for_each_entry(filt, &ldev->filter_head, sibling_node) {
176 if (rec->level > filt->max_level)
178 if ((filt->flags & LOGFF_HAS_CAT) &&
179 !log_has_cat(filt->cat_list, rec->cat))
181 if (filt->file_list &&
182 !log_has_file(filt->file_list, rec->file))
191 * log_dispatch() - Send a log record to all log devices for processing
193 * The log record is sent to each log device in turn, skipping those which have
194 * filters which block the record
196 * @rec: Log record to dispatch
197 * @return 0 (meaning success)
199 static int log_dispatch(struct log_rec *rec)
201 struct log_device *ldev;
202 static int processing_msg;
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.
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);
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];
231 rec.level = level & LOGL_LEVEL_MASK;
232 rec.force_debug = level & LOGL_FORCE_DEBUG;
237 vsnprintf(buf, sizeof(buf), fmt, args);
240 if (!gd || !(gd->flags & GD_FLG_LOG_READY)) {
242 gd->log_drop_count++;
250 int log_add_filter(const char *drv_name, enum log_category_t cat_list[],
251 enum log_level_t max_level, const char *file_list)
253 struct log_filter *filt;
254 struct log_device *ldev;
258 ldev = log_device_find_by_name(drv_name);
261 filt = calloc(1, sizeof(*filt));
266 filt->flags |= LOGFF_HAS_CAT;
268 if (i == ARRAY_SIZE(filt->cat_list)) {
272 filt->cat_list[i] = cat_list[i];
273 if (cat_list[i] == LOGC_END)
277 filt->max_level = max_level;
279 filt->file_list = strdup(file_list);
280 if (!filt->file_list) {
285 filt->filter_num = ldev->next_filter_num++;
286 list_add_tail(&filt->sibling_node, &ldev->filter_head);
288 return filt->filter_num;
295 int log_remove_filter(const char *drv_name, int filter_num)
297 struct log_filter *filt;
298 struct log_device *ldev;
300 ldev = log_device_find_by_name(drv_name);
304 list_for_each_entry(filt, &ldev->filter_head, sibling_node) {
305 if (filt->filter_num == filter_num) {
306 list_del(&filt->sibling_node);
317 * log_find_device_by_drv() - Find a device by its driver
320 * @return Device associated with that driver, or NULL if not found
322 static struct log_device *log_find_device_by_drv(struct log_driver *drv)
324 struct log_device *ldev;
326 list_for_each_entry(ldev, &gd->log_head, sibling_node) {
327 if (ldev->drv == drv)
331 * It is quite hard to pass an invalid driver since passing an unknown
332 * LOG_GET_DRIVER(xxx) would normally produce a compilation error. But
333 * it is possible to pass NULL, for example, so this
339 int log_device_set_enable(struct log_driver *drv, bool enable)
341 struct log_device *ldev;
343 ldev = log_find_device_by_drv(drv);
347 ldev->flags |= LOGDF_ENABLE;
349 ldev->flags &= ~LOGDF_ENABLE;
356 struct log_driver *drv = ll_entry_start(struct log_driver, log_driver);
357 const int count = ll_entry_count(struct log_driver, log_driver);
358 struct log_driver *end = drv + count;
361 * We cannot add runtime data to the driver since it is likely stored
362 * in rodata. Instead, set up a 'device' corresponding to each driver.
363 * We only support having a single device.
365 INIT_LIST_HEAD((struct list_head *)&gd->log_head);
367 struct log_device *ldev;
369 ldev = calloc(1, sizeof(*ldev));
371 debug("%s: Cannot allocate memory\n", __func__);
374 INIT_LIST_HEAD(&ldev->filter_head);
376 ldev->flags = drv->flags;
377 list_add_tail(&ldev->sibling_node,
378 (struct list_head *)&gd->log_head);
381 gd->flags |= GD_FLG_LOG_READY;
382 if (!gd->default_log_level)
383 gd->default_log_level = CONFIG_LOG_DEFAULT_LEVEL;
384 gd->log_fmt = log_get_default_format();