blob: 952c39f643e695427db25c8ea37db115e0519acd [file] [log] [blame]
Per Lidenb97bf3f2006-01-02 19:04:38 +01001/*
Allan Stephensf5e75262010-12-31 18:59:24 +00002 * net/tipc/log.c: TIPC print buffer routines for debugging
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +09003 *
Per Liden593a5f22006-01-11 19:14:19 +01004 * Copyright (c) 1996-2006, Ericsson AB
Allan Stephensfb98ec72008-05-05 01:20:42 -07005 * Copyright (c) 2005-2007, Wind River Systems
Per Lidenb97bf3f2006-01-02 19:04:38 +01006 * All rights reserved.
7 *
Per Liden9ea1fd32006-01-11 13:30:43 +01008 * Redistribution and use in source and binary forms, with or without
Per Lidenb97bf3f2006-01-02 19:04:38 +01009 * modification, are permitted provided that the following conditions are met:
10 *
Per Liden9ea1fd32006-01-11 13:30:43 +010011 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
16 * 3. Neither the names of the copyright holders nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
Per Lidenb97bf3f2006-01-02 19:04:38 +010019 *
Per Liden9ea1fd32006-01-11 13:30:43 +010020 * Alternatively, this software may be distributed under the terms of the
21 * GNU General Public License ("GPL") version 2 as published by the Free
22 * Software Foundation.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Per Lidenb97bf3f2006-01-02 19:04:38 +010034 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#include "core.h"
38#include "config.h"
Allan Stephensf5e75262010-12-31 18:59:24 +000039#include "log.h"
Per Lidenb97bf3f2006-01-02 19:04:38 +010040
Allan Stephensc8903982008-05-05 01:22:30 -070041/*
42 * TIPC pre-defines the following print buffers:
43 *
44 * TIPC_NULL : null buffer (i.e. print nowhere)
45 * TIPC_CONS : system console
46 * TIPC_LOG : TIPC log buffer
47 *
48 * Additional user-defined print buffers are also permitted.
49 */
Per Lidenb97bf3f2006-01-02 19:04:38 +010050
Allan Stephensc8903982008-05-05 01:22:30 -070051static struct print_buf null_buf = { NULL, 0, NULL, 0 };
Allan Stephens7d3aa712008-05-05 01:22:59 -070052struct print_buf *const TIPC_NULL = &null_buf;
Allan Stephens29ede242006-10-16 21:42:04 -070053
Allan Stephensc8903982008-05-05 01:22:30 -070054static struct print_buf cons_buf = { NULL, 0, NULL, 1 };
Allan Stephens6e7e3092010-12-31 18:59:28 +000055struct print_buf *const TIPC_CONS = &cons_buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +010056
Allan Stephensc8903982008-05-05 01:22:30 -070057static struct print_buf log_buf = { NULL, 0, NULL, 1 };
Allan Stephens7d3aa712008-05-05 01:22:59 -070058struct print_buf *const TIPC_LOG = &log_buf;
Per Lidenb97bf3f2006-01-02 19:04:38 +010059
Allan Stephensc8903982008-05-05 01:22:30 -070060/*
61 * Locking policy when using print buffers.
62 *
63 * 1) tipc_printf() uses 'print_lock' to protect against concurrent access to
64 * 'print_string' when writing to a print buffer. This also protects against
65 * concurrent writes to the print buffer being written to.
66 *
Allan Stephens7ced6892010-12-31 18:59:26 +000067 * 2) tipc_log_XXX() leverages the aforementioned use of 'print_lock' to
68 * protect against all types of concurrent operations on their associated
69 * print buffer (not just write operations).
Allan Stephensc8903982008-05-05 01:22:30 -070070 *
71 * Note: All routines of the form tipc_printbuf_XXX() are lock-free, and rely
72 * on the caller to prevent simultaneous use of the print buffer(s) being
73 * manipulated.
74 */
75
76static char print_string[TIPC_PB_MAX_STR];
77static DEFINE_SPINLOCK(print_lock);
78
stephen hemminger31e3c3f2010-10-13 13:20:35 +000079static void tipc_printbuf_move(struct print_buf *pb_to,
80 struct print_buf *pb_from);
Per Lidenb97bf3f2006-01-02 19:04:38 +010081
Allan Stephensf5e75262010-12-31 18:59:24 +000082#define FORMAT(PTR, LEN, FMT) \
Per Lidenb97bf3f2006-01-02 19:04:38 +010083{\
Allan Stephensf5e75262010-12-31 18:59:24 +000084 va_list args;\
85 va_start(args, FMT);\
86 LEN = vsprintf(PTR, FMT, args);\
87 va_end(args);\
88 *(PTR + LEN) = '\0';\
Per Lidenb97bf3f2006-01-02 19:04:38 +010089}
90
Per Lidenb97bf3f2006-01-02 19:04:38 +010091/**
Per Liden4323add2006-01-18 00:38:21 +010092 * tipc_printbuf_init - initialize print buffer to empty
Allan Stephens29ede242006-10-16 21:42:04 -070093 * @pb: pointer to print buffer structure
94 * @raw: pointer to character array used by print buffer
95 * @size: size of character array
96 *
Allan Stephensc8903982008-05-05 01:22:30 -070097 * Note: If the character array is too small (or absent), the print buffer
98 * becomes a null device that discards anything written to it.
Per Lidenb97bf3f2006-01-02 19:04:38 +010099 */
100
Allan Stephens29ede242006-10-16 21:42:04 -0700101void tipc_printbuf_init(struct print_buf *pb, char *raw, u32 size)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100102{
Allan Stephens29ede242006-10-16 21:42:04 -0700103 pb->buf = raw;
104 pb->crs = raw;
105 pb->size = size;
Allan Stephensc8903982008-05-05 01:22:30 -0700106 pb->echo = 0;
Allan Stephens29ede242006-10-16 21:42:04 -0700107
108 if (size < TIPC_PB_MIN_SIZE) {
109 pb->buf = NULL;
110 } else if (raw) {
111 pb->buf[0] = 0;
Allan Stephens7d3aa712008-05-05 01:22:59 -0700112 pb->buf[size - 1] = ~0;
Allan Stephens29ede242006-10-16 21:42:04 -0700113 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100114}
115
116/**
Per Liden4323add2006-01-18 00:38:21 +0100117 * tipc_printbuf_reset - reinitialize print buffer to empty state
Allan Stephens29ede242006-10-16 21:42:04 -0700118 * @pb: pointer to print buffer structure
Per Lidenb97bf3f2006-01-02 19:04:38 +0100119 */
120
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000121static void tipc_printbuf_reset(struct print_buf *pb)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100122{
Allan Stephens7d3aa712008-05-05 01:22:59 -0700123 if (pb->buf) {
Allan Stephensc8903982008-05-05 01:22:30 -0700124 pb->crs = pb->buf;
125 pb->buf[0] = 0;
126 pb->buf[pb->size - 1] = ~0;
127 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100128}
129
130/**
Per Liden4323add2006-01-18 00:38:21 +0100131 * tipc_printbuf_empty - test if print buffer is in empty state
Allan Stephens29ede242006-10-16 21:42:04 -0700132 * @pb: pointer to print buffer structure
133 *
134 * Returns non-zero if print buffer is empty.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100135 */
136
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000137static int tipc_printbuf_empty(struct print_buf *pb)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100138{
Eric Dumazeta02cec22010-09-22 20:43:57 +0000139 return !pb->buf || (pb->crs == pb->buf);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100140}
141
142/**
Per Liden4323add2006-01-18 00:38:21 +0100143 * tipc_printbuf_validate - check for print buffer overflow
Allan Stephens29ede242006-10-16 21:42:04 -0700144 * @pb: pointer to print buffer structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900145 *
146 * Verifies that a print buffer has captured all data written to it.
Per Lidenb97bf3f2006-01-02 19:04:38 +0100147 * If data has been lost, linearize buffer and prepend an error message
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900148 *
Allan Stephens29ede242006-10-16 21:42:04 -0700149 * Returns length of print buffer data string (including trailing NUL)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100150 */
151
Per Liden4323add2006-01-18 00:38:21 +0100152int tipc_printbuf_validate(struct print_buf *pb)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100153{
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900154 char *err = "\n\n*** PRINT BUFFER OVERFLOW ***\n\n";
155 char *cp_buf;
156 struct print_buf cb;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100157
Allan Stephens29ede242006-10-16 21:42:04 -0700158 if (!pb->buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100159 return 0;
160
Allan Stephens29ede242006-10-16 21:42:04 -0700161 if (pb->buf[pb->size - 1] == 0) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900162 cp_buf = kmalloc(pb->size, GFP_ATOMIC);
Allan Stephens7d3aa712008-05-05 01:22:59 -0700163 if (cp_buf) {
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900164 tipc_printbuf_init(&cb, cp_buf, pb->size);
165 tipc_printbuf_move(&cb, pb);
166 tipc_printbuf_move(pb, &cb);
167 kfree(cp_buf);
168 memcpy(pb->buf, err, strlen(err));
169 } else {
170 tipc_printbuf_reset(pb);
171 tipc_printf(pb, err);
172 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100173 }
Eric Dumazeta02cec22010-09-22 20:43:57 +0000174 return pb->crs - pb->buf + 1;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100175}
176
177/**
Per Liden4323add2006-01-18 00:38:21 +0100178 * tipc_printbuf_move - move print buffer contents to another print buffer
Allan Stephens29ede242006-10-16 21:42:04 -0700179 * @pb_to: pointer to destination print buffer structure
180 * @pb_from: pointer to source print buffer structure
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900181 *
Per Lidenb97bf3f2006-01-02 19:04:38 +0100182 * Current contents of destination print buffer (if any) are discarded.
183 * Source print buffer becomes empty if a successful move occurs.
184 */
185
stephen hemminger31e3c3f2010-10-13 13:20:35 +0000186static void tipc_printbuf_move(struct print_buf *pb_to,
187 struct print_buf *pb_from)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100188{
189 int len;
190
191 /* Handle the cases where contents can't be moved */
192
Allan Stephens29ede242006-10-16 21:42:04 -0700193 if (!pb_to->buf)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100194 return;
195
Allan Stephens29ede242006-10-16 21:42:04 -0700196 if (!pb_from->buf) {
Per Liden4323add2006-01-18 00:38:21 +0100197 tipc_printbuf_reset(pb_to);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100198 return;
199 }
200
201 if (pb_to->size < pb_from->size) {
Allan Stephens93758c32008-05-05 01:21:12 -0700202 strcpy(pb_to->buf, "*** PRINT BUFFER MOVE ERROR ***");
203 pb_to->buf[pb_to->size - 1] = ~0;
204 pb_to->crs = strchr(pb_to->buf, 0);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100205 return;
206 }
207
208 /* Copy data from char after cursor to end (if used) */
Allan Stephens29ede242006-10-16 21:42:04 -0700209
Per Lidenb97bf3f2006-01-02 19:04:38 +0100210 len = pb_from->buf + pb_from->size - pb_from->crs - 2;
Allan Stephens7d3aa712008-05-05 01:22:59 -0700211 if ((pb_from->buf[pb_from->size - 1] == 0) && (len > 0)) {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100212 strcpy(pb_to->buf, pb_from->crs + 1);
213 pb_to->crs = pb_to->buf + len;
214 } else
215 pb_to->crs = pb_to->buf;
216
217 /* Copy data from start to cursor (always) */
Allan Stephens29ede242006-10-16 21:42:04 -0700218
Per Lidenb97bf3f2006-01-02 19:04:38 +0100219 len = pb_from->crs - pb_from->buf;
220 strcpy(pb_to->crs, pb_from->buf);
221 pb_to->crs += len;
222
Per Liden4323add2006-01-18 00:38:21 +0100223 tipc_printbuf_reset(pb_from);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100224}
225
226/**
Allan Stephensc8903982008-05-05 01:22:30 -0700227 * tipc_printf - append formatted output to print buffer
228 * @pb: pointer to print buffer
Allan Stephens29ede242006-10-16 21:42:04 -0700229 * @fmt: formatted info to be printed
Per Lidenb97bf3f2006-01-02 19:04:38 +0100230 */
231
232void tipc_printf(struct print_buf *pb, const char *fmt, ...)
233{
234 int chars_to_add;
235 int chars_left;
236 char save_char;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100237
238 spin_lock_bh(&print_lock);
Allan Stephensc8903982008-05-05 01:22:30 -0700239
Per Lidenb97bf3f2006-01-02 19:04:38 +0100240 FORMAT(print_string, chars_to_add, fmt);
Allan Stephens29ede242006-10-16 21:42:04 -0700241 if (chars_to_add >= TIPC_PB_MAX_STR)
242 strcpy(print_string, "*** PRINT BUFFER STRING TOO LONG ***");
Per Lidenb97bf3f2006-01-02 19:04:38 +0100243
Allan Stephensc8903982008-05-05 01:22:30 -0700244 if (pb->buf) {
245 chars_left = pb->buf + pb->size - pb->crs - 1;
246 if (chars_to_add <= chars_left) {
247 strcpy(pb->crs, print_string);
248 pb->crs += chars_to_add;
249 } else if (chars_to_add >= (pb->size - 1)) {
250 strcpy(pb->buf, print_string + chars_to_add + 1
251 - pb->size);
252 pb->crs = pb->buf + pb->size - 1;
253 } else {
254 strcpy(pb->buf, print_string + chars_left);
255 save_char = print_string[chars_left];
256 print_string[chars_left] = 0;
257 strcpy(pb->crs, print_string);
258 print_string[chars_left] = save_char;
259 pb->crs = pb->buf + chars_to_add - chars_left;
YOSHIFUJI Hideakic4307282007-02-09 23:25:21 +0900260 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100261 }
Allan Stephensc8903982008-05-05 01:22:30 -0700262
263 if (pb->echo)
Stephen Hemminger4b704d52009-03-18 19:11:29 -0700264 printk("%s", print_string);
Allan Stephensc8903982008-05-05 01:22:30 -0700265
Per Lidenb97bf3f2006-01-02 19:04:38 +0100266 spin_unlock_bh(&print_lock);
267}
268
Per Lidenb97bf3f2006-01-02 19:04:38 +0100269/**
Allan Stephens025adbe2008-05-05 01:20:04 -0700270 * tipc_log_resize - change the size of the TIPC log buffer
271 * @log_size: print buffer size to use
Per Lidenb97bf3f2006-01-02 19:04:38 +0100272 */
273
Allan Stephensfb98ec72008-05-05 01:20:42 -0700274int tipc_log_resize(int log_size)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100275{
Allan Stephensfb98ec72008-05-05 01:20:42 -0700276 int res = 0;
277
Per Lidenb97bf3f2006-01-02 19:04:38 +0100278 spin_lock_bh(&print_lock);
Allan Stephensf5e75262010-12-31 18:59:24 +0000279 kfree(TIPC_LOG->buf);
280 TIPC_LOG->buf = NULL;
Allan Stephens025adbe2008-05-05 01:20:04 -0700281 if (log_size) {
282 if (log_size < TIPC_PB_MIN_SIZE)
283 log_size = TIPC_PB_MIN_SIZE;
Allan Stephensc8903982008-05-05 01:22:30 -0700284 res = TIPC_LOG->echo;
Allan Stephens025adbe2008-05-05 01:20:04 -0700285 tipc_printbuf_init(TIPC_LOG, kmalloc(log_size, GFP_ATOMIC),
286 log_size);
Allan Stephensc8903982008-05-05 01:22:30 -0700287 TIPC_LOG->echo = res;
Allan Stephensfb98ec72008-05-05 01:20:42 -0700288 res = !TIPC_LOG->buf;
Allan Stephens025adbe2008-05-05 01:20:04 -0700289 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100290 spin_unlock_bh(&print_lock);
Allan Stephensfb98ec72008-05-05 01:20:42 -0700291
292 return res;
Per Lidenb97bf3f2006-01-02 19:04:38 +0100293}
294
295/**
Allan Stephens025adbe2008-05-05 01:20:04 -0700296 * tipc_log_resize_cmd - reconfigure size of TIPC log buffer
Per Lidenb97bf3f2006-01-02 19:04:38 +0100297 */
298
Allan Stephens025adbe2008-05-05 01:20:04 -0700299struct sk_buff *tipc_log_resize_cmd(const void *req_tlv_area, int req_tlv_space)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100300{
301 u32 value;
302
303 if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
Per Liden4323add2006-01-18 00:38:21 +0100304 return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100305
Al Viro3e6c8cd2006-11-08 00:19:09 -0800306 value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100307 if (value != delimit(value, 0, 32768))
Per Liden4323add2006-01-18 00:38:21 +0100308 return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
309 " (log size must be 0-32768)");
Allan Stephensfb98ec72008-05-05 01:20:42 -0700310 if (tipc_log_resize(value))
311 return tipc_cfg_reply_error_string(
312 "unable to create specified log (log size is now 0)");
Per Liden4323add2006-01-18 00:38:21 +0100313 return tipc_cfg_reply_none();
Per Lidenb97bf3f2006-01-02 19:04:38 +0100314}
315
316/**
Per Liden4323add2006-01-18 00:38:21 +0100317 * tipc_log_dump - capture TIPC log buffer contents in configuration message
Per Lidenb97bf3f2006-01-02 19:04:38 +0100318 */
319
Per Liden4323add2006-01-18 00:38:21 +0100320struct sk_buff *tipc_log_dump(void)
Per Lidenb97bf3f2006-01-02 19:04:38 +0100321{
322 struct sk_buff *reply;
323
324 spin_lock_bh(&print_lock);
Allan Stephens93758c32008-05-05 01:21:12 -0700325 if (!TIPC_LOG->buf) {
326 spin_unlock_bh(&print_lock);
Per Liden4323add2006-01-18 00:38:21 +0100327 reply = tipc_cfg_reply_ultra_string("log not activated\n");
Allan Stephens93758c32008-05-05 01:21:12 -0700328 } else if (tipc_printbuf_empty(TIPC_LOG)) {
329 spin_unlock_bh(&print_lock);
Per Liden4323add2006-01-18 00:38:21 +0100330 reply = tipc_cfg_reply_ultra_string("log is empty\n");
Allan Stephensf5e75262010-12-31 18:59:24 +0000331 } else {
Per Lidenb97bf3f2006-01-02 19:04:38 +0100332 struct tlv_desc *rep_tlv;
333 struct print_buf pb;
334 int str_len;
335
Per Liden4323add2006-01-18 00:38:21 +0100336 str_len = min(TIPC_LOG->size, 32768u);
Allan Stephens93758c32008-05-05 01:21:12 -0700337 spin_unlock_bh(&print_lock);
Per Liden4323add2006-01-18 00:38:21 +0100338 reply = tipc_cfg_reply_alloc(TLV_SPACE(str_len));
Per Lidenb97bf3f2006-01-02 19:04:38 +0100339 if (reply) {
340 rep_tlv = (struct tlv_desc *)reply->data;
Per Liden4323add2006-01-18 00:38:21 +0100341 tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), str_len);
Allan Stephens93758c32008-05-05 01:21:12 -0700342 spin_lock_bh(&print_lock);
Per Liden4323add2006-01-18 00:38:21 +0100343 tipc_printbuf_move(&pb, TIPC_LOG);
Allan Stephens93758c32008-05-05 01:21:12 -0700344 spin_unlock_bh(&print_lock);
Per Lidenb97bf3f2006-01-02 19:04:38 +0100345 str_len = strlen(TLV_DATA(rep_tlv)) + 1;
346 skb_put(reply, TLV_SPACE(str_len));
347 TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
348 }
349 }
Per Lidenb97bf3f2006-01-02 19:04:38 +0100350 return reply;
351}