dbg.c 11.6 KB
Newer Older
P
Per Liden 已提交
1
/*
2
 * net/tipc/dbg.c: TIPC print buffer routines for debugging
P
Per Liden 已提交
3
 * 
P
Per Liden 已提交
4
 * Copyright (c) 1996-2006, Ericsson AB
5
 * Copyright (c) 2005-2006, Wind River Systems
P
Per Liden 已提交
6 7
 * All rights reserved.
 *
P
Per Liden 已提交
8
 * Redistribution and use in source and binary forms, with or without
P
Per Liden 已提交
9 10
 * modification, are permitted provided that the following conditions are met:
 *
P
Per Liden 已提交
11 12 13 14 15 16 17 18
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. Neither the names of the copyright holders nor the names of its
 *    contributors may be used to endorse or promote products derived from
 *    this software without specific prior written permission.
P
Per Liden 已提交
19
 *
P
Per Liden 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33
 * Alternatively, this software may be distributed under the terms of the
 * GNU General Public License ("GPL") version 2 as published by the Free
 * Software Foundation.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
P
Per Liden 已提交
34 35 36 37 38 39 40
 * POSSIBILITY OF SUCH DAMAGE.
 */

#include "core.h"
#include "config.h"
#include "dbg.h"

41
static char print_string[TIPC_PB_MAX_STR];
I
Ingo Molnar 已提交
42
static DEFINE_SPINLOCK(print_lock);
P
Per Liden 已提交
43

44 45 46
static struct print_buf null_buf = { NULL, 0, NULL, NULL };
struct print_buf *TIPC_NULL = &null_buf;

P
Per Liden 已提交
47
static struct print_buf cons_buf = { NULL, 0, NULL, NULL };
48
struct print_buf *TIPC_CONS = &cons_buf;
P
Per Liden 已提交
49 50

static struct print_buf log_buf = { NULL, 0, NULL, NULL };
51
struct print_buf *TIPC_LOG = &log_buf;
P
Per Liden 已提交
52 53 54 55 56 57 58 59 60 61 62 63 64 65


#define FORMAT(PTR,LEN,FMT) \
{\
       va_list args;\
       va_start(args, FMT);\
       LEN = vsprintf(PTR, FMT, args);\
       va_end(args);\
       *(PTR + LEN) = '\0';\
}

/*
 * Locking policy when using print buffers.
 *
66 67 68 69 70 71 72 73
 * The following routines use 'print_lock' for protection:
 * 1) tipc_printf()  - to protect its print buffer(s) and 'print_string'
 * 2) TIPC_TEE()     - to protect its print buffer(s)
 * 3) tipc_dump()    - to protect its print buffer(s) and 'print_string'
 * 4) tipc_log_XXX() - to protect TIPC_LOG
 *
 * All routines of the form tipc_printbuf_XXX() rely on the caller to prevent
 * simultaneous use of the print buffer(s) being manipulated.
P
Per Liden 已提交
74 75 76
 */

/**
77
 * tipc_printbuf_init - initialize print buffer to empty
78 79 80 81 82 83
 * @pb: pointer to print buffer structure
 * @raw: pointer to character array used by print buffer
 * @size: size of character array
 *
 * Makes the print buffer a null device that discards anything written to it
 * if the character array is too small (or absent).
P
Per Liden 已提交
84 85
 */

86
void tipc_printbuf_init(struct print_buf *pb, char *raw, u32 size)
P
Per Liden 已提交
87
{
88 89 90
	pb->buf = raw;
	pb->crs = raw;
	pb->size = size;
91
	pb->next = NULL;
92 93 94 95 96 97 98

	if (size < TIPC_PB_MIN_SIZE) {
		pb->buf = NULL;
	} else if (raw) {
		pb->buf[0] = 0;
		pb->buf[size-1] = ~0;
	}
P
Per Liden 已提交
99 100 101
}

/**
102
 * tipc_printbuf_reset - reinitialize print buffer to empty state
103
 * @pb: pointer to print buffer structure
P
Per Liden 已提交
104 105
 */

106
void tipc_printbuf_reset(struct print_buf *pb)
P
Per Liden 已提交
107
{
108
	tipc_printbuf_init(pb, pb->buf, pb->size);
P
Per Liden 已提交
109 110 111
}

