dbg.c 10.9 KB
Newer Older
P
Per Liden 已提交
1
/*
2
 * net/tipc/dbg.c: TIPC print buffer routines for debugging
3
 *
P
Per Liden 已提交
4
 * Copyright (c) 1996-2006, Ericsson AB
5
 * Copyright (c) 2005-2007, 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 42 43 44 45 46 47 48 49
/*
 * TIPC pre-defines the following print buffers:
 *
 * TIPC_NULL : null buffer (i.e. print nowhere)
 * TIPC_CONS : system console
 * TIPC_LOG  : TIPC log buffer
 *
 * Additional user-defined print buffers are also permitted.
 */
P
Per Liden 已提交
50

51
static struct print_buf null_buf = { NULL, 0, NULL, 0 };
52 53
struct print_buf *TIPC_NULL = &null_buf;

54
static struct print_buf cons_buf = { NULL, 0, NULL, 1 };
55
struct print_buf *TIPC_CONS = &cons_buf;
P
Per Liden 已提交
56

57
static struct print_buf log_buf = { NULL, 0, NULL, 1 };
58
struct print_buf *TIPC_LOG = &log_buf;
P
Per Liden 已提交
59

60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
/*
 * Locking policy when using print buffers.
 *
 * 1) tipc_printf() uses 'print_lock' to protect against concurrent access to
 * 'print_string' when writing to a print buffer. This also protects against
 * concurrent writes to the print buffer being written to.
 *
 * 2) tipc_dump() and tipc_log_XXX() leverage the aforementioned
 * use of 'print_lock' to protect against all types of concurrent operations
 * on their associated print buffer (not just write operations).
 *
 * Note: All routines of the form tipc_printbuf_XXX() are lock-free, and rely
 * on the caller to prevent simultaneous use of the print buffer(s) being
 * manipulated.
 */

static char print_string[TIPC_PB_MAX_STR];
static DEFINE_SPINLOCK(print_lock);

P
Per Liden 已提交
79 80 81 82 83 84 85 86 87 88 89

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

/**
90
 * tipc_printbuf_init - initialize print buffer to empty
91 92 93 94
 * @pb: pointer to print buffer structure
 * @raw: pointer to character array used by print buffer
 * @size: size of character array
 *
95 96
 * Note: If the character array is too small (or absent), the print buffer
 * becomes a null device that discards anything written to it.
P
Per Liden 已提交
97 98
 */

