protocol.py 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  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. CAPABILITY_ALLOW_TIP_SHA1_IN_WANT = b"allow-tip-sha1-in-want"
  63. CAPABILITY_ALLOW_REACHABLE_SHA1_IN_WANT = b"allow-reachable-sha1-in-want"
  64. # Magic ref that is used to attach capabilities to when
  65. # there are no refs. Should always be ste to ZERO_SHA.
  66. CAPABILITIES_REF = b"capabilities^{}"
  67. COMMON_CAPABILITIES = [
  68. CAPABILITY_OFS_DELTA,
  69. CAPABILITY_SIDE_BAND,
  70. CAPABILITY_SIDE_BAND_64K,
  71. CAPABILITY_AGENT,
  72. CAPABILITY_NO_PROGRESS,
  73. ]
  74. KNOWN_UPLOAD_CAPABILITIES = set(
  75. COMMON_CAPABILITIES
  76. + [
  77. CAPABILITY_THIN_PACK,
  78. CAPABILITY_MULTI_ACK,
  79. CAPABILITY_MULTI_ACK_DETAILED,
  80. CAPABILITY_INCLUDE_TAG,
  81. CAPABILITY_DEEPEN_SINCE,
  82. CAPABILITY_SYMREF,
  83. CAPABILITY_SHALLOW,
  84. CAPABILITY_DEEPEN_NOT,
  85. CAPABILITY_DEEPEN_RELATIVE,
  86. CAPABILITY_ALLOW_TIP_SHA1_IN_WANT,
  87. CAPABILITY_ALLOW_REACHABLE_SHA1_IN_WANT,
  88. ]
  89. )
  90. KNOWN_RECEIVE_CAPABILITIES = set(
  91. COMMON_CAPABILITIES
  92. + [
  93. CAPABILITY_REPORT_STATUS,
  94. CAPABILITY_DELETE_REFS,
  95. CAPABILITY_QUIET,
  96. CAPABILITY_ATOMIC,
  97. ]
  98. )
  99. DEPTH_INFINITE = 0x7FFFFFFF
  100. NAK_LINE = b"NAK\n"
  101. def agent_string():
  102. return ("dulwich/%d.%d.%d" % dulwich.__version__).encode("ascii")
  103. def capability_agent():
  104. return CAPABILITY_AGENT + b"=" + agent_string()
  105. def capability_symref(from_ref, to_ref):
  106. return CAPABILITY_SYMREF + b"=" + from_ref + b":" + to_ref
  107. def extract_capability_names(capabilities):
  108. return {parse_capability(c)[0] for c in capabilities}
  109. def parse_capability(capability):
  110. parts = capability.split(b"=", 1)
  111. if len(parts) == 1:
  112. return (parts[0], None)
  113. return tuple(parts)
  114. def symref_capabilities(symrefs):
  115. return [capability_symref(*k) for k in symrefs]
  116. COMMAND_DEEPEN = b"deepen"
  117. COMMAND_SHALLOW = b"shallow"
  118. COMMAND_UNSHALLOW = b"unshallow"
  119. COMMAND_DONE = b"done"
  120. COMMAND_WANT = b"want"
  121. COMMAND_HAVE = b"have"
  122. def format_cmd_pkt(cmd, *args):
  123. return cmd + b" " + b"".join([(a + b"\0") for a in args])
  124. def parse_cmd_pkt(line):
  125. splice_at = line.find(b" ")
  126. cmd, args = line[:splice_at], line[splice_at + 1 :]
  127. assert args[-1:] == b"\x00"
  128. return cmd, args[:-1].split(b"\0")
  129. def pkt_line(data):
  130. """Wrap data in a pkt-line.
  131. Args:
  132. data: The data to wrap, as a str or None.
  133. Returns: The data prefixed with its length in pkt-line format; if data was
  134. None, returns the flush-pkt ('0000').
  135. """
  136. if data is None:
  137. return b"0000"
  138. return ("%04x" % (len(data) + 4)).encode("ascii") + data
  139. class Protocol(object):
  140. """Class for interacting with a remote git process over the wire.
  141. Parts of the git wire protocol use 'pkt-lines' to communicate. A pkt-line
  142. consists of the length of the line as a 4-byte hex string, followed by the
  143. payload data. The length includes the 4-byte header. The special line
  144. '0000' indicates the end of a section of input and is called a 'flush-pkt'.
  145. For details on the pkt-line format, see the cgit distribution:
  146. Documentation/technical/protocol-common.txt
  147. """
  148. def __init__(self, read, write, close=None, report_activity=None):
  149. self.read = read
  150. self.write = write
  151. self._close = close
  152. self.report_activity = report_activity
  153. self._readahead = None
  154. def close(self):
  155. if self._close:
  156. self._close()
  157. def __enter__(self):
  158. return self
  159. def __exit__(self, exc_type, exc_val, exc_tb):
  160. self.close()
  161. def read_pkt_line(self):
  162. """Reads a pkt-line from the remote git process.
  163. This method may read from the readahead buffer; see unread_pkt_line.
  164. Returns: The next string from the stream, without the length prefix, or
  165. None for a flush-pkt ('0000').
  166. """
  167. if self._readahead is None:
  168. read = self.read
  169. else:
  170. read = self._readahead.read
  171. self._readahead = None
  172. try:
  173. sizestr = read(4)
  174. if not sizestr:
  175. raise HangupException()
  176. size = int(sizestr, 16)
  177. if size == 0:
  178. if self.report_activity:
  179. self.report_activity(4, "read")
  180. return None
  181. if self.report_activity:
  182. self.report_activity(size, "read")
  183. pkt_contents = read(size - 4)
  184. except ConnectionResetError:
  185. raise HangupException()
  186. except socket.error as e:
  187. raise GitProtocolError(e)
  188. else:
  189. if len(pkt_contents) + 4 != size:
  190. raise GitProtocolError(
  191. "Length of pkt read %04x does not match length prefix %04x"
  192. % (len(pkt_contents) + 4, size)
  193. )
  194. return pkt_contents
  195. def eof(self):
  196. """Test whether the protocol stream has reached EOF.
  197. Note that this refers to the actual stream EOF and not just a
  198. flush-pkt.
  199. Returns: True if the stream is at EOF, False otherwise.
  200. """
  201. try:
  202. next_line = self.read_pkt_line()
  203. except HangupException:
  204. return True
  205. self.unread_pkt_line(next_line)
  206. return False
  207. def unread_pkt_line(self, data):
  208. """Unread a single line of data into the readahead buffer.
  209. This method can be used to unread a single pkt-line into a fixed
  210. readahead buffer.
  211. Args:
  212. data: The data to unread, without the length prefix.
  213. Raises:
  214. ValueError: If more than one pkt-line is unread.
  215. """
  216. if self._readahead is not None:
  217. raise ValueError("Attempted to unread multiple pkt-lines.")
  218. self._readahead = BytesIO(pkt_line(data))
  219. def read_pkt_seq(self):
  220. """Read a sequence of pkt-lines from the remote git process.
  221. Returns: Yields each line of data up to but not including the next
  222. flush-pkt.
  223. """
  224. pkt = self.read_pkt_line()
  225. while pkt:
  226. yield pkt
  227. pkt = self.read_pkt_line()
  228. def write_pkt_line(self, line):
  229. """Sends a pkt-line to the remote git process.
  230. Args:
  231. line: A string containing the data to send, without the length
  232. prefix.
  233. """
  234. try:
  235. line = pkt_line(line)
  236. self.write(line)
  237. if self.report_activity:
  238. self.report_activity(len(line), "write")
  239. except socket.error as e:
  240. raise GitProtocolError(e)
  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(format_cmd_pkt(cmd, *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. return parse_cmd_pkt(line)
  268. _RBUFSIZE = 8192 # Default read buffer size.
  269. class ReceivableProtocol(Protocol):
  270. """Variant of Protocol that allows reading up to a size without blocking.
  271. This class has a recv() method that behaves like socket.recv() in addition
  272. to a read() method.
  273. If you want to read n bytes from the wire and block until exactly n bytes
  274. (or EOF) are read, use read(n). If you want to read at most n bytes from
  275. the wire but don't care if you get less, use recv(n). Note that recv(n)
  276. will still block until at least one byte is read.
  277. """
  278. def __init__(
  279. self, recv, write, close=None, report_activity=None, rbufsize=_RBUFSIZE
  280. ):
  281. super(ReceivableProtocol, self).__init__(
  282. self.read, write, close=close, report_activity=report_activity
  283. )
  284. self._recv = recv
  285. self._rbuf = BytesIO()
  286. self._rbufsize = rbufsize
  287. def read(self, size):
  288. # From _fileobj.read in socket.py in the Python 2.6.5 standard library,
  289. # with the following modifications:
  290. # - omit the size <= 0 branch
  291. # - seek back to start rather than 0 in case some buffer has been
  292. # consumed.
  293. # - use SEEK_END instead of the magic number.
  294. # Copyright (c) 2001-2010 Python Software Foundation; All Rights
  295. # Reserved
  296. # Licensed under the Python Software Foundation License.
  297. # TODO: see if buffer is more efficient than cBytesIO.
  298. assert size > 0
  299. # Our use of BytesIO rather than lists of string objects returned by
  300. # recv() minimizes memory usage and fragmentation that occurs when
  301. # rbufsize is large compared to the typical return value of recv().
  302. buf = self._rbuf
  303. start = buf.tell()
  304. buf.seek(0, SEEK_END)
  305. # buffer may have been partially consumed by recv()
  306. buf_len = buf.tell() - start
  307. if buf_len >= size:
  308. # Already have size bytes in our buffer? Extract and return.
  309. buf.seek(start)
  310. rv = buf.read(size)
  311. self._rbuf = BytesIO()
  312. self._rbuf.write(buf.read())
  313. self._rbuf.seek(0)
  314. return rv
  315. self._rbuf = BytesIO() # reset _rbuf. we consume it via buf.
  316. while True:
  317. left = size - buf_len
  318. # recv() will malloc the amount of memory given as its
  319. # parameter even though it often returns much less data
  320. # than that. The returned data string is short lived
  321. # as we copy it into a BytesIO and free it. This avoids
  322. # fragmentation issues on many platforms.
  323. data = self._recv(left)
  324. if not data:
  325. break
  326. n = len(data)
  327. if n == size and not buf_len:
  328. # Shortcut. Avoid buffer data copies when:
  329. # - We have no data in our buffer.
  330. # AND
  331. # - Our call to recv returned exactly the
  332. # number of bytes we were asked to read.
  333. return data
  334. if n == left:
  335. buf.write(data)
  336. del data # explicit free
  337. break
  338. assert n <= left, "_recv(%d) returned %d bytes" % (left, n)
  339. buf.write(data)
  340. buf_len += n
  341. del data # explicit free
  342. # assert buf_len == buf.tell()
  343. buf.seek(start)
  344. return buf.read()
  345. def recv(self, size):
  346. assert size > 0
  347. buf = self._rbuf
  348. start = buf.tell()
  349. buf.seek(0, SEEK_END)
  350. buf_len = buf.tell()
  351. buf.seek(start)
  352. left = buf_len - start
  353. if not left:
  354. # only read from the wire if our read buffer is exhausted
  355. data = self._recv(self._rbufsize)
  356. if len(data) == size:
  357. # shortcut: skip the buffer if we read exactly size bytes
  358. return data
  359. buf = BytesIO()
  360. buf.write(data)
  361. buf.seek(0)
  362. del data # explicit free
  363. self._rbuf = buf
  364. return buf.read(size)
  365. def extract_capabilities(text):
  366. """Extract a capabilities list from a string, if present.
  367. Args:
  368. text: String to extract from
  369. Returns: Tuple with text with capabilities removed and list of capabilities
  370. """
  371. if b"\0" not in text:
  372. return text, []
  373. text, capabilities = text.rstrip().split(b"\0")
  374. return (text, capabilities.strip().split(b" "))
  375. def extract_want_line_capabilities(text):
  376. """Extract a capabilities list from a want line, if present.
  377. Note that want lines have capabilities separated from the rest of the line
  378. by a space instead of a null byte. Thus want lines have the form:
  379. want obj-id cap1 cap2 ...
  380. Args:
  381. text: Want line to extract from
  382. Returns: Tuple with text with capabilities removed and list of capabilities
  383. """
  384. split_text = text.rstrip().split(b" ")
  385. if len(split_text) < 3:
  386. return text, []
  387. return (b" ".join(split_text[:2]), split_text[2:])
  388. def ack_type(capabilities):
  389. """Extract the ack type from a capabilities list."""
  390. if b"multi_ack_detailed" in capabilities:
  391. return MULTI_ACK_DETAILED
  392. elif b"multi_ack" in capabilities:
  393. return MULTI_ACK
  394. return SINGLE_ACK
  395. class BufferedPktLineWriter(object):
  396. """Writer that wraps its data in pkt-lines and has an independent buffer.
  397. Consecutive calls to write() wrap the data in a pkt-line and then buffers
  398. it until enough lines have been written such that their total length
  399. (including length prefix) reach the buffer size.
  400. """
  401. def __init__(self, write, bufsize=65515):
  402. """Initialize the BufferedPktLineWriter.
  403. Args:
  404. write: A write callback for the underlying writer.
  405. bufsize: The internal buffer size, including length prefixes.
  406. """
  407. self._write = write
  408. self._bufsize = bufsize
  409. self._wbuf = BytesIO()
  410. self._buflen = 0
  411. def write(self, data):
  412. """Write data, wrapping it in a pkt-line."""
  413. line = pkt_line(data)
  414. line_len = len(line)
  415. over = self._buflen + line_len - self._bufsize
  416. if over >= 0:
  417. start = line_len - over
  418. self._wbuf.write(line[:start])
  419. self.flush()
  420. else:
  421. start = 0
  422. saved = line[start:]
  423. self._wbuf.write(saved)
  424. self._buflen += len(saved)
  425. def flush(self):
  426. """Flush all data from the buffer."""
  427. data = self._wbuf.getvalue()
  428. if data:
  429. self._write(data)
  430. self._len = 0
  431. self._wbuf = BytesIO()
  432. class PktLineParser(object):
  433. """Packet line parser that hands completed packets off to a callback."""
  434. def __init__(self, handle_pkt):
  435. self.handle_pkt = handle_pkt
  436. self._readahead = BytesIO()
  437. def parse(self, data):
  438. """Parse a fragment of data and call back for any completed packets."""
  439. self._readahead.write(data)
  440. buf = self._readahead.getvalue()
  441. if len(buf) < 4:
  442. return
  443. while len(buf) >= 4:
  444. size = int(buf[:4], 16)
  445. if size == 0:
  446. self.handle_pkt(None)
  447. buf = buf[4:]
  448. elif size <= len(buf):
  449. self.handle_pkt(buf[4:size])
  450. buf = buf[size:]
  451. else:
  452. break
  453. self._readahead = BytesIO()
  454. self._readahead.write(buf)
  455. def get_tail(self):
  456. """Read back any unused data."""
  457. return self._readahead.getvalue()
  458. def format_capability_line(capabilities):
  459. return b"".join([b" " + c for c in capabilities])
  460. def format_ref_line(ref, sha, capabilities=None):
  461. if capabilities is None:
  462. return sha + b" " + ref + b"\n"
  463. else:
  464. return (
  465. sha + b" " + ref + b"\0"
  466. + format_capability_line(capabilities)
  467. + b"\n")
  468. def format_shallow_line(sha):
  469. return COMMAND_SHALLOW + b" " + sha
  470. def format_unshallow_line(sha):
  471. return COMMAND_UNSHALLOW + b" " + sha
  472. def format_ack_line(sha, ack_type=b""):
  473. if ack_type:
  474. ack_type = b" " + ack_type
  475. return b"ACK " + sha + ack_type + b"\n"