dsPolicy.cc
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:39k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * Copyright (c) 2000 Nortel Networks
  3.  * All rights reserved.
  4.  * 
  5.  * Redistribution and use in source and binary forms, with or without
  6.  * modification, are permitted provided that the following conditions
  7.  * are met:
  8.  * 1. Redistributions of source code must retain the above copyright
  9.  *    notice, this list of conditions and the following disclaimer.
  10.  * 2. Redistributions in binary form must reproduce the above copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *      This product includes software developed by Nortel Networks.
  16.  * 4. The name of the Nortel Networks may not be used
  17.  *    to endorse or promote products derived from this software without
  18.  *    specific prior written permission.
  19.  * 
  20.  * THIS SOFTWARE IS PROVIDED BY NORTEL AND CONTRIBUTORS ``AS IS'' AND
  21.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  22.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  23.  * ARE DISCLAIMED.  IN NO EVENT SHALL NORTEL OR CONTRIBUTORS BE LIABLE
  24.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  25.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  26.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  27.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  28.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  29.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  30.  * SUCH DAMAGE.
  31.  *
  32.  * Developed by: Farhan Shallwani, Jeremy Ethridge
  33.  *               Peter Pieda, and Mandeep Baines
  34.  * Maintainer: Peter Pieda <ppieda@nortelnetworks.com>
  35.  */
  36. /* 
  37.  *  Integrated into ns main distribution and reorganized by 
  38.  *  Xuan Chen (xuanc@isi.edu). The main changes are:
  39.  *
  40.  *  1. Defined two seperated classes, PolicyClassifier and Policy, to handle 
  41.  *     the work done by class Policy before.
  42.  *     Class PolicyClassifier now only keeps states for each flow and pointers
  43.  *     to certain policies. 
  44.  *     The policies perform the diffserv related jobs as described
  45.  *     below. (eg, traffic metering and packet marking.)
  46.  *     class Policy functions like the class Classifer.
  47.  *
  48.  *  2. Created a general supper class Policy so that new policy can be added
  49.  *     by just creating a subclass of Policy. Examples are given (eg, 
  50.  *     DumbPolicy) to help people trying to add their own new policies.
  51.  *
  52.  *  TODO:
  53.  *  1. implement the multiple policy support by applying the idea of 
  54.  *     multi-policy.
  55.  *
  56.  */
  57. #include "dsPolicy.h"
  58. #include "ew.h"
  59. #include "dewp.h"
  60. #include "packet.h"
  61. #include "tcp.h"
  62. #include "random.h"
  63. // The definition of class PolicyClassifier.
  64. //Constructor.
  65. PolicyClassifier::PolicyClassifier() {
  66.   int i;
  67.   policyTableSize = 0;
  68.   policerTableSize = 0;
  69.   for (i = 0; i < MAX_POLICIES; i++) 
  70.     policy_pool[i] = NULL;
  71. }
  72. /*-----------------------------------------------------------------------------
  73. void addPolicyEntry()
  74.     Adds an entry to policyTable according to the arguments in argv.  A source
  75. and destination node ID must be specified in argv, followed by a policy type
  76. and policy-specific parameters.  Supported policies and their parameters
  77. are:
  78. Null          InitialCodePoint
  79. TSW2CM        InitialCodePoint  CIR
  80. TSW3CM        InitialCodePoint  CIR  PIR
  81. TokenBucket   InitialCodePoint  CIR  CBS
  82. srTCM         InitialCodePoint  CIR  CBS  EBS
  83. trTCM         InitialCodePoint  CIR  CBS  PIR  PBS
  84.     No error-checking is performed on the parameters.  CIR and PIR should be
  85. specified in bits per second; CBS, EBS, and PBS should be specified in bytes.
  86.     If the Policy Table is full, this method prints an error message.
  87. -----------------------------------------------------------------------------*/
  88. void PolicyClassifier::addPolicyEntry(int argc, const char*const* argv) {
  89.   if (policyTableSize == MAX_POLICIES)
  90.     printf("ERROR: Policy Table size limit exceeded.n");
  91.   else {
  92.     policyTable[policyTableSize].sourceNode = atoi(argv[2]);
  93.     policyTable[policyTableSize].destNode = atoi(argv[3]);
  94.     policyTable[policyTableSize].codePt = atoi(argv[5]);
  95.     policyTable[policyTableSize].arrivalTime = 0;
  96.     policyTable[policyTableSize].winLen = 1.0;
  97.     
  98.     if ((strcmp(argv[4], "Dumb") == 0) || (strcmp(argv[4],"Null") == 0)) {
  99.       if(!policy_pool[Null])
  100. policy_pool[Null] = new NullPolicy;
  101.       policyTable[policyTableSize].policy_index = Null;   
  102.       policyTable[policyTableSize].policer = nullPolicer;
  103.       policyTable[policyTableSize].meter = nullMeter;
  104.     } else if (strcmp(argv[4], "TSW2CM") == 0) {
  105.       if(!policy_pool[TSW2CM])
  106. policy_pool[TSW2CM] = new TSW2CMPolicy;
  107.       policyTable[policyTableSize].policy_index = TSW2CM;   
  108.       policyTable[policyTableSize].policer = TSW2CMPolicer;
  109.       policyTable[policyTableSize].meter = tswTagger;
  110.       policyTable[policyTableSize].cir =
  111. policyTable[policyTableSize].avgRate = (double) atof(argv[6]) / 8.0;
  112.       if (argc == 8) policyTable[policyTableSize].winLen = (double) atof(argv[7]);/* mb */
  113.     } else if (strcmp(argv[4], "TSW3CM") == 0) {
  114.       if(!policy_pool[TSW3CM])
  115. policy_pool[TSW3CM] = new TSW3CMPolicy;
  116.       policyTable[policyTableSize].policy_index = TSW3CM;   
  117.       policyTable[policyTableSize].policer = TSW3CMPolicer;
  118.       policyTable[policyTableSize].meter = tswTagger;
  119.       policyTable[policyTableSize].cir =
  120. policyTable[policyTableSize].avgRate = (double) atof(argv[6]) / 8.0;
  121.       policyTable[policyTableSize].pir = (double) atof(argv[7]) / 8.0;
  122.     } else if (strcmp(argv[4], "TokenBucket") == 0) {
  123.       if(!policy_pool[TB])
  124. policy_pool[TB] = (Policy *) new TBPolicy;
  125.       policyTable[policyTableSize].policy_index = TB;   
  126.       policyTable[policyTableSize].policer = tokenBucketPolicer;
  127.       policyTable[policyTableSize].meter = tokenBucketMeter;
  128.       
  129.       policyTable[policyTableSize].cir =
  130. policyTable[policyTableSize].avgRate = (double) atof(argv[6]) / 8.0;
  131.       policyTable[policyTableSize].cbs =
  132. policyTable[policyTableSize].cBucket = (double) atof(argv[7]);
  133.     } else if (strcmp(argv[4], "srTCM") == 0) {
  134.       if(!policy_pool[SRTCM])
  135. policy_pool[SRTCM] = new SRTCMPolicy;
  136.       policyTable[policyTableSize].policy_index = SRTCM;   
  137.       policyTable[policyTableSize].policer = srTCMPolicer;
  138.       policyTable[policyTableSize].meter = srTCMMeter;      
  139.       policyTable[policyTableSize].cir =
  140. policyTable[policyTableSize].avgRate = (double) atof(argv[6]) / 8.0;
  141.       policyTable[policyTableSize].cbs =
  142. policyTable[policyTableSize].cBucket = (double) atof(argv[7]);
  143.       policyTable[policyTableSize].ebs =
  144. policyTable[policyTableSize].eBucket = (double) atof(argv[8]);
  145.     } else if (strcmp(argv[4], "trTCM") == 0) {
  146.       if(!policy_pool[TRTCM])
  147. policy_pool[TRTCM] = new TRTCMPolicy;
  148.       policyTable[policyTableSize].policy_index = TRTCM;  
  149.       policyTable[policyTableSize].policer = trTCMPolicer;
  150.       policyTable[policyTableSize].meter = trTCMMeter;
  151.       
  152.       policyTable[policyTableSize].cir =
  153. policyTable[policyTableSize].avgRate = (double) atof(argv[6]) / 8.0;
  154.       policyTable[policyTableSize].cbs =
  155. policyTable[policyTableSize].cBucket = (double) atof(argv[7]);
  156.       policyTable[policyTableSize].pir = (double) atof(argv[8]) / 8.0;
  157.       policyTable[policyTableSize].pbs =
  158. policyTable[policyTableSize].pBucket = (double) atof(argv[9]);
  159.     } else if (strcmp(argv[4], "SFD") == 0) {
  160.       if(!policy_pool[SFD])
  161. policy_pool[SFD] = new SFDPolicy;
  162.       policyTable[policyTableSize].policy_index = SFD;
  163.       policyTable[policyTableSize].policer = SFDPolicer;
  164.       policyTable[policyTableSize].meter = sfdTagger;
  165.       // Use cir as the transmission size threshold for the moment.
  166.       policyTable[policyTableSize].cir = atoi(argv[6]);
  167.     } else if (strcmp(argv[4], "EW") == 0) {
  168.       if(!policy_pool[EW])
  169. policy_pool[EW] = new EWPolicy();
  170.       
  171.       ((EWPolicy *)policy_pool[EW])->
  172. init(atoi(argv[6]), atoi(argv[7]), atoi(argv[8]));
  173.       policyTable[policyTableSize].policy_index = EW;
  174.       policyTable[policyTableSize].policer = EWPolicer;
  175.       policyTable[policyTableSize].meter = ewTagger;
  176.   } else if (strcmp(argv[4], "DEWP") == 0) {
  177.     if(!policy_pool[DEWP])
  178.       policy_pool[DEWP] = new DEWPPolicy;
  179.     ((DEWPPolicy *)policy_pool[DEWP])->
  180.       init(atof(argv[6]));
  181.     
  182.     policyTable[policyTableSize].policy_index = DEWP;
  183.     policyTable[policyTableSize].policer = DEWPPolicer;
  184.     policyTable[policyTableSize].meter = dewpTagger;
  185.   } else {
  186.       printf("No applicable policy specified, exit!!!n");
  187.       exit(-1);
  188.     }
  189.     policyTableSize++;
  190.   }
  191. }
  192. /*-----------------------------------------------------------------------------
  193. policyTableEntry* PolicyClassifier::getPolicyTableEntry(long source, long dest)
  194. Pre: policyTable holds exactly one entry for the specified source-dest pair.
  195. Post: Finds the policyTable array that matches the specified source-dest pair.
  196. Returns: On success, returns a pointer to the corresponding policyTableEntry;
  197.   on failure, returns NULL.
  198. Note: the source-destination pair could be one-any or any-any (xuanc)
  199. -----------------------------------------------------------------------------*/
  200. policyTableEntry* PolicyClassifier::getPolicyTableEntry(nsaddr_t source, nsaddr_t dest) {
  201.   for (int i = 0; i <= policyTableSize; i++) {
  202.     if ((policyTable[i].sourceNode == source) || (policyTable[i].sourceNode == ANY_HOST)) {
  203.       if ((policyTable[i].destNode == dest) || (policyTable[i].destNode == ANY_HOST))
  204. return(&policyTable[i]);
  205.     }
  206.   }
  207.   
  208.   // !!! Could make a default code point for undefined flows:
  209.   printf("ERROR: No Policy Table entry found for Source %d-Destination %d.n", source, dest);
  210.   printPolicyTable();
  211.   return(NULL);
  212. }
  213. /*-----------------------------------------------------------------------------
  214. void addPolicerEntry(int argc, const char*const* argv)
  215. Pre: argv contains a valid command line for adding a policer entry.
  216. Post: Adds an entry to policerTable according to the arguments in argv.  No
  217.   error-checking is done on the arguments.  A policer type should be specified,
  218.   consisting of one of the names {Null, TSW2CM, TSW3CM, TokenBucket,
  219.   srTCM, trTCM}, followed by an initial code point.  Next should be an
  220.   out-of-profile code point for policers with two-rate markers; or a yellow and
  221.   a red code point for policers with three drop precedences.
  222.       If policerTable is full, an error message is printed.
  223. -----------------------------------------------------------------------------*/
  224. void PolicyClassifier::addPolicerEntry(int argc, const char*const* argv) {
  225.   //int cur_policy;
  226.   if (policerTableSize == MAX_CP)
  227.     printf("ERROR: Policer Table size limit exceeded.n");
  228.   else {
  229.     if ((strcmp(argv[2], "Dumb") == 0) || (strcmp(argv[2],"Null") == 0)) {
  230.       if(!policy_pool[Null])
  231. policy_pool[Null] = new NullPolicy;
  232.       policerTable[policerTableSize].policer = nullPolicer;      
  233.       policerTable[policerTableSize].policy_index = Null;      
  234.     } else if (strcmp(argv[2], "TSW2CM") == 0) {
  235.       if(!policy_pool[TSW2CM])
  236. policy_pool[TSW2CM] = new TSW2CMPolicy;
  237.       policerTable[policerTableSize].policer = TSW2CMPolicer;
  238.       policerTable[policerTableSize].policy_index = TSW2CM;      
  239.     } else if (strcmp(argv[2], "TSW3CM") == 0) {
  240.       if(!policy_pool[TSW3CM])
  241. policy_pool[TSW3CM] = new TSW3CMPolicy;
  242.       policerTable[policerTableSize].policer = TSW3CMPolicer;
  243.       policerTable[policerTableSize].policy_index = TSW3CM;      
  244.     } else if (strcmp(argv[2], "TokenBucket") == 0) {
  245.       if(!policy_pool[TB])
  246. policy_pool[TB] = new TBPolicy;
  247.       policerTable[policerTableSize].policer = tokenBucketPolicer;
  248.       policerTable[policerTableSize].policy_index = TB;      
  249.     } else if (strcmp(argv[2], "srTCM") == 0) {
  250.       if(!policy_pool[SRTCM])
  251. policy_pool[SRTCM] = new SRTCMPolicy;
  252.       policerTable[policerTableSize].policer = srTCMPolicer;
  253.       policerTable[policerTableSize].policy_index = SRTCM;      
  254.     } else if (strcmp(argv[2], "trTCM") == 0){
  255.       if(!policy_pool[TRTCM])
  256. policy_pool[TRTCM] = new TRTCMPolicy;
  257.       policerTable[policerTableSize].policer = trTCMPolicer;
  258.       policerTable[policerTableSize].policy_index = TRTCM;      
  259.     } else if (strcmp(argv[2], "SFD") == 0) {
  260.       if(!policy_pool[SFD])
  261. policy_pool[SFD] = new SFDPolicy;
  262.       policerTable[policerTableSize].policer = SFDPolicer;
  263.       policerTable[policerTableSize].policy_index = SFD;      
  264.     } else if (strcmp(argv[2], "EW") == 0) {
  265.       if(!policy_pool[EW])
  266. policy_pool[EW] = new EWPolicy;
  267.       policerTable[policerTableSize].policer = EWPolicer;
  268.       policerTable[policerTableSize].policy_index = EW;      
  269.     } else if (strcmp(argv[2], "DEWP") == 0) {
  270.       if(!policy_pool[DEWP])
  271. policy_pool[DEWP] = new DEWPPolicy;
  272.       policerTable[policerTableSize].policer = DEWPPolicer;
  273.       policerTable[policerTableSize].policy_index = DEWP;      
  274.     } else {
  275.       printf("No applicable policer specified, exit!!!n");
  276.       exit(-1);
  277.     }
  278.   };
  279.   
  280.   policerTable[policerTableSize].initialCodePt = atoi(argv[3]);
  281.   if (policerTable[policerTableSize].policer == nullPolicer)
  282.       policerTable[policerTableSize].downgrade1 = atoi(argv[3]);
  283.     else
  284.       policerTable[policerTableSize].downgrade1 = atoi(argv[4]);
  285.   if (argc == 6)
  286.     policerTable[policerTableSize].downgrade2 = atoi(argv[5]);
  287.   policerTableSize++;
  288. }
  289. // Return the entry of Policer table with policerType and initCodePoint matched
  290. policerTableEntry* PolicyClassifier::getPolicerTableEntry(int policy_index, int oldCodePt) {
  291.   for (int i = 0; i < policerTableSize; i++)
  292.     if ((policerTable[i].policy_index == policy_index) &&
  293. (policerTable[i].initialCodePt == oldCodePt))
  294.       return(&policerTable[i]);
  295.   printf("ERROR: No Policer Table entry found for initial code point %d.n", oldCodePt);
  296.   //printPolicerTable();
  297.   return(NULL);
  298. }
  299. /*-----------------------------------------------------------------------------
  300. int mark(Packet *pkt, double minRTT)
  301. Pre: The source-destination pair taken from pkt matches a valid entry in
  302.   policyTable.
  303. Post: pkt is marked with an appropriate code point.
  304. -----------------------------------------------------------------------------*/
  305. int PolicyClassifier::mark(Packet *pkt) {
  306.   policyTableEntry *policy;
  307.   policerTableEntry *policer;
  308.   int policy_index;
  309.   int codePt;
  310.   hdr_ip* iph;
  311.   int fid;
  312.   
  313.   iph = hdr_ip::access(pkt);
  314.   fid = iph->flowid();
  315.   policy = getPolicyTableEntry(iph->saddr(), iph->daddr());
  316.   if (policy) {
  317.     codePt = policy->codePt;
  318.     policy_index = policy->policy_index;
  319.     policer = getPolicerTableEntry(policy_index, codePt);
  320.     // bug pointed by Jason Kenney <jason@linear.engmath.dal.ca>
  321.     if (policy_pool[policy_index]) {
  322.       policy_pool[policy_index]->applyMeter(policy, pkt);
  323.       codePt = policy_pool[policy_index]->applyPolicer(policy, policer, pkt);
  324.     }
  325.   } else {
  326.     printf("The policy object doesn't exist, ERROR!!!n");
  327.     exit(-1);    
  328.   }
  329.   
  330.   iph->prio_ = codePt;
  331.   return(codePt);
  332. }
  333. /*-----------------------------------------------------------------------------
  334. Pre: The command line specifies a source and destination node for which an
  335.   RTT-Aware policy exists and a current RTT value for that policy.
  336. Post: The aggRTT field of the appropriate policy is updated to a weighted
  337.   average of the previous value and the new RTT value specified in the command
  338.   line.  If no matching policy is found, an error message is printed.
  339. -----------------------------------------------------------------------------*/
  340. void PolicyClassifier::updatePolicyRTT(int argc, const char*const* argv) {
  341.   policyTableEntry *policy;
  342.   
  343.   policy = getPolicyTableEntry(atoi(argv[2]), atoi(argv[3]));
  344.   if (policy == NULL)
  345.     printf("ERROR: cannot update RTT; no existing policy found for Source %d-Desination %d.n",
  346.    atoi(argv[2]), atoi(argv[3]));
  347.   else {
  348.     policy->winLen = (double) atof(argv[4]);
  349.   }
  350. }
  351. /*-----------------------------------------------------------------------------
  352. Pre: The command line specifies a source and destination node for which a
  353.   policy exists that uses a cBucket value.  That policy's cBucket parameter is
  354.   currently valid.
  355. Post: The policy's cBucket value is found and returned.
  356. Returns: The value cBucket on success; or -1 on an error.
  357. -----------------------------------------------------------------------------*/
  358. double PolicyClassifier::getCBucket(const char*const* argv) {
  359.   policyTableEntry *policy;
  360.   
  361.   policy = getPolicyTableEntry(atoi(argv[2]), atoi(argv[3]));
  362.   if (policy == NULL) {
  363.     printf("ERROR: cannot get bucket size; no existing policy found for Source %d-Desination %d.n",
  364.    atoi(argv[2]), atoi(argv[3]));
  365.     return(-1);
  366.   }
  367.   else {
  368.     if ((policy->policer == tokenBucketPolicer) || (policy->policer == srTCMPolicer) || (policy->policer == trTCMPolicer))
  369.       return(policy->cBucket);
  370.     else {
  371.       printf("ERROR: cannot get bucket size; the Source %d-Desination %d Policy does not include a Committed Bucket.n", atoi(argv[2]), atoi(argv[3]));
  372.       return(-1);
  373.     }
  374.   }
  375. }
  376. //    Prints the policyTable, one entry per line.
  377. void PolicyClassifier::printPolicyTable() {
  378.   printf("Policy Table(%d):n",policyTableSize);
  379.   for (int i = 0; i < policyTableSize; i++)
  380.     {
  381.       switch (policyTable[i].policer) {
  382.       case nullPolicer:
  383. printf("Flow (%d to %d): Null policer, ",
  384.                policyTable[i].sourceNode,policyTable[i].destNode);
  385. printf("initial code point %dn", policyTable[i].codePt);
  386. break;
  387.       case TSW2CMPolicer:
  388. printf("Flow (%d to %d): TSW2CM policer, ",
  389.                policyTable[i].sourceNode,policyTable[i].destNode);
  390. printf("initial code point %d, CIR %.1f bps.n",
  391.                policyTable[i].codePt, policyTable[i].cir * 8);
  392. break;
  393.       case TSW3CMPolicer:
  394. printf("Flow (%d to %d): TSW3CM policer, initial code ",
  395.                policyTable[i].sourceNode, policyTable[i].destNode);
  396. printf("point %d, CIR %.1f bps, PIR %.1f bytes.n",
  397.                policyTable[i].codePt, policyTable[i].cir * 8,
  398.                policyTable[i].pir * 8);
  399. break;
  400.       case tokenBucketPolicer:
  401. printf("Flow (%d to %d): Token Bucket policer, ",
  402.                policyTable[i].sourceNode,policyTable[i].destNode);
  403. printf("initial code  point %d, CIR %.1f bps, CBS %.1f bytes.n",
  404.                policyTable[i].codePt, policyTable[i].cir * 8,
  405.                policyTable[i].cbs);
  406. break;
  407.       case srTCMPolicer:
  408. printf("Flow (%d to %d): srTCM policer, initial code ",
  409.                policyTable[i].sourceNode, policyTable[i].destNode);
  410. printf("point %d, CIR %.1f bps, CBS %.1f bytes, EBS %.1f bytes.n",
  411.                policyTable[i].codePt, policyTable[i].cir * 8,
  412.                policyTable[i].cbs, policyTable[i].ebs);
  413. break;
  414.       case trTCMPolicer:
  415. printf("Flow (%d to %d): trTCM policer, initial code ",
  416.                policyTable[i].destNode, policyTable[i].sourceNode);
  417. printf("point %d, CIR %.1f bps, CBS %.1f bytes, PIR %.1f bps, ",
  418.        policyTable[i].codePt, policyTable[i].cir * 8,
  419.                policyTable[i].cbs, policyTable[i].pir * 8);
  420. printf("PBS %.1f bytes.n", policyTable[i].pbs);
  421. break;
  422.       case SFDPolicer:
  423. printf("Flow (%d to %d): SFD policer, ",
  424.        policyTable[i].sourceNode,policyTable[i].destNode);
  425. printf("initial code point %d, TH %d bytes.n",
  426.        policyTable[i].codePt, (int)policyTable[i].cir);
  427. break;
  428.       case EWPolicer:
  429. printf("Flow (%d to %d): EW policer, ",
  430.        policyTable[i].sourceNode,policyTable[i].destNode);
  431. printf("initial code point %d.n", policyTable[i].codePt);
  432. break;
  433.       case DEWPPolicer:
  434. printf("Flow (%d to %d): DEWP policer, ",
  435.        policyTable[i].sourceNode,policyTable[i].destNode);
  436. printf("initial code point %d.n", policyTable[i].codePt);
  437. break;
  438.       default:
  439. printf("ERROR: Unknown policer type in Policy Table.n");
  440.       }
  441.     }
  442.   printf("n");
  443. }
  444. // Prints the policerTable, one entry per line.
  445. void PolicyClassifier::printPolicerTable() {
  446.   bool threeColor;
  447.   
  448.   printf("Policer Table:n");
  449.   for (int i = 0; i < policerTableSize; i++) {
  450.     threeColor = false;
  451.     switch (policerTable[i].policer) {
  452.     case nullPolicer:
  453.       printf("Null ");
  454.       break;
  455.     case TSW2CMPolicer:
  456.       printf("TSW2CM ");
  457.       break;
  458.     case TSW3CMPolicer:
  459.       printf("TSW3CM ");
  460.       threeColor = true;
  461.       break;
  462.     case tokenBucketPolicer:
  463.       printf("Token Bucket ");
  464.       break;
  465.     case srTCMPolicer:
  466.       printf("srTCM ");
  467.       threeColor = true;
  468.       break;
  469.     case trTCMPolicer:
  470.       printf("trTCM ");
  471.       threeColor = true;
  472.       break;
  473.     case SFDPolicer:
  474.       printf("SFD ");
  475.       //printFlowTable();
  476.       break;
  477.     case EWPolicer:
  478.       printf("EW ");
  479.       break;
  480.     case DEWPPolicer:
  481.       printf("DEWP ");
  482.       break;
  483.     default:
  484.       printf("ERROR: Unknown policer type in Policer Table.");
  485.     }
  486.     
  487.     if (threeColor) {
  488.       printf("policer code point %d is policed to yellow ",
  489.      policerTable[i].initialCodePt);
  490.       printf("code point %d and red code point %d.n",
  491.      policerTable[i].downgrade1,
  492.      policerTable[i].downgrade2);
  493.     } else
  494.       printf("policer code point %d is policed to code point %d.n",
  495.      policerTable[i].initialCodePt,
  496.      policerTable[i].downgrade1);
  497.   }
  498.   printf("n");
  499. }
  500. // The beginning of the definition of the NullPolicy
  501. // NullPolicy will do nothing, but is also a good example to show how to add 
  502. // new policy.
  503. /*-----------------------------------------------------------------------------
  504. void NullPolicy::applyMeter(policyTableEntry *policy, Packet *pkt)
  505. Do nothing
  506. -----------------------------------------------------------------------------*/
  507. void NullPolicy::applyMeter(policyTableEntry *policy, Packet *pkt) {
  508.   policy->arrivalTime = Scheduler::instance().clock();  
  509. }
  510. /*-----------------------------------------------------------------------------
  511. int DumbPolicy::applyPolicer(policyTableEntry *policy, int initialCodePt, Packet *pkt)
  512. Always return the initial codepoint.
  513. -----------------------------------------------------------------------------*/
  514. int NullPolicy::applyPolicer(policyTableEntry *policy, policerTableEntry *policer, Packet *pkt) {
  515.   return(policer->initialCodePt);
  516. }
  517. // The end of NullPolicy
  518. // The beginning of the definition of TSW2CM
  519. /*-----------------------------------------------------------------------------
  520. void TSW2CMPolicy::applyMeter(policyTableEntry *policy, Packet *pkt)
  521. Pre: policy's variables avgRate, arrivalTime, and winLen hold valid values; and
  522.   pkt points to a newly-arrived packet.
  523. Post: Adjusts policy's TSW state variables avgRate and arrivalTime (also called
  524.   tFront) according to the specified packet.
  525. Note: See the paper "Explicit Allocation of Best effor Delivery Service" (David
  526.   Clark and Wenjia Fang), Section 3.3, for a description of the TSW Tagger.
  527. -----------------------------------------------------------------------------*/
  528. void TSW2CMPolicy::applyMeter(policyTableEntry *policy, Packet *pkt) {
  529.   double now, bytesInTSW, newBytes;
  530.   hdr_cmn* hdr = hdr_cmn::access(pkt);
  531.   
  532.   bytesInTSW = policy->avgRate * policy->winLen;
  533.   newBytes = bytesInTSW + (double) hdr->size();
  534.   now = Scheduler::instance().clock();
  535.   policy->avgRate = newBytes / (now - policy->arrivalTime + policy->winLen);
  536.   policy->arrivalTime = now;
  537. }
  538. /*-----------------------------------------------------------------------------
  539. int TSW2CMPolicy::applyPolicer(policyTableEntry *policy, int initialCodePt, Packet *pkt)
  540. Pre: policy points to a policytableEntry that is using the TSW2CM policer and
  541.   whose state variables (avgRate and cir) are up to date.
  542. Post: If policy's avgRate exceeds its CIR, this method returns an out-of-profile
  543.   code point with a probability of ((rate - CIR) / rate).  If it does not
  544.   downgrade the code point, this method simply returns the initial code point.
  545. Returns: A code point to apply to the current packet.
  546. Uses: Method downgradeOne().
  547. -----------------------------------------------------------------------------*/
  548. int TSW2CMPolicy::applyPolicer(policyTableEntry *policy, policerTableEntry *policer, Packet *pkt) {
  549.   if ((policy->avgRate > policy->cir)
  550.       && (Random::uniform(0.0, 1.0) <= (1-(policy->cir/policy->avgRate)))) {
  551.     return(policer->downgrade1);
  552.   }
  553.   else {
  554.     return(policer->initialCodePt);
  555.   }
  556. }
  557. // The end of TSW2CM
  558. // The Beginning of TSW3CM
  559. /*-----------------------------------------------------------------------------
  560. void TSW3CMPolicy::applyMeter(policyTableEntry *policy, Packet *pkt)
  561. Pre: policy's variables avgRate, arrivalTime, and winLen hold valid values; and
  562.   pkt points to a newly-arrived packet.
  563. Post: Adjusts policy's TSW state variables avgRate and arrivalTime (also called
  564.   tFront) according to the specified packet.
  565. Note: See the paper "Explicit Allocation of Best effor Delivery Service" (David
  566.   Clark and Wenjia Fang), Section 3.3, for a description of the TSW Tagger.
  567. -----------------------------------------------------------------------------*/
  568. void TSW3CMPolicy::applyMeter(policyTableEntry *policy, Packet *pkt) {
  569.   double now, bytesInTSW, newBytes;
  570.   hdr_cmn* hdr = hdr_cmn::access(pkt);
  571.   
  572.   bytesInTSW = policy->avgRate * policy->winLen;
  573.   newBytes = bytesInTSW + (double) hdr->size();
  574.   now = Scheduler::instance().clock();
  575.   policy->avgRate = newBytes / (now - policy->arrivalTime + policy->winLen);
  576.   policy->arrivalTime = now;
  577. }
  578. /*-----------------------------------------------------------------------------
  579. int TSW3CMPolicy::applyPolicer(policyTableEntry *policy, int initialCodePt, Packet *pkt)
  580. Pre: policy points to a policytableEntry that is using the TSW3CM policer and
  581.   whose state variables (avgRate, cir, and pir) are up to date.
  582. Post: Sets code points with the following probabilities when rate > PIR:
  583.           red:    (rate - PIR) / rate
  584.           yellow: (PIR - CIR) / rate
  585.           green:  CIR / rate
  586. and with the following code points when CIR < rate <= PIR:
  587.           red:    0
  588.           yellow: (rate - CIR) / rate
  589.           green:  CIR / rate
  590.     When rate is under CIR, a packet is always marked green.
  591. Returns: A code point to apply to the current packet.
  592. Uses: Methods downgradeOne() and downgradeTwo().
  593. -----------------------------------------------------------------------------*/
  594. int TSW3CMPolicy::applyPolicer(policyTableEntry *policy, policerTableEntry *policer, Packet *pkt) {
  595.   double rand = policy->avgRate * (1.0 - Random::uniform(0.0, 1.0));
  596.   
  597.   if (rand > policy->pir)
  598.     return (policer->downgrade2);
  599.   else if (rand > policy->cir)
  600.     return(policer->downgrade1);
  601.   else
  602.     return(policer->initialCodePt);
  603. }
  604.  
  605. // End of TSW3CM
  606. // Begin of Token Bucket.
  607. /*-----------------------------------------------------------------------------
  608. void TBPolicy::applyMeter(policyTableEntry *policy, Packet *pkt)
  609. Pre: policy's variables cBucket, cir, cbs, and arrivalTime hold valid values.
  610. Post: Increments policy's Token Bucket state variable cBucket according to the
  611.   elapsed time since the last packet arrival.  cBucket is filled at a rate equal  to CIR, capped at an upper bound of CBS.
  612.   This method also sets arrivalTime equal to the current simulator time.
  613. -----------------------------------------------------------------------------*/
  614. void TBPolicy::applyMeter(policyTableEntry *policy, Packet *pkt) {
  615.   double now = Scheduler::instance().clock();
  616.   double tokenBytes;
  617.   tokenBytes = (double) policy->cir * (now - policy->arrivalTime);
  618.   if (policy->cBucket + tokenBytes <= policy->cbs)
  619.    policy->cBucket += tokenBytes;
  620.   else
  621.    policy->cBucket = policy->cbs;
  622.   policy->arrivalTime = now;
  623. }
  624. /*----------------------------------------------------------------------------
  625. int TBPolicy::applyPolicer(policyTableEntry *policy, int initialCodePt,
  626.         Packet* pkt)
  627. Pre: policy points to a policytableEntry that is using the Token Bucket policer
  628. and whose state variable (cBucket) is up to date.  pkt points to a
  629. newly-arrived packet.
  630. Post: If policy's cBucket is at least as large as pkt's size, cBucket is
  631. decremented by that size and the initial code point is retained.  Otherwise,
  632. the code point is downgraded.
  633. Returns: A code point to apply to the current packet.
  634. Uses: Method downgradeOne().
  635. -----------------------------------------------------------------------------*/
  636. int TBPolicy::applyPolicer(policyTableEntry *policy, policerTableEntry *policer, Packet* pkt) {
  637.   hdr_cmn* hdr = hdr_cmn::access(pkt);
  638.   double size = (double) hdr->size();
  639.   if ((policy->cBucket - size) >= 0) {
  640.     policy->cBucket -= size;
  641.     return(policer->initialCodePt);
  642.   } else{
  643.     return(policer->downgrade1);
  644.   }
  645. }
  646. // End of Tocken Bucket.
  647. // Begining of SRTCM
  648. /*-----------------------------------------------------------------------------
  649. void SRTCMPolicy::applyMeter(policyTableEntry *policy)
  650. Pre: policy's variables cBucket, eBucket, cir, cbs, ebs, and arrivalTime hold
  651.   valid values.
  652. Post: Increments policy's srTCM state variables cBucket and eBucket according
  653.   to the elapsed time since the last packet arrival.  cBucket is filled at a
  654.   rate equal to CIR, capped at an upper bound of CBS.  When cBucket is full
  655.   (equal to CBS), eBucket is filled at a rate equal to CIR, capped at an upper
  656.   bound of EBS.
  657.       This method also sets arrivalTime equal to the current
  658.   simulator time.
  659. Note: See the Internet Draft, "A Single Rate Three Color Marker" (Heinanen et
  660.   al; May, 1999) for a description of the srTCM.
  661. -----------------------------------------------------------------------------*/
  662. void SRTCMPolicy::applyMeter(policyTableEntry *policy, Packet *pkt) {
  663.   double now = Scheduler::instance().clock();
  664.   double tokenBytes;
  665.   
  666.   tokenBytes = (double) policy->cir * (now - policy->arrivalTime);
  667.   if (policy->cBucket + tokenBytes <= policy->cbs)
  668.     policy->cBucket += tokenBytes;
  669.   else {
  670.     tokenBytes = tokenBytes - (policy->cbs - policy->cBucket);
  671.     
  672.     policy->cBucket = policy->cbs;
  673.     if (policy->eBucket + tokenBytes <= policy->ebs)
  674.       policy->eBucket += tokenBytes;
  675.     else
  676.       policy->eBucket = policy->ebs;
  677.   }
  678.   policy->arrivalTime = now;
  679. }
  680. /*-----------------------------------------------------------------------------
  681. int SRTCMPolicy::applyPolicer(policyTableEntry *policy, int initialCodePt, Packet* pkt)
  682. Pre: policy points to a policyTableEntry that is using the srTCM policer and
  683.   whose state variables (cBucket and eBucket) are up to date.  pkt points to a
  684.   newly-arrived packet.
  685. Post: If policy's cBucket is at least as large as pkt's size, cBucket is
  686.   decremented by that size and the initial code point is retained.  Otherwise,
  687.   if eBucket is at least as large as the packet, eBucket is decremented and the
  688.   yellow code point is returned.  Otherwise, the red code point is returned.
  689. Returns: A code point to apply to the current packet.
  690. Uses: Method downgradeOne() and downgradeTwo().
  691. Note: See the Internet Draft, "A Single Rate Three Color Marker" (Heinanen et
  692.   al; May, 1999) for a description of the srTCM.
  693. -----------------------------------------------------------------------------*/
  694. int SRTCMPolicy::applyPolicer(policyTableEntry *policy, policerTableEntry *policer, Packet* pkt) {
  695.   hdr_cmn* hdr = hdr_cmn::access(pkt);
  696.   double size = (double) hdr->size();
  697.   
  698.   if ((policy->cBucket - size) >= 0) {
  699.     policy->cBucket -= size;
  700.     return(policer->initialCodePt);
  701.   } else {
  702.     if ((policy->eBucket - size) >= 0) {
  703.       policy->eBucket -= size;
  704.       return(policer->downgrade1);
  705.     } else
  706.       return(policer->downgrade2);
  707.   }
  708. }
  709. // End of SRTCM
  710. // Beginning of TRTCM
  711. /*----------------------------------------------------------------------------
  712. void TRTCMPolicy::applyMeter(policyTableEntry *policy, Packet *pkt)
  713. Pre: policy's variables cBucket, pBucket, cir, pir, cbs, pbs, and arrivalTime
  714.   hold valid values.
  715. Post: Increments policy's trTCM state variables cBucket and pBucket according
  716.   to the elapsed time since the last packet arrival.  cBucket is filled at a
  717.   rate equal to CIR, capped at an upper bound of CBS.  pBucket is filled at a
  718.   rate equal to PIR, capped at an upper bound of PBS.
  719.       This method also sets arrivalTime equal to the current simulator time.
  720. Note: See the Internet Draft, "A Two Rate Three Color Marker" (Heinanen et al;
  721.   May, 1999) for a description of the srTCM.
  722. ---------------------------------------------------------------------------*/
  723. void TRTCMPolicy::applyMeter(policyTableEntry *policy, Packet *pkt) {
  724.   double now = Scheduler::instance().clock();
  725.   double tokenBytes;
  726.   tokenBytes = (double) policy->cir * (now - policy->arrivalTime);
  727.   if (policy->cBucket + tokenBytes <= policy->cbs)
  728.     policy->cBucket += tokenBytes;
  729.   else
  730.     policy->cBucket = policy->cbs;
  731.   
  732.   tokenBytes = (double) policy->pir * (now - policy->arrivalTime);
  733.   if (policy->pBucket + tokenBytes <= policy->pbs)
  734.     policy->pBucket += tokenBytes;
  735.   else
  736.     policy->pBucket = policy->pbs;
  737.   
  738.   policy->arrivalTime = now;
  739. }
  740. /*----------------------------------------------------------------------------
  741. int TRTCMPolicy::applyPolicer(policyTableEntry *policy, int initialCodePt, Packet* pkt)
  742. Pre: policy points to a policyTableEntry that is using the trTCM policer and
  743.   whose state variables (cBucket and pBucket) are up to date.  pkt points to a
  744.   newly-arrived packet.
  745. Post: If policy's pBucket is smaller than pkt's size, the red code point is
  746.   retained.  Otherwise, if cBucket is smaller than the packet size, the yellow
  747.   code point is returned and pBucket is decremented.  Otherwise, the packet
  748.   remains green and both buckets are decremented.
  749. Returns: A code point to apply to the current packet.
  750. Uses: Method downgradeOne() and downgradeTwo().
  751. Note: See the Internet Draft, "A Two Rate Three Color Marker" (Heinanen et al;
  752.   May, 1999) for a description of the srTCM.
  753. -----------------------------------------------------------------------------*/
  754. int TRTCMPolicy::applyPolicer(policyTableEntry *policy, policerTableEntry *policer, Packet* pkt) {
  755.   hdr_cmn* hdr = hdr_cmn::access(pkt);
  756.   double size = (double) hdr->size();
  757.   
  758.   if ((policy->pBucket - size) < 0)
  759.     return(policer->downgrade2);
  760.   else {
  761.     if ((policy->cBucket - size) < 0) {
  762.       policy->pBucket -= size;
  763.       return(policer->downgrade1);
  764.     } else {
  765.       policy->cBucket -= size;
  766.       policy->pBucket -= size;
  767.       return(policer->initialCodePt);
  768.     }
  769.   }
  770. }
  771. // End of TRTCM
  772. // Beginning of SFD
  773. //Constructor.
  774. SFDPolicy::SFDPolicy() : Policy() {
  775.   flow_table.head = NULL;
  776.   flow_table.tail = NULL;
  777. }
  778. //Deconstructor.
  779. SFDPolicy::~SFDPolicy(){
  780.   struct flow_entry *p, *q;
  781.   p = q = flow_table.head;
  782.   while (p) {
  783.     printf("free flow: %dn", p->fid);
  784.     q = p;
  785.     p = p->next;
  786.     free(q);
  787.   }
  788.   p = q = NULL;
  789.   flow_table.head = flow_table.tail = NULL;
  790. }
  791. /*-----------------------------------------------------------------------------
  792.  void SFDPolicy::applyMeter(policyTableEntry *policy, Packet *pkt)
  793.  Flow states are kept in a linked list.
  794.  Record how many bytes has been sent per flow and check if there is any flow
  795.  timeout.
  796. -----------------------------------------------------------------------------*/
  797. void SFDPolicy::applyMeter(policyTableEntry *policy, Packet *pkt) {
  798.   int fid, src_id, dst_id;
  799.   struct flow_entry *p, *q, *new_entry;
  800.   double now = Scheduler::instance().clock();
  801.   hdr_cmn* hdr = hdr_cmn::access(pkt);
  802.   hdr_ip* iph = hdr_ip::access(pkt);
  803.   fid = iph->flowid();
  804.   dst_id = iph->daddr();
  805.   src_id = iph->saddr();
  806.   //  printf("enter applyMetern");
  807.   //  printFlowTable();
  808.   p = q = flow_table.head;
  809.   while (p) {
  810.     // Check if the flow has been recorded before.
  811.     if (p->fid == fid) {
  812.     //if (p->src_id == src_id && p->dst_id == dst_id ) {
  813.       p->last_update = now;
  814.       p->bytes_sent += hdr->size();
  815.       return;
  816.     } else if (p->last_update + FLOW_TIME_OUT < now){
  817.       // The coresponding flow is expired.      
  818.       if (p == flow_table.head){
  819. if (p == flow_table.tail) {
  820.   flow_table.head = flow_table.tail = NULL;
  821.   free(p);
  822.   p = q = NULL;
  823. } else {
  824.   flow_table.head = p->next;
  825.   free(p);
  826.   p = q = flow_table.head;
  827. }
  828.       } else {
  829. q->next = p->next;
  830. if (p == flow_table.tail)
  831.   flow_table.tail = q;
  832. free(p);
  833. p = q->next;
  834.       }
  835.     } else {
  836.       q = p;
  837.       p = q->next;
  838.     }
  839.   }
  840.   
  841.   // This is the firt time the flow shown up
  842.   if (!p) {
  843.     new_entry = new flow_entry;
  844.     new_entry->fid = fid;
  845.     new_entry->src_id = src_id;
  846.     new_entry->dst_id = dst_id;
  847.     new_entry->last_update = now;
  848.     new_entry->bytes_sent = hdr->size();
  849.     new_entry->count = 0;
  850.     new_entry->next = NULL;
  851.     
  852.     // always insert the new entry to the tail.
  853.     if (flow_table.tail)
  854.       flow_table.tail->next = new_entry;
  855.     else
  856.       flow_table.head = new_entry;
  857.     flow_table.tail = new_entry;
  858.   }
  859.   
  860.   //  printf("leave applyMetern");
  861.   return;
  862. }
  863. /*-----------------------------------------------------------------------------
  864. void SFDPolicy::applyPolicer(policyTableEntry *policy, int initialCodePt, Packet *pkt) 
  865.     Prints the policyTable, one entry per line.
  866. -----------------------------------------------------------------------------*/
  867. int SFDPolicy::applyPolicer(policyTableEntry *policy, policerTableEntry *policer, Packet *pkt) {
  868.   int fid, src_id, dst_id;
  869.   struct flow_entry *p;
  870.   hdr_ip* iph = hdr_ip::access(pkt);
  871.   fid = iph->flowid();
  872.   dst_id = iph->daddr();
  873.   src_id = iph->saddr();
  874.   //  printf("enter applyPolicern");
  875.   //printFlowTable();
  876.   
  877.   p = flow_table.head;
  878.   while (p) {
  879.     // Check if the flow has been recorded before.
  880.     if (p->fid == iph->flowid()) {
  881.       //if (p->src_id == src_id && p->dst_id == dst_id) {
  882.       if (p->bytes_sent > policy->cir) {
  883. // Use downgrade2 code to judge how to penalize out-profile packets.
  884. if (policer->downgrade2 == 0) {
  885.   // Penalize every packet beyond th.
  886.   //printf("leave applyPolicer  %d, every downgraden", p->fid);
  887.   return(policer->downgrade1);
  888. } else if (policer->downgrade2 == 1) {
  889.   // Randomized penalization.
  890.   if (Random::uniform(0.0, 1.0) > (1 - (policy->cir/p->bytes_sent))) {
  891.     //printf("leave applyPolicer %d, random initial.n", p->fid);
  892.     return(policer->initialCodePt);
  893.   } else {
  894.     //printf("leave applyPolicer %d, random, downgraden", p->fid);
  895.     return(policer->downgrade1);
  896.   }
  897. } else {
  898.   // Simple scheduling on penalization.
  899.   if (p->count == 5) {
  900.     // Penalize 4 out of every 5 packets.
  901.     p->count = 0;
  902.     //printf("leave applyPolicer %d, initial, %dn", p->fid, p->count);
  903.     return(policer->initialCodePt);
  904.   } else {
  905.     p->count++;
  906.     //printf("leave applyPolicer %d, downgrade, %dn", p->fid, p->count);
  907.     return(policer->downgrade1);
  908.   }
  909. }
  910.       } else {
  911. // printf("leave applyPolicer, initialn");
  912. return(policer->initialCodePt);
  913.       }
  914.     }
  915.     p = p->next;
  916.   }
  917.   
  918.   // Can't find the record for this flow.
  919.   if (!p) {
  920.     printf ("MISS: no flow %d (%d, %d) in the tablen", fid, src_id, dst_id);
  921.     printFlowTable();
  922. };
  923.   
  924.   //  printf("leave applyPolicer, init but problem...n");
  925.   return(policer->initialCodePt);
  926. }
  927. //    Prints the flowTable, one entry per line.
  928. void SFDPolicy::printFlowTable() {
  929.   struct flow_entry *p;
  930.   printf("Flow table:n");
  931.   p = flow_table.head;
  932.   while (p) {
  933.     printf("flow id: %d [%d %d], bytesSent: %d, last_update: %fn", 
  934.    p->fid, p->src_id, p->dst_id, p->bytes_sent, p->last_update);
  935.     p = p-> next;
  936.   }
  937.   p = NULL;
  938.   printf("n");
  939. }
  940. // End of SFD