libdlog: don't read the config twice
[platform/core/system/dlog.git] / src / libdlog / log.c
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: t -*-
2  * DLOG
3  * Copyright (c) 2005-2008, The Android Open Source Project
4  * Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
5  *
6  * Licensed under the Apache License, Version 2.0 (the License);
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *     http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  */
18
19 #include <pthread.h>
20 #include <stdlib.h>
21 #include <stdbool.h>
22 #include <stdio.h>
23
24 #include <dynamic_config.h>
25 #include <logcommon.h>
26 #include "loglimiter.h"
27 #include "logconfig.h"
28 #include <assert.h>
29 #include <unistd.h>
30
31 #define DEFAULT_CONFIG_LIMITER false
32 #define DEFAULT_CONFIG_PLOG true
33 #define DEFAULT_CONFIG_DEBUGMODE 0
34 #define DEFAULT_CONFIG_LIMITER_APPLY_TO_ALL_BUFFERS 0
35
36 static int __write_to_log_null(log_id_t, log_priority, const char *, const char *);
37
38 /**
39  * @brief Points to a function which writes a log message
40  * @details The function pointed to depends on the backend used
41  * @param[in] log_id ID of the buffer to log to. Belongs to (LOG_ID_INVALID, LOG_ID_MAX) non-inclusive
42  * @param[in] prio Priority of the message.
43  * @param[in] tag The message tag, identifies the sender.
44  * @param[in] msg The contents of the message.
45  * @return Returns the number of bytes written on success and a negative error value on error.
46  * @see __dlog_init_backend
47  */
48 int (*write_to_log)(log_id_t log_id, log_priority prio, const char *tag, const char *msg) = __write_to_log_null;
49 pthread_mutex_t log_init_lock = PTHREAD_MUTEX_INITIALIZER;
50 extern void __dlog_init_pipe(const struct log_config *conf);
51 extern void __dlog_init_android(const struct log_config *conf);
52
53 bool limiter;
54 bool dynamic_config;
55 bool plog[LOG_ID_MAX];
56
57 void __update_plog(const struct log_config *conf);
58
59 static int debugmode;
60 static int fatal_assert;
61 static int limiter_apply_to_all_buffers;
62
63 /**
64  * @brief Null handler
65  * @details Ignores a log
66  * @param[in] log_id ID of the buffer to log to. Belongs to (LOG_ID_INVALID, LOG_ID_MAX) non-inclusive
67  * @param[in] prio Priority of the message.
68  * @param[in] tag The message tag, identifies the sender.
69  * @param[in] msg The contents of the message.
70  * @return DLOG_ERROR_NOT_PERMITTED
71  */
72 static int __write_to_log_null(log_id_t log_id, log_priority prio, const char *tag, const char *msg)// LCOV_EXCL_LINE
73 {
74         return DLOG_ERROR_NOT_PERMITTED; // LCOV_EXCL_LINE
75 }
76
77 static void __configure_limiter(struct log_config *config)
78 {
79         assert(config);
80
81         if (!limiter)
82                 return;
83
84         limiter = __log_limiter_create(config);
85 }
86
87 static int __configure_backend(struct log_config *config)
88 {
89         assert(config);
90
91         const char *const backend = log_config_get(config, "backend");
92         if (!backend)
93                 return 0;
94
95         if (!strcmp(backend, "pipe"))
96                 __dlog_init_pipe(config);
97         else if (!strcmp(backend, "logger"))
98                 __dlog_init_android(config);
99         else
100                 return 0;
101
102         return 1;
103 }
104
105 static void __configure_parameters(struct log_config *config)
106 {
107         assert(config);
108
109         const bool plog_default = log_config_get_boolean(config, "plog", DEFAULT_CONFIG_PLOG);
110         for (int i = 0; i < NELEMS(plog); ++i)
111                 plog[i] = plog_default;
112         plog[LOG_ID_APPS] = true; // the default does not apply here for backward compatibility reasons.
113         __update_plog(config);
114
115         debugmode = log_config_get_int(config, "debugmode", DEFAULT_CONFIG_DEBUGMODE);
116         fatal_assert = access(DEBUGMODE_FILE, F_OK) != -1;
117         limiter = log_config_get_boolean(config, "limiter", DEFAULT_CONFIG_LIMITER);
118         limiter_apply_to_all_buffers = log_config_get_int(config,
119                                                                         "limiter_apply_to_all_buffers",
120                                                                         DEFAULT_CONFIG_LIMITER_APPLY_TO_ALL_BUFFERS);
121 }
122
123 void __update_plog(const struct log_config *conf)
124 {
125         assert(conf);
126
127         for (int i = 0; i < NELEMS(plog); ++i) {
128                 char key[MAX_CONF_KEY_LEN];
129                 const int r = snprintf(key, sizeof key, "enable_%s", log_name_by_id((log_id_t)i));
130                 if (r < 0)
131                         continue;
132                 plog[i] = log_config_get_boolean(conf, key, plog[i]);
133         }
134 }
135
136 /**
137  * @brief Configure the library
138  * @details Reads relevant config values
139  */
140 static void __configure(void)
141 {
142         struct log_config config;
143
144         if (log_config_read(&config) < 0)
145                 goto failure;
146
147         dynamic_config = __dynamic_config_create(&config);
148
149         __configure_parameters(&config);
150
151         if (!__configure_backend(&config))
152                 goto failure;
153
154         __configure_limiter(&config);
155
156         log_config_free(&config);
157         return;
158
159 failure:
160         log_config_free(&config); // LCOV_EXCL_LINE
161         return;
162 }
163
164 /**
165  * @brief DLog init
166  * @details Initializes the library
167  */
168 static inline void __dlog_init(void)
169 {
170         static int is_initialized = 0;
171
172         if (is_initialized)
173                 return;
174
175         pthread_mutex_lock(&log_init_lock);
176
177         if (!is_initialized) {
178                 __configure();
179                 is_initialized = 1;
180         }
181
182         pthread_mutex_unlock(&log_init_lock);
183 }
184
185 /**
186  * @brief Fatal assertion
187  * @details Conditionally crash the sucka who sent the log
188  * @param[in] prio Priority of the log
189  */
190 static void __dlog_fatal_assert(int prio)
191 {
192         assert(!fatal_assert || (prio != DLOG_FATAL));
193 }
194
195 /**
196  * @brief Check log validity
197  * @details Checks whether the log is valid and eligible for printing
198  * @param[in] log_id The target buffer ID
199  * @param[in] prio The log's priority
200  * @param[in] tag The log's tag
201  * @return 0 on success, else an error code.
202  * @retval DLOG_ERROR_INVALID_PARAMETER Invalid parameter
203  * @retval DLOG_ERROR_NOT_PERMITTED Not permitted
204  */
205 static int dlog_should_log(log_id_t log_id, int prio, const char *tag)
206 {
207         if (!debugmode && prio <= DLOG_DEBUG)
208                 return DLOG_ERROR_INVALID_PARAMETER;
209
210         if (!tag)
211                 return DLOG_ERROR_INVALID_PARAMETER;
212
213         if (log_id <= LOG_ID_INVALID || LOG_ID_MAX <= log_id)
214                 return DLOG_ERROR_INVALID_PARAMETER;
215
216         if (!plog[log_id])
217                 return DLOG_ERROR_NOT_PERMITTED;
218
219         if (dynamic_config) {
220                 __dynamic_config_update();
221
222                 // LCOV_EXCL_START : disabled feature (limiter)
223                 if (limiter) {
224                         pthread_mutex_lock(&log_init_lock);
225                         int should_log = __log_limiter_pass_log(tag, prio);
226                         pthread_mutex_unlock(&log_init_lock);
227
228                         if (!should_log) {
229                                 return DLOG_ERROR_NOT_PERMITTED;
230                         } else if (should_log < 0) {
231                                 write_to_log(log_id, prio, tag,
232                                                 "Your log has been blocked due to limit of log lines per minute.");
233                                 return DLOG_ERROR_NOT_PERMITTED;
234                         }
235                 }
236                 // LCOV_EXCL_STOP
237         }
238
239         return DLOG_ERROR_NONE;
240 }
241
242 static int __write_to_log(log_id_t log_id, int prio, const char *tag, const char *fmt, va_list ap, bool check_should_log)
243 {
244         char buf[LOG_MAX_PAYLOAD_SIZE];
245
246         __dlog_init();
247
248         /* if limiter_apply_to_all_buffers config variable is set to 1,
249          * check_should_log value does not matter and the entry is always
250          * tested against all conditions, i.e. limiter rules
251          */
252         int ret = (limiter_apply_to_all_buffers ? true : check_should_log) ? dlog_should_log(log_id, prio, tag) : 0;
253         if (ret < 0)
254                 return ret;
255
256         vsnprintf(buf, sizeof buf, fmt, ap);
257
258         return write_to_log(log_id, prio, tag, buf);
259 }
260
261 /**
262  * @brief Print log
263  * @details Print a log line
264  * @param[in] log_id The target buffer ID
265  * @param[in] prio Priority
266  * @param[in] tag tag
267  * @param[in] fmt Format (same as printf)
268  * @param[in] ap Argument list
269  * @return Bytes written, or negative error
270  */
271 int __dlog_vprint(log_id_t log_id, int prio, const char *tag, const char *fmt, va_list ap)
272 {
273         int ret = __write_to_log(log_id, prio, tag, fmt, ap, true);
274         __dlog_fatal_assert(prio);
275
276         return ret;
277 }
278
279 /**
280  * @brief Print log
281  * @details Print a log line
282  * @param[in] log_id The target buffer ID
283  * @param[in] prio Priority
284  * @param[in] tag tag
285  * @param[in] fmt Format (same as printf)
286  * @return Bytes written, or negative error
287  */
288 int __dlog_print(log_id_t log_id, int prio, const char *tag, const char *fmt, ...)
289 {
290         va_list ap;
291
292         va_start(ap, fmt);
293         int ret = __dlog_vprint(log_id, prio, tag, fmt, ap);
294         va_end(ap);
295
296         return ret;
297 }
298
299 int dlog_vprint(log_priority prio, const char *tag, const char *fmt, va_list ap)
300 {
301         return __write_to_log(LOG_ID_APPS, prio, tag, fmt, ap, false);
302 }
303
304 int dlog_print(log_priority prio, const char *tag, const char *fmt, ...)
305 {
306         va_list ap;
307
308         va_start(ap, fmt);
309         int ret = dlog_vprint(prio, tag, fmt, ap);
310         va_end(ap);
311
312         return ret;
313 }
314
315 /**
316  * @brief Finalize DLog
317  * @details Finalizes and deallocates the library
318  * @notes Assumes it has exclusive thread access,
319  *        i.e. no other library function can run in parallel
320  */
321 void __attribute__((destructor)) __dlog_fini(void)
322 {
323         __log_limiter_destroy();
324         __dynamic_config_destroy();
325 }