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
|
# Copyright (C) 2003-2007 Tresys Technology, LLC
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
namespace eval Apol_Analysis_directflow {
variable vals
variable widgets
Apol_Analysis::registerAnalysis "Apol_Analysis_directflow" "Direct Information Flow"
}
proc Apol_Analysis_directflow::create {options_frame} {
variable vals
variable widgets
_reinitializeVals
set dir_tf [TitleFrame $options_frame.mode -text "Direction"]
pack $dir_tf -side left -padx 2 -pady 2 -expand 0 -fill y
set dir_in [radiobutton [$dir_tf getframe].in -text In \
-value $::APOL_INFOFLOW_IN \
-variable Apol_Analysis_directflow::vals(dir)]
set dir_out [radiobutton [$dir_tf getframe].out -text Out \
-value $::APOL_INFOFLOW_OUT \
-variable Apol_Analysis_directflow::vals(dir)]
set dir_either [radiobutton [$dir_tf getframe].either -text Either \
-value $::APOL_INFOFLOW_EITHER \
-variable Apol_Analysis_directflow::vals(dir)]
set dir_both [radiobutton [$dir_tf getframe].both -text Both \
-value $::APOL_INFOFLOW_BOTH \
-variable Apol_Analysis_directflow::vals(dir)]
pack $dir_in $dir_out $dir_either $dir_both -anchor w
set req_tf [TitleFrame $options_frame.req -text "Required Parameters"]
pack $req_tf -side left -padx 2 -pady 2 -expand 0 -fill y
set l [label [$req_tf getframe].l -text "Starting type"]
pack $l -anchor w
set widgets(type) [Apol_Widget::makeTypeCombobox [$req_tf getframe].type]
pack $widgets(type)
set filter_tf [TitleFrame $options_frame.filter -text "Optional Result Filters"]
pack $filter_tf -side left -padx 2 -pady 2 -expand 1 -fill both
set class_f [frame [$filter_tf getframe].class]
pack $class_f -side left -anchor nw
set class_enable [checkbutton $class_f.enable -text "Filter by object class" \
-variable Apol_Analysis_directflow::vals(classes:enable)]
pack $class_enable -anchor w
set widgets(classes) [Apol_Widget::makeScrolledListbox $class_f.classes \
-height 6 -width 24 \
-listvar Apol_Analysis_directflow::vals(classes:all_classes) \
-selectmode multiple -exportselection 0]
set classes_lb [Apol_Widget::getScrolledListbox $widgets(classes)]
bind $classes_lb <<ListboxSelect>> \
[list Apol_Analysis_directflow::_selectClassesListbox $classes_lb]
pack $widgets(classes) -padx 4 -expand 0 -fill both
trace add variable Apol_Analysis_directflow::vals(classes:enable) write \
Apol_Analysis_directflow::_toggleClasses
Apol_Widget::setScrolledListboxState $widgets(classes) disabled
set classes_bb [ButtonBox $class_f.bb -homogeneous 1 -spacing 4]
$classes_bb add -text "Include All" \
-command [list Apol_Analysis_directflow::_includeAll $classes_lb]
$classes_bb add -text "Exclude All" \
-command [list Apol_Analysis_directflow::_excludeAll $classes_lb]
pack $classes_bb -pady 4
set widgets(regexp) [Apol_Widget::makeRegexpEntry [$filter_tf getframe].end]
$widgets(regexp).cb configure -text "Filter result types using regular expression"
pack $widgets(regexp) -side left -anchor nw -padx 8
}
proc Apol_Analysis_directflow::open {} {
variable vals
variable widgets
Apol_Widget::resetTypeComboboxToPolicy $widgets(type)
set vals(classes:all_classes) [Apol_Class_Perms::getClasses]
set vals(classes:selected) $vals(classes:all_classes)
Apol_Widget::setScrolledListboxState $widgets(classes) normal
set classes_lb [Apol_Widget::getScrolledListbox $widgets(classes)]
$classes_lb selection set 0 end
_toggleClasses {} {} {}
}
proc Apol_Analysis_directflow::close {} {
variable widgets
_reinitializeVals
_reinitializeWidgets
Apol_Widget::clearTypeCombobox $widgets(type)
}
proc Apol_Analysis_directflow::getInfo {} {
return "This analysis generates the results of a Direct Information Flow
analysis beginning from the starting type selected. The results of
the analysis are presented in tree form with the root of the tree
being the start point for the analysis.
\nEach child node in the tree represents a type in the current policy
for which there is a direct information flow to or from its parent
node. If 'in' was selected then the information flow is from the
child to the parent. If 'out' was selected then information flows
from the parent to the child.
\nThe results of the analysis may be optionally filtered by object class
selection or an end type regular expression.
\nNOTE: For any given generation, if the parent and the child are the
same, the child cannot be opened. This avoids cyclic analyses.
\nFor additional help on this topic select \"Information Flow Analysis\"
from the help menu."
}
proc Apol_Analysis_directflow::newAnalysis {} {
if {[set rt [_checkParams]] != {}} {
return $rt
}
set results [_analyze]
set f [_createResultsDisplay]
_renderResults $f $results
$results -acquire
$results -delete
return {}
}
proc Apol_Analysis_directflow::updateAnalysis {f} {
if {[set rt [_checkParams]] != {}} {
return $rt
}
set results [_analyze]
_clearResultsDisplay $f
_renderResults $f $results
$results -acquire
$results -delete
return {}
}
proc Apol_Analysis_directflow::reset {} {
_reinitializeVals
_reinitializeWidgets
}
proc Apol_Analysis_directflow::switchTab {query_options} {
variable vals
variable widgets
array set vals $query_options
_reinitializeWidgets
}
proc Apol_Analysis_directflow::saveQuery {channel} {
variable vals
variable widgets
foreach {key value} [array get vals] {
puts $channel "$key $value"
}
set type [Apol_Widget::getTypeComboboxValueAndAttrib $widgets(type)]
puts $channel "type [lindex $type 0]"
puts $channel "type:attrib [lindex $type 1]"
set use_regexp [Apol_Widget::getRegexpEntryState $widgets(regexp)]
set regexp [Apol_Widget::getRegexpEntryValue $widgets(regexp)]
puts $channel "regexp:enable $use_regexp"
puts $channel "regexp $regexp"
}
proc Apol_Analysis_directflow::loadQuery {channel} {
variable vals
set classes {}
while {[gets $channel line] >= 0} {
set line [string trim $line]
# Skip empty lines and comments
if {$line == {} || [string index $line 0] == "#"} {
continue
}
set key {}
set value {}
regexp -line -- {^(\S+)( (.+))?} $line -> key --> value
switch -- $key {
classes:selected {
set classes $value
}
default {
set vals($key) $value
}
}
}
# fill in only classes found within the current policy
open
set vals(classes:selected) {}
foreach c $classes {
set i [lsearch [Apol_Class_Perms::getClasses] $c]
if {$i >= 0} {
lappend vals(classes:selected) $c
}
}
set vals(classes:selected) [lsort $vals(classes:selected)]
_reinitializeWidgets
}
proc Apol_Analysis_directflow::getTextWidget {tab} {
return [$tab.right getframe].res.tb
}
proc Apol_Analysis_directflow::appendResultsNodes {tree parent_node results} {
_createResultsNodes $tree $parent_node $results 0
}
#################### private functions below ####################
proc Apol_Analysis_directflow::_reinitializeVals {} {
variable vals
set vals(dir) $::APOL_INFOFLOW_IN
array set vals {
type {} type:attrib {}
classes:enable 0
classes:selected {}
regexp:enable 0
regexp {}
}
set vals(classes:all_classes) [Apol_Class_Perms::getClasses]
}
proc Apol_Analysis_directflow::_reinitializeWidgets {} {
variable vals
variable widgets
if {$vals(type:attrib) != {}} {
Apol_Widget::setTypeComboboxValue $widgets(type) [list $vals(type) $vals(type:attrib)]
} else {
Apol_Widget::setTypeComboboxValue $widgets(type) $vals(type)
}
Apol_Widget::setRegexpEntryValue $widgets(regexp) $vals(regexp:enable) $vals(regexp)
Apol_Widget::setScrolledListboxState $widgets(classes) enabled
set classes_lb [Apol_Widget::getScrolledListbox $widgets(classes)]
$classes_lb selection clear 0 end
foreach c $vals(classes:selected) {
set i [lsearch $vals(classes:all_classes) $c]
$classes_lb selection set $i $i
}
_toggleClasses {} {} {}
}
proc Apol_Analysis_directflow::_toggleClasses {name1 name2 op} {
variable vals
variable widgets
if {$vals(classes:enable)} {
Apol_Widget::setScrolledListboxState $widgets(classes) enabled
} else {
Apol_Widget::setScrolledListboxState $widgets(classes) disabled
}
}
proc Apol_Analysis_directflow::_selectClassesListbox {lb} {
variable vals
for {set i 0} {$i < [$lb index end]} {incr i} {
set t [$lb get $i]
if {[$lb selection includes $i]} {
lappend vals(classes:selected) $t
} else {
if {[set j [lsearch $vals(classes:selected) $t]] >= 0} {
set vals(classes:selected) [lreplace $vals(classes:selected) $j $j]
}
}
}
set vals(classes:selected) [lsort -uniq $vals(classes:selected)]
focus $lb
}
proc Apol_Analysis_directflow::_includeAll {lb} {
variable vals
$lb selection set 0 end
set vals(classes:selected) $vals(classes:all_classes)
}
proc Apol_Analysis_directflow::_excludeAll {lb} {
variable vals
$lb selection clear 0 end
set vals(classes:selected) {}
}
#################### functions that do analyses ####################
proc Apol_Analysis_directflow::_checkParams {} {
variable vals
variable widgets
if {![ApolTop::is_policy_open]} {
return "No current policy file is opened."
}
set type [Apol_Widget::getTypeComboboxValueAndAttrib $widgets(type)]
if {[lindex $type 0] == {}} {
return "No type was selected."
}
if {![Apol_Types::isTypeInPolicy [lindex $type 0]]} {
return "[lindex $type 0] is not a type within the policy."
}
set vals(type) [lindex $type 0]
set vals(type:attrib) [lindex $type 1]
set use_regexp [Apol_Widget::getRegexpEntryState $widgets(regexp)]
set regexp [Apol_Widget::getRegexpEntryValue $widgets(regexp)]
if {$use_regexp && $regexp == {}} {
return "No regular expression provided."
}
set vals(regexp:enable) $use_regexp
set vals(regexp) $regexp
if {$vals(classes:enable) && $vals(classes:selected) == {}} {
return "At least one object class must be included."
}
# if a permap is not loaded then load the default permap
if {![Apol_Perms_Map::is_pmap_loaded]} {
if {![ApolTop::openDefaultPermMap]} {
return "This analysis requires that a permission map is loaded."
}
apol_tcl_clear_info_string
}
return {} ;# all parameters passed, now ready to do search
}
proc Apol_Analysis_directflow::_analyze {} {
variable vals
set classes {}
if {$vals(classes:enable)} {
foreach c $vals(classes:selected) {
foreach p [Apol_Class_Perms::getPermsForClass $c] {
lappend classes $c $p
}
}
}
if {$vals(regexp:enable)} {
set regexp $vals(regexp)
} else {
set regexp {}
}
set q [new_apol_infoflow_analysis_t]
$q set_mode $::ApolTop::policy $::APOL_INFOFLOW_MODE_DIRECT
$q set_dir $::ApolTop::policy $vals(dir)
$q set_type $::ApolTop::policy $vals(type)
foreach {c p} $classes {
$q append_class_perm $::ApolTop::policy $c $p
}
$q set_result_regex $::ApolTop::policy $regexp
set results [$q run $::ApolTop::policy]
$q -acquire
$q -delete
return $results
}
proc Apol_Analysis_directflow::_analyzeMore {tree node} {
# disallow more analysis if this node is the same as its parent
set new_start [$tree itemcget $node -text]
if {[$tree itemcget [$tree parent $node] -text] == $new_start} {
return {}
}
set g [lindex [$tree itemcget top -data] 0]
$g do_more $::ApolTop::policy $new_start
}
################# functions that control analysis output #################
proc Apol_Analysis_directflow::_createResultsDisplay {} {
variable vals
set f [Apol_Analysis::createResultTab "Direct Flow" [array get vals]]
set tree_tf [TitleFrame $f.left -text "Direct Information Flow Tree"]
pack $tree_tf -side left -expand 0 -fill y -padx 2 -pady 2
set sw [ScrolledWindow [$tree_tf getframe].sw -auto both]
set tree [Tree [$sw getframe].tree -width 24 -redraw 1 -borderwidth 0 \
-highlightthickness 0 -showlines 1 -padx 0 -bg white]
$sw setwidget $tree
pack $sw -expand 1 -fill both
set res_tf [TitleFrame $f.right -text "Direct Information Flow Results"]
pack $res_tf -side left -expand 1 -fill both -padx 2 -pady 2
set res [Apol_Widget::makeSearchResults [$res_tf getframe].res]
$res.tb tag configure title -font {Helvetica 14 bold}
$res.tb tag configure title_type -foreground blue -font {Helvetica 14 bold}
$res.tb tag configure subtitle -font {Helvetica 10 bold}
$res.tb tag configure subtitle_dir -foreground blue -font {Helvetica 10 bold}
pack $res -expand 1 -fill both
$tree configure -selectcommand [list Apol_Analysis_directflow::_treeSelect $res]
$tree configure -opencmd [list Apol_Analysis_directflow::_treeOpen $tree]
return $f
}
proc Apol_Analysis_directflow::_treeSelect {res tree node} {
if {$node != {}} {
$res.tb configure -state normal
$res.tb delete 0.0 end
set data [$tree itemcget $node -data]
if {[string index $node 0] == "x"} {
_renderResultsDirectFlow $res $tree $node [lindex $data 1]
} else {
# an informational node, whose data has already been rendered
eval $res.tb insert end [lindex $data 1]
}
$res.tb configure -state disabled
}
}
# perform additional direct infoflows if this node has not been
# analyzed yet
proc Apol_Analysis_directflow::_treeOpen {tree node} {
foreach {is_expanded results} [$tree itemcget $node -data] {break}
if {[string index $node 0] == "x" && !$is_expanded} {
Apol_Progress_Dialog::wait "Direct Information Flow Analysis" \
"Performing Direct Information Flow Analysis..." \
{
set new_results [_analyzeMore $tree $node]
# mark this node as having been expanded
$tree itemconfigure $node -data [list 1 $results]
if {$new_results != {}} {
_createResultsNodes $tree $node $new_results 1
$new_results -acquire
$new_results -delete
}
}
}
}
proc Apol_Analysis_directflow::_clearResultsDisplay {f} {
variable vals
set tree [[$f.left getframe].sw getframe].tree
set res [$f.right getframe].res
$tree delete [$tree nodes root]
Apol_Widget::clearSearchResults $res
Apol_Analysis::setResultTabCriteria [array get vals]
}
proc Apol_Analysis_directflow::_renderResults {f results} {
variable vals
set graph_handler [$results extract_graph]
$graph_handler -acquire ;# let Tcl's GC destroy graph when this tab closes
set results_list [$results extract_result_vector]
set tree [[$f.left getframe].sw getframe].tree
set res [$f.right getframe].res
$tree insert end root top -text $vals(type) -open 1 -drawcross auto
set top_text [_renderTopText]
$tree itemconfigure top -data [list $graph_handler $top_text]
_createResultsNodes $tree top $results_list 1
$tree selection set top
$tree opentree top 0
$tree see top
$results_list -acquire
$results_list -delete
}
proc Apol_Analysis_directflow::_renderTopText {} {
variable vals
set top_text [list "Direct Information Flow Analysis: Starting type: " title]
lappend top_text $vals(type) title_type \
"\n\n" title \
"This tab provides the results of a Direct Information Flow analysis
beginning from the starting type selected above. The results of the
analysis are presented in tree form with the root of the tree (this
node) being the start point for the analysis.
\nEach child node in the tree represents a type in the current policy
for which there is a direct information flow to or from (depending on
your selection above) its parent node.
\nNOTE: For any given generation, if the parent and the child are the
same, you cannot open the child. This avoids cyclic analyses."
}
# If do_expand is zero, then generate result nodes for only the first
# target type of $results. This is needed by two types relationship
# analysis.
proc Apol_Analysis_directflow::_createResultsNodes {tree parent_node results do_expand} {
set all_targets {}
set info_list [infoflow_result_vector_to_list $results]
set results_processed 0
foreach r $info_list {
apol_tcl_set_info_string $::ApolTop::policy "Processing result $results_processed of [llength $info_list]"
if {$do_expand} {
set target [[$r get_end_type] get_name $::ApolTop::qpolicy]
} else {
set target [[[lindex $info_list 0] get_end_type] get_name $::ApolTop::qpolicy]
}
set flow_dir [$r get_dir]
set step0 [apol_infoflow_step_from_void [[$r get_steps] get_element 0]]
set rules [$step0 get_rules]
lappend all_targets $target
foreach r [avrule_vector_to_list $rules] {
set class [[$r get_object_class $::ApolTop::qpolicy] get_name $::ApolTop::qpolicy]
lappend classes($target) $class
lappend classes($target:$class) $r
}
set dir($target:$flow_dir) 1
incr results_processed
}
set all_targets [lsort -uniq $all_targets]
apol_tcl_set_info_string $::ApolTop::policy "Displaying [llength $all_targets] result(s)"
update idle
foreach t $all_targets {
if {[info exists dir(${t}:${::APOL_INFOFLOW_BOTH})] ||
([info exists dir(${t}:${::APOL_INFOFLOW_IN})] &&
[info exists dir(${t}:${::APOL_INFOFLOW_OUT})])} {
set flow_dir "both"
} elseif {[info exists dir(${t}:${::APOL_INFOFLOW_IN})]} {
set flow_dir "in"
} else {
set flow_dir "out"
}
set rules {}
foreach c [lsort -uniq $classes($t)] {
lappend rules [list $c [lsort -uniq $classes($t:$c)]]
}
set data [list $flow_dir $rules]
$tree insert end $parent_node x\#auto -text $t -drawcross allways \
-data [list 0 $data]
}
}
proc Apol_Analysis_directflow::_renderResultsDirectFlow {res tree node data} {
set parent_name [$tree itemcget [$tree parent $node] -text]
set name [$tree itemcget $node -text]
foreach {flow_dir classes} $data {break}
switch -- $flow_dir {
both {
$res.tb insert end "Information flows both into and out of " title \
$parent_name title_type \
" from/to " title \
$name title_type
}
in {
$res.tb insert end "Information flows into " title \
$parent_name title_type \
" from " title \
$name title_type
}
out {
$res.tb insert end "Information flows out of " title \
$parent_name title_type \
" to " title \
$name title_type
}
}
$res.tb insert end "\n\n" title_type \
"Objects classes for " subtitle \
[string toupper $flow_dir] subtitle_dir \
" flows:\n" subtitle
foreach c $classes {
foreach {class_name rules} $c {break}
$res.tb insert end " " {} \
$class_name\n subtitle
set v [new_apol_vector_t]
foreach r $rules {
$v append $r
}
apol_tcl_avrule_sort $::ApolTop::policy $v
Apol_Widget::appendSearchResultRules $res 12 $v qpol_avrule_from_void
$v -acquire
$v -delete
}
}
|