blob: 159ce64ad26b6c233b0b26e6645b87a3d60bee30 [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
Joe Perches1b5e1cf2009-06-16 15:34:01 -070058# rfc822 - preloaded methods go here.
59my $rfc822_lwsp = "(?:(?:\\r\\n)?[ \\t])";
60my $rfc822_char = '[\\000-\\177]';
61
Joe Perchescb7301c2009-04-07 20:40:12 -070062if (!GetOptions(
63 'email!' => \$email,
64 'git!' => \$email_git,
65 'git-chief-penguins!' => \$email_git_penguin_chiefs,
66 'git-min-signatures=i' => \$email_git_min_signatures,
67 'git-max-maintainers=i' => \$email_git_max_maintainers,
68 'git-since=s' => \$email_git_since,
69 'm!' => \$email_maintainer,
70 'n!' => \$email_usename,
71 'l!' => \$email_list,
72 's!' => \$email_subscriber_list,
73 'multiline!' => \$output_multiline,
74 'separator=s' => \$output_separator,
75 'subsystem!' => \$subsystem,
76 'status!' => \$status,
77 'scm!' => \$scm,
78 'web!' => \$web,
Joe Perches4a7fdb52009-04-10 12:28:57 -070079 'f|file' => \$from_filename,
Joe Perchescb7301c2009-04-07 20:40:12 -070080 'v|version' => \$version,
81 'h|help' => \$help,
82 )) {
83 usage();
84 die "$P: invalid argument\n";
85}
86
87if ($help != 0) {
88 usage();
89 exit 0;
90}
91
92if ($version != 0) {
93 print("${P} ${V}\n");
94 exit 0;
95}
96
Joe Perchescb7301c2009-04-07 20:40:12 -070097if ($#ARGV < 0) {
98 usage();
99 die "$P: argument missing: patchfile or -f file please\n";
100}
101
102my $selections = $email + $scm + $status + $subsystem + $web;
103if ($selections == 0) {
104 usage();
105 die "$P: Missing required option: email, scm, status, subsystem or web\n";
106}
107
108if ($email && ($email_maintainer + $email_list + $email_subscriber_list
109 + $email_git + $email_git_penguin_chiefs) == 0) {
110 usage();
111 die "$P: Please select at least 1 email option\n";
112}
113
114if (!top_of_kernel_tree($lk_path)) {
115 die "$P: The current directory does not appear to be "
116 . "a linux kernel source tree.\n";
117}
118
119## Read MAINTAINERS for type/value pairs
120
121my @typevalue = ();
122open(MAINT, "<${lk_path}MAINTAINERS") || die "$P: Can't open MAINTAINERS\n";
123while (<MAINT>) {
124 my $line = $_;
125
126 if ($line =~ m/^(\C):\s*(.*)/) {
127 my $type = $1;
128 my $value = $2;
129
130 ##Filename pattern matching
131 if ($type eq "F" || $type eq "X") {
132 $value =~ s@\.@\\\.@g; ##Convert . to \.
133 $value =~ s/\*/\.\*/g; ##Convert * to .*
134 $value =~ s/\?/\./g; ##Convert ? to .
135 }
136 push(@typevalue, "$type:$value");
137 } elsif (!/^(\s)*$/) {
138 $line =~ s/\n$//g;
139 push(@typevalue, $line);
140 }
141}
142close(MAINT);
143
Joe Perches4a7fdb52009-04-10 12:28:57 -0700144## use the filenames on the command line or find the filenames in the patchfiles
Joe Perchescb7301c2009-04-07 20:40:12 -0700145
146my @files = ();
147
Joe Perches4a7fdb52009-04-10 12:28:57 -0700148foreach my $file (@ARGV) {
149 next if ((-d $file));
150 if (!(-f $file)) {
151 die "$P: file '${file}' not found\n";
Joe Perchescb7301c2009-04-07 20:40:12 -0700152 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700153 if ($from_filename) {
154 push(@files, $file);
155 } else {
156 my $file_cnt = @files;
157 open(PATCH, "<$file") or die "$P: Can't open ${file}\n";
158 while (<PATCH>) {
159 if (m/^\+\+\+\s+(\S+)/) {
160 my $filename = $1;
161 $filename =~ s@^[^/]*/@@;
162 $filename =~ s@\n@@;
163 push(@files, $filename);
164 }
Joe Perchescb7301c2009-04-07 20:40:12 -0700165 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700166 close(PATCH);
167 if ($file_cnt == @files) {
168 die "$P: file '${file}' doesn't appear to be a patch. "
169 . "Add -f to options?\n";
170 }
171 @files = sort_and_uniq(@files);
Joe Perchescb7301c2009-04-07 20:40:12 -0700172 }
Joe Perchescb7301c2009-04-07 20:40:12 -0700173}
174
175my @email_to = ();
Joe Perches290603c2009-06-16 15:33:58 -0700176my @list_to = ();
Joe Perchescb7301c2009-04-07 20:40:12 -0700177my @scm = ();
178my @web = ();
179my @subsystem = ();
180my @status = ();
181
182# Find responsible parties
183
184foreach my $file (@files) {
185
186#Do not match excluded file patterns
187
188 my $exclude = 0;
189 foreach my $line (@typevalue) {
Joe Perches290603c2009-06-16 15:33:58 -0700190 if ($line =~ m/^(\C):\s*(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700191 my $type = $1;
192 my $value = $2;
193 if ($type eq 'X') {
194 if (file_match_pattern($file, $value)) {
195 $exclude = 1;
196 }
197 }
198 }
199 }
200
201 if (!$exclude) {
202 my $tvi = 0;
203 foreach my $line (@typevalue) {
Joe Perches290603c2009-06-16 15:33:58 -0700204 if ($line =~ m/^(\C):\s*(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700205 my $type = $1;
206 my $value = $2;
207 if ($type eq 'F') {
208 if (file_match_pattern($file, $value)) {
209 add_categories($tvi);
210 }
211 }
212 }
213 $tvi++;
214 }
215 }
216
Joe Perches4a7fdb52009-04-10 12:28:57 -0700217 if ($email && $email_git) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700218 recent_git_signoffs($file);
219 }
220
221}
222
Joe Perchesf5f50782009-06-16 15:34:00 -0700223if ($email) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700224 foreach my $chief (@penguin_chief) {
225 if ($chief =~ m/^(.*):(.*)/) {
Joe Perchesf5f50782009-06-16 15:34:00 -0700226 my $email_address;
Joe Perchescb7301c2009-04-07 20:40:12 -0700227 if ($email_usename) {
Joe Perchesf5f50782009-06-16 15:34:00 -0700228 $email_address = format_email($1, $2);
Joe Perchescb7301c2009-04-07 20:40:12 -0700229 } else {
Joe Perchesf5f50782009-06-16 15:34:00 -0700230 $email_address = $2;
231 }
232 if ($email_git_penguin_chiefs) {
233 push(@email_to, $email_address);
234 } else {
235 @email_to = grep(!/${email_address}/, @email_to);
Joe Perchescb7301c2009-04-07 20:40:12 -0700236 }
237 }
238 }
239}
240
Joe Perches290603c2009-06-16 15:33:58 -0700241if ($email || $email_list) {
242 my @to = ();
243 if ($email) {
244 @to = (@to, @email_to);
Joe Perchescb7301c2009-04-07 20:40:12 -0700245 }
Joe Perches290603c2009-06-16 15:33:58 -0700246 if ($email_list) {
Joe Perches290603c2009-06-16 15:33:58 -0700247 @to = (@to, @list_to);
Joe Perches290603c2009-06-16 15:33:58 -0700248 }
249 output(uniq(@to));
Joe Perchescb7301c2009-04-07 20:40:12 -0700250}
251
252if ($scm) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700253 @scm = sort_and_uniq(@scm);
Joe Perchescb7301c2009-04-07 20:40:12 -0700254 output(@scm);
255}
256
257if ($status) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700258 @status = sort_and_uniq(@status);
Joe Perchescb7301c2009-04-07 20:40:12 -0700259 output(@status);
260}
261
262if ($subsystem) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700263 @subsystem = sort_and_uniq(@subsystem);
Joe Perchescb7301c2009-04-07 20:40:12 -0700264 output(@subsystem);
265}
266
267if ($web) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700268 @web = sort_and_uniq(@web);
Joe Perchescb7301c2009-04-07 20:40:12 -0700269 output(@web);
270}
271
272exit($exit);
273
274sub file_match_pattern {
275 my ($file, $pattern) = @_;
276 if (substr($pattern, -1) eq "/") {
277 if ($file =~ m@^$pattern@) {
278 return 1;
279 }
280 } else {
281 if ($file =~ m@^$pattern@) {
282 my $s1 = ($file =~ tr@/@@);
283 my $s2 = ($pattern =~ tr@/@@);
284 if ($s1 == $s2) {
285 return 1;
286 }
287 }
288 }
289 return 0;
290}
291
292sub usage {
293 print <<EOT;
294usage: $P [options] patchfile
295 $P [options] -f file
296version: $V
297
298MAINTAINER field selection options:
299 --email => print email address(es) if any
300 --git => include recent git \*-by: signers
301 --git-chief-penguins => include ${penguin_chiefs}
302 --git-min-signatures => number of signatures required (default: 1)
303 --git-max-maintainers => maximum maintainers to add (default: 5)
304 --git-since => git history to use (default: 1-year-ago)
305 --m => include maintainer(s) if any
306 --n => include name 'Full Name <addr\@domain.tld>'
307 --l => include list(s) if any
308 --s => include subscriber only list(s) if any
309 --scm => print SCM tree(s) if any
310 --status => print status if any
311 --subsystem => print subsystem name if any
312 --web => print website(s) if any
313
314Output type options:
315 --separator [, ] => separator for multiple entries on 1 line
316 --multiline => print 1 entry per line
317
318Default options:
Joe Perches290603c2009-06-16 15:33:58 -0700319 [--email --git --m --n --l --multiline]
Joe Perchescb7301c2009-04-07 20:40:12 -0700320
321Other options:
Joe Perchesf5f50782009-06-16 15:34:00 -0700322 --version => show version
Joe Perchescb7301c2009-04-07 20:40:12 -0700323 --help => show this help information
324
325EOT
326}
327
328sub top_of_kernel_tree {
329 my ($lk_path) = @_;
330
331 if ($lk_path ne "" && substr($lk_path,length($lk_path)-1,1) ne "/") {
332 $lk_path .= "/";
333 }
334 if ( (-f "${lk_path}COPYING")
335 && (-f "${lk_path}CREDITS")
336 && (-f "${lk_path}Kbuild")
337 && (-f "${lk_path}MAINTAINERS")
338 && (-f "${lk_path}Makefile")
339 && (-f "${lk_path}README")
340 && (-d "${lk_path}Documentation")
341 && (-d "${lk_path}arch")
342 && (-d "${lk_path}include")
343 && (-d "${lk_path}drivers")
344 && (-d "${lk_path}fs")
345 && (-d "${lk_path}init")
346 && (-d "${lk_path}ipc")
347 && (-d "${lk_path}kernel")
348 && (-d "${lk_path}lib")
349 && (-d "${lk_path}scripts")) {
350 return 1;
351 }
352 return 0;
353}
354
355sub format_email {
356 my ($name, $email) = @_;
357
358 $name =~ s/^\s+|\s+$//g;
Joe Perchesd7895042009-06-16 15:34:02 -0700359 $name =~ s/^\"|\"$//g;
Joe Perchescb7301c2009-04-07 20:40:12 -0700360 $email =~ s/^\s+|\s+$//g;
361
362 my $formatted_email = "";
363
364 if ($name =~ /[^a-z0-9 \.\-]/i) { ##has "must quote" chars
365 $name =~ s/(?<!\\)"/\\"/g; ##escape quotes
366 $formatted_email = "\"${name}\"\ \<${email}\>";
367 } else {
368 $formatted_email = "${name} \<${email}\>";
369 }
370 return $formatted_email;
371}
372
373sub add_categories {
374 my ($index) = @_;
375
376 $index = $index - 1;
377 while ($index >= 0) {
378 my $tv = $typevalue[$index];
Joe Perches290603c2009-06-16 15:33:58 -0700379 if ($tv =~ m/^(\C):\s*(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700380 my $ptype = $1;
381 my $pvalue = $2;
382 if ($ptype eq "L") {
Joe Perches290603c2009-06-16 15:33:58 -0700383 my $list_address = $pvalue;
384 my $list_additional = "";
385 if ($list_address =~ m/([^\s]+)\s+(.*)$/) {
386 $list_address = $1;
387 $list_additional = $2;
388 }
Joe Perchesbdf7c682009-06-16 15:33:59 -0700389 if ($list_additional =~ m/subscribers-only/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700390 if ($email_subscriber_list) {
Joe Perches290603c2009-06-16 15:33:58 -0700391 push(@list_to, $list_address);
Joe Perchescb7301c2009-04-07 20:40:12 -0700392 }
393 } else {
394 if ($email_list) {
Joe Perches290603c2009-06-16 15:33:58 -0700395 push(@list_to, $list_address);
Joe Perchescb7301c2009-04-07 20:40:12 -0700396 }
397 }
398 } elsif ($ptype eq "M") {
399 if ($email_maintainer) {
Joe Perches1b5e1cf2009-06-16 15:34:01 -0700400 push_email_addresses($pvalue);
Joe Perchescb7301c2009-04-07 20:40:12 -0700401 }
402 } elsif ($ptype eq "T") {
403 push(@scm, $pvalue);
404 } elsif ($ptype eq "W") {
405 push(@web, $pvalue);
406 } elsif ($ptype eq "S") {
407 push(@status, $pvalue);
408 }
409
410 $index--;
411 } else {
412 push(@subsystem,$tv);
413 $index = -1;
414 }
415 }
416}
417
Joe Perches1b5e1cf2009-06-16 15:34:01 -0700418sub push_email_address {
419 my ($email_address) = @_;
420
421 my $email_name = "";
422 if ($email_address =~ m/([^<]+)<(.*\@.*)>$/) {
423 $email_name = $1;
424 $email_address = $2;
425 }
426
427 if ($email_usename && $email_name) {
428 push(@email_to, format_email($email_name, $email_address));
429 } else {
430 push(@email_to, $email_address);
431 }
432}
433
434sub push_email_addresses {
435 my ($address) = @_;
436
437 my @address_list = ();
438
439 if (@address_list = rfc822_validlist($address)) {
440 my $array_count = shift(@address_list);
441 while (my $entry = shift(@address_list)) {
442 push_email_address($entry);
443 }
444 }
445
446}
447
Joe Perchescb7301c2009-04-07 20:40:12 -0700448sub which {
449 my ($bin) = @_;
450
Joe Perchesf5f50782009-06-16 15:34:00 -0700451 foreach my $path (split(/:/, $ENV{PATH})) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700452 if (-e "$path/$bin") {
453 return "$path/$bin";
454 }
455 }
456
457 return "";
458}
459
460sub recent_git_signoffs {
461 my ($file) = @_;
462
463 my $sign_offs = "";
464 my $cmd = "";
465 my $output = "";
466 my $count = 0;
467 my @lines = ();
468
469 if (which("git") eq "") {
Joe Perchesde2fc492009-06-16 15:34:01 -0700470 warn("$P: git not found. Add --nogit to options?\n");
471 return;
472 }
473 if (!(-d ".git")) {
474 warn("$P: .git repository not found.\n");
475 warn("Use a .git repository for better results.\n");
476 warn("ie: git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git\n");
477 return;
Joe Perchescb7301c2009-04-07 20:40:12 -0700478 }
479
480 $cmd = "git log --since=${email_git_since} -- ${file}";
Joe Perchesde2fc492009-06-16 15:34:01 -0700481 $cmd .= " | grep -Ei \"^[-_ a-z]+by:.*\\\@.*\$\"";
482 if (!$email_git_penguin_chiefs) {
483 $cmd .= " | grep -Ev \"${penguin_chiefs}\"";
484 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700485 $cmd .= " | cut -f2- -d\":\"";
Joe Perchescb7301c2009-04-07 20:40:12 -0700486 $cmd .= " | sort | uniq -c | sort -rn";
487
488 $output = `${cmd}`;
489 $output =~ s/^\s*//gm;
490
491 @lines = split("\n", $output);
492 foreach my $line (@lines) {
Joe Perches4a7fdb52009-04-10 12:28:57 -0700493 if ($line =~ m/([0-9]+)\s+(.*)/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700494 my $sign_offs = $1;
Joe Perches4a7fdb52009-04-10 12:28:57 -0700495 $line = $2;
Joe Perchescb7301c2009-04-07 20:40:12 -0700496 $count++;
497 if ($sign_offs < $email_git_min_signatures ||
498 $count > $email_git_max_maintainers) {
499 last;
500 }
501 } else {
502 die("$P: Unexpected git output: ${line}\n");
503 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700504 if ($line =~ m/(.+)<(.+)>/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700505 my $git_name = $1;
506 my $git_addr = $2;
Joe Perchescb7301c2009-04-07 20:40:12 -0700507 if ($email_usename) {
508 push(@email_to, format_email($git_name, $git_addr));
509 } else {
510 push(@email_to, $git_addr);
511 }
Joe Perches4a7fdb52009-04-10 12:28:57 -0700512 } elsif ($line =~ m/<(.+)>/) {
Joe Perchescb7301c2009-04-07 20:40:12 -0700513 my $git_addr = $1;
514 push(@email_to, $git_addr);
515 } else {
516 push(@email_to, $line);
517 }
518 }
Joe Perchescb7301c2009-04-07 20:40:12 -0700519}
520
521sub uniq {
522 my @parms = @_;
523
524 my %saw;
525 @parms = grep(!$saw{$_}++, @parms);
526 return @parms;
527}
528
529sub sort_and_uniq {
530 my @parms = @_;
531
532 my %saw;
533 @parms = sort @parms;
534 @parms = grep(!$saw{$_}++, @parms);
535 return @parms;
536}
537
538sub output {
539 my @parms = @_;
540
541 if ($output_multiline) {
542 foreach my $line (@parms) {
543 print("${line}\n");
544 }
545 } else {
546 print(join($output_separator, @parms));
547 print("\n");
548 }
549}
Joe Perches1b5e1cf2009-06-16 15:34:01 -0700550
551my $rfc822re;
552
553sub make_rfc822re {
554# Basic lexical tokens are specials, domain_literal, quoted_string, atom, and
555# comment. We must allow for rfc822_lwsp (or comments) after each of these.
556# This regexp will only work on addresses which have had comments stripped
557# and replaced with rfc822_lwsp.
558
559 my $specials = '()<>@,;:\\\\".\\[\\]';
560 my $controls = '\\000-\\037\\177';
561
562 my $dtext = "[^\\[\\]\\r\\\\]";
563 my $domain_literal = "\\[(?:$dtext|\\\\.)*\\]$rfc822_lwsp*";
564
565 my $quoted_string = "\"(?:[^\\\"\\r\\\\]|\\\\.|$rfc822_lwsp)*\"$rfc822_lwsp*";
566
567# Use zero-width assertion to spot the limit of an atom. A simple
568# $rfc822_lwsp* causes the regexp engine to hang occasionally.
569 my $atom = "[^$specials $controls]+(?:$rfc822_lwsp+|\\Z|(?=[\\[\"$specials]))";
570 my $word = "(?:$atom|$quoted_string)";
571 my $localpart = "$word(?:\\.$rfc822_lwsp*$word)*";
572
573 my $sub_domain = "(?:$atom|$domain_literal)";
574 my $domain = "$sub_domain(?:\\.$rfc822_lwsp*$sub_domain)*";
575
576 my $addr_spec = "$localpart\@$rfc822_lwsp*$domain";
577
578 my $phrase = "$word*";
579 my $route = "(?:\@$domain(?:,\@$rfc822_lwsp*$domain)*:$rfc822_lwsp*)";
580 my $route_addr = "\\<$rfc822_lwsp*$route?$addr_spec\\>$rfc822_lwsp*";
581 my $mailbox = "(?:$addr_spec|$phrase$route_addr)";
582
583 my $group = "$phrase:$rfc822_lwsp*(?:$mailbox(?:,\\s*$mailbox)*)?;\\s*";
584 my $address = "(?:$mailbox|$group)";
585
586 return "$rfc822_lwsp*$address";
587}
588
589sub rfc822_strip_comments {
590 my $s = shift;
591# Recursively remove comments, and replace with a single space. The simpler
592# regexps in the Email Addressing FAQ are imperfect - they will miss escaped
593# chars in atoms, for example.
594
595 while ($s =~ s/^((?:[^"\\]|\\.)*
596 (?:"(?:[^"\\]|\\.)*"(?:[^"\\]|\\.)*)*)
597 \((?:[^()\\]|\\.)*\)/$1 /osx) {}
598 return $s;
599}
600
601# valid: returns true if the parameter is an RFC822 valid address
602#
603sub rfc822_valid ($) {
604 my $s = rfc822_strip_comments(shift);
605
606 if (!$rfc822re) {
607 $rfc822re = make_rfc822re();
608 }
609
610 return $s =~ m/^$rfc822re$/so && $s =~ m/^$rfc822_char*$/;
611}
612
613# validlist: In scalar context, returns true if the parameter is an RFC822
614# valid list of addresses.
615#
616# In list context, returns an empty list on failure (an invalid
617# address was found); otherwise a list whose first element is the
618# number of addresses found and whose remaining elements are the
619# addresses. This is needed to disambiguate failure (invalid)
620# from success with no addresses found, because an empty string is
621# a valid list.
622
623sub rfc822_validlist ($) {
624 my $s = rfc822_strip_comments(shift);
625
626 if (!$rfc822re) {
627 $rfc822re = make_rfc822re();
628 }
629 # * null list items are valid according to the RFC
630 # * the '1' business is to aid in distinguishing failure from no results
631
632 my @r;
633 if ($s =~ m/^(?:$rfc822re)?(?:,(?:$rfc822re)?)*$/so &&
634 $s =~ m/^$rfc822_char*$/) {
635 while($s =~ m/(?:^|,$rfc822_lwsp*)($rfc822re)/gos) {
636 push @r, $1;
637 }
638 return wantarray ? (scalar(@r), @r) : 1;
639 }
640 else {
641 return wantarray ? () : 0;
642 }
643}