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