f97899c87923fd64d83b4a42f9b1c853056981c0
[pandora-kernel.git] / scripts / export_report.pl
1 #!/usr/bin/perl -w
2 #
3 # (C) Copyright IBM Corporation 2006.
4 #       Released under GPL v2.
5 #       Author : Ram Pai (linuxram@us.ibm.com)
6 #
7 # Usage: export_report.pl -k Module.symvers [-o report_file ] -f *.mod.c
8 #
9
10 use Getopt::Std;
11 use strict;
12
13 sub numerically {
14         my $no1 = (split /\s+/, $a)[1];
15         my $no2 = (split /\s+/, $b)[1];
16         return $no1 <=> $no2;
17 }
18
19 sub alphabetically {
20         my ($module1, $value1) = @{$a};
21         my ($module2, $value2) = @{$b};
22         return $value1 <=> $value2 || $module2 cmp $module1;
23 }
24
25 sub print_depends_on {
26         my ($href) = @_;
27         print "\n";
28         while (my ($mod, $list) = each %$href) {
29                 print "\t$mod:\n";
30                 foreach my $sym (sort numerically @{$list}) {
31                         my ($symbol, $no) = split /\s+/, $sym;
32                         printf("\t\t%-25s\t%-25d\n", $symbol, $no);
33                 }
34                 print "\n";
35         }
36         print "\n";
37         print "~"x80 , "\n";
38 }
39
40 sub usage {
41         print "Usage: @_ -h -k Module.symvers  [ -o outputfile ] \n",
42               "\t-f: treat all the non-option argument as .mod.c files. ",
43               "Recommend using this as the last option\n",
44               "\t-h: print detailed help\n",
45               "\t-k: the path to Module.symvers file. By default uses ",
46               "the file from the current directory\n",
47               "\t-o outputfile: output the report to outputfile\n";
48         exit 0;
49 }
50
51 sub collectcfiles {
52     my @file;
53     while (<.tmp_versions/*.mod>) {
54         open my $fh, '<', $_ or die "cannot open $_: $!\n";
55         push (@file,
56               grep s/\.ko/.mod.c/,      # change the suffix
57               grep m/.+\.ko/,           # find the .ko path
58               <$fh>);                   # lines in opened file
59     }
60     chomp @file;
61     return @file;
62 }
63
64 my (%SYMBOL, %MODULE, %opt, @allcfiles);
65
66 if (not getopts('hk:o:f',\%opt) or defined $opt{'h'}) {
67         usage($0);
68 }
69
70 if (defined $opt{'f'}) {
71         @allcfiles = @ARGV;
72 } else {
73         @allcfiles = collectcfiles();
74 }
75
76 if (not defined $opt{'k'}) {
77         $opt{'k'} = "Module.symvers";
78 }
79
80 open (my $module_symvers, '<', $opt{'k'})
81     or die "Sorry, cannot open $opt{'k'}: $!\n";
82
83 if (defined $opt{'o'}) {
84     open (my $out, '>', $opt{'o'})
85         or die "Sorry, cannot open $opt{'o'} $!\n";
86
87     select $out;
88 }
89
90 #
91 # collect all the symbols and their attributes from the
92 # Module.symvers file
93 #
94 while ( <$module_symvers> ) {
95         chomp;
96         my (undef, $symbol, $module, $gpl) = split;
97         $SYMBOL { $symbol } =  [ $module , "0" , $symbol, $gpl];
98 }
99 close($module_symvers);
100
101 #
102 # collect the usage count of each symbol.
103 #
104 foreach my $thismod (@allcfiles) {
105         my $module;
106
107         unless (open ($module, '<', $thismod)) {
108                 warn "Sorry, cannot open $thismod: $!\n";
109                 next;
110         }
111
112         my $state=0;
113         while ( <$module> ) {
114                 chomp;
115                 if ($state == 0) {
116                         $state = 1 if ($_ =~ /static const struct modversion_info/);
117                         next;
118                 }
119                 if ($state == 1) {
120                         $state = 2 if ($_ =~ /__attribute__\(\(section\("__versions"\)\)\)/);
121                         next;
122                 }
123                 if ($state == 2) {
124                         if ( $_ !~ /0x[0-9a-f]+,/ ) {
125                                 next;
126                         }
127                         my $sym = (split /([,"])/,)[4];
128                         my ($module, $value, $symbol, $gpl) = @{$SYMBOL{$sym}};
129                         $SYMBOL{ $sym } =  [ $module, $value+1, $symbol, $gpl];
130                         push(@{$MODULE{$thismod}} , $sym);
131                 }
132         }
133         if ($state != 2) {
134                 print "WARNING:$thismod is not built with CONFIG_MODVERSION enabled\n";
135         }
136         close($module);
137 }
138
139 print "\tThis file reports the exported symbols usage patterns by in-tree\n",
140         "\t\t\t\tmodules\n";
141 printf("%s\n\n\n","x"x80);
142 printf("\t\t\t\tINDEX\n\n\n");
143 printf("SECTION 1: Usage counts of all exported symbols\n");
144 printf("SECTION 2: List of modules and the exported symbols they use\n");
145 printf("%s\n\n\n","x"x80);
146 printf("SECTION 1:\tThe exported symbols and their usage count\n\n");
147 printf("%-25s\t%-25s\t%-5s\t%-25s\n", "Symbol", "Module", "Usage count",
148         "export type");
149
150 #
151 # print the list of unused exported symbols
152 #
153 foreach my $list (sort alphabetically values(%SYMBOL)) {
154         my ($module, $value, $symbol, $gpl) = @{$list};
155         printf("%-25s\t%-25s\t%-10s\t", $symbol, $module, $value);
156         if (defined $gpl) {
157                 printf("%-25s\n",$gpl);
158         } else {
159                 printf("\n");
160         }
161 }
162 printf("%s\n\n\n","x"x80);
163
164 printf("SECTION 2:\n\tThis section reports export-symbol-usage of in-kernel
165 modules. Each module lists the modules, and the symbols from that module that
166 it uses.  Each listed symbol reports the number of modules using it\n");
167
168 print "~"x80 , "\n";
169 while (my ($thismod, $list) = each %MODULE) {
170         my %depends;
171         $thismod =~ s/\.mod\.c/.ko/;
172         print "\t\t\t$thismod\n";
173         foreach my $symbol (@{$list}) {
174                 my ($module, $value, undef, $gpl) = @{$SYMBOL{$symbol}};
175                 push (@{$depends{"$module"}}, "$symbol $value");
176         }
177         print_depends_on(\%depends);
178 }