99
void tipc_printbuf_init(struct print_buf *pb, char *raw, u32 size)
P
Per Liden 已提交
100
{
101 102 103
	pb->buf = raw;
	pb->crs = raw;
	pb->size = size;
104
	pb->echo = 0;
105 106 107 108 109 110 111

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

/**
115
 * tipc_printbuf_reset - reinitialize print buffer to empty state
116
 * @pb: pointer to print buffer structure
P
Per Liden 已提交
117 118
 */

119
void tipc_printbuf_reset(struct print_buf *pb)
P
Per Liden 已提交
120
{
121 122 123 124 125
	if (pb->buf != NULL) {
		pb->crs = pb->buf;
		pb->buf[0] = 0;
		pb->buf[pb->size - 1] = ~0;
	}
P
Per Liden 已提交
126 127 128
}

/**
129
 * tipc_printbuf_empty - test if print buffer is in empty state
130 131 132
 * @pb: pointer to print buffer structure
 *
 * Returns non-zero if print buffer is empty.
P
Per Liden 已提交
133 134
 */

135
int tipc_printbuf_empty(struct print_buf *pb)
P
Per Liden 已提交
136
{
137
	return (!pb->buf || (pb->crs == pb->buf));
P
Per Liden 已提交
138 139 140
}

/**
141
 * tipc_printbuf_validate - check for print buffer overflow
142
 * @pb: pointer to print buffer structure
143 144
 *
 * Verifies that a print buffer has captured all data written to it.
P
Per Liden 已提交
145
 * If data has been lost, linearize buffer and prepend an error message
146
 *
147
 * Returns length of print buffer data string (including trailing NUL)
P
Per Liden 已提交
148 149
 */

150
int tipc_printbuf_validate(struct print_buf *pb)
P
Per Liden 已提交
151
{
152 153 154
	char *err = "\n\n*** PRINT BUFFER OVERFLOW ***\n\n";
	char *cp_buf;
	struct print_buf cb;
P
Per Liden 已提交
155

156
	if (!pb->buf)
P
Per Liden 已提交
157 158
		return 0;

159
	if (pb->buf[pb->size - 1] == 0) {
160 161 162 163 164 165 166 167 168 169 170
		cp_buf = kmalloc(pb->size, GFP_ATOMIC);
		if (cp_buf != NULL){
			tipc_printbuf_init(&cb, cp_buf, pb->size);
			tipc_printbuf_move(&cb, pb);
			tipc_printbuf_move(pb, &cb);
			kfree(cp_buf);
			memcpy(pb->buf, err, strlen(err));
		} else {
			tipc_printbuf_reset(pb);
			tipc_printf(pb, err);
		}
P
Per Liden 已提交
171 172 173 174 175
	}
	return (pb->crs - pb->buf + 1);
}

/**
176
 * tipc_printbuf_move - move print buffer contents to another print buffer
177 178
 * @pb_to: pointer to destination print buffer structure
 * @pb_from: pointer to source print buffer structure
179
 *
P
Per Liden 已提交
180 181 182 183
 * Current contents of destination print buffer (if any) are discarded.
 * Source print buffer becomes empty if a successful move occurs.
 */

184
void tipc_printbuf_move(struct print_buf *pb_to, struct print_buf *pb_from)
P
Per Liden 已提交
185 186 187 188 189
{
	int len;

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

190
	if (!pb_to->buf)
P
Per Liden 已提交
191 192
		return;

193
	if (!pb_from->buf) {
194
		tipc_printbuf_reset(pb_to);
P
Per Liden 已提交
195 196 197 198
		return;
	}

	if (pb_to->size < pb_from->size) {
199 200 201
		strcpy(pb_to->buf, "*** PRINT BUFFER MOVE ERROR ***");
		pb_to->buf[pb_to->size - 1] = ~0;
		pb_to->crs = strchr(pb_to->buf, 0);
P
Per Liden 已提交
202 203 204 205
		return;
	}

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

P
Per Liden 已提交
207 208 209 210 211 212 213 214
	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) */
215

P
Per Liden 已提交
216 217 218 219
	len = pb_from->crs - pb_from->buf;
	strcpy(pb_to->crs, pb_from->buf);
	pb_to->crs += len;

220
	tipc_printbuf_reset(pb_from);
P
Per Liden 已提交
221 222 223
}

/**
224 225
 * tipc_printf - append formatted output to print buffer
 * @pb: pointer to print buffer
226
 * @fmt: formatted info to be printed
P
Per Liden 已提交
227 228 229 230 231 232 233 234 235
 */

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

	spin_lock_bh(&print_lock);
236

P
Per Liden 已提交
237
	FORMAT(print_string, chars_to_add, fmt);
238 239
	if (chars_to_add >= TIPC_PB_MAX_STR)
		strcpy(print_string, "*** PRINT BUFFER STRING TOO LONG ***");
P
Per Liden 已提交
240

241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
	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;
		} 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;
		} 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;
257
		}
P
Per Liden 已提交
258 259
	}

260 261
	if (pb->echo)
		printk(print_string);
P
Per Liden 已提交
262 263 264 265 266 267 268 269 270 271 272 273 274

	spin_unlock_bh(&print_lock);
}

/**
 * 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) {
275
		int sz = rest < TIPC_PB_MAX_STR ? rest : TIPC_PB_MAX_STR;
P
Per Liden 已提交
276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293
		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;

294 295 296 297 298
	if (!pb->buf) {
		printk("*** PRINT BUFFER NOT ALLOCATED ***");
		return;
	}

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

P
Per Liden 已提交
301 302 303 304 305
	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) */
306

P
Per Liden 已提交
307 308 309 310 311
	len = pb->crs - pb->buf;
	print_to_console(pb->buf, len);
}

/**
312 313
 * tipc_dump - dump (non-console) print buffer to console
 * @pb: pointer to print buffer
P
Per Liden 已提交
314 315 316 317 318 319
 */

