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

通讯编程

开发平台:

Visual C++

  1. /* -*- Mode:C++; c-basic-offset:8; tab-width:8; indent-tabs-mode:t -*- */
  2. /*
  3.  * Copyright (c) @ Regents of the University of California.
  4.  * All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 1. Redistributions of source code must retain the above copyright
  10.  *    notice, this list of conditions and the following disclaimer.
  11.  * 2. Redistributions in binary form must reproduce the above copyright
  12.  *    notice, this list of conditions and the following disclaimer in the
  13.  *    documentation and/or other materials provided with the distribution.
  14.  * 3. All advertising materials mentioning features or use of this software
  15.  *    must display the following acknowledgement:
  16.  *  This product includes software developed by the MASH Research
  17.  *  Group at the University of California Berkeley.
  18.  * 4. Neither the name of the University nor of the Research Group may be
  19.  *    used to endorse or promote products derived from this software without
  20.  *    specific prior written permission.
  21.  * 
  22.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  23.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  24.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  25.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  26.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  27.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  28.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  29.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  30.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  31.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  32.  * SUCH DAMAGE.
  33.  *
  34.  */
  35. /* 
  36.  * TCP-Linux module for NS2 
  37.  *
  38.  * May 2006
  39.  *
  40.  * Author: Xiaoliang (David) Wei  (DavidWei@acm.org)
  41.  *
  42.  * NetLab, the California Institute of Technology 
  43.  * http://netlab.caltech.edu
  44.  *
  45.  * Module: scoreboard1.h
  46.  *      This is the header file for Scoreboard1 in TCP-Linux.
  47.  * We define the states of a packet in here (SKB_FLAG_*).
  48.  *
  49.  */
  50. #ifndef ns_scoreboard1_h
  51. #define ns_scoreboard1_h
  52. //  Definition of the scoreboard class:
  53. #include "tcp.h"
  54. #define SKB_FLAG_INFLIGHT 0 /* in flight, new packets */
  55. #define SKB_FLAG_SACKED 1 /* Acked by SACK block */
  56. #define SKB_FLAG_LOST 2 /* lost by FACK signal */
  57. #define SKB_FLAG_RETRANSMITTED 4 /* in flight, but is retransmitted packets */
  58. class ScoreBoardNode1 {
  59. public:
  60. ScoreBoardNode1(int start, int end, char flag):
  61. flag_(flag),
  62. seq_(start),
  63. nxt_(end),
  64. next_in_queue_(NULL)
  65. {}
  66. inline char GetFlag() { return flag_; }
  67. inline int GetStart() { return seq_; }
  68. inline int GetEnd() { return (flag_==SKB_FLAG_RETRANSMITTED)?seq_:nxt_; }
  69. inline int GetLength() {return (flag_==SKB_FLAG_RETRANSMITTED)?1:(nxt_+1-seq_); }
  70. inline int GetRtx() { return retran_;}
  71. inline int GetSndNxt() { return nxt_; }
  72. inline void SetFlag(char flag) { if (flag_==SKB_FLAG_RETRANSMITTED) nxt_=seq_; flag_ = flag;}
  73. inline void SetBegin(int seq) { seq_=seq; }
  74. inline void Append(ScoreBoardNode1* next) {next_in_queue_ = next;}
  75. inline bool Inside(int seq) { return (flag_==SKB_FLAG_RETRANSMITTED)?(seq==seq_):((seq>=seq_) && (seq<=nxt_)); }
  76. //        inline int Compare(int seq) { if (flag_==SKB_FLAG_RETRANSMITTED) return (seq-seq_); else if (seq<seq_) return -1; else if (seq>nxt_) return 1; else return 0;}
  77. inline int ShouldClean(int ackseq) 
  78. // return: 0: this block should not be touched; -1: the whole block should be deleted; 
  79. // >0: the first # of packets should be deleted
  80. {
  81. if (ackseq<seq_) 
  82. return 0;
  83. else if ((flag_==SKB_FLAG_RETRANSMITTED)||(ackseq>=nxt_)) return -1; 
  84. else return ackseq+1-seq_;
  85. }
  86. inline ScoreBoardNode1* GetNext() { return next_in_queue_; }
  87. inline bool Mergable() { return ((next_in_queue_) && (next_in_queue_->flag_!=SKB_FLAG_RETRANSMITTED) && (next_in_queue_->flag_ == flag_)); }
  88. //to check if the next packet can be merged to this packet
  89. void Merge() 
  90. //merge with the next packet: WARNING: call this function ONLY WHEN you check the validity by Mergable.
  91. ScoreBoardNode1* next = next_in_queue_;
  92. nxt_ = next->nxt_;
  93. next_in_queue_ = next->next_in_queue_;
  94. delete next;
  95. }
  96. inline bool Splittable(int seq) { return (flag_!=SKB_FLAG_RETRANSMITTED) && (seq>seq_) && (seq<=nxt_);}
  97. //to check if a node can be split from seq.
  98. ScoreBoardNode1* Split(int seq) 
  99. {
  100. // split the current node by the seq; the new node starts is [seq, end of the block]; return the new node
  101. // WARNING: Make sure it is Splittable before this functionis called.
  102. ScoreBoardNode1* next = new ScoreBoardNode1(seq, nxt_, flag_);
  103. next->next_in_queue_ = next_in_queue_;
  104. next_in_queue_ = next;
  105. nxt_ = seq-1;
  106. return next;
  107. }
  108. void MarkRetran(int snd_nxt, int retrans_id) 
  109. // Mark the first packet of this block as a retransmission packet
  110. // WARNING: Make sure it is a lost block before calling this function
  111. {
  112. if (nxt_ > seq_ ) Split(seq_+1);
  113. flag_ = SKB_FLAG_RETRANSMITTED; 
  114. nxt_ = snd_nxt; 
  115. retran_ = retrans_id; 
  116. }
  117. private:
  118. char flag_; 
  119. int seq_; /* Packet number */
  120. int nxt_;
  121. /* This member has two different meanings: 
  122. 1. If the flag_ is not SKB_FLAG_RETRANSMITTED, this means the right edge (included) of the block: [seq_, nxt_]
  123. 2. If the flag_ is SKB_FLAG_RETRANSMITTED, this means the snd_nxt_ at the time of retransmission (retransmitted packet is one packet per node)
  124. */
  125. int retran_;  /* Packet retransmitted or not. If retran_ == 0: not retransmitted, if retran_>0, it's the rtx_id_ when it is retransmitted. */
  126. /* the combination of (retran_, snd_nxt_) can detect the loss of retransmitted packet in an accurate way */
  127. // double when; //We don't have head timeout yet
  128. ScoreBoardNode1* next_in_queue_;
  129. };
  130. class ScoreBoard1 {
  131.   public:
  132. ScoreBoard1(): head_(NULL), last_rtx_seq_(-1) {ClearScoreBoard();} 
  133. virtual ~ScoreBoard1(){ClearScoreBoard ();}
  134. virtual int IsEmpty () {return (head_ == NULL);}
  135. virtual void ClearScoreBoard (); 
  136. virtual int GetNextRetran ();
  137. virtual void Dump();
  138. // virtual void MarkRetran (int retran_seqno);
  139. virtual void MarkRetran (int retran_seqno, int snd_nxt);
  140. virtual int UpdateScoreBoard (int last_ack_, hdr_tcp*, int dupack_threshold=3);
  141. virtual void MarkLoss(int snd_una, int snd_nxt);
  142. //the return value: flags
  143. inline int FackOut() { return fack_out_; }
  144. inline int SackOut() { return sack_out_; } 
  145. inline int packets_in_flight(int snd_una, int snd_nxt){return snd_nxt - snd_una - fack_out_ - sack_out_;}
  146. inline int fack() {return fack_;}
  147. // inline bool sure_timestamp(int seq) { return seq>last_rtx_seq_;}
  148. void test();
  149.   protected:
  150. bool CleanRtxQueue(int last_ack, unsigned char* flag);
  151. ScoreBoardNode1* head_;
  152. ScoreBoardNode1* nxt_to_retrx_;
  153. //the next packet to be retransmitted. if nxt_to_retrx_==NULL: no packet can be retransmitted.
  154. int acked_rtx_id_, rtx_id_; //the current id of retransmitted packet
  155. int fack_; // the furthest sacked seq#
  156. int fack_out_; //# of packets that are in the scoreboard, which are deemed to be lost
  157. int sack_out_; //# of packets that are in the scoreboard, which are sacked.
  158. int last_rtx_seq_; // the seqno that we cleaned scoreboard last time. 
  159. };
  160. #endif