protocol.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. # protocol.py -- Shared parts of the git protocols
  2. # Copyright (C) 2008 John Carr <john.carr@unrouted.co.uk>
  3. # Copyright (C) 2008-2012 Jelmer Vernooij <jelmer@jelmer.uk>
  4. #
  5. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  6. # General Public License as public by the Free Software Foundation; version 2.0
  7. # or (at your option) any later version. You can redistribute it and/or
  8. # modify it under the terms of either of these two licenses.
  9. #
  10. # Unless required by applicable law or agreed to in writing, software
  11. # distributed under the License is distributed on an "AS IS" BASIS,
  12. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. # See the License for the specific language governing permissions and
  14. # limitations under the License.
  15. #
  16. # You should have received a copy of the licenses; if not, see
  17. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  18. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  19. # License, Version 2.0.
  20. #
  21. """Generic functions for talking the git smart server protocol."""
  22. from io import BytesIO
  23. from os import (
  24. SEEK_END,
  25. )
  26. import socket
  27. import dulwich
  28. from dulwich.errors import (
  29. HangupException,
  30. GitProtocolError,
  31. )
  32. TCP_GIT_PORT = 9418
  33. ZERO_SHA = b"0" * 40
  34. SINGLE_ACK = 0
  35. MULTI_ACK = 1
  36. MULTI_ACK_DETAILED = 2
  37. # pack data
  38. SIDE_BAND_CHANNEL_DATA = 1
  39. # progress messages
  40. SIDE_BAND_CHANNEL_PROGRESS = 2
  41. # fatal error message just before stream aborts
  42. SIDE_BAND_CHANNEL_FATAL = 3
  43. CAPABILITY_ATOMIC = b'atomic'
  44. CAPABILITY_DEEPEN_SINCE = b'deepen-since'
  45. CAPABILITY_DEEPEN_NOT = b'deepen-not'
  46. CAPABILITY_DEEPEN_RELATIVE = b'deepen-relative'
  47. CAPABILITY_DELETE_REFS = b'delete-refs'
  48. CAPABILITY_INCLUDE_TAG = b'include-tag'
  49. CAPABILITY_MULTI_ACK = b'multi_ack'
  50. CAPABILITY_MULTI_ACK_DETAILED = b'multi_ack_detailed'
  51. CAPABILITY_NO_DONE = b'no-done'
  52. CAPABILITY_NO_PROGRESS = b'no-progress'
  53. CAPABILITY_OFS_DELTA = b'ofs-delta'
  54. CAPABILITY_QUIET = b'quiet'
  55. CAPABILITY_REPORT_STATUS = b'report-status'
  56. CAPABILITY_SHALLOW = b'shallow'
  57. CAPABILITY_SIDE_BAND = b'side-band'
  58. CAPABILITY_SIDE_BAND_64K = b'side-band-64k'
  59. CAPABILITY_THIN_PACK = b'thin-pack'
  60. CAPABILITY_AGENT = b'agent'
  61. CAPABILITY_SYMREF = b'symref'
  62. # Magic ref that is used to attach capabilities to when
  63. # there are no refs. Should always be ste to ZERO_SHA.
  64. CAPABILITIES_REF = b'capabilities^{}'
  65. COMMON_CAPABILITIES = [
  66. CAPABILITY_OFS_DELTA,
  67. CAPABILITY_SIDE_BAND,
  68. CAPABILITY_SIDE_BAND_64K,
  69. CAPABILITY_AGENT,
  70. CAPABILITY_NO_PROGRESS]
  71. KNOWN_UPLOAD_CAPABILITIES = set(COMMON_CAPABILITIES + [
  72. CAPABILITY_THIN_PACK,
  73. CAPABILITY_MULTI_ACK,
  74. CAPABILITY_MULTI_ACK_DETAILED,
  75. CAPABILITY_INCLUDE_TAG,
  76. CAPABILITY_DEEPEN_SINCE,
  77. CAPABILITY_SYMREF,
  78. CAPABILITY_SHALLOW,
  79. CAPABILITY_DEEPEN_NOT,
  80. CAPABILITY_DEEPEN_RELATIVE,
  81. ])
  82. KNOWN_RECEIVE_CAPABILITIES = set(COMMON_CAPABILITIES + [
  83. CAPABILITY_REPORT_STATUS,
  84. CAPABILITY_DELETE_REFS,
  85. CAPABILITY_QUIET,
  86. CAPABILITY_ATOMIC,
  87. ])
  88. def agent_string():
  89. return ('dulwich/%d.%d.%d' % dulwich.__version__).encode('ascii')
  90. def capability_agent():
  91. return CAPABILITY_AGENT + b'=' + agent_string()
  92. def capability_symref(from_ref, to_ref):
  93. return CAPABILITY_SYMREF + b'=' + from_ref + b':' + to_ref
  94. def extract_capability_names(capabilities):
  95. return set(parse_capability(c)[0] for c in capabilities)
  96. def parse_capability(capability):
  97. parts = capability.split(b'=', 1)
  98. if len(parts) == 1:
  99. return (parts[0], None)
  100. return tuple(parts)
  101. def symref_capabilities(symrefs):
  102. return [capability_symref(*k) for k in symrefs]
  103. COMMAND_DEEPEN = b'deepen'
  104. COMMAND_SHALLOW = b'shallow'
  105. COMMAND_UNSHALLOW = b'unshallow'
  106. COMMAND_DONE = b'done'
  107. COMMAND_WANT = b'want'
  108. COMMAND_HAVE = b'have'
  109. class ProtocolFile(object):
  110. """A dummy file for network ops that expect file-like objects."""
  111. def __init__(self, read, write):
  112. self.read = read
  113. self.write = write
  114. def tell(self):
  115. pass
  116. def close(self):
  117. pass
  118. def pkt_line(data):
  119. """Wrap data in a pkt-line.
  120. Args:
  121. data: The data to wrap, as a str or None.
  122. Returns: The data prefixed with its length in pkt-line format; if data was
  123. None, returns the flush-pkt ('0000').
  124. """
  125. if data is None:
  126. return b'0000'
  127. return ('%04x' % (len(data) + 4)).encode('ascii') + data
  128. class Protocol(object):
  129. """Class for interacting with a remote git process over the wire.
  130. Parts of the git wire protocol use 'pkt-lines' to communicate. A pkt-line
  131. consists of the length of the line as a 4-byte hex string, followed by the
  132. payload data. The length includes the 4-byte header. The special line
  133. '0000' indicates the end of a section of input and is called a 'flush-pkt'.
  134. For details on the pkt-line format, see the cgit distribution:
  135. Documentation/technical/protocol-common.txt
  136. """
  137. def __init__(self, read, write, close=None, report_activity=None):
  138. self.read = read
  139. self.write = write
  140. self._close = close
  141. self.report_activity = report_activity
  142. self._readahead = None
  143. def close(self):
  144. if self._close:
  145. self._close()
  146. def __enter__(self):
  147. return self
  148. def __exit__(self, exc_type, exc_val, exc_tb):
  149. self.close()
  150. def read_pkt_line(self):
  151. """Reads a pkt-line from the remote git process.
  152. This method may read from the readahead buffer; see unread_pkt_line.
  153. Returns: The next string from the stream, without the length prefix, or
  154. None for a flush-pkt ('0000').
  155. """
  156. if self._readahead is None:
  157. read = self.read
  158. else:
  159. read = self._readahead.read
  160. self._readahead = None
  161. try:
  162. sizestr = read(4)
  163. if not sizestr:
  164. raise HangupException()
  165. size = int(sizestr, 16)
  166. if size == 0:
  167. if self.report_activity:
  168. self.report_activity(4, 'read')
  169. return None
  170. if self.report_activity:
  171. self.report_activity(size, 'read')
  172. pkt_contents = read(size-4)
  173. except socket.error as e:
  174. raise GitProtocolError(e)
  175. else:
  176. if len(pkt_contents) + 4 != size:
  177. raise GitProtocolError(
  178. 'Length of pkt read %04x does not match length prefix %04x'
  179. % (len(pkt_contents) + 4, size))
  180. return pkt_contents
  181. def eof(self):
  182. """Test whether the protocol stream has reached EOF.
  183. Note that this refers to the actual stream EOF and not just a
  184. flush-pkt.
  185. Returns: True if the stream is at EOF, False otherwise.
  186. """
  187. try:
  188. next_line = self.read_pkt_line()
  189. except HangupException:
  190. return True
  191. self.unread_pkt_line(next_line)
  192. return False
  193. def unread_pkt_line(self, data):
  194. """Unread a single line of data into the readahead buffer.
  195. This method can be used to unread a single pkt-line into a fixed
  196. readahead buffer.
  197. Args:
  198. data: The data to unread, without the length prefix.
  199. Raises:
  200. ValueError: If more than one pkt-line is unread.
  201. """
  202. if self._readahead is not None:
  203. raise ValueError('Attempted to unread multiple pkt-lines.')
  204. self._readahead = BytesIO(pkt_line(data))
  205. def read_pkt_seq(self):
  206. """Read a sequence of pkt-lines from the remote git process.
  207. Returns: Yields each line of data up to but not including the next
  208. flush-pkt.
  209. """
  210. pkt = self.read_pkt_line()
  211. while pkt:
  212. yield pkt
  213. pkt = self.read_pkt_line()
  214. def write_pkt_line(self, line):
  215. """Sends a pkt-line to the remote git process.
  216. Args:
  217. line: A string containing the data to send, without the length
  218. prefix.
  219. """
  220. try:
  221. line = pkt_line(line)
  222. self.write(line)
  223. if self.report_activity:
  224. self.report_activity(len(line), 'write')
  225. except socket.error as e:
  226. raise GitProtocolError(e)
  227. def write_file(self):
  228. """Return a writable file-like object for this protocol."""
  229. class ProtocolFile(object):
  230. def __init__(self, proto):
  231. self._proto = proto
  232. self._offset = 0
  233. def write(self, data):
  234. self._proto.write(data)
  235. self._offset += len(data)
  236. def tell(self):
  237. return self._offset
  238. def close(self):
  239. pass
  240. return ProtocolFile(self)
  241. def write_sideband(self, channel, blob):
  242. """Write multiplexed data to the sideband.
  243. Args:
  244. channel: An int specifying the channel to write to.
  245. blob: A blob of data (as a string) to send on this channel.
  246. """
  247. # a pktline can be a max of 65520. a sideband line can therefore be
  248. # 65520-5 = 65515
  249. # WTF: Why have the len in ASCII, but the channel in binary.
  250. while blob:
  251. self.write_pkt_line(bytes(bytearray([channel])) + blob[:65515])
  252. blob = blob[65515:]
  253. def send_cmd(self, cmd, *args):
  254. """Send a command and some arguments to a git server.
  255. Only used for the TCP git protocol (git://).
  256. Args:
  257. cmd: The remote service to access.
  258. args: List of arguments to send to remove service.
  259. """
  260. self.write_pkt_line(cmd + b" " + b"".join([(a + b"\0") for a in args]))
  261. def read_cmd(self):
  262. """Read a command and some arguments from the git client
  263. Only used for the TCP git protocol (git://).
  264. Returns: A tuple of (command, [list of arguments]).
  265. """
  266. line = self.read_pkt_line()
  267. splice_at = line.find(b" ")
  268. cmd, args = line[:splice_at], line[splice_at+1:]
  269. assert args[-1:] == b"\x00"
  270. return cmd, args[:-1].split(b"\0")
  271. _RBUFSIZE = 8192 # Default read buffer size.
  272. class ReceivableProtocol(Protocol):
  273. """Variant of Protocol that allows reading up to a size without blocking.
  274. This class has a recv() method that behaves like socket.recv() in addition
  275. to a read() method.
  276. If you want to read n bytes from the wire and block until exactly n bytes
  277. (or EOF) are read, use read(n). If you want to read at most n bytes from
  278. the wire but don't care if you get less, use recv(n). Note that recv(n)
  279. will still block until at least one byte is read.
  280. """
  281. def __init__(self, recv, write, close=None, report_activity=None,
  282. rbufsize=_RBUFSIZE):
  283. super(ReceivableProtocol, self).__init__(
  284. self.read, write, close=close, report_activity=report_activity)
  285. self._recv = recv
  286. self._rbuf = BytesIO()
  287. self._rbufsize = rbufsize
  288. def read(self, size):
  289. # From _fileobj.read in socket.py in the Python 2.6.5 standard library,
  290. # with the following modifications:
  291. # - omit the size <= 0 branch
  292. # - seek back to start rather than 0 in case some buffer has been
  293. # consumed.
  294. # - use SEEK_END instead of the magic number.
  295. # Copyright (c) 2001-2010 Python Software Foundation; All Rights
  296. # Reserved
  297. # Licensed under the Python Software Foundation License.
  298. # TODO: see if buffer is more efficient than cBytesIO.
  299. assert size > 0
  300. # Our use of BytesIO rather than lists of string objects returned by
  301. # recv() minimizes memory usage and fragmentation that occurs when
  302. # rbufsize is large compared to the typical return value of recv().
  303. buf = self._rbuf
  304. start = buf.tell()
  305. buf.seek(0, SEEK_END)
  306. # buffer may have been partially consumed by recv()
  307. buf_len = buf.tell() - start
  308. if buf_len >= size:
  309. # Already have size bytes in our buffer? Extract and return.
  310. buf.seek(start)
  311. rv = buf.read(size)
  312. self._rbuf = BytesIO()
  313. self._rbuf.write(buf.read())
  314. self._rbuf.seek(0)
  315. return rv
  316. self._rbuf = BytesIO() # reset _rbuf. we consume it via buf.
  317. while True:
  318. left = size - buf_len
  319. # recv() will malloc the amount of memory given as its
  320. # parameter even though it often returns much less data
  321. # than that. The returned data string is short lived
  322. # as we copy it into a BytesIO and free it. This avoids
  323. # fragmentation issues on many platforms.
  324. data = self._recv(left)
  325. if not data:
  326. break
  327. n = len(data)
  328. if n == size and not buf_len:
  329. # Shortcut. Avoid buffer data copies when:
  330. # - We have no data in our buffer.
  331. # AND
  332. # - Our call to recv returned exactly the
  333. # number of bytes we were asked to read.
  334. return data
  335. if n == left:
  336. buf.write(data)
  337. del data # explicit free
  338. break
  339. assert n <= left, "_recv(%d) returned %d bytes" % (left, n)
  340. buf.write(data)
  341. buf_len += n
  342. del data # explicit free
  343. # assert buf_len == buf.tell()
  344. buf.seek(start)
  345. return buf.read()
  346. def recv(self, size):
  347. assert size > 0
  348. buf = self._rbuf
  349. start = buf.tell()
  350. buf.seek(0, SEEK_END)
  351. buf_len = buf.tell()
  352. buf.seek(start)
  353. left = buf_len - start
  354. if not left:
  355. # only read from the wire if our read buffer is exhausted
  356. data = self._recv(self._rbufsize)
  357. if len(data) == size:
  358. # shortcut: skip the buffer if we read exactly size bytes
  359. return data
  360. buf = BytesIO()
  361. buf.write(data)
  362. buf.seek(0)
  363. del data # explicit free
  364. self._rbuf = buf
  365. return buf.read(size)
  366. def extract_capabilities(text):
  367. """Extract a capabilities list from a string, if present.
  368. Args:
  369. text: String to extract from
  370. Returns: Tuple with text with capabilities removed and list of capabilities
  371. """
  372. if b"\0" not in text:
  373. return text, []
  374. text, capabilities = text.rstrip().split(b"\0")
  375. return (text, capabilities.strip().split(b" "))
  376. def extract_want_line_capabilities(text):
  377. """Extract a capabilities list from a want line, if present.
  378. Note that want lines have capabilities separated from the rest of the line
  379. by a space instead of a null byte. Thus want lines have the form:
  380. want obj-id cap1 cap2 ...
  381. Args:
  382. text: Want line to extract from
  383. Returns: Tuple with text with capabilities removed and list of capabilities
  384. """
  385. split_text = text.rstrip().split(b" ")
  386. if len(split_text) < 3:
  387. return text, []
  388. return (b" ".join(split_text[:2]), split_text[2:])
  389. def ack_type(capabilities):
  390. """Extract the ack type from a capabilities list."""
  391. if b'multi_ack_detailed' in capabilities:
  392. return MULTI_ACK_DETAILED
  393. elif b'multi_ack' in capabilities:
  394. return MULTI_ACK
  395. return SINGLE_ACK
  396. class BufferedPktLineWriter(object):
  397. """Writer that wraps its data in pkt-lines and has an independent buffer.
  398. Consecutive calls to write() wrap the data in a pkt-line and then buffers
  399. it until enough lines have been written such that their total length
  400. (including length prefix) reach the buffer size.
  401. """
  402. def __init__(self, write, bufsize=65515):
  403. """Initialize the BufferedPktLineWriter.
  404. Args:
  405. write: A write callback for the underlying writer.
  406. bufsize: The internal buffer size, including length prefixes.
  407. """
  408. self._write = write
  409. self._bufsize = bufsize
  410. self._wbuf = BytesIO()
  411. self._buflen = 0
  412. def write(self, data):
  413. """Write data, wrapping it in a pkt-line."""
  414. line = pkt_line(data)
  415. line_len = len(line)
  416. over = self._buflen + line_len - self._bufsize
  417. if over >= 0:
  418. start = line_len - over
  419. self._wbuf.write(line[:start])
  420. self.flush()
  421. else:
  422. start = 0
  423. saved = line[start:]
  424. self._wbuf.write(saved)
  425. self._buflen += len(saved)
  426. def flush(self):
  427. """Flush all data from the buffer."""
  428. data = self._wbuf.getvalue()
  429. if data:
  430. self._write(data)
  431. self._len = 0
  432. self._wbuf = BytesIO()
  433. class PktLineParser(object):
  434. """Packet line parser that hands completed packets off to a callback.
  435. """
  436. def __init__(self, handle_pkt):
  437. self.handle_pkt = handle_pkt
  438. self._readahead = BytesIO()
  439. def parse(self, data):
  440. """Parse a fragment of data and call back for any completed packets.
  441. """
  442. self._readahead.write(data)
  443. buf = self._readahead.getvalue()
  444. if len(buf) < 4:
  445. return
  446. while len(buf) >= 4:
  447. size = int(buf[:4], 16)
  448. if size == 0:
  449. self.handle_pkt(None)
  450. buf = buf[4:]
  451. elif size <= len(buf):
  452. self.handle_pkt(buf[4:size])
  453. buf = buf[size:]
  454. else:
  455. break
  456. self._readahead = BytesIO()
  457. self._readahead.write(buf)
  458. def get_tail(self):
  459. """Read back any unused data."""
  460. return self._readahead.getvalue()