suricata
util-print.c File Reference
#include "suricata-common.h"
#include "util-print.h"
#include "util-error.h"
#include "util-debug.h"
#include "util-validate.h"
#include "rust.h"
Include dependency graph for util-print.c:

Go to the source code of this file.

Macros

#define BUFFER_LENGTH   2048
 
#define BUFFER_LENGTH   2048
 
#define s6_addr16   __u6_addr.__u6_addr16
 

Functions

void PrintBufferRawLineHex (char *nbuf, int *offset, int max_size, const uint8_t *buf, uint32_t buflen)
 print a buffer as hex on a single line More...
 
void PrintRawLineHexBuf (char *retbuf, uint32_t retbuflen, const uint8_t *buf, uint32_t buflen)
 print a buffer as hex on a single line into retbuf buffer More...
 
void PrintRawJsonFp (FILE *fp, uint8_t *buf, uint32_t buflen)
 
void PrintRawUriFp (FILE *fp, uint8_t *buf, uint32_t buflen)
 
void PrintRawUriBuf (char *retbuf, uint32_t *offset, uint32_t retbuflen, uint8_t *buf, uint32_t buflen)
 
void PrintRawDataFp (FILE *fp, const uint8_t *buf, uint32_t buflen)
 
void PrintRawDataToBuffer (uint8_t *dst_buf, uint32_t *dst_buf_offset_ptr, uint32_t dst_buf_size, const uint8_t *src_buf, uint32_t src_buf_len)
 
void PrintStringsToBuffer (uint8_t *dst_buf, uint32_t *dst_buf_offset_ptr, uint32_t dst_buf_size, const uint8_t *src_buf, const uint32_t src_buf_len)
 
const char * PrintInet (int af, const void *src, char *dst, socklen_t size)
 
void PrintHexString (char *str, size_t size, uint8_t *buf, size_t buf_len)
 

Detailed Description

Author
Victor Julien victo.nosp@m.r@in.nosp@m.linia.nosp@m.c.ne.nosp@m.t

Print utility functions

Definition in file util-print.c.

Macro Definition Documentation

◆ BUFFER_LENGTH [1/2]

#define BUFFER_LENGTH   2048

◆ BUFFER_LENGTH [2/2]

#define BUFFER_LENGTH   2048

◆ s6_addr16

#define s6_addr16   __u6_addr.__u6_addr16

Definition at line 238 of file util-print.c.

Function Documentation

◆ PrintBufferRawLineHex()

void PrintBufferRawLineHex ( char *  nbuf,
int *  offset,
int  max_size,
const uint8_t *  buf,
uint32_t  buflen 
)

print a buffer as hex on a single line

Prints in the format "00 AA BB"

Parameters
nbufbuffer into which the output is written
offsetof where to start writing into the buffer
max_sizethe size of the output buffer
bufbuffer to print from
buflenlength of the input buffer

Definition at line 44 of file util-print.c.

References offset, and PrintBufferData.

Referenced by AlertFastLogger().

Here is the caller graph for this function:

◆ PrintHexString()

void PrintHexString ( char *  str,
size_t  size,
uint8_t *  buf,
size_t  buf_len 
)

Definition at line 286 of file util-print.c.

References DEBUG_VALIDATE_BUG_ON, and str.

◆ PrintInet()

const char* PrintInet ( int  af,
const void *  src,
char *  dst,
socklen_t  size 
)

Definition at line 262 of file util-print.c.

References af, dst, and src.

Referenced by AddressDebugPrint(), AlertFastLogger(), JsonAddrInfoInit(), SCRadixAddKeyIPV4String(), SCRadixAddKeyIPV6String(), and TLSGetIPInformations().

Here is the caller graph for this function:

◆ PrintRawDataFp()

void PrintRawDataFp ( FILE *  fp,
const uint8_t *  buf,
uint32_t  buflen 
)

Definition at line 135 of file util-print.c.

Referenced by DetectBase64DecodeDoMatch(), HtpBodyPrint(), and StreamingBufferCompareRawData().

Here is the caller graph for this function:

◆ PrintRawDataToBuffer()

void PrintRawDataToBuffer ( uint8_t *  dst_buf,
uint32_t *  dst_buf_offset_ptr,
uint32_t  dst_buf_size,
const uint8_t *  src_buf,
uint32_t  src_buf_len 
)

Definition at line 172 of file util-print.c.

References PrintBufferData.

◆ PrintRawJsonFp()

void PrintRawJsonFp ( FILE *  fp,
uint8_t *  buf,
uint32_t  buflen 
)

Definition at line 69 of file util-print.c.

References BUFFER_LENGTH, offset, and PrintBufferData.

◆ PrintRawLineHexBuf()

void PrintRawLineHexBuf ( char *  retbuf,
uint32_t  retbuflen,
const uint8_t *  buf,
uint32_t  buflen 
)

print a buffer as hex on a single line into retbuf buffer

Prints in the format "00 AA BB"

Parameters
retbufpointer to the buffer which will have the result
rebuflenlength of the buffer
bufbuffer to print from
buflenlength of the input buffer

Definition at line 61 of file util-print.c.

References offset, and PrintBufferData.

◆ PrintRawUriBuf()

void PrintRawUriBuf ( char *  retbuf,
uint32_t *  offset,
uint32_t  retbuflen,
uint8_t *  buf,
uint32_t  buflen 
)

Definition at line 114 of file util-print.c.

References offset, and PrintBufferData.

Referenced by LogCustomFormatWriteTimestamp().

Here is the caller graph for this function:

◆ PrintRawUriFp()

void PrintRawUriFp ( FILE *  fp,
uint8_t *  buf,
uint32_t  buflen 
)

Definition at line 90 of file util-print.c.

References BUFFER_LENGTH, offset, and PrintBufferData.

Referenced by EngineAnalysisFP().

Here is the caller graph for this function:

◆ PrintStringsToBuffer()

void PrintStringsToBuffer ( uint8_t *  dst_buf,
uint32_t *  dst_buf_offset_ptr,
uint32_t  dst_buf_size,
const uint8_t *  src_buf,
const uint32_t  src_buf_len 
)

Definition at line 220 of file util-print.c.