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 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
|
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
/*
* Copyright (c) 1990-1997 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the Computer Systems
* Engineering Group at Lawrence Berkeley Laboratory.
* 4. Neither the name of the University nor of the Laboratory may be used
* to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*
* Here is one set of parameters from one of Sally's simulations
* (this is from tcpsim, the older simulator):
*
* ed [ q_weight=0.002 thresh=5 linterm=30 maxthresh=15
* mean_pktsize=500 dropmech=random-drop queue-size=60
* plot-file=none bytes=false doubleq=false dqthresh=50
* wait=true ]
*
* 1/"linterm" is the max probability of dropping a packet.
* There are different options that make the code
* more messy that it would otherwise be. For example,
* "doubleq" and "dqthresh" are for a queue that gives priority to
* small (control) packets,
* "bytes" indicates whether the queue should be measured in bytes
* or in packets,
* "dropmech" indicates whether the drop function should be random-drop
* or drop-tail when/if the queue overflows, and
* the commented-out Holt-Winters method for computing the average queue
* size can be ignored.
* "wait" indicates whether the gateway should wait between dropping
* packets.
*/
/* Bugreport about rio.cc:
*
* David Ros and LuiWei have both reported, in June 2002 and in May 2001,
* that rio.cc has a bug in that RIO does not calculate a new average
* queue length when an OUT packet arrives.
*
* This bug has not been checked or repaired.
*/
#ifndef lint
static const char rcsid[] =
"@(#) $Header: /cvsroot/nsnam/ns-2/queue/rio.cc,v 1.14 2009/12/30 22:06:34 tom_henderson Exp $ (LBL)";
#endif
#include "rio.h"
#include "tclcl.h"
#include "packet.h"
#include "random.h"
#include "flags.h"
#include "delay.h"
#include "template.h"
#include "red.h"
static class RIOClass : public TclClass {
public:
RIOClass() : TclClass("Queue/RED/RIO") {}
TclObject* create(int, const char*const*) {
return (new RIOQueue);
}
} class_rio;
RIOQueue::RIOQueue() : in_len_(0), in_bcount_(0), in_idle_(1)
{
bind("in_thresh_", &edp_in_.th_min); // In_minthresh
bind("in_maxthresh_", &edp_in_.th_max); // In_maxthresh
bind("out_thresh_", &edp_out_.th_min); // Out_minthresh
bind("out_maxthresh_", &edp_out_.th_max); // Out_maxthresh
bind("in_linterm_", &edp_in_.max_p_inv);
/* added by ratul- allows a finer control over the policy.
gentle automatically means both the below are gentle */
bind_bool("in_gentle_",&edp_in_.gentle); // drop prob. slowly
bind_bool("out_gentle_",&edp_out_.gentle); // when ave queue
// exceeds maxthresh
bind("in_ave_", &edv_in_.v_ave); // In average queue sie
bind("out_ave_", &edv_out_.v_ave); // Out average queue sie
bind("in_prob1_", &edv_in_.v_prob1); // In dropping probability
bind("out_prob1_", &edv_out_.v_prob1); // Out dropping probability
bind("priority_method_", &priority_method_); // method for setting
// priority
// q_ = new PacketQueue(); // underlying queue
// pq_ = q_;
// reset();
}
void RIOQueue::reset()
{
/*
* If queue is measured in bytes, scale min/max thresh
* by the size of an average packet (which is specified by user).
*/
if (qib_) {
edp_in_.th_min *= edp_.mean_pktsize;
edp_in_.th_max *= edp_.mean_pktsize;
edp_out_.th_min *= edp_.mean_pktsize;
edp_out_.th_max *= edp_.mean_pktsize;
}
//modified - ratul
if (edp_.gentle) {
edp_in_.gentle = true;
edp_out_.gentle = true;
}
if (edp_in_.gentle) {
edv_in_.v_c = ( 1.0 - 1 / edp_in_.max_p_inv ) / edp_in_.th_max;
edv_in_.v_d = 2 / edp_in_.max_p_inv - 1.0;
}
if (edp_out_.gentle) {
edv_out_.v_c = ( 1.0 - 1 / edp_.max_p_inv ) / edp_out_.th_max;
edv_out_.v_d = 2 / edp_.max_p_inv - 1.0;
}
/* Added by Wenjia */
edv_in_.v_ave = 0.0;
edv_in_.v_slope = 0.0;
edv_in_.drops = 0;
edv_in_.count = 0;
edv_in_.count_bytes = 0;
edv_in_.old = 0;
edv_in_.v_a = 1 / (edp_in_.th_max - edp_in_.th_min);
edv_in_.v_b = - edp_in_.th_min / (edp_in_.th_max - edp_in_.th_min);
/* Added by Wenjia */
edv_out_.v_ave = 0.0;
edv_out_.v_slope = 0.0;
edv_out_.drops = 0;
edv_out_.count = 0;
edv_out_.count_bytes = 0;
edv_out_.old = 0;
edv_out_.v_a = 1 / (edp_out_.th_max - edp_out_.th_min);
edv_out_.v_b = - edp_out_.th_min / (edp_out_.th_max - edp_out_.th_min);
in_idle_ = 1;
if (&Scheduler::instance() == NULL) {
in_idletime_ = 0.0; /* sched not instantiated yet */
}
REDQueue::reset();
}
/*
* Return the next packet in the queue for transmission.
*/
Packet* RIOQueue::deque()
{
Packet *p;
p = REDQueue::deque();
// printf( "qlen %d %d\n", q_->length(), length());
if (p != 0) {
hdr_flags* hf = hdr_flags::access(p);
if (hf->pri_) {
/* Regular In packets */
in_idle_ = 0;
in_bcount_ -= hdr_cmn::access(p)->size();
--in_len_;
}
} else {
in_idle_ = 1;
}
return (p);
}
/*
* should the packet be dropped/marked due to a probabilistic drop?
*/
int
RIOQueue::drop_in_early(Packet* pkt)
{
hdr_cmn* ch = hdr_cmn::access(pkt);
edv_in_.v_prob1 = REDQueue::calculate_p(edv_in_.v_ave, edp_in_.th_max,
edp_in_.gentle, edv_in_.v_a, edv_in_.v_b, edv_in_.v_c,
edv_in_.v_d, edp_in_.max_p_inv);
edv_in_.v_prob = REDQueue::modify_p(edv_in_.v_prob1, edv_in_.count,
edv_in_.count_bytes, edp_.bytes, edp_.mean_pktsize, edp_.wait,
ch->size());
// drop probability is computed, pick random number and act
double u = Random::uniform();
if (u <= edv_in_.v_prob) {
// DROP or MARK
edv_in_.count = 0;
edv_in_.count_bytes = 0;
hdr_flags* hf = hdr_flags::access(pickPacketForECN(pkt));
if (edp_.setbit && hf->ect() &&
edv_in_.v_ave < edp_in_.th_max) {
hf->ce() = 1; // mark Congestion Experienced bit
return (0); // no drop
} else {
return (1); // drop
}
}
return (0); // no DROP/mark
}
/*
* Obsolete note from original version of code:
* The rationale here is that if the edv_in_.v_ave is close
* to the edp_in_.th_max, (we are about to turn over to the
* congestion control phase, presumably because of Out packets),
* then we should drop Out packets more severely.
*/
int RIOQueue::drop_out_early(Packet* pkt)
{
hdr_cmn* ch = hdr_cmn::access(pkt);
edv_out_.v_prob1 = REDQueue::calculate_p(edv_.v_ave, edp_out_.th_max,
edp_out_.gentle, edv_out_.v_a, edv_out_.v_b, edv_out_.v_c,
edv_out_.v_d, edp_.max_p_inv);
edv_out_.v_prob = REDQueue::modify_p(edv_out_.v_prob1, edv_out_.count,
edv_out_.count_bytes, edp_.bytes, edp_.mean_pktsize, edp_.wait,
ch->size());
// drop probability is computed, pick random number and act
double u = Random::uniform();
if (u <= edv_out_.v_prob) {
// DROP or MARK
edv_out_.count = 0;
edv_out_.count_bytes = 0;
hdr_flags* hf = hdr_flags::access(pickPacketForECN(pkt));
if (edp_.setbit && hf->ecn_capable_ &&
edv_.v_ave < edp_out_.th_max) {
hf->ce() = 1; // mark Congestion Experienced bit
return (0); // no drop
} else {
return (1);
}
}
return (0); // no DROP/mark
}
/*
* Receive a new packet arriving at the queue.
* The average queue size is computed. If the average size
* exceeds the threshold, then the dropping probability is computed,
* and the newly-arriving packet is dropped with that probability.
* The packet is also dropped if the maximum queue size is exceeded.
*
* "Forced" drops mean a packet arrived when the underlying queue was
* full or when the average q size exceeded maxthresh.
* "Unforced" means a RED random drop.
*
* For forced drops, either the arriving packet is dropped or one in the
* queue is dropped, depending on the setting of drop_tail_.
* For unforced drops, the arriving packet is always the victim.
*/
#define DTYPE_NONE 0 /* ok, no drop */
#define DTYPE_FORCED 1 /* a "forced" drop */
#define DTYPE_UNFORCED 2 /* an "unforced" (random) drop */
void RIOQueue::enque(Packet* pkt)
{
/* Duplicate the RED algorithm to carry out a separate
* calculation for Out packets -- Wenjia */
hdr_flags* hf = hdr_flags::access(pkt);
hdr_ip* iph = hdr_ip::access(pkt);
if (priority_method_ == 1) {
hf->pri_ = iph->flowid();
}
//printf("RIOQueue::enque queue %d queue-length %d priority %d\n",
// q_, q_->length(), hf->pri_);
if (hf->pri_) { /* Regular In packets */
/*
* if we were idle, we pretend that m packets arrived during
* the idle period. m is set to be the ptc times the amount
* of time we've been idle for
*/
int m = 0;
int m_in = 0;
double now = Scheduler::instance().clock();
/* To account for the period when the queue was empty. */
if (in_idle_) {
in_idle_ = 0;
m_in = int(edp_.ptc * (now - idletime_));
}
if (idle_) {
idle_ = 0;
m = int(edp_.ptc * (now - idletime_));
}
/*
* Run the estimator with either 1 new packet arrival, or with
* the scaled version above [scaled by m due to idle time]
*/
// printf( "qlen %d\n", q_->length());
edv_.v_ave = REDQueue::estimator(qib_ ? q_->byteLength() : q_->length(), m + 1,
edv_.v_ave, edp_.q_w);
edv_in_.v_ave = REDQueue::estimator(qib_ ? in_bcount_ : in_len_,
m_in + 1, edv_in_.v_ave, edp_.q_w);
/*
* count and count_bytes keeps a tally of arriving traffic
* that has not been dropped (i.e. how long, in terms of traffic,
* it has been since the last early drop)
*/
hdr_cmn* ch = hdr_cmn::access(pkt);
++edv_.count;
edv_.count_bytes += ch->size();
/* added by Yun */
++edv_in_.count;
edv_in_.count_bytes += ch->size();
/*
* DROP LOGIC:
* q = current q size, ~q = averaged q size
* 1> if ~q > maxthresh, this is a FORCED drop
* 2> if minthresh < ~q < maxthresh, this may be an UNFORCED drop
* 3> if (q+1) > hard q limit, this is a FORCED drop
*/
// register double qavg = edv_.v_ave;
register double in_qavg = edv_in_.v_ave;
int droptype = DTYPE_NONE;
int qlen = qib_ ? q_->byteLength() : q_->length();
int in_qlen = qib_ ? in_bcount_ : in_len_;
int qlim = qib_ ? (qlim_ * edp_.mean_pktsize) : qlim_;
curq_ = qlen; // helps to trace queue during arrival, if enabled
if (in_qavg >= edp_in_.th_min && in_qlen > 1) {
if ((!edp_in_.gentle && in_qavg >= edp_in_.th_max) ||
(edp_in_.gentle && in_qavg >= 2 * edp_in_.th_max)) {
droptype = DTYPE_FORCED;
} else if (edv_in_.old == 0) {
/*
* The average queue size has just crossed the
* threshold from below to above "minthresh", or
* from above "minthresh" with an empty queue to
* above "minthresh" with a nonempty queue.
*/
edv_in_.count = 1;
edv_in_.count_bytes = ch->size();
edv_in_.old = 1;
} else if (drop_in_early(pkt)) {
droptype = DTYPE_UNFORCED;
}
} else {
/* No packets are being dropped. */
edv_in_.v_prob = 0.0;
edv_in_.old = 0;
}
if (qlen >= qlim) {
// see if we've exceeded the queue size
droptype = DTYPE_FORCED;
}
if (droptype == DTYPE_UNFORCED) {
/* pick packet for ECN, which is dropping in this case */
Packet *pkt_to_drop = pickPacketForECN(pkt);
/*
* If the packet picked is different that the one that just
* arrived, add it to the queue and remove the chosen packet.
*/
if (pkt_to_drop != pkt) {
q_->enque(pkt);
// printf( "in: qlen %d %d\n", q_->length(), length());
++in_len_;
in_bcount_ += ch->size();
q_->remove(pkt_to_drop);
// printf("remove qlen %d %d\n",q_->length(),length());
if (hdr_flags::access(pkt_to_drop)->pri_)
{
in_bcount_ -=
hdr_cmn::access(pkt_to_drop)->size();
--in_len_;
}
pkt = pkt_to_drop; /* ok 'cause pkt not needed anymore */
}
// deliver to special "edrop" target, if defined
if (de_drop_ != NULL)
de_drop_->recv(pkt);
else
drop(pkt);
} else {
/* forced drop, or not a drop: first enqueue pkt */
q_->enque(pkt);
// printf( "in: qlen %d %d\n", q_->length(), length());
++in_len_;
in_bcount_ += ch->size();
/* drop a packet if we were told to */
if (droptype == DTYPE_FORCED) {
/* drop random victim or last one */
pkt = pickPacketToDrop();
q_->remove(pkt);
// printf("remove qlen %d %d\n",q_->length(),length());
if (hdr_flags::access(pkt)->pri_) {
in_bcount_ -= hdr_cmn::access(pkt)->size();
--in_len_;
}
drop(pkt);
if (!ns1_compat_) {
// bug-fix from Philip Liu, <phill@ece.ubc.ca>
edv_.count = 0;
edv_.count_bytes = 0;
edv_in_.count = 0;
edv_in_.count_bytes = 0;
}
}
}
}
else { /* Out packets and default regular packets */
/*
* count and count_bytes keeps a tally of arriving traffic
* that has not been dropped (i.e. how long, in terms of traffic,
* it has been since the last early drop)
*/
hdr_cmn* ch = hdr_cmn::access(pkt);
++edv_.count;
edv_.count_bytes += ch->size();
/* added by Yun */
++edv_out_.count;
edv_out_.count_bytes += ch->size();
/*
* DROP LOGIC:
* q = current q size, ~q = averaged q size
* 1> if ~q > maxthresh, this is a FORCED drop
* 2> if minthresh < ~q < maxthresh, this may be an UNFORCED drop
* 3> if (q+1) > hard q limit, this is a FORCED drop
*/
/* if the average queue is below the out_th_min
* then we have no need to worry.
*/
register double qavg = edv_.v_ave;
// register double in_qavg = edv_in_.v_ave;
int droptype = DTYPE_NONE;
int qlen = qib_ ? q_->byteLength() : q_->length();
/* added by Yun, seems not useful */
// int out_qlen = qib_ ? out_bcount_ : q_->out_length();
int qlim = qib_ ? (qlim_ * edp_.mean_pktsize) : qlim_;
curq_ = qlen; // helps to trace queue during arrival, if enabled
if (qavg >= edp_out_.th_min && qlen > 1) {
if ((!edp_out_.gentle && qavg >= edp_out_.th_max) ||
(edp_out_.gentle && qavg >= 2 * edp_out_.th_max)) {
droptype = DTYPE_FORCED; // ? not sure, Yun
} else if (edv_out_.old == 0) {
/*
* The average queue size has just crossed the
* threshold from below to above "minthresh", or
* from above "minthresh" with an empty queue to
* above "minthresh" with a nonempty queue.
*/
edv_out_.count = 1;
edv_out_.count_bytes = ch->size();
edv_out_.old = 1;
} else if (drop_out_early(pkt)) {
droptype = DTYPE_UNFORCED; // ? not sure, Yun
}
} else {
edv_out_.v_prob = 0.0;
edv_out_.old = 0; // explain
}
if (qlen >= qlim) {
// see if we've exceeded the queue size
droptype = DTYPE_FORCED; //need more consideration, Yun
}
if (droptype == DTYPE_UNFORCED) {
/* pick packet for ECN, which is dropping in this case */
Packet *pkt_to_drop = pickPacketForECN(pkt);
/*
* If the packet picked is different that the one that just
* arrived, add it to the queue and remove the chosen packet.
*/
if (pkt_to_drop != pkt) {
q_->enque(pkt);
//printf("out: qlen %d %d\n", q_->length(), length());
q_->remove(pkt_to_drop);
//printf("remove qlen %d %d\n",q_->length(),length());
if (hdr_flags::access(pkt_to_drop)->pri_)
{
in_bcount_ -=hdr_cmn::access(pkt_to_drop)->size();
--in_len_;
}
pkt = pkt_to_drop;/* ok cause pkt not needed anymore */
}
// deliver to special "edrop" target, if defined
if (de_drop_ != NULL)
de_drop_->recv(pkt);
else
drop(pkt);
} else {
/* forced drop, or not a drop: first enqueue pkt */
q_->enque(pkt);
//printf("out: qlen %d %d\n", q_->length(), length());
/* drop a packet if we were told to */
if (droptype == DTYPE_FORCED) {
/* drop random victim or last one */
pkt = pickPacketToDrop();
q_->remove(pkt);
//printf("remove qlen %d %d\n",q_->length(),length());
if (hdr_flags::access(pkt)->pri_)
{
in_bcount_ -= hdr_cmn::access(pkt)->size();
--in_len_;
}
drop(pkt);
}
}
}
return;
}
/*
* Routine called by TracedVar facility when variables change values.
* Currently used to trace values of avg queue size, drop probability,
* and the instantaneous queue size seen by arriving packets.
* Note that the tracing of each var must be enabled in tcl to work.
*/
void
RIOQueue::trace(TracedVar* v)
{
char wrk[500];
const char *p;
if (((p = strstr(v->name(), "ave")) == NULL) &&
((p = strstr(v->name(), "in_ave")) == NULL) &&
((p = strstr(v->name(), "out_ave")) == NULL) &&
((p = strstr(v->name(), "prob")) == NULL) &&
((p = strstr(v->name(), "in_prob")) == NULL) &&
((p = strstr(v->name(), "out_prob")) == NULL) &&
((p = strstr(v->name(), "curq")) == NULL)) {
fprintf(stderr, "RIO:unknown trace var %s\n",
v->name());
return;
}
if (tchan_) {
int n;
double t = Scheduler::instance().clock();
// XXX: be compatible with nsv1 RED trace entries
if (*p == 'c') {
sprintf(wrk, "Q %g %d", t, int(*((TracedInt*) v)));
} else {
sprintf(wrk, "%c %g %g", *p, t,
double(*((TracedDouble*) v)));
}
n = strlen(wrk);
wrk[n] = '\n';
wrk[n+1] = 0;
(void)Tcl_Write(tchan_, wrk, n+1);
}
return;
}
/* for debugging help */
void RIOQueue::print_edp()
{
REDQueue::print_edp();
printf("in_minth: %f, in_maxth: %f\n", edp_in_.th_min, edp_in_.th_max);
printf("out_minth: %f, out_maxth: %f\n",
edp_out_.th_min, edp_out_.th_max);
printf("qlim: %d, in_idletime: %f\n", qlim_, in_idletime_);
printf("=========\n");
}
void RIOQueue::print_edv()
{
REDQueue::print_edv();
printf("in_v_a: %f, in_v_b: %f\n", edv_in_.v_a, edv_in_.v_b);
printf("out_v_a: %f, out_v_b: %f\n", edv_out_.v_a, edv_out_.v_b);
}
|