1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283
|
/*
** Copyright (C) 2002-2012 Sourcefire, Inc.
** Copyright (C) 1998-2002 Martin Roesch <roesch@sourcefire.com>
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License Version 2 as
** published by the Free Software Foundation. You may not use, modify or
** distribute this program under any other version of the GNU General
** Public License.
**
** This program 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 this program; if not, write to the Free Software
** Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
**
** Description
** This file contains the utility functions used by rule options.
**
*/
#ifndef __DETECTION_UTIL_H__
#define __DETECTION_UTIL_H__
#include "sf_types.h"
#include "decode.h"
#include "detect.h"
#include "snort.h"
#include "snort_debug.h"
#include "treenodes.h"
#ifndef DECODE_BLEN
#define DECODE_BLEN 65535
#define MAX_URI 8192
typedef enum
{
HTTP_BUFFER_URI,
HTTP_BUFFER_RAW_URI,
HTTP_BUFFER_HEADER,
HTTP_BUFFER_RAW_HEADER,
HTTP_BUFFER_CLIENT_BODY,
HTTP_BUFFER_METHOD,
HTTP_BUFFER_COOKIE,
HTTP_BUFFER_RAW_COOKIE,
HTTP_BUFFER_STAT_CODE,
HTTP_BUFFER_STAT_MSG,
HTTP_BUFFER_MAX
} HTTP_BUFFER;
#endif
typedef enum {
FLAG_ALT_DECODE = 0x0001,
FLAG_ALT_DETECT = 0x0002,
FLAG_DETECT_ALL = 0xffff
} DetectFlagType;
#define DOE_BUF_URI 0x01
#define DOE_BUF_STD 0x02
#define HTTPURI_PIPELINE_REQ 0x01
#define HTTP_ENCODE_TYPE__UTF8_UNICODE 0x00000001
#define HTTP_ENCODE_TYPE__DOUBLE_ENCODE 0x00000002
#define HTTP_ENCODE_TYPE__NONASCII 0x00000004
#define HTTP_ENCODE_TYPE__BASE36 0x00000008
#define HTTP_ENCODE_TYPE__UENCODE 0x00000010
#define HTTP_ENCODE_TYPE__BARE_BYTE 0x00000020
#define HTTP_ENCODE_TYPE__IIS_UNICODE 0x00000040
#define HTTP_ENCODE_TYPE__ASCII 0x00000080
typedef struct _HttpUri
{
const uint8_t *uri;
uint16_t length;
uint32_t encode_type;
} HttpUri;
typedef struct {
uint8_t *data;
uint16_t len;
} DataPointer;
typedef struct {
uint8_t data[DECODE_BLEN];
uint16_t len;
} DataBuffer;
extern uint8_t base64_decode_buf[DECODE_BLEN];
extern uint32_t base64_decode_size;
extern uint8_t mime_present;
extern uint8_t doe_buf_flags;
extern const uint8_t *doe_ptr;
extern uint16_t detect_flags;
extern HttpUri UriBufs[HTTP_BUFFER_MAX];
extern DataPointer DetectBuffer;
extern DataPointer file_data_ptr;
extern DataBuffer DecodeBuffer;
const char* uri_buffer_name[HTTP_BUFFER_MAX];
#define SetDetectLimit(pktPtr, altLen) \
{ \
pktPtr->alt_dsize = altLen; \
}
#define IsLimitedDetect(pktPtr) (pktPtr->packet_flags & PKT_HTTP_DECODE)
/*
* Function: setFileDataPtr
*
* Purpose: Sets the file data pointer used by
* file_data rule option.
*
* Arguments: ptr => pointer to the body data
*
* Returns: void
*
*/
static inline void setFileDataPtr(uint8_t *ptr, uint16_t decode_size)
{
file_data_ptr.data = ptr;
file_data_ptr.len = decode_size;
}
/*
* Function: IsBase64DecodeBuf
*
* Purpose: Checks if there is base64 decoded buffer.
*
* Arguments: p => doe_ptr
*
* Returns: Returns 1 if there is base64 decoded data
* and if the doe_ptr is within the buffer.
* Returns 0 otherwise.
*
*/
static inline int IsBase64DecodeBuf(const uint8_t *p)
{
if( base64_decode_size && p )
{
if ((p >= base64_decode_buf) &&
(p < (base64_decode_buf + base64_decode_size)))
{
return 1;
}
else
return 0;
}
else
return 0;
}
/*
* Function: SetDoePtr(const uint8_t *ptr, uint8_t type)
*
* Purpose: This function set the doe_ptr and sets the type of
* buffer to which doe_ptr points.
*
* Arguments: ptr => pointer
* type => type of buffer
*
* Returns: void
*
*/
static inline void SetDoePtr(const uint8_t *ptr, uint8_t type)
{
doe_ptr = ptr;
doe_buf_flags = type;
}
/*
* Function: UpdateDoePtr(const uint8_t *ptr, uint8_t update)
*
* Purpose: This function updates the doe_ptr and resets the type of
* buffer to which doe_ptr points based on the update value.
*
* Arguments: ptr => pointer
* update => reset the buf flag if update is not zero.
*
* Returns: void
*
*/
static inline void UpdateDoePtr(const uint8_t *ptr, uint8_t update)
{
doe_ptr = ptr;
if(update)
doe_buf_flags = DOE_BUF_STD;
}
void EventTrace_Init(void);
void EventTrace_Term(void);
void EventTrace_Log(const Packet*, OptTreeNode*, int action);
static inline int EventTrace_IsEnabled (void)
{
return ( snort_conf->event_trace_max > 0 );
}
static inline void DetectFlag_Enable(DetectFlagType df)
{
detect_flags |= df;
}
static inline void DetectFlag_Disable(DetectFlagType df)
{
detect_flags &= ~df;
}
static inline int Is_DetectFlag(DetectFlagType df)
{
return ( (detect_flags & df) != 0 );
}
static inline uint16_t Get_DetectFlags(void)
{
return detect_flags;
}
static inline void Reset_DetectFlags(uint16_t dflags)
{
detect_flags = dflags;
}
static inline int GetAltDetect(uint8_t **bufPtr, uint16_t *altLenPtr)
{
if ( Is_DetectFlag(FLAG_ALT_DETECT) )
{
*bufPtr = DetectBuffer.data;
*altLenPtr = DetectBuffer.len;
return 1;
}
return 0;
}
static inline void SetAltDetect(uint8_t *buf, uint16_t altLen)
{
DetectFlag_Enable(FLAG_ALT_DETECT);
DetectBuffer.data = buf;
DetectBuffer.len = altLen;
}
static inline void SetAltDecode(uint16_t altLen)
{
DetectFlag_Enable(FLAG_ALT_DECODE);
DecodeBuffer.len = altLen;
}
static inline void DetectReset(uint8_t *buf, uint16_t altLen)
{
DetectBuffer.data = buf;
DetectBuffer.len = altLen;
DetectFlag_Disable(FLAG_DETECT_ALL);
/* Reset the values */
file_data_ptr.data = NULL;
file_data_ptr.len = 0;
base64_decode_size = 0;
doe_buf_flags = 0;
mime_present = 0;
DecodeBuffer.len = 0;
}
#endif
|