void tipc_dump(struct print_buf *pb, const char *fmt, ...)
{
	int len;

320 321 322
	if (pb == TIPC_CONS)
		return;

P
Per Liden 已提交
323
	spin_lock_bh(&print_lock);
324

325 326
	FORMAT(print_string, len, fmt);
	printk(print_string);
P
Per Liden 已提交
327

328 329 330 331 332 333
	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");

P
Per Liden 已提交
334 335 336 337
	spin_unlock_bh(&print_lock);
}

/**
338 339
 * tipc_log_resize - change the size of the TIPC log buffer
 * @log_size: print buffer size to use
P
Per Liden 已提交
340 341
 */

342
int tipc_log_resize(int log_size)
P
Per Liden 已提交
343
{
344 345
	int res = 0;

P
Per Liden 已提交
346
	spin_lock_bh(&print_lock);
347 348 349
	if (TIPC_LOG->buf) {
		kfree(TIPC_LOG->buf);
		TIPC_LOG->buf = NULL;
P
Per Liden 已提交
350 351
	}
	if (log_size) {
352 353
		if (log_size < TIPC_PB_MIN_SIZE)
			log_size = TIPC_PB_MIN_SIZE;
354
		res = TIPC_LOG->echo;
355 356
		tipc_printbuf_init(TIPC_LOG, kmalloc(log_size, GFP_ATOMIC),
				   log_size);
357
		TIPC_LOG->echo = res;
358
		res = !TIPC_LOG->buf;
P
Per Liden 已提交
359
	}
360
	spin_unlock_bh(&print_lock);
361 362

	return res;
P
Per Liden 已提交
363 364 365
}

/**
366
 * tipc_log_resize_cmd - reconfigure size of TIPC log buffer
P
Per Liden 已提交
367 368
 */

369
struct sk_buff *tipc_log_resize_cmd(const void *req_tlv_area, int req_tlv_space)
P
Per Liden 已提交
370 371 372 373
{
	u32 value;

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

A
Al Viro 已提交
376
	value = ntohl(*(__be32 *)TLV_DATA(req_tlv_area));
P
Per Liden 已提交
377
	if (value != delimit(value, 0, 32768))
378 379
		return tipc_cfg_reply_error_string(TIPC_CFG_INVALID_VALUE
						   " (log size must be 0-32768)");
380 381 382
	if (tipc_log_resize(value))
		return tipc_cfg_reply_error_string(
			"unable to create specified log (log size is now 0)");
383
	return tipc_cfg_reply_none();
P
Per Liden 已提交
384 385 386
}

/**
387
 * tipc_log_dump - capture TIPC log buffer contents in configuration message
P
Per Liden 已提交
388 389
 */

390
struct sk_buff *tipc_log_dump(void)
P
Per Liden 已提交
391 392 393 394
{
	struct sk_buff *reply;

	spin_lock_bh(&print_lock);
395 396
	if (!TIPC_LOG->buf) {
		spin_unlock_bh(&print_lock);
397
		reply = tipc_cfg_reply_ultra_string("log not activated\n");
398 399
	} else if (tipc_printbuf_empty(TIPC_LOG)) {
		spin_unlock_bh(&print_lock);
400
		reply = tipc_cfg_reply_ultra_string("log is empty\n");
401
	}
P
Per Liden 已提交
402 403 404 405 406
	else {
		struct tlv_desc *rep_tlv;
		struct print_buf pb;
		int str_len;

407
		str_len = min(TIPC_LOG->size, 32768u);
408
		spin_unlock_bh(&print_lock);
409
		reply = tipc_cfg_reply_alloc(TLV_SPACE(str_len));
P
Per Liden 已提交
410 411
		if (reply) {
			rep_tlv = (struct tlv_desc *)reply->data;
412
			tipc_printbuf_init(&pb, TLV_DATA(rep_tlv), str_len);
413
			spin_lock_bh(&print_lock);
414
			tipc_printbuf_move(&pb, TIPC_LOG);
415
			spin_unlock_bh(&print_lock);
P
Per Liden 已提交
416 417 418 419 420 421 422 423
			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);
		}
	}
	return reply;
}