diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-03-14 21:11:31 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-03-14 21:17:14 +0100 |
commit | 29bfbcd675d750c0af4d7dae217722932249e435 (patch) | |
tree | 333eebd589a7106ae35ad0278e1652402ca85ec3 /src/shared/util.c | |
parent | edb2935c5c5b95c42b8679086f60da5eafad74cb (diff) |
util: add hexdump() call to create pretty hexdumps of data
This is very useful when debugging sd-bus to look at messages.
Diffstat (limited to 'src/shared/util.c')
-rw-r--r-- | src/shared/util.c | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/src/shared/util.c b/src/shared/util.c index 8b8d2fbc5e..7e17851fcd 100644 --- a/src/shared/util.c +++ b/src/shared/util.c @@ -6347,3 +6347,46 @@ char* mount_test_option(const char *haystack, const char *needle) { return hasmntopt(&me, needle); } + +void hexdump(FILE *f, const void *p, size_t s) { + const uint8_t *b = p; + unsigned n = 0; + + assert(s == 0 || b); + + while (s > 0) { + size_t i; + + fprintf(f, "%04x ", n); + + for (i = 0; i < 16; i++) { + + if (i >= s) + fputs(" ", f); + else + fprintf(f, "%02x ", b[i]); + + if (i == 7) + fputc(' ', f); + } + + fputc(' ', f); + + for (i = 0; i < 16; i++) { + + if (i >= s) + fputc(' ', f); + else + fputc(isprint(b[i]) ? (char) b[i] : '.', f); + } + + fputc('\n', f); + + if (s < 16) + break; + + n += 16; + b += 16; + s -= 16; + } +} |