⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ftp_bounce_lookup.c

📁 入侵检测SNORT.最近更新的基于网络检测的IDS.希望能给大家带来方便.
💻 C
字号:
/* * ftp_bounce_lookup.c * * Copyright (C) 2004-2008 Sourcefire, Inc. * Steven A. Sturges <ssturges@sourcefire.com> * Daniel J. Roelker <droelker@sourcefire.com> * Marc A. Norton <mnorton@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 functions to access the BOUNCE_LOOKUP structure. * * We wrap the access to BOUNCE_LOOKUP so changing the lookup algorithms * are more modular and independent.  This is the only file that would need * to be changed to change the algorithmic lookup. * * NOTES: * - 16.09.04:  Initial Development.  SAS * */#include <stdlib.h>#include <stdio.h>#include <string.h>#include "ftpp_util_kmap.h"#include "ftpp_ui_config.h"#include "ftpp_return_codes.h"#include "snort_ftptelnet.h"/* * Function: ftp_bounce_lookup_init(BOUNCE_LOOKUP **BounceLookup) * * Purpose: Initialize the bounce_lookup structure. * *          We need to initialize the bounce_lookup structure for *          the FTP bounce configuration.  Don't want a NULL pointer *          flying around, when we have to look for allowable bounces. * * Arguments: BounceLookup      => pointer to the pointer of the bounce *                                 lookup structure. * * Returns: int => return code indicating error or success * */int ftp_bounce_lookup_init(BOUNCE_LOOKUP **BounceLookup){    KMAP *km = KMapNew((KMapUserFreeFunc)FTPTelnetCleanupFTPBounceTo);     *BounceLookup = km;    if(*BounceLookup == NULL)    {        return FTPP_MEM_ALLOC_FAIL;    }    km->nocase = 1;    return FTPP_SUCCESS;}/* * Function: ftp_bounce_lookup_cleanup(BOUNCE_LOOKUP **BounceLookup) * * Purpose: Free the bounce_lookup structure. *          We need to free the bounce_lookup structure. * * Arguments: BounceLookup  => pointer to the pointer of the bounce *                             lookup structure. * * Returns: int => return code indicating error or success * */int ftp_bounce_lookup_cleanup(BOUNCE_LOOKUP **BounceLookup){    KMAP *km;    if (BounceLookup == NULL)        return FTPP_INVALID_ARG;    km = *BounceLookup;    if (km)    {        KMapDelete(km);        *BounceLookup = NULL;    }    return FTPP_SUCCESS;}/* * Function: ftp_bounce_lookup_add(BOUNCE_LOOKUP *BounceLookup, *                                 char *ip, int len,  *                                 FTP_BOUNCE_TO *BounceTo) *  * Purpose: Add a bounce configuration to the list.  IP is stored *          in dot notation order.  When the lookup happens, we *          compare up to len bytes of the address. * * Arguments: BounceLookup => a pointer to the lookup structure *            IP           => the ftp bounce address *            len          => Length of the address  *            BounceTo     => a pointer to the bounce configuration structure * * Returns: int => return code indicating error or success * */int ftp_bounce_lookup_add(BOUNCE_LOOKUP *BounceLookup, char *ip, int len,                             FTP_BOUNCE_TO *BounceTo){    int iRet;    if(!BounceLookup || !BounceTo)    {        return FTPP_INVALID_ARG;    }    iRet = KMapAdd(BounceLookup, (void *)ip, len, (void *)BounceTo);    if (iRet)    {        /*         * This means the key has already been added.        */        if(iRet == 1)        {            return FTPP_NONFATAL_ERR;        }        else        {            return FTPP_MEM_ALLOC_FAIL;        }    }    return FTPP_SUCCESS;}/* * Function: ftp_bounce_lookup_find(BOUNCE_LOOKUP *BounceLookup, *                                  char *ip, int len, *                                  int *iError) * * Purpose: Find a bounce configuration given a IP. *          We look up a bounce configuration given an IP and *          return a pointer to that bounce configuration if found. * * Arguments: BounceLookup => a pointer to the lookup structure *            IP           => the ftp bounce address *            len          => Length of the address  *            iError       => a pointer to an error code * * Returns: int => return code indicating error or success * * Returns: FTP_BOUNCE_TO* => Pointer to bounce configuration structure *                            matching IP if found, NULL otherwise. * */FTP_BOUNCE_TO  *ftp_bounce_lookup_find(BOUNCE_LOOKUP *BounceLookup,                                        char *ip, int len, int *iError){    FTP_BOUNCE_TO *BounceTo = NULL;    if(!iError)    {        return NULL;    }    if(!BounceLookup)    {        *iError = FTPP_INVALID_ARG;        return NULL;    }    *iError = FTPP_SUCCESS;    BounceTo = (FTP_BOUNCE_TO *)KMapFind(BounceLookup,(void *)ip,len);    if (!BounceTo)    {        *iError = FTPP_NOT_FOUND;    }    return BounceTo;}/* * Function: ftp_bounce_lookup_first(BOUNCE_LOOKUP *BounceLookup, *                                   int *iError) * * Purpose: This lookups the first bounce configuration, so we can *          iterate through the configurations. * * Arguments: BounceLookup  => pointer to the bounce lookup structure *            iError        => pointer to the integer to set for errors * * Returns: FTP_BOUNCE_TO* => Pointer to first bounce configuration structure * */FTP_BOUNCE_TO *ftp_bounce_lookup_first(BOUNCE_LOOKUP *BounceLookup,                                            int *iError){    FTP_BOUNCE_TO *BounceTo;    if(!iError)    {        return NULL;    }    if(!BounceLookup)    {        *iError = FTPP_INVALID_ARG;        return NULL;    }    *iError = FTPP_SUCCESS;    BounceTo = (FTP_BOUNCE_TO *)KMapFindFirst(BounceLookup);    if (!BounceTo)    {        *iError = FTPP_NOT_FOUND;    }    return BounceTo;}/* * Function: ftp_bounce_lookup_next(BOUNCE_LOOKUP *BounceLookup, *                                  int *iError) * * Iterates to the next configuration, like a list it just returns * the next config in the config list. * * Purpose: This lookups the next bounce configuration, so we can *          iterate through the configurations. * * Arguments: BounceLookup  => pointer to the bounce lookup structure *            iError        => pointer to the integer to set for errors * * Returns: FTP_BOUNCE_TO*  => Pointer to next bounce configuration structure * */FTP_BOUNCE_TO *ftp_bounce_lookup_next(BOUNCE_LOOKUP *BounceLookup,                                           int *iError){    FTP_BOUNCE_TO *BounceTo;    if(!iError)    {        return NULL;    }    if(!BounceLookup)    {        *iError = FTPP_INVALID_ARG;        return NULL;    }    *iError = FTPP_SUCCESS;    BounceTo = (FTP_BOUNCE_TO *)KMapFindNext(BounceLookup);    if (!BounceTo)    {        *iError = FTPP_NOT_FOUND;    }    return BounceTo;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -