diff options
author | Tom Caputi <[email protected]> | 2018-10-15 15:14:22 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2018-10-24 14:36:50 -0700 |
commit | ab4c009e3d0cf794bbe84aff3b9ac203eaed03c7 (patch) | |
tree | 1c80fc0bd955e7b5acc9d8f375559e21fd3314bd /lib | |
parent | c04812f964a2a79ec501fb1ba995ef333ff79172 (diff) |
Fix dbgmsg printing in ztest and zdb
This patch resolves a problem where the -G option in both zdb and
ztest would cause the code to call __dprintf() to print zfs_dbgmsg
output. This function was not properly wired to add messages to the
dbgmsg log as it is in userspace and so the messages were simply
dropped. This patch also tries to add some degree of distinction to
dprintf() (which now prints directly to stdout) and zfs_dbgmsg()
(which adds messages to an internal list that can be dumped with
zfs_dbgmsg_print()).
In addition, this patch corrects an issue where ztest used a global
variable to decide whether to dump the dbgmsg buffer on a crash.
This did not work because ztest spins up more instances of itself
using execv(), which did not copy the global variable to the new
process. The option has been moved to the ztest_shared_opts_t
which already exists for interprocess communication.
This patch also changes zfs_dbgmsg_print() to use write() calls
instead of printf() so that it will not fail when used in a signal
handler.
Reviewed-by: Brian Behlendorf <[email protected]>
Reviewed-by: Serapheim Dimitropoulos <[email protected]>
Reviewed-by: Matthew Ahrens <[email protected]>
Signed-off-by: Tom Caputi <[email protected]>
Closes #8010
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libzpool/kernel.c | 35 |
1 files changed, 30 insertions, 5 deletions
diff --git a/lib/libzpool/kernel.c b/lib/libzpool/kernel.c index 5baf52514..f5eafb917 100644 --- a/lib/libzpool/kernel.c +++ b/lib/libzpool/kernel.c @@ -783,7 +783,8 @@ dprintf_setup(int *argc, char **argv) * ========================================================================= */ void -__dprintf(const char *file, const char *func, int line, const char *fmt, ...) +__dprintf(boolean_t dprint, const char *file, const char *func, + int line, const char *fmt, ...) { const char *newfile; va_list adx; @@ -798,9 +799,14 @@ __dprintf(const char *file, const char *func, int line, const char *fmt, ...) newfile = file; } - if (dprintf_print_all || - dprintf_find_string(newfile) || - dprintf_find_string(func)) { + if (dprint) { + /* dprintf messages are printed immediately */ + + if (!dprintf_print_all && + !dprintf_find_string(newfile) && + !dprintf_find_string(func)) + return; + /* Print out just the function name if requested */ flockfile(stdout); if (dprintf_find_string("pid")) @@ -813,11 +819,30 @@ __dprintf(const char *file, const char *func, int line, const char *fmt, ...) (void) printf("%llu ", gethrtime()); if (dprintf_find_string("long")) (void) printf("%s, line %d: ", newfile, line); - (void) printf("%s: ", func); + (void) printf("dprintf: %s: ", func); va_start(adx, fmt); (void) vprintf(fmt, adx); va_end(adx); funlockfile(stdout); + } else { + /* zfs_dbgmsg is logged for dumping later */ + size_t size; + char *buf; + int i; + + size = 1024; + buf = umem_alloc(size, UMEM_NOFAIL); + i = snprintf(buf, size, "%s:%d:%s(): ", newfile, line, func); + + if (i < size) { + va_start(adx, fmt); + (void) vsnprintf(buf + i, size - i, fmt, adx); + va_end(adx); + } + + __zfs_dbgmsg(buf); + + umem_free(buf, size); } } |