]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/kern/kern_ktr.c
Merge from head
[FreeBSD/FreeBSD.git] / sys / kern / kern_ktr.c
1 /*-
2  * Copyright (c) 2000 John Baldwin <jhb@FreeBSD.org>
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24  * SUCH DAMAGE.
25  */
26
27 /*
28  * This module holds the global variables used by KTR and the ktr_tracepoint()
29  * function that does the actual tracing.
30  */
31
32 #include <sys/cdefs.h>
33 __FBSDID("$FreeBSD$");
34
35 #include "opt_ddb.h"
36 #include "opt_ktr.h"
37 #include "opt_alq.h"
38
39 #include <sys/param.h>
40 #include <sys/queue.h>
41 #include <sys/alq.h>
42 #include <sys/cons.h>
43 #include <sys/cpuset.h>
44 #include <sys/kdb.h>
45 #include <sys/kernel.h>
46 #include <sys/ktr.h>
47 #include <sys/libkern.h>
48 #include <sys/lock.h>
49 #include <sys/malloc.h>
50 #include <sys/mutex.h>
51 #include <sys/proc.h>
52 #include <sys/smp.h>
53 #include <sys/sysctl.h>
54 #include <sys/systm.h>
55 #include <sys/time.h>
56
57 #include <machine/cpu.h>
58 #ifdef __sparc64__
59 #include <machine/ktr.h>
60 #endif
61
62 #ifdef DDB
63 #include <ddb/ddb.h>
64 #include <ddb/db_output.h>
65 #endif
66
67 #ifndef KTR_BOOT_ENTRIES
68 #define KTR_BOOT_ENTRIES        1024
69 #endif
70
71 #ifndef KTR_ENTRIES
72 #define KTR_ENTRIES     1024
73 #endif
74
75 /* Limit the allocations to something manageable. */
76 #define KTR_ENTRIES_MAX (8 * 1024 * 1024)
77
78 #ifndef KTR_MASK
79 #define KTR_MASK        (0)
80 #endif
81
82 #ifndef KTR_CPUMASK
83 #define KTR_CPUMASK     CPUSET_FSET
84 #endif
85
86 #ifndef KTR_TIME
87 #define KTR_TIME        get_cyclecount()
88 #endif
89
90 #ifndef KTR_CPU
91 #define KTR_CPU         PCPU_GET(cpuid)
92 #endif
93
94 static MALLOC_DEFINE(M_KTR, "KTR", "KTR");
95
96 FEATURE(ktr, "Kernel support for KTR kernel tracing facility");
97
98 volatile int    ktr_idx = 0;
99 int     ktr_mask = KTR_MASK;
100 int     ktr_compile = KTR_COMPILE;
101 int     ktr_entries = KTR_BOOT_ENTRIES;
102 int     ktr_version = KTR_VERSION;
103 struct  ktr_entry ktr_buf_init[KTR_BOOT_ENTRIES];
104 struct  ktr_entry *ktr_buf = ktr_buf_init;
105 cpuset_t ktr_cpumask = CPUSET_T_INITIALIZER(KTR_CPUMASK);
106
107 static SYSCTL_NODE(_debug, OID_AUTO, ktr, CTLFLAG_RD, 0, "KTR options");
108
109 SYSCTL_INT(_debug_ktr, OID_AUTO, version, CTLFLAG_RD,
110     &ktr_version, 0, "Version of the KTR interface");
111
112 SYSCTL_UINT(_debug_ktr, OID_AUTO, compile, CTLFLAG_RD,
113     &ktr_compile, 0, "Bitmask of KTR event classes compiled into the kernel");
114
115 static int
116 sysctl_debug_ktr_cpumask(SYSCTL_HANDLER_ARGS)
117 {
118         char lktr_cpumask_str[CPUSETBUFSIZ];
119         cpuset_t imask;
120         int error;
121
122         cpusetobj_strprint(lktr_cpumask_str, &ktr_cpumask);
123         error = sysctl_handle_string(oidp, lktr_cpumask_str,
124             sizeof(lktr_cpumask_str), req);
125         if (error != 0 || req->newptr == NULL)
126                 return (error);
127         if (cpusetobj_strscan(&imask, lktr_cpumask_str) == -1)
128                 return (EINVAL);
129         CPU_COPY(&imask, &ktr_cpumask);
130
131         return (error);
132 }
133 SYSCTL_PROC(_debug_ktr, OID_AUTO, cpumask,
134     CTLFLAG_RWTUN | CTLFLAG_MPSAFE | CTLTYPE_STRING, NULL, 0,
135     sysctl_debug_ktr_cpumask, "S",
136     "Bitmask of CPUs on which KTR logging is enabled");
137
138 static int
139 sysctl_debug_ktr_clear(SYSCTL_HANDLER_ARGS)
140 {
141         int clear, error;
142
143         clear = 0;
144         error = sysctl_handle_int(oidp, &clear, 0, req);
145         if (error || !req->newptr)
146                 return (error);
147
148         if (clear) {
149                 bzero(ktr_buf, sizeof(*ktr_buf) * ktr_entries);
150                 ktr_idx = 0;
151         }
152
153         return (error);
154 }
155 SYSCTL_PROC(_debug_ktr, OID_AUTO, clear, CTLTYPE_INT|CTLFLAG_RW, 0, 0,
156     sysctl_debug_ktr_clear, "I", "Clear KTR Buffer");
157
158 /*
159  * This is a sysctl proc so that it is serialized as !MPSAFE along with
160  * the other ktr sysctl procs.
161  */
162 static int
163 sysctl_debug_ktr_mask(SYSCTL_HANDLER_ARGS)
164 {
165         int mask, error;
166
167         mask = ktr_mask;
168         error = sysctl_handle_int(oidp, &mask, 0, req);
169         if (error || !req->newptr)
170                 return (error);
171         ktr_mask = mask;
172         return (error);
173 }
174
175 SYSCTL_PROC(_debug_ktr, OID_AUTO, mask, CTLTYPE_UINT|CTLFLAG_RWTUN, 0, 0,
176     sysctl_debug_ktr_mask, "IU",
177     "Bitmask of KTR event classes for which logging is enabled");
178
179 #if KTR_ENTRIES > KTR_BOOT_ENTRIES
180 /*
181  * A simplified version of sysctl_debug_ktr_entries.
182  * No need to care about SMP, scheduling, etc.
183  */
184 static void
185 ktr_entries_initializer(void *dummy __unused)
186 {
187         int mask;
188
189         /* Temporarily disable ktr in case malloc() is being traced. */
190         mask = ktr_mask;
191         ktr_mask = 0;
192         ktr_buf = malloc(sizeof(*ktr_buf) * KTR_ENTRIES, M_KTR,
193             M_WAITOK | M_ZERO);
194         memcpy(ktr_buf, ktr_buf_init + ktr_idx,
195             (KTR_BOOT_ENTRIES - ktr_idx) * sizeof(*ktr_buf));
196         if (ktr_idx != 0) {
197                 memcpy(ktr_buf + KTR_BOOT_ENTRIES - ktr_idx, ktr_buf_init,
198                     ktr_idx * sizeof(*ktr_buf));
199                 ktr_idx = KTR_BOOT_ENTRIES;
200         }
201         ktr_entries = KTR_ENTRIES;
202         ktr_mask = mask;
203 }
204 SYSINIT(ktr_entries_initializer, SI_SUB_KMEM, SI_ORDER_ANY,
205     ktr_entries_initializer, NULL);
206 #endif
207
208 static int
209 sysctl_debug_ktr_entries(SYSCTL_HANDLER_ARGS)
210 {
211         int entries, error, mask;
212         struct ktr_entry *buf, *oldbuf;
213
214         entries = ktr_entries;
215         error = sysctl_handle_int(oidp, &entries, 0, req);
216         if (error || !req->newptr)
217                 return (error);
218         if (entries > KTR_ENTRIES_MAX)
219                 return (ERANGE);
220         /* Disable ktr temporarily. */
221         mask = ktr_mask;
222         atomic_store_rel_int(&ktr_mask, 0);
223         /* Wait for threads to go idle. */
224         if ((error = quiesce_all_cpus("ktrent", PCATCH)) != 0) {
225                 ktr_mask = mask;
226                 return (error);
227         }
228         if (ktr_buf != ktr_buf_init)
229                 oldbuf = ktr_buf;
230         else
231                 oldbuf = NULL;
232         /* Allocate a new buffer. */
233         buf = malloc(sizeof(*buf) * entries, M_KTR, M_WAITOK | M_ZERO);
234         /* Install the new buffer and restart ktr. */
235         ktr_buf = buf;
236         ktr_entries = entries;
237         ktr_idx = 0;
238         atomic_store_rel_int(&ktr_mask, mask);
239         if (oldbuf != NULL)
240                 free(oldbuf, M_KTR);
241
242         return (error);
243 }
244
245 SYSCTL_PROC(_debug_ktr, OID_AUTO, entries, CTLTYPE_INT|CTLFLAG_RW, 0, 0,
246     sysctl_debug_ktr_entries, "I", "Number of entries in the KTR buffer");
247
248 #ifdef KTR_VERBOSE
249 int     ktr_verbose = KTR_VERBOSE;
250 TUNABLE_INT("debug.ktr.verbose", &ktr_verbose);
251 SYSCTL_INT(_debug_ktr, OID_AUTO, verbose, CTLFLAG_RW, &ktr_verbose, 0, "");
252 #endif
253
254 #ifdef KTR_ALQ
255 struct alq *ktr_alq;
256 char    ktr_alq_file[MAXPATHLEN] = "/tmp/ktr.out";
257 int     ktr_alq_cnt = 0;
258 int     ktr_alq_depth = KTR_ENTRIES;
259 int     ktr_alq_enabled = 0;
260 int     ktr_alq_failed = 0;
261 int     ktr_alq_max = 0;
262
263 SYSCTL_INT(_debug_ktr, OID_AUTO, alq_max, CTLFLAG_RW, &ktr_alq_max, 0,
264     "Maximum number of entries to write");
265 SYSCTL_INT(_debug_ktr, OID_AUTO, alq_cnt, CTLFLAG_RD, &ktr_alq_cnt, 0,
266     "Current number of written entries");
267 SYSCTL_INT(_debug_ktr, OID_AUTO, alq_failed, CTLFLAG_RD, &ktr_alq_failed, 0,
268     "Number of times we overran the buffer");
269 SYSCTL_INT(_debug_ktr, OID_AUTO, alq_depth, CTLFLAG_RW, &ktr_alq_depth, 0,
270     "Number of items in the write buffer");
271 SYSCTL_STRING(_debug_ktr, OID_AUTO, alq_file, CTLFLAG_RW, ktr_alq_file,
272     sizeof(ktr_alq_file), "KTR logging file");
273
274 static int
275 sysctl_debug_ktr_alq_enable(SYSCTL_HANDLER_ARGS)
276 {
277         int error;
278         int enable;
279
280         enable = ktr_alq_enabled;
281
282         error = sysctl_handle_int(oidp, &enable, 0, req);
283         if (error || !req->newptr)
284                 return (error);
285
286         if (enable) {
287                 if (ktr_alq_enabled)
288                         return (0);
289                 error = alq_open(&ktr_alq, (const char *)ktr_alq_file,
290                     req->td->td_ucred, ALQ_DEFAULT_CMODE,
291                     sizeof(struct ktr_entry), ktr_alq_depth);
292                 if (error == 0) {
293                         ktr_alq_cnt = 0;
294                         ktr_alq_failed = 0;
295                         ktr_alq_enabled = 1;
296                 }
297         } else {
298                 if (ktr_alq_enabled == 0)
299                         return (0);
300                 ktr_alq_enabled = 0;
301                 alq_close(ktr_alq);
302                 ktr_alq = NULL;
303         }
304
305         return (error);
306 }
307 SYSCTL_PROC(_debug_ktr, OID_AUTO, alq_enable,
308     CTLTYPE_INT|CTLFLAG_RW, 0, 0, sysctl_debug_ktr_alq_enable,
309     "I", "Enable KTR logging");
310 #endif
311
312 void
313 ktr_tracepoint(u_int mask, const char *file, int line, const char *format,
314     u_long arg1, u_long arg2, u_long arg3, u_long arg4, u_long arg5,
315     u_long arg6)
316 {
317         struct ktr_entry *entry;
318 #ifdef KTR_ALQ
319         struct ale *ale = NULL;
320 #endif
321         int newindex, saveindex;
322 #if defined(KTR_VERBOSE) || defined(KTR_ALQ)
323         struct thread *td;
324 #endif
325         int cpu;
326
327         if (panicstr || kdb_active)
328                 return;
329         if ((ktr_mask & mask) == 0 || ktr_buf == NULL)
330                 return;
331         cpu = KTR_CPU;
332         if (!CPU_ISSET(cpu, &ktr_cpumask))
333                 return;
334 #if defined(KTR_VERBOSE) || defined(KTR_ALQ)
335         td = curthread;
336         if (td->td_pflags & TDP_INKTR)
337                 return;
338         td->td_pflags |= TDP_INKTR;
339 #endif
340 #ifdef KTR_ALQ
341         if (ktr_alq_enabled) {
342                 if (td->td_critnest == 0 &&
343                     (td->td_flags & TDF_IDLETD) == 0 &&
344                     td != ald_thread) {
345                         if (ktr_alq_max && ktr_alq_cnt > ktr_alq_max)
346                                 goto done;
347                         if ((ale = alq_get(ktr_alq, ALQ_NOWAIT)) == NULL) {
348                                 ktr_alq_failed++;
349                                 goto done;
350                         }
351                         ktr_alq_cnt++;
352                         entry = (struct ktr_entry *)ale->ae_data;
353                 } else {
354                         goto done;
355                 }
356         } else
357 #endif
358         {
359                 do {
360                         saveindex = ktr_idx;
361                         newindex = (saveindex + 1) % ktr_entries;
362                 } while (atomic_cmpset_rel_int(&ktr_idx, saveindex, newindex) == 0);
363                 entry = &ktr_buf[saveindex];
364         }
365         entry->ktr_timestamp = KTR_TIME;
366         entry->ktr_cpu = cpu;
367         entry->ktr_thread = curthread;
368         if (file != NULL)
369                 while (strncmp(file, "../", 3) == 0)
370                         file += 3;
371         entry->ktr_file = file;
372         entry->ktr_line = line;
373 #ifdef KTR_VERBOSE
374         if (ktr_verbose) {
375 #ifdef SMP
376                 printf("cpu%d ", cpu);
377 #endif
378                 if (ktr_verbose > 1) {
379                         printf("%s.%d\t", entry->ktr_file,
380                             entry->ktr_line);
381                 }
382                 printf(format, arg1, arg2, arg3, arg4, arg5, arg6);
383                 printf("\n");
384         }
385 #endif
386         entry->ktr_desc = format;
387         entry->ktr_parms[0] = arg1;
388         entry->ktr_parms[1] = arg2;
389         entry->ktr_parms[2] = arg3;
390         entry->ktr_parms[3] = arg4;
391         entry->ktr_parms[4] = arg5;
392         entry->ktr_parms[5] = arg6;
393 #ifdef KTR_ALQ
394         if (ktr_alq_enabled && ale)
395                 alq_post(ktr_alq, ale);
396 done:
397 #endif
398 #if defined(KTR_VERBOSE) || defined(KTR_ALQ)
399         td->td_pflags &= ~TDP_INKTR;
400 #endif
401 }
402
403 #ifdef DDB
404
405 struct tstate {
406         int     cur;
407         int     first;
408 };
409 static  struct tstate tstate;
410 static  int db_ktr_verbose;
411 static  int db_mach_vtrace(void);
412
413 DB_SHOW_COMMAND(ktr, db_ktr_all)
414 {
415         
416         tstate.cur = (ktr_idx - 1) % ktr_entries;
417         tstate.first = -1;
418         db_ktr_verbose = 0;
419         db_ktr_verbose |= (strchr(modif, 'v') != NULL) ? 2 : 0;
420         db_ktr_verbose |= (strchr(modif, 'V') != NULL) ? 1 : 0; /* just timestap please */
421         if (strchr(modif, 'a') != NULL) {
422                 db_disable_pager();
423                 while (cncheckc() != -1)
424                         if (db_mach_vtrace() == 0)
425                                 break;
426         } else {
427                 while (!db_pager_quit)
428                         if (db_mach_vtrace() == 0)
429                                 break;
430         }
431 }
432
433 static int
434 db_mach_vtrace(void)
435 {
436         struct ktr_entry        *kp;
437
438         if (tstate.cur == tstate.first || ktr_buf == NULL) {
439                 db_printf("--- End of trace buffer ---\n");
440                 return (0);
441         }
442         kp = &ktr_buf[tstate.cur];
443
444         /* Skip over unused entries. */
445         if (kp->ktr_desc == NULL) {
446                 db_printf("--- End of trace buffer ---\n");
447                 return (0);
448         }
449         db_printf("%d (%p", tstate.cur, kp->ktr_thread);
450 #ifdef SMP
451         db_printf(":cpu%d", kp->ktr_cpu);
452 #endif
453         db_printf(")");
454         if (db_ktr_verbose >= 1) {
455                 db_printf(" %10.10lld", (long long)kp->ktr_timestamp);
456         }
457         if (db_ktr_verbose >= 2) {
458                 db_printf(" %s.%d", kp->ktr_file, kp->ktr_line);
459         }
460         db_printf(": ");
461         db_printf(kp->ktr_desc, kp->ktr_parms[0], kp->ktr_parms[1],
462             kp->ktr_parms[2], kp->ktr_parms[3], kp->ktr_parms[4],
463             kp->ktr_parms[5]);
464         db_printf("\n");
465
466         if (tstate.first == -1)
467                 tstate.first = tstate.cur;
468
469         if (--tstate.cur < 0)
470                 tstate.cur = ktr_entries - 1;
471
472         return (1);
473 }
474
475 #endif  /* DDB */