Skip to content
Snippets Groups Projects
get_maintainer.pl 64.9 KiB
Newer Older
  • Learn to ignore specific revisions
  •     --remove-duplicates => minimize duplicate email names/addresses
        --roles => show roles (status:subsystem, git-signer, list, etc...)
        --rolestats => show roles and statistics (commits/total_commits, %)
        --file-emails => add email addresses found in -f file (default: 0 (off))
      --scm => print SCM tree(s) if any
      --status => print status if any
      --subsystem => print subsystem name if any
      --web => print website(s) if any
    
    Output type options:
      --separator [, ] => separator for multiple entries on 1 line
        using --separator also sets --nomultiline if --separator is not [, ]
      --multiline => print 1 entry per line
    
    Other options:
      --pattern-depth => Number of pattern directory traversals (default: 0 (all))
      --keywords => scan patch for keywords (default: $keywords)
      --sections => print all of the subsystem sections with pattern matches
    
      --letters => print all matching 'letter' types from all matching sections
    
      --mailmap => use .mailmap file (default: $email_use_mailmap)
    
      --self-test => show potential issues with MAINTAINERS file content
    
      --version => show version
      --help => show this help information
    
    Default options:
    
      [--email --nogit --git-fallback --m --r --n --l --multiline --pattern-depth=0
    
       --remove-duplicates --rolestats]
    
    Notes:
      Using "-f directory" may give unexpected results:
          Used with "--git", git signators for _all_ files in and below
              directory are examined as git recurses directories.
              Any specified X: (exclude) pattern matches are _not_ ignored.
          Used with "--nogit", directory is used as a pattern match,
              no individual file within the directory or subdirectory
              is matched.
          Used with "--git-blame", does not iterate all files in directory
      Using "--git-blame" is slow and may add old committers and authors
          that are no longer active maintainers to the output.
      Using "--roles" or "--rolestats" with git send-email --cc-cmd or any
          other automated tools that expect only ["name"] <email address>
          may not work because of additional output after <email address>.
      Using "--rolestats" and "--git-blame" shows the #/total=% commits,
          not the percentage of the entire file authored.  # of commits is
          not a good measure of amount of code authored.  1 major commit may
          contain a thousand lines, 5 trivial commits may modify a single line.
      If git is not installed, but mercurial (hg) is installed and an .hg
          repository exists, the following options apply to mercurial:
              --git,
              --git-min-signatures, --git-max-maintainers, --git-min-percent, and
              --git-blame
          Use --hg-since not --git-since to control date selection
      File ".get_maintainer.conf", if it exists in the linux kernel source root
          directory, can change whatever get_maintainer defaults are desired.
          Entries in this file can be any command line argument.
          This file is prepended to any additional command line arguments.
          Multiple lines and # comments are allowed.
    
      Most options have both positive and negative forms.
          The negative forms for --<foo> are --no<foo> and --no-<foo>.
    
    
    EOT
    }
    
    sub top_of_kernel_tree {
        my ($lk_path) = @_;
    
        if ($lk_path ne "" && substr($lk_path,length($lk_path)-1,1) ne "/") {
    	$lk_path .= "/";
        }
    
        if (   (-f "${lk_path}Kbuild")
    
    	&& (-e "${lk_path}MAINTAINERS")
    
    	&& (-f "${lk_path}Makefile")
    	&& (-f "${lk_path}README")
    	&& (-d "${lk_path}arch")
    
    	&& (-d "${lk_path}board")
    	&& (-d "${lk_path}common")
    	&& (-d "${lk_path}doc")
    
    	&& (-d "${lk_path}drivers")
    
    	&& (-d "${lk_path}dts")
    
    	&& (-d "${lk_path}fs")
    	&& (-d "${lk_path}lib")
    
    	&& (-d "${lk_path}include")
    	&& (-d "${lk_path}net")
    	&& (-d "${lk_path}post")
    	&& (-d "${lk_path}scripts")
    	&& (-d "${lk_path}test")
    	&& (-d "${lk_path}tools")) {
    
    	return 1;
        }
        return 0;
    }
    
    sub parse_email {
        my ($formatted_email) = @_;
    
        my $name = "";
        my $address = "";
    
        if ($formatted_email =~ /^([^<]+)<(.+\@.*)>.*$/) {
    	$name = $1;
    	$address = $2;
        } elsif ($formatted_email =~ /^\s*<(.+\@\S*)>.*$/) {
    	$address = $1;
        } elsif ($formatted_email =~ /^(.+\@\S*).*$/) {
    	$address = $1;
        }
    
        $name =~ s/^\s+|\s+$//g;
        $name =~ s/^\"|\"$//g;
        $address =~ s/^\s+|\s+$//g;
    
        if ($name =~ /[^\w \-]/i) {  	 ##has "must quote" chars
    	$name =~ s/(?<!\\)"/\\"/g;       ##escape quotes
    	$name = "\"$name\"";
        }
    
        return ($name, $address);
    }
    
    sub format_email {
        my ($name, $address, $usename) = @_;
    
        my $formatted_email;
    
        $name =~ s/^\s+|\s+$//g;
        $name =~ s/^\"|\"$//g;
        $address =~ s/^\s+|\s+$//g;
    
        if ($name =~ /[^\w \-]/i) {          ##has "must quote" chars
    	$name =~ s/(?<!\\)"/\\"/g;       ##escape quotes
    	$name = "\"$name\"";
        }
    
        if ($usename) {
    	if ("$name" eq "") {
    	    $formatted_email = "$address";
    	} else {
    	    $formatted_email = "$name <$address>";
    	}
        } else {
    	$formatted_email = $address;
        }
    
        return $formatted_email;
    }
    
    sub find_first_section {
        my $index = 0;
    
        while ($index < @typevalue) {
    	my $tv = $typevalue[$index];
    
    	if (($tv =~ m/^([A-Z]):\s*(.*)/)) {
    
    	    last;
    	}
    	$index++;
        }
    
        return $index;
    }
    
    sub find_starting_index {
        my ($index) = @_;
    
        while ($index > 0) {
    	my $tv = $typevalue[$index];
    
    	if (!($tv =~ m/^([A-Z]):\s*(.*)/)) {
    
    	    last;
    	}
    	$index--;
        }
    
        return $index;
    }
    
    sub find_ending_index {
        my ($index) = @_;
    
        while ($index < @typevalue) {
    	my $tv = $typevalue[$index];
    
    	if (!($tv =~ m/^([A-Z]):\s*(.*)/)) {
    
        my ($index) = @_;
    
        my $start = find_starting_index($index);
    
        my $subsystem = $typevalue[$start];
    
        if ($output_section_maxlen && length($subsystem) > $output_section_maxlen) {
    	$subsystem = substr($subsystem, 0, $output_section_maxlen - 3);
    
    	$subsystem =~ s/\s*$//;
    	$subsystem = $subsystem . "...";
        }
    
        return $subsystem;
    }
    
    sub get_maintainer_role {
        my ($index) = @_;
    
        my $i;
        my $start = find_starting_index($index);
        my $end = find_ending_index($index);
    
        my $role = "unknown";
        my $subsystem = get_subsystem_name($index);
    
    
        for ($i = $start + 1; $i < $end; $i++) {
    	my $tv = $typevalue[$i];
    
    	    my $ptype = $1;
    	    my $pvalue = $2;
    	    if ($ptype eq "S") {
    		$role = $pvalue;
    	    }
    	}
        }
    
        $role = lc($role);
        if      ($role eq "supported") {
    	$role = "supporter";
        } elsif ($role eq "maintained") {
    	$role = "maintainer";
        } elsif ($role eq "odd fixes") {
    	$role = "odd fixer";
        } elsif ($role eq "orphan") {
    	$role = "orphan minder";
        } elsif ($role eq "obsolete") {
    	$role = "obsolete minder";
        } elsif ($role eq "buried alive in reporters") {
    	$role = "chief penguin";
        }
    
        return $role . ":" . $subsystem;
    }
    
    sub get_list_role {
        my ($index) = @_;
    
    
        my $subsystem = get_subsystem_name($index);
    
    
        if ($subsystem eq "THE REST") {
    	$subsystem = "";
        }
    
        return $subsystem;
    }
    
    sub add_categories {
        my ($index) = @_;
    
        my $i;
        my $start = find_starting_index($index);
        my $end = find_ending_index($index);
    
        push(@subsystem, $typevalue[$start]);
    
        for ($i = $start + 1; $i < $end; $i++) {
    	my $tv = $typevalue[$i];
    
    	    my $ptype = $1;
    	    my $pvalue = $2;
    	    if ($ptype eq "L") {
    		my $list_address = $pvalue;
    		my $list_additional = "";
    		my $list_role = get_list_role($i);
    
    		if ($list_role ne "") {
    		    $list_role = ":" . $list_role;
    		}
    		if ($list_address =~ m/([^\s]+)\s+(.*)$/) {
    		    $list_address = $1;
    		    $list_additional = $2;
    		}
    		if ($list_additional =~ m/subscribers-only/) {
    		    if ($email_subscriber_list) {
    			if (!$hash_list_to{lc($list_address)}) {
    			    $hash_list_to{lc($list_address)} = 1;
    			    push(@list_to, [$list_address,
    					    "subscriber list${list_role}"]);
    			}
    		    }
    		} else {
    		    if ($email_list) {
    			if (!$hash_list_to{lc($list_address)}) {
    			    $hash_list_to{lc($list_address)} = 1;
    			    if ($list_additional =~ m/moderated/) {
    				push(@list_to, [$list_address,
    						"moderated list${list_role}"]);
    			    } else {
    				push(@list_to, [$list_address,
    						"open list${list_role}"]);
    			    }
    			}
    		    }
    		}
    	    } elsif ($ptype eq "M") {
    		my ($name, $address) = parse_email($pvalue);
    		if ($name eq "") {
    		    if ($i > 0) {
    			my $tv = $typevalue[$i - 1];
    
    			    if ($1 eq "P") {
    				$name = $2;
    				$pvalue = format_email($name, $address, $email_usename);
    			    }
    			}
    		    }
    		}
    		if ($email_maintainer) {
    		    my $role = get_maintainer_role($i);
    		    push_email_addresses($pvalue, $role);
    		}
    
    	    } elsif ($ptype eq "R") {
    		my ($name, $address) = parse_email($pvalue);
    		if ($name eq "") {
    		    if ($i > 0) {
    			my $tv = $typevalue[$i - 1];
    			if ($tv =~ m/^([A-Z]):\s*(.*)/) {
    			    if ($1 eq "P") {
    				$name = $2;
    				$pvalue = format_email($name, $address, $email_usename);
    			    }
    			}
    		    }
    		}
    		if ($email_reviewer) {
    		    my $subsystem = get_subsystem_name($i);
    		    push_email_addresses($pvalue, "reviewer:$subsystem");
    		}
    
    1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000
    	    } elsif ($ptype eq "T") {
    		push(@scm, $pvalue);
    	    } elsif ($ptype eq "W") {
    		push(@web, $pvalue);
    	    } elsif ($ptype eq "S") {
    		push(@status, $pvalue);
    	    }
    	}
        }
    }
    
    sub email_inuse {
        my ($name, $address) = @_;
    
        return 1 if (($name eq "") && ($address eq ""));
        return 1 if (($name ne "") && exists($email_hash_name{lc($name)}));
        return 1 if (($address ne "") && exists($email_hash_address{lc($address)}));
    
        return 0;
    }
    
    sub push_email_address {
        my ($line, $role) = @_;
    
        my ($name, $address) = parse_email($line);
    
        if ($address eq "") {
    	return 0;
        }
    
        if (!$email_remove_duplicates) {
    	push(@email_to, [format_email($name, $address, $email_usename), $role]);
        } elsif (!email_inuse($name, $address)) {
    	push(@email_to, [format_email($name, $address, $email_usename), $role]);
    	$email_hash_name{lc($name)}++ if ($name ne "");
    	$email_hash_address{lc($address)}++;
        }
    
        return 1;
    }
    
    sub push_email_addresses {
        my ($address, $role) = @_;
    
        my @address_list = ();
    
        if (rfc822_valid($address)) {
    	push_email_address($address, $role);
        } elsif (@address_list = rfc822_validlist($address)) {
    	my $array_count = shift(@address_list);
    	while (my $entry = shift(@address_list)) {
    	    push_email_address($entry, $role);
    	}
        } else {
    	if (!push_email_address($address, $role)) {
    	    warn("Invalid MAINTAINERS address: '" . $address . "'\n");
    	}
        }
    }
    
    sub add_role {
        my ($line, $role) = @_;
    
        my ($name, $address) = parse_email($line);
        my $email = format_email($name, $address, $email_usename);
    
        foreach my $entry (@email_to) {
    	if ($email_remove_duplicates) {
    	    my ($entry_name, $entry_address) = parse_email($entry->[0]);
    	    if (($name eq $entry_name || $address eq $entry_address)
    		&& ($role eq "" || !($entry->[1] =~ m/$role/))
    	    ) {
    		if ($entry->[1] eq "") {
    		    $entry->[1] = "$role";
    		} else {
    		    $entry->[1] = "$entry->[1],$role";
    		}
    	    }
    	} else {
    	    if ($email eq $entry->[0]
    		&& ($role eq "" || !($entry->[1] =~ m/$role/))
    	    ) {
    		if ($entry->[1] eq "") {
    		    $entry->[1] = "$role";
    		} else {
    		    $entry->[1] = "$entry->[1],$role";
    		}
    	    }
    	}
        }
    }
    
    sub which {
        my ($bin) = @_;
    
        foreach my $path (split(/:/, $ENV{PATH})) {
    	if (-e "$path/$bin") {
    	    return "$path/$bin";
    	}
        }
    
        return "";
    }
    
    sub which_conf {
        my ($conf) = @_;
    
        foreach my $path (split(/:/, ".:$ENV{HOME}:.scripts")) {
    	if (-e "$path/$conf") {
    	    return "$path/$conf";
    	}
        }
    
        return "";
    }
    
    sub mailmap_email {
        my ($line) = @_;
    
        my ($name, $address) = parse_email($line);
        my $email = format_email($name, $address, 1);
        my $real_name = $name;
        my $real_address = $address;
    
        if (exists $mailmap->{names}->{$email} ||
    	exists $mailmap->{addresses}->{$email}) {
    	if (exists $mailmap->{names}->{$email}) {
    	    $real_name = $mailmap->{names}->{$email};
    	}
    	if (exists $mailmap->{addresses}->{$email}) {
    	    $real_address = $mailmap->{addresses}->{$email};
    	}
        } else {
    	if (exists $mailmap->{names}->{$address}) {
    	    $real_name = $mailmap->{names}->{$address};
    	}
    	if (exists $mailmap->{addresses}->{$address}) {
    	    $real_address = $mailmap->{addresses}->{$address};
    	}
        }
        return format_email($real_name, $real_address, 1);
    }
    
    sub mailmap {
        my (@addresses) = @_;
    
        my @mapped_emails = ();
        foreach my $line (@addresses) {
    	push(@mapped_emails, mailmap_email($line));
        }
        merge_by_realname(@mapped_emails) if ($email_use_mailmap);
        return @mapped_emails;
    }
    
    sub merge_by_realname {
        my %address_map;
        my (@emails) = @_;
    
        foreach my $email (@emails) {
    	my ($name, $address) = parse_email($email);
    	if (exists $address_map{$name}) {
    	    $address = $address_map{$name};
    	    $email = format_email($name, $address, 1);
    	} else {
    	    $address_map{$name} = $address;
    	}
        }
    }
    
    sub git_execute_cmd {
        my ($cmd) = @_;
        my @lines = ();
    
        my $output = `$cmd`;
        $output =~ s/^\s*//gm;
        @lines = split("\n", $output);
    
        return @lines;
    }
    
    sub hg_execute_cmd {
        my ($cmd) = @_;
        my @lines = ();
    
        my $output = `$cmd`;
        @lines = split("\n", $output);
    
        return @lines;
    }
    
    sub extract_formatted_signatures {
        my (@signature_lines) = @_;
    
        my @type = @signature_lines;
    
        s/\s*(.*):.*/$1/ for (@type);
    
        # cut -f2- -d":"
        s/\s*.*:\s*(.+)\s*/$1/ for (@signature_lines);
    
    ## Reformat email addresses (with names) to avoid badly written signatures
    
        foreach my $signer (@signature_lines) {
    	$signer = deduplicate_email($signer);
        }
    
        return (\@type, \@signature_lines);
    }
    
    sub vcs_find_signers {
        my ($cmd, $file) = @_;
        my $commits;
        my @lines = ();
        my @signatures = ();
        my @authors = ();
        my @stats = ();
    
        @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
    
        my $pattern = $VCS_cmds{"commit_pattern"};
        my $author_pattern = $VCS_cmds{"author_pattern"};
        my $stat_pattern = $VCS_cmds{"stat_pattern"};
    
        $stat_pattern =~ s/(\$\w+)/$1/eeg;		#interpolate $stat_pattern
    
        $commits = grep(/$pattern/, @lines);	# of commits
    
        @authors = grep(/$author_pattern/, @lines);
        @signatures = grep(/^[ \t]*${signature_pattern}.*\@.*$/, @lines);
        @stats = grep(/$stat_pattern/, @lines);
    
    #    print("stats: <@stats>\n");
    
        return (0, \@signatures, \@authors, \@stats) if !@signatures;
    
        save_commits_by_author(@lines) if ($interactive);
        save_commits_by_signer(@lines) if ($interactive);
    
        if (!$email_git_penguin_chiefs) {
    	@signatures = grep(!/${penguin_chiefs}/i, @signatures);
        }
    
        my ($author_ref, $authors_ref) = extract_formatted_signatures(@authors);
        my ($types_ref, $signers_ref) = extract_formatted_signatures(@signatures);
    
        return ($commits, $signers_ref, $authors_ref, \@stats);
    }
    
    sub vcs_find_author {
        my ($cmd) = @_;
        my @lines = ();
    
        @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
    
        if (!$email_git_penguin_chiefs) {
    	@lines = grep(!/${penguin_chiefs}/i, @lines);
        }
    
        return @lines if !@lines;
    
        my @authors = ();
        foreach my $line (@lines) {
    	if ($line =~ m/$VCS_cmds{"author_pattern"}/) {
    	    my $author = $1;
    	    my ($name, $address) = parse_email($author);
    	    $author = format_email($name, $address, 1);
    	    push(@authors, $author);
    	}
        }
    
        save_commits_by_author(@lines) if ($interactive);
        save_commits_by_signer(@lines) if ($interactive);
    
        return @authors;
    }
    
    sub vcs_save_commits {
        my ($cmd) = @_;
        my @lines = ();
        my @commits = ();
    
        @lines = &{$VCS_cmds{"execute_cmd"}}($cmd);
    
        foreach my $line (@lines) {
    	if ($line =~ m/$VCS_cmds{"blame_commit_pattern"}/) {
    	    push(@commits, $1);
    	}
        }
    
        return @commits;
    }
    
    sub vcs_blame {
        my ($file) = @_;
        my $cmd;
        my @commits = ();
    
        return @commits if (!(-f $file));
    
        if (@range && $VCS_cmds{"blame_range_cmd"} eq "") {
    	my @all_commits = ();
    
    	$cmd = $VCS_cmds{"blame_file_cmd"};
    	$cmd =~ s/(\$\w+)/$1/eeg;		#interpolate $cmd
    	@all_commits = vcs_save_commits($cmd);
    
    	foreach my $file_range_diff (@range) {
    	    next if (!($file_range_diff =~ m/(.+):(.+):(.+)/));
    	    my $diff_file = $1;
    	    my $diff_start = $2;
    	    my $diff_length = $3;
    	    next if ("$file" ne "$diff_file");
    	    for (my $i = $diff_start; $i < $diff_start + $diff_length; $i++) {
    		push(@commits, $all_commits[$i]);
    	    }
    	}
        } elsif (@range) {
    	foreach my $file_range_diff (@range) {
    	    next if (!($file_range_diff =~ m/(.+):(.+):(.+)/));
    	    my $diff_file = $1;
    	    my $diff_start = $2;
    	    my $diff_length = $3;
    	    next if ("$file" ne "$diff_file");
    	    $cmd = $VCS_cmds{"blame_range_cmd"};
    	    $cmd =~ s/(\$\w+)/$1/eeg;		#interpolate $cmd
    	    push(@commits, vcs_save_commits($cmd));
    	}
        } else {
    	$cmd = $VCS_cmds{"blame_file_cmd"};
    	$cmd =~ s/(\$\w+)/$1/eeg;		#interpolate $cmd
    	@commits = vcs_save_commits($cmd);
        }
    
        foreach my $commit (@commits) {
    	$commit =~ s/^\^//g;
        }
    
        return @commits;
    }
    
    my $printed_novcs = 0;
    sub vcs_exists {
        %VCS_cmds = %VCS_cmds_git;
        return 1 if eval $VCS_cmds{"available"};
        %VCS_cmds = %VCS_cmds_hg;
        return 2 if eval $VCS_cmds{"available"};
        %VCS_cmds = ();
        if (!$printed_novcs) {
    	warn("$P: No supported VCS found.  Add --nogit to options?\n");
    	warn("Using a git repository produces better results.\n");
    	warn("Try Linus Torvalds' latest git repository using:\n");
    	warn("git clone git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git\n");
    	$printed_novcs = 1;
        }
        return 0;
    }
    
    sub vcs_is_git {
        vcs_exists();
        return $vcs_used == 1;
    }
    
    sub vcs_is_hg {
        return $vcs_used == 2;
    }
    
    sub interactive_get_maintainers {
        my ($list_ref) = @_;
        my @list = @$list_ref;
    
        vcs_exists();
    
        my %selected;
        my %authored;
        my %signed;
        my $count = 0;
        my $maintained = 0;
        foreach my $entry (@list) {
    	$maintained = 1 if ($entry->[1] =~ /^(maintainer|supporter)/i);
    	$selected{$count} = 1;
    	$authored{$count} = 0;
    	$signed{$count} = 0;
    	$count++;
        }
    
        #menu loop
        my $done = 0;
        my $print_options = 0;
        my $redraw = 1;
        while (!$done) {
    	$count = 0;
    	if ($redraw) {
    	    printf STDERR "\n%1s %2s %-65s",
    			  "*", "#", "email/list and role:stats";
    	    if ($email_git ||
    		($email_git_fallback && !$maintained) ||
    		$email_git_blame) {
    		print STDERR "auth sign";
    	    }
    	    print STDERR "\n";
    	    foreach my $entry (@list) {
    		my $email = $entry->[0];
    		my $role = $entry->[1];
    		my $sel = "";
    		$sel = "*" if ($selected{$count});
    		my $commit_author = $commit_author_hash{$email};
    		my $commit_signer = $commit_signer_hash{$email};
    		my $authored = 0;
    		my $signed = 0;
    		$authored++ for (@{$commit_author});
    		$signed++ for (@{$commit_signer});
    		printf STDERR "%1s %2d %-65s", $sel, $count + 1, $email;
    		printf STDERR "%4d %4d", $authored, $signed
    		    if ($authored > 0 || $signed > 0);
    		printf STDERR "\n     %s\n", $role;
    		if ($authored{$count}) {
    		    my $commit_author = $commit_author_hash{$email};
    		    foreach my $ref (@{$commit_author}) {
    			print STDERR "     Author: @{$ref}[1]\n";
    		    }
    		}
    		if ($signed{$count}) {
    		    my $commit_signer = $commit_signer_hash{$email};
    		    foreach my $ref (@{$commit_signer}) {
    			print STDERR "     @{$ref}[2]: @{$ref}[1]\n";
    		    }
    		}
    
    		$count++;
    	    }
    	}
    	my $date_ref = \$email_git_since;
    	$date_ref = \$email_hg_since if (vcs_is_hg());
    	if ($print_options) {
    	    $print_options = 0;
    	    if (vcs_exists()) {
    		print STDERR <<EOT
    
    Version Control options:
    g  use git history      [$email_git]
    gf use git-fallback     [$email_git_fallback]
    b  use git blame        [$email_git_blame]
    bs use blame signatures [$email_git_blame_signatures]
    c# minimum commits      [$email_git_min_signatures]
    %# min percent          [$email_git_min_percent]
    d# history to use       [$$date_ref]
    x# max maintainers      [$email_git_max_maintainers]
    t  all signature types  [$email_git_all_signature_types]
    m  use .mailmap         [$email_use_mailmap]
    EOT
    	    }
    	    print STDERR <<EOT
    
    Additional options:
    0  toggle all
    tm toggle maintainers
    tg toggle git entries
    tl toggle open list entries
    ts toggle subscriber list entries
    f  emails in file       [$file_emails]
    k  keywords in file     [$keywords]
    r  remove duplicates    [$email_remove_duplicates]
    p# pattern match depth  [$pattern_depth]
    EOT
    	}
    	print STDERR
    "\n#(toggle), A#(author), S#(signed) *(all), ^(none), O(options), Y(approve): ";
    
    	my $input = <STDIN>;
    	chomp($input);
    
    	$redraw = 1;
    	my $rerun = 0;
    	my @wish = split(/[, ]+/, $input);
    	foreach my $nr (@wish) {
    	    $nr = lc($nr);
    	    my $sel = substr($nr, 0, 1);
    	    my $str = substr($nr, 1);
    	    my $val = 0;
    	    $val = $1 if $str =~ /^(\d+)$/;
    
    	    if ($sel eq "y") {
    		$interactive = 0;
    		$done = 1;
    		$output_rolestats = 0;
    		$output_roles = 0;
    		last;
    	    } elsif ($nr =~ /^\d+$/ && $nr > 0 && $nr <= $count) {
    		$selected{$nr - 1} = !$selected{$nr - 1};
    	    } elsif ($sel eq "*" || $sel eq '^') {
    		my $toggle = 0;
    		$toggle = 1 if ($sel eq '*');
    		for (my $i = 0; $i < $count; $i++) {
    		    $selected{$i} = $toggle;
    		}
    	    } elsif ($sel eq "0") {
    		for (my $i = 0; $i < $count; $i++) {
    		    $selected{$i} = !$selected{$i};
    		}
    	    } elsif ($sel eq "t") {
    		if (lc($str) eq "m") {
    		    for (my $i = 0; $i < $count; $i++) {
    			$selected{$i} = !$selected{$i}
    			    if ($list[$i]->[1] =~ /^(maintainer|supporter)/i);
    		    }
    		} elsif (lc($str) eq "g") {
    		    for (my $i = 0; $i < $count; $i++) {
    			$selected{$i} = !$selected{$i}
    			    if ($list[$i]->[1] =~ /^(author|commit|signer)/i);
    		    }
    		} elsif (lc($str) eq "l") {
    		    for (my $i = 0; $i < $count; $i++) {
    			$selected{$i} = !$selected{$i}
    			    if ($list[$i]->[1] =~ /^(open list)/i);
    		    }
    		} elsif (lc($str) eq "s") {
    		    for (my $i = 0; $i < $count; $i++) {
    			$selected{$i} = !$selected{$i}
    			    if ($list[$i]->[1] =~ /^(subscriber list)/i);
    		    }
    		}
    	    } elsif ($sel eq "a") {
    		if ($val > 0 && $val <= $count) {
    		    $authored{$val - 1} = !$authored{$val - 1};
    		} elsif ($str eq '*' || $str eq '^') {
    		    my $toggle = 0;
    		    $toggle = 1 if ($str eq '*');
    		    for (my $i = 0; $i < $count; $i++) {
    			$authored{$i} = $toggle;
    		    }
    		}
    	    } elsif ($sel eq "s") {
    		if ($val > 0 && $val <= $count) {
    		    $signed{$val - 1} = !$signed{$val - 1};
    		} elsif ($str eq '*' || $str eq '^') {
    		    my $toggle = 0;
    		    $toggle = 1 if ($str eq '*');
    		    for (my $i = 0; $i < $count; $i++) {
    			$signed{$i} = $toggle;
    		    }
    		}
    	    } elsif ($sel eq "o") {
    		$print_options = 1;
    		$redraw = 1;
    	    } elsif ($sel eq "g") {
    		if ($str eq "f") {
    		    bool_invert(\$email_git_fallback);
    		} else {
    		    bool_invert(\$email_git);
    		}
    		$rerun = 1;
    	    } elsif ($sel eq "b") {
    		if ($str eq "s") {
    		    bool_invert(\$email_git_blame_signatures);
    		} else {
    		    bool_invert(\$email_git_blame);
    		}
    		$rerun = 1;
    	    } elsif ($sel eq "c") {
    		if ($val > 0) {
    		    $email_git_min_signatures = $val;
    		    $rerun = 1;
    		}
    	    } elsif ($sel eq "x") {
    		if ($val > 0) {
    		    $email_git_max_maintainers = $val;
    		    $rerun = 1;
    		}
    	    } elsif ($sel eq "%") {
    		if ($str ne "" && $val >= 0) {
    		    $email_git_min_percent = $val;
    		    $rerun = 1;
    		}
    	    } elsif ($sel eq "d") {
    		if (vcs_is_git()) {
    		    $email_git_since = $str;
    		} elsif (vcs_is_hg()) {
    		    $email_hg_since = $str;
    		}
    		$rerun = 1;
    	    } elsif ($sel eq "t") {
    		bool_invert(\$email_git_all_signature_types);
    		$rerun = 1;
    	    } elsif ($sel eq "f") {
    		bool_invert(\$file_emails);
    		$rerun = 1;
    	    } elsif ($sel eq "r") {
    		bool_invert(\$email_remove_duplicates);
    		$rerun = 1;
    	    } elsif ($sel eq "m") {
    		bool_invert(\$email_use_mailmap);
    		read_mailmap();
    		$rerun = 1;
    	    } elsif ($sel eq "k") {
    		bool_invert(\$keywords);
    		$rerun = 1;
    	    } elsif ($sel eq "p") {
    		if ($str ne "" && $val >= 0) {
    		    $pattern_depth = $val;
    		    $rerun = 1;
    		}
    	    } elsif ($sel eq "h" || $sel eq "?") {
    		print STDERR <<EOT
    
    Interactive mode allows you to select the various maintainers, submitters,
    commit signers and mailing lists that could be CC'd on a patch.
    
    Any *'d entry is selected.
    
    If you have git or hg installed, you can choose to summarize the commit
    history of files in the patch.  Also, each line of the current file can
    be matched to its commit author and that commits signers with blame.
    
    Various knobs exist to control the length of time for active commit
    tracking, the maximum number of commit authors and signers to add,
    and such.
    
    Enter selections at the prompt until you are satisfied that the selected
    maintainers are appropriate.  You may enter multiple selections separated
    by either commas or spaces.
    
    EOT
    	    } else {
    		print STDERR "invalid option: '$nr'\n";
    		$redraw = 0;
    	    }
    	}
    	if ($rerun) {
    	    print STDERR "git-blame can be very slow, please have patience..."
    		if ($email_git_blame);
    	    goto &get_maintainers;
    	}
        }
    
        #drop not selected entries
        $count = 0;
        my @new_emailto = ();
        foreach my $entry (@list) {
    	if ($selected{$count}) {
    	    push(@new_emailto, $list[$count]);
    	}
    	$count++;
        }
        return @new_emailto;
    }
    
    sub bool_invert {
        my ($bool_ref) = @_;
    
        if ($$bool_ref) {
    	$$bool_ref = 0;
        } else {
    	$$bool_ref = 1;
        }
    }
    
    sub deduplicate_email {
        my ($email) = @_;
    
        my $matched = 0;
        my ($name, $address) = parse_email($email);
        $email = format_email($name, $address, 1);
        $email = mailmap_email($email);
    
        return $email if (!$email_remove_duplicates);