454a7859053beaee13f03add588323f536b6ab48
[dpdk.git] / lib / librte_eal / common / eal_common_log.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2014 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  * 
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  * 
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <string.h>
35 #include <stdio.h>
36 #include <stdint.h>
37 #include <stdarg.h>
38 #include <sys/types.h>
39 #include <stdlib.h>
40 #include <unistd.h>
41 #include <inttypes.h>
42 #include <errno.h>
43 #include <sys/queue.h>
44
45 #include <rte_log.h>
46 #include <rte_memory.h>
47 #include <rte_memzone.h>
48 #include <rte_launch.h>
49 #include <rte_common.h>
50 #include <rte_cycles.h>
51 #include <rte_tailq.h>
52 #include <rte_eal.h>
53 #include <rte_per_lcore.h>
54 #include <rte_lcore.h>
55 #include <rte_atomic.h>
56 #include <rte_debug.h>
57 #include <rte_spinlock.h>
58 #include <rte_branch_prediction.h>
59 #include <rte_ring.h>
60 #include <rte_mempool.h>
61
62 #include "eal_private.h"
63
64 #define LOG_ELT_SIZE     2048
65
66 #define LOG_HISTORY_MP_NAME "log_history"
67
68 STAILQ_HEAD(log_history_list, log_history);
69
70 /**
71  * The structure of a message log in the log history.
72  */
73 struct log_history {
74         STAILQ_ENTRY(log_history) next;
75         unsigned size;
76         char buf[0];
77 };
78
79 static struct rte_mempool *log_history_mp = NULL;
80 static unsigned log_history_size = 0;
81 static struct log_history_list log_history;
82
83 /* global log structure */
84 struct rte_logs rte_logs = {
85         .type = ~0,
86         .level = RTE_LOG_DEBUG,
87         .file = NULL,
88 };
89
90 static rte_spinlock_t log_dump_lock = RTE_SPINLOCK_INITIALIZER;
91 static rte_spinlock_t log_list_lock = RTE_SPINLOCK_INITIALIZER;
92 static FILE *default_log_stream;
93 static int history_enabled = 1;
94
95 /**
96  * This global structure stores some informations about the message
97  * that is currently beeing processed by one lcore
98  */
99 struct log_cur_msg {
100         uint32_t loglevel; /**< log level - see rte_log.h */
101         uint32_t logtype;  /**< log type  - see rte_log.h */
102 } __rte_cache_aligned;
103 static struct log_cur_msg log_cur_msg[RTE_MAX_LCORE]; /**< per core log */
104
105
106 /* default logs */
107
108 int
109 rte_log_add_in_history(const char *buf, size_t size)
110 {
111         struct log_history *hist_buf = NULL;
112         static const unsigned hist_buf_size = LOG_ELT_SIZE - sizeof(*hist_buf);
113         void *obj;
114
115         if (history_enabled == 0)
116                 return 0;
117
118         rte_spinlock_lock(&log_list_lock);
119
120         /* get a buffer for adding in history */
121         if (log_history_size > RTE_LOG_HISTORY) {
122                 hist_buf = STAILQ_FIRST(&log_history);
123                 STAILQ_REMOVE_HEAD(&log_history, next);
124         }
125         else {
126                 if (rte_mempool_mc_get(log_history_mp, &obj) < 0)
127                         obj = NULL;
128                 hist_buf = obj;
129         }
130
131         /* no buffer */
132         if (hist_buf == NULL) {
133                 rte_spinlock_unlock(&log_list_lock);
134                 return -ENOBUFS;
135         }
136
137         /* not enough room for msg, buffer go back in mempool */
138         if (size >= hist_buf_size) {
139                 rte_mempool_mp_put(log_history_mp, hist_buf);
140                 rte_spinlock_unlock(&log_list_lock);
141                 return -ENOBUFS;
142         }
143
144         /* add in history */
145         memcpy(hist_buf->buf, buf, size);
146         hist_buf->buf[size] = hist_buf->buf[hist_buf_size-1] = '\0';
147         hist_buf->size = size;
148         STAILQ_INSERT_TAIL(&log_history, hist_buf, next);
149         log_history_size++;
150         rte_spinlock_unlock(&log_list_lock);
151
152         return 0;
153 }
154
155 void
156 rte_log_set_history(int enable)
157 {
158         history_enabled = enable;
159 }
160
161 /* Change the stream that will be used by logging system */
162 int
163 rte_openlog_stream(FILE *f)
164 {
165         if (f == NULL)
166                 rte_logs.file = default_log_stream;
167         else
168                 rte_logs.file = f;
169         return 0;
170 }
171
172 /* Set global log level */
173 void
174 rte_set_log_level(uint32_t level)
175 {
176         rte_logs.level = (uint32_t)level;
177 }
178
179 /* Set global log type */
180 void
181 rte_set_log_type(uint32_t type, int enable)
182 {
183         if (enable)
184                 rte_logs.type |= type;
185         else
186                 rte_logs.type &= (~type);
187 }
188
189 /* get the current loglevel for the message beeing processed */
190 int rte_log_cur_msg_loglevel(void)
191 {
192         unsigned lcore_id;
193         lcore_id = rte_lcore_id();
194         return log_cur_msg[lcore_id].loglevel;
195 }
196
197 /* get the current logtype for the message beeing processed */
198 int rte_log_cur_msg_logtype(void)
199 {
200         unsigned lcore_id;
201         lcore_id = rte_lcore_id();
202         return log_cur_msg[lcore_id].logtype;
203 }
204
205 /* Dump log history on console */
206 void
207 rte_log_dump_history(void)
208 {
209         struct log_history_list tmp_log_history;
210         struct log_history *hist_buf;
211         unsigned i;
212
213         /* only one dump at a time */
214         rte_spinlock_lock(&log_dump_lock);
215
216         /* save list, and re-init to allow logging during dump */
217         rte_spinlock_lock(&log_list_lock);
218         tmp_log_history = log_history;
219         STAILQ_INIT(&log_history);
220         rte_spinlock_unlock(&log_list_lock);
221
222         for (i=0; i<RTE_LOG_HISTORY; i++) {
223
224                 /* remove one message from history list */
225                 hist_buf = STAILQ_FIRST(&tmp_log_history);
226
227                 if (hist_buf == NULL)
228                         break;
229
230                 STAILQ_REMOVE_HEAD(&tmp_log_history, next);
231
232                 /* write on stdout */
233                 if (fwrite(hist_buf->buf, hist_buf->size, 1, stdout) == 0) {
234                         rte_mempool_mp_put(log_history_mp, hist_buf);
235                         break;
236                 }
237
238                 /* put back message structure in pool */
239                 rte_mempool_mp_put(log_history_mp, hist_buf);
240         }
241         fflush(stdout);
242
243         rte_spinlock_unlock(&log_dump_lock);
244 }
245
246 /*
247  * Generates a log message The message will be sent in the stream
248  * defined by the previous call to rte_openlog_stream().
249  */
250 int
251 rte_vlog(__attribute__((unused)) uint32_t level,
252          __attribute__((unused)) uint32_t logtype,
253            const char *format, va_list ap)
254 {
255         int ret;
256         FILE *f = rte_logs.file;
257         unsigned lcore_id;
258
259         /* save loglevel and logtype in a global per-lcore variable */
260         lcore_id = rte_lcore_id();
261         log_cur_msg[lcore_id].loglevel = level;
262         log_cur_msg[lcore_id].logtype = logtype;
263
264         ret = vfprintf(f, format, ap);
265         fflush(f);
266         return ret;
267 }
268
269 /*
270  * Generates a log message The message will be sent in the stream
271  * defined by the previous call to rte_openlog_stream().
272  */
273 int
274 rte_log(uint32_t level, uint32_t logtype, const char *format, ...)
275 {
276         va_list ap;
277         int ret;
278
279         va_start(ap, format);
280         ret = rte_vlog(level, logtype, format, ap);
281         va_end(ap);
282         return ret;
283 }
284
285 /*
286  * called by environment-specific log init function to initialize log
287  * history
288  */
289 int
290 rte_eal_common_log_init(FILE *default_log)
291 {
292         STAILQ_INIT(&log_history);
293
294         /* reserve RTE_LOG_HISTORY*2 elements, so we can dump and
295          * keep logging during this time */
296         log_history_mp = rte_mempool_create(LOG_HISTORY_MP_NAME, RTE_LOG_HISTORY*2,
297                                 LOG_ELT_SIZE, 0, 0,
298                                 NULL, NULL,
299                                 NULL, NULL,
300                                 SOCKET_ID_ANY, 0);
301        
302         if ((log_history_mp == NULL) && 
303             ((log_history_mp = rte_mempool_lookup(LOG_HISTORY_MP_NAME)) == NULL)){
304                 RTE_LOG(ERR, EAL, "%s(): cannot create log_history mempool\n",
305                         __func__);
306                 return -1;
307         }
308
309         default_log_stream = default_log;
310         rte_openlog_stream(default_log);
311         return 0;
312 }
313