[bb95594] | 1 | /*
|
---|
[6028ec8] | 2 | * Copyright (c) 2010-2011 Vojtech Horky
|
---|
[bb95594] | 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 | *
|
---|
| 9 | * - Redistributions of source code must retain the above copyright
|
---|
| 10 | * notice, this list of conditions and the following disclaimer.
|
---|
| 11 | * - Redistributions in binary form must reproduce the above copyright
|
---|
| 12 | * notice, this list of conditions and the following disclaimer in the
|
---|
| 13 | * documentation and/or other materials provided with the distribution.
|
---|
| 14 | * - The name of the author may not be used to endorse or promote products
|
---|
| 15 | * derived from this software without specific prior written permission.
|
---|
| 16 | *
|
---|
| 17 | * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
---|
| 18 | * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
---|
| 19 | * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
---|
| 20 | * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
---|
| 21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
---|
| 22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
---|
| 23 | * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
---|
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
---|
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
---|
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
---|
| 27 | */
|
---|
| 28 |
|
---|
[3b77628] | 29 | /** @addtogroup libusb
|
---|
[bb95594] | 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
[a6add7a] | 33 | * Debugging and logging support.
|
---|
[bb95594] | 34 | */
|
---|
| 35 | #include <adt/list.h>
|
---|
| 36 | #include <fibril_synch.h>
|
---|
| 37 | #include <errno.h>
|
---|
| 38 | #include <stdlib.h>
|
---|
| 39 | #include <stdio.h>
|
---|
| 40 | #include <usb/debug.h>
|
---|
| 41 |
|
---|
[6028ec8] | 42 | /** Level of logging messages. */
|
---|
| 43 | static usb_log_level_t log_level = USB_LOG_LEVEL_WARNING;
|
---|
[a6add7a] | 44 |
|
---|
[6028ec8] | 45 | /** Prefix for logging messages. */
|
---|
| 46 | static const char *log_prefix = "usb";
|
---|
[a6add7a] | 47 |
|
---|
[6028ec8] | 48 | /** Serialization mutex for logging functions. */
|
---|
| 49 | static FIBRIL_MUTEX_INITIALIZE(log_serializer);
|
---|
[bb95594] | 50 |
|
---|
[a6add7a] | 51 | /** File where to store the log. */
|
---|
| 52 | static FILE *log_stream = NULL;
|
---|
[bb95594] | 53 |
|
---|
| 54 |
|
---|
[6028ec8] | 55 | /** Enable logging.
|
---|
| 56 | *
|
---|
| 57 | * @param level Maximal enabled level (including this one).
|
---|
| 58 | * @param message_prefix Prefix for each printed message.
|
---|
| 59 | */
|
---|
| 60 | void usb_log_enable(usb_log_level_t level, const char *message_prefix)
|
---|
| 61 | {
|
---|
| 62 | log_prefix = message_prefix;
|
---|
| 63 | log_level = level;
|
---|
[aa389fd] | 64 | if (log_stream == NULL) {
|
---|
| 65 | char *fname;
|
---|
| 66 | int rc = asprintf(&fname, "/log/%s", message_prefix);
|
---|
| 67 | if (rc > 0) {
|
---|
| 68 | log_stream = fopen(fname, "w");
|
---|
| 69 | free(fname);
|
---|
| 70 | }
|
---|
| 71 | }
|
---|
[6028ec8] | 72 | }
|
---|
| 73 |
|
---|
[a6add7a] | 74 | /** Get log level name prefix.
|
---|
| 75 | *
|
---|
| 76 | * @param level Log level.
|
---|
| 77 | * @return String prefix for the message.
|
---|
| 78 | */
|
---|
[6028ec8] | 79 | static const char *log_level_name(usb_log_level_t level)
|
---|
| 80 | {
|
---|
| 81 | switch (level) {
|
---|
| 82 | case USB_LOG_LEVEL_FATAL:
|
---|
| 83 | return " FATAL";
|
---|
| 84 | case USB_LOG_LEVEL_ERROR:
|
---|
| 85 | return " ERROR";
|
---|
| 86 | case USB_LOG_LEVEL_WARNING:
|
---|
| 87 | return " WARN";
|
---|
| 88 | case USB_LOG_LEVEL_INFO:
|
---|
| 89 | return " info";
|
---|
| 90 | default:
|
---|
| 91 | return "";
|
---|
| 92 | }
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | /** Print logging message.
|
---|
| 96 | *
|
---|
| 97 | * @param level Verbosity level of the message.
|
---|
| 98 | * @param format Formatting directive.
|
---|
| 99 | */
|
---|
| 100 | void usb_log_printf(usb_log_level_t level, const char *format, ...)
|
---|
| 101 | {
|
---|
[3d31af5] | 102 | FILE *screen_stream = NULL;
|
---|
[6028ec8] | 103 | switch (level) {
|
---|
| 104 | case USB_LOG_LEVEL_FATAL:
|
---|
| 105 | case USB_LOG_LEVEL_ERROR:
|
---|
[3d31af5] | 106 | screen_stream = stderr;
|
---|
[6028ec8] | 107 | break;
|
---|
| 108 | default:
|
---|
[3d31af5] | 109 | screen_stream = stdout;
|
---|
[6028ec8] | 110 | break;
|
---|
| 111 | }
|
---|
[3d31af5] | 112 | assert(screen_stream != NULL);
|
---|
[6028ec8] | 113 |
|
---|
| 114 | va_list args;
|
---|
| 115 |
|
---|
[aa389fd] | 116 | /*
|
---|
| 117 | * Serialize access to log files.
|
---|
[11e00c8] | 118 | * Print to screen only messages with higher level than the one
|
---|
| 119 | * specified during logging initialization.
|
---|
| 120 | * Print also to file, to it print one more (lower) level as well.
|
---|
[aa389fd] | 121 | */
|
---|
[6028ec8] | 122 | fibril_mutex_lock(&log_serializer);
|
---|
[aa389fd] | 123 |
|
---|
| 124 | const char *level_name = log_level_name(level);
|
---|
| 125 |
|
---|
[11e00c8] | 126 | if ((log_stream != NULL) && (level <= log_level + 1)) {
|
---|
[ef7f043] | 127 | va_start(args, format);
|
---|
| 128 |
|
---|
[aa389fd] | 129 | fprintf(log_stream, "[%s]%s: ", log_prefix, level_name);
|
---|
| 130 | vfprintf(log_stream, format, args);
|
---|
[3d31af5] | 131 | fflush(log_stream);
|
---|
[ef7f043] | 132 |
|
---|
| 133 | va_end(args);
|
---|
[aa389fd] | 134 | }
|
---|
| 135 |
|
---|
| 136 | if (level <= log_level) {
|
---|
[ef7f043] | 137 | va_start(args, format);
|
---|
| 138 |
|
---|
[3d31af5] | 139 | fprintf(screen_stream, "[%s]%s: ", log_prefix, level_name);
|
---|
| 140 | vfprintf(screen_stream, format, args);
|
---|
| 141 | fflush(screen_stream);
|
---|
[ef7f043] | 142 |
|
---|
| 143 | va_end(args);
|
---|
[aa389fd] | 144 | }
|
---|
| 145 |
|
---|
[6028ec8] | 146 | fibril_mutex_unlock(&log_serializer);
|
---|
| 147 | }
|
---|
[bb95594] | 148 |
|
---|
[019cff6] | 149 |
|
---|
[ff4185e6] | 150 | #define REMAINDER_STR_FMT " (%zu)..."
|
---|
| 151 | /* string + terminator + number width (enough for 4GB)*/
|
---|
| 152 | #define REMAINDER_STR_LEN (5 + 1 + 10)
|
---|
[a6add7a] | 153 |
|
---|
| 154 | /** How many bytes to group together. */
|
---|
[ff4185e6] | 155 | #define BUFFER_DUMP_GROUP_SIZE 4
|
---|
[a6add7a] | 156 |
|
---|
| 157 | /** Size of the string for buffer dumps. */
|
---|
[ff4185e6] | 158 | #define BUFFER_DUMP_LEN 240 /* Ought to be enough for everybody ;-). */
|
---|
[a6add7a] | 159 |
|
---|
| 160 | /** Fibril local storage for the dumped buffer. */
|
---|
[6fd7062] | 161 | static fibril_local char buffer_dump[2][BUFFER_DUMP_LEN];
|
---|
| 162 | /** Fibril local storage for buffer switching. */
|
---|
| 163 | static fibril_local int buffer_dump_index = 0;
|
---|
[019cff6] | 164 |
|
---|
| 165 | /** Dump buffer into string.
|
---|
| 166 | *
|
---|
| 167 | * The function dumps given buffer into hexadecimal format and stores it
|
---|
| 168 | * in a static fibril local string.
|
---|
| 169 | * That means that you do not have to deallocate the string (actually, you
|
---|
[d78a32f] | 170 | * can not do that) and you do not have to guard it against concurrent
|
---|
[019cff6] | 171 | * calls to it.
|
---|
[6fd7062] | 172 | * The only limitation is that each second call rewrites the buffer again
|
---|
| 173 | * (internally, two buffer are used in cyclic manner).
|
---|
[019cff6] | 174 | * Thus, it is necessary to copy the buffer elsewhere (that includes printing
|
---|
| 175 | * to screen or writing to file).
|
---|
| 176 | * Since this function is expected to be used for debugging prints only,
|
---|
| 177 | * that is not a big limitation.
|
---|
| 178 | *
|
---|
[6fd7062] | 179 | * @warning You cannot use this function more than twice in the same printf
|
---|
[019cff6] | 180 | * (see detailed explanation).
|
---|
| 181 | *
|
---|
| 182 | * @param buffer Buffer to be printed (can be NULL).
|
---|
| 183 | * @param size Size of the buffer in bytes (can be zero).
|
---|
| 184 | * @param dumped_size How many bytes to actually dump (zero means all).
|
---|
| 185 | * @return Dumped buffer as a static (but fibril local) string.
|
---|
| 186 | */
|
---|
[1efe89b] | 187 | const char *usb_debug_str_buffer(const uint8_t *buffer, size_t size,
|
---|
[019cff6] | 188 | size_t dumped_size)
|
---|
| 189 | {
|
---|
[ff4185e6] | 190 | /*
|
---|
[6fd7062] | 191 | * Remove previous string.
|
---|
[ff4185e6] | 192 | */
|
---|
[6fd7062] | 193 | bzero(buffer_dump[buffer_dump_index], BUFFER_DUMP_LEN);
|
---|
[ff4185e6] | 194 |
|
---|
[019cff6] | 195 | if (buffer == NULL) {
|
---|
| 196 | return "(null)";
|
---|
| 197 | }
|
---|
| 198 | if (size == 0) {
|
---|
| 199 | return "(empty)";
|
---|
| 200 | }
|
---|
| 201 | if ((dumped_size == 0) || (dumped_size > size)) {
|
---|
| 202 | dumped_size = size;
|
---|
| 203 | }
|
---|
| 204 |
|
---|
[ff4185e6] | 205 | /* How many bytes are available in the output buffer. */
|
---|
| 206 | size_t buffer_remaining_size = BUFFER_DUMP_LEN - 1 - REMAINDER_STR_LEN;
|
---|
[6fd7062] | 207 | char *it = buffer_dump[buffer_dump_index];
|
---|
[019cff6] | 208 |
|
---|
| 209 | size_t index = 0;
|
---|
| 210 |
|
---|
[ff4185e6] | 211 | while (index < size) {
|
---|
| 212 | /* Determine space before the number. */
|
---|
| 213 | const char *space_before;
|
---|
| 214 | if (index == 0) {
|
---|
| 215 | space_before = "";
|
---|
| 216 | } else if ((index % BUFFER_DUMP_GROUP_SIZE) == 0) {
|
---|
| 217 | space_before = " ";
|
---|
| 218 | } else {
|
---|
| 219 | space_before = " ";
|
---|
| 220 | }
|
---|
| 221 |
|
---|
| 222 | /*
|
---|
| 223 | * Add the byte as a hexadecimal number plus the space.
|
---|
| 224 | * We do it into temporary buffer to ensure that always
|
---|
| 225 | * the whole byte is printed.
|
---|
| 226 | */
|
---|
| 227 | int val = buffer[index];
|
---|
| 228 | char current_byte[16];
|
---|
| 229 | int printed = snprintf(current_byte, 16,
|
---|
| 230 | "%s%02x", space_before, val);
|
---|
| 231 | if (printed < 0) {
|
---|
| 232 | break;
|
---|
| 233 | }
|
---|
| 234 |
|
---|
| 235 | if ((size_t) printed > buffer_remaining_size) {
|
---|
| 236 | break;
|
---|
| 237 | }
|
---|
| 238 |
|
---|
| 239 | /* We can safely add 1, because space for end 0 is reserved. */
|
---|
| 240 | str_append(it, buffer_remaining_size + 1, current_byte);
|
---|
| 241 |
|
---|
| 242 | buffer_remaining_size -= printed;
|
---|
| 243 | /* Point at the terminator 0. */
|
---|
| 244 | it += printed;
|
---|
[019cff6] | 245 | index++;
|
---|
[ff4185e6] | 246 |
|
---|
[019cff6] | 247 | if (index >= dumped_size) {
|
---|
| 248 | break;
|
---|
| 249 | }
|
---|
| 250 | }
|
---|
| 251 |
|
---|
[ff4185e6] | 252 | /* Add how many bytes were not printed. */
|
---|
| 253 | if (index < size) {
|
---|
| 254 | snprintf(it, REMAINDER_STR_LEN,
|
---|
| 255 | REMAINDER_STR_FMT, size - index);
|
---|
| 256 | }
|
---|
[019cff6] | 257 |
|
---|
[6fd7062] | 258 | /* Next time, use the other buffer. */
|
---|
| 259 | buffer_dump_index = 1 - buffer_dump_index;
|
---|
| 260 |
|
---|
| 261 | /* Need to take the old one due to previous line. */
|
---|
| 262 | return buffer_dump[1 - buffer_dump_index];
|
---|
[019cff6] | 263 | }
|
---|
| 264 |
|
---|
| 265 |
|
---|
[bb95594] | 266 | /**
|
---|
| 267 | * @}
|
---|
| 268 | */
|
---|