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
|
#
# Copyright (c) 1996 Regents of the University of California.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in the
# documentation and/or other materials provided with the distribution.
# 3. All advertising materials mentioning features or use of this software
# must display the following acknowledgement:
# This product includes software developed by the Daedalus Research
# Group at the University of California Berkeley.
# 4. Neither the name of the University nor of the Research Group may be
# used to endorse or promote products derived from this software without
# specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
# ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
# SUCH DAMAGE.
#
# Contributed by the Daedalus Research Group, UC Berkeley
# (http://daedalus.cs.berkeley.edu)
#
#
# There are three levels to error generation.
# 1. Single State
# rate_: uniform error rate in pkt or byte
# 2. Two State
# error-free (0) and error (1) states
# each state has a ranvar determining the length each state
# 3. Multi-State: extending Two-State in OTcl
# each state has a ranvar determining the length each state
# a matrix specifying transition probabilities
#
# Patched by Jianping Pan (jpan@bbcr.uwaterloo.ca)
#
# Each state is an error model (which could be 1-state or multi-state),
# In addtion, the error model has a matrix of transition probabilities,
# and a start state for the model. These usually corresond to
# homogeneous Markov chains, but are not restricted to them, because it
# is possible to change the transition probabilities on the fly and
# depending on past history, if you so desire. Multi-state error models
# reside entirely in Tcl and aren't split between C and Tcl. One-state
# error models are split objects and ErrorModel is derived from
# Connector. As an example, a 2-state Markov error model is built-in,
# as ErrorModel/MultiState/TwoStateMarkov Finally, an error *module*
# contains a classifier, a set of dynamically-added ErrorModels, and
# enough plumbing to construct flow-based Errors.
#
ErrorModel instproc init {} {
eval $self next
set ns [Simulator instance]
$ns create-eventtrace Event $self
}
ErrorModel/Trace instproc init {{filename ""}} {
$self instvar file_
$self next
set file_ ""
if {$filename != ""} {
$self open $filename
}
}
ErrorModel/Trace instproc open {filename} {
$self instvar file_
if {! [file readable $filename]} {
puts "$class: cannot open $filename"
return
}
if {$file_ != ""} {
close $file_
}
set file_ [open $filename]
$self read
}
ErrorModel/Trace instproc read {} {
$self instvar file_ good_ loss_
if {$file_ != ""} {
set line [gets $file_]
set good_ [lindex $line 0]
set loss_ [lindex $line 1]
} else {
set good_ 123456789
set loss_ 0
}
}
ErrorModel/TwoState instproc init {rv0 rv1 {unit "pkt"}} {
$self next
$self unit $unit
$self ranvar 0 $rv0
$self ranvar 1 $rv1
}
Class ErrorModel/Uniform -superclass ErrorModel
Class ErrorModel/Expo -superclass ErrorModel/TwoState
Class ErrorModel/Empirical -superclass ErrorModel/TwoState
ErrorModel/Uniform instproc init {rate {unit "pkt"}} {
$self next
$self unit $unit
$self set rate_ $rate
}
ErrorModel/Expo instproc init {avgList {unit "pkt"}} {
set rv0 [new RandomVariable/Exponential]
set rv1 [new RandomVariable/Exponential]
$rv0 set avg_ [lindex $avgList 0]
$rv1 set avg_ [lindex $avgList 1]
$self next $rv0 $rv1 $unit
}
ErrorModel/Empirical instproc init {fileList {unit "pkt"}} {
set rv0 [new RandomVariable/Empirical]
set rv1 [new RandomVariable/Empirical]
$rv0 loadCDF [lindex $fileList 0]
$rv1 loadCDF [lindex $fileList 1]
$self next $rv0 $rv1 $unit
}
ErrorModel/MultiState instproc init {states periods trans transunit sttype nstates start} {
# states_ is an array of states (errmodels),
# periods_ is an array of state duration (sec)
# transmatrix_ is the transition state model matrix,
# sttype is the type of state transitions to use 'time' or 'pkt'
# nstates_ is the number of states
# transunit_ is pkt/byte/time, and curstate_ is the current state
# start is the start state, which curstate_ is initialized to
# error-model is the current error model to use
# curperiod_ is the duration of the current timed-state
$self instvar states_ transmatrix_ transunit_ nstates_ curstate_ eu_ periods_
$self next
set states_ $states
set periods_ $periods
set transmatrix_ $trans
set transunit_ $transunit
$self sttype $sttype
set nstates_ $nstates
set curstate_ $start
set eu_ $transunit
$self error-model $start
# Find current state's duration
if { [$self sttype] == "time" } {
for { set i 0 } { $i < $nstates_ } {incr i} {
if { [lindex $states_ $i] == $curstate_ } {
break
}
}
$self set curperiod_ [lindex $periods_ $i]
}
}
ErrorModel/MultiState instproc corrupt { } {
$self instvar states_ transmatrix_ transunit_ curstate_
set cur $curstate_
# XXX
# check the type of state transitions to use: 'time' or 'pkt'
# defaults to pkt transitions using transmatrix_
if { [$self sttype] == "time" } {
set curstate_ [$self time-transition]
} else {
set curstate_ [$self transition]
}
if { $cur != $curstate_ } {
# If transitioning out, reset current state
$cur reset
$self reset
$self error-model $curstate_
}
return [$curstate_ next]
}
# XXX eventually want to put in expected times of staying in each state
# before transition here. Punt on this for now.
#ErrorModel instproc insert-error { parent } {
# return [$self corrupt $parent]
#}
# Transition based on time spent in the current state
ErrorModel/MultiState instproc time-transition { } {
$self instvar states_ transmatrix_ transunit_ curstate_ nstates_ periods_
if {[$self set texpired_] != 1} {
return $curstate_
}
for { set i 0 } { $i < $nstates_ } {incr i} {
if { [lindex $states_ $i] == $curstate_ } {
break
}
}
# get the right transition list
set trans [lindex $transmatrix_ $i]
set p [uniform 0 1]
set total 0
for { set i 0 } { $i < $nstates_ } {incr i } {
set total [expr $total + [lindex $trans $i]]
if { $p <= $total } {
$self set curperiod_ [lindex $periods_ $i]
return [lindex $states_ $i]
}
}
puts "Misconfigured state transition: prob $p total $total $nstates_"
return $curstate_
}
# Decide whom to transition to
ErrorModel/MultiState instproc transition { } {
$self instvar states_ transmatrix_ transunit_ curstate_ nstates_
for { set i 0 } { $i < $nstates_ } {incr i} {
if { [lindex $states_ $i] == $curstate_ } {
break
}
}
# get the right transition list
set trans [lindex $transmatrix_ $i]
set p [uniform 0 1]
set total 0
for { set i 0 } { $i < $nstates_ } {incr i } {
set total [expr $total + [lindex $trans $i]]
if { $p <= $total } {
return [lindex $states_ $i]
}
}
puts "Misconfigured state transition: prob $p total $total $nstates_"
return $curstate_
}
Class ErrorModel/TwoStateMarkov -superclass ErrorModel/Expo
ErrorModel/TwoStateMarkov instproc init {rate {unit "time"}} {
$self next $rate $unit
}
ErrorModel/ComplexTwoStateMarkov instproc init {avgList {unit "time"} {rng ""}} {
$self next
$self unit $unit
set rv0 [new RandomVariable/Exponential]
set rv1 [new RandomVariable/Exponential]
set rv2 [new RandomVariable/Exponential]
set rv3 [new RandomVariable/Exponential]
if {$rng != ""} {
$rv0 use-rng $rng
$rv1 use-rng $rng
$rv2 use-rng $rng
$rv3 use-rng $rng
}
$rv0 set avg_ [lindex $avgList 0]
$rv1 set avg_ [lindex $avgList 1]
$rv2 set avg_ [lindex $avgList 2]
$rv3 set avg_ [lindex $avgList 3]
$self ranvar 0 0 $rv0
$self ranvar 0 1 $rv1
$self ranvar 1 0 $rv2
$self ranvar 1 1 $rv3
}
#
# the following is a "ErrorModule";
# it contains a classifier, a set of dynamically-added ErrorModels, and enough
# plumbing to construct flow-based Errors.
#
# It's derived from a connector
#
ErrorModule instproc init { cltype { clslots 29 } } {
$self next
set nullagent [[Simulator instance] set nullAgent_]
set classifier [new Classifier/Hash/$cltype $clslots]
$self cmd classifier $classifier
$self cmd target [new Connector]
$self cmd drop-target [new Connector]
$classifier proc unknown-flow { src dst fid } {
puts "warning: classifier $self unknown flow s:$src, d:$dst, fid:$fid"
}
}
#
# set a default behavior within the error module.
# Called as follows
# $errormodule default $em
# where $em is the name of an error model to pass default traffic to.
# note that if $em is "pass", then default just goes through untouched
#
ErrorModule instproc default errmodel {
set cl [$self cmd classifier]
if { $errmodel == "pass" } {
set target [$self cmd target]
set pslot [$cl installNext $target]
$cl set default_ $pslot
return
}
set emslot [$cl findslot $errmodel]
if { $emslot == -1 } {
puts "ErrorModule: couldn't find classifier entry for error model $errmodel"
return
}
$cl set default_ $emslot
}
ErrorModule instproc insert errmodel {
$self instvar models_
$errmodel target [$self cmd target]
$errmodel drop-target [$self cmd drop-target]
if { [info exists models_] } {
set models_ [concat $models_ $errmodel]
} else {
set models_ $errmodel
}
}
ErrorModule instproc errormodels {} {
$self instvar models_
return $models_
}
ErrorModule instproc bind args {
# this is to perform '$fem bind $errmod id'
# and '$fem bind $errmod idstart idend'
set nargs [llength $args]
set errmod [lindex $args 0]
set a [lindex $args 1]
if { $nargs == 3 } {
set b [lindex $args 2]
} else {
set b $a
}
# bind the errmodel to the flow id's [a..b]
set cls [$self cmd classifier]
while { $a <= $b } {
# first install the class to get its slot number
# use the flow id as the hash bucket
set slot [$cls installNext $errmod]
$cls set-hash auto 0 0 $a $slot
incr a
}
}
ErrorModule instproc target args {
if { $args == "" } {
return [[$self cmd target] target]
}
set obj [lindex $args 0]
[$self cmd target] target $obj
[$self cmd target] drop-target $obj
}
ErrorModule instproc drop-target args {
if { $args == "" } {
return [[$self cmd drop-target] target]
}
set obj [lindex $args 0]
[$self cmd drop-target] drop-target $obj
[$self cmd drop-target] target $obj
}
|