2f74ab2e45c169f8fe3f984296ea33c2371e9dc5
   1#
   2# Example implementation for the Git filter protocol version 2
   3# See Documentation/gitattributes.txt, section "Filter Protocol"
   4#
   5# The first argument defines a debug log file that the script write to.
   6# All remaining arguments define a list of supported protocol
   7# capabilities ("clean", "smudge", etc).
   8#
   9# This implementation supports special test cases:
  10# (1) If data with the pathname "clean-write-fail.r" is processed with
  11#     a "clean" operation then the write operation will die.
  12# (2) If data with the pathname "smudge-write-fail.r" is processed with
  13#     a "smudge" operation then the write operation will die.
  14# (3) If data with the pathname "error.r" is processed with any
  15#     operation then the filter signals that it cannot or does not want
  16#     to process the file.
  17# (4) If data with the pathname "abort.r" is processed with any
  18#     operation then the filter signals that it cannot or does not want
  19#     to process the file and any file after that is processed with the
  20#     same command.
  21# (5) If data with a pathname that is a key in the DELAY hash is
  22#     requested (e.g. "test-delay10.a") then the filter responds with
  23#     a "delay" status and sets the "requested" field in the DELAY hash.
  24#     The filter will signal the availability of this object after
  25#     "count" (field in DELAY hash) "list_available_blobs" commands.
  26# (6) If data with the pathname "missing-delay.a" is processed that the
  27#     filter will drop the path from the "list_available_blobs" response.
  28# (7) If data with the pathname "invalid-delay.a" is processed that the
  29#     filter will add the path "unfiltered" which was not delayed before
  30#     to the "list_available_blobs" response.
  31#
  32
  33use strict;
  34use warnings;
  35use IO::File;
  36
  37my $MAX_PACKET_CONTENT_SIZE = 65516;
  38my $log_file                = shift @ARGV;
  39my @capabilities            = @ARGV;
  40
  41open my $debug, ">>", $log_file or die "cannot open log file: $!";
  42
  43my %DELAY = (
  44        'test-delay10.a' => { "requested" => 0, "count" => 1 },
  45        'test-delay11.a' => { "requested" => 0, "count" => 1 },
  46        'test-delay20.a' => { "requested" => 0, "count" => 2 },
  47        'test-delay10.b' => { "requested" => 0, "count" => 1 },
  48        'missing-delay.a' => { "requested" => 0, "count" => 1 },
  49        'invalid-delay.a' => { "requested" => 0, "count" => 1 },
  50);
  51
  52sub rot13 {
  53        my $str = shift;
  54        $str =~ y/A-Za-z/N-ZA-Mn-za-m/;
  55        return $str;
  56}
  57
  58sub packet_compare_lists {
  59        my ($expect, @result) = @_;
  60        my $ix;
  61        if (scalar @$expect != scalar @result) {
  62                return undef;
  63        }
  64        for ($ix = 0; $ix < $#result; $ix++) {
  65                if ($expect->[$ix] ne $result[$ix]) {
  66                        return undef;
  67                }
  68        }
  69        return 1;
  70}
  71
  72sub packet_bin_read {
  73        my $buffer;
  74        my $bytes_read = read STDIN, $buffer, 4;
  75        if ( $bytes_read == 0 ) {
  76                # EOF - Git stopped talking to us!
  77                return ( -1, "" );
  78        } elsif ( $bytes_read != 4 ) {
  79                die "invalid packet: '$buffer'";
  80        }
  81        my $pkt_size = hex($buffer);
  82        if ( $pkt_size == 0 ) {
  83                return ( 1, "" );
  84        } elsif ( $pkt_size > 4 ) {
  85                my $content_size = $pkt_size - 4;
  86                $bytes_read = read STDIN, $buffer, $content_size;
  87                if ( $bytes_read != $content_size ) {
  88                        die "invalid packet ($content_size bytes expected; $bytes_read bytes read)";
  89                }
  90                return ( 0, $buffer );
  91        } else {
  92                die "invalid packet size: $pkt_size";
  93        }
  94}
  95
  96sub packet_txt_read {
  97        my ( $res, $buf ) = packet_bin_read();
  98        unless ( $res == -1 or $buf eq '' or $buf =~ s/\n$// ) {
  99                die "A non-binary line MUST be terminated by an LF.\n"
 100                    . "Received: '$buf'";
 101        }
 102        return ( $res, $buf );
 103}
 104
 105sub packet_required_key_val_read {
 106        my ( $key ) = @_;
 107        my ( $res, $buf ) = packet_txt_read();
 108        unless ( $res == -1 or ( $buf =~ s/^$key=// and $buf ne '' ) ) {
 109                die "bad $key: '$buf'";
 110        }
 111        return ( $res, $buf );
 112}
 113
 114sub packet_bin_write {
 115        my $buf = shift;
 116        print STDOUT sprintf( "%04x", length($buf) + 4 );
 117        print STDOUT $buf;
 118        STDOUT->flush();
 119}
 120
 121sub packet_txt_write {
 122        packet_bin_write( $_[0] . "\n" );
 123}
 124
 125sub packet_flush {
 126        print STDOUT sprintf( "%04x", 0 );
 127        STDOUT->flush();
 128}
 129
 130sub packet_initialize {
 131        my ($name, $version) = @_;
 132
 133        packet_compare_lists([0, $name . "-client"], packet_txt_read()) ||
 134                die "bad initialize";
 135        packet_compare_lists([0, "version=" . $version], packet_txt_read()) ||
 136                die "bad version";
 137        packet_compare_lists([1, ""], packet_bin_read()) ||
 138                die "bad version end";
 139
 140        packet_txt_write( $name . "-server" );
 141        packet_txt_write( "version=" . $version );
 142        packet_flush();
 143}
 144
 145print $debug "START\n";
 146$debug->flush();
 147
 148packet_initialize("git-filter", 2);
 149
 150packet_compare_lists([0, "capability=clean"], packet_txt_read()) ||
 151        die "bad capability";
 152packet_compare_lists([0, "capability=smudge"], packet_txt_read()) ||
 153        die "bad capability";
 154packet_compare_lists([0, "capability=delay"], packet_txt_read()) ||
 155        die "bad capability";
 156packet_compare_lists([1, ""], packet_bin_read()) ||
 157        die "bad capability end";
 158
 159foreach (@capabilities) {
 160        packet_txt_write( "capability=" . $_ );
 161}
 162packet_flush();
 163print $debug "init handshake complete\n";
 164$debug->flush();
 165
 166while (1) {
 167        my ( $res, $command ) = packet_required_key_val_read("command");
 168        if ( $res == -1 ) {
 169                print $debug "STOP\n";
 170                exit();
 171        }
 172        print $debug "IN: $command";
 173        $debug->flush();
 174
 175        if ( $command eq "list_available_blobs" ) {
 176                # Flush
 177                packet_compare_lists([1, ""], packet_bin_read()) ||
 178                        die "bad list_available_blobs end";
 179
 180                foreach my $pathname ( sort keys %DELAY ) {
 181                        if ( $DELAY{$pathname}{"requested"} >= 1 ) {
 182                                $DELAY{$pathname}{"count"} = $DELAY{$pathname}{"count"} - 1;
 183                                if ( $pathname eq "invalid-delay.a" ) {
 184                                        # Send Git a pathname that was not delayed earlier
 185                                        packet_txt_write("pathname=unfiltered");
 186                                }
 187                                if ( $pathname eq "missing-delay.a" ) {
 188                                        # Do not signal Git that this file is available
 189                                } elsif ( $DELAY{$pathname}{"count"} == 0 ) {
 190                                        print $debug " $pathname";
 191                                        packet_txt_write("pathname=$pathname");
 192                                }
 193                        }
 194                }
 195
 196                packet_flush();
 197
 198                print $debug " [OK]\n";
 199                $debug->flush();
 200                packet_txt_write("status=success");
 201                packet_flush();
 202        } else {
 203                my ( $res, $pathname ) = packet_required_key_val_read("pathname");
 204                if ( $res == -1 ) {
 205                        die "unexpected EOF while expecting pathname";
 206                }
 207                print $debug " $pathname";
 208                $debug->flush();
 209
 210                # Read until flush
 211                my ( $done, $buffer ) = packet_txt_read();
 212                while ( $buffer ne '' ) {
 213                        if ( $buffer eq "can-delay=1" ) {
 214                                if ( exists $DELAY{$pathname} and $DELAY{$pathname}{"requested"} == 0 ) {
 215                                        $DELAY{$pathname}{"requested"} = 1;
 216                                }
 217                        } else {
 218                                die "Unknown message '$buffer'";
 219                        }
 220
 221                        ( $done, $buffer ) = packet_txt_read();
 222                }
 223                if ( $done == -1 ) {
 224                        die "unexpected EOF after pathname '$pathname'";
 225                }
 226
 227                my $input = "";
 228                {
 229                        binmode(STDIN);
 230                        my $buffer;
 231                        my $done = 0;
 232                        while ( !$done ) {
 233                                ( $done, $buffer ) = packet_bin_read();
 234                                $input .= $buffer;
 235                        }
 236                        if ( $done == -1 ) {
 237                                die "unexpected EOF while reading input for '$pathname'";
 238                        }                       
 239                        print $debug " " . length($input) . " [OK] -- ";
 240                        $debug->flush();
 241                }
 242
 243                my $output;
 244                if ( exists $DELAY{$pathname} and exists $DELAY{$pathname}{"output"} ) {
 245                        $output = $DELAY{$pathname}{"output"}
 246                } elsif ( $pathname eq "error.r" or $pathname eq "abort.r" ) {
 247                        $output = "";
 248                } elsif ( $command eq "clean" and grep( /^clean$/, @capabilities ) ) {
 249                        $output = rot13($input);
 250                } elsif ( $command eq "smudge" and grep( /^smudge$/, @capabilities ) ) {
 251                        $output = rot13($input);
 252                } else {
 253                        die "bad command '$command'";
 254                }
 255
 256                if ( $pathname eq "error.r" ) {
 257                        print $debug "[ERROR]\n";
 258                        $debug->flush();
 259                        packet_txt_write("status=error");
 260                        packet_flush();
 261                } elsif ( $pathname eq "abort.r" ) {
 262                        print $debug "[ABORT]\n";
 263                        $debug->flush();
 264                        packet_txt_write("status=abort");
 265                        packet_flush();
 266                } elsif ( $command eq "smudge" and
 267                        exists $DELAY{$pathname} and
 268                        $DELAY{$pathname}{"requested"} == 1 ) {
 269                        print $debug "[DELAYED]\n";
 270                        $debug->flush();
 271                        packet_txt_write("status=delayed");
 272                        packet_flush();
 273                        $DELAY{$pathname}{"requested"} = 2;
 274                        $DELAY{$pathname}{"output"} = $output;
 275                } else {
 276                        packet_txt_write("status=success");
 277                        packet_flush();
 278
 279                        if ( $pathname eq "${command}-write-fail.r" ) {
 280                                print $debug "[WRITE FAIL]\n";
 281                                $debug->flush();
 282                                die "${command} write error";
 283                        }
 284
 285                        print $debug "OUT: " . length($output) . " ";
 286                        $debug->flush();
 287
 288                        while ( length($output) > 0 ) {
 289                                my $packet = substr( $output, 0, $MAX_PACKET_CONTENT_SIZE );
 290                                packet_bin_write($packet);
 291                                # dots represent the number of packets
 292                                print $debug ".";
 293                                if ( length($output) > $MAX_PACKET_CONTENT_SIZE ) {
 294                                        $output = substr( $output, $MAX_PACKET_CONTENT_SIZE );
 295                                } else {
 296                                        $output = "";
 297                                }
 298                        }
 299                        packet_flush();
 300                        print $debug " [OK]\n";
 301                        $debug->flush();
 302                        packet_flush();
 303                }
 304        }
 305}