You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
suricata/src/app-layer-expectation.c

332 lines
9.5 KiB
C

/* Copyright (C) 2017 Open Information Security Foundation
*
* You can copy, redistribute or modify this Program under the terms of
* the GNU General Public License version 2 as published by the Free
* Software Foundation.
*
* 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
* version 2 along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
/**
* \defgroup applayerexpectation Application Layer Expectation
*
* Handling of dynamic parallel connection for application layer similar
* to FTP.
*
* @{
*
* Some protocols like FTP create dynamic parallel flow (called expectation). In
* order to assign a application layer protocol to these expectation, Suricata
* needs to parse message of the initial protocol and create and maintain a list
* of expected flow.
*
* Application layers must use the here described API to implement this mechanism.
*
* When parsing a application layer message describing a parallel flow, the
* application layer can call AppLayerExpectationCreate() to declare an
* expectation. By doing that the next flow coming with corresponding IP parameters
* will be assigned the specified application layer. The resulting Flow will
* also have a Flow storage set that can be retrieved at index
* AppLayerExpectationGetDataId():
*
* ```
* data = (char *)FlowGetStorageById(f, AppLayerExpectationGetDataId());
* ```
* This storage can be used to store information that are only available in the
* parent connection and could be useful in the parent connection. For instance
* this is used by the FTP protocol to propagate information such as file name
* and ftp operation to the FTP data connection.
*/
/**
* \file
*
* \author Eric Leblond <eric@regit.org>
*/
#include "suricata-common.h"
#include "debug.h"
#include "ippair-storage.h"
#include "flow-storage.h"
#include "app-layer-expectation.h"
#include "util-print.h"
static int g_expectation_id = -1;
static int g_expectation_data_id = -1;
SC_ATOMIC_DECLARE(uint32_t, expectation_count);
#define EXPECTATION_TIMEOUT 30
typedef struct Expectation_ {
struct timeval ts;
Port sp;
Port dp;
AppProto alproto;
int direction;
void *data;
struct Expectation_ *next;
} Expectation;
typedef struct ExpectationData_ {
/** Start of Expectation Data structure must be a pointer
* to free function. Set to NULL to use SCFree() */
void (*DFree)(void *);
} ExpectationData;
static void ExpectationDataFree(void *e)
{
SCLogDebug("Free expectation data");
ExpectationData *ed = (ExpectationData *) e;
if (ed->DFree) {
ed->DFree(e);
} else {
SCFree(e);
}
}
static void ExpectationListFree(void *e)
{
Expectation *exp = (Expectation *)e;
Expectation *lexp;
while (exp) {
lexp = exp->next;
if (exp->data) {
ExpectationData *expdata = (ExpectationData *) exp->data;
if (expdata->DFree) {
expdata->DFree(exp->data);
} else {
SCFree(exp->data);
}
}
SCFree(exp);
exp = lexp;
}
}
uint64_t ExpectationGetCounter(void)
{
uint64_t x = SC_ATOMIC_GET(expectation_count);
return x;
}
void AppLayerExpectationSetup(void)
{
g_expectation_id = IPPairStorageRegister("expectation", sizeof(void *), NULL, ExpectationListFree);
g_expectation_data_id = FlowStorageRegister("expectation", sizeof(void *), NULL, ExpectationDataFree);
SC_ATOMIC_INIT(expectation_count);
}
static inline int GetFlowAddresses(Flow *f, Address *ip_src, Address *ip_dst)
{
memset(ip_src, 0, sizeof(*ip_src));
memset(ip_dst, 0, sizeof(*ip_dst));
if (FLOW_IS_IPV4(f)) {
FLOW_COPY_IPV4_ADDR_TO_PACKET(&f->src, ip_src);
FLOW_COPY_IPV4_ADDR_TO_PACKET(&f->dst, ip_dst);
} else if (FLOW_IS_IPV6(f)) {
FLOW_COPY_IPV6_ADDR_TO_PACKET(&f->src, ip_src);
FLOW_COPY_IPV6_ADDR_TO_PACKET(&f->dst, ip_dst);
} else {
return -1;
}
return 0;
}
static Expectation *AppLayerExpectationLookup(Flow *f, int direction, IPPair **ipp)
{
Address ip_src, ip_dst;
if (GetFlowAddresses(f, &ip_src, &ip_dst) == -1)
return NULL;
*ipp = IPPairLookupIPPairFromHash(&ip_src, &ip_dst);
if (*ipp == NULL) {
return NULL;
}
return IPPairGetStorageById(*ipp, g_expectation_id);
}
/**
* Create an entry in expectation list
*
* Create a expectation from an existing Flow. Currently, only Flow between
* the two original IP addresses are supported.
*
* \param f a pointer to the original Flow
* \param direction the direction of the data in the expectation flow
* \param src source port of the expected flow, use 0 for any
* \param dst destination port of the expected flow, use 0 for any
* \param alproto the protocol that need to be set on the expected flow
* \param data pointer to data that will be attached to the expected flow
*
* \return -1 if error
* \return 0 if success
*/
int AppLayerExpectationCreate(Flow *f, int direction, Port src, Port dst,
AppProto alproto, void *data)
{
Expectation *iexp = NULL;
IPPair *ipp;
Address ip_src, ip_dst;
Expectation *exp = SCCalloc(1, sizeof(*exp));
if (exp == NULL)
return -1;
exp->sp = src;
exp->dp = dst;
exp->alproto = alproto;
exp->ts = f->lastts;
exp->data = data;
exp->direction = direction;
if (GetFlowAddresses(f, &ip_src, &ip_dst) == -1)
goto error;
ipp = IPPairGetIPPairFromHash(&ip_src, &ip_dst);
if (ipp == NULL)
goto error;
iexp = IPPairGetStorageById(ipp, g_expectation_id);
exp->next = iexp;
IPPairSetStorageById(ipp, g_expectation_id, exp);
SC_ATOMIC_ADD(expectation_count, 1);
/* As we are creating the expectation, we release lock on IPPair without
* setting the ref count to 0. This way the IPPair will be kept till
* cleanup */
IPPairUnlock(ipp);
return 0;
error:
SCFree(exp);
return -1;
}
/**
* Return Flow storage identifier corresponding to expectation data
*
* \return expectation data identifier
*/
int AppLayerExpectationGetDataId(void)
{
return g_expectation_data_id;
}
/**
*
* Remove expectation and return next one
*
* \param ipp an IPPair
* \param pexp pointer to previous Expectation
* \param exp pointer to Expectation to remove
* \param lexp pointer to head of Expectation ist
* \return expectation
*/
static Expectation * RemoveExpectationAndGetNext(IPPair *ipp,
Expectation *pexp, Expectation *exp,
Expectation *lexp)
{
/* we remove the object so we get ref count down by 1 to remove reference
* hold by the expectation
*/
(void) IPPairDecrUsecnt(ipp);
SC_ATOMIC_SUB(expectation_count, 1);
if (pexp == NULL) {
IPPairSetStorageById(ipp, g_expectation_id, lexp);
} else {
pexp->next = lexp;
}
if (exp->data) {
ExpectationData *expdata = (ExpectationData *)exp->data;
if (expdata->DFree) {
expdata->DFree(exp->data);
} else {
SCFree(exp->data);
}
}
SCFree(exp);
return lexp;
}
/**
* Function doing a lookup in expectation list and updating Flow if needed.
*
* This function lookup for a existing expectation that could match the Flow.
* If found and if the expectation contains data it store the data in the
* expectation storage of the Flow.
*
* \return an AppProto value if found
* \return ALPROTO_UNKNOWN if not found
*/
AppProto AppLayerExpectationHandle(Flow *f, int direction)
{
AppProto alproto = ALPROTO_UNKNOWN;
IPPair *ipp = NULL;
Expectation *lexp = NULL;
Expectation *pexp = NULL;
int x = SC_ATOMIC_GET(expectation_count);
if (x == 0) {
return ALPROTO_UNKNOWN;
}
/* Call will take reference of the ip pair in 'ipp' */
Expectation *exp = AppLayerExpectationLookup(f, direction, &ipp);
if (exp == NULL)
goto out;
time_t ctime = f->lastts.tv_sec;
pexp = NULL;
while (exp) {
lexp = exp->next;
if ( (exp->direction & direction) &&
((exp->sp == 0) || (exp->sp == f->sp)) &&
((exp->dp == 0) || (exp->dp == f->dp))) {
alproto = exp->alproto;
f->alproto_ts = alproto;
f->alproto_tc = alproto;
void *fdata = FlowGetStorageById(f, g_expectation_id);
if (fdata) {
/* We already have an expectation so let's clean this one */
ExpectationDataFree(exp->data);
} else {
/* Transfer ownership of Expectation data to the Flow */
if (FlowSetStorageById(f, g_expectation_data_id, exp->data) != 0) {
SCLogDebug("Unable to set flow storage");
}
}
exp->data = NULL;
exp = RemoveExpectationAndGetNext(ipp, pexp, exp, lexp);
continue;
}
/* Cleaning remove old entries */
if (exp && (ctime > exp->ts.tv_sec + EXPECTATION_TIMEOUT)) {
exp = RemoveExpectationAndGetNext(ipp, pexp, exp, lexp);
continue;
}
pexp = exp;
exp = lexp;
}
out:
if (ipp)
IPPairRelease(ipp);
return alproto;
}
/**
* @}
*/