Snort_AIPreproc/spp_ai.h

208 lines
5.8 KiB
C
Raw Normal View History

2010-08-14 14:30:41 +02:00
/*
* =====================================================================================
*
* Filename: spp_ai.h
*
* Description: Header file for the preprocessor
*
* Version: 1.0
* Created: 30/07/2010 15:47:12
* Revision: none
* Compiler: gcc
*
* Author: BlackLight (http://0x00.ath.cx), <blacklight@autistici.org>
* Licence: GNU GPL v.3
* Company: DO WHAT YOU WANT CAUSE A PIRATE IS FREE, YOU ARE A PIRATE!
*
* =====================================================================================
*/
#ifndef _SPP_AI_H
#define _SPP_AI_H
#include "sf_snort_packet.h"
#include "sf_dynamic_preprocessor.h"
#include "uthash.h"
#define PRIVATE static
/** Default interval in seconds for the thread cleaning up TCP streams */
2010-08-16 22:09:34 +02:00
#define DEFAULT_HASH_CLEANUP_INTERVAL 300
/** Default interval in seconds before a stream without any packet is considered timed out */
2010-08-16 22:09:34 +02:00
#define DEFAULT_STREAM_EXPIRE_INTERVAL 300
/** Default interval in seconds for reading alerts from the alert database, if used */
#define DEFAULT_DATABASE_INTERVAL 30
/** Default interval in seconds for the thread clustering alerts */
2010-08-16 22:09:34 +02:00
#define DEFAULT_ALERT_CLUSTERING_INTERVAL 3600
/** Default path to Snort's log file */
2010-08-16 22:09:34 +02:00
#define DEFAULT_ALERT_LOG_FILE "/var/log/snort/alert"
/** Default path to Snort's clustered alerts file */
2010-08-16 22:09:34 +02:00
#define DEFAULT_CLUSTER_LOG_FILE "/var/log/snort/cluster_alert"
2010-08-14 14:30:41 +02:00
extern DynamicPreprocessorData _dpd;
typedef unsigned char uint8_t;
typedef unsigned short uint16_t;
typedef unsigned int uint32_t;
typedef enum { false, true } BOOL;
/** Possible types of clustering attributes */
2010-08-14 14:30:41 +02:00
typedef enum {
2010-08-16 22:09:34 +02:00
none, src_addr, dst_addr, src_port, dst_port, CLUSTER_TYPES
2010-08-14 14:30:41 +02:00
} cluster_type;
/** Each stream in the hash table is identified by the couple (src_ip, dst_port) */
2010-08-14 14:30:41 +02:00
struct pkt_key
{
uint32_t src_ip;
uint16_t dst_port;
};
/** Identifier of a packet in a stream */
2010-08-14 14:30:41 +02:00
struct pkt_info
{
/** Key of the packet (src_ip, dst_port) */
struct pkt_key key;
/** Timestamp */
time_t timestamp;
/** Reference to SFSnortPacket containing packet's information */
SFSnortPacket* pkt;
/** Pointer to the next packet in the stream */
struct pkt_info* next;
/** Flag set if the packet is observed, i.e. associated to a security alert */
BOOL observed;
/** Make the struct 'hashable' */
UT_hash_handle hh;
2010-08-14 14:30:41 +02:00
};
/* Data type containing the configuration of the module */
typedef struct
{
/** Interval in seconds for the stream cleanup thread */
2010-08-14 14:30:41 +02:00
unsigned long hashCleanupInterval;
/** Interval in seconds for considering an idle stream timed out */
2010-08-14 14:30:41 +02:00
unsigned long streamExpireInterval;
/** Interval in seconds for the alert clustering thread */
2010-08-14 14:30:41 +02:00
unsigned long alertClusteringInterval;
/** Interval in seconds for reading the alert database, if database logging is used */
unsigned long databaseParsingInterval;
/** Alert file */
2010-08-14 14:30:41 +02:00
char alertfile[1024];
/** Clustered alerts file */
2010-08-14 14:30:41 +02:00
char clusterfile[1024];
/** Database name, if database logging is used */
char dbname[256];
/** Database user, if database logging is used */
char dbuser[256];
/** Database password, if database logging is used */
char dbpass[256];
/** Database host, if database logging is used */
char dbhost[256];
2010-08-14 14:30:41 +02:00
} AI_config;
/* Data type for hierarchies used for clustering */
typedef struct _hierarchy_node
{
cluster_type type;
char label[256];
int min_val;
int max_val;
int nchildren;
struct _hierarchy_node *parent;
struct _hierarchy_node **children;
} hierarchy_node;
/** Data type for Snort alerts */
2010-08-14 14:30:41 +02:00
typedef struct _AI_snort_alert {
/* Identifiers of the alert */
unsigned int gid;
unsigned int sid;
unsigned int rev;
/* Snort priority, description,
* classification and timestamp
* of the alert */
unsigned short priority;
char *desc;
char *classification;
time_t timestamp;
/* IP header information */
uint8_t ip_tos;
uint16_t ip_len;
uint16_t ip_id;
uint8_t ip_ttl;
uint8_t ip_proto;
uint32_t ip_src_addr;
uint32_t ip_dst_addr;
2010-08-14 14:30:41 +02:00
/* TCP header information */
uint16_t tcp_src_port;
uint16_t tcp_dst_port;
uint32_t tcp_seq;
uint32_t tcp_ack;
2010-08-14 14:30:41 +02:00
uint8_t tcp_flags;
uint16_t tcp_window;
uint16_t tcp_len;
2010-08-14 14:30:41 +02:00
/* Reference to the TCP stream
* associated to the alert, if any */
struct pkt_info *stream;
/* Pointer to the next alert in
* the log, if any*/
struct _AI_snort_alert *next;
/* Hierarchies for addresses and ports,
* if the clustering algorithm is used */
2010-08-16 22:09:34 +02:00
hierarchy_node *h_node[CLUSTER_TYPES];
2010-08-14 14:30:41 +02:00
/* If the clustering algorithm is used,
* we also count how many alerts this
* single alert groups */
unsigned int grouped_alarms_count;
} AI_snort_alert;
int preg_match ( const char*, char*, char***, int* );
void* AI_hashcleanup_thread ( void* );
void* AI_file_alertparser_thread ( void* );
void* AI_mysql_alertparser_thread ( void* );
2010-08-14 14:30:41 +02:00
void AI_pkt_enqueue ( SFSnortPacket* );
void AI_set_stream_observed ( struct pkt_key key );
void AI_hierarchies_build ( AI_config*, hierarchy_node**, int );
2010-08-16 22:09:34 +02:00
2010-08-14 14:30:41 +02:00
struct pkt_info* AI_get_stream_by_key ( struct pkt_key );
2010-08-14 14:30:41 +02:00
AI_snort_alert* AI_get_alerts ( void );
AI_snort_alert* AI_mysql_get_alerts ( void );
2010-08-16 22:09:34 +02:00
void AI_free_alerts ( AI_snort_alert *node );
void AI_mysql_free_alerts ( AI_snort_alert *node );
/** Function pointer to the function used for getting the alert list (from log file, db, ...) */
AI_snort_alert* (*get_alerts)(void);
2010-08-14 14:30:41 +02:00
#endif /* _SPP_AI_H */