tinydtls  0.8.1
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Groups
debug.h
Go to the documentation of this file.
1 /* debug.h -- debug utilities
2  *
3  * Copyright (C) 2011--2012 Olaf Bergmann <bergmann@tzi.org>
4  *
5  * Permission is hereby granted, free of charge, to any person
6  * obtaining a copy of this software and associated documentation
7  * files (the "Software"), to deal in the Software without
8  * restriction, including without limitation the rights to use, copy,
9  * modify, merge, publish, distribute, sublicense, and/or sell copies
10  * of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be
14  * included in all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
20  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
21  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23  * SOFTWARE.
24  */
25 
26 #ifndef _DTLS_DEBUG_H_
27 #define _DTLS_DEBUG_H_
28 
29 #include <stdlib.h>
30 
31 #include "dtls_config.h"
32 #include "global.h"
33 #include "session.h"
34 
35 #ifdef WITH_CONTIKI
36 # ifndef DEBUG
37 # define DEBUG DEBUG_PRINT
38 # endif /* DEBUG */
39 #include "net/ip/uip-debug.h"
40 
41 #ifdef CONTIKI_TARGET_MBXXX
42 extern char __Stack_Init, _estack;
43 
44 static inline void check_stack() {
45  const char *p = &__Stack_Init;
46  while (p < &_estack && *p == 0x38) {
47  p++;
48  }
49 
50  PRINTF("Stack: %d bytes used (%d free)\n", &_estack - p, p - &__Stack_Init);
51 }
52 #else /* CONTIKI_TARGET_MBXXX */
53 static inline void check_stack() {
54 }
55 #endif /* CONTIKI_TARGET_MBXXX */
56 #else /* WITH_CONTKI */
57 #define PRINTF(...)
58 
59 static inline void check_stack() {
60 }
61 #endif
62 
63 struct __session_t;
64 
68 } log_t;
69 
71 const char *dtls_package_name();
72 
74 const char *dtls_package_version();
75 
76 #ifndef NDEBUG
77 
79 
81 void dtls_set_log_level(log_t level);
82 
87 #ifdef HAVE_VPRINTF
88 void dsrv_log(log_t level, char *format, ...);
89 #else
90 #define dsrv_log(level, format, ...) PRINTF(format, ##__VA_ARGS__)
91 #endif
92 
94 void hexdump(const unsigned char *packet, int length);
95 
97 void dump(unsigned char *buf, size_t len);
98 
99 void dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, int extend);
100 
101 void dtls_dsrv_log_addr(log_t level, const char *name, const session_t *addr);
102 
103 #else /* NDEBUG */
104 
105 static inline log_t dtls_get_log_level()
106 {
107  return DTLS_LOG_EMERG;
108 }
109 
110 static inline void dtls_set_log_level(log_t level)
111 {}
112 
113 static inline void dsrv_log(log_t level, char *format, ...)
114 {}
115 
116 static inline void hexdump(const unsigned char *packet, int length)
117 {}
118 
119 static inline void dump(unsigned char *buf, size_t len)
120 {}
121 
122 static inline void
123 dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, int extend)
124 {}
125 
126 static inline void
127 dtls_dsrv_log_addr(log_t level, const char *name, const struct __session_t *addr)
128 {}
129 
130 #endif /* NDEBUG */
131 
132 /* A set of convenience macros for common log levels. */
133 #define dtls_emerg(...) dsrv_log(DTLS_LOG_EMERG, __VA_ARGS__)
134 #define dtls_alert(...) dsrv_log(DTLS_LOG_ALERT, __VA_ARGS__)
135 #define dtls_crit(...) dsrv_log(DTLS_LOG_CRIT, __VA_ARGS__)
136 #define dtls_warn(...) dsrv_log(DTLS_LOG_WARN, __VA_ARGS__)
137 #define dtls_notice(...) dsrv_log(DTLS_LOG_NOTICE, __VA_ARGS__)
138 #define dtls_info(...) dsrv_log(DTLS_LOG_INFO, __VA_ARGS__)
139 #define dtls_debug(...) dsrv_log(DTLS_LOG_DEBUG, __VA_ARGS__)
140 #define dtls_debug_hexdump(name, buf, length) dtls_dsrv_hexdump_log(DTLS_LOG_DEBUG, name, buf, length, 1)
141 #define dtls_debug_dump(name, buf, length) dtls_dsrv_hexdump_log(DTLS_LOG_DEBUG, name, buf, length, 0)
142 
143 #endif /* _DTLS_DEBUG_H_ */
void dump(unsigned char *buf, size_t len)
Definition: debug.c:272
void dtls_set_log_level(log_t level)
Definition: debug.c:63
void dtls_dsrv_log_addr(log_t level, const char *name, const session_t *addr)
Definition: debug.c:277
log_t
Definition: debug.h:66
#define PRINTF(...)
Definition: debug.h:57
const char * dtls_package_name()
Definition: debug.c:49
void dtls_dsrv_hexdump_log(log_t level, const char *name, const unsigned char *buf, size_t length, int extend)
Definition: debug.c:290
void hexdump(const unsigned char *packet, int length)
Definition: debug.c:252
static void check_stack()
Definition: debug.h:59
log_t dtls_get_log_level()
Definition: debug.c:58
void dsrv_log(log_t level, char *format,...)
Definition: debug.c:208
const char * dtls_package_version()
Definition: debug.c:53