/**
112
 * tipc_printbuf_empty - test if print buffer is in empty state
113 114 115
 * @pb: pointer to print buffer structure
 *
 * Returns non-zero if print buffer is empty.
P
Per Liden 已提交
116 117
 */

118
int tipc_printbuf_empty(struct print_buf *pb)
P
Per Liden 已提交
119
{
120
	return (!pb->buf || (pb->crs == pb->buf));
P
Per Liden 已提交
121 122 123
}

/**
124
 * tipc_printbuf_validate - check for print buffer overflow
125
 * @pb: pointer to print buffer structure
P
Per Liden 已提交
126 127 128 129
 * 
 * Verifies that a print buffer has captured all data written to it. 
 * If data has been lost, linearize buffer and prepend an error message
 * 
130
 * Returns length of print buffer data string (including trailing NUL)
P
Per Liden 已提交
131 132
 */

133
int tipc_printbuf_validate(struct print_buf *pb)
P
Per Liden 已提交
134
{
135
        char *err = "\n\n*** PRINT BUFFER OVERFLOW ***\n\n";
P
Per Liden 已提交
136 137 138
        char *cp_buf;
        struct print_buf cb;

139
	if (!pb->buf)
P
Per Liden 已提交
140 141
		return 0;

142
	if (pb->buf[pb->size - 1] == 0) {
P
Per Liden 已提交
143 144
                cp_buf = kmalloc(pb->size, GFP_ATOMIC);
                if (cp_buf != NULL){
145 146 147
                        tipc_printbuf_init(&cb, cp_buf, pb->size);
                        tipc_printbuf_move(&cb, pb);
                        tipc_printbuf_move(pb, &cb);
P
Per Liden 已提交
148 149 150
                        kfree(cp_buf);
                        memcpy(pb->buf, err, strlen(err));
                } else {
151
                        tipc_printbuf_reset(pb);
P
Per Liden 已提交
152 153 154 155 156 157 158
                        tipc_printf(pb, err);
                }
	}
	return (pb->crs - pb->buf + 1);
}

/**
159
 * tipc_printbuf_move - move print buffer contents to another print buffer
160 161
 * @pb_to: pointer to destination print buffer structure
 * @pb_from: pointer to source print buffer structure
P
Per Liden 已提交
162 163 164 165 166
 * 
 * Current contents of destination print buffer (if any) are discarded.
 * Source print buffer becomes empty if a successful move occurs.
 */

167
void tipc_printbuf_move(struct print_buf *pb_to, struct print_buf *pb_from)
P
Per Liden 已提交
168 169 170 171 172
{
	int len;

	/* Handle the cases where contents can't be moved */

173
	if (!pb_to->buf)
P
Per Liden 已提交
174 175
		return;

176
	if (!pb_from->buf) {
177
		tipc_printbuf_reset(pb_to);
P
Per Liden 已提交
178 179 180 181
		return;
	}

	if (pb_to->size < pb_from->size) {
182
		tipc_printbuf_reset(pb_to);
183
		tipc_printf(pb_to, "*** PRINT BUFFER MOVE ERROR ***");
P
Per Liden 已提交
184 185 186 187
		return;
	}

	/* Copy data from char after cursor to end (if used) */
188

P
Per Liden 已提交
189 190 191 192 193 194 195 196
	len = pb_from->buf + pb_from->size - pb_from->crs - 2;
	if ((pb_from->buf[pb_from->size-1] == 0) && (len > 0)) {
		strcpy(pb_to->buf, pb_from->crs + 1);
		pb_to->crs = pb_to->buf + len;
	} else
		pb_to->crs = pb_to->buf;

	/* Copy data from start to cursor (always) */
197

P
Per Liden 已提交
198 199 200 201
	len = pb_from->crs - pb_from->buf;
	strcpy(pb_to->crs, pb_from->buf);
	pb_to->crs += len;

202
	tipc_printbuf_reset(pb_from);
P
Per Liden 已提交
203 204 205 206
}

/**
 * tipc_printf - append formatted output to print buffer chain
207 208
 * @pb: pointer to chain of print buffers (may be NULL)
 * @fmt: formatted info to be printed
P
Per Liden 已提交
209 210 211 212 213 214 215 216 217 218 219
 */

