1#include"cache.h" 2#include"pkt-line.h" 3 4/* 5 * Write a packetized stream, where each line is preceded by 6 * its length (including the header) as a 4-byte hex number. 7 * A length of 'zero' means end of stream (and a length of 1-3 8 * would be an error). 9 * 10 * This is all pretty stupid, but we use this packetized line 11 * format to make a streaming format possible without ever 12 * over-running the read buffers. That way we'll never read 13 * into what might be the pack data (which should go to another 14 * process entirely). 15 * 16 * The writing side could use stdio, but since the reading 17 * side can't, we stay with pure read/write interfaces. 18 */ 19static voidsafe_write(int fd,const void*buf,unsigned n) 20{ 21while(n) { 22int ret =write(fd, buf, n); 23if(ret >0) { 24 buf += ret; 25 n -= ret; 26continue; 27} 28if(!ret) 29die("write error (disk full?)"); 30if(errno == EAGAIN || errno == EINTR) 31continue; 32die("write error (%s)",strerror(errno)); 33} 34} 35 36/* 37 * If we buffered things up above (we don't, but we should), 38 * we'd flush it here 39 */ 40voidpacket_flush(int fd) 41{ 42safe_write(fd,"0000",4); 43} 44 45#define hex(a) (hexchar[(a) & 15]) 46voidpacket_write(int fd,const char*fmt, ...) 47{ 48static char buffer[1000]; 49static char hexchar[] ="0123456789abcdef"; 50va_list args; 51unsigned n; 52 53va_start(args, fmt); 54 n =vsnprintf(buffer +4,sizeof(buffer) -4, fmt, args); 55va_end(args); 56if(n >=sizeof(buffer)-4) 57die("protocol error: impossibly long line"); 58 n +=4; 59 buffer[0] =hex(n >>12); 60 buffer[1] =hex(n >>8); 61 buffer[2] =hex(n >>4); 62 buffer[3] =hex(n); 63safe_write(fd, buffer, n); 64} 65 66static voidsafe_read(int fd,void*buffer,unsigned size) 67{ 68int n =0; 69 70while(n < size) { 71int ret =read(fd, buffer + n, size - n); 72if(ret <0) { 73if(errno == EINTR || errno == EAGAIN) 74continue; 75die("read error (%s)",strerror(errno)); 76} 77if(!ret) 78die("unexpected EOF"); 79 n += ret; 80} 81} 82 83intpacket_read_line(int fd,char*buffer,unsigned size) 84{ 85int n; 86unsigned len; 87char linelen[4]; 88 89safe_read(fd, linelen,4); 90 91 len =0; 92for(n =0; n <4; n++) { 93unsigned char c = linelen[n]; 94 len <<=4; 95if(c >='0'&& c <='9') { 96 len += c -'0'; 97continue; 98} 99if(c >='a'&& c <='f') { 100 len += c -'a'+10; 101continue; 102} 103if(c >='A'&& c <='F') { 104 len += c -'A'+10; 105continue; 106} 107die("protocol error: bad line length character"); 108} 109if(!len) 110return0; 111 len -=4; 112if(len >= size) 113die("protocol error: bad line length%d", len); 114safe_read(fd, buffer, len); 115 buffer[len] =0; 116return len; 117}