diff options
author | edwin <edwin@FreeBSD.org> | 2003-04-04 12:20:54 +0000 |
---|---|---|
committer | edwin <edwin@FreeBSD.org> | 2003-04-04 12:20:54 +0000 |
commit | 830084dc05e61c1c93e732380e409653f468952a (patch) | |
tree | d262b15cb9fdce224e1220533fd307966748eb4f /Tools | |
parent | 1bafb3c58b172bf5c9ef0598714df22e2c5ebcb1 (diff) | |
download | FreeBSD-ports-830084dc05e61c1c93e732380e409653f468952a.zip FreeBSD-ports-830084dc05e61c1c93e732380e409653f468952a.tar.gz |
This tool parses the output of kdump to generate a list of added
and removed files.
This can be used as the basis of a pkg-plist, or even just for
curiosity about what files something is touching.
Fairly raw at the moment, and doubtless inefficient, but it should
make a useful tool for port creators.
PR: ports/47424
Submitter: Daniel O'Connor <doconnor@gsoft.com.au>
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/scripts/parse-kdump.tcl | 199 |
1 files changed, 199 insertions, 0 deletions
diff --git a/Tools/scripts/parse-kdump.tcl b/Tools/scripts/parse-kdump.tcl new file mode 100644 index 0000000..1c23f0c --- /dev/null +++ b/Tools/scripts/parse-kdump.tcl @@ -0,0 +1,199 @@ +#!/usr/local/bin/tclsh8.2 + +# Copyright (C) 2002 Daniel O'Connor. +# 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. Neither the name of the project nor the names of its contributors +# may be used to endorse or promote products derived from this software +# without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE PROJECT 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 PROJECT 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. + +# +# Usage +# +# Ktrace the process(es) you're interested in like so -> +# +# ktrace -ditcn -f ~/install.ktr make install +# +# Now run kdump over this file and pipe to parse-kdump.tcl +# kdump -m1 -f ~/install.ktr | parse-kdump.tcl +# + +proc main {} { + set fh stdin; + set state "CALL"; + set interested ""; + set cwd [pwd]; + set namea ""; + + while {![eof $fh]} { + gets $fh line; + + if {$line == ""} { + continue; + } + + if {[scan $line "%d %s %s %\[^\n\]" pid name type rest] != 4} { + if {$state != "GIO"} { + puts stderr "Unable to parse '$line'"; + exit 1; + } else { + #puts stderr "Got IO"; + continue; + } + } + + #puts stderr "Pid - $pid, Name - $name, Type - $type, Rest - $rest"; + + switch -- $type { + "CALL" - + "RET" - + "GIO" - + "NAMI" { + } + + default { + puts stderr "Unknown type $type" + exit 1; + } + } + + #puts "State is $state"; + switch -- $type { + "CALL" { + set namea ""; + if {$state != "RET" && $state != "CALL" && $state != "NAMI"} { + puts stderr "Invalid state transition from $state to CALL"; + exit 1; + } else { + set state $type; + } + + set cargs ""; + set res [scan $rest "%\[^(\](%\[^)\]" callname cargs]; + if {$res != 1 && $res != 2} { + puts stderr "Couldn't derive syscall name from $rest"; + exit 1; + } + + if {$callname == "open"} { + if {[scan $cargs "%\[^,\],%\[^,\],%s" fptr flags mode] != 3} { + puts stderr "Couldn't parse open args from $cargs"; + exit 1; + } + + #puts stderr "Open with $flags, mode $mode"; + set interested [list $callname $flags $mode]; + } elseif {$callname == "chdir"} { + set interested [list $callname]; + } elseif {$callname == "rename"} { + set interested [list $callname]; + } elseif {$callname == "unlink"} { + set interested [list $callname]; + } + } + + "RET" { + set namea ""; + if {$state != "CALL" && $state != "GIO" && $state != "NAMI" && $state != "RET"} { + puts "Invalid state transition from $state to RET"; + exit 1; + } else { + set state $type; + } + set interested ""; + } + + "NAMI" { + if {$state != "CALL" && $state != "NAMI"} { + puts "Invalid state transition from $state to NAMI"; + exit 1; + } else { + set state $type; + } + if {$interested != ""} { + if {[scan $rest "\"%\[^\"\]\"" fname] != 1} { + puts stderr "Unable to derive filename from $rest"; + exit 1; + } + + switch -- [lindex $interested 0] { + "open" { + set flags [expr [lindex $interested 1]]; + set mode [expr [lindex $interested 2]]; + #puts stderr "Mode = $mode, Flags = $flags"; + if {[file pathtype $fname] == "relative"} { + set fname [file join $cwd $fname]; + } + if {[expr $flags & 0x02] || [expr $flags & 0x200]} { + #puts "Got an open for writing on $fname"; + #puts "$name $fname"; + puts "+$fname"; + } + } + + "rename" { + if {$namea != ""} { + #puts "rename from $namea to $fname"; + puts "-$namea"; + puts "+$fname"; + } else { + set namea $fname; + #puts "namea = $namea"; + } + } + + "chdir" { + set cwd "$fname"; + #puts "Changed working directory to $cwd"; + } + + "unlink" { + puts "-$fname"; + } + + default { + puts "Got a [lindex $interested 0] $fname"; + } + } + } + } + + "GIO" { + set namea ""; + if {$state != "CALL" && $state != "GIO"} { + puts "Invalid state transition from $state to GIO"; + exit 1; + } else { + set state $type; + } + } + + default { + puts stderr "WTF, Invalid state?" + exit 1; + } + } + } +} + +main; |