@@ -1569,30 +1569,29 @@ static void queue_commands_from_cert(struct command **tail,
1569
1569
}
1570
1570
}
1571
1571
1572
- static struct command * read_head_info (struct oid_array * shallow )
1572
+ static struct command * read_head_info (struct packet_reader * reader ,
1573
+ struct oid_array * shallow )
1573
1574
{
1574
1575
struct command * commands = NULL ;
1575
1576
struct command * * p = & commands ;
1576
1577
for (;;) {
1577
- char * line ;
1578
- int len , linelen ;
1578
+ int linelen ;
1579
1579
1580
- line = packet_read_line (0 , & len );
1581
- if (!line )
1580
+ if (packet_reader_read (reader ) != PACKET_READ_NORMAL )
1582
1581
break ;
1583
1582
1584
- if (len > 8 && starts_with (line , "shallow " )) {
1583
+ if (reader -> pktlen > 8 && starts_with (reader -> line , "shallow " )) {
1585
1584
struct object_id oid ;
1586
- if (get_oid_hex (line + 8 , & oid ))
1585
+ if (get_oid_hex (reader -> line + 8 , & oid ))
1587
1586
die ("protocol error: expected shallow sha, got '%s'" ,
1588
- line + 8 );
1587
+ reader -> line + 8 );
1589
1588
oid_array_append (shallow , & oid );
1590
1589
continue ;
1591
1590
}
1592
1591
1593
- linelen = strlen (line );
1594
- if (linelen < len ) {
1595
- const char * feature_list = line + linelen + 1 ;
1592
+ linelen = strlen (reader -> line );
1593
+ if (linelen < reader -> pktlen ) {
1594
+ const char * feature_list = reader -> line + linelen + 1 ;
1596
1595
if (parse_feature_request (feature_list , "report-status" ))
1597
1596
report_status = 1 ;
1598
1597
if (parse_feature_request (feature_list , "side-band-64k" ))
@@ -1607,28 +1606,32 @@ static struct command *read_head_info(struct oid_array *shallow)
1607
1606
use_push_options = 1 ;
1608
1607
}
1609
1608
1610
- if (!strcmp (line , "push-cert" )) {
1609
+ if (!strcmp (reader -> line , "push-cert" )) {
1611
1610
int true_flush = 0 ;
1612
- char certbuf [1024 ];
1611
+ int saved_options = reader -> options ;
1612
+ reader -> options &= ~PACKET_READ_CHOMP_NEWLINE ;
1613
1613
1614
1614
for (;;) {
1615
- len = packet_read (0 , NULL , NULL ,
1616
- certbuf , sizeof (certbuf ), 0 );
1617
- if (!len ) {
1615
+ packet_reader_read (reader );
1616
+ if (reader -> status == PACKET_READ_FLUSH ) {
1618
1617
true_flush = 1 ;
1619
1618
break ;
1620
1619
}
1621
- if (!strcmp (certbuf , "push-cert-end\n" ))
1620
+ if (reader -> status != PACKET_READ_NORMAL ) {
1621
+ die ("protocol error: got an unexpected packet" );
1622
+ }
1623
+ if (!strcmp (reader -> line , "push-cert-end\n" ))
1622
1624
break ; /* end of cert */
1623
- strbuf_addstr (& push_cert , certbuf );
1625
+ strbuf_addstr (& push_cert , reader -> line );
1624
1626
}
1627
+ reader -> options = saved_options ;
1625
1628
1626
1629
if (true_flush )
1627
1630
break ;
1628
1631
continue ;
1629
1632
}
1630
1633
1631
- p = queue_command (p , line , linelen );
1634
+ p = queue_command (p , reader -> line , linelen );
1632
1635
}
1633
1636
1634
1637
if (push_cert .len )
@@ -1637,18 +1640,14 @@ static struct command *read_head_info(struct oid_array *shallow)
1637
1640
return commands ;
1638
1641
}
1639
1642
1640
- static void read_push_options (struct string_list * options )
1643
+ static void read_push_options (struct packet_reader * reader ,
1644
+ struct string_list * options )
1641
1645
{
1642
1646
while (1 ) {
1643
- char * line ;
1644
- int len ;
1645
-
1646
- line = packet_read_line (0 , & len );
1647
-
1648
- if (!line )
1647
+ if (packet_reader_read (reader ) != PACKET_READ_NORMAL )
1649
1648
break ;
1650
1649
1651
- string_list_append (options , line );
1650
+ string_list_append (options , reader -> line );
1652
1651
}
1653
1652
}
1654
1653
@@ -1924,6 +1923,7 @@ int cmd_receive_pack(int argc, const char **argv, const char *prefix)
1924
1923
struct oid_array shallow = OID_ARRAY_INIT ;
1925
1924
struct oid_array ref = OID_ARRAY_INIT ;
1926
1925
struct shallow_info si ;
1926
+ struct packet_reader reader ;
1927
1927
1928
1928
struct option options [] = {
1929
1929
OPT__QUIET (& quiet , N_ ("quiet" )),
@@ -1986,12 +1986,16 @@ int cmd_receive_pack(int argc, const char **argv, const char *prefix)
1986
1986
if (advertise_refs )
1987
1987
return 0 ;
1988
1988
1989
- if ((commands = read_head_info (& shallow )) != NULL ) {
1989
+ packet_reader_init (& reader , 0 , NULL , 0 ,
1990
+ PACKET_READ_CHOMP_NEWLINE |
1991
+ PACKET_READ_DIE_ON_ERR_PACKET );
1992
+
1993
+ if ((commands = read_head_info (& reader , & shallow )) != NULL ) {
1990
1994
const char * unpack_status = NULL ;
1991
1995
struct string_list push_options = STRING_LIST_INIT_DUP ;
1992
1996
1993
1997
if (use_push_options )
1994
- read_push_options (& push_options );
1998
+ read_push_options (& reader , & push_options );
1995
1999
if (!check_cert_push_options (& push_options )) {
1996
2000
struct command * cmd ;
1997
2001
for (cmd = commands ; cmd ; cmd = cmd -> next )
0 commit comments