void tipc_printf(struct print_buf *pb, const char *fmt, ...)
{
	int chars_to_add;
	int chars_left;
	char save_char;
	struct print_buf *pb_next;

	spin_lock_bh(&print_lock);
	FORMAT(print_string, chars_to_add, fmt);
220 221
	if (chars_to_add >= TIPC_PB_MAX_STR)
		strcpy(print_string, "*** PRINT BUFFER STRING TOO LONG ***");
P
Per Liden 已提交
222 223

	while (pb) {
224
		if (pb == TIPC_CONS)
P
Per Liden 已提交
225 226 227 228 229 230
			printk(print_string);
		else if (pb->buf) {
			chars_left = pb->buf + pb->size - pb->crs - 1;
			if (chars_to_add <= chars_left) {
				strcpy(pb->crs, print_string);
				pb->crs += chars_to_add;
231 232 233 234
			} else if (chars_to_add >= (pb->size - 1)) {
				strcpy(pb->buf, print_string + chars_to_add + 1
				       - pb->size);
				pb->crs = pb->buf + pb->size - 1;
P
Per Liden 已提交
235 236 237 238 239 240 241 242 243 244
			} else {
				strcpy(pb->buf, print_string + chars_left);
                                save_char = print_string[chars_left];
                                print_string[chars_left] = 0;
                                strcpy(pb->crs, print_string);
                                print_string[chars_left] = save_char;
                                pb->crs = pb->buf + chars_to_add - chars_left;
                        }
                }
		pb_next = pb->next;
245
		pb->next = NULL;
P
Per Liden 已提交
246 247 248 249 250 251
		pb = pb_next;
	}
	spin_unlock_bh(&print_lock);
}

/**
252
 * TIPC_TEE - perform next output operation on both print buffers  
253 254 255 256
 * @b0: pointer to chain of print buffers (may be NULL)
 * @b1: pointer to print buffer to add to chain
 *
 * Returns pointer to print buffer chain.
P
Per Liden 已提交
257 258
 */

259
struct print_buf *TIPC_TEE(struct print_buf *b0, struct print_buf *b1)
P
Per Liden 已提交
260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286
{
	struct print_buf *pb = b0;

	if (!b0 || (b0 == b1))
		return b1;

	spin_lock_bh(&print_lock);
	while (pb->next) {
		if ((pb->next == b1) || (pb->next == b0))
			pb->next = pb->next->next;
		else
			pb = pb->next;
	}
	pb->next = b1;
	spin_unlock_bh(&print_lock);
	return b0;
}

/**
 * print_to_console - write string of bytes to console in multiple chunks
 */

static void print_to_console(char *crs, int len)
{
	int rest = len;

	while (rest > 0) {
287
		int sz = rest < TIPC_PB_MAX_STR ? rest : TIPC_PB_MAX_STR;
P
Per Liden 已提交
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305
		char c = crs[sz];

		crs[sz] = 0;
		printk((const char *)crs);
		crs[sz] = c;
		rest -= sz;
		crs += sz;
	}
}

/**
 * printbuf_dump - write print buffer contents to console
 */

static void printbuf_dump(struct print_buf *pb)
{
	int len;

306 307 308 309 310
	if (!pb->buf) {
		printk("*** PRINT BUFFER NOT ALLOCATED ***");
		return;
	}

P
Per Liden 已提交
311
	/* Dump print buffer from char after cursor to end (if used) */
312

P
Per Liden 已提交
313 314 315 316 317
	len = pb->buf + pb->size - pb->crs - 2;
	if ((pb->buf[pb->size - 1] == 0) && (len > 0))
		print_to_console(pb->crs + 1, len);

	/* Dump print buffer from start to cursor (always) */
318

P
Per Liden 已提交
319 320 321 322 323 324
	len = pb->crs - pb->buf;
	print_to_console(pb->buf, len);
}

/**
 * tipc_dump - dump non-console print buffer(s) to console
325
 * @pb: pointer to chain of print buffers
P
Per Liden 已提交
326 327 328 329
 */

