protocol.py 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441
  1. # protocol.py -- Shared parts of the git protocols
  2. # Copyright (C) 2008 John Carr <john.carr@unrouted.co.uk>
  3. # Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
  4. #
  5. # This program is free software; you can redistribute it and/or
  6. # modify it under the terms of the GNU General Public License
  7. # as published by the Free Software Foundation; version 2
  8. # or (at your option) any later version of the License.
  9. #
  10. # This program is distributed in the hope that it will be useful,
  11. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. # GNU General Public License for more details.
  14. #
  15. # You should have received a copy of the GNU General Public License
  16. # along with this program; if not, write to the Free Software
  17. # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  18. # MA 02110-1301, USA.
  19. """Generic functions for talking the git smart server protocol."""
  20. from cStringIO import StringIO
  21. import socket
  22. from dulwich.errors import (
  23. HangupException,
  24. GitProtocolError,
  25. )
  26. from dulwich._compat import (
  27. SEEK_END,
  28. )
  29. TCP_GIT_PORT = 9418
  30. ZERO_SHA = "0" * 40
  31. SINGLE_ACK = 0
  32. MULTI_ACK = 1
  33. MULTI_ACK_DETAILED = 2
  34. class ProtocolFile(object):
  35. """A dummy file for network ops that expect file-like objects."""
  36. def __init__(self, read, write):
  37. self.read = read
  38. self.write = write
  39. def tell(self):
  40. pass
  41. def close(self):
  42. pass
  43. def pkt_line(data):
  44. """Wrap data in a pkt-line.
  45. :param data: The data to wrap, as a str or None.
  46. :return: The data prefixed with its length in pkt-line format; if data was
  47. None, returns the flush-pkt ('0000').
  48. """
  49. if data is None:
  50. return '0000'
  51. return '%04x%s' % (len(data) + 4, data)
  52. class Protocol(object):
  53. """Class for interacting with a remote git process over the wire.
  54. Parts of the git wire protocol use 'pkt-lines' to communicate. A pkt-line
  55. consists of the length of the line as a 4-byte hex string, followed by the
  56. payload data. The length includes the 4-byte header. The special line '0000'
  57. indicates the end of a section of input and is called a 'flush-pkt'.
  58. For details on the pkt-line format, see the cgit distribution:
  59. Documentation/technical/protocol-common.txt
  60. """
  61. def __init__(self, read, write, report_activity=None):
  62. self.read = read
  63. self.write = write
  64. self.report_activity = report_activity
  65. self._readahead = None
  66. def read_pkt_line(self):
  67. """Reads a pkt-line from the remote git process.
  68. This method may read from the readahead buffer; see unread_pkt_line.
  69. :return: The next string from the stream, without the length prefix, or
  70. None for a flush-pkt ('0000').
  71. """
  72. if self._readahead is None:
  73. read = self.read
  74. else:
  75. read = self._readahead.read
  76. self._readahead = None
  77. try:
  78. sizestr = read(4)
  79. if not sizestr:
  80. raise HangupException()
  81. size = int(sizestr, 16)
  82. if size == 0:
  83. if self.report_activity:
  84. self.report_activity(4, 'read')
  85. return None
  86. if self.report_activity:
  87. self.report_activity(size, 'read')
  88. return read(size-4)
  89. except socket.error, e:
  90. raise GitProtocolError(e)
  91. def eof(self):
  92. """Test whether the protocol stream has reached EOF.
  93. Note that this refers to the actual stream EOF and not just a flush-pkt.
  94. :return: True if the stream is at EOF, False otherwise.
  95. """
  96. try:
  97. next_line = self.read_pkt_line()
  98. except HangupException:
  99. return True
  100. self.unread_pkt_line(next_line)
  101. return False
  102. def unread_pkt_line(self, data):
  103. """Unread a single line of data into the readahead buffer.
  104. This method can be used to unread a single pkt-line into a fixed
  105. readahead buffer.
  106. :param data: The data to unread, without the length prefix.
  107. :raise ValueError: If more than one pkt-line is unread.
  108. """
  109. if self._readahead is not None:
  110. raise ValueError('Attempted to unread multiple pkt-lines.')
  111. self._readahead = StringIO(pkt_line(data))
  112. def read_pkt_seq(self):
  113. """Read a sequence of pkt-lines from the remote git process.
  114. :return: Yields each line of data up to but not including the next flush-pkt.
  115. """
  116. pkt = self.read_pkt_line()
  117. while pkt:
  118. yield pkt
  119. pkt = self.read_pkt_line()
  120. def write_pkt_line(self, line):
  121. """Sends a pkt-line to the remote git process.
  122. :param line: A string containing the data to send, without the length
  123. prefix.
  124. """
  125. try:
  126. line = pkt_line(line)
  127. self.write(line)
  128. if self.report_activity:
  129. self.report_activity(len(line), 'write')
  130. except socket.error, e:
  131. raise GitProtocolError(e)
  132. def write_file(self):
  133. """Return a writable file-like object for this protocol."""
  134. class ProtocolFile(object):
  135. def __init__(self, proto):
  136. self._proto = proto
  137. self._offset = 0
  138. def write(self, data):
  139. self._proto.write(data)
  140. self._offset += len(data)
  141. def tell(self):
  142. return self._offset
  143. def close(self):
  144. pass
  145. return ProtocolFile(self)
  146. def write_sideband(self, channel, blob):
  147. """Write multiplexed data to the sideband.
  148. :param channel: An int specifying the channel to write to.
  149. :param blob: A blob of data (as a string) to send on this channel.
  150. """
  151. # a pktline can be a max of 65520. a sideband line can therefore be
  152. # 65520-5 = 65515
  153. # WTF: Why have the len in ASCII, but the channel in binary.
  154. while blob:
  155. self.write_pkt_line("%s%s" % (chr(channel), blob[:65515]))
  156. blob = blob[65515:]
  157. def send_cmd(self, cmd, *args):
  158. """Send a command and some arguments to a git server.
  159. Only used for the TCP git protocol (git://).
  160. :param cmd: The remote service to access.
  161. :param args: List of arguments to send to remove service.
  162. """
  163. self.write_pkt_line("%s %s" % (cmd, "".join(["%s\0" % a for a in args])))
  164. def read_cmd(self):
  165. """Read a command and some arguments from the git client
  166. Only used for the TCP git protocol (git://).
  167. :return: A tuple of (command, [list of arguments]).
  168. """
  169. line = self.read_pkt_line()
  170. splice_at = line.find(" ")
  171. cmd, args = line[:splice_at], line[splice_at+1:]
  172. assert args[-1] == "\x00"
  173. return cmd, args[:-1].split(chr(0))
  174. _RBUFSIZE = 8192 # Default read buffer size.
  175. class ReceivableProtocol(Protocol):
  176. """Variant of Protocol that allows reading up to a size without blocking.
  177. This class has a recv() method that behaves like socket.recv() in addition
  178. to a read() method.
  179. If you want to read n bytes from the wire and block until exactly n bytes
  180. (or EOF) are read, use read(n). If you want to read at most n bytes from the
  181. wire but don't care if you get less, use recv(n). Note that recv(n) will
  182. still block until at least one byte is read.
  183. """
  184. def __init__(self, recv, write, report_activity=None, rbufsize=_RBUFSIZE):
  185. super(ReceivableProtocol, self).__init__(self.read, write,
  186. report_activity)
  187. self._recv = recv
  188. self._rbuf = StringIO()
  189. self._rbufsize = rbufsize
  190. def read(self, size):
  191. # From _fileobj.read in socket.py in the Python 2.6.5 standard library,
  192. # with the following modifications:
  193. # - omit the size <= 0 branch
  194. # - seek back to start rather than 0 in case some buffer has been
  195. # consumed.
  196. # - use SEEK_END instead of the magic number.
  197. # Copyright (c) 2001-2010 Python Software Foundation; All Rights Reserved
  198. # Licensed under the Python Software Foundation License.
  199. # TODO: see if buffer is more efficient than cStringIO.
  200. assert size > 0
  201. # Our use of StringIO rather than lists of string objects returned by
  202. # recv() minimizes memory usage and fragmentation that occurs when
  203. # rbufsize is large compared to the typical return value of recv().
  204. buf = self._rbuf
  205. start = buf.tell()
  206. buf.seek(0, SEEK_END)
  207. # buffer may have been partially consumed by recv()
  208. buf_len = buf.tell() - start
  209. if buf_len >= size:
  210. # Already have size bytes in our buffer? Extract and return.
  211. buf.seek(start)
  212. rv = buf.read(size)
  213. self._rbuf = StringIO()
  214. self._rbuf.write(buf.read())
  215. self._rbuf.seek(0)
  216. return rv
  217. self._rbuf = StringIO() # reset _rbuf. we consume it via buf.
  218. while True:
  219. left = size - buf_len
  220. # recv() will malloc the amount of memory given as its
  221. # parameter even though it often returns much less data
  222. # than that. The returned data string is short lived
  223. # as we copy it into a StringIO and free it. This avoids
  224. # fragmentation issues on many platforms.
  225. data = self._recv(left)
  226. if not data:
  227. break
  228. n = len(data)
  229. if n == size and not buf_len:
  230. # Shortcut. Avoid buffer data copies when:
  231. # - We have no data in our buffer.
  232. # AND
  233. # - Our call to recv returned exactly the
  234. # number of bytes we were asked to read.
  235. return data
  236. if n == left:
  237. buf.write(data)
  238. del data # explicit free
  239. break
  240. assert n <= left, "_recv(%d) returned %d bytes" % (left, n)
  241. buf.write(data)
  242. buf_len += n
  243. del data # explicit free
  244. #assert buf_len == buf.tell()
  245. buf.seek(start)
  246. return buf.read()
  247. def recv(self, size):
  248. assert size > 0
  249. buf = self._rbuf
  250. start = buf.tell()
  251. buf.seek(0, SEEK_END)
  252. buf_len = buf.tell()
  253. buf.seek(start)
  254. left = buf_len - start
  255. if not left:
  256. # only read from the wire if our read buffer is exhausted
  257. data = self._recv(self._rbufsize)
  258. if len(data) == size:
  259. # shortcut: skip the buffer if we read exactly size bytes
  260. return data
  261. buf = StringIO()
  262. buf.write(data)
  263. buf.seek(0)
  264. del data # explicit free
  265. self._rbuf = buf
  266. return buf.read(size)
  267. def extract_capabilities(text):
  268. """Extract a capabilities list from a string, if present.
  269. :param text: String to extract from
  270. :return: Tuple with text with capabilities removed and list of capabilities
  271. """
  272. if not "\0" in text:
  273. return text, []
  274. text, capabilities = text.rstrip().split("\0")
  275. return (text, capabilities.strip().split(" "))
  276. def extract_want_line_capabilities(text):
  277. """Extract a capabilities list from a want line, if present.
  278. Note that want lines have capabilities separated from the rest of the line
  279. by a space instead of a null byte. Thus want lines have the form:
  280. want obj-id cap1 cap2 ...
  281. :param text: Want line to extract from
  282. :return: Tuple with text with capabilities removed and list of capabilities
  283. """
  284. split_text = text.rstrip().split(" ")
  285. if len(split_text) < 3:
  286. return text, []
  287. return (" ".join(split_text[:2]), split_text[2:])
  288. def ack_type(capabilities):
  289. """Extract the ack type from a capabilities list."""
  290. if 'multi_ack_detailed' in capabilities:
  291. return MULTI_ACK_DETAILED
  292. elif 'multi_ack' in capabilities:
  293. return MULTI_ACK
  294. return SINGLE_ACK
  295. class BufferedPktLineWriter(object):
  296. """Writer that wraps its data in pkt-lines and has an independent buffer.
  297. Consecutive calls to write() wrap the data in a pkt-line and then buffers it
  298. until enough lines have been written such that their total length (including
  299. length prefix) reach the buffer size.
  300. """
  301. def __init__(self, write, bufsize=65515):
  302. """Initialize the BufferedPktLineWriter.
  303. :param write: A write callback for the underlying writer.
  304. :param bufsize: The internal buffer size, including length prefixes.
  305. """
  306. self._write = write
  307. self._bufsize = bufsize
  308. self._wbuf = StringIO()
  309. self._buflen = 0
  310. def write(self, data):
  311. """Write data, wrapping it in a pkt-line."""
  312. line = pkt_line(data)
  313. line_len = len(line)
  314. over = self._buflen + line_len - self._bufsize
  315. if over >= 0:
  316. start = line_len - over
  317. self._wbuf.write(line[:start])
  318. self.flush()
  319. else:
  320. start = 0
  321. saved = line[start:]
  322. self._wbuf.write(saved)
  323. self._buflen += len(saved)
  324. def flush(self):
  325. """Flush all data from the buffer."""
  326. data = self._wbuf.getvalue()
  327. if data:
  328. self._write(data)
  329. self._len = 0
  330. self._wbuf = StringIO()
  331. class PktLineParser(object):
  332. """Packet line parser that hands completed packets off to a callback.
  333. """
  334. def __init__(self, handle_pkt):
  335. self.handle_pkt = handle_pkt
  336. self._readahead = StringIO()
  337. def parse(self, data):
  338. """Parse a fragment of data and call back for any completed packets.
  339. """
  340. self._readahead.write(data)
  341. buf = self._readahead.getvalue()
  342. if len(buf) < 4:
  343. return
  344. while len(buf) >= 4:
  345. size = int(buf[:4], 16)
  346. if size == 0:
  347. self.handle_pkt(None)
  348. buf = buf[4:]
  349. elif size <= len(buf):
  350. self.handle_pkt(buf[4:size])
  351. buf = buf[size:]
  352. else:
  353. break
  354. self._readahead = StringIO()
  355. self._readahead.write(buf)
  356. def get_tail(self):
  357. """Read back any unused data."""
  358. return self._readahead.getvalue()