2014-06-23 01:27:57 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* net/iob/iob_dump.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Gregory Nutt. All rights reserved.
|
|
|
|
* Author: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <debug.h>
|
|
|
|
|
2017-04-21 04:53:30 +08:00
|
|
|
#include <nuttx/drivers/iob.h>
|
2014-06-23 01:27:57 +08:00
|
|
|
|
2016-06-12 04:14:08 +08:00
|
|
|
#ifdef CONFIG_DEBUG_FEATURES
|
2014-06-23 01:27:57 +08:00
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Pre-processor definitions
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-09-05 23:10:48 +08:00
|
|
|
#ifndef MIN
|
2014-06-23 21:31:55 +08:00
|
|
|
# define MIN(a,b) ((a) < (b) ? (a) : (b))
|
|
|
|
#endif
|
|
|
|
|
2014-06-23 01:27:57 +08:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Function: iob_dump
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Dump the contents of a I/O buffer chain
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2014-06-23 23:40:17 +08:00
|
|
|
void iob_dump(FAR const char *msg, FAR struct iob_s *iob, unsigned int len,
|
|
|
|
unsigned int offset)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2014-06-23 23:40:17 +08:00
|
|
|
FAR struct iob_s *head;
|
2014-06-23 01:27:57 +08:00
|
|
|
uint8_t data[32];
|
2014-06-23 23:40:17 +08:00
|
|
|
unsigned int maxlen;
|
2014-06-23 01:27:57 +08:00
|
|
|
unsigned int nbytes;
|
2014-06-23 23:40:17 +08:00
|
|
|
unsigned int lndx;
|
|
|
|
unsigned int cndx;
|
2014-06-23 01:27:57 +08:00
|
|
|
|
2014-06-23 23:40:17 +08:00
|
|
|
head = iob;
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, "%s: iob=%p pktlen=%d\n", msg, head, head->io_pktlen);
|
2014-06-23 01:27:57 +08:00
|
|
|
|
2014-06-23 23:40:17 +08:00
|
|
|
/* Check if the offset is beyond the data in the I/O buffer chain */
|
|
|
|
|
|
|
|
if (offset > head->io_pktlen)
|
|
|
|
{
|
2016-06-12 05:50:49 +08:00
|
|
|
nerr("ERROR: offset is past the end of data: %u > %u\n",
|
2014-06-23 23:40:17 +08:00
|
|
|
offset, head->io_pktlen);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Dump I/O buffer headers */
|
|
|
|
|
|
|
|
for (; iob; iob = iob->io_flink)
|
|
|
|
{
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, " iob=%p len=%d offset=%d\n",
|
|
|
|
iob, iob->io_len, iob->io_offset);
|
2014-06-23 23:40:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the amount of data to be displayed, limited by the amount that we
|
|
|
|
* have beyond the offset.
|
|
|
|
*/
|
|
|
|
|
|
|
|
maxlen = head->io_pktlen - offset;
|
|
|
|
len = MIN(len, maxlen);
|
|
|
|
|
|
|
|
/* Then beginning printing with the buffer containing the offset in groups
|
|
|
|
* of 32 bytes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (lndx = 0; lndx < len; lndx += 32, offset += 32)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2014-06-23 23:40:17 +08:00
|
|
|
/* Copy 32-bytes into our local buffer from the current offset */
|
2014-06-23 01:27:57 +08:00
|
|
|
|
2014-06-23 23:40:17 +08:00
|
|
|
nbytes = iob_copyout(data, head, 32, offset);
|
2014-06-23 01:27:57 +08:00
|
|
|
|
|
|
|
/* Make sure that we have something to print */
|
|
|
|
|
|
|
|
if (nbytes > 0)
|
|
|
|
{
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, " %04x: ", offset);
|
2014-06-23 23:40:17 +08:00
|
|
|
|
|
|
|
for (cndx = 0; cndx < 32; cndx++)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2014-06-23 23:40:17 +08:00
|
|
|
if (cndx == 16)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, " ");
|
2014-06-23 01:27:57 +08:00
|
|
|
}
|
|
|
|
|
2014-06-23 23:40:17 +08:00
|
|
|
if ((lndx + cndx) < len)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, "%02x", data[cndx]);
|
2014-06-23 01:27:57 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, " ");
|
2014-06-23 01:27:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, " ");
|
2014-06-23 23:40:17 +08:00
|
|
|
for (cndx = 0; cndx < 32; cndx++)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2014-06-23 23:40:17 +08:00
|
|
|
if (cndx == 16)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, " ");
|
2014-06-23 01:27:57 +08:00
|
|
|
}
|
|
|
|
|
2014-06-23 23:40:17 +08:00
|
|
|
if ((lndx + cndx) < len)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2014-06-23 23:40:17 +08:00
|
|
|
if (data[cndx] >= 0x20 && data[cndx] < 0x7f)
|
2014-06-23 01:27:57 +08:00
|
|
|
{
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, "%c", data[cndx]);
|
2014-06-23 01:27:57 +08:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, ".");
|
2014-06-23 01:27:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-20 22:57:08 +08:00
|
|
|
syslog(LOG_DEBUG, "\n");
|
2014-06-23 01:27:57 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-12 04:14:08 +08:00
|
|
|
#endif /* CONFIG_DEBUG_FEATURES */
|