void tipc_dump(struct print_buf *pb, const char *fmt, ...)
{
330
	struct print_buf *pb_next;
P
Per Liden 已提交
331 332 333
	int len;

	spin_lock_bh(&print_lock);
334 335
	FORMAT(print_string, len, fmt);
	printk(print_string);
P
Per Liden 已提交
336 337

	for (; pb; pb = pb->next) {
338 339 340 341 342 343 344 345 346 347
		if (pb != TIPC_CONS) {
			printk("\n---- Start of %s log dump ----\n\n",
			       (pb == TIPC_LOG) ? "global" : "local");
			printbuf_dump(pb);
			tipc_printbuf_reset(pb);
			printk("\n---- End of dump ----\n");
		}
		pb_next = pb->next;
		pb->next = NULL;
		pb = pb_next;
P
Per Liden 已提交
348 349 350 351 352
	}
	spin_unlock_bh(&print_lock);
}

/**
353
 * tipc_log_stop - free up TIPC log print buffer 
P
Per Liden 已提交
354 355
 */

356
void tipc_log_stop(void)
P
Per Liden 已提交
357 358
{
	spin_lock_bh(&print_lock);
359 360 361
	if (TIPC_LOG->buf) {
		kfree(TIPC_LOG->buf);
		TIPC_LOG->buf = NULL;
P
Per Liden 已提交
362 363 364 365 366
	}
	spin_unlock_bh(&print_lock);
}

/**
367 368
 * tipc_log_reinit - (re)initialize TIPC log print buffer
 * @log_size: print buffer size to use
P
Per Liden 已提交
369 370
 */

371
void tipc_log_reinit(int log_size)
P
Per Liden 已提交
372
{
373
	tipc_log_stop();
P
Per Liden 已提交
374 375

	if (log_size) {
376 377
		if (log_size < TIPC_PB_MIN_SIZE)
			log_size = TIPC_PB_MIN_SIZE;
P
Per Liden 已提交
378
		spin_lock_bh(&print_lock);
379 380
		tipc_printbuf_init(TIPC_LOG, kmalloc(log_size, GFP_ATOMIC),
				   log_size);
P
Per Liden 已提交
381 382 383 384 385
		spin_unlock_bh(&print_lock);
	}
}

/**
386
 * tipc_log_resize - reconfigure size of TIPC log buffer
P
Per Liden 已提交
387 388
 */

389
struct sk_buff *tipc_log_resize(const void *req_tlv_area, int req_tlv_space)
P
Per Liden 已提交
390 391 392 393
{
	u32 value;

	if (!TLV_CHECK(req_tlv_area, req_tlv_space, TIPC_TLV_UNSIGNED))
394
		return tipc_cfg_reply_error_string(TIPC_CFG_TLV_ERROR);
P
Per Liden 已提交
395

A
Al Viro 已提交
396
	value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
P
Per Liden 已提交
397
	if (value != delimit(value, 0, 32768))
398 399 400 401
		return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
						   " (log size must be 0-32768)");
	tipc_log_reinit(value);
	return tipc_cfg_reply_none();
P
Per Liden 已提交
402 403 404
}

/**
405
 * tipc_log_dump - capture TIPC log buffer contents in configuration message
P
Per Liden 已提交
406 407
 */

408
struct sk_buff *tipc_log_dump(void)
P
Per Liden 已提交
409 410 411 412
{
	struct sk_buff *reply;

	spin_lock_bh(&print_lock);
413 414 415 416
	if (!TIPC_LOG->buf)
		reply = tipc_cfg_reply_ultra_string("log not activated\n");
	else if (tipc_printbuf_empty(TIPC_LOG))
		reply = tipc_cfg_reply_ultra_string("log is empty\n");
P
Per Liden 已提交
417 418 419 420 421
	else {
		struct tlv_desc *rep_tlv;
		struct print_buf pb;
		int str_len;

422 423
		str_len = min(TIPC_LOG->size, 32768u);
		reply = tipc_cfg_reply_alloc(TLV_SPACE(str_len));
P
Per Liden 已提交
424 425
		if (reply) {
			rep_tlv = (struct tlv_desc *)reply->data;
426 427
			tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), str_len);
			tipc_printbuf_move(&pb, TIPC_LOG);
P
Per Liden 已提交
428 429 430 431 432 433 434 435 436
			str_len = strlen(TLV_DATA(rep_tlv)) + 1;
			skb_put(reply, TLV_SPACE(str_len));
			TLV_SET(rep_tlv, TIPC_TLV_ULTRA_STRING, NULL, str_len);
		}
	}
	spin_unlock_bh(&print_lock);
	return reply;
}