2006-09-10 10:06:33 +02:00
|
|
|
#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.
|
|
|
|
*/
|
2006-10-11 17:49:15 +02:00
|
|
|
int recv_sideband(const char *me, int in_stream, int out, int err)
|
2006-09-10 10:06:33 +02:00
|
|
|
{
|
2006-10-11 17:49:15 +02:00
|
|
|
char buf[7 + LARGE_PACKET_MAX + 1];
|
|
|
|
strcpy(buf, "remote:");
|
2006-09-10 10:06:33 +02:00
|
|
|
while (1) {
|
2006-10-11 17:49:15 +02:00
|
|
|
int band, len;
|
|
|
|
len = packet_read_line(in_stream, buf+7, LARGE_PACKET_MAX);
|
2006-09-10 10:06:33 +02:00
|
|
|
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;
|
|
|
|
}
|
2006-10-11 17:49:15 +02:00
|
|
|
band = buf[7] & 0xff;
|
2006-09-10 10:06:33 +02:00
|
|
|
len--;
|
2006-10-11 17:49:15 +02:00
|
|
|
switch (band) {
|
2006-09-10 10:06:33 +02:00
|
|
|
case 3:
|
2006-10-11 17:49:15 +02:00
|
|
|
buf[7] = ' ';
|
|
|
|
buf[8+len] = '\n';
|
|
|
|
safe_write(err, buf, 8+len+1);
|
2006-09-10 10:06:33 +02:00
|
|
|
return SIDEBAND_REMOTE_ERROR;
|
|
|
|
case 2:
|
2006-10-11 17:49:15 +02:00
|
|
|
buf[7] = ' ';
|
|
|
|
safe_write(err, buf, 8+len);
|
2006-09-10 10:06:33 +02:00
|
|
|
continue;
|
|
|
|
case 1:
|
2006-10-11 17:49:15 +02:00
|
|
|
safe_write(out, buf+8, len);
|
2006-09-10 10:06:33 +02:00
|
|
|
continue;
|
|
|
|
default:
|
2006-10-11 17:49:15 +02:00
|
|
|
len = sprintf(buf,
|
2006-09-10 10:06:33 +02:00
|
|
|
"%s: protocol error: bad band #%d\n",
|
2006-10-11 17:49:15 +02:00
|
|
|
me, band);
|
|
|
|
safe_write(err, buf, len);
|
2006-09-10 10:06:33 +02:00
|
|
|
return SIDEBAND_PROTOCOL_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2006-09-10 12:20:24 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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;
|
|
|
|
}
|