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

通讯编程

开发平台:

Visual C++

  1. %
  2. % personal commentary:
  3. %        DRAFT DRAFT DRAFT
  4. %        - KFALL
  5. %
  6. chapter{Trace and Monitoring Support}
  7. label{chap:trace}
  8. The procedures and functions described in this chapter can be found in
  9. nsf{trace.{cc, h}},
  10. nsf{tcl/lib/ns-trace.tcl},
  11. nsf{queue-monitor.{cc, h}},
  12. nsf{tcl/lib/ns-link.tcl},
  13. nsf{packet.h},
  14. nsf{flowmon.cc}, and
  15. nsf{classifier-hash.cc}.
  16. There are a number of ways of collecting output or
  17. trace data on a simulation.
  18. Generally, trace data is either displayed directly during execution
  19. of the simulation, or (more commonly) stored in a file to be
  20. post-processed and analyzed.
  21. There are two primary but distinct types of monitoring capabilities
  22. currently supported by the simulator.
  23. The first, called {em traces}, record each individual packet
  24. as it arrives, departs, or is dropped at a link or queue.
  25. Trace objects are configured into a simulation as nodes in the
  26. network topology, usually with a Tcl ``Channel'' object
  27. hooked to them, representing the destination of collected data
  28. (typically a trace file in the current directory).
  29. The other types of objects, called {em monitors}, record counts
  30. of various interesting quantities such as packet and byte arrivals,
  31. departures, etc.
  32. Monitors can monitor counts associated with all packets,
  33. or on a per-flow basis using a 
  34. {em flow monitor} below (Section~ref{sec:flowmon}).
  35. To support traces, there is a special {em common} header
  36. included in each packet (this format is defined in nsf{packet.h}
  37. as code{hdr_cmn}).
  38. It presently includes a unique identifier on each packet, a
  39. packet type field (set by agents when they generate packets),
  40. a packet size field (in bytes, used to determine the transmission
  41. time for packets), and an interface label (used for computing
  42. multicast distribution trees).
  43. Monitors are supported by a separate
  44. set of objects that are created and inserted into the network topology
  45. around queues.
  46. They provide a place where
  47. arrival statistics and times are gathered and make use of the
  48. clsref{Integrator}{../ns-2/integrator.h} (Section~ref{sec:integral})
  49. to compute statistics over time intervals.
  50. section{Trace Support}
  51. label{sec:otcltrace}
  52. The trace support in OTcl consists of a number of specialized
  53. classes visible in OTcl but implemented in C++, combined
  54. with a set of Tcl helper procedures and classes defined in the ns library.
  55. All following OTcl classes are supported by underlying C++
  56. classes defined in nsf{trace.cc}.
  57. Objects of the following types are inserted directly in-line in the
  58. network topology:
  59. begin{tabularx}{linewidth}{rX}
  60. Trace/Hop & trace a ``hop'' (XXX what does this mean exactly; it is not really used XXX) \
  61. Trace/Enque & a packet arrival (usually at a queue) \
  62. Trace/Deque & a packet departure (usually at a queue) \
  63. Trace/Drop & packet drop (packet delivered to drop-target) \
  64. Trace/Recv & packet receive event at the destination node of a link \
  65. SnoopQueue/In & on input, collect a time/size sample (pass packet on) \
  66. SnoopQueue/Out & on output, collect a time/size sample (pass packet on) \
  67. SnoopQueue/Drop & on drop, collect a time/size sample (pass packet on) \
  68. SnoopQueue/EDrop & on an "early" drop, collect a time/size sample (pass packet on) \
  69. end{tabularx}
  70. Objects of the following types are added in the simulation and a referenced
  71. by the objects listed above.  They are used to aggregate statistics collected
  72. by the SnoopQueue objects:
  73. begin{tabularx}{linewidth}{rX}
  74. QueueMonitor & receive and aggregate collected samples from snoopers \
  75. QueueMonitor/ED & queue-monitor capable of distinguishing between ``early'' and standard packet drops \
  76. QueueMonitor/ED/Flowmon & per-flow statistics monitor (manager) \
  77. QueueMonitor/ED/Flow & per-flow statistics container \
  78. QueueMonitor/Compat & a replacement for a standard QueueMonitor when ns~v1 compatibility is in use \
  79. end{tabularx}
  80. subsection{OTcl Helper Functions}
  81. label{sec:helptrace}
  82. The following helper functions may be used within simulation
  83. scripts to help in attaching trace elements (see nsf{tcl/lib/ns-lib.tcl});
  84. they are instance procedures of the class Simulator:
  85. begin{tabularx}{linewidth}{rX}
  86. code{flush-trace {}} & flush buffers
  87.         for all trace objects in simulation \
  88. code{create-trace { type file src dst }} & create
  89.         a trace object of type {em type}
  90.         between the given src and dest nodes.
  91.         If {em file} is non-null, it is interpreted as a Tcl channel
  92.         and is attached to the newly-created trace object. 
  93.         The procedure returns the handle to the newly created trace object.\
  94. code{trace-queue { n1 n2 file }} & arrange for tracing on the link
  95.         between nodes {em n1} and {em n2}.
  96.         This function calls create-trace,
  97.         so the same rules apply with respect to the {em file} argument. \
  98. code{trace-callback{ ns command }} & arranges to call code{command}
  99.         when a line is to be traced.
  100.         The procedure treats code{command}
  101.         as a string and evaluates it for every line traced.
  102.         See nsf{tcl/ex/callback_demo.tcl} for additional details on usage.\
  103. code{monitor-queue { n1 n2 }} & this function
  104.         calls the {tt init-monitor} function
  105.         on the link between nodes {em n1} and {em n2}. \
  106. code{drop-trace { n1 n2 trace }} & the given {em trace} object
  107.         is made the drop-target of the queue
  108.         associated with the link between nodes {em n1} and {em n2}.
  109. end{tabularx}
  110. The proc[]{create-trace} procedure is used to create a new code{Trace}
  111. object of the appropriate kind and attach an Tcl I/O channel to it
  112. (typically a file handle).
  113. The code{src_} and code{dst_} fields are are used by the underlying C++
  114. object for producing the trace output file so that trace output
  115. can include the node addresses defining the endpoints of the link which
  116. is being traced.
  117. Note that they are not used for {em matching}.  Specifically, these
  118. values in no way relate to the packet header code{src} and code{dst}
  119. fields, which are also displayed when tracing.
  120. See the description of the code{Trace} class below (Section~ref{sec:tracemoncplus}).
  121. The code{trace-queue} function enables
  122. code{Enque}, code{Deque}, and code{Drop} tracing on the link
  123. between nodes code{n1} and code{n2}.
  124. The Link code{trace} procedure is described below (Section~ref{sec:libexam}).
  125. The code{monitor-queue} function is constructed similarly to
  126. code{trace-queue}.
  127. By calling the link's code{init-monitor} procedure, it arranges
  128. for the creation of objects (code{SnoopQueue} and code{QueueMonitor}
  129. objects) which can, in turn, be used to ascertain time-aggregated
  130. queue statistics.
  131. The code{drop-trace} function provides a way to specify a
  132. code{Queue}'s drop target without having a direct handle of
  133. the queue.
  134. section{Library support and examples}
  135. label{sec:libexam}
  136. The code{Simulator} procedures described above require the code{trace}
  137. and code{init-monitor} methods associated with the OTcl code{Link} class.
  138. Several subclasses of link are defined, the most common of which
  139. is called code{SimpleLink}.  Thus, the code{trace} and code{init-monitor}
  140. methods are actually part of the code{SimpleLink} class rather than
  141. the code{Link} base class.
  142. The code{trace} function is defined as follows (in code{ns-link.tcl}):
  143. begin{program}
  144. #
  145. # {cf Build trace objects for this link and}
  146. # {cf update the object linkage}
  147. #
  148. SimpleLink instproc trace { ns f } {
  149.         $self instvar enqT_ deqT_ drpT_ queue_ link_ head_ fromNode_ toNode_
  150.         $self instvar drophead_
  151.         set enqT_ [$ns create-trace Enque $f $fromNode_ $toNode_]
  152.         set deqT_ [$ns create-trace Deque $f $fromNode_ $toNode_]
  153.         set drpT_ [$ns create-trace Drop $f $fromNode_ $toNode_]
  154.         $drpT_ target [$drophead_ target]
  155.         $drophead_ target $drpT_
  156.         $queue_ drop-target $drpT_
  157.         $deqT_ target [$queue_ target]
  158.         $queue_ target $deqT_
  159.         if { [$head_ info class] == "networkinterface" } {
  160.             $enqT_ target [$head_ target]
  161.             $head_ target $enqT_
  162.             # puts "head is i/f"
  163.         } else {
  164.             $enqT_ target $head_
  165.             set head_ $enqT_
  166.             # puts "head is not i/f"
  167.         }
  168. }
  169. end{program}
  170. This function establishes code{Enque}, code{Deque}, and code{Drop}
  171. traces in the simulator code{$ns} and directs their
  172. output to I/O handle code{$f}.
  173. The function assumes a queue has been associated with the link.
  174. It operates by first creating three new trace objects
  175. and inserting the code{Enque} object before the queue, the
  176. code{Deque} object after the queue, and the code{Drop} object
  177. between the queue and its previous drop target.
  178. Note that all trace output is directed to the same I/O handle.
  179. This function performs one other  additional tasks.
  180. It checks to see if a link contains a network interface,
  181. and if so, leaves it as the first object in the chain of objects
  182. in the link, but otherwise inserts the code{Enque} object as
  183. the first one.
  184. %The second additional task check to see if link dynamics
  185. %(see ref{linkdynamics}) are enabled for links in the simulation
  186. %and if so, enables tracing of the link's up/down status.
  187. % While the code still does this, and it should be fixed,
  188. % This is not strictly essential, as link dynamics is only
  189. % created just before runtime now, and hence will not
  190. % be defined when the simulation starts.
  191. %
  192. The following functions, code{init-monitor} and
  193. code{attach-monitor}, are used to create a set of
  194. objects used to monitor queue sizes of a queue associated
  195. with a link.
  196. They are defined as follows:
  197. begin{program}
  198.         SimpleLink instproc attach-monitors { insnoop outsnoop dropsnoop qmon } {
  199.                 $self instvar queue_ head_ snoopIn_ snoopOut_ snoopDrop_
  200.                 $self instvar drophead_ qMonitor_
  201.                 set snoopIn_ $insnoop
  202.                 set snoopOut_ $outsnoop
  203.                 set snoopDrop_ $dropsnoop
  204.                 $snoopIn_ target $head_
  205.                 set head_ $snoopIn_
  206.                 $snoopOut_ target [$queue_ target]
  207.                 $queue_ target $snoopOut_
  208.                 $snoopDrop_ target [$drophead_ target]
  209.                 $drophead_ target $snoopDrop_
  210.                 $snoopIn_ set-monitor $qmon
  211.                 $snoopOut_ set-monitor $qmon
  212.                 $snoopDrop_ set-monitor $qmon
  213.                 set qMonitor_ $qmon
  214.         }
  215.         #
  216.         # {cf Insert objects that allow us to monitor the queue size}
  217.         # {cf of this link.  Return the name of the object that}
  218.         # {cf can be queried to determine the average queue size.}
  219.         #
  220.         SimpleLink instproc init-monitor { ns qtrace sampleInterval} {
  221.                 $self instvar qMonitor_ ns_ qtrace_ sampleInterval_
  222.                 set ns_ $ns
  223.                 set qtrace_ $qtrace
  224.                 set sampleInterval_ $sampleInterval
  225.                 set qMonitor_ [new QueueMonitor]
  226.                 $self attach-monitors [new SnoopQueue/In] bs
  227.                         [new SnoopQueue/Out] [new SnoopQueue/Drop] $qMonitor_
  228.                 set bytesInt_ [new Integrator]
  229.                 $qMonitor_ set-bytes-integrator $bytesInt_
  230.                 set pktsInt_ [new Integrator]
  231.                 $qMonitor_ set-pkts-integrator $pktsInt_
  232.                 return $qMonitor_
  233.         }
  234. end{program}
  235. These functions establish queue monitoring on the code{SimpleLink} object
  236. in the simulator code{ns}.
  237. Queue monitoring is implemented by constructing three code{SnoopQueue}
  238. objects and one code{QueueMonitor} object.
  239. The code{SnoopQueue} objects are linked in around a code{Queue} in a way
  240. similar to code{Trace} objects.
  241. The code{SnoopQueue/In(Out)} object monitors packet arrivals(departures)
  242. and reports them to an associated code{QueueMonitor} agent.
  243. In addition, a code{SnoopQueue/Out} object is also used to accumulate
  244. packet drop statistics to an associated code{QueueMonitor} object.
  245. For code{init-monitor} the same code{QueueMonitor} object is used
  246. in all cases.
  247. The C++ definitions of the code{SnoopQueue} and code{QueueMonitor}
  248. classes are described below.
  249. section{The C++ Trace Class}
  250. label{sec:tracemoncplus}
  251. Underlying C++ objects are created in support of the interface specified
  252. in Section~ref{sec:tracemoncplus} and are linked into the network topology
  253. as network elements.
  254. The single C++ code{Trace} class is used to implement the OTcl
  255. classes code{Trace/Hop}, code{Trace/Enque}, code{Trace/Deque},
  256. and code{Trace/Drop}.
  257. The code{type_} field is used to differentiate among the
  258. various types of
  259. traces any particular code{Trace} object might implement.
  260. Currently, this field may contain one of the following symbolic characters:
  261. {bf +} for enque, {bf -} for deque, {bf h} for hop, and
  262. {bf d} for drop.
  263. The overall class is defined as follows in nsf{trace.cc}:
  264. begin{program}
  265.         class Trace : public Connector {
  266.          protected:
  267.                 int type_;
  268.                 nsaddr_t src_;
  269.                 nsaddr_t dst_;
  270.                 Tcl_Channel channel_;
  271.                 int callback_;
  272.                 char wrk_[256];
  273.                 void format(int tt, int s, int d, Packet* p);
  274.                 void annotate(const char* s);
  275.                 int show_tcphdr_;  // {cf bool flags; backward compat}
  276.          public:
  277.                 Trace(int type);
  278.                 ~Trace();
  279.                 int command(int argc, const char*const* argv);
  280.                 void recv(Packet* p, Handler*);
  281.                 void dump();
  282.                 inline char* buffer() { return (wrk_); }
  283.         };
  284. end{program}
  285. The code{src_}, and code{dst_} internal state is used
  286. to label trace output and is independent of the corresponding field
  287. names in packet headers.
  288. The main fcn[]{recv} method is defined as follows:
  289. begin{program}
  290.         void Trace::recv(Packet* p, Handler* h)
  291.         {
  292.                 format(type_, src_, dst_, p);
  293.                 dump();
  294.                 /* {cf hack: if trace object not attached to anything free packet} */
  295.                 if (target_ == 0)
  296.                         Packet::free(p);
  297.                 else
  298.                         send(p, h); /* fcn[]{Connector::send} */
  299.         }
  300. end{program}
  301. The function merely formats a trace entry using the source, destination,
  302. and particular trace type character.
  303. The code{dump} function writes the formatted entry out to the
  304. I/O handle associated with code{channel_}.
  305. The code{format} function, in effect, dictates the trace file format.
  306. section{Trace File Format}
  307. label{sec:traceformat}
  308. The fcn[]{Trace::format} method defines the trace file format used
  309. in trace files produced by the code{Trace} class.
  310. It is constructed to maintain backward compatibility with output files
  311. in earlier versions of the simulator (ie, ns~v1) so that ns~v1
  312. post-processing scripts continue to operate.
  313. The important pieces of its implementation are as follows:
  314. begin{program}
  315.         // {cf this function should retain some backward-compatibility, so that}
  316.         // {cf scripts don't break.}
  317.         void Trace::format(int tt, int s, int d, Packet* p)
  318.         {
  319.                 hdr_cmn *th = (hdr_cmn*)p->access(off_cmn_);
  320.                 hdr_ip *iph = (hdr_ip*)p->access(off_ip_);
  321.                 hdr_tcp *tcph = (hdr_tcp*)p->access(off_tcp_);
  322.                 hdr_rtp *rh = (hdr_rtp*)p->access(off_rtp_);
  323.                 packet_t t = th->ptype();
  324.                 const char* name = packet_info.name(t);
  325.                 if (name == 0)
  326.                         abort();
  327.                 int seqno;
  328.                 /* XXX */
  329.                 /* {cf CBR's now have seqno's too} */
  330.                 if (t == PT_RTP || t == PT_CBR)
  331.                         seqno = rh->seqno();
  332.                 else if (t == PT_TCP || t == PT_ACK)
  333.                         seqno = tcph->seqno();
  334.                 else
  335.                         seqno = -1;
  336.                 ldots
  337.                 if (!show_tcphdr_) {
  338.                         sprintf(wrk_, "%c %g %d %d %s %d %s %d %d.%d %d.%d %d %d",
  339.                                 tt,
  340.                                 Scheduler::instance().clock(),
  341.                                 s,
  342.                                 d,
  343.                                 name,
  344.                                 th->size(),
  345.                                 flags,
  346.                                 iph->flowid() /* was p->class_ */,
  347.                                 iph->src() >> 8, iph->src() & 0xff,     // XXX
  348.                                 iph->dst() >> 8, iph->dst() & 0xff,     // XXX
  349.                                 seqno,
  350.                                 th->uid() /* was p->uid_ */);
  351.                 } else {
  352.                         sprintf(wrk_,
  353.                         "%c %g %d %d %s %d %s %d %d.%d %d.%d %d %d %d 0x%x %d",
  354.                                 tt,
  355.                                 Scheduler::instance().clock(),
  356.                                 s,
  357.                                 d,
  358.                                 name,
  359.                                 th->size(),
  360.                                 flags,
  361.                                 iph->flowid() /* was p->class_ */,
  362.                                 iph->src() >> 8, iph->src() & 0xff,     // XXX
  363.                                 iph->dst() >> 8, iph->dst() & 0xff,     // XXX
  364.                                 seqno,
  365.                                 th->uid(), /* was p->uid_ */
  366.                                 tcph->ackno(),
  367.                                 tcph->flags(),
  368.                                 tcph->hlen());
  369.                 }
  370. end{program}
  371. This function is somewhat unelegant, primarily due to the desire
  372. to maintain backward compatibility.
  373. It formats the source, destination, and type fields defined in the
  374. trace object ({em not in the packet headers}), the current time,
  375. along with various packet header fields including,
  376. type of packet (as a name), size, flags (symbolically),
  377. flow identifier, source and destination packet header fields,
  378. sequence number (if present), and unique identifier.
  379. The code{show_tcphdr_} variable indicates whether the trace
  380. output should append tcp header information (ack number, flags, header length)
  381. at the end of each output line.
  382. This is especially useful for simulations using
  383. FullTCP agents (Section~ref{sec:fulltcp}).
  384. An example of a trace file (without the tcp header fields) might
  385. appear as follows: 
  386. begin{small}
  387. begin{verbatim}
  388. + 1.84375 0 2 cbr 210 ------- 0 0.0 3.1 225 610
  389. - 1.84375 0 2 cbr 210 ------- 0 0.0 3.1 225 610
  390. r 1.84471 2 1 cbr 210 ------- 1 3.0 1.0 195 600
  391. r 1.84566 2 0 ack 40 ------- 2 3.2 0.1 82 602
  392. + 1.84566 0 2 tcp 1000 ------- 2 0.1 3.2 102 611
  393. - 1.84566 0 2 tcp 1000 ------- 2 0.1 3.2 102 611
  394. r 1.84609 0 2 cbr 210 ------- 0 0.0 3.1 225 610
  395. + 1.84609 2 3 cbr 210 ------- 0 0.0 3.1 225 610
  396. d 1.84609 2 3 cbr 210 ------- 0 0.0 3.1 225 610
  397. - 1.8461 2 3 cbr 210 ------- 0 0.0 3.1 192 511
  398. r 1.84612 3 2 cbr 210 ------- 1 3.0 1.0 196 603
  399. + 1.84612 2 1 cbr 210 ------- 1 3.0 1.0 196 603
  400. - 1.84612 2 1 cbr 210 ------- 1 3.0 1.0 196 603
  401. + 1.84625 3 2 cbr 210 ------- 1 3.0 1.0 199 612
  402. end{verbatim}
  403. end{small}
  404. Here we see 14 trace entries, five enque operations (indicated by ``+''
  405. in the first column), four deque operations (indicated by ``-''),
  406. four receive events (indicated by ``r''), and one drop event.
  407. (this had better be a trace fragment, or
  408. some packets would have just vanished!).
  409. The simulated time (in seconds) at which each event occurred is listed
  410. in the second column.
  411. The next two fields indicate between which two nodes tracing is happening.
  412. The next field is 
  413. a descriptive name for the the type of packet seen 
  414. (Section~ref{sec:traceptype}).
  415. The next field is the packet's size, as encoded in its IP header.
  416. The next field contains the flags, which not used in this example.
  417. The flags are defined in the flags[] array in trace.cc. 
  418. Four of the flags are used for ECN:
  419. ``E'' for Congestion Experienced (CE) and ``N'' for 
  420. ECN-Capable-Transport (ECT) indications
  421. in the IP header, and 
  422. ``C'' for ECN-Echo and ``A'' for Congestion Window Reduced (CWR) 
  423. in the TCP header.
  424. For the other flags, ``P'' is for priority, and ``F'' is for TCP Fast Start.
  425. The next field gives the IP {em flow identifier} field as defined
  426. for IP version 6.footnote{In ns~v1, each packet included a code{class}
  427. field, which was used by CBQ to classify packets.
  428. It then found additional use to differentiate between
  429. ``flows'' at one trace point.  In ns~v2, the flow ID field is available
  430. for this purpose, but any additional information (which was commonly overloaded
  431. into the class field in ns~v1) should be placed in its own separate field,
  432. possibly in some other header}.
  433. The subsequent two fields indicate the packet's source and destination
  434. node addresses, respectively.
  435. The following field indicates the sequence number.footnote{In ns~v1,
  436. all packets contained a sequence number, whereas in ns~v2 only those
  437. Agents interested in providing sequencing will generate sequence numbers.
  438. Thus, this field may not be useful in ns~v2 for packets generated by
  439. agents that have not filled in a sequence number.  It is used here
  440. to remain backward compatible with ns~v1.}
  441. The last field is a unique packet identifier.  Each new packet
  442. created in the simulation is assigned a new, unique identifier.
  443. section{Packet Types}
  444. label{sec:traceptype}
  445. Each packet contains a packet type field used by code{Trace::format}
  446. to print out the type of packet encountered.
  447. The type field is defined in the code{TraceHeader} class, and is considered
  448. to be part of the trace support; it is not interpreted
  449. elsewhere in the simulator.
  450. Initialization of the type field in packets is performed by the
  451. fcn{Agent::allocpkt} method.
  452. The type field is set to integer values associated with the
  453. definition passed to
  454. the code{Agent} constructor (Section~ref{sec:agents:exlinkage}).
  455. The currently-supported definitions, their values, and their
  456. associated symblic names are as follows
  457. (defined in nsf{packet.h}):
  458. begin{program}
  459. enum packet_t {
  460. PT_TCP,
  461. PT_UDP,
  462. PT_CBR,
  463. PT_AUDIO,
  464. PT_VIDEO,
  465. PT_ACK,
  466. PT_START,
  467. PT_STOP,
  468. PT_PRUNE,
  469. PT_GRAFT,
  470. PT_GRAFTACK,
  471. PT_JOIN,
  472. PT_ASSERT,
  473. PT_MESSAGE,
  474. PT_RTCP,
  475. PT_RTP,
  476. PT_RTPROTO_DV,
  477. PT_CtrMcast_Encap,
  478. PT_CtrMcast_Decap,
  479. PT_SRM,
  480. /* simple signalling messages */
  481. PT_REQUEST,
  482. PT_ACCEPT,
  483. PT_CONFIRM,
  484. PT_TEARDOWN,
  485. PT_LIVE, // packet from live network
  486. PT_REJECT,
  487. PT_TELNET, // not needed: telnet use TCP
  488. PT_FTP,
  489. PT_PARETO,
  490. PT_EXP,
  491. PT_INVAL,
  492. PT_HTTP,
  493. /* new encapsulator */
  494. PT_ENCAPSULATED,
  495. PT_MFTP,
  496. /* CMU/Monarch's extnsions */
  497. PT_ARP,
  498. PT_MAC,
  499. PT_TORA,
  500. PT_DSR,
  501. PT_AODV,
  502. // insert new packet types here
  503. PT_NTYPE // This MUST be the LAST one
  504. };
  505. end{program}
  506. The constructor of class code{p_info} glues these constants with
  507. their string values:
  508. begin{program}
  509. p_info() {
  510. name_[PT_TCP]= "tcp";
  511. name_[PT_UDP]= "udp";
  512. name_[PT_CBR]= "cbr";
  513. name_[PT_AUDIO]= "audio";
  514. ...
  515. name_[PT_NTYPE]= "undefined";
  516. }
  517. end{program}
  518. See also section~ref{sec:pinfoclass} for more details.
  519. section{Queue Monitoring}
  520. label{sec:qmonitor}
  521. Queue monitoring refers to the capability of tracking the
  522. dynamics of packets at a queue (or other object).
  523. A queue monitor tracks packet arrival/departure/drop statistics,
  524. and may optionally compute averages of these values.
  525. Monitoring may be applied to all packets (aggregate statistics), or
  526. per-flow statistics (using a Flow Monitor).
  527. Several classes are used in supporting queue monitoring.
  528. When a packet arrives at a link where queue monitoring is enabled,
  529. it generally passes through a code{SnoopQueue} object when it
  530. arrives and leaves (or is dropped).
  531. These objects contain a reference to a code{QueueMonitor} object.
  532. A code{QueueMonitor} is defined as follows (nsf{queue-monitor.cc}):
  533. begin{program}
  534.         class QueueMonitor : public TclObject {
  535.          public: 
  536.                 QueueMonitor() : bytesInt_(NULL), pktsInt_(NULL), delaySamp_(NULL),
  537.                   size_(0), pkts_(0),
  538.                   parrivals_(0), barrivals_(0),
  539.                   pdepartures_(0), bdepartures_(0),
  540.                   pdrops_(0), bdrops_(0),
  541.                   srcId_(0), dstId_(0), channel_(0) {
  542.                         bind("size_", &size_);
  543.                         bind("pkts_", &pkts_);
  544.                         bind("parrivals_", &parrivals_);
  545.                         bind("barrivals_", &barrivals_);
  546.                         bind("pdepartures_", &pdepartures_);
  547.                         bind("bdepartures_", &bdepartures_);
  548.                         bind("pdrops_", &pdrops_);
  549.                         bind("bdrops_", &bdrops_);
  550.                         bind("off_cmn_", &off_cmn_);
  551.                 };
  552.                 int size() const { return (size_); }
  553.                 int pkts() const { return (pkts_); }
  554.                 int parrivals() const { return (parrivals_); }
  555.                 int barrivals() const { return (barrivals_); }
  556.                 int pdepartures() const { return (pdepartures_); }
  557.                 int bdepartures() const { return (bdepartures_); }
  558.                 int pdrops() const { return (pdrops_); }
  559.                 int bdrops() const { return (bdrops_); }
  560.                 void printStats();
  561.                 virtual void in(Packet*);
  562.                 virtual void out(Packet*);
  563.                 virtual void drop(Packet*);
  564.                 virtual void edrop(Packet*) { abort(); }; // not here
  565.                 virtual int command(int argc, const char*const* argv);
  566.                 ldots
  567.         // {cf packet arrival to a queue}
  568.         void QueueMonitor::in(Packet* p)
  569.         {
  570.                 hdr_cmn* hdr = (hdr_cmn*)p->access(off_cmn_);
  571.                 double now = Scheduler::instance().clock();
  572.                 int pktsz = hdr->size();
  573.                 barrivals_ += pktsz;
  574.                 parrivals_++;
  575.                 size_ += pktsz;
  576.                 pkts_++;
  577.                 if (bytesInt_)
  578.                         bytesInt_->newPoint(now, double(size_));
  579.                 if (pktsInt_)
  580.                         pktsInt_->newPoint(now, double(pkts_));
  581.                 if (delaySamp_)
  582.                         hdr->timestamp() = now;
  583.                 if (channel_)
  584.                         printStats();
  585.         }
  586.         ldots fcn[]{in}, fcn[]{out}, fcn[]{drop} are all defined similarly ldots
  587. end{program}
  588. It addition to the packet and byte counters, a queue monitor
  589. may optionally refer to objects that keep an integral
  590. of the queue size over time using
  591. code{Integrator} objects, which are defined in Section~ref{sec:integral}.
  592. The code{Integrator} class provides a simple implementation of
  593. integral approximation by discrete sums.
  594. All bound variables beginning with {bf p} refer to packet counts, and
  595. all variables beginning with {bf b} refer to byte counts.
  596. The variable {tt size_} records the instantaneous queue size in bytes,
  597. and the variable {tt pkts_} records the same value in packets.
  598. When a code{QueueMonitor} is configured to include the integral
  599. functions (on bytes or packets or both), it
  600. computes the approximate integral of the
  601. queue size (in bytes)
  602. with respect to time over the interval $[t_0, now]$, where
  603. $t_0$ is either the start of the simulation or the last time the
  604. code{sum_} field of the underlying code{Integrator} class was reset.
  605. The code{QueueMonitor} class is not derived from code{Connector}, and
  606. is not linked directly into the network topology.
  607. Rather, objects of the code{SnoopQueue} class (or its derived classes)
  608. are inserted into the network topology, and these objects contain references
  609. to an associated queue monitor.
  610. Ordinarily, multiple code{SnoopQueue} objects will refer to the same
  611. queue monitor.
  612. Objects constructed out of these classes are linked in the simulation
  613. topology as described above and call code{QueueMonitor}
  614. code{out}, code{in}, or code{drop} procedures,
  615. depending on the particular type of snoopy queue.
  616. section{Per-Flow Monitoring}
  617. label{sec:flowmon}
  618. A collection of specialized classes are used to to implement
  619. per-flow statistics gathering.
  620. These classes include: \
  621. code{QueueMonitor/ED/Flowmon},
  622. code{QueueMonitor/ED/Flow}, and code{Classifier/Hash}.
  623. Typically, an arriving packet is inspected to determine
  624. to which flow it belongs.
  625. This inspection and flow mapping is performed by a {em classifier}
  626. object (described in section~ref{sec:flowmonitor}).
  627. Once the correct flow is determined, the packet is passed to
  628. a {em flow monitor}, which is responsible for collecting per-flow
  629. state.
  630. Per-flow state is contained in {em flow} objects in a one-to-one
  631. relationship to the flows known by the flow monitor.
  632. Typically, a flow monitor will create flow objects on-demand when
  633. packets arrive that cannot be mapped to an already-known flow.
  634. subsection{The Flow Monitor}
  635. label{sec:flowmonitor}
  636. The code{QueueMonitor/ED/Flowmon} class is responsible for managing
  637. the creation of new flow objects when packets arrive on previously
  638. unknown flows and for updating existing flow objects.
  639. Because it is a subclass of code{QueueMonitor}, each flow monitor
  640. contains an aggregate count of packet and byte arrivals, departures, and
  641. drops.
  642. Thus, it is not necessary to create a separate queue monitor to record
  643. aggregate statistics.
  644. It provides the following OTcl interface:
  645. begin{quote}
  646. begin{tabularx}{linewidth}{rX}
  647.          classifier & get(set) classifier to map packets to flows\
  648.          attach & attach a Tcl I/O channel to this monitor\
  649.          dump  & dump contents of flow monitor to Tcl channel\
  650.          flows & return string of flow object names known to this monitor\
  651. end{tabularx}
  652. end{quote}
  653. The {tt classifier} function sets or gets the name of the previously-allocated
  654. object which will perform packet-to-flow mapping for the flow monitor.
  655. Typically, the type of classifier used will have to do with the notion of
  656. ``flow'' held by the user.
  657. One of the hash based classifiers that inspect various IP-level header
  658. fields is typically used here (e.g. fid, src/dst, src/dst/fid).
  659. Note that while classifiers usually receive packets and forward them
  660. on to downstream objects, the flow monitor uses the classifier only for
  661. its packet mapping capability, so the flow monitor acts as a passive
  662. monitor only and does not actively forward packets.
  663. The {tt attach} and {tt dump} functions are used to
  664. associate a Tcl I/O stream with the
  665. flow monitor, and dump its contents on-demand.
  666. The file format used by the {tt dump} command is described below.
  667. The {tt flows} function returns a list of the names of flows known
  668. by the flow monitor in a way understandable to Tcl.
  669. This allows tcl code to interrogate a flow monitor in order
  670. to obtain handles to the individual flows it maintains.
  671. subsection{Flow Monitor Trace Format}
  672. label{sec:flowmonclass}
  673. The flow monitor defines a trace format which may be used by post-processing
  674. scripts to determine various counts on a per-flow basis.
  675. The format is defined by the following code in nsf{flowmon.cc}:
  676. begin{program}
  677. void
  678. FlowMon::fformat(Flow* f)
  679. {   
  680.         double now = Scheduler::instance().clock();
  681.         sprintf(wrk_, "%8.3f %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d %d 
  682. %d", 
  683.                 now,    
  684.                 f->flowid(),    // flowid
  685.                 0,              // category
  686.                 f->ptype(),     // type (from common header) 
  687.                 f->flowid(),    // flowid (formerly class)
  688.                 f->src(),
  689.                 f->dst(),
  690.                 f->parrivals(), // arrivals this flow (pkts)
  691.                 f->barrivals(), // arrivals this flow (bytes) 
  692.                 f->epdrops(),   // early drops this flow (pkts)
  693.                 f->ebdrops(),   // early drops this flow (bytes) 
  694.                 parrivals(),    // all arrivals (pkts)
  695.                 barrivals(),    // all arrivals (bytes) 
  696.                 epdrops(),      // total early drops (pkts)
  697.                 ebdrops(),      // total early drops (bytes) 
  698.                 pdrops(),       // total drops (pkts)
  699.                 bdrops(),       // total drops (bytes) 
  700.                 f->pdrops(),    // drops this flow (pkts) [includes edrops] 
  701.                 f->bdrops()     // drops this flow (bytes) [includes edrops]
  702.         );
  703. };  
  704. end{program}
  705. Most of the fields are explained in the code comments.
  706. The ``category'' is historical, but is used to maintain loose backward-
  707. compatibility with the flow manager format in ns~version 1.
  708. subsection{The Flow Class}
  709. label{sec:flowclass}
  710. The class code{QueueMonitor/ED/Flow} is used by the flow monitor
  711. for containing per-flow counters.
  712. As a subclass of code{QueueMonitor}, it inherits the standard
  713. counters for arrivals, departures, and drops, both in packets and
  714. bytes.
  715. In addition, because each flow is typically identified by
  716. some combination of the packet source, destination, and flow
  717. identifier fields, these objects contain such fields.
  718. Its OTcl interface contains only bound variables:
  719. begin{quote}
  720. begin{alist}
  721.         code{src_} &   source address on packets for this flow\
  722.         code{dst_} &   destination address on packets for this flow\
  723.         code{flowid_} & flow id on packets for this flow\
  724. end{alist}
  725. end{quote}
  726. Note that packets may be mapped to flows (by classifiers) using
  727. criteria other than a src/dst/flowid triple.
  728. In such circumstances, only those fields actually used by
  729. the classifier in performing the packet-flow mapping should be
  730. considered reliable.
  731. section{Commands at a glance}
  732. label{sec:tracecommand}
  733. Following is a list of trace related commands commonly used in
  734. simulation scripts:
  735. begin{flushleft}
  736. code{$ns_ trace-all <tracefile>}\
  737. This is the command used to setup tracing in ns. All traces are written in
  738. the <tracefile>.
  739. code{$ns_ namtrace-all <namtracefile>}\
  740. This command sets up nam tracing in ns. All nam traces are written in to
  741. the <namtracefile>.
  742. code{$ns_ namtrace-all-wireless <namtracefile> <X> <Y>}\
  743. This command sets up wireless nam tracing. <X> and <Y> are the x-y co-ordinates
  744. for the wireless topology and all wireless nam traces are written  into
  745. the <namtracefile>.
  746. code{$ns_ nam-end-wireless <stoptime>}\
  747. This tells nam the simulation stop time  given in <stoptime>.
  748. code{$ns_ trace-all-satlinks <tracefile>}\
  749. This is a method to trace satellite links and write traces into <tracefile>.
  750. code{$ns_ flush-trace}\
  751. This command flushes the trace buffer and is typically called before the
  752. simulation run ends.
  753. code{$ns_ get-nam-traceall}\
  754. Returns the namtrace file descriptor stored as the Simulator instance
  755. variable called code{namtraceAllFile_}.
  756. code{$ns_ get-ns-traceall}\
  757. Similar to get-nam-traceall. This returns the file descriptor for ns tracefile
  758. which is stored as the Simulator instance called code{traceAllFile_}.
  759. code{$ns_ create-trace <type> <file> <src> <dst> <optional:op>}\
  760. This command creates a trace object of type <type> between the <src> and
  761. <dst> nodes. The traces are written into the <file>. <op> is the argument
  762. that may be used to specify the type of trace, like nam. if <op> is not
  763. defined, the default trace object created is for nstraces.
  764. code{$ns_ trace-queue <n1> <n2> <optional:file>}\
  765. This is a wrapper method for code{create-trace}. This command creates a
  766. trace object for tracing events on the link represented by the nodes <n1>
  767. and <n2>.
  768. code{$ns_ namtrace-queue <n1> <n2> <optional:file>}\
  769. This is used to create a trace object for namtracing on the link between
  770. nodes <n1> and <n2>. This method is very similar to and is the namtrace
  771. counterpart of method code{trace-queue}.
  772. code{$ns_ drop-trace <n1> <n2> <trace>}\
  773. This command makes the given <trace> object a drop-target for the queue
  774. associated with the link between nodes <n1> and <n2>.
  775. code{$ns_ monitor-queue <n1> <n2> <qtrace> <optional:sampleinterval>}\
  776. This sets up a monitor that keeps track of average queue length of the queue
  777. on the link between nodes <n1> and <n2>. The default value of
  778. sampleinterval is 0.1. 
  779. code{$link trace-dynamics <ns> <fileID> }
  780. Trace the dynamics of this link and write the output to fileID filehandle.
  781. ns is an instance of the Simulator or MultiSim object that was created to
  782. invoke the simulation. 
  783. The tracefile format is backward compatible with the output files in the
  784. ns version 1 simulator so that ns-1 postprocessing scripts can still be
  785. used. Trace records of traffic for link objects with Enque, Deque, receive
  786. or Drop Tracing have the following form: \
  787. <code> <time> <hsrc> <hdst> <packet> \
  788. where 
  789. begin{verbatim}
  790. <code> := [hd+-] h=hop d=drop +=enque -=deque r=receive <time> :=
  791. simulation time in seconds 
  792. <hsrc> := first node address of hop/queuing link 
  793. <hdst> := second node address of hop/queuing link 
  794. <packet> := <type> <size> <flags> <flowID> <src.sport> <dst.dport> <seq>
  795. <pktID> 
  796. <type> := tcp|telnet|cbr|ack etc.
  797. <size> := packet size in bytes
  798. <flags> := [CP] C=congestion, P=priority 
  799. <flowID> := flow identifier field as defined for IPv6 
  800. <src.sport> := transport address (src=node,sport=agent) 
  801. <dst.sport> := transport address (dst=node,dport=agent) 
  802. <seq> := packet sequence number
  803. <pktID> := unique identifer for every new packet 
  804. end{verbatim}
  805. Only those agents interested in providing sequencing will generate
  806. sequence numbers and hence this field may not be useful for packets
  807. generated by some agents. For links that use RED gateways, there are
  808. additional trace records as follows: \
  809. <code> <time> <value> \
  810. where \
  811. begin{verbatim}
  812. <code> := [Qap] Q=queue size, a=average queue size, p=packet dropping
  813. probability
  814. <time> := simulation time in seconds 
  815. <value> := value 
  816. end{verbatim}
  817. Trace records for link dynamics are of the form: \
  818. <code> <time> <state> <src> <dst> \
  819. where \
  820. begin{verbatim}
  821. <code> := [v]
  822. <time> := simulation time in seconds 
  823. <state> := [link-up | link-down]
  824. <src> := first node address of link 
  825. <dst> := second node address of link 
  826. end{verbatim} 
  827. end{flushleft}
  828. endinput