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

通讯编程

开发平台:

Visual C++

  1. defc#1{ensuremath{C_{#1}}}
  2. defd#1{ensuremath{D_{#1}}}
  3. chapter{Agent/SRM}
  4. label{chap:agent/srm}
  5. This chapter describes the internals of the SRM implementation in ns.
  6. The chapter is in three parts:
  7. the first part is an overview of a minimal SRM configuration,
  8. and a ``complete'' description of the configuration parameters 
  9. of the base SRM agent.
  10. The second part describes the architecture, internals, and the code path
  11. of the base SRM agent.
  12. The last part of the chapter is a description of the extensions
  13. for other types of SRM agents that have been attempted to date.
  14. The procedures and functions described in this chapter can be found in
  15. nsf{tcl/mcast/srm.tcl}, nsf{tcl/mcast/srm-adaptive.tcl},
  16. nsf{tcl/mcast/srm-nam.tcl}, nsf{tcl/mcast/srm-debug.tcl}, and
  17. nsf{srm.{cc, h}}.
  18. section{Configuration}
  19. label{sec:srm-config}
  20. Running an SRM simulation requires
  21. creating and configuring the agent,
  22. attaching an application-level data source (a traffic generator), and
  23. starting the agent and the traffic generator.
  24. subsection{Trivial Configuration}
  25. paragraph{Creating the Agent}
  26. begin{program}
  27.         set ns [new Simulator]          ; preamble initialization;
  28.         $ns enableMcast
  29.         set node [$ns node]                ; agent to reside on this node;
  30.         set group [$ns allocaddr]           ; multicast group for this agent;
  31.         {bfseries{}set srm [new Agent/SRM]}
  32.         $srm  set dst_ $group            ; configure the SRM agent;
  33.         {bfseries{}$ns attach-agent $node $srm}
  34.         $srm set fid_ 1                ; optional configuration;
  35.         $srm log [open srmStats.tr w]   ; log statistics in this file;
  36.         $srm trace [open srmEvents.tr w]  ; trace events for this agent;
  37. end{program}
  38. The key steps in configuring a virgin SRM agent are to assign
  39. its multicast group, and attach it to a node.
  40. Other useful configuration parameters are
  41. to assign a separate flow id to traffic originating from this agent,
  42. to open a log file for statistics, and
  43. a trace file for trace data%
  44. footnote{%
  45. Note that the trace data can also be used
  46. to gather certain kinds of trace data.
  47. We will illustrate this later.}.
  48. The file
  49. fcnref{code{tcl/mcast/srm-nam.tcl}}{../ns-2/srm-nam.tcl}{Agent/SRM::send}
  50. contains definitions that overload the agent's code{send} methods;
  51. this separates control traffic originating from the agent by type.
  52. Each type is allocated a separate flowID.
  53. The traffic is separated into session messages (flowid = 40),
  54. requests (flowid = 41), and repair messages (flowid = 42).
  55. The base flowid can be changed by setting global variable code{ctrlFid}
  56. to one less than the desired flowid before sourcing code{srm-nam.tcl}.
  57. To do this, the simulation script must source code{srm-nam.tcl}
  58. before creating any SRM agents.
  59. This is useful for analysis of traffic traces, or
  60. for visualization in nam.
  61. paragraph{Application Data Handling}
  62. The agent does not generate any application data on its own;
  63. instead, the simulation user can connect any traffic generation
  64. module to any SRM agent to generate data.
  65. The following code demonstrates
  66. how a traffic generation agent can be attached to an SRM agent:
  67. begin{program}
  68.         set packetSize 210
  69.         set exp0 [new Application/Traffic/Exponential]    ; configure traffic generator;
  70.         $exp0 set packetSize_ $packetSize
  71.         $exp0 set burst_time_ 500ms 
  72.         $exp0 set idle_time_ 500ms
  73.         $exp0 set rate_ 100k 
  74.         {bfseries{}$exp0 attach-agent $srm0} ; attach application to SRM agent;
  75.         {bfseries{}$srm0 set packetSize_ $packetSize} ; to generate repair packets of appropriate size;
  76.         $srm0 set tg_ $exp0 ; pointer to traffic generator object;
  77.         $srm0 set app_fid_ 0 ; fid value for packets generated by traffic generator;
  78. end{program}
  79. The user can attach any traffic generator to an SRM agent.
  80. The SRM agent will add the SRM headers, 
  81. set the destination address to the multicast group, and
  82. deliver the packet to its target.
  83. The SRM header contains the type of the message,
  84. the identity of the sender,
  85. the sequence number of the message,
  86. and (for control messages), the round for which this message is being sent.
  87. Each data unit in SRM is identified as
  88. tup{sender's id, message sequence number}.
  89. The SRM agent does not generate its own data;
  90. it does not also keep track of the data sent,
  91. except to record the sequence numbers of messages received
  92. in the event that it has to do error recovery.
  93. Since the agent has no actual record of past data,
  94. it needs to know what packet size to use for each repair message.
  95. Hence, the instance variable code{packetSize_} specifies the size
  96. of repair messages generated by the agent.
  97. paragraph{Starting the Agent and Traffic Generator}
  98. The agent and the traffic generator must be started separately.
  99. begin{program}
  100.         {bfseries{}fcnref{$srm start}{../ns-2/srm.tcl}{Agent/SRM::start}}
  101.         {bfseries{}fcnref{$exp0 start}{../ns-2/srm.tcl}{Agent/SRM::start-source}}
  102. end{program}
  103. Alternatively, the traffic generator can be started from the SRM Agent:
  104. begin{program}
  105.         {bfseries{}fcnref{$srm0 start-source}{../ns-2/srm.tcl}{Agent/SRM::start-source}}
  106. end{program}
  107. At code{start}, the agent joins the multicast group, and 
  108. starts generating session messages.
  109. The code{start-source} triggers the traffic generator to start sending
  110. data.
  111. subsection{Other Configuration Parameters}
  112. label{sec:config-param}
  113. In addition to the above parameters,
  114. the SRM agent supports additional configuration variables.
  115. Each of the variables described in this section is
  116. both an OTcl class variable and an OTcl object's instance variable.
  117. Changing the class variable changes the default value
  118. for all agents that are created subsequently.
  119. Changing the instance variable of a particular agent
  120. only affects the values used by that agent.
  121. For example,
  122. begin{program}
  123.                 Agent/SRM set D1_ 2.0 ; Changes the class variable;
  124.                 $srm set D1_ 2.0        ; Changes D1_ for the particular $srm object only;
  125. end{program}
  126. The default request and repair timer parameters cite{Floy95:Reliable}
  127. for each SRM agent are:
  128. begin{program}
  129.         Agent/SRM set C1_       2.0 ; request parameters;
  130.         Agent/SRM set C2_       2.0
  131.         Agent/SRM set D1_       1.0 ; repair parameters;
  132.         Agent/SRM set D2_       1.0
  133. end{program}
  134. It is thus possible to trivially obtain two flavors of SRM agents
  135. based on whether the agents use probabilistic or deterministic
  136. suppression by using the following definitions:
  137. begin{program}
  138.         Class Agent/SRM/Deterministic -superclass Agent/SRM
  139.         Agent/SRM/Deterministic set C2_ 0.0
  140.         Agent/SRM/Deterministic set D2_ 0.0
  141.         Class Agent/SRM/Probabilistic -superclass Agent/SRM
  142.         Agent/SRM/Probabilistic set C1_ 0.0
  143.         Agent/SRM/Probabilistic set D1_ 0.0
  144. end{program}
  145. In href{a later section}{Section}{sec:extensions},
  146. we will discuss other ways of extending the SRM agent.
  147. Timer related functions are handled by separate objects
  148. belonging to the class  SRM.
  149. Timers are required for loss recovery and sending periodic session messages.
  150. There are loss recovery objects to send request and repair messages.
  151. The agent creates a separate request or repair object to handle each loss.
  152. In contrast, the agent only creates one session object to send
  153. periodic session messages.
  154. The default classes the express each of these functions are:
  155. begin{program}
  156.         Agent/SRM set requestFunction_  "SRM/request"
  157.         Agent/SRM set repairFunction_   "SRM/repair"
  158.         Agent/SRM set sessionFunction_  "SRM/session"
  159.         Agent/SRM set requestBackoffLimit_      5       ; parameter to requestFunction_;
  160.         Agent/SRM set sessionDelay_             1.0     ; parameter to sessionFunction_;
  161. end{program}
  162. The instance procedures
  163. fcnref{proc[]{requestFunction}}{../ns-/srm.tcl}{Agent/SRM::requestFunction},
  164. fcnref{proc[]{repairFunction}}{../ns-/srm.tcl}{Agent/SRM::repairFunction},
  165. and
  166. fcnref{proc[]{sessionFunction}}{../ns-/srm.tcl}{Agent/SRM::sessionFunction}
  167. can be used to change the default function for individual agents.
  168. The last two lines are specific parameters used by the request 
  169. and session objects.
  170. The href{following section}{Section}{sec:architecture}
  171. describes the implementation of theses objects in greater detail.
  172. subsection{Statistics}
  173. Each agent tracks two sets of statistics:
  174. statistics to measure the response to data loss,
  175. and overall statistics for each request/repair.
  176. In addition, there are methods to access other
  177. information from the agent.
  178. paragraph{Data Loss}
  179. The statistics to measure the response to data losses
  180. tracks the duplicate requests (and repairs),
  181. and the average request (and repair) delay.
  182. The algorithm used is documented in Floyd etal cite{Floy95:Reliable}.
  183. In this algorithm,
  184. each new request (or repair) starts a new request (or repair) period.
  185. During the request (or repair) period, the agent measures
  186. the number of first round duplicate requests (or repairs)
  187. until the round terminates either due to receiving a request (or
  188. repair), or due to the agent sending one.
  189. % These statistics are used by the adaptive timer algorithms;
  190. % we will describe our implementation of these algorithms
  191. % in the following subsections.
  192. The following code illustrates how the user can simple retrieve the
  193. current values in an agent:
  194. begin{program}
  195.                 set statsList [$srm array get statistics_]
  196.                 array set statsArray [$srm array get statistics_]
  197. end{program}
  198. The first form returns a list of key-value pairs.
  199. The second form loads the list into the code{statsArray} for further manipulation.
  200. The keys of the array are
  201. code{dup-req}, code{ave-dup-req}, code{req-delay}, code{ave-req-delay},
  202. code{dup-rep}, code{ave-dup-rep}, code{rep-delay}, and code{ave-rep-delay}.
  203. paragraph{Overall Statistics}
  204. In addition, each loss recovery and session object keeps track of
  205. times and statistics.
  206. In particular, each object records its
  207. code{startTime}, code{serviceTime}, code{distance}, as are relevant to that object;
  208. startTime is the time that this object was created,
  209. serviceTime is the time for this object to complete its task, and the
  210. distance is the one-way time to reach the remote peer.
  211. For request objects, startTime is the time a packet loss is detected,
  212. serviceTime is the time to finally receive that packet,
  213. and distance is the distance to the original sender of the packet.
  214. For repair objects, startTime is the time that a request for
  215. retransmission is received, serviceTime is the time send a repair,
  216. and the distance is the distance to the original requester.
  217. For both types of objects, the serviceTime is normalized by the
  218. distance.
  219. For  the session object,
  220. startTime is the time that the agent joins the multicast group.
  221. serviceTime and distance are not relevant.
  222. Each object also maintains statistics particular to that type of object.
  223. Request objects track the number of duplicate requests and repairs received,
  224. the number of requests sent, and the number of times this object
  225. had to backoff before finally receiving the data.
  226. Repair objects track the number of duplicate requests and repairs,
  227. as well as whether or not this object for this agent sent the repair.
  228. Session objects simply record the number of session messages sent.
  229. The values of the timers and the statistics for each object are written
  230. to the log file every time an object completes the error recovery function
  231. it was tasked to do.
  232. The format of this trace file is:
  233. begin{program}
  234.                 tup{prefix} tup{id} tup{times} tup{stats}
  235. {itshape{}where}
  236. tup{prefix} is         tup{time} n tup{node id} m tup{msg id} r tup{round}
  237.                 tup{msg id} is expressed as tup{source id:sequence number}
  238. tup{id} is             type tup{of object}
  239. tup{times} is          list of key-value pairs of startTime, serviceTime, distance
  240. tup{stats} is          list of key-value pairs of per object statistics
  241.                 code{dupRQST}, code{dupREPR}, code{#sent}, code{backoff}             {itshape for request objects}
  242.                 code{dupRQST}, code{dupREPR}, code{#sent}                      {itshape for repair objects}
  243.                 code{#sent}                                        {itshape for session objects}
  244. end{program}
  245. The following sample output illustrates the output file format (the lines
  246. have been folded to fit on the page):
  247. {small
  248. begin{verbatim}
  249.  3.6274 n 0 m <1:1> r 1 type repair serviceTime 0.500222 
  250.         startTime 3.5853553333333332 distance 0.0105 #sent 1 dupREPR 0 dupRQST 0
  251.  3.6417 n 1 m <1:1> r 2 type request serviceTime 2.66406 
  252.         startTime 3.5542666666666665 distance 0.0105 backoff 1 #sent 1 dupREPR 0 dupRQST 0
  253.  3.6876 n 2 m <1:1> r 2 type request serviceTime 1.33406 
  254.         startTime 3.5685333333333333 distance 0.021 backoff 1 #sent 0 dupREPR 0 dupRQST 0
  255.  3.7349 n 3 m <1:1> r 2 type request serviceTime 0.876812 
  256.         startTime 3.5828000000000002 distance 0.032 backoff 1 #sent 0 dupREPR 0 dupRQST 0
  257.  3.7793 n 5 m <1:1> r 2 type request serviceTime 0.669063 
  258.         startTime 3.5970666666666671 distance 0.042 backoff 1 #sent 0 dupREPR 0 dupRQST 0
  259.  3.7808 n 4 m <1:1> r 2 type request serviceTime 0.661192 
  260.         startTime 3.5970666666666671 distance 0.0425 backoff 1 #sent 0 dupREPR 0 dupRQST 0
  261. end{verbatim}
  262. }
  263. paragraph{Miscellaneous Information}
  264. Finally, the user can use the following methods to gather
  265. additional information about the agent:
  266. begin{list}{textbullet}{}
  267. item
  268.   fcnref{proc[]{groupSize?}}{../ns-2/srm.tcl.html}{Agent/SRM::groupSize?} 
  269.   returns the agent's current estimate of the multicast group size.
  270. item
  271.   fcnref{proc[]{distances?}}{../ns-2/srm.cc.html}{SRMAgent::command}
  272.   returns a list of key-value pairs of distances;
  273.   the key is the address of the agent, 
  274.   the value is the estimate of the distance to that agent.
  275.   The first element is the address of this agent, and the distance of 0.
  276. item
  277.   fcnref{proc[]{distance?}}{../ns-2/srm.cc.html}{SRMAgent::command}
  278.   returns the distance to the particular agent specified as argument.
  279.   The default distance at the start of any simulation is 1.
  280. end{list}
  281. begin{program}
  282.         $srm(i) groupSize?    ; returns $srm(i)'s estimate of the group size;
  283.         $srm(i) distances?    ; returns list of tup{address, distance} tuples;
  284.         $srm(i) distance? 257 ; returns the distance to agent at address 257;
  285. end{program}
  286. subsection{Tracing}
  287. Each object writes out trace information that can be used to track the
  288. progress of the object in its error recovery.
  289. Each trace entry is of the form:
  290. begin{program}
  291. tup{prefix} tup{tag} tup{type of entry} tup{values}
  292. end{program}
  293. The prefix is as describe in the previous section for statistics.
  294. The tag is {bf Q} for request objects, {bf P} for repair objects, and
  295. {bf S} for session objects.
  296. The following types of trace entries and parameters are written by each
  297. object:
  298. centerline{smallrenewcommand{arraystretch}{1.3}
  299. begin{tabular}{rclp{2in}}hline
  300.       & Type of &              & \
  301.   Tag & Object  & Other values & Comments\ hline
  302.   Q & DETECT & & \
  303.   Q & INTERVALS & C1 tup{C1_} C2 tup{C2_} dist tup{distance} i tup{backoff_} & \
  304.   Q & NTIMER & at tup{time} & Time the request timer will fire \
  305.   Q & SENDNACK & & \
  306.   Q & NACK & IGNORE-BACKOFF tup{time} & Receive NACK, ignore other NACKs until
  307.   tup{time} \
  308.   Q & REPAIR & IGNORES tup{time} & Receive REPAIR, ignore NACKs until tup{time}  \
  309.   Q & DATA & & Agent receives data instead of repair.  Possibly indicates out of order arrival of data. \ hline
  310.   P & NACK & from tup{requester} & Receive NACK, initiate repair \
  311.   P & INTERVALS & D1 tup{D1_} D2 tup{D2_} dist tup{distance} & \
  312.   P & RTIMER & at tup{time} & Time the repair timer will fire \
  313.   P & SENDREP & \
  314.   P & REPAIR & IGNORES tup{time} & Receive REPAIR, ignore NACKs until tup{time} \
  315.   P & DATA & & Agent receives data instead of repair.  Indicates premature request by an agent. \ hline
  316.   S & SESSION & & logs session message sent \ hline
  317. end{tabular}}
  318. The following illustrates a typical trace for a single loss and recovery.
  319. {small
  320. begin{verbatim}
  321.  3.5543 n 1 m <1:1> r 0 Q DETECT
  322.  3.5543 n 1 m <1:1> r 1 Q INTERVALS C1 2.0 C2 0.0 d 0.0105 i 1
  323.  3.5543 n 1 m <1:1> r 1 Q NTIMER at 3.57527
  324.  3.5685 n 2 m <1:1> r 0 Q DETECT
  325.  3.5685 n 2 m <1:1> r 1 Q INTERVALS C1 2.0 C2 0.0 d 0.021 i 1
  326.  3.5685 n 2 m <1:1> r 1 Q NTIMER at 3.61053
  327.  3.5753 n 1 m <1:1> r 1 Q SENDNACK
  328.  3.5753 n 1 m <1:1> r 2 Q INTERVALS C1 2.0 C2 0.0 d 0.0105 i 2
  329.  3.5753 n 1 m <1:1> r 2 Q NTIMER at 3.61727
  330.  3.5753 n 1 m <1:1> r 2 Q NACK IGNORE-BACKOFF 3.59627
  331.  3.5828 n 3 m <1:1> r 0 Q DETECT
  332.  3.5828 n 3 m <1:1> r 1 Q INTERVALS C1 2.0 C2 0.0 d 0.032 i 1
  333.  3.5828 n 3 m <1:1> r 1 Q NTIMER at 3.6468
  334.  3.5854 n 0 m <1:1> r 0 P NACK from 257
  335.  3.5854 n 0 m <1:1> r 1 P INTERVALS D1 1.0 D2 0.0 d 0.0105
  336.  3.5854 n 0 m <1:1> r 1 P RTIMER at 3.59586
  337.  3.5886 n 2 m <1:1> r 2 Q INTERVALS C1 2.0 C2 0.0 d 0.021 i 2
  338.  3.5886 n 2 m <1:1> r 2 Q NTIMER at 3.67262
  339.  3.5886 n 2 m <1:1> r 2 Q NACK IGNORE-BACKOFF 3.63062
  340.  3.5959 n 0 m <1:1> r 1 P SENDREP
  341.  3.5959 n 0 m <1:1> r 1 P REPAIR IGNORES 3.62736
  342.  3.5971 n 4 m <1:1> r 0 Q DETECT
  343.  3.5971 n 4 m <1:1> r 1 Q INTERVALS C1 2.0 C2 0.0 d 0.0425 i 1
  344.  3.5971 n 4 m <1:1> r 1 Q NTIMER at 3.68207
  345.  3.5971 n 5 m <1:1> r 0 Q DETECT
  346.  3.5971 n 5 m <1:1> r 1 Q INTERVALS C1 2.0 C2 0.0 d 0.042 i 1
  347.  3.5971 n 5 m <1:1> r 1 Q NTIMER at 3.68107
  348.  3.6029 n 3 m <1:1> r 2 Q INTERVALS C1 2.0 C2 0.0 d 0.032 i 2
  349.  3.6029 n 3 m <1:1> r 2 Q NTIMER at 3.73089
  350.  3.6029 n 3 m <1:1> r 2 Q NACK IGNORE-BACKOFF 3.66689
  351.  3.6102 n 1 m <1:1> r 2 Q REPAIR IGNORES 3.64171
  352.  3.6172 n 4 m <1:1> r 2 Q INTERVALS C1 2.0 C2 0.0 d 0.0425 i 2
  353.  3.6172 n 4 m <1:1> r 2 Q NTIMER at 3.78715
  354.  3.6172 n 4 m <1:1> r 2 Q NACK IGNORE-BACKOFF 3.70215
  355.  3.6172 n 5 m <1:1> r 2 Q INTERVALS C1 2.0 C2 0.0 d 0.042 i 2
  356.  3.6172 n 5 m <1:1> r 2 Q NTIMER at 3.78515
  357.  3.6172 n 5 m <1:1> r 2 Q NACK IGNORE-BACKOFF 3.70115
  358.  3.6246 n 2 m <1:1> r 2 Q REPAIR IGNORES 3.68756
  359.  3.6389 n 3 m <1:1> r 2 Q REPAIR IGNORES 3.73492
  360.  3.6533 n 4 m <1:1> r 2 Q REPAIR IGNORES 3.78077
  361.  3.6533 n 5 m <1:1> r 2 Q REPAIR IGNORES 3.77927
  362. end{verbatim}
  363. }
  364. The logging of request and repair traces is done by
  365. fcnref{proc[]{SRM::evTrace}}{../ns-2/srm.tcl}{SRM::evTrace}.
  366. However, the routine
  367. fcnref{proc[]{SRM/Session::evTrace}}{../ns-2/srm.tcl}{SRM/Session::evTrace},
  368. overrides the base class definition of proc[]{srm::evTrace},
  369. and writes out nothing.
  370. Individual simulation scripts can override these methods
  371. for greater flexibility in logging options.
  372. One possible reason to override these methods might to
  373. reduce the amount of data generated;
  374. the new procedure could then generate compressed and processed output.
  375. Notice that the trace filoe contains sufficient information and details
  376. to derive most of the statistics written out in the log file, or
  377. is stored in the statistics arrays.
  378. section{Architecture and Internals}
  379. label{sec:architecture}
  380. The SRM agent implementation splits the protocol functions
  381. into packet handling, loss recovery, and session message activity.
  382. begin{list}{}{}
  383. item  Packet handling consists of forwarding application data messages,
  384.   sending and receipt of control messages.
  385.   These activities are executed by C++ methods.
  386. item  Error detection is done in C++ due to receipt of messages.
  387.   However, the loss recovery is entirely done through 
  388.   instance procedures in OTcl.
  389. item  The sending and processing of messages is accomplished in C++;
  390.   the policy about when these messages should be sent is decided
  391.   by instance procedures in OTcl.
  392. end{list}
  393. We first describe the C++
  394. href{processing due to receipt of messages}{Section}{sec:receipt}.
  395. Loss recovery and the sending of session messages involves
  396. timer based processing.
  397. The agent uses a separate clsref{SRM}{../ns-2/srm.tcl}
  398. to perform the timer based functions.
  399. For each loss, an agent may do either request or repair processing.
  400. Each agent will instantiate a separate loss recovery object
  401. for every loss, as is appropriate for the processing that it has to do.
  402. In the following section
  403. href{we describe the basic timer based functions and
  404. the loss recovery mechanisms}{Section}{sec:recovery}.
  405. Finally, each agent uses one timer based function
  406. for href{sending periodic session messages}{Section}{sec:session}.
  407. section{Packet Handling: Processing received messages}
  408. label{sec:receipt}
  409. The
  410. fcnref{fcn[]{recv}}{../ns-2/srm.cc}{SRMAgent::recv}
  411. method can receive four type of messages:
  412. data, request, repair, and session messages.
  413. paragraph{Data Packets}
  414. The agent does not generate any data messages.
  415. The user has to specify an external agent to generate traffic.
  416. The fcn[]{recv} method must distinguish between
  417. locally originated data that must be sent to the multicast group,
  418. and data received from multicast group that must be processed.
  419. Therefore, the application agent must
  420. set the packet's destination address to zero.
  421. For locally originated data, 
  422. the agent adds the appropriate SRM headers,
  423. sets the destination address to the multicast group, 
  424. and forwards the packet to its target.
  425. On receiving a data message from the group,
  426. fcnref{fcn[sender, msgid]{recv_data}}{../ns-2/srm.cc}{SRMAgent::recv_data}
  427. will update its state marking message tup{sender, msgid} received,
  428. and possibly trigger requests if it detects losses.
  429. In addition, if the message was an older message received out of order,
  430. then there must be a pending request or repair that must be cleared.
  431. In that case, the compiled object invokes the OTcl instance procedure,
  432. fcnref{proc[sender, msgid]{recv-data}}{%
  433.   ../ns-2/srm.tcl}{Agent/SRM::recv-data}%
  434. footnote{Technically,
  435.   fcn[]{recv_data} invokes the instance procedure
  436.   code{recv data tup{sender} tup{msgid}},
  437.   that then invokes proc[]{recv-data}.
  438.   The indirection allows individual simulation scripts to override the
  439.   proc[]{recv} as needed.}.
  440. Currently, there is no provision for the receivers
  441. to actually receive any application data.
  442. The agent does not also store any of the user data.
  443. It only generates repair messages of the appropriate size,
  444. defined by the instance variable code{packetSize_}.
  445. However, the agent assumes that any application data
  446. is placed in the data portion of the packet,
  447. pointed to by code{packet->accessdata()}.
  448. paragraph{Request Packets}
  449. On receiving a request, 
  450. fcnref{fcn[sender, msgid]{recv_rqst}}{../ns-2/srm.cc}{SRMAgent::recv_rqst}
  451. will check whether it needs to schedule requests for other missing data.
  452. If it has received this request
  453. before it was aware that the source had generated this data message
  454. (ie, the sequence number of the request is higher than 
  455. the last known sequence number of data from this source),
  456. then the agent can infer that it is missing this, as well as data
  457. from the last known sequence number onwards;
  458. it schedules requests for all of the missing data and returns.
  459. On the other hand, if the sequence number of the request is less
  460. than the last known sequence number from the source,
  461. then the agent can be in one of three states:
  462. (1) it does not have this data, and has a request pending for it,
  463. (2) it has the data, and has seen an earlier request,
  464.     upon which it has a repair pending for it, or
  465. (3) it has the data, and it should instantiate a repair.
  466. All of these error recovery mechanisms are done in OTcl;
  467. fcn[]{recv_rqst} invokes the instance procedure
  468. fcnref{proc[sender, msgid,
  469.   requester]{recv-rqst}}{../ns-2/srm.tcl}{Agent/SRM::recv-rqst}
  470. for further processing.
  471. paragraph{Repair Packets}
  472. On receiving a repair, 
  473. fcnref{fcn[sender, msgid]{recv_repr}}{../ns-2/srm.cc}{SRMAgent::recv_repr}
  474. will check whether it needs to schedule requests for other missing data.
  475. If it has received this repair
  476. before it was aware that the source had generated this data message
  477. (ie, the sequence number of the repair is higher than 
  478. the last known sequence number of data from this source),
  479. then the agent can infer that it is missing all
  480. data between the last known sequence number and that on the repair;
  481. it schedules requests for all of this data,
  482.  marks this message as received, and returns.
  483. On the other hand, if the sequence number of the request is less
  484. than the last known sequence number from the source,
  485. then the agent can be in one of three states:
  486. (1) it does not have this data, and has a request pending for it,
  487. (2) it has the data, and has seen an earlier request,
  488.     upon which it has a repair pending for it, or
  489. (3) it has the data, and probably scheduled a repair for it at some time;
  490.     after error recovery, its hold down timer (equal to three times its
  491.     distance to some requester) expired, at which time the pending object
  492.     was cleared.  In this last situation, the agent will simply ignore
  493.     the repair, for lack of being able to do anything meaningful.
  494. All of these error recovery mechanisms are done in OTcl;
  495. fcn[]{recv_repr} invokes the instance procedure
  496. fcnref{proc[sender, msgid]{recv-repr}}{%
  497.   ../ns-2/srm.tcl}{Agent/SRM::recv-rqst}
  498. to complete the loss recovery phase for the particular message.
  499.   
  500. paragraph{Session Packets}
  501. On receiving a session message,
  502. the agent updates its sequence numbers for all active sources,
  503. and computes its instantaneous distance to the sending agent if possible.
  504. The agent will ignore earlier session messages from a group member,
  505. if it has received a later one out of order.
  506.   
  507. Session message processing is done in
  508. fcnref{fcn[]{recv_sess}}{../ns-2/srm.cc}{SRMAgent::recv_sess}.
  509. The format of the session message is:
  510. tup{count of tuples in this message, list of tuples},
  511. where each tuple indicates the
  512. tup{sender id, last sequence number from the source, time the last
  513.   session message was received from this sender, time that that message
  514.   was sent}.
  515. The first tuple is the information about the local agent%
  516. footnote{Note that this implementation of session message handling
  517.   is subtly different from that used in emph{wb} or described in
  518.   cite{Floy95:Reliable}.
  519.   In principle, an agent disseminates a list of the data it has
  520.   actually received.
  521.   Our implementation, on the other hand, only disseminates
  522.   a count of the last message sequence number per source that the
  523.   agent knows that that the source has sent.
  524.   This is a constraint when studying aspects of loss recovery
  525.   during partition and healing.
  526.   It is reasonable to expect that the maintainer of this code will fix
  527.   this problem during one of his numerous intervals of copious spare time.}.
  528. section{Loss Detection---The Class SRMinfo}
  529. label{sec:srminfo}
  530. A very small encapsulating class, entirely in C++,
  531. tracks a number of assorted state information.
  532. Each member of the group, $n_i$,  uses one SRMinfo block for every other
  533. member of the group.
  534. An SRMinfo object about group member $n_j$ at $n_i$,
  535. contains information about the session messages
  536. received by $n_i$ from $n_j$.
  537. $n_i$ can use this information to compute its distance to $n_j$.
  538. If $n_j$ sends is active in sending data traffic, then
  539. the SRMinfo object will also contain information about the
  540. received data, including a bit vector indicating all packets
  541. received from $n_j$.
  542. The agent keeps a list of SRMinfo objects, one per group member,
  543. in its member variable, code{sip_}.
  544. Its method, fcn[int sender]{get_state}
  545. will return the object corresponding to that sender,
  546. possibly creating that object, if it did not already exist.
  547. The clsref{SRMinfo}{../ns-2/srm-state.h} has two methods
  548. to access and set the bit vector, ie,
  549. begin{alist}
  550. fcn[int id]{ifReceived} & indicates whether the particular message
  551.                 from the appropriate sender, with id code{id}
  552.                  was received at $n_i$,\
  553. fcn[int id]{setReceived} & to set the bit to indicate that the
  554.                 particular message from the appropriate sender,
  555.                 with id code{id} was received at $n_i$.
  556. end{alist}
  557. The session message variables to access timing information are public;
  558. no encapsulating methods are provided.  These are:
  559. begin{program}
  560.         int     lsess_;                   * # of last session msg received */
  561.         int     sendTime_;                * Time sess. msg. # sent */
  562.         int     recvTime_;                * Time sess. msg. # received */
  563.         double  distance_;
  564.         /* {cf Data messages} */
  565.         int     ldata_;                   * # of last data msg sent */
  566. end{program}
  567. section{Loss Recovery Objects}
  568. label{sec:recovery}
  569. In the last section,
  570. we described the agent behavior when it receives a message.
  571. Timers are used to control when any particular control message is to be sent.
  572. The SRM agent uses a separate
  573. clsref{SRM}{../ns-2/srm.tcl}
  574. to do the timer based processing.
  575. In this section, we describe the basics if the class SRM,
  576. and the loss recovery objects.
  577. The following section will describe how the class SRM is used 
  578. for sending periodic session messages.
  579. An SRM agent will instantiate one object to recover from one lost data packet.
  580. Agents that detect the loss will instantiate an object in the
  581. clsref{SRM/request}{../ns-2/srm.tcl};
  582. agents that receive a request and have the required data will
  583. instantiate an object in the clsref{SRM/repair}{../ns-2/srm.tcl}.
  584. paragraph{Request Mechanisms}
  585. SRM agents detect loss when they receive a message, and
  586. infer the loss based on the sequence number on the message received.
  587. Since packet reception is handled entirely by the compiled object,
  588. loss detection occurs in the C++ methods.
  589. Loss recovery, however, is handled entirely by instance procedures
  590. of the corresponding interpreted object in OTcl.
  591. When any of the methods detects new losses, it invokes
  592. fcnref{proc[]{Agent/SRM::request}}{../ns-2/srm.tcl}{Agent/SRM::request}
  593. with a list of the message sequence numbers that are missing.
  594. proc[]{request} will create a new code{requestFunction_}
  595. object for each message that is missing.
  596. The agent stores the object handle in its array of code{pending_} objects.
  597. The key to the array is the message identifier tup{sender}:tup{msgid}.
  598. begin{list}{}{}
  599. item 
  600.   The default code{requestFunction_} is clsref{SRM/request}.
  601.   The constructor for the class SRM/request
  602.   calls the base class constructor to initialize 
  603.   the simulator instance (code{ns_}), the SRM agent (code{agent_}),
  604.   trace file (code{trace_}), and the code{times_} array.
  605.   It then initializes its code{statistics_} array with the pertinent elements.
  606. item
  607.   A separate call to
  608.   fcnref{proc[]{set-params}}{../ns-2/srm.tcl}{SRM::set-params}
  609.   sets the code{sender_}, code{msgid_}, code{round_} instance variables for
  610.   the request object.
  611.   The object determines code{C1_} and code{C2_} by querying its code{agent_}.
  612.   It sets its distance to the sender (code{times_(distance)})
  613.   and fixes other scheduling parameters:
  614.   the backoff constant (code{backoff_}),
  615.   the current number of backoffs (code{backoffCtr_}),
  616.   and the limit (code{backoffLimit_}) fixed by the agent.
  617.   proc[]{set-params} writes the trace entry ``textsc{q detect}''.
  618. item
  619.   The final step in proc[]{request} is to schedule the timer
  620.   to send the actual request at the appropriate moment.
  621.   The instance procedure
  622.   fcnref{proc[]{SRM/request::schedule}}{../ns-2/srm.tcl}{%
  623.     SRM/request::schedule}
  624.   uses 
  625.   fcnref{proc[]{compute-delay}}{%
  626.     ../ns-2/srm.tcl}{SRM/request::compute-delay}
  627.   and its current backoff constant to determine the delay.
  628.   The object schedules
  629.   fcnref{proc[]{send-request}}{../ns-2/srm.tcl}{SRM/request::send-request}
  630.   to be executed after code{delay_} seconds.
  631.   The instance variable code{eventID_} stores a handle to the scheduled event.
  632.   The default proc[]{compute-delay} function returns a value
  633.   uniformly distributed in the interval $[C_1 d_s, (C_1 + C_2) d_s]$,
  634.   where $d_s$ is twice code{$times_(distance)}.
  635.   The proc[]{schedule} schedules an event to send a request
  636.   after the computed delay. 
  637.   The routine writes a trace entry ``textsc{q ntimer } at tup{time}''.
  638. end{list}
  639. When the scheduled timer fires, the routine
  640. fcnref{proc[]{send-request}}{../ns-2/srm.tcl}{SRM/request::send-request}
  641. sends the appropriate message.
  642. It invokes ``code{$agent_} send request tup{args}'' to send the request.
  643. Note that proc[]{send} is an instproc-like,
  644. executed by the fcn[]{command} method of the compiled object.
  645. However, it is possible to overload the instproc-like
  646. with a specific instance procedure proc[]{send}
  647. for specific configurations.
  648. As an example, recall that the file code{tcl/mcast/srm-nam.tcl}
  649. overloads the proc[]{send} command
  650. to set the flowid based on type of message that is sent.
  651. proc[]{send-request} updates the statistics, and writes the trace entry
  652. ``textsc{q sendnack}''.
  653. When the agent receives a control message for a packet
  654. for which a pending object exists,
  655. the agent will hand the message off to the object for processing.
  656. begin{list}{}{}
  657. item When a 
  658.   fcnref{request for a particular packet is received}{../ns-2/srm.tcl}{%
  659.         SRM/request::recv-request},
  660.   the request object can be in one of two states:
  661.   it is ignoring requests, considering them to be duplicates, or
  662.   it will cancel its send event and re-schedule another one,
  663.   after having backed off its timer.
  664.   If ignoring requests it will update its statistics,
  665.   and write the trace entry ``textsc{q nack } dup''.
  666.   Otherwise, set a time based on its current estimate of the code{delay_},
  667.   until which to ignore further requests.
  668.   This interval is marked by the instance variable code{ignore_}.
  669.   If the object reschedules its timer, it will write the trace entry
  670.   ``textsc{ q nack ignore-backoff } tup{ignore}''.
  671.   Note that this re-scheduling relies on the fact that
  672.   the agent has joined the multicast group, and will therefore
  673.   receive a copy of every message it sends out.
  674.   
  675. item When the
  676.   fcnref{request object receives a repair for the particular packet}{%
  677.     ../ns-2/srm.tcl}{SRM/request::recv-repair},
  678.   it can be in one of two states:
  679.   either it is still waiting for the repair,
  680.   or it has already received an earlier repair.
  681.   If it is the former, there will be an event pending
  682.   to send a request, and code{eventID_} will point to that event.
  683.   The object will compute its serviceTime, cancel that event,
  684.   and set a hold-down period during which it will ignore 
  685.   other requests.
  686.   At the end of the hold-down period, the object will ask its
  687.   agent to clear it.
  688.   It will write the trace entry ``textsc{q repair ignores } tup{ignore}''.
  689.   On the other hand, if this is a duplicate repair,
  690.   the object will update its statistics, and write the trace entry
  691.   ``textsc{q repair } dup''.
  692. end{list}
  693. When the loss recovery phase is completed by the object,
  694. fcnref{proc[]{Agent/SRM::clear}}{../ns-2/srm.tcl}{Agent/SRM::clear}
  695. will remove the object from its array of code{pending_} objects,
  696. and place it in its list of code{done_} objects.
  697. Periodically, the agent will cleanup and delete the code{done_} objects.
  698. paragraph{Repair Mechanisms}
  699. The agent will initiate a repair if it receives a request for a packet,
  700. and it does not have a request object code{pending_} for that packet.
  701. The default repair object belongs to the
  702. clsref{SRM/repair}{../ns-2/srm.tcl}.
  703. Barring minor differences,
  704. the sequence of events and the instance procedures in this class
  705. are identical to those for SRM/request.
  706. Rather than outline every single procedure, we only outline
  707. the differences from those described earlier for a request object.
  708. The repair object uses the repair parameters, code{D1_}, code{D2_}.
  709. A repair object does not repeatedly reschedule is timers;
  710. therefore, it does not use any of the backoff variables
  711. such as that used by a request object.
  712. The repair object ignores all requests for the same packet.
  713. The repair objet does not use the code{ignore_} variable that
  714. request objects use.
  715. The trace entries written by repair objects are marginally different;
  716. they are ``textsc{p nack } from tup{requester}'',
  717. ``textsc{p rtimer } at tup{fireTime}'',
  718. ``textsc{p sendrep}'', ``textsc{p repair ignores } tup{holddown}''.
  719. Apart from these differences,
  720. the calling sequence for events in a repair object is similar to that
  721. of a request object.
  722. paragraph{Mechanisms for Statistics}
  723. The agent, in concert with the request and repair objects, 
  724. collect statistics about their response to data loss cite{Floy95:Reliable}.
  725. Each call to the agent proc[]{request} procedure marks a new period.
  726. At the start of a new period,
  727. fcnref{proc[]{mark-period}}{../ns-2/srm.tcl}{Agent/SRM::mark-period}
  728. computes the moving average of the number of duplicates in the last period.
  729. Whenever the agent receives a first round request from another agent,
  730. and it had sent a request in that round, then it considers the request
  731. as a duplicate request, and increments the appropriate counters.
  732. A request object does not consider duplicate requests if it did not
  733. itself send a request in the first round. 
  734. If the agent has a repair object pending, then it does not consider
  735. the arrival of duplicate requests for that packet.
  736. The object methods
  737. fcnref{proc[]{SRM/request::dup-request?}}{../ns-2/srm.tcl}{%
  738.         SRM/request::dup-request?} and
  739. fcnref{proc[]{SRM/repair::dup-request?}}{../ns-2/srm.tcl}{%
  740.         SRM/repair::dup-request?} 
  741. encode these policies, and return 0 or 1 as required.
  742. A request object also computes the elapsed time between 
  743. when the loss is detected to when it receives the first request.
  744. The agent computes a moving average of this elapsed time.
  745. The object computes the elapsed time (or delay) when it
  746. fcnref{cancels}{../ns-2/srm.tcl}{SRM/request::cancel}
  747. its scheduled event for the first round.
  748. The object invokes
  749. fcnref{Agent/SRM::update-ave}{../ns-2/srm.tcl}{Agent/SRM::update-ave}
  750. to compute the moving average of the delay.
  751. The agent keeps similar statistics of the duplicate repairs,
  752. and the repair delay.
  753. The agent stores the number of rounds taken for one loss recovery,
  754. to ensure that subsequent loss recovery phases for that packet
  755. that are not definitely not due to data loss
  756. do not account for these statistics.
  757. The agent stores the number of routes taken for a phase in
  758. the array code{old_}.
  759. When a new loss recovery object is instantiated,
  760. the object will use the agent's instance procedure
  761. fcnref{proc[]{round?}}{../ns-2/srm.tcl}{Agent/SRM::round?}
  762. to determine the number of rounds in a previous loss recovery phase
  763. for that packet.
  764. section{Session Objects}
  765. label{sec:session}
  766. Session objects,
  767. href{like the loss recovery objects}{Section}{sec:recovery},
  768. are derived from the base clsref{SRM}.
  769. Unlike the loss recovery objects though,
  770. the agent only creates one session object for the lifetime of the agent.
  771. The constructor invokes the base class constructor as before;
  772. it then sets its instance variable code{sessionDelay_}.
  773. The agent creates the session object when it proc[]{start}s.
  774. At that time, it also invokes
  775. fcnref{SRM/session::schedule}{../ns-2/srm.tcl}{SRM/session::schedule},
  776. to send a session message after code{sessionDelay_} seconds.
  777. When the object sends a session message,
  778. it will schedule to send the next one after some interval.
  779. It will also update its statistics.
  780. fcnref{proc[]{send-session}}{../ns-2/srm.tcl}{SRM/session::send-session}
  781. writes out the trace entry ``textsc{s session}''.
  782. The class overrides the
  783. proc[]{evTrace} routine that writes out the trace entries.
  784. fcnref{SRM/session::evTrace}{../ns-2/srm.tcl}{SRM/sesion::evTrace}
  785. disable writing out the trace entry for session messages.
  786. Two types of session message scheduling strategies are currently
  787. available:
  788. The function in the base class schedules sending session messages at
  789. fixed intervals of code{sessionDelay_} jittered around a small value
  790. to avoid synchronization among all the agents at all the nodes.
  791. clsref{SRM/session/logScaled} schedules sending messages
  792. at intervals of code{sessionDelay} times $log_2$(code{groupSize_})
  793. so that the frequency of session messages is inversely proportional to 
  794. the size of the group.
  795. The base class that sends messages at fixed intervals
  796. is the default code{sessionFunction_} for the agent.
  797. section{Extending the Base Class Agent}
  798. label{sec:extensions}
  799. In
  800. href{the earlier section on configuration parameters}{Section}{sec:config-param},
  801. we had shown how to trivially extend the agent to
  802. get deterministic and probabilistic protocol behavior.
  803. In this section, we describe how to derive more complex
  804. extensions to the protocol for fixed and adaptive timer mechanisms.
  805. subsection{Fixed Timers}
  806. The fixed timer mechanism are done in
  807. the derived clsref{Agent/SRM/Fixed}.
  808. The main difference with fixed timers is that
  809. the repair parameters are set to $log$(code{groupSize_}).
  810. Therefore, 
  811. fcnref{the repair procedure of a fixed timer agent}{../ns-2/srm.tcl}{%
  812.         Agent/SRM/Fixed::repair}
  813. will set d1 and d2 to be proportional to the group size
  814. before scheduling the repair object.
  815. subsection{Adaptive Timers}
  816. Agents using adaptive timer mechanisms
  817. modify their request and repair parameters under three conditions
  818. (1) every time a new loss object is created;
  819. (2) when sending a message; and
  820. (3) when they receive a duplicate, if their relative distance to the loss
  821.     is less than that of the agent that sends the duplicate.
  822. All three changes require extensions to the agent and the loss objects.
  823. The clsref{Agent/SRM/Adaptive}{../ns-2/srm-adaptive.tcl}
  824. uses clsref{SRM/request/Adaptive}{../ns-2/srm-adaptive.tcl} and
  825. clsref{SRM/repair/Adaptive}{../ns-2/srm-adaptive.tcl}
  826. as the request and repair functions respectively.
  827. In addition, the last item requires extending the packet headers,
  828. to advertise their distances to the loss.
  829. The corresponding compiled class for the agent is the
  830. clsref{ASRMAgent}{../ns-2/srm.h}.
  831. paragraph{Recompute for Each New Loss Object}
  832. Each time a new request object is created,
  833. fcnref{SRM/request/Adaptive::set-params}{../ns-2/srm-adaptive.tcl}{%
  834.         SRM/request/Adaptive::set-params}
  835. invokes code{$agent_ recompute-request-params}.
  836. The agent method
  837. fcnref{fcn[]{recompute-request-params}}{../ns-2/srm-adaptive.tcl}{%
  838.         Agent/SRM/Adaptive::recompute-request-params}.
  839. uses the statistics about duplicates and delay
  840. to modify c1 and c2 for the current and future requests.
  841. Similarly,
  842. fcnref{SRM/request/Adaptive::set-params}{../ns-2/srm-adaptive.tcl}{%
  843.         SRM/request/Adaptive::set-params}
  844. for a new repair object
  845. invokes code{$agent_ recompute-repair-params}.
  846. The agent method
  847. fcnref{fcn[]{recompute-repair-params}}{../ns-2/srm-adaptive.tcl}{%
  848.         Agent/SRM/Adaptive::recompute-repair-params}.
  849. uses the statistics objects to modify d1 and d2
  850. for the current and future repairs.
  851. paragraph{Sending a Message}
  852. If a loss object 
  853. fcnref{sends a request}{../ns-2/srm-adaptive.tcl}{%
  854.         SRM/request/Adaptive::send-request}
  855. in its first code{round_},
  856. then the agent, in the instance procedure
  857. fcnref{proc[]{sending-request}}{../ns-2/srm-adaptive.tcl}{%
  858.         Agent/SRM/Adaptive::sending-request},
  859. will lower c1,
  860. and set its instance variable code{closest_(requestor)} to 1.
  861. Similarly,
  862. a loss object that
  863. fcnref{sends a repair}{../ns-2/srm-adaptive.tcl}{%
  864.         SRM/repair/Adaptive::send-repair}
  865. in its first code{round_}
  866. will invoke the agent's instance procedure,
  867. fcnref{proc[]{sending-repair}}{../ns-2/srm-adaptive.tcl}{%
  868.         Agent/SRM/Adaptive::sending-repair},
  869. to lower d1 and set code{closest_(repairor)} to 1.
  870. paragraph{Advertising the Distance}
  871. Each agent must add additional information to each request/repair
  872. that it sends out.
  873. The base clsref{SRMAgent}{../ns-2/srm.cc}
  874. invokes the virtual method
  875. fcnref{fcn[]{addExtendedHeaders}}{../ns-2/srm.h}{%
  876.         SRMAgent::addExtendedHeaders}
  877. for each SRM packet that it sends out.
  878. The method is invoked after adding the SRM packet headers, and
  879. before the packet is transmitted.
  880. The adaptive SRM agent overloads 
  881. fcnref{fcn[]{addExtendedHeaders}}{../ns-2/srm.h}{%
  882.         ASRMAgent::addExtendedHeaders}
  883. to specify its distances in the additional headers.
  884. When sending a request, that agent unequivocally knows the
  885. identity of the sender.
  886. As an example, the definition of
  887. fcn[]{addExtendedHeaders} for the adaptive SRM agent is:
  888. begin{program}
  889.         void addExtendedHeaders(Packet* p) {
  890.                 SRMinfo* sp;
  891.                 hdr_srm*  sh = (hdr_srm*) p->access(off_srm_);
  892.                 hdr_asrm* seh = (hdr_asrm*) p->access(off_asrm_);
  893.                 switch (sh->type()) {
  894.                 case SRM_RQST:
  895.                         sp = get_state(sh->sender());
  896.                         seh->distance() = sp->distance_;
  897.                         break;
  898.                 ldots
  899.                 }
  900.         }
  901. end{program}
  902. Similarly, the method
  903. fcnref{fcn[]{parseExtendedHeaders}}{../ns-2/srm.h}{%
  904.         ASRMAgent::parseExtendedHeaders}
  905. is invoked every time an SRM packet is received.
  906. It sets the agent member variable code{pdistance_}
  907. to the distance advertised by the peer that sent the message.
  908. The member variable is bound to an instance variable of the same name,
  909. so that the peer distance can be accessed
  910. by the appropriate instance procedures.
  911. The corresponding fcn[]{parseExtendedHeaders} method for the
  912. Adaptive SRM agent is simply:
  913. begin{program}
  914.         void parseExtendedHeaders(Packet* p) {
  915.                 hdr_asrm* seh = (hdr_asrm*) p->access(off_asrm_);
  916.                 pdistance_ = seh->distance();
  917.         }
  918. end{program}
  919. Finally, the adaptive SRM agent's extended headers are defined as
  920. structref{hdr_asrm}{../ns-2/srm.h}.
  921. The header declaration is identical to declaring other packet headers in ns.
  922. % xref external documentation here.
  923. Unlike most other packet headers, 
  924. these are not automatically available in the packet.
  925. The
  926. fcnref{interpreted constructor}{../ns-2/srm-adaptive.tcl}{%
  927.         Agent/SRM/Adaptive::init}
  928. for the first adaptive agent
  929. will add the header to the packet format.
  930. For example, the start of the constructor for the
  931. code{Agent/SRM/Adaptive} agent is:
  932. begin{program}
  933.         Agent/SRM/Adaptive set done_ 0
  934.         Agent/SRM/Adaptive instproc init args {
  935.             if ![$class set done_] {
  936.                 set pm [[Simulator instance] set packetManager_]
  937.                 TclObject set off_asrm_ [$pm allochdr aSRM]
  938.                 $class set done_ 1
  939.             }
  940.             eval $self next $args
  941.             ldots
  942.         }
  943. end{program}
  944. section{SRM objects}
  945. label{srmobjects}
  946. SRM objects are a subclass of agent objects that implement the SRM
  947. reliable multicast transport protocol. They inherit all of the generic
  948. agent functionalities. The methods for this object is described in the
  949. next section ref{sec:srmcommand}. Configuration parameters for this object
  950. are:
  951. begin{description}
  952. item[packetSize_] The data packet size that will be used for repair
  953. messages. The default value is 1024. 
  954. item[requestFunction_] The algorithm used to produce a retransmission
  955. request, e.g., setting request timers. The default value is SRM/request.
  956. Other possible request functions are SRM/request/Adaptive, used by the
  957. Adaptive SRM code. 
  958. item[repairFunction_]
  959. The algorithm used to produce a repair, e.g., compute repair timers. The
  960. default value is SRM/repair. Other possible request functions are
  961. SRM/repair/Adaptive, used by the Adaptive SRM code. 
  962. item[sessionFunction_]
  963. The algorithm used to generate session messages. Default is SRM/session 
  964. item[sessionDelay_]
  965. The basic interval of session messages. Slight random variation is added
  966. to this interval to avoid global synchronization of session messages. User
  967. may want to adjust this variable according to their specific simulation.
  968. Default value is 1.0. 
  969. item[C1_, C2_]
  970. The parameters which control the request timer. Refer to [8] for detail.
  971. The default value is C1_ = C2_ = 2.0. 
  972. item[D1_, D2_]
  973. The parameters which control the repair timer. Refer to [8] for detail.
  974. The default value is D1_ = D2_ = 1.0. 
  975. item[requestBackoffLimit_]
  976. The maximum number of exponential backoffs. Default value is 5. 
  977. end{description}
  978. State Variables are:
  979. begin{description}
  980. item[stats_]
  981. An array containing multiple statistics needed by adaptive SRM agent.
  982. Including: duplicate requests and repairs in current request/repair
  983. period, average number of duplicate requests and repairs, request and
  984. repair delay in current request/repair period, average request and repair
  985. delay. 
  986. end{description}
  987. textsc{SRM/Adaptive Objects}
  988. SRM/Adaptive objects are a subclass of the SRM objects that implement the
  989. adaptive SRM reliable multicast transport protocol. They inherit all of
  990. the SRM object functionalities. 
  991. State Variables are: \
  992. (Refer to the SRM paper by Sally et al [Fall, K., Floyd, S., and
  993. Henderson, T., Ns Simulator Tests for Reno FullTCP. URL
  994. ftp://ftp.ee.lbl.gov/papers/fulltcp.ps. July 1997.] for more detail.)
  995. begin{description}
  996. item[pdistance_]
  997. This variable is used to pass the distance estimate provided by the remote
  998. agent in a request or repair message. 
  999. item[D1_, D2_]
  1000. The same as that in SRM agents, except that they are initialized to
  1001. log10(group size) when generating the first repair. 
  1002. item[MinC1_, MaxC1_, MinC2_, MaxC2_]
  1003. The minimum/maximum values of C1_ and C2_. Default initial values are
  1004. defined in [8]. These values define the dynamic range of C1_ and C2_. 
  1005. item[MinD1_, MaxD1_, MinD2_, MaxD2_]
  1006. The minimum/maximum values of D1_ and D2_. Default initial values are
  1007. defined in [8]. These values define the dynamic range of D1_ and D2_. 
  1008. item[AveDups]
  1009. Higher bound for average duplicates. 
  1010. item[AveDelay]
  1011. Higher bound for average delay. 
  1012. item[eps AveDups] -dups determines the lower bound of the number of
  1013. duplicates, when we should adjust parameters to decrease delay. 
  1014. end{description}
  1015. section{Commands at a glance}
  1016. label{sec:srmcommand}
  1017. The following is a list of commands to create/manipulate srm agents in
  1018. simulations:
  1019. begin{flushleft}
  1020. code{set srm0 [new Agent/SRM]}\
  1021. This creates an instance of the SRM agent. In addition to the base class,
  1022. two extensions of the srm agent have been implemented. They are
  1023. Agent/SRM/Fixed and Agent/SRM/Adaptive. See section ref{sec:extensions}
  1024. for details about these extensions.
  1025. code{ns_ attach-agent <node> <srm-agent>}\
  1026. This attaches the srm agent instance to the given <node>.
  1027. begin{program}
  1028. set grp [Node allocaddr]
  1029. $srm set dst_ $grp
  1030. end{program}
  1031. This assigns the srm agent to a multicast group represented by the mcast
  1032. address <grp>.
  1033. Configuration parameters for srm agent may be set as follows:\
  1034. begin{program}
  1035. $srm set fid_ <flow-id>
  1036. $srm set tg_ <traffic-generator-instance>
  1037. .. etc
  1038. end{program}
  1039. For all possible parameters and their default values please lookup ns/tcl/mcast/srm.tcl
  1040. and ns/tcl/mcast/srm-adaptive.tcl.
  1041. begin{program}
  1042. set exp [new Application/Traffic/Exponential]
  1043. $exp attach-agent $srm
  1044. end{program}
  1045. This command attaches a traffic generator (an exponential one in this example),
  1046. to the srm agent.
  1047. code{$srm start; $exp start}\
  1048. These commands start the srm agent and traffic generator. Note that the srm
  1049. agent and traffic generator have to be started separately. Alternatively, the
  1050. traffic generator may be started through the agent as follows:\
  1051. code{$srm start-source}.
  1052. See ns/tcl/ex/srm.tcl for a simple example of setting up a SRM agent.
  1053. end{flushleft}
  1054. endinput
  1055. ### Local Variables:
  1056. ### mode: latex
  1057. ### comment-column: 60
  1058. ### backup-by-copying-when-linked: t
  1059. ### file-precious-flag: nil
  1060. ### End: