test-suite-rfc2581.tcl
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:10k
源码类别:

通讯编程

开发平台:

Visual C++

  1. #
  2. # Copyright (c) 1995 The Regents of the University of California.
  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 the Computer Systems
  16. # Engineering Group at Lawrence Berkeley Laboratory.
  17. # 4. Neither the name of the University nor of the Laboratory may be used
  18. #    to endorse or promote products derived from this software without
  19. #    specific prior written permission.
  20. #
  21. # THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  22. # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  23. # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  24. # ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  25. # FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  26. # DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  27. # OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  28. # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  29. # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  30. # OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  31. # SUCH DAMAGE.
  32. #
  33. # @(#) $Header: /cvsroot/nsnam/ns-2/tcl/test/test-suite-rfc2581.tcl,v 1.10 2006/10/03 11:10:10 sallyfloyd Exp $
  34. #
  35. # To view a list of available tests to run with this script:
  36. # ns test-suite-tcpVariants.tcl
  37. #
  38. source misc.tcl
  39. source topologies.tcl
  40. remove-all-packet-headers       ; # removes all except common
  41. add-packet-header Flags IP TCP  ; # hdrs reqd for TCP
  42. # FOR UPDATING GLOBAL DEFAULTS:
  43. Agent/TCP set precisionReduce_ false ;   # default changed on 2006/1/24.
  44. Agent/TCP set rtxcur_init_ 6.0 ;      # Default changed on 2006/01/21
  45. Agent/TCP set updated_rttvar_ false ;  # Variable added on 2006/1/21
  46. Agent/TCP set tcpTick_ 0.1
  47. # The default for tcpTick_ is being changed to reflect a changing reality.
  48. Agent/TCP set useHeaders_ false
  49. # The default is being changed to useHeaders_ true.
  50. Agent/TCP set minrto_ 0
  51. # The default is being changed to minrto_ 1
  52. Agent/TCP set syn_ false
  53. Agent/TCP set delay_growth_ false
  54. # In preparation for changing the default values for syn_ and delay_growth_.
  55. Agent/TCP set rfc2988_ false
  56. Agent/TCP set singledup_ 0
  57. Agent/TCP set windowInit_ 1
  58. Trace set show_tcphdr_ 1
  59. set wrap 90
  60. set wrap1 [expr 90 * 512 + 40]
  61. TestSuite instproc finish file {
  62. global quiet wrap PERL
  63.         exec $PERL ../../bin/set_flow_id -s all.tr | 
  64.           $PERL ../../bin/getrc -s 2 -d 3 | 
  65.           $PERL ../../bin/raw2xg -s 0.01 -m $wrap -t $file > temp.rands
  66. if {$quiet == "false"} {
  67. exec xgraph -bb -tk -nl -m -x time -y packets temp.rands &
  68. }
  69.         ## now use default graphing tool to make a data file
  70. ## if so desired
  71.         exit 0
  72. }
  73. TestSuite instproc printtimers { tcp time} {
  74. global quiet
  75. if {$quiet == "false"} {
  76.          puts "time: $time sRTT(in ticks): [$tcp set srtt_]/8 RTTvar(in ticks): [$tcp set rttvar_]/4 backoff: [$tcp set backoff_]"
  77. }
  78. }
  79. TestSuite instproc printtimersAll { tcp time interval } {
  80.         $self instvar dump_inst_ ns_
  81.         if ![info exists dump_inst_($tcp)] {
  82.                 set dump_inst_($tcp) 1
  83.                 $ns_ at $time "$self printtimersAll $tcp $time $interval"
  84.                 return
  85.         }
  86. set newTime [expr [$ns_ now] + $interval]
  87. $ns_ at $time "$self printtimers $tcp $time"
  88.         $ns_ at $newTime "$self printtimersAll $tcp $newTime $interval"
  89. }
  90. #
  91. # Links1 uses 8Mb, 5ms feeders, and a 800Kb 10ms bottleneck.
  92. # Queue-limit on bottleneck is 2 packets.
  93. #
  94. Class Topology/net4 -superclass NodeTopology/4nodes
  95. Topology/net4 instproc init ns {
  96.     $self next $ns
  97.     $self instvar node_
  98.     $ns duplex-link $node_(s1) $node_(r1) 8Mb 0ms DropTail
  99.     $ns duplex-link $node_(s2) $node_(r1) 8Mb 0ms DropTail
  100.     $ns duplex-link $node_(r1) $node_(k1) 800Kb 10ms DropTail
  101.     $ns queue-limit $node_(r1) $node_(k1) 8
  102.     $ns queue-limit $node_(k1) $node_(r1) 8
  103.     if {[$class info instprocs config] != ""} {
  104. $self config $ns
  105.     }
  106.     $self instvar lossylink_
  107.     set lossylink_ [$ns link $node_(r1) $node_(k1)]
  108.     set em [new ErrorModule Fid] 
  109.     set errmodel [new ErrorModel/Periodic]
  110.     $errmodel unit pkt
  111.     $lossylink_ errormodule $em
  112. }
  113. TestSuite instproc emod {} {
  114.         $self instvar topo_
  115.         $topo_ instvar lossylink_
  116.         set errmodule [$lossylink_ errormodule]
  117.         return $errmodule
  118. TestSuite instproc drop_pkts pkts {
  119.     $self instvar ns_
  120.     set emod [$self emod]
  121.     set errmodel1 [new ErrorModel/List]
  122.     $errmodel1 droplist $pkts
  123.     $emod insert $errmodel1
  124.     $emod bind $errmodel1 1
  125. }
  126. TestSuite instproc setup {tcptype list} {
  127. global wrap wrap1
  128.         $self instvar ns_ node_ testName_ guide_
  129. puts "Guide: $guide_"
  130. set fid 1
  131.         # Set up TCP connection
  132.      if {$tcptype == "Tahoe"} {
  133.        set tcp1 [$ns_ create-connection TCP $node_(s1) 
  134.            TCPSink/DelAck $node_(k1) $fid]
  135.      } elseif {$tcptype == "Sack1"} {
  136.        set tcp1 [$ns_ create-connection TCP/Sack1 $node_(s1) 
  137.            TCPSink/Sack1/DelAck  $node_(k1) $fid]
  138.      } else {
  139.        set tcp1 [$ns_ create-connection TCP/$tcptype $node_(s1) 
  140.            TCPSink/DelAck $node_(k1) $fid]
  141.      }
  142.         $tcp1 set window_ 28
  143.         set ftp1 [$tcp1 attach-app FTP]
  144.         $ns_ at 1.0 "$ftp1 produce 10"
  145.         $self tcpDump $tcp1 3.0
  146.         $self drop_pkts $list
  147.         $self traceQueues $node_(r1) [$self openTrace 3.0 $testName_]
  148.         $ns_ run
  149. }
  150. # Definition of test-suite tests
  151. ###################################################
  152. ## Checking for RFC2581-compliant immediate ACK on filling a hole.
  153. ###################################################
  154. Class Test/immediateAck -superclass TestSuite
  155. Test/immediateAck instproc init topo {
  156. $self instvar net_ defNet_ test_ guide_
  157. set net_ $topo
  158. set defNet_ net4
  159. set test_ immediateAck
  160. set guide_      "Tahoe, immediate ACK after an out-of-order packet."
  161. Agent/TCPSink set RFC2581_immediate_ack_ true
  162. $self next
  163. }
  164. Test/immediateAck instproc run {} {
  165. Agent/TCPSink/DelAck set interval_ 200ms
  166.         $self setup Tahoe {3 4}
  167. }
  168. Class Test/noImmediateAck -superclass TestSuite
  169. Test/noImmediateAck instproc init topo {
  170. $self instvar net_ defNet_ test_ guide_
  171. set net_ $topo
  172. set defNet_ net4
  173. set test_ noImmediateAck
  174. set guide_      "Tahoe, no immediate ACK after an out-of-order packet."
  175. Agent/TCPSink set RFC2581_immediate_ack_ false
  176. Test/noImmediateAck instproc run {} [Test/immediateAck info instbody run ]
  177. $self next
  178. }
  179. Class Test/immediateAckReno -superclass TestSuite
  180. Test/immediateAckReno instproc init topo {
  181. $self instvar net_ defNet_ test_ guide_
  182. set net_ $topo
  183. set defNet_ net4
  184. set test_ immediateAckReno
  185. set guide_      "Reno, immediate ACK after an out-of-order packet."
  186. Agent/TCPSink set RFC2581_immediate_ack_ true
  187. $self next
  188. }
  189. Test/immediateAckReno instproc run {} {
  190. Agent/TCPSink/DelAck set interval_ 200ms
  191.         $self setup Reno {3 4}
  192. }
  193. Class Test/noImmediateAckReno -superclass TestSuite
  194. Test/noImmediateAckReno instproc init topo {
  195. $self instvar net_ defNet_ test_ guide_
  196. set net_ $topo
  197. set defNet_ net4
  198. set test_ noImmediateAckReno
  199. set guide_      "Reno, no immediate ACK after an out-of-order packet."
  200. Agent/TCPSink set RFC2581_immediate_ack_ false
  201. Test/noImmediateAckReno instproc run {} [Test/immediateAckReno info instbody run ]
  202. $self next
  203. }
  204. Class Test/immediateAckNewReno -superclass TestSuite
  205. Test/immediateAckNewReno instproc init topo {
  206. $self instvar net_ defNet_ test_ guide_
  207. set net_ $topo
  208. set defNet_ net4
  209. set test_ immediateAckNewReno
  210. set guide_      "New Reno, immediate ACK after an out-of-order packet."
  211. Agent/TCPSink set RFC2581_immediate_ack_ true
  212. $self next
  213. }
  214. Test/immediateAckNewReno instproc run {} {
  215. Agent/TCPSink/DelAck set interval_ 200ms
  216.         $self setup Newreno {3 4}
  217. }
  218. Class Test/noImmediateAckNewReno -superclass TestSuite
  219. Test/noImmediateAckNewReno instproc init topo {
  220. $self instvar net_ defNet_ test_ guide_
  221. set net_ $topo
  222. set defNet_ net4
  223. set test_ noImmediateAckNewReno
  224. set guide_      "New Reno, no immediate ACK after an out-of-order packet."
  225. Agent/TCPSink set RFC2581_immediate_ack_ false
  226. Test/noImmediateAckNewReno instproc run {} [Test/immediateAckNewReno info instbody run ]
  227. $self next
  228. }
  229. Class Test/immediateAckSack -superclass TestSuite
  230. Test/immediateAckSack instproc init topo {
  231. $self instvar net_ defNet_ test_ guide_
  232. set net_ $topo
  233. set defNet_ net4
  234. set test_ immediateAckSack
  235. set guide_      "Sack, immediate ACK after an out-of-order packet."
  236. Agent/TCPSink set RFC2581_immediate_ack_ true
  237. $self next
  238. }
  239. Test/immediateAckSack instproc run {} {
  240. Agent/TCPSink/Sack1/DelAck set interval_ 200ms
  241.         $self setup Sack1 {3 4}
  242. }
  243. Class Test/noImmediateAckSack -superclass TestSuite
  244. Test/noImmediateAckSack instproc init topo {
  245. $self instvar net_ defNet_ test_ guide_
  246. set net_ $topo
  247. set defNet_ net4
  248. set test_ noImmediateAckSack
  249. set guide_      "Sack, no immediate ACK after an out-of-order packet."
  250. Agent/TCPSink set RFC2581_immediate_ack_ false
  251. Test/noImmediateAckSack instproc run {} [Test/immediateAckSack info instbody run ]
  252. $self next
  253. }
  254. TestSuite runTest