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 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
|
/*
* ew.h
* Copyright (C) 1999 by the University of Southern California
* $Id: ew.h,v 1.6 2005/08/25 18:58:03 johnh Exp $
*
* 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.
*
* 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.
*
*
* The copyright of this module includes the following
* linking-with-specific-other-licenses addition:
*
* In addition, as a special exception, the copyright holders of
* this module give you permission to combine (via static or
* dynamic linking) this module with free software programs or
* libraries that are released under the GNU LGPL and with code
* included in the standard release of ns-2 under the Apache 2.0
* license or under otherwise-compatible licenses with advertising
* requirements (or modified versions of such code, with unchanged
* license). You may copy and distribute such a system following the
* terms of the GNU GPL for this module and the licenses of the
* other code concerned, provided that you include the source code of
* that other code when and as the GNU GPL requires distribution of
* source code.
*
* Note that people who make modified versions of this module
* are not obligated to grant this special exception for their
* modified versions; it is their choice whether to do so. The GNU
* General Public License gives permission to release a modified
* version without this exception; this exception also makes it
* possible to release a modified version which carries forward this
* exception.
*
*/
//
// ew.h (Network early warning system)
// by Xuan Chen (xuanc@isi.edu), USC/ISI
#ifndef EW_H
#define EW_H
#include "packet.h"
#include "dsPolicy.h"
#define EW_MAX_WIN 8
#define EW_SWIN_SIZE 4
// tolerance of changes for detection and release
#define EW_DETECT_RANGE 0.1
#define EW_RELEASE_RANGE 0.1
// the max and min dropping probability
#define EW_MIN_DROP_P 0.1
#define EW_MAX_DROP_P 0.9
#define EW_FLOW_TIME_OUT 10.0
#define EW_SAMPLE_INTERVAL 240
#define EW_DETECT_INTERVAL 60
#define EW_MIN_SAMPLE_INTERVAL 60
#define EW_MIN_DETECT_INTERVAL 15
// HLF's alpha
#define ALPHA 0.875
#define PKT_ARRIVAL 1001
#define PKT_DEPT 1002
#define PKT_DROP 1003
#define EW_DT_INV 240
#define EW_DB_INV EW_DT_INV
#define EW_UNCHANGE -1
// The default tocken-bucket size and tocken rate (in packet/byte)
#define DEFAULT_TB_SIZE 50
#define DEFAULT_TB_RATE_P 5
#define DEFAULT_TB_RATE_B 1000
// EW
// Record the number of packet arrived, departured, and dropped
struct PktRec {
int arrival, dept, drop;
};
// Record the detection result
struct AListEntry {
int src_id;
int dst_id;
int f_id;
double last_update;
double avg_rate;
double t_front;
double win_length;
struct AListEntry *next;
};
// List of detection result for aggregates
struct AList {
struct AListEntry *head, *tail;
int count;
};
// Record the request ratio
struct SWinEntry {
float weight;
int rate;
struct SWinEntry *next;
};
// Data structure for sliding window
struct SWin {
// counter of entries in the sliding window
int count;
// current running average
int ravg;
// List of SWin Entries
struct SWinEntry *head;
struct SWinEntry *tail;
};
// Data structure for High-low filter
// high(t) = alpha * high(t-1) + (1 - alpha) * o(t)
// low(t) = (1 - alpha) * low(t-1) + alpha * o(t)
class HLF {
public:
HLF();
// configure the HLF
void setAlpha(double);
void reset(double value);
void reset();
// Get the output of HLF
double getHigh();
double getLow();
// update high-low filter
void update(double);
private:
double alpha;
// the estimated value for the high-pass/low-pass filters
double high, low;
};
// Definition for a token-bucket rate limitor
class TBrateLimitor {
public:
TBrateLimitor();
TBrateLimitor(double);
// set the rate
void setRate(double);
// adjust the rate
void adjustRate();
// parameters for a token bucket
// the size of the token bucket (in bytes or packets)
double bucket_size;
// number of tokens in the bucket (in bytes or packets)
double token_num;
// the rate to generate tokens
double token_rate, ini_token_rate, last_token_rate;
// last time when updating states
double last_time;
// in packet or byte mode (packet mode, by default)
int pkt_mode;
int run(double);
int run(double, double);
// states to determine the direction of increasing/decreasing rate
int n_score, p_score;
// High-low filter
HLF hlf;
// adjust the score for increasing or decreasing scores
void resetScore();
void adjustScore(int);
};
// Definition for the EW detector
class EWdetector {
public:
EWdetector();
virtual ~EWdetector() {}
// Enable detecting and debugging rate (eg: pkt or bit rate)
void setDb(int);
void setDt(int);
void setLink(int, int);
// set and clean alarm
void setAlarm();
void resetAlarm();
int testAlarm();
void setChange();
void resetChange();
//private:
// The nodes connected by EW
int ew_src, ew_dst;
// The current time
double now;
// The timer for detection and debugging
int db_timer, dt_timer;
// Detecting interval
int dt_inv, db_inv;
// Current rate and long term average
double cur_rate, avg_rate;
// The alarm flag and proposed dropping probability
int alarm;
int change;
// High-low filter
HLF hlf;
// Detecting engine
void run(Packet *);
// Conduct measurement
virtual void measure(Packet *) = 0;
// Detect changes
virtual void detect() = 0;
// Update current measurement
virtual void updateCur() = 0;
// Update long term average
void updateAvg();
// Trace function
virtual void trace() = 0;
};
class EWdetectorP : public EWdetector {
public:
EWdetectorP();
virtual ~EWdetectorP();
// update packet stats
void updateStats(int);
// get the current request rate
double getRate();
private:
// keep the packet rate stats
PktRec cur_p, last_p, last_p_db;
// Conduct measurement
void measure(Packet *);
// Detect changes
void detect();
// Update current measurement
void updateCur();
// Update long term average
void updateAvg();
// Trace function
void trace();
};
// EW
class EWdetectorB : public EWdetector {
public:
EWdetectorB();
virtual ~EWdetectorB();
// Initialize EW
void init(int);
// Check if the packet belongs to existing flow
int exFlow(Packet *);
private:
// Adjustor
float adjustor;
float drop_p;
// keep the count of flows for ARR
int arr_count;
// List to keep the detection results
struct AList alist;
// The sliding window for running average on the aggregated response rate
struct SWin swin;
// Conduct measurement
void measure(Packet *);
// Update current measurement
void updateCur();
// Update long term average
void updateAvg();
// Change detection:
// detect the traffic change in aggregated response rate
void detect();
// Measurement:
// Conduct the measurement and update AList
void updateAList(Packet *);
// Find the max value in AList
struct AListEntry *getMaxAList();
// Sort AList based on the avg_rate
void sortAList();
// Timeout AList entries
void timeoutAList();
// Find the matched AList entry
struct AListEntry * searchAList(int, int, int);
// Add new entry to AList
struct AListEntry * newAListEntry(int, int, int);
// Get the median of AList
int getMedianAList(int, int);
// Get the rate given the index in the list
int getRateAList(int);
// Reset AList
void resetAList();
// Print one entry in AList
void printAListEntry(struct AListEntry *, int);
// output contents in AList
void printAList();
// Calculate the aggragated response rate for high-bandwidth flows
int computeARR();
// Determine the dropping probability based on current measurement
void computeDropP();
// Increase/decrease the sample interval to adjust the detection latency.
void decSInv();
void incSInv();
// Trace bit rate (resp rate)
void trace();
// update swin with the latest measurement for one HTab entry.
void updateSWin(int);
// compute the running average on the sliding window
void ravgSWin();
// Reset SWin
void resetSWin();
// output contents in SWin
void printSWin();
// Print one entry in SWin
void printSWinEntry(struct SWinEntry *, int);
};
// Eearly warning policy:
// basically queueing stuffs
class EWPolicy : public Policy {
public:
EWPolicy();
~EWPolicy();
void init(int, int, int);
// Metering and policing methods:
void applyMeter(policyTableEntry *policy, Packet *pkt);
int applyPolicer(policyTableEntry *policy, policerTableEntry *policer, Packet *pkt);
// make packet drop decisions
int dropPacket(Packet *);
// detect if there is an alarm triggered
void detect(Packet *pkt);
// Enable detecting and debugging packet rate (eg: req rate)
void detectPr();
void detectPr(int);
void detectPr(int, int);
// Enable detecting and debugging bit rate (eg: resp rate)
void detectBr();
void detectBr(int);
void detectBr(int, int);
// Rate limitor: packet rate
void limitPr();
void limitPr(double);
// Rate limitor: bit rate
void limitBr();
void limitBr(double);
// couple EW detector
void coupleEW(EWPolicy *);
void coupleEW(EWPolicy *, double);
//protected:
EWdetectorB *ewB, *cewB;
EWdetectorP *ewP, *cewP;
TBrateLimitor *rlP, *rlB;
private:
// The current time
double now;
// indicator for detecting and debugging
int ew_adj, qsrc, qdst;
// rate limits
int max_p, max_b;
// ew alarm
int alarm, pre_alarm;
int change;
};
#endif
|