-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'jc/sideband' into jc/archive
* jc/sideband: Prepare larger packet buffer for upload-pack protocol. Move sideband server side support into reusable form. Move sideband client side support into reusable form. get_sha1_hex() micro-optimization
- Loading branch information
Showing
7 changed files
with
160 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
#include "pkt-line.h" | ||
#include "sideband.h" | ||
|
||
/* | ||
* Receive multiplexed output stream over git native protocol. | ||
* in_stream is the input stream from the remote, which carries data | ||
* in pkt_line format with band designator. Demultiplex it into out | ||
* and err and return error appropriately. Band #1 carries the | ||
* primary payload. Things coming over band #2 is not necessarily | ||
* error; they are usually informative message on the standard error | ||
* stream, aka "verbose"). A message over band #3 is a signal that | ||
* the remote died unexpectedly. A flush() concludes the stream. | ||
*/ | ||
int recv_sideband(const char *me, int in_stream, int out, int err, char *buf, int bufsz) | ||
{ | ||
while (1) { | ||
int len = packet_read_line(in_stream, buf, bufsz); | ||
if (len == 0) | ||
break; | ||
if (len < 1) { | ||
len = sprintf(buf, "%s: protocol error: no band designator\n", me); | ||
safe_write(err, buf, len); | ||
return SIDEBAND_PROTOCOL_ERROR; | ||
} | ||
len--; | ||
switch (buf[0] & 0xFF) { | ||
case 3: | ||
safe_write(err, "remote: ", 8); | ||
safe_write(err, buf+1, len); | ||
safe_write(err, "\n", 1); | ||
return SIDEBAND_REMOTE_ERROR; | ||
case 2: | ||
safe_write(err, "remote: ", 8); | ||
safe_write(err, buf+1, len); | ||
continue; | ||
case 1: | ||
safe_write(out, buf+1, len); | ||
continue; | ||
default: | ||
len = sprintf(buf + 1, | ||
"%s: protocol error: bad band #%d\n", | ||
me, buf[0] & 0xFF); | ||
safe_write(err, buf+1, len); | ||
return SIDEBAND_PROTOCOL_ERROR; | ||
} | ||
} | ||
return 0; | ||
} | ||
|
||
/* | ||
* fd is connected to the remote side; send the sideband data | ||
* over multiplexed packet stream. | ||
*/ | ||
ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max) | ||
{ | ||
ssize_t ssz = sz; | ||
const char *p = data; | ||
|
||
while (sz) { | ||
unsigned n; | ||
char hdr[5]; | ||
|
||
n = sz; | ||
if (packet_max - 5 < n) | ||
n = packet_max - 5; | ||
sprintf(hdr, "%04x", n + 5); | ||
hdr[4] = band; | ||
safe_write(fd, hdr, 5); | ||
safe_write(fd, p, n); | ||
p += n; | ||
sz -= n; | ||
} | ||
return ssz; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#ifndef SIDEBAND_H | ||
#define SIDEBAND_H | ||
|
||
#define SIDEBAND_PROTOCOL_ERROR -2 | ||
#define SIDEBAND_REMOTE_ERROR -1 | ||
|
||
#define DEFAULT_PACKET_MAX 1000 | ||
#define LARGE_PACKET_MAX 65520 | ||
|
||
int recv_sideband(const char *me, int in_stream, int out, int err, char *, int); | ||
ssize_t send_sideband(int fd, int band, const char *data, ssize_t sz, int packet_max); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters