2015-04-12 23:28:55 +02:00
|
|
|
/*
|
|
|
|
This file is part of libcapwap.
|
|
|
|
|
|
|
|
libcapwap is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
libcapwap is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* @brief
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2015-04-05 02:10:37 +02:00
|
|
|
#ifndef __DBG_H
|
|
|
|
#define __DBG_H
|
|
|
|
|
2015-04-05 20:27:17 +02:00
|
|
|
#include "conn.h"
|
2015-04-05 02:10:37 +02:00
|
|
|
|
2015-04-10 19:51:56 +02:00
|
|
|
#ifndef CW_LOG_DUMP_ROW_LEN
|
|
|
|
#define CW_LOG_DUMP_ROW_LEN 32
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef CW_LOG_DUMP_ROW_TAB_LEN
|
|
|
|
#define CW_LOG_DUMP_ROW_TAB_LEN 8
|
|
|
|
#endif
|
|
|
|
|
2015-10-18 09:06:36 +02:00
|
|
|
/**
|
|
|
|
*@defgroup DBG DBG
|
|
|
|
*@{
|
|
|
|
*/
|
|
|
|
|
2015-04-10 19:51:56 +02:00
|
|
|
|
2015-04-05 20:27:17 +02:00
|
|
|
void cw_dbg_elem_(struct conn * conn, int msg, int msgelem, const uint8_t * msgbuf, int len);
|
2015-04-07 07:42:36 +02:00
|
|
|
void cw_dbg_missing_mand(int level,struct conn *conn,cw_action_in_t ** ml,int n,cw_action_in_t *a);
|
2015-04-10 17:14:55 +02:00
|
|
|
void cw_dbg_packet(struct conn *conn, uint8_t * packet, int len);
|
2015-04-05 02:10:37 +02:00
|
|
|
|
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
#define DBGX(f,...) cw_dbg(DBG_X,f,__VA_ARGS__) //cw_dbg(DBG_X, f ,__VA_ARGS__)
|
|
|
|
//#define DBGX(f,...) cw_dbg(DBG_X, f)
|
|
|
|
//#define DBGX(f,...) printf("hallo\n")
|
|
|
|
|
|
|
|
|
2015-04-05 02:10:37 +02:00
|
|
|
#ifdef WITH_CW_LOG_DEBUG
|
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
#define cw_dbg_elem(level,conn,msgtype,msgelemtype,msgbuf,msglen)\
|
|
|
|
cw_dbg_elem_colored(level,conn,msgtype,msgelemtype,msgbuf,msglen)
|
2015-04-05 02:10:37 +02:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
#define cw_dbg_elem(...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
2015-04-10 17:14:55 +02:00
|
|
|
|
|
|
|
/**
|
2015-10-18 09:49:14 +02:00
|
|
|
* @defgroup DbgOptions Debug Options
|
2015-04-10 17:14:55 +02:00
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
/**
|
|
|
|
* Debug levels
|
|
|
|
*/
|
2015-10-18 09:06:36 +02:00
|
|
|
enum cw_dbg_levels{
|
2015-04-12 10:19:02 +02:00
|
|
|
/** Show headers of incomming CAPWAP packets */
|
|
|
|
DBG_PKT_IN=0,
|
|
|
|
/** Show headers of outgoing CAPWAP packets */
|
|
|
|
DBG_PKT_OUT,
|
|
|
|
|
|
|
|
/** Incomming CAPWAP packets with errors, wich would
|
|
|
|
usually silently discarded */
|
|
|
|
DBG_PKT_ERR,
|
|
|
|
|
|
|
|
/** Dump content of incomming packets */
|
|
|
|
DBG_PKT_DMP,
|
|
|
|
|
|
|
|
/** Display incomming CAPWAP/LWAPP messages */
|
|
|
|
DBG_MSG_IN,
|
|
|
|
|
|
|
|
/** Display outgoing CAPWAP/LWAPP messages */
|
|
|
|
DBG_MSG_OUT,
|
|
|
|
|
|
|
|
/** Message errors */
|
|
|
|
DBG_MSG_ERR,
|
|
|
|
|
|
|
|
/** Show message elements */
|
|
|
|
DBG_ELEM,
|
2015-04-10 17:14:55 +02:00
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
/** Error in msg elements */
|
|
|
|
DBG_ELEM_ERR,
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
/** Show subelements */
|
|
|
|
DBG_SUBELEM,
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-10-18 09:06:36 +02:00
|
|
|
/** Show dump of subelements */
|
2015-04-12 23:28:55 +02:00
|
|
|
DBG_SUBELEM_DMP,
|
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
/** hex dump elements */
|
|
|
|
DBG_ELEM_DMP,
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
/** General infos, like CAPWAP state */
|
|
|
|
DBG_INFO,
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-04-12 23:28:55 +02:00
|
|
|
/** Misc. warnings */
|
|
|
|
DBG_WARN,
|
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
/** RFC related */
|
|
|
|
DBG_RFC,
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-04-12 23:28:55 +02:00
|
|
|
/** DTLS related messages */
|
2015-04-12 10:19:02 +02:00
|
|
|
DBG_DTLS,
|
2015-04-12 23:28:55 +02:00
|
|
|
|
|
|
|
/** DTLS BIOs in/out */
|
2015-04-12 10:19:02 +02:00
|
|
|
DBG_DTLS_BIO,
|
2015-04-12 23:28:55 +02:00
|
|
|
|
|
|
|
/** Dump DTLS BIO i/o */
|
2015-04-12 10:19:02 +02:00
|
|
|
DBG_DTLS_BIO_DMP,
|
|
|
|
|
|
|
|
DBG_X
|
|
|
|
|
|
|
|
|
|
|
|
};
|
2015-04-11 19:00:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* driver specific debugs */
|
2015-04-12 10:19:02 +02:00
|
|
|
|
2015-04-11 19:00:51 +02:00
|
|
|
#define DBG_DRV 0x00010000
|
|
|
|
#define DBG_DRV_ERR 0x00020000
|
|
|
|
|
|
|
|
/* DTLS debugs */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-12 10:19:02 +02:00
|
|
|
#define DBG_DISP_LINE_NUMBERS (1<<0)
|
|
|
|
#define DBG_DISP_ASC_DMP (1<<1)
|
|
|
|
#define DBG_DISP_COLORS (1<<2)
|
2015-04-11 19:00:51 +02:00
|
|
|
|
|
|
|
#define DBG_DETAIL_ALL 0xffffffff
|
2015-04-12 10:19:02 +02:00
|
|
|
|
2015-04-10 17:14:55 +02:00
|
|
|
|
|
|
|
/**@}*/
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-11 19:00:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
extern uint32_t cw_dbg_opt_display;
|
|
|
|
extern uint32_t cw_dbg_opt_level;
|
2015-10-18 09:49:14 +02:00
|
|
|
extern struct cw_strlist_elem cw_dbg_strings[];
|
2015-04-11 19:00:51 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2015-04-14 07:42:23 +02:00
|
|
|
#define cw_dbg(type,...)\
|
|
|
|
if (cw_dbg_is_level(type)) cw_dbg_colored(type,__FILE__,__LINE__,__VA_ARGS__)
|
|
|
|
|
|
|
|
|
2015-04-11 19:00:51 +02:00
|
|
|
#define cw_dbg_dmp(type,...) cw_dbg_dmp_(type,__FILE__,__LINE__,__VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
|
|
void cw_dbg_colored(int level, const char *file, int line, const char *format, ...);
|
|
|
|
void cw_dbg_dmp_(int level, const char *file, int line,
|
|
|
|
const uint8_t * data, int len, const char *format, ...);
|
|
|
|
|
|
|
|
|
|
|
|
extern void cw_dbg_elem_colored(int level, struct conn *conn, int msg, int msgelem,
|
|
|
|
const uint8_t * msgbuf, int len);
|
|
|
|
|
2015-04-12 23:28:55 +02:00
|
|
|
void cw_dbg_pkt(int level,struct conn *conn, uint8_t * packet, int len,struct sockaddr *from);
|
|
|
|
void cw_dbg_msg(int level,struct conn *conn, uint8_t * packet, int len,struct sockaddr *from);
|
|
|
|
char * cw_dbg_mkdmp(const uint8_t * data, int len);
|
2015-04-26 23:52:11 +02:00
|
|
|
void cw_dbg_version_subelem(int level,const char*context,int subtype,vendorstr_t vstr);
|
2015-04-12 23:28:55 +02:00
|
|
|
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-10-18 09:06:36 +02:00
|
|
|
/**
|
|
|
|
* Set debug level
|
|
|
|
* @param level debug level to set, allowed values are enumberated in #cw_dbg_levels structure.
|
|
|
|
* @param on 1: turns the specified debug level on, 0: turns the specified debug level off.
|
|
|
|
*/
|
2015-04-12 10:19:02 +02:00
|
|
|
#define cw_dbg_set_level(level,on)\
|
|
|
|
(on ? cw_dbg_opt_level |= (1<<(level)) : (cw_dbg_opt_level &= (-1)^(1<<(level))))
|
|
|
|
|
|
|
|
#define cw_dbg_is_level(level)\
|
|
|
|
(cw_dbg_opt_level & (1<<level))
|
|
|
|
|
|
|
|
|
2015-04-11 19:00:51 +02:00
|
|
|
|
2015-10-18 09:06:36 +02:00
|
|
|
/**
|
|
|
|
*@}
|
|
|
|
*/
|