]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blob - zfs/module/zfs/zfs_debug.c
UBUNTU: SAUCE: (noup) Update spl to 0.6.5.8-0ubuntu1, zfs to 0.6.5.8-0ubuntu1
[mirror_ubuntu-zesty-kernel.git] / zfs / module / zfs / zfs_debug.c
1 /*
2 * CDDL HEADER START
3 *
4 * The contents of this file are subject to the terms of the
5 * Common Development and Distribution License (the "License").
6 * You may not use this file except in compliance with the License.
7 *
8 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 * or http://www.opensolaris.org/os/licensing.
10 * See the License for the specific language governing permissions
11 * and limitations under the License.
12 *
13 * When distributing Covered Code, include this CDDL HEADER in each
14 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 * If applicable, add the following below this CDDL HEADER, with the
16 * fields enclosed by brackets "[]" replaced with your own identifying
17 * information: Portions Copyright [yyyy] [name of copyright owner]
18 *
19 * CDDL HEADER END
20 */
21 /*
22 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
23 * Copyright (c) 2012, 2014 by Delphix. All rights reserved.
24 */
25
26 #include <sys/zfs_context.h>
27 #include <sys/kstat.h>
28
29 list_t zfs_dbgmsgs;
30 int zfs_dbgmsg_size = 0;
31 kmutex_t zfs_dbgmsgs_lock;
32 int zfs_dbgmsg_maxsize = 4<<20; /* 4MB */
33 kstat_t *zfs_dbgmsg_kstat;
34
35 /*
36 * By default only enable the internal ZFS debug messages when running
37 * in userspace (ztest). The kernel log must be manually enabled.
38 *
39 * # Enable the kernel debug message log.
40 * echo 1 > /sys/module/zfs/parameters/zfs_dbgmsg_enable
41 *
42 * # Clear the kernel debug message log.
43 * echo 0 >/proc/spl/kstat/zfs/dbgmsg
44 */
45 #if defined(_KERNEL)
46 int zfs_dbgmsg_enable = 0;
47 #else
48 int zfs_dbgmsg_enable = 1;
49 #endif
50
51 static int
52 zfs_dbgmsg_headers(char *buf, size_t size)
53 {
54 (void) snprintf(buf, size, "%-12s %-8s\n", "timestamp", "message");
55
56 return (0);
57 }
58
59 static int
60 zfs_dbgmsg_data(char *buf, size_t size, void *data)
61 {
62 zfs_dbgmsg_t *zdm = (zfs_dbgmsg_t *)data;
63
64 (void) snprintf(buf, size, "%-12llu %-s\n",
65 (u_longlong_t) zdm->zdm_timestamp, zdm->zdm_msg);
66
67 return (0);
68 }
69
70 static void *
71 zfs_dbgmsg_addr(kstat_t *ksp, loff_t n)
72 {
73 zfs_dbgmsg_t *zdm = (zfs_dbgmsg_t *)ksp->ks_private;
74
75 ASSERT(MUTEX_HELD(&zfs_dbgmsgs_lock));
76
77 if (n == 0)
78 ksp->ks_private = list_head(&zfs_dbgmsgs);
79 else if (zdm)
80 ksp->ks_private = list_next(&zfs_dbgmsgs, zdm);
81
82 return (ksp->ks_private);
83 }
84
85 static void
86 zfs_dbgmsg_purge(int max_size)
87 {
88 zfs_dbgmsg_t *zdm;
89 int size;
90
91 ASSERT(MUTEX_HELD(&zfs_dbgmsgs_lock));
92
93 while (zfs_dbgmsg_size > max_size) {
94 zdm = list_remove_head(&zfs_dbgmsgs);
95 if (zdm == NULL)
96 return;
97
98 size = zdm->zdm_size;
99 kmem_free(zdm, size);
100 zfs_dbgmsg_size -= size;
101 }
102 }
103
104 static int
105 zfs_dbgmsg_update(kstat_t *ksp, int rw)
106 {
107 if (rw == KSTAT_WRITE)
108 zfs_dbgmsg_purge(0);
109
110 return (0);
111 }
112
113 void
114 zfs_dbgmsg_init(void)
115 {
116 list_create(&zfs_dbgmsgs, sizeof (zfs_dbgmsg_t),
117 offsetof(zfs_dbgmsg_t, zdm_node));
118 mutex_init(&zfs_dbgmsgs_lock, NULL, MUTEX_DEFAULT, NULL);
119
120 zfs_dbgmsg_kstat = kstat_create("zfs", 0, "dbgmsg", "misc",
121 KSTAT_TYPE_RAW, 0, KSTAT_FLAG_VIRTUAL);
122 if (zfs_dbgmsg_kstat) {
123 zfs_dbgmsg_kstat->ks_lock = &zfs_dbgmsgs_lock;
124 zfs_dbgmsg_kstat->ks_ndata = UINT32_MAX;
125 zfs_dbgmsg_kstat->ks_private = NULL;
126 zfs_dbgmsg_kstat->ks_update = zfs_dbgmsg_update;
127 kstat_set_raw_ops(zfs_dbgmsg_kstat, zfs_dbgmsg_headers,
128 zfs_dbgmsg_data, zfs_dbgmsg_addr);
129 kstat_install(zfs_dbgmsg_kstat);
130 }
131 }
132
133 void
134 zfs_dbgmsg_fini(void)
135 {
136 if (zfs_dbgmsg_kstat)
137 kstat_delete(zfs_dbgmsg_kstat);
138
139 mutex_enter(&zfs_dbgmsgs_lock);
140 zfs_dbgmsg_purge(0);
141 mutex_exit(&zfs_dbgmsgs_lock);
142 mutex_destroy(&zfs_dbgmsgs_lock);
143 }
144
145 void
146 __zfs_dbgmsg(char *buf)
147 {
148 zfs_dbgmsg_t *zdm;
149 int size;
150
151 size = sizeof (zfs_dbgmsg_t) + strlen(buf);
152 zdm = kmem_zalloc(size, KM_SLEEP);
153 zdm->zdm_size = size;
154 zdm->zdm_timestamp = gethrestime_sec();
155 strcpy(zdm->zdm_msg, buf);
156
157 mutex_enter(&zfs_dbgmsgs_lock);
158 list_insert_tail(&zfs_dbgmsgs, zdm);
159 zfs_dbgmsg_size += size;
160 zfs_dbgmsg_purge(MAX(zfs_dbgmsg_maxsize, 0));
161 mutex_exit(&zfs_dbgmsgs_lock);
162 }
163
164 #ifdef _KERNEL
165 void
166 __dprintf(const char *file, const char *func, int line, const char *fmt, ...)
167 {
168 const char *newfile;
169 va_list adx;
170 size_t size;
171 char *buf;
172 char *nl;
173
174 if (!zfs_dbgmsg_enable && !(zfs_flags & ZFS_DEBUG_DPRINTF))
175 return;
176
177 size = 1024;
178 buf = kmem_alloc(size, KM_SLEEP);
179
180 /*
181 * Get rid of annoying prefix to filename.
182 */
183 newfile = strrchr(file, '/');
184 if (newfile != NULL) {
185 newfile = newfile + 1; /* Get rid of leading / */
186 } else {
187 newfile = file;
188 }
189
190 va_start(adx, fmt);
191 (void) vsnprintf(buf, size, fmt, adx);
192 va_end(adx);
193
194 /*
195 * Get rid of trailing newline.
196 */
197 nl = strrchr(buf, '\n');
198 if (nl != NULL)
199 *nl = '\0';
200
201 /*
202 * To get this data enable the zfs__dprintf trace point as shown:
203 *
204 * # Enable zfs__dprintf tracepoint, clear the tracepoint ring buffer
205 * $ echo 1 > /sys/module/zfs/parameters/zfs_flags
206 * $ echo 1 > /sys/kernel/debug/tracing/events/zfs/enable
207 * $ echo 0 > /sys/kernel/debug/tracing/trace
208 *
209 * # Dump the ring buffer.
210 * $ cat /sys/kernel/debug/tracing/trace
211 */
212 if (zfs_flags & ZFS_DEBUG_DPRINTF)
213 DTRACE_PROBE4(zfs__dprintf,
214 char *, newfile, char *, func, int, line, char *, buf);
215
216 /*
217 * To get this data enable the zfs debug log as shown:
218 *
219 * # Set zfs_dbgmsg enable, clear the log buffer
220 * $ echo 1 > /sys/module/zfs/parameters/zfs_dbgmsg_enable
221 * $ echo 0 > /proc/spl/kstat/zfs/dbgmsg
222 *
223 * # Dump the log buffer.
224 * $ cat /proc/spl/kstat/zfs/dbgmsg
225 */
226 if (zfs_dbgmsg_enable)
227 __zfs_dbgmsg(buf);
228
229 kmem_free(buf, size);
230 }
231 #endif /* _KERNEL */
232
233 #ifdef _KERNEL
234 module_param(zfs_dbgmsg_enable, int, 0644);
235 MODULE_PARM_DESC(zfs_dbgmsg_enable, "Enable ZFS debug message log");
236
237 module_param(zfs_dbgmsg_maxsize, int, 0644);
238 MODULE_PARM_DESC(zfs_dbgmsg_maxsize, "Maximum ZFS debug log size");
239 #endif