|
|
|
/** Copyright (c) 2008 Victor Julien <victor@inliniac.net>
|
|
|
|
* Copyright (c) 2009 Open Information Security Foundation
|
|
|
|
*
|
|
|
|
* \author Victor Julien <victor@inliniac.net>
|
|
|
|
* \author Gurvinder Singh <gurvindersinghdahiya@gmail.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __STREAM_TCP_REASSEMBLE_H__
|
|
|
|
#define __STREAM_TCP_REASSEMBLE_H__
|
|
|
|
|
|
|
|
#include "stream.h"
|
|
|
|
#include "app-layer-detect-proto.h"
|
|
|
|
|
|
|
|
/** Supported OS list and default OS policy is BSD */
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
OS_POLICY_NONE = 1,
|
|
|
|
OS_POLICY_BSD,
|
|
|
|
OS_POLICY_BSD_RIGHT,
|
|
|
|
OS_POLICY_OLD_LINUX,
|
|
|
|
OS_POLICY_LINUX,
|
|
|
|
OS_POLICY_OLD_SOLARIS,
|
|
|
|
OS_POLICY_SOLARIS,
|
|
|
|
OS_POLICY_HPUX10,
|
|
|
|
OS_POLICY_HPUX11,
|
|
|
|
OS_POLICY_IRIX,
|
|
|
|
OS_POLICY_MACOS,
|
|
|
|
OS_POLICY_WINDOWS,
|
|
|
|
OS_POLICY_VISTA,
|
|
|
|
OS_POLICY_WINDOWS2K3,
|
|
|
|
OS_POLICY_FIRST,
|
|
|
|
OS_POLICY_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef struct TcpReassemblyThreadCtx_ {
|
|
|
|
StreamMsgQueue *stream_q;
|
|
|
|
AlpProtoDetectThreadCtx dp_ctx; /**< proto detection thread data */
|
|
|
|
} TcpReassemblyThreadCtx;
|
|
|
|
|
|
|
|
#define OS_POLICY_DEFAULT OS_POLICY_BSD
|
|
|
|
|
|
|
|
int StreamTcpReassembleHandleSegment(TcpReassemblyThreadCtx *, TcpSession *, TcpStream *, Packet *);
|
|
|
|
int StreamTcpReassembleInit(char);
|
|
|
|
void StreamTcpReassembleFree(char);
|
|
|
|
void StreamTcpReassembleRegisterTests(void);
|
|
|
|
TcpReassemblyThreadCtx *StreamTcpReassembleInitThreadCtx(void);
|
|
|
|
void StreamTcpReassembleFreeThreadCtx(TcpReassemblyThreadCtx *);
|
|
|
|
int StreamTcpReassembleProcessAppLayer(TcpReassemblyThreadCtx *);
|
|
|
|
|
|
|
|
void StreamTcpCreateTestPacket(uint8_t *, uint8_t, uint8_t, uint8_t);
|
|
|
|
|
|
|
|
void StreamL7DataPtrInit(TcpSession *);
|
|
|
|
void StreamL7DataPtrFree(TcpSession *);
|
|
|
|
|
|
|
|
void StreamTcpSetSessionNoReassemblyFlag (TcpSession *, char );
|
|
|
|
void StreamTcpSetOSPolicy(TcpStream *, Packet *);
|
|
|
|
|
|
|
|
#endif /* __STREAM_TCP_REASSEMBLE_H__ */
|
|
|
|
|