blob: 1eb67fc543df64b2de8e8ddad93e68d0e127a259 [file] [log] [blame]
Joe Perchescb7301c2009-04-07 20:40:12 -07001#!/usr/bin/perl -w
2# (c) 2007, Joe Perches <joe@perches.com>
3# created from checkpatch.pl
4#
5# Print selected MAINTAINERS information for
6# the files modified in a patch or for a file
7#
8# usage: perl scripts/get_maintainers.pl [OPTIONS] <patch>
9# perl scripts/get_maintainers.pl [OPTIONS] -f <file>
10#
11# Licensed under the terms of the GNU GPL License version 2
12
13use strict;
14
15my $P = $0;
Joe Perches290603c2009-06-16 15:33:58 -070016my $V = '0.16';
Joe Perchescb7301c2009-04-07 20:40:12 -070017
18use Getopt::Long qw(:config no_auto_abbrev);
19
20my $lk_path = "./";
21my $email = 1;
22my $email_usename = 1;
23my $email_maintainer = 1;
24my $email_list = 1;
25my $email_subscriber_list = 0;
26my $email_git = 1;
27my $email_git_penguin_chiefs = 0;
28my $email_git_min_signatures = 1;
29my $email_git_max_maintainers = 5;
30my $email_git_since = "1-year-ago";
31my $output_multiline = 1;
32my $output_separator = ", ";
33my $scm = 0;
34my $web = 0;
35my $subsystem = 0;
36my $status = 0;
Joe Perches4a7fdb52009-04-10 12:28:57 -070037my $from_filename = 0;
Joe Perchescb7301c2009-04-07 20:40:12 -070038my $version = 0;
39my $help = 0;
40
41my $exit = 0;
42
43my @penguin_chief = ();
44push(@penguin_chief,"Linus Torvalds:torvalds\@linux-foundation.org");
45#Andrew wants in on most everything - 2009/01/14
46#push(@penguin_chief,"Andrew Morton:akpm\@linux-foundation.org");
47
48my @penguin_chief_names = ();
49foreach my $chief (@penguin_chief) {
50 if ($chief =~ m/^(.*):(.*)/) {
51 my $chief_name = $1;
52 my $chief_addr = $2;
53 push(@penguin_chief_names, $chief_name);
54 }
55}
56my $penguin_chiefs = "\(" . join("|",@penguin_chief_names) . "\)";
57
58if (!GetOptions(
59 'email!' => \$email,
60 'git!' => \$email_git,
61 'git-chief-penguins!' => \$email_git_penguin_chiefs,
62 'git-min-signatures=i' => \$email_git_min_signatures,
63 'git-max-maintainers=i' => \$email_git_max_maintainers,
64 'git-since=s' => \$email_git_since,
65 'm!' => \$email_maintainer,
66 'n!' => \$email_usename,
67 'l!' => \$email_list,
68 's!' => \$email_subscriber_list,
69 'multiline!' => \$output_multiline,
70 'separator=s' => \$output_separator,
71 'subsystem!' => \$subsystem,
72 'status!' => \$status,
73 'scm!' => \$scm,
74 'web!' => \$web,
Joe Perches4a7fdb52009-04-10 12:28:57 -070075 'f|file' => \$from_filename,
Joe Perchescb7301c2009-04-07 20:40:12 -070076 'v|version' => \$version,
77 'h|help' => \$help,
78 )) {
79 usage();
80 die "$P: invalid argument\n";
81}
82
83if ($help != 0) {
84 usage();
85 exit 0;
86}
87
88if ($version != 0) {
89 print("${P} ${V}\n");
90 exit 0;
91}
92
Joe Perchescb7301c2009-04-07 20:40:12 -070093if ($#ARGV < 0) {
94 usage();
95 die "$P: argument missing: patchfile or -f file please\n";
96}
97
98my $selections = $email + $scm + $status + $subsystem + $web;
99if ($selections == 0) {
100 usage();
101 die "$P: Missing required option: email, scm, status, subsystem or web\n";
102}
103
104if ($email && ($email_maintainer + $email_list + $email_subscriber_list
105 + $email_git + $email_git_penguin_chiefs) == 0) {
106 usage();
107 die "$P: Please select at least 1 email option\n";
108}
109
110if (!top_of_kernel_tree($lk_path)) {
111 die "$P: The current directory does not appear to be "
112 . "a linux kernel source tree.\n";
113}
114
115## Read MAINTAINERS for type/value pairs
116
117my @typevalue = ();
118open(MAINT, "<${lk_path}MAINTAINERS") || die "$P: Can't open MAINTAINERS\n";
119while (<MAINT>) {
120 my $line = $_;
121
122 if ($line =~ m/^(\C):\s*(.*)/) {
123 my $type = $1;
124 my $value = $2;
125
126 ##Filename pattern matching
127 if ($type eq "F" || $type eq "X") {
128 $value =~ s@\.@\\\.@g; ##Convert . to \.
129 $value =~ s/\*/\.\*/g; ##Convert * to .*
130 $value =~ s/\?/\./g; ##Convert ? to .
131 }
132 push(@typevalue, "$type:$value");
133 } elsif (!/^(\s)*$/) {
134 $line =~ s/\n$//g;
135 push(@typevalue, $line);
136 }
137}
138close(MAINT);
139
Joe Perches4a7fdb52009-04-10 12:28:57 -0700140## use the filenames on the command line or find the filenames in the patchfiles
Joe Perchescb7301c2009-04-07 20:40:12 -0700141
142my @files = ();
143
Joe Perches4a7fdb52009-04-10 12:28:57 -0700144foreach my $file (@ARGV) {
145 next if ((-d $file));
146 if (!(-f $file)) {
147 die "$P: file '${file}' not found\n";
Joe Perchescb7301c2009-04-07 20:40:12 -0700148 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700149 if ($from_filename) {
150 push(@files, $file);
151 } else {
152 my $file_cnt = @files;
153 open(PATCH, "<$file") or die "$P: Can't open ${file}\n";
154 while (<PATCH>) {
155 if (m/^\+\+\+\s+(\S+)/) {
156 my $filename = $1;
157 $filename =~ s@^[^/]*/@@;
158 $filename =~ s@\n@@;
159 push(@files, $filename);
160 }
Joe Perchescb7301c2009-04-07 20:40:12 -0700161 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700162 close(PATCH);
163 if ($file_cnt == @files) {
164 die "$P: file '${file}' doesn't appear to be a patch. "
165 . "Add -f to options?\n";
166 }
167 @files = sort_and_uniq(@files);
Joe Perchescb7301c2009-04-07 20:40:12 -0700168 }
Joe Perchescb7301c2009-04-07 20:40:12 -0700169}
170
171my @email_to = ();
Joe Perches290603c2009-06-16 15:33:58 -0700172my @list_to = ();
Joe Perchescb7301c2009-04-07 20:40:12 -0700173my @scm = ();
174my @web = ();
175my @subsystem = ();
176my @status = ();
177
178# Find responsible parties
179
180foreach my $file (@files) {
181
182#Do not match excluded file patterns
183
184 my $exclude = 0;
185 foreach my $line (@typevalue) {
Joe Perches290603c2009-06-16 15:33:58 -0700186 if ($line =~ m/^(\C):\s*(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700187 my $type = $1;
188 my $value = $2;
189 if ($type eq 'X') {
190 if (file_match_pattern($file, $value)) {
191 $exclude = 1;
192 }
193 }
194 }
195 }
196
197 if (!$exclude) {
198 my $tvi = 0;
199 foreach my $line (@typevalue) {
Joe Perches290603c2009-06-16 15:33:58 -0700200 if ($line =~ m/^(\C):\s*(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700201 my $type = $1;
202 my $value = $2;
203 if ($type eq 'F') {
204 if (file_match_pattern($file, $value)) {
205 add_categories($tvi);
206 }
207 }
208 }
209 $tvi++;
210 }
211 }
212
Joe Perches4a7fdb52009-04-10 12:28:57 -0700213 if ($email && $email_git) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700214 recent_git_signoffs($file);
215 }
216
217}
218
Joe Perchesf5f50782009-06-16 15:34:00 -0700219if ($email) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700220 foreach my $chief (@penguin_chief) {
221 if ($chief =~ m/^(.*):(.*)/) {
Joe Perchesf5f50782009-06-16 15:34:00 -0700222 my $email_address;
Joe Perchescb7301c2009-04-07 20:40:12 -0700223 if ($email_usename) {
Joe Perchesf5f50782009-06-16 15:34:00 -0700224 $email_address = format_email($1, $2);
Joe Perchescb7301c2009-04-07 20:40:12 -0700225 } else {
Joe Perchesf5f50782009-06-16 15:34:00 -0700226 $email_address = $2;
227 }
228 if ($email_git_penguin_chiefs) {
229 push(@email_to, $email_address);
230 } else {
231 @email_to = grep(!/${email_address}/, @email_to);
Joe Perchescb7301c2009-04-07 20:40:12 -0700232 }
233 }
234 }
235}
236
Joe Perches290603c2009-06-16 15:33:58 -0700237if ($email || $email_list) {
238 my @to = ();
239 if ($email) {
240 @to = (@to, @email_to);
Joe Perchescb7301c2009-04-07 20:40:12 -0700241 }
Joe Perches290603c2009-06-16 15:33:58 -0700242 if ($email_list) {
Joe Perches290603c2009-06-16 15:33:58 -0700243 @to = (@to, @list_to);
Joe Perches290603c2009-06-16 15:33:58 -0700244 }
245 output(uniq(@to));
Joe Perchescb7301c2009-04-07 20:40:12 -0700246}
247
248if ($scm) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700249 @scm = sort_and_uniq(@scm);
Joe Perchescb7301c2009-04-07 20:40:12 -0700250 output(@scm);
251}
252
253if ($status) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700254 @status = sort_and_uniq(@status);
Joe Perchescb7301c2009-04-07 20:40:12 -0700255 output(@status);
256}
257
258if ($subsystem) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700259 @subsystem = sort_and_uniq(@subsystem);
Joe Perchescb7301c2009-04-07 20:40:12 -0700260 output(@subsystem);
261}
262
263if ($web) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700264 @web = sort_and_uniq(@web);
Joe Perchescb7301c2009-04-07 20:40:12 -0700265 output(@web);
266}
267
268exit($exit);
269
270sub file_match_pattern {
271 my ($file, $pattern) = @_;
272 if (substr($pattern, -1) eq "/") {
273 if ($file =~ m@^$pattern@) {
274 return 1;
275 }
276 } else {
277 if ($file =~ m@^$pattern@) {
278 my $s1 = ($file =~ tr@/@@);
279 my $s2 = ($pattern =~ tr@/@@);
280 if ($s1 == $s2) {
281 return 1;
282 }
283 }
284 }
285 return 0;
286}
287
288sub usage {
289 print <<EOT;
290usage: $P [options] patchfile
291 $P [options] -f file
292version: $V
293
294MAINTAINER field selection options:
295 --email => print email address(es) if any
296 --git => include recent git \*-by: signers
297 --git-chief-penguins => include ${penguin_chiefs}
298 --git-min-signatures => number of signatures required (default: 1)
299 --git-max-maintainers => maximum maintainers to add (default: 5)
300 --git-since => git history to use (default: 1-year-ago)
301 --m => include maintainer(s) if any
302 --n => include name 'Full Name <addr\@domain.tld>'
303 --l => include list(s) if any
304 --s => include subscriber only list(s) if any
305 --scm => print SCM tree(s) if any
306 --status => print status if any
307 --subsystem => print subsystem name if any
308 --web => print website(s) if any
309
310Output type options:
311 --separator [, ] => separator for multiple entries on 1 line
312 --multiline => print 1 entry per line
313
314Default options:
Joe Perches290603c2009-06-16 15:33:58 -0700315 [--email --git --m --n --l --multiline]
Joe Perchescb7301c2009-04-07 20:40:12 -0700316
317Other options:
Joe Perchesf5f50782009-06-16 15:34:00 -0700318 --version => show version
Joe Perchescb7301c2009-04-07 20:40:12 -0700319 --help => show this help information
320
321EOT
322}
323
324sub top_of_kernel_tree {
325 my ($lk_path) = @_;
326
327 if ($lk_path ne "" && substr($lk_path,length($lk_path)-1,1) ne "/") {
328 $lk_path .= "/";
329 }
330 if ( (-f "${lk_path}COPYING")
331 && (-f "${lk_path}CREDITS")
332 && (-f "${lk_path}Kbuild")
333 && (-f "${lk_path}MAINTAINERS")
334 && (-f "${lk_path}Makefile")
335 && (-f "${lk_path}README")
336 && (-d "${lk_path}Documentation")
337 && (-d "${lk_path}arch")
338 && (-d "${lk_path}include")
339 && (-d "${lk_path}drivers")
340 && (-d "${lk_path}fs")
341 && (-d "${lk_path}init")
342 && (-d "${lk_path}ipc")
343 && (-d "${lk_path}kernel")
344 && (-d "${lk_path}lib")
345 && (-d "${lk_path}scripts")) {
346 return 1;
347 }
348 return 0;
349}
350
351sub format_email {
352 my ($name, $email) = @_;
353
354 $name =~ s/^\s+|\s+$//g;
355 $email =~ s/^\s+|\s+$//g;
356
357 my $formatted_email = "";
358
359 if ($name =~ /[^a-z0-9 \.\-]/i) { ##has "must quote" chars
360 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
361 $formatted_email = "\"${name}\"\ \<${email}\>";
362 } else {
363 $formatted_email = "${name} \<${email}\>";
364 }
365 return $formatted_email;
366}
367
368sub add_categories {
369 my ($index) = @_;
370
371 $index = $index - 1;
372 while ($index >= 0) {
373 my $tv = $typevalue[$index];
Joe Perches290603c2009-06-16 15:33:58 -0700374 if ($tv =~ m/^(\C):\s*(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700375 my $ptype = $1;
376 my $pvalue = $2;
377 if ($ptype eq "L") {
Joe Perches290603c2009-06-16 15:33:58 -0700378 my $list_address = $pvalue;
379 my $list_additional = "";
380 if ($list_address =~ m/([^\s]+)\s+(.*)$/) {
381 $list_address = $1;
382 $list_additional = $2;
383 }
Joe Perchesbdf7c682009-06-16 15:33:59 -0700384 if ($list_additional =~ m/subscribers-only/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700385 if ($email_subscriber_list) {
Joe Perches290603c2009-06-16 15:33:58 -0700386 push(@list_to, $list_address);
Joe Perchescb7301c2009-04-07 20:40:12 -0700387 }
388 } else {
389 if ($email_list) {
Joe Perches290603c2009-06-16 15:33:58 -0700390 push(@list_to, $list_address);
Joe Perchescb7301c2009-04-07 20:40:12 -0700391 }
392 }
393 } elsif ($ptype eq "M") {
394 if ($email_maintainer) {
395 if ($index >= 0) {
396 my $tv = $typevalue[$index - 1];
Joe Perches290603c2009-06-16 15:33:58 -0700397 if ($tv =~ m/^(\C):\s*(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700398 if ($1 eq "P" && $email_usename) {
399 push(@email_to, format_email($2, $pvalue));
400 } else {
401 push(@email_to, $pvalue);
402 }
403 }
404 } else {
405 push(@email_to, $pvalue);
406 }
407 }
408 } elsif ($ptype eq "T") {
409 push(@scm, $pvalue);
410 } elsif ($ptype eq "W") {
411 push(@web, $pvalue);
412 } elsif ($ptype eq "S") {
413 push(@status, $pvalue);
414 }
415
416 $index--;
417 } else {
418 push(@subsystem,$tv);
419 $index = -1;
420 }
421 }
422}
423
424sub which {
425 my ($bin) = @_;
426
Joe Perchesf5f50782009-06-16 15:34:00 -0700427 foreach my $path (split(/:/, $ENV{PATH})) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700428 if (-e "$path/$bin") {
429 return "$path/$bin";
430 }
431 }
432
433 return "";
434}
435
436sub recent_git_signoffs {
437 my ($file) = @_;
438
439 my $sign_offs = "";
440 my $cmd = "";
441 my $output = "";
442 my $count = 0;
443 my @lines = ();
444
445 if (which("git") eq "") {
446 die("$P: git not found. Add --nogit to options?\n");
447 }
448
449 $cmd = "git log --since=${email_git_since} -- ${file}";
Joe Perchesf5f50782009-06-16 15:34:00 -0700450 $cmd .= " | grep -Pi \"^[-_ a-z]+by:.*\\\@.*\$\"";
Joe Perches4a7fdb52009-04-10 12:28:57 -0700451 $cmd .= " | cut -f2- -d\":\"";
Joe Perchescb7301c2009-04-07 20:40:12 -0700452 $cmd .= " | sort | uniq -c | sort -rn";
453
454 $output = `${cmd}`;
455 $output =~ s/^\s*//gm;
456
457 @lines = split("\n", $output);
458 foreach my $line (@lines) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700459 if ($line =~ m/([0-9]+)\s+(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700460 my $sign_offs = $1;
Joe Perches4a7fdb52009-04-10 12:28:57 -0700461 $line = $2;
Joe Perchescb7301c2009-04-07 20:40:12 -0700462 $count++;
463 if ($sign_offs < $email_git_min_signatures ||
464 $count > $email_git_max_maintainers) {
465 last;
466 }
467 } else {
468 die("$P: Unexpected git output: ${line}\n");
469 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700470 if ($line =~ m/(.+)<(.+)>/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700471 my $git_name = $1;
472 my $git_addr = $2;
473 $git_name =~ tr/^\"//;
Joe Perches4a7fdb52009-04-10 12:28:57 -0700474 $git_name =~ tr/^\\s*//;
Joe Perchescb7301c2009-04-07 20:40:12 -0700475 $git_name =~ tr/\"$//;
Joe Perches4a7fdb52009-04-10 12:28:57 -0700476 $git_name =~ tr/\\s*$//;
Joe Perchescb7301c2009-04-07 20:40:12 -0700477 if ($email_usename) {
478 push(@email_to, format_email($git_name, $git_addr));
479 } else {
480 push(@email_to, $git_addr);
481 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700482 } elsif ($line =~ m/<(.+)>/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700483 my $git_addr = $1;
484 push(@email_to, $git_addr);
485 } else {
486 push(@email_to, $line);
487 }
488 }
489 return $output;
490}
491
492sub uniq {
493 my @parms = @_;
494
495 my %saw;
496 @parms = grep(!$saw{$_}++, @parms);
497 return @parms;
498}
499
500sub sort_and_uniq {
501 my @parms = @_;
502
503 my %saw;
504 @parms = sort @parms;
505 @parms = grep(!$saw{$_}++, @parms);
506 return @parms;
507}
508
509sub output {
510 my @parms = @_;
511
512 if ($output_multiline) {
513 foreach my $line (@parms) {
514 print("${line}\n");
515 }
516 } else {
517 print(join($output_separator, @parms));
518 print("\n");
519 }
520}