00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 #ifdef GIDS
00033 #ifndef IPFW
00034
00035 #include <sys/types.h>
00036 #include <stdlib.h>
00037 #include <ctype.h>
00038
00039 #include "rules.h"
00040 #include "decode.h"
00041 #include "plugbase.h"
00042 #include "parser.h"
00043 #include "debug.h"
00044 #include "util.h"
00045 #include "mstring.h"
00046 #include "plugin_enum.h"
00047 #include "spp_bait_and_switch.h"
00048 #include "sp_bait_and_switch.h"
00049 #include <sys/socket.h>
00050 #include <netinet/in.h>
00051 #include <arpa/inet.h>
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 void BandSpInit(char *, OptTreeNode *, int);
00063 static void BandSpRuleParseFunction(char *, OptTreeNode *, BandSp *);
00064 static int BandSpFunction(Packet *, struct _OptTreeNode *,
00065 OptFpList *);
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080 void SetupBandSp()
00081 {
00082
00083 RegisterPlugin("bait-and-switch", BandSpInit);
00084
00085 DEBUG_WRAP(DebugMessage(DEBUG_PLUGIN,"Plugin: BandSp Setup\n"););
00086 }
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103 void BandSpInit(char *data, OptTreeNode *otn, int protocol)
00104 {
00105 BandSp *bandsp_d;
00106 OptFpList *ofl;
00107
00108 if(!BaitAndSwitchIsRunning())
00109 {
00110 FatalError("dude, you can't have a bait-and-switch plugin without the bait-and-switch preproc\n");
00111 }
00112 bandsp_d = (BandSp *) SnortAlloc(sizeof(BandSp));
00113 BandSpRuleParseFunction(data, otn, bandsp_d);
00114
00115 ofl = AddOptFuncToList(BandSpFunction, otn);
00116 ofl->context = (void *) bandsp_d;
00117 otn->ds_list[PLUGIN_BANDSP]=(BandSp *)bandsp_d;
00118 }
00119
00120
00121
00122
00123
00124
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136 static void BandSpRuleParseFunction(char *data, OptTreeNode *otn, BandSp *bs)
00137 {
00138 char **toks;
00139 int numToks;
00140 char *direction;
00141
00142 toks = mSplit(data, ",", 3, &numToks, 0);
00143
00144 if(numToks > 3)
00145 FatalError("ERROR %s (%d): Bad arguments to bait-and-switch: %s\n", file_name,
00146 file_line, data);
00147
00148 if(isdigit((char)toks[0][1]))
00149 {
00150 bs->bands_timeout = atoi(toks[0]);
00151 }
00152 else
00153 {
00154 FatalError("ERROR %s (%d): Bad arguments to bait-and-switch: %s\n", file_name,
00155 file_line, data);
00156 }
00157
00158
00159 if(numToks > 2)
00160 {
00161 direction = toks[1];
00162
00163 while(isspace((int)*direction)) {direction++;}
00164
00165 if(!strcasecmp(direction, "src"))
00166 {
00167 bs->bands_direction = 0;
00168 }
00169 else if(!strcasecmp(direction, "dst"))
00170 {
00171 bs->bands_direction = 1;
00172 }
00173 else
00174 {
00175
00176 FatalError("%s(%d):we need a direction either src or dst%s\n",file_name,file_line,toks[1]);
00177 }
00178 }
00179 if(numToks > 1)
00180 {
00181
00182 bs->hpotaddr = (u_int32_t)(inet_addr(toks[2]));
00183
00184 }
00185 else
00186 {
00187
00188 FatalError("%s(%d):we need a direction either src or dst%s\n",file_name,file_line,toks[1]);
00189 }
00190
00191 mSplitFree(&toks, numToks);
00192 }
00193
00194
00195
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210 static int BandSpFunction(Packet *p, struct _OptTreeNode *otn, OptFpList *fp_list)
00211 {
00212
00213 return 1;
00214 }
00215
00216 #endif
00217 #endif