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
|
/* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*-
*
* Copyright (c) Xerox Corporation 1997. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2 of the License, or (at your
* option) any later version.
*
* 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.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
* Linking this file statically or dynamically with other modules is making
* a combined work based on this file. Thus, the terms and conditions of
* the GNU General Public License cover the whole combination.
*
* In addition, as a special exception, the copyright holders of this file
* give you permission to combine this file 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
* file 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 file 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.
*
* This file contributed by Sandeep Bajaj <bajaj@parc.xerox.com>, Mar 1997.
*
* $Header: /cvsroot/nsnam/ns-2/queue/drr.cc,v 1.12 2011/10/02 22:32:34 tom_henderson Exp $
*/
#ifndef lint
static const char rcsid[] =
"@(#) $Header: /cvsroot/nsnam/ns-2/queue/drr.cc,v 1.12 2011/10/02 22:32:34 tom_henderson Exp $ (Xerox)";
#endif
#include "config.h" // for string.h
#include <stdlib.h>
#include "queue.h"
class PacketDRR;
class DRR;
class PacketDRR : public PacketQueue {
PacketDRR(): pkts(0),src(-1),bcount(0),prev(0),next(0),deficitCounter(0),turn(0) {}
friend class DRR;
protected :
int pkts;
int src; //to detect collisions keep track of actual src address
int bcount; //count of bytes in each flow to find the max flow;
PacketDRR *prev;
PacketDRR *next;
int deficitCounter;
int turn;
inline PacketDRR * activate(PacketDRR *head) {
if (head) {
this->prev = head->prev;
this->next = head;
head->prev->next = this;
head->prev = this;
return head;
}
this->prev = this;
this->next = this;
return this;
}
inline PacketDRR * idle(PacketDRR *head) {
if (head == this) {
if (this->next == this)
return 0;
this->next->prev = this->prev;
this->prev->next = this->next;
return this->next;
}
this->next->prev = this->prev;
this->prev->next = this->next;
return head;
}
};
class DRR : public Queue {
public :
DRR();
virtual int command(int argc, const char*const* argv);
Packet *deque(void);
void enque(Packet *pkt);
int hash(Packet *pkt);
void clear();
protected:
int buckets_ ; //total number of flows allowed
int blimit_; //total number of bytes allowed across all flows
int quantum_; //total number of bytes that a flow can send
int mask_; /*if set hashes on just the node address otherwise on
node+port address*/
int bytecnt ; //cumulative sum of bytes across all flows
int pktcnt ; // cumulative sum of packets across all flows
int flwcnt ; //total number of active flows
PacketDRR *curr; //current active flow
PacketDRR *drr ; //pointer to the entire drr struct
inline PacketDRR *getMaxflow (PacketDRR *curr) { //returns flow with max pkts
int i;
PacketDRR *tmp;
PacketDRR *maxflow=curr;
for (i=0,tmp=curr; i < flwcnt; i++,tmp=tmp->next) {
if (maxflow->bcount < tmp->bcount)
maxflow=tmp;
}
return maxflow;
}
public:
//returns queuelength in packets
inline int length () {
return pktcnt;
}
//returns queuelength in bytes
inline int blength () {
return bytecnt;
}
};
static class DRRClass : public TclClass {
public:
DRRClass() : TclClass("Queue/DRR") {}
TclObject* create(int, const char*const*) {
return (new DRR);
}
} class_drr;
DRR::DRR()
{
buckets_=16;
quantum_=250;
drr=0;
curr=0;
flwcnt=0;
bytecnt=0;
pktcnt=0;
mask_=0;
bind("buckets_",&buckets_);
bind("blimit_",&blimit_);
bind("quantum_",&quantum_);
bind("mask_",&mask_);
}
void DRR::enque(Packet* pkt)
{
PacketDRR *q,*remq;
int which;
hdr_cmn *ch= hdr_cmn::access(pkt);
hdr_ip *iph = hdr_ip::access(pkt);
if (!drr)
drr=new PacketDRR[buckets_];
which= hash(pkt) % buckets_;
q=&drr[which];
/*detect collisions here */
int compare=(!mask_ ? ((int)iph->saddr()) : ((int)iph->saddr()&0xfff0));
if (q->src ==-1)
q->src=compare;
else
if (q->src != compare)
fprintf(stderr,"Collisions between %d and %d src addresses\n",q->src,(int)iph->saddr());
q->enque(pkt);
++q->pkts;
++pktcnt;
q->bcount += ch->size();
bytecnt +=ch->size();
if (q->pkts==1)
{
curr = q->activate(curr);
q->deficitCounter=0;
++flwcnt;
}
while (bytecnt > blimit_) {
Packet *p;
hdr_cmn *remch;
remq=getMaxflow(curr);
p=remq->deque();
remch=hdr_cmn::access(p);
remq->bcount -= remch->size();
bytecnt -= remch->size();
drop(p);
--remq->pkts;
--pktcnt;
if (remq->pkts==0) {
curr=remq->idle(curr);
--flwcnt;
}
}
}
Packet *DRR::deque(void)
{
hdr_cmn *ch;
Packet *pkt=0;
if (bytecnt==0) {
//fprintf (stderr,"No active flow\n");
return(0);
}
while (!pkt) {
if (!curr->turn) {
curr->deficitCounter+=quantum_;
curr->turn=1;
}
pkt=curr->lookup(0);
ch=hdr_cmn::access(pkt);
if (curr->deficitCounter >= ch->size()) {
curr->deficitCounter -= ch->size();
pkt=curr->deque();
curr->bcount -= ch->size();
--curr->pkts;
--pktcnt;
bytecnt -= ch->size();
if (curr->pkts == 0) {
curr->turn=0;
--flwcnt;
curr->deficitCounter=0;
curr=curr->idle(curr);
}
return pkt;
}
else {
curr->turn=0;
curr=curr->next;
pkt=0;
}
}
return 0; // not reached
}
void DRR::clear()
{
PacketDRR *q =drr;
int i = buckets_;
if (!q)
return;
while (i--) {
if (q->pkts) {
fprintf(stderr, "Changing non-empty bucket from drr\n");
exit(1);
}
++q;
}
delete[](drr);
drr = 0;
}
/*
*Allows one to change blimit_ and bucket_ for a particular drrQ :
*
*
*/
int DRR::command(int argc, const char*const* argv)
{
if (argc==3) {
if (strcmp(argv[1], "blimit") == 0) {
blimit_ = atoi(argv[2]);
if (bytecnt > blimit_)
{
fprintf (stderr,"More packets in buffer than the new limit");
exit (1);
}
return (TCL_OK);
}
if (strcmp(argv[1], "buckets") == 0) {
clear();
buckets_ = atoi(argv[2]);
return (TCL_OK);
}
if (strcmp(argv[1],"quantum") == 0) {
quantum_ = atoi(argv[2]);
return (TCL_OK);
}
if (strcmp(argv[1],"mask")==0) {
mask_= atoi(argv[2]);
return (TCL_OK);
}
}
return (Queue::command(argc, argv));
}
int DRR::hash(Packet* pkt)
{
hdr_ip *iph=hdr_ip::access(pkt);
int i;
if (mask_)
i = (int)iph->saddr() & (0xfff0);
else
i = (int)iph->saddr();
return ((i + (i >> 8) + ~(i>>4)) % ((2<<23)-1))+1; // modulo a large prime
}
|