summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/io/ib/clients/rdsv3/rdsv3_debug.c
blob: d67c65b3390f71275aecdf339b6d76a0779d83f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License (the "License").
 * You may not use this file except in compliance with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
 */
#include <sys/types.h>
#include <sys/varargs.h>
#include <sys/cmn_err.h>
#include <sys/ddi.h>
#include <sys/sunddi.h>
#include <sys/time.h>
#include <sys/ib/clients/rdsv3/rdsv3_debug.h>

/*
 * This file contains the debug defines and routines.
 * Debugging information is collected in a circular kernel buffer. Debug
 * messages with level lower than rdsv3dbglvl are ignored. The size of the
 * of the debug buffer can be changed by setting 'rdsv3_debug_buf_size' in
 * bytes in /etc/system.
 *
 * The debug buffer can be cleared by setting 'rdsv3_clear_debug_buf_flag = 1'
 * on a running system.
 */

#define	RDSV3_DEBUG_SIZE_EXTRA_ALLOC	8
#define	RDSV3_MIN_DEBUG_BUF_SIZE		0x1000
#define	RDSV3_FUNCNAME_LEN		40
#define	RDSV3_PRINTBUF_LEN		4096
#ifdef	DEBUG
#define	RDSV3_DEBUG_BUF_SIZE		0x200000	/* 2M size */
#else
#define	RDSV3_DEBUG_BUF_SIZE		0x2000
#endif	/* DEBUG */

/* Max length of a debug statement */
#define	RDSV3_PRINT_BUF_LEN	4096

static int rdsv3_suppress_dprintf;	/* Suppress debug printing */
static int rdsv3_buffer_dprintf = 1;	/* Use debug buffer (0 == console) */
static int rdsv3_debug_buf_size = RDSV3_DEBUG_BUF_SIZE; /* Sz of Debug buf */
static int rdsv3_allow_intr_msgs = 0;	/* log "intr" messages */
char *rdsv3_debug_buf = NULL;	/* The Debug Buf */
char *rdsv3_buf_sptr, *rdsv3_buf_eptr;	/* debug buffer temp pointer */
int rdsv3_clear_debug_buf_flag = 0;	/* Clear debug buffer */
uint_t	rdsv3dbglvl = RDSV3_LOG_L4;

/*
 * Print Buffer protected by mutex for debug stuff. The mutex also
 * ensures serializing debug messages.
 */
static kmutex_t	rdsv3_debug_mutex;
static char	rdsv3_print_buf[RDSV3_PRINT_BUF_LEN];

/* Function Prototypes */
static void	rdsv3_clear_print_buf();

/* RDS logging init */
void
rdsv3_logging_initialization()
{
	boolean_t flag = B_FALSE;

	mutex_init(&rdsv3_debug_mutex, NULL, MUTEX_DRIVER, NULL);
	mutex_enter(&rdsv3_debug_mutex);

	if (rdsv3_debug_buf_size <= RDSV3_DEBUG_SIZE_EXTRA_ALLOC) {
		rdsv3_debug_buf_size = RDSV3_MIN_DEBUG_BUF_SIZE;
		flag = B_TRUE;
	}

	/* if it is less that RDSV3_MIN_DEBUG_BUF_SIZE, adjust it */
	rdsv3_debug_buf_size = max(RDSV3_MIN_DEBUG_BUF_SIZE,
	    rdsv3_debug_buf_size);

	rdsv3_debug_buf = (char *)kmem_alloc(rdsv3_debug_buf_size, KM_SLEEP);
	rdsv3_clear_print_buf();
	mutex_exit(&rdsv3_debug_mutex);

	if (flag == B_TRUE) {
		RDSV3_DPRINTF2("RDS", "rdsv3_debug_buf_size was too small, "
		    "adjusted to %x", rdsv3_debug_buf_size);
	}
}


/* RDS logging destroy */
void
rdsv3_logging_destroy()
{
	mutex_enter(&rdsv3_debug_mutex);
	if (rdsv3_debug_buf) {
		kmem_free(rdsv3_debug_buf, rdsv3_debug_buf_size);
		rdsv3_debug_buf = NULL;
	}
	mutex_exit(&rdsv3_debug_mutex);
	mutex_destroy(&rdsv3_debug_mutex);
}


