]> sipb.mit.edu Git - ikiwiki.git/blob - IkiWiki/Plugin/git.pm
Merge commit 'f8880cb670b0d1169559d04602fc543b1a6a061e' into sipb
[ikiwiki.git] / IkiWiki / Plugin / git.pm
1 #!/usr/bin/perl
2 package IkiWiki::Plugin::git;
3
4 use warnings;
5 use strict;
6 use IkiWiki;
7 use IkiWiki::UserInfo;
8 use Encode;
9 use open qw{:utf8 :std};
10
11 my $sha1_pattern     = qr/[0-9a-fA-F]{40}/; # pattern to validate Git sha1sums
12 my $dummy_commit_msg = 'dummy commit';      # message to skip in recent changes
13 my $no_chdir=0;
14
15 sub import {
16         hook(type => "checkconfig", id => "git", call => \&checkconfig);
17         hook(type => "getsetup", id => "git", call => \&getsetup);
18         hook(type => "genwrapper", id => "git", call => \&genwrapper);
19         hook(type => "rcs", id => "rcs_update", call => \&rcs_update);
20         hook(type => "rcs", id => "rcs_prepedit", call => \&rcs_prepedit);
21         hook(type => "rcs", id => "rcs_commit", call => \&rcs_commit);
22         hook(type => "rcs", id => "rcs_commit_staged", call => \&rcs_commit_staged);
23         hook(type => "rcs", id => "rcs_add", call => \&rcs_add);
24         hook(type => "rcs", id => "rcs_remove", call => \&rcs_remove);
25         hook(type => "rcs", id => "rcs_rename", call => \&rcs_rename);
26         hook(type => "rcs", id => "rcs_recentchanges", call => \&rcs_recentchanges);
27         hook(type => "rcs", id => "rcs_diff", call => \&rcs_diff);
28         hook(type => "rcs", id => "rcs_getctime", call => \&rcs_getctime);
29         hook(type => "rcs", id => "rcs_getmtime", call => \&rcs_getmtime);
30         hook(type => "rcs", id => "rcs_receive", call => \&rcs_receive);
31 }
32
33 sub checkconfig () {
34         if (! defined $config{gitorigin_branch}) {
35                 $config{gitorigin_branch}="origin";
36         }
37         if (! defined $config{gitmaster_branch}) {
38                 $config{gitmaster_branch}="master";
39         }
40         if (defined $config{git_wrapper} &&
41             length $config{git_wrapper}) {
42                 push @{$config{wrappers}}, {
43                         wrapper => $config{git_wrapper},
44                         wrappermode => (defined $config{git_wrappermode} ? $config{git_wrappermode} : "06755"),
45                 };
46         }
47
48         if (defined $config{git_test_receive_wrapper} &&
49             length $config{git_test_receive_wrapper}) {
50                 push @{$config{wrappers}}, {
51                         test_receive => 1,
52                         wrapper => $config{git_test_receive_wrapper},
53                         wrappermode => (defined $config{git_wrappermode} ? $config{git_wrappermode} : "06755"),
54                 };
55         }
56
57         # Avoid notes, parser does not handle and they only slow things down.
58         $ENV{GIT_NOTES_REF}="";
59         
60         # Run receive test only if being called by the wrapper, and not
61         # when generating same.
62         if ($config{test_receive} && ! exists $config{wrapper}) {
63                 require IkiWiki::Receive;
64                 IkiWiki::Receive::test();
65         }
66 }
67
68 sub getsetup () {
69         return
70                 plugin => {
71                         safe => 0, # rcs plugin
72                         rebuild => undef,
73                         section => "rcs",
74                 },
75                 git_wrapper => {
76                         type => "string",
77                         example => "/git/wiki.git/hooks/post-update",
78                         description => "git hook to generate",
79                         safe => 0, # file
80                         rebuild => 0,
81                 },
82                 git_wrappermode => {
83                         type => "string",
84                         example => '06755',
85                         description => "mode for git_wrapper (can safely be made suid)",
86                         safe => 0,
87                         rebuild => 0,
88                 },
89                 git_test_receive_wrapper => {
90                         type => "string",
91                         example => "/git/wiki.git/hooks/pre-receive",
92                         description => "git pre-receive hook to generate",
93                         safe => 0, # file
94                         rebuild => 0,
95                 },
96                 untrusted_committers => {
97                         type => "string",
98                         example => [],
99                         description => "unix users whose commits should be checked by the pre-receive hook",
100                         safe => 0,
101                         rebuild => 0,
102                 },
103                 historyurl => {
104                         type => "string",
105                         example => "http://git.example.com/gitweb.cgi?p=wiki.git;a=history;f=[[file]]",
106                         description => "gitweb url to show file history ([[file]] substituted)",
107                         safe => 1,
108                         rebuild => 1,
109                 },
110                 diffurl => {
111                         type => "string",
112                         example => "http://git.example.com/gitweb.cgi?p=wiki.git;a=blobdiff;f=[[file]];h=[[sha1_to]];hp=[[sha1_from]];hb=[[sha1_commit]];hpb=[[sha1_parent]]",
113                         description => "gitweb url to show a diff ([[file]], [[sha1_to]], [[sha1_from]], [[sha1_commit]], and [[sha1_parent]] substituted)",
114                         safe => 1,
115                         rebuild => 1,
116                 },
117                 gitorigin_branch => {
118                         type => "string",
119                         example => "origin",
120                         description => "where to pull and push changes (set to empty string to disable)",
121                         safe => 0, # paranoia
122                         rebuild => 0,
123                 },
124                 gitmaster_branch => {
125                         type => "string",
126                         example => "master",
127                         description => "branch that the wiki is stored in",
128                         safe => 0, # paranoia
129                         rebuild => 0,
130                 },
131 }
132
133 sub genwrapper {
134         if ($config{test_receive}) {
135                 require IkiWiki::Receive;
136                 return IkiWiki::Receive::genwrapper();
137         }
138         else {
139                 return "";
140         }
141 }
142
143 sub safe_git (&@) {
144         # Start a child process safely without resorting /bin/sh.
145         # Return command output or success state (in scalar context).
146
147         my ($error_handler, @cmdline) = @_;
148
149         my $pid = open my $OUT, "-|";
150
151         error("Cannot fork: $!") if !defined $pid;
152
153         if (!$pid) {
154                 # In child.
155                 # Git commands want to be in wc.
156                 if (! $no_chdir) {
157                         chdir $config{srcdir}
158                             or error("Cannot chdir to $config{srcdir}: $!");
159                 }
160                 exec @cmdline or error("Cannot exec '@cmdline': $!");
161         }
162         # In parent.
163
164         # git output is probably utf-8 encoded, but may contain
165         # other encodings or invalidly encoded stuff. So do not rely
166         # on the normal utf-8 IO layer, decode it by hand.
167         binmode($OUT);
168
169         my @lines;
170         while (<$OUT>) {
171                 $_=decode_utf8($_, 0);
172
173                 chomp;
174
175                 push @lines, $_;
176         }
177
178         close $OUT;
179
180         $error_handler->("'@cmdline' failed: $!") if $? && $error_handler;
181
182         return wantarray ? @lines : ($? == 0);
183 }
184 # Convenient wrappers.
185 sub run_or_die ($@) { safe_git(\&error, @_) }
186 sub run_or_cry ($@) { safe_git(sub { warn @_ },  @_) }
187 sub run_or_non ($@) { safe_git(undef,            @_) }
188
189
190 sub merge_past ($$$) {
191         # Unlike with Subversion, Git cannot make a 'svn merge -rN:M file'.
192         # Git merge commands work with the committed changes, except in the
193         # implicit case of '-m' of git checkout(1).  So we should invent a
194         # kludge here.  In principle, we need to create a throw-away branch
195         # in preparing for the merge itself.  Since branches are cheap (and
196         # branching is fast), this shouldn't cost high.
197         #
198         # The main problem is the presence of _uncommitted_ local changes.  One
199         # possible approach to get rid of this situation could be that we first
200         # make a temporary commit in the master branch and later restore the
201         # initial state (this is possible since Git has the ability to undo a
202         # commit, i.e. 'git reset --soft HEAD^').  The method can be summarized
203         # as follows:
204         #
205         #       - create a diff of HEAD:current-sha1
206         #       - dummy commit
207         #       - create a dummy branch and switch to it
208         #       - rewind to past (reset --hard to the current-sha1)
209         #       - apply the diff and commit
210         #       - switch to master and do the merge with the dummy branch
211         #       - make a soft reset (undo the last commit of master)
212         #
213         # The above method has some drawbacks: (1) it needs a redundant commit
214         # just to get rid of local changes, (2) somewhat slow because of the
215         # required system forks.  Until someone points a more straight method
216         # (which I would be grateful) I have implemented an alternative method.
217         # In this approach, we hide all the modified files from Git by renaming
218         # them (using the 'rename' builtin) and later restore those files in
219         # the throw-away branch (that is, we put the files themselves instead
220         # of applying a patch).
221
222         my ($sha1, $file, $message) = @_;
223
224         my @undo;      # undo stack for cleanup in case of an error
225         my $conflict;  # file content with conflict markers
226
227         eval {
228                 # Hide local changes from Git by renaming the modified file.
229                 # Relative paths must be converted to absolute for renaming.
230                 my ($target, $hidden) = (
231                     "$config{srcdir}/${file}", "$config{srcdir}/${file}.${sha1}"
232                 );
233                 rename($target, $hidden)
234                     or error("rename '$target' to '$hidden' failed: $!");
235                 # Ensure to restore the renamed file on error.
236                 push @undo, sub {
237                         return if ! -e "$hidden"; # already renamed
238                         rename($hidden, $target)
239                             or warn "rename '$hidden' to '$target' failed: $!";
240                 };
241
242                 my $branch = "throw_away_${sha1}"; # supposed to be unique
243
244                 # Create a throw-away branch and rewind backward.
245                 push @undo, sub { run_or_cry('git', 'branch', '-D', $branch) };
246                 run_or_die('git', 'branch', $branch, $sha1);
247
248                 # Switch to throw-away branch for the merge operation.
249                 push @undo, sub {
250                         if (!run_or_cry('git', 'checkout', $config{gitmaster_branch})) {
251                                 run_or_cry('git', 'checkout','-f',$config{gitmaster_branch});
252                         }
253                 };
254                 run_or_die('git', 'checkout', $branch);
255
256                 # Put the modified file in _this_ branch.
257                 rename($hidden, $target)
258                     or error("rename '$hidden' to '$target' failed: $!");
259
260                 # _Silently_ commit all modifications in the current branch.
261                 run_or_non('git', 'commit', '-m', $message, '-a');
262                 # ... and re-switch to master.
263                 run_or_die('git', 'checkout', $config{gitmaster_branch});
264
265                 # Attempt to merge without complaining.
266                 if (!run_or_non('git', 'pull', '--no-commit', '.', $branch)) {
267                         $conflict = readfile($target);
268                         run_or_die('git', 'reset', '--hard');
269                 }
270         };
271         my $failure = $@;
272
273         # Process undo stack (in reverse order).  By policy cleanup
274         # actions should normally print a warning on failure.
275         while (my $handle = pop @undo) {
276                 $handle->();
277         }
278
279         error("Git merge failed!\n$failure\n") if $failure;
280
281         return $conflict;
282 }
283
284 sub parse_diff_tree ($@) {
285         # Parse the raw diff tree chunk and return the info hash.
286         # See git-diff-tree(1) for the syntax.
287
288         my ($prefix, $dt_ref) = @_;
289
290         # End of stream?
291         return if !defined @{ $dt_ref } ||
292                   !defined @{ $dt_ref }[0] || !length @{ $dt_ref }[0];
293
294         my %ci;
295         # Header line.
296         while (my $line = shift @{ $dt_ref }) {
297                 return if $line !~ m/^(.+) ($sha1_pattern)/;
298
299                 my $sha1 = $2;
300                 $ci{'sha1'} = $sha1;
301                 last;
302         }
303
304         # Identification lines for the commit.
305         while (my $line = shift @{ $dt_ref }) {
306                 # Regexps are semi-stolen from gitweb.cgi.
307                 if ($line =~ m/^tree ([0-9a-fA-F]{40})$/) {
308                         $ci{'tree'} = $1;
309                 }
310                 elsif ($line =~ m/^parent ([0-9a-fA-F]{40})$/) {
311                         # XXX: collecting in reverse order
312                         push @{ $ci{'parents'} }, $1;
313                 }
314                 elsif ($line =~ m/^(author|committer) (.*) ([0-9]+) (.*)$/) {
315                         my ($who, $name, $epoch, $tz) =
316                            ($1,   $2,    $3,     $4 );
317
318                         $ci{  $who          } = $name;
319                         $ci{ "${who}_epoch" } = $epoch;
320                         $ci{ "${who}_tz"    } = $tz;
321
322                         if ($name =~ m/^[^<]+\s+<([^@>]+)/) {
323                                 $ci{"${who}_username"} = $1;
324                         }
325                         elsif ($name =~ m/^([^<]+)\s+<>$/) {
326                                 $ci{"${who}_username"} = $1;
327                         }
328                         else {
329                                 $ci{"${who}_username"} = $name;
330                         }
331                 }
332                 elsif ($line =~ m/^$/) {
333                         # Trailing empty line signals next section.
334                         last;
335                 }
336         }
337
338         debug("No 'tree' seen in diff-tree output") if !defined $ci{'tree'};
339         
340         if (defined $ci{'parents'}) {
341                 $ci{'parent'} = @{ $ci{'parents'} }[0];
342         }
343         else {
344                 $ci{'parent'} = 0 x 40;
345         }
346
347         # Commit message (optional).
348         while ($dt_ref->[0] =~ /^    /) {
349                 my $line = shift @{ $dt_ref };
350                 $line =~ s/^    //;
351                 push @{ $ci{'comment'} }, $line;
352         }
353         shift @{ $dt_ref } if $dt_ref->[0] =~ /^$/;
354
355         # Modified files.
356         while (my $line = shift @{ $dt_ref }) {
357                 if ($line =~ m{^
358                         (:+)       # number of parents
359                         ([^\t]+)\t # modes, sha1, status
360                         (.*)       # file names
361                 $}xo) {
362                         my $num_parents = length $1;
363                         my @tmp = split(" ", $2);
364                         my ($file, $file_to) = split("\t", $3);
365                         my @mode_from = splice(@tmp, 0, $num_parents);
366                         my $mode_to = shift(@tmp);
367                         my @sha1_from = splice(@tmp, 0, $num_parents);
368                         my $sha1_to = shift(@tmp);
369                         my $status = shift(@tmp);
370
371                         # git does not output utf-8 filenames, but instead
372                         # double-quotes them with the utf-8 characters
373                         # escaped as \nnn\nnn.
374                         if ($file =~ m/^"(.*)"$/) {
375                                 ($file=$1) =~ s/\\([0-7]{1,3})/chr(oct($1))/eg;
376                         }
377                         $file =~ s/^\Q$prefix\E//;
378                         if (length $file) {
379                                 push @{ $ci{'details'} }, {
380                                         'file'      => decode("utf8", $file),
381                                         'sha1_from' => $sha1_from[0],
382                                         'sha1_to'   => $sha1_to,
383                                         'mode_from' => $mode_from[0],
384                                         'mode_to'   => $mode_to,
385                                         'status'    => $status,
386                                 };
387                         }
388                         next;
389                 };
390                 last;
391         }
392
393         return \%ci;
394 }
395
396 sub git_commit_info ($;$) {
397         # Return an array of commit info hashes of num commits
398         # starting from the given sha1sum.
399         my ($sha1, $num) = @_;
400
401         my @opts;
402         push @opts, "--max-count=$num" if defined $num;
403
404         my @raw_lines = run_or_die('git', 'log', @opts,
405                 '--pretty=raw', '--raw', '--abbrev=40', '--always', '-c',
406                 '-r', $sha1, '--', '.');
407         my ($prefix) = run_or_die('git', 'rev-parse', '--show-prefix');
408
409         my @ci;
410         while (my $parsed = parse_diff_tree(($prefix or ""), \@raw_lines)) {
411                 push @ci, $parsed;
412         }
413
414         warn "Cannot parse commit info for '$sha1' commit" if !@ci;
415
416         return wantarray ? @ci : $ci[0];
417 }
418
419 sub git_sha1 (;$) {
420         # Return head sha1sum (of given file).
421         my $file = shift || q{--};
422
423         # Ignore error since a non-existing file might be given.
424         my ($sha1) = run_or_non('git', 'rev-list', '--max-count=1', 'HEAD',
425                 '--', $file);
426         if ($sha1) {
427                 ($sha1) = $sha1 =~ m/($sha1_pattern)/; # sha1 is untainted now
428         }
429         else {
430                 debug("Empty sha1sum for '$file'.");
431         }
432         return defined $sha1 ? $sha1 : q{};
433 }
434
435 sub rcs_update () {
436         # Update working directory.
437
438         if (length $config{gitorigin_branch}) {
439                 run_or_cry('git', 'pull', $config{gitorigin_branch});
440         }
441 }
442
443 sub rcs_prepedit ($) {
444         # Return the commit sha1sum of the file when editing begins.
445         # This will be later used in rcs_commit if a merge is required.
446         my ($file) = @_;
447
448         return git_sha1($file);
449 }
450
451 sub rcs_commit ($$$;$$) {
452         # Try to commit the page; returns undef on _success_ and
453         # a version of the page with the rcs's conflict markers on
454         # failure.
455
456         my ($file, $message, $rcstoken, $user, $ipaddr) = @_;
457
458         # Check to see if the page has been changed by someone else since
459         # rcs_prepedit was called.
460         my $cur    = git_sha1($file);
461         my ($prev) = $rcstoken =~ /^($sha1_pattern)$/; # untaint
462
463         if (defined $cur && defined $prev && $cur ne $prev) {
464                 my $conflict = merge_past($prev, $file, $dummy_commit_msg);
465                 return $conflict if defined $conflict;
466         }
467
468         rcs_add($file); 
469         return rcs_commit_staged($message, $user, $ipaddr);
470 }
471
472 sub rcs_commit_staged ($$$) {
473         # Commits all staged changes. Changes can be staged using rcs_add,
474         # rcs_remove, and rcs_rename.
475         my ($message, $user, $ipaddr)=@_;
476
477         # Set the commit author and email to the web committer.
478         my %env=%ENV;
479         if (defined $user || defined $ipaddr) {
480                 my $u=encode_utf8(defined $user ? $user : $ipaddr);
481                 # MITLOGIN This algorithm could be improved
482                 $ENV{GIT_AUTHOR_NAME}=IkiWiki::userinfo_get($u, "realname");
483                 $ENV{GIT_AUTHOR_EMAIL}="$u\@mit.edu";
484         }
485
486         $message = IkiWiki::possibly_foolish_untaint($message);
487         my @opts;
488         if ($message !~ /\S/) {
489                 # Force git to allow empty commit messages.
490                 # (If this version of git supports it.)
491                 my ($version)=`git --version` =~ /git version (.*)/;
492                 if ($version ge "1.5.4") {
493                         push @opts, '--cleanup=verbatim';
494                 }
495                 else {
496                         $message.=".";
497                 }
498         }
499         push @opts, '-q';
500         # git commit returns non-zero if file has not been really changed.
501         # so we should ignore its exit status (hence run_or_non).
502         if (run_or_non('git', 'commit', @opts, '-m', $message)) {
503                 if (length $config{gitorigin_branch}) {
504                         run_or_cry('git', 'push', $config{gitorigin_branch});
505                 }
506         }
507         
508         %ENV=%env;
509         return undef; # success
510 }
511
512 sub rcs_add ($) {
513         # Add file to archive.
514
515         my ($file) = @_;
516
517         run_or_cry('git', 'add', $file);
518 }
519
520 sub rcs_remove ($) {
521         # Remove file from archive.
522
523         my ($file) = @_;
524
525         run_or_cry('git', 'rm', '-f', $file);
526 }
527
528 sub rcs_rename ($$) {
529         my ($src, $dest) = @_;
530
531         run_or_cry('git', 'mv', '-f', $src, $dest);
532 }
533
534 sub rcs_recentchanges ($) {
535         # List of recent changes.
536
537         my ($num) = @_;
538
539         eval q{use Date::Parse};
540         error($@) if $@;
541
542         my @rets;
543         foreach my $ci (git_commit_info('HEAD', $num || 1)) {
544                 # Skip redundant commits.
545                 next if ($ci->{'comment'} && @{$ci->{'comment'}}[0] eq $dummy_commit_msg);
546
547                 my ($sha1, $when) = (
548                         $ci->{'sha1'},
549                         $ci->{'author_epoch'}
550                 );
551
552                 my @pages;
553                 foreach my $detail (@{ $ci->{'details'} }) {
554                         my $file = $detail->{'file'};
555
556                         my $diffurl = defined $config{'diffurl'} ? $config{'diffurl'} : "";
557                         $diffurl =~ s/\[\[file\]\]/$file/go;
558                         $diffurl =~ s/\[\[sha1_parent\]\]/$ci->{'parent'}/go;
559                         $diffurl =~ s/\[\[sha1_from\]\]/$detail->{'sha1_from'}/go;
560                         $diffurl =~ s/\[\[sha1_to\]\]/$detail->{'sha1_to'}/go;
561                         $diffurl =~ s/\[\[sha1_commit\]\]/$sha1/go;
562
563                         push @pages, {
564                                 page => pagename($file),
565                                 diffurl => $diffurl,
566                         };
567                 }
568
569                 my @messages;
570                 my $pastblank=0;
571                 foreach my $line (@{$ci->{'comment'}}) {
572                         $pastblank=1 if $line eq '';
573                         next if $pastblank && $line=~m/^ *(signed[ \-]off[ \-]by[ :]|acked[ \-]by[ :]|cc[ :])/i;
574                         push @messages, { line => $line };
575                 }
576
577                 my $user=$ci->{'author_username'};
578                 my $web_commit = ($ci->{'author'} =~ /\@web>/);
579                 
580                 # compatability code for old web commit messages
581                 if (! $web_commit &&
582                       defined $messages[0] &&
583                       $messages[0]->{line} =~ m/$config{web_commit_regexp}/) {
584                         $user = defined $2 ? "$2" : "$3";
585                         $messages[0]->{line} = $4;
586                         $web_commit=1;
587                 }
588
589                 push @rets, {
590                         rev        => $sha1,
591                         user       => $user,
592                         committype => $web_commit ? "web" : "git",
593                         when       => $when,
594                         message    => [@messages],
595                         pages      => [@pages],
596                 } if @pages;
597
598                 last if @rets >= $num;
599         }
600
601         return @rets;
602 }
603
604 sub rcs_diff ($) {
605         my $rev=shift;
606         my ($sha1) = $rev =~ /^($sha1_pattern)$/; # untaint
607         my @lines;
608         foreach my $line (run_or_non("git", "show", $sha1)) {
609                 if (@lines || $line=~/^diff --git/) {
610                         push @lines, $line."\n";
611                 }
612         }
613         if (wantarray) {
614                 return @lines;
615         }
616         else {
617                 return join("", @lines);
618         }
619 }
620
621 {
622 my %time_cache;
623
624 sub findtimes ($$) {
625         my $file=shift;
626         my $id=shift; # 0 = mtime ; 1 = ctime
627
628         # Remove srcdir prefix
629         $file =~ s/^\Q$config{srcdir}\E\/?//;
630
631         if (! keys %time_cache) {
632                 my $date;
633                 foreach my $line (run_or_die('git', 'log',
634                                 '--pretty=format:%ct',
635                                 '--name-only', '--relative')) {
636                         if (! defined $date && $line =~ /^(\d+)$/) {
637                                 $date=$line;
638                         }
639                         elsif (! length $line) {
640                                 $date=undef;
641                         }
642                         else {
643                                 if (! $time_cache{$line}) {
644                                         $time_cache{$line}[0]=$date; # mtime
645                                 }
646                                 $time_cache{$line}[1]=$date; # ctime
647                         }
648                 }
649         }
650
651         return exists $time_cache{$file} ? $time_cache{$file}[$id] : 0;
652 }
653
654 }
655
656 sub rcs_getctime ($) {
657         my $file=shift;
658
659         return findtimes($file, 1);
660 }
661
662 sub rcs_getmtime ($) {
663         my $file=shift;
664
665         return findtimes($file, 0);
666 }
667
668 sub rcs_receive () {
669         # The wiki may not be the only thing in the git repo.
670         # Determine if it is in a subdirectory by examining the srcdir,
671         # and its parents, looking for the .git directory.
672         my $subdir="";
673         my $dir=$config{srcdir};
674         while (! -d "$dir/.git") {
675                 $subdir=IkiWiki::basename($dir)."/".$subdir;
676                 $dir=IkiWiki::dirname($dir);
677                 if (! length $dir) {
678                         error("cannot determine root of git repo");
679                 }
680         }
681
682         my @rets;
683         while (<>) {
684                 chomp;
685                 my ($oldrev, $newrev, $refname) = split(' ', $_, 3);
686                 
687                 # only allow changes to gitmaster_branch
688                 if ($refname !~ /^refs\/heads\/\Q$config{gitmaster_branch}\E$/) {
689                         error sprintf(gettext("you are not allowed to change %s"), $refname);
690                 }
691                 
692                 # Avoid chdir when running git here, because the changes
693                 # are in the master git repo, not the srcdir repo.
694                 # The pre-recieve hook already puts us in the right place.
695                 $no_chdir=1;
696                 my @changes=git_commit_info($oldrev."..".$newrev);
697                 $no_chdir=0;
698
699                 foreach my $ci (@changes) {
700                         foreach my $detail (@{ $ci->{'details'} }) {
701                                 my $file = $detail->{'file'};
702
703                                 # check that all changed files are in the
704                                 # subdir
705                                 if (length $subdir &&
706                                     ! ($file =~ s/^\Q$subdir\E//)) {
707                                         error sprintf(gettext("you are not allowed to change %s"), $file);
708                                 }
709
710                                 my ($action, $mode, $path);
711                                 if ($detail->{'status'} =~ /^[M]+\d*$/) {
712                                         $action="change";
713                                         $mode=$detail->{'mode_to'};
714                                 }
715                                 elsif ($detail->{'status'} =~ /^[AM]+\d*$/) {
716                                         $action="add";
717                                         $mode=$detail->{'mode_to'};
718                                 }
719                                 elsif ($detail->{'status'} =~ /^[DAM]+\d*/) {
720                                         $action="remove";
721                                         $mode=$detail->{'mode_from'};
722                                 }
723                                 else {
724                                         error "unknown status ".$detail->{'status'};
725                                 }
726                                 
727                                 # test that the file mode is ok
728                                 if ($mode !~ /^100[64][64][64]$/) {
729                                         error sprintf(gettext("you cannot act on a file with mode %s"), $mode);
730                                 }
731                                 if ($action eq "change") {
732                                         if ($detail->{'mode_from'} ne $detail->{'mode_to'}) {
733                                                 error gettext("you are not allowed to change file modes");
734                                         }
735                                 }
736                                 
737                                 # extract attachment to temp file
738                                 if (($action eq 'add' || $action eq 'change') &&
739                                      ! pagetype($file)) {
740                                         eval q{use File::Temp};
741                                         die $@ if $@;
742                                         my $fh;
743                                         ($fh, $path)=File::Temp::tempfile("XXXXXXXXXX", UNLINK => 1);
744                                         if (system("git show ".$detail->{sha1_to}." > '$path'") != 0) {
745                                                 error("failed writing temp file");
746                                         }
747                                 }
748
749                                 push @rets, {
750                                         file => $file,
751                                         action => $action,
752                                         path => $path,
753                                 };
754                         }
755                 }
756         }
757
758         return reverse @rets;
759 }
760
761 1