Release new version 0.17.1
[grml-hwinfo.git] / sysdump
1 #!/usr/bin/perl
2 #
3 #    sysdump - dump /sys to a textformat
4 #
5 #    Copyright 2005 David Schmitt <david@schmitt.edv-bus.at>
6 #
7 #    This program is free software; you can redistribute it and/or modify
8 #    it under the terms of the GNU General Public License as published by
9 #    the Free Software Foundation; either version 2 of the License, or
10 #    (at your option) any later version.
11
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU General Public License for more details.
16
17 #    You should have received a copy of the GNU General Public License
18 #    along with this program; if not, write to the Free Software
19 #    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20 #
21 #       Version 0.1: Initial prototype
22 #
23
24 use warnings;
25 use strict;
26
27 $| = 1;
28
29 #my $basedir = `systool -m`;
30 #chomp $basedir;
31 my $basedir = '/sys';
32
33 sub dump_dir($$)
34 {
35         my $level = shift;
36         my $dir = shift;
37
38         opendir(DIR, $dir) || die "can't opendir $dir: $!";
39         my @entries = grep { !/^\.\.?/ } readdir(DIR);
40         closedir(DIR);
41
42         #print " "x$level;
43         print $dir, ":\n";
44
45         foreach my $entry (sort @entries)
46         {
47                 dump_entry($level + 1, "$dir/$entry");
48         }
49 }
50
51 sub dump_link($$)
52 {
53         my $level = shift;
54         my $link = shift;
55
56         #print " "x$level;
57         print $link, " -> ", readlink($link), "\n";
58 }
59
60 sub dump_value($$)
61 {
62         my $level = shift;
63         my $file = shift;
64
65         if ($file =~ "/sys/kernel/debug/.*") {
66                 print("ignoring file $file\n");
67                 return 0;
68         }
69         if ($file =~ "/sys/kernel/security/apparmor/revision") {
70                 print("ignoring file $file\n");
71                 return 0;
72         }
73
74         if (!open (FILE, "<$file")) {
75                 print STDERR "can't open $file: '$!'\n";
76                 return 0;
77         }
78
79         my $value;
80         {       local $/;
81                 $value = <FILE>;
82                 $value = defined($value)?$value:"undef";
83         }
84         chomp $value;
85         close FILE;
86
87         #print " "x$level;
88         print $file, " = '", $value, "'\n";
89 }
90
91 sub dump_entry($$)
92 {
93         my $level = shift;
94         my $file = shift;
95
96         return dump_link($level, $file) if -l $file;
97         return dump_dir($level, $file) if -d $file;
98         return dump_value($level, $file) if -r $file;
99 }
100
101 dump_dir(0, $basedir);
102