/*
 * debug, log, and console message handling
 */

/*
 * clear the RDS debug buffer
 */
static void
rdsv3_clear_print_buf()
{
	ASSERT(MUTEX_HELD(&rdsv3_debug_mutex));
	if (rdsv3_debug_buf) {
		rdsv3_buf_sptr = rdsv3_debug_buf;
		rdsv3_buf_eptr = rdsv3_debug_buf + rdsv3_debug_buf_size -
		    RDSV3_DEBUG_SIZE_EXTRA_ALLOC;

		bzero(rdsv3_debug_buf, rdsv3_debug_buf_size);
	}
}


static void
rdsv3_vlog(char *name, uint_t level, char *fmt, va_list ap)
{
	char	*label = (name == NULL) ? "rds" : name;
	char	*msg_ptr;
	size_t	len;

	mutex_enter(&rdsv3_debug_mutex);

	/* if not using logging scheme; quit */
	if (rdsv3_suppress_dprintf || (rdsv3_debug_buf == NULL)) {
		mutex_exit(&rdsv3_debug_mutex);
		return;
	}

	/* If user requests to clear debug buffer, go ahead */
	if (rdsv3_clear_debug_buf_flag != 0) {
		rdsv3_clear_print_buf();
		rdsv3_clear_debug_buf_flag = 0;
	}

	/*
	 * put "label" into the buffer
	 */
	len = snprintf(rdsv3_print_buf, RDSV3_FUNCNAME_LEN, "%s:\t", label);

	msg_ptr = rdsv3_print_buf + len;
	len += vsnprintf(msg_ptr, RDSV3_PRINT_BUF_LEN - len - 2, fmt, ap);

	len = min(len, RDSV3_PRINT_BUF_LEN - 2);
	ASSERT(len == strlen(rdsv3_print_buf));
	rdsv3_print_buf[len++] = '\n';
	rdsv3_print_buf[len] = '\0';

	/*
	 * stuff the message in the debug buf
	 */
	if (rdsv3_buffer_dprintf) {

		/*
		 * overwrite >>>> that might be over the end of the
		 * the buffer
		 */
		*rdsv3_buf_sptr = '\0';

		if (rdsv3_buf_sptr + len > rdsv3_buf_eptr) {
			size_t left = (uintptr_t)rdsv3_buf_eptr -
			    (uintptr_t)rdsv3_buf_sptr;

			bcopy((caddr_t)rdsv3_print_buf,
			    (caddr_t)rdsv3_buf_sptr, left);
			bcopy((caddr_t)rdsv3_print_buf + left,
			    (caddr_t)rdsv3_debug_buf, len - left);
			rdsv3_buf_sptr = rdsv3_debug_buf + len - left;
		} else {
			bcopy((caddr_t)rdsv3_print_buf, rdsv3_buf_sptr, len);
			rdsv3_buf_sptr += len;
		}

		/* add marker */
		(void) sprintf(rdsv3_buf_sptr, ">>>>");
	}

	/*
	 * LINTR, L5-L2 message may go to the rdsv3_debug_buf
	 * L1 messages will go to the /var/adm/messages (debug & non-debug).
	 * L0 messages will go to console (debug & non-debug).
	 */
	switch (level) {
	case RDSV3_LOG_LINTR:
	case RDSV3_LOG_L5:
	case RDSV3_LOG_L4:
	case RDSV3_LOG_L3:
	case RDSV3_LOG_L2:
		if (!rdsv3_buffer_dprintf) {
			cmn_err(CE_CONT, "^%s", rdsv3_print_buf);
		}
		break;
	case RDSV3_LOG_L1:
		if (!rdsv3_buffer_dprintf) {
			cmn_err(CE_CONT, "^%s", rdsv3_print_buf);
		} else {
			/* go to messages file */
			cmn_err(CE_CONT, "!%s", rdsv3_print_buf);
		}
		break;
	case RDSV3_LOG_L0:
		/* Strip the "\n" added earlier */
		if (rdsv3_print_buf[len - 1] == '\n') {
			rdsv3_print_buf[len - 1] = '\0';
		}
		if (msg_ptr[len - 1] == '\n') {
			msg_ptr[len - 1] = '\0';
		}
		/* go to console */
		cmn_err(CE_CONT, "^%s", rdsv3_print_buf);
		break;
	}

	mutex_exit(&rdsv3_debug_mutex);
}

void
rdsv3_dprintf_intr(char *name, char *fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	rdsv3_vlog(name, RDSV3_LOG_LINTR, fmt, ap);
	va_end(ap);
}

/*
 * Check individual subsystem err levels
 */
#define	RDSV3_CHECK_ERR_LEVEL(level)		\
	if (rdsv3dbglvl < level)		\
		return;				\

void
rdsv3_dprintf5(char *name, char *fmt, ...)
{
	va_list ap;

	RDSV3_CHECK_ERR_LEVEL(RDSV3_LOG_L5);

	va_start(ap, fmt);
	rdsv3_vlog(name, RDSV3_LOG_L5, fmt, ap);
	va_end(ap);
}

void
rdsv3_dprintf4(char *name, char *fmt, ...)
{
	va_list ap;

	RDSV3_CHECK_ERR_LEVEL(RDSV3_LOG_L4);

	va_start(ap, fmt);
	rdsv3_vlog(name, RDSV3_LOG_L4, fmt, ap);
	va_end(ap);
}

void
rdsv3_dprintf3(char *name, char *fmt, ...)
{
	va_list ap;

	RDSV3_CHECK_ERR_LEVEL(RDSV3_LOG_L3);

	va_start(ap, fmt);
	rdsv3_vlog(name, RDSV3_LOG_L3, fmt, ap);
	va_end(ap);
}

void
rdsv3_dprintf2(char *name, char *fmt, ...)
{
	va_list ap;

	RDSV3_CHECK_ERR_LEVEL(RDSV3_LOG_L2);

	va_start(ap, fmt);
	rdsv3_vlog(name, RDSV3_LOG_L2, fmt, ap);
	va_end(ap);
}

void
rdsv3_dprintf1(char *name, char *fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	rdsv3_vlog(name, RDSV3_LOG_L1, fmt, ap);
	va_end(ap);
}


/*
 * Function:
 *      rdsv3_dprintf0
 * Input:
 *      name	- Name of the function generating the debug message
 *  	fmt	- The message to be displayed.
 * Output:
 *      none
 * Returns:
 *      none
 * Description:
 *  	A generic log function to display RDS debug messages.
 */
void
rdsv3_dprintf0(char *name, char *fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	rdsv3_vlog(name, RDSV3_LOG_L0, fmt, ap);
	va_end(ap);
}

/* For ofed rdstrace */
void
rdsv3_trace(char *name, uint8_t lvl, char *fmt, ...)
{
	va_list ap;

	va_start(ap, fmt);
	rdsv3_vlog(name, lvl, fmt, ap);
	va_end(ap);
}

#define	DEFAULT_RATELIMIT_INTERVAL	5
#define	DEFAULT_RATELIMIT_BURST	10

struct ratelimit_state {
	clock_t interval;
	int burst;
	int printed;
	int missed;
	hrtime_t begin;
	kmutex_t lock;
};

#define	DEFINE_RATELIMIT_STATE(name, interval, burst)		\
	static struct ratelimit_state name = {interval, burst, }

DEFINE_RATELIMIT_STATE(rdsv3_printk_ratelimit_state,
    DEFAULT_RATELIMIT_INTERVAL,
    DEFAULT_RATELIMIT_BURST);

int
rdsv3_printk_ratelimit(void)
{
	struct ratelimit_state *rs = &rdsv3_printk_ratelimit_state;
	hrtime_t current = gethrtime();
	int rtn = 0;

	if (rs->interval) {
		return (1);
	}
	mutex_enter(&rs->lock);
	if (!rs->begin) {
		rs->begin = current;
	}
	if (current < rs->begin + TICK_TO_NSEC(rs->interval)) {
		if (rs->missed) {
			RDSV3_DPRINTF0("rdsv3_printk_ratelimit: ",
			    "%d callbacks suppressed\n", rs->missed);
			rs->begin = 0;
			rs->printed = 0;
			rs->missed = 0;
		}
	}
	if (rs->burst && rs->burst > rs->printed) {
		rs->printed++;
		rtn = 1;
	} else {
		rs->missed++;
	}
	mutex_exit(&rs->lock);
	return (rtn);
}