2006-07-19 16:49:59 +00:00
|
|
|
#! @perl@ -w
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
|
|
|
my $procDir = "/proc";
|
|
|
|
|
|
|
|
|
|
|
|
sub readProc {
|
|
|
|
return unless -d $procDir;
|
|
|
|
|
|
|
|
opendir DIR, $procDir or return;
|
|
|
|
|
|
|
|
foreach my $name (readdir DIR) {
|
|
|
|
next unless $name =~ /^\d+$/;
|
|
|
|
|
|
|
|
my $process = "$procDir/$name";
|
|
|
|
|
|
|
|
#print STDERR "=== $process\n";
|
|
|
|
|
|
|
|
my $target;
|
|
|
|
print "$target\n" if $target = readlink "$process/exe";
|
|
|
|
print "$target\n" if $target = readlink "$process/cwd";
|
|
|
|
|
|
|
|
if (opendir FDS, "$process/fd") {
|
|
|
|
foreach my $name (readdir FDS) {
|
|
|
|
$target = readlink "$process/fd/$name";
|
|
|
|
print "$target\n" if $target && substr($target, 0, 1) eq "/";
|
|
|
|
}
|
|
|
|
closedir FDS;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (open MAP, "<$process/maps") {
|
|
|
|
while (<MAP>) {
|
|
|
|
next unless /^ \s* \S+ \s+ \S+ \s+ \S+ \s+ \S+ \s+ \S+ \s+ (\/\S+) \s* $/x;
|
|
|
|
print "$1\n";
|
|
|
|
}
|
|
|
|
close MAP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
closedir DIR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sub lsof {
|
2006-09-20 15:14:19 +00:00
|
|
|
return unless open LSOF, "lsof -n -w -F n 2> /dev/null |";
|
2006-07-19 16:49:59 +00:00
|
|
|
|
|
|
|
while (<LSOF>) {
|
|
|
|
next unless /^n (\/ .*)$/x;
|
|
|
|
print $1, "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
close LSOF;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
readProc;
|
|
|
|
lsof;
|