client.py 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197
  1. # client.py -- Implementation of the server side git protocols
  2. # Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@samba.org>
  3. # Copyright (C) 2008 John Carr
  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; either version 2
  8. # or (at your option) a 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. """Client side support for the Git protocol.
  20. The Dulwich client supports the following capabilities:
  21. * thin-pack
  22. * multi_ack_detailed
  23. * multi_ack
  24. * side-band-64k
  25. * ofs-delta
  26. * report-status
  27. * delete-refs
  28. Known capabilities that are not supported:
  29. * shallow
  30. * no-progress
  31. * include-tag
  32. """
  33. __docformat__ = 'restructuredText'
  34. from contextlib import closing
  35. from io import BytesIO, BufferedReader
  36. import dulwich
  37. import select
  38. import socket
  39. import subprocess
  40. import sys
  41. try:
  42. import urllib2
  43. import urlparse
  44. except ImportError:
  45. import urllib.request as urllib2
  46. import urllib.parse as urlparse
  47. from dulwich.errors import (
  48. GitProtocolError,
  49. NotGitRepository,
  50. SendPackError,
  51. UpdateRefsError,
  52. )
  53. from dulwich.protocol import (
  54. _RBUFSIZE,
  55. CAPABILITY_DELETE_REFS,
  56. CAPABILITY_MULTI_ACK,
  57. CAPABILITY_MULTI_ACK_DETAILED,
  58. CAPABILITY_OFS_DELTA,
  59. CAPABILITY_REPORT_STATUS,
  60. CAPABILITY_SIDE_BAND_64K,
  61. CAPABILITY_THIN_PACK,
  62. COMMAND_DONE,
  63. COMMAND_HAVE,
  64. COMMAND_WANT,
  65. SIDE_BAND_CHANNEL_DATA,
  66. SIDE_BAND_CHANNEL_PROGRESS,
  67. SIDE_BAND_CHANNEL_FATAL,
  68. PktLineParser,
  69. Protocol,
  70. ProtocolFile,
  71. TCP_GIT_PORT,
  72. ZERO_SHA,
  73. extract_capabilities,
  74. )
  75. from dulwich.pack import (
  76. write_pack_objects,
  77. )
  78. from dulwich.refs import (
  79. read_info_refs,
  80. )
  81. def _fileno_can_read(fileno):
  82. """Check if a file descriptor is readable."""
  83. return len(select.select([fileno], [], [], 0)[0]) > 0
  84. COMMON_CAPABILITIES = [CAPABILITY_OFS_DELTA, CAPABILITY_SIDE_BAND_64K]
  85. FETCH_CAPABILITIES = ([CAPABILITY_THIN_PACK, CAPABILITY_MULTI_ACK,
  86. CAPABILITY_MULTI_ACK_DETAILED] +
  87. COMMON_CAPABILITIES)
  88. SEND_CAPABILITIES = [CAPABILITY_REPORT_STATUS] + COMMON_CAPABILITIES
  89. class ReportStatusParser(object):
  90. """Handle status as reported by servers with 'report-status' capability.
  91. """
  92. def __init__(self):
  93. self._done = False
  94. self._pack_status = None
  95. self._ref_status_ok = True
  96. self._ref_statuses = []
  97. def check(self):
  98. """Check if there were any errors and, if so, raise exceptions.
  99. :raise SendPackError: Raised when the server could not unpack
  100. :raise UpdateRefsError: Raised when refs could not be updated
  101. """
  102. if self._pack_status not in (b'unpack ok', None):
  103. raise SendPackError(self._pack_status)
  104. if not self._ref_status_ok:
  105. ref_status = {}
  106. ok = set()
  107. for status in self._ref_statuses:
  108. if b' ' not in status:
  109. # malformed response, move on to the next one
  110. continue
  111. status, ref = status.split(b' ', 1)
  112. if status == b'ng':
  113. if b' ' in ref:
  114. ref, status = ref.split(b' ', 1)
  115. else:
  116. ok.add(ref)
  117. ref_status[ref] = status
  118. # TODO(jelmer): don't assume encoding of refs is ascii.
  119. raise UpdateRefsError(', '.join([
  120. ref.decode('ascii') for ref in ref_status if ref not in ok]) +
  121. ' failed to update', ref_status=ref_status)
  122. def handle_packet(self, pkt):
  123. """Handle a packet.
  124. :raise GitProtocolError: Raised when packets are received after a
  125. flush packet.
  126. """
  127. if self._done:
  128. raise GitProtocolError("received more data after status report")
  129. if pkt is None:
  130. self._done = True
  131. return
  132. if self._pack_status is None:
  133. self._pack_status = pkt.strip()
  134. else:
  135. ref_status = pkt.strip()
  136. self._ref_statuses.append(ref_status)
  137. if not ref_status.startswith(b'ok '):
  138. self._ref_status_ok = False
  139. def read_pkt_refs(proto):
  140. server_capabilities = None
  141. refs = {}
  142. # Receive refs from server
  143. for pkt in proto.read_pkt_seq():
  144. (sha, ref) = pkt.rstrip(b'\n').split(None, 1)
  145. if sha == b'ERR':
  146. raise GitProtocolError(ref)
  147. if server_capabilities is None:
  148. (ref, server_capabilities) = extract_capabilities(ref)
  149. refs[ref] = sha
  150. if len(refs) == 0:
  151. return None, set([])
  152. return refs, set(server_capabilities)
  153. # TODO(durin42): this doesn't correctly degrade if the server doesn't
  154. # support some capabilities. This should work properly with servers
  155. # that don't support multi_ack.
  156. class GitClient(object):
  157. """Git smart server client.
  158. """
  159. def __init__(self, thin_packs=True, report_activity=None):
  160. """Create a new GitClient instance.
  161. :param thin_packs: Whether or not thin packs should be retrieved
  162. :param report_activity: Optional callback for reporting transport
  163. activity.
  164. """
  165. self._report_activity = report_activity
  166. self._report_status_parser = None
  167. self._fetch_capabilities = set(FETCH_CAPABILITIES)
  168. self._send_capabilities = set(SEND_CAPABILITIES)
  169. if not thin_packs:
  170. self._fetch_capabilities.remove(CAPABILITY_THIN_PACK)
  171. def send_pack(self, path, determine_wants, generate_pack_contents,
  172. progress=None, write_pack=write_pack_objects):
  173. """Upload a pack to a remote repository.
  174. :param path: Repository path
  175. :param generate_pack_contents: Function that can return a sequence of
  176. the shas of the objects to upload.
  177. :param progress: Optional progress function
  178. :param write_pack: Function called with (file, iterable of objects) to
  179. write the objects returned by generate_pack_contents to the server.
  180. :raises SendPackError: if server rejects the pack data
  181. :raises UpdateRefsError: if the server supports report-status
  182. and rejects ref updates
  183. """
  184. raise NotImplementedError(self.send_pack)
  185. def fetch(self, path, target, determine_wants=None, progress=None):
  186. """Fetch into a target repository.
  187. :param path: Path to fetch from
  188. :param target: Target repository to fetch into
  189. :param determine_wants: Optional function to determine what refs
  190. to fetch
  191. :param progress: Optional progress function
  192. :return: remote refs as dictionary
  193. """
  194. if determine_wants is None:
  195. determine_wants = target.object_store.determine_wants_all
  196. f, commit, abort = target.object_store.add_pack()
  197. try:
  198. result = self.fetch_pack(
  199. path, determine_wants, target.get_graph_walker(), f.write,
  200. progress)
  201. except:
  202. abort()
  203. raise
  204. else:
  205. commit()
  206. return result
  207. def fetch_pack(self, path, determine_wants, graph_walker, pack_data,
  208. progress=None):
  209. """Retrieve a pack from a git smart server.
  210. :param determine_wants: Callback that returns list of commits to fetch
  211. :param graph_walker: Object with next() and ack().
  212. :param pack_data: Callback called for each bit of data in the pack
  213. :param progress: Callback for progress reports (strings)
  214. """
  215. raise NotImplementedError(self.fetch_pack)
  216. def _parse_status_report(self, proto):
  217. unpack = proto.read_pkt_line().strip()
  218. if unpack != b'unpack ok':
  219. st = True
  220. # flush remaining error data
  221. while st is not None:
  222. st = proto.read_pkt_line()
  223. raise SendPackError(unpack)
  224. statuses = []
  225. errs = False
  226. ref_status = proto.read_pkt_line()
  227. while ref_status:
  228. ref_status = ref_status.strip()
  229. statuses.append(ref_status)
  230. if not ref_status.startswith(b'ok '):
  231. errs = True
  232. ref_status = proto.read_pkt_line()
  233. if errs:
  234. ref_status = {}
  235. ok = set()
  236. for status in statuses:
  237. if b' ' not in status:
  238. # malformed response, move on to the next one
  239. continue
  240. status, ref = status.split(b' ', 1)
  241. if status == b'ng':
  242. if b' ' in ref:
  243. ref, status = ref.split(b' ', 1)
  244. else:
  245. ok.add(ref)
  246. ref_status[ref] = status
  247. raise UpdateRefsError(', '.join([ref for ref in ref_status
  248. if ref not in ok]) +
  249. b' failed to update',
  250. ref_status=ref_status)
  251. def _read_side_band64k_data(self, proto, channel_callbacks):
  252. """Read per-channel data.
  253. This requires the side-band-64k capability.
  254. :param proto: Protocol object to read from
  255. :param channel_callbacks: Dictionary mapping channels to packet
  256. handlers to use. None for a callback discards channel data.
  257. """
  258. for pkt in proto.read_pkt_seq():
  259. channel = ord(pkt[:1])
  260. pkt = pkt[1:]
  261. try:
  262. cb = channel_callbacks[channel]
  263. except KeyError:
  264. raise AssertionError('Invalid sideband channel %d' % channel)
  265. else:
  266. if cb is not None:
  267. cb(pkt)
  268. def _handle_receive_pack_head(self, proto, capabilities, old_refs,
  269. new_refs):
  270. """Handle the head of a 'git-receive-pack' request.
  271. :param proto: Protocol object to read from
  272. :param capabilities: List of negotiated capabilities
  273. :param old_refs: Old refs, as received from the server
  274. :param new_refs: New refs
  275. :return: (have, want) tuple
  276. """
  277. want = []
  278. have = [x for x in old_refs.values() if not x == ZERO_SHA]
  279. sent_capabilities = False
  280. all_refs = set(new_refs.keys()).union(set(old_refs.keys()))
  281. for refname in all_refs:
  282. old_sha1 = old_refs.get(refname, ZERO_SHA)
  283. new_sha1 = new_refs.get(refname, ZERO_SHA)
  284. if old_sha1 != new_sha1:
  285. if sent_capabilities:
  286. proto.write_pkt_line(old_sha1 + b' ' + new_sha1 + b' ' + refname)
  287. else:
  288. proto.write_pkt_line(
  289. old_sha1 + b' ' + new_sha1 + b' ' + refname + b'\0' +
  290. b' '.join(capabilities))
  291. sent_capabilities = True
  292. if new_sha1 not in have and new_sha1 != ZERO_SHA:
  293. want.append(new_sha1)
  294. proto.write_pkt_line(None)
  295. return (have, want)
  296. def _handle_receive_pack_tail(self, proto, capabilities, progress=None):
  297. """Handle the tail of a 'git-receive-pack' request.
  298. :param proto: Protocol object to read from
  299. :param capabilities: List of negotiated capabilities
  300. :param progress: Optional progress reporting function
  301. """
  302. if b"side-band-64k" in capabilities:
  303. if progress is None:
  304. progress = lambda x: None
  305. channel_callbacks = {2: progress}
  306. if CAPABILITY_REPORT_STATUS in capabilities:
  307. channel_callbacks[1] = PktLineParser(
  308. self._report_status_parser.handle_packet).parse
  309. self._read_side_band64k_data(proto, channel_callbacks)
  310. else:
  311. if CAPABILITY_REPORT_STATUS in capabilities:
  312. for pkt in proto.read_pkt_seq():
  313. self._report_status_parser.handle_packet(pkt)
  314. if self._report_status_parser is not None:
  315. self._report_status_parser.check()
  316. def _handle_upload_pack_head(self, proto, capabilities, graph_walker,
  317. wants, can_read):
  318. """Handle the head of a 'git-upload-pack' request.
  319. :param proto: Protocol object to read from
  320. :param capabilities: List of negotiated capabilities
  321. :param graph_walker: GraphWalker instance to call .ack() on
  322. :param wants: List of commits to fetch
  323. :param can_read: function that returns a boolean that indicates
  324. whether there is extra graph data to read on proto
  325. """
  326. assert isinstance(wants, list) and isinstance(wants[0], bytes)
  327. proto.write_pkt_line(COMMAND_WANT + b' ' + wants[0] + b' ' + b' '.join(capabilities) + b'\n')
  328. for want in wants[1:]:
  329. proto.write_pkt_line(COMMAND_WANT + b' ' + want + b'\n')
  330. proto.write_pkt_line(None)
  331. have = next(graph_walker)
  332. while have:
  333. proto.write_pkt_line(COMMAND_HAVE + b' ' + have + b'\n')
  334. if can_read():
  335. pkt = proto.read_pkt_line()
  336. parts = pkt.rstrip(b'\n').split(b' ')
  337. if parts[0] == b'ACK':
  338. graph_walker.ack(parts[1])
  339. if parts[2] in (b'continue', b'common'):
  340. pass
  341. elif parts[2] == b'ready':
  342. break
  343. else:
  344. raise AssertionError(
  345. "%s not in ('continue', 'ready', 'common)" %
  346. parts[2])
  347. have = next(graph_walker)
  348. proto.write_pkt_line(COMMAND_DONE + b'\n')
  349. def _handle_upload_pack_tail(self, proto, capabilities, graph_walker,
  350. pack_data, progress=None, rbufsize=_RBUFSIZE):
  351. """Handle the tail of a 'git-upload-pack' request.
  352. :param proto: Protocol object to read from
  353. :param capabilities: List of negotiated capabilities
  354. :param graph_walker: GraphWalker instance to call .ack() on
  355. :param pack_data: Function to call with pack data
  356. :param progress: Optional progress reporting function
  357. :param rbufsize: Read buffer size
  358. """
  359. pkt = proto.read_pkt_line()
  360. while pkt:
  361. parts = pkt.rstrip(b'\n').split(b' ')
  362. if parts[0] == b'ACK':
  363. graph_walker.ack(parts[1])
  364. if len(parts) < 3 or parts[2] not in (
  365. b'ready', b'continue', b'common'):
  366. break
  367. pkt = proto.read_pkt_line()
  368. if CAPABILITY_SIDE_BAND_64K in capabilities:
  369. if progress is None:
  370. # Just ignore progress data
  371. progress = lambda x: None
  372. self._read_side_band64k_data(proto, {
  373. SIDE_BAND_CHANNEL_DATA: pack_data,
  374. SIDE_BAND_CHANNEL_PROGRESS: progress}
  375. )
  376. else:
  377. while True:
  378. data = proto.read(rbufsize)
  379. if data == b"":
  380. break
  381. pack_data(data)
  382. class TraditionalGitClient(GitClient):
  383. """Traditional Git client."""
  384. def _connect(self, cmd, path):
  385. """Create a connection to the server.
  386. This method is abstract - concrete implementations should
  387. implement their own variant which connects to the server and
  388. returns an initialized Protocol object with the service ready
  389. for use and a can_read function which may be used to see if
  390. reads would block.
  391. :param cmd: The git service name to which we should connect.
  392. :param path: The path we should pass to the service.
  393. """
  394. raise NotImplementedError()
  395. def send_pack(self, path, determine_wants, generate_pack_contents,
  396. progress=None, write_pack=write_pack_objects):
  397. """Upload a pack to a remote repository.
  398. :param path: Repository path
  399. :param generate_pack_contents: Function that can return a sequence of
  400. the shas of the objects to upload.
  401. :param progress: Optional callback called with progress updates
  402. :param write_pack: Function called with (file, iterable of objects) to
  403. write the objects returned by generate_pack_contents to the server.
  404. :raises SendPackError: if server rejects the pack data
  405. :raises UpdateRefsError: if the server supports report-status
  406. and rejects ref updates
  407. """
  408. proto, unused_can_read = self._connect(b'receive-pack', path)
  409. with proto:
  410. old_refs, server_capabilities = read_pkt_refs(proto)
  411. negotiated_capabilities = self._send_capabilities & server_capabilities
  412. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  413. self._report_status_parser = ReportStatusParser()
  414. report_status_parser = self._report_status_parser
  415. try:
  416. new_refs = orig_new_refs = determine_wants(dict(old_refs))
  417. except:
  418. proto.write_pkt_line(None)
  419. raise
  420. if not CAPABILITY_DELETE_REFS in server_capabilities:
  421. # Server does not support deletions. Fail later.
  422. new_refs = dict(orig_new_refs)
  423. for ref, sha in orig_new_refs.items():
  424. if sha == ZERO_SHA:
  425. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  426. report_status_parser._ref_statuses.append(
  427. b'ng ' + sha + b' remote does not support deleting refs')
  428. report_status_parser._ref_status_ok = False
  429. del new_refs[ref]
  430. if new_refs is None:
  431. proto.write_pkt_line(None)
  432. return old_refs
  433. if len(new_refs) == 0 and len(orig_new_refs):
  434. # NOOP - Original new refs filtered out by policy
  435. proto.write_pkt_line(None)
  436. if report_status_parser is not None:
  437. report_status_parser.check()
  438. return old_refs
  439. (have, want) = self._handle_receive_pack_head(
  440. proto, negotiated_capabilities, old_refs, new_refs)
  441. if not want and old_refs == new_refs:
  442. return new_refs
  443. objects = generate_pack_contents(have, want)
  444. dowrite = len(objects) > 0
  445. dowrite = dowrite or any(old_refs.get(ref) != sha
  446. for (ref, sha) in new_refs.items()
  447. if sha != ZERO_SHA)
  448. if dowrite:
  449. write_pack(proto.write_file(), objects)
  450. self._handle_receive_pack_tail(
  451. proto, negotiated_capabilities, progress)
  452. return new_refs
  453. def fetch_pack(self, path, determine_wants, graph_walker, pack_data,
  454. progress=None):
  455. """Retrieve a pack from a git smart server.
  456. :param determine_wants: Callback that returns list of commits to fetch
  457. :param graph_walker: Object with next() and ack().
  458. :param pack_data: Callback called for each bit of data in the pack
  459. :param progress: Callback for progress reports (strings)
  460. """
  461. proto, can_read = self._connect(b'upload-pack', path)
  462. with proto:
  463. refs, server_capabilities = read_pkt_refs(proto)
  464. negotiated_capabilities = (
  465. self._fetch_capabilities & server_capabilities)
  466. if refs is None:
  467. proto.write_pkt_line(None)
  468. return refs
  469. try:
  470. wants = determine_wants(refs)
  471. except:
  472. proto.write_pkt_line(None)
  473. raise
  474. if wants is not None:
  475. wants = [cid for cid in wants if cid != ZERO_SHA]
  476. if not wants:
  477. proto.write_pkt_line(None)
  478. return refs
  479. self._handle_upload_pack_head(
  480. proto, negotiated_capabilities, graph_walker, wants, can_read)
  481. self._handle_upload_pack_tail(
  482. proto, negotiated_capabilities, graph_walker, pack_data, progress)
  483. return refs
  484. def archive(self, path, committish, write_data, progress=None,
  485. write_error=None):
  486. proto, can_read = self._connect(b'upload-archive', path)
  487. with proto:
  488. proto.write_pkt_line(b"argument " + committish)
  489. proto.write_pkt_line(None)
  490. pkt = proto.read_pkt_line()
  491. if pkt == b"NACK\n":
  492. return
  493. elif pkt == b"ACK\n":
  494. pass
  495. elif pkt.startswith(b"ERR "):
  496. raise GitProtocolError(pkt[4:].rstrip(b"\n"))
  497. else:
  498. raise AssertionError("invalid response %r" % pkt)
  499. ret = proto.read_pkt_line()
  500. if ret is not None:
  501. raise AssertionError("expected pkt tail")
  502. self._read_side_band64k_data(proto, {
  503. SIDE_BAND_CHANNEL_DATA: write_data,
  504. SIDE_BAND_CHANNEL_PROGRESS: progress,
  505. SIDE_BAND_CHANNEL_FATAL: write_error})
  506. class TCPGitClient(TraditionalGitClient):
  507. """A Git Client that works over TCP directly (i.e. git://)."""
  508. def __init__(self, host, port=None, *args, **kwargs):
  509. if port is None:
  510. port = TCP_GIT_PORT
  511. self._host = host
  512. self._port = port
  513. TraditionalGitClient.__init__(self, *args, **kwargs)
  514. def _connect(self, cmd, path):
  515. sockaddrs = socket.getaddrinfo(
  516. self._host, self._port, socket.AF_UNSPEC, socket.SOCK_STREAM)
  517. s = None
  518. err = socket.error("no address found for %s" % self._host)
  519. for (family, socktype, proto, canonname, sockaddr) in sockaddrs:
  520. s = socket.socket(family, socktype, proto)
  521. s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
  522. try:
  523. s.connect(sockaddr)
  524. break
  525. except socket.error as err:
  526. if s is not None:
  527. s.close()
  528. s = None
  529. if s is None:
  530. raise err
  531. # -1 means system default buffering
  532. rfile = s.makefile('rb', -1)
  533. # 0 means unbuffered
  534. wfile = s.makefile('wb', 0)
  535. def close():
  536. rfile.close()
  537. wfile.close()
  538. s.close()
  539. proto = Protocol(rfile.read, wfile.write, close,
  540. report_activity=self._report_activity)
  541. if path.startswith(b"/~"):
  542. path = path[1:]
  543. proto.send_cmd(b'git-' + cmd, path, b'host=' + self._host)
  544. return proto, lambda: _fileno_can_read(s)
  545. class SubprocessWrapper(object):
  546. """A socket-like object that talks to a subprocess via pipes."""
  547. def __init__(self, proc):
  548. self.proc = proc
  549. if sys.version_info[0] == 2:
  550. self.read = proc.stdout.read
  551. else:
  552. self.read = BufferedReader(proc.stdout).read
  553. self.write = proc.stdin.write
  554. def can_read(self):
  555. if subprocess.mswindows:
  556. from msvcrt import get_osfhandle
  557. from win32pipe import PeekNamedPipe
  558. handle = get_osfhandle(self.proc.stdout.fileno())
  559. data, total_bytes_avail, msg_bytes_left = PeekNamedPipe(handle, 0)
  560. return total_bytes_avail != 0
  561. else:
  562. return _fileno_can_read(self.proc.stdout.fileno())
  563. def close(self):
  564. self.proc.stdin.close()
  565. self.proc.stdout.close()
  566. if self.proc.stderr:
  567. self.proc.stderr.close()
  568. self.proc.wait()
  569. def find_git_command():
  570. """Find command to run for system Git (usually C Git).
  571. """
  572. if sys.platform == 'win32': # support .exe, .bat and .cmd
  573. try: # to avoid overhead
  574. import win32api
  575. except ImportError: # run through cmd.exe with some overhead
  576. return ['cmd', '/c', 'git']
  577. else:
  578. status, git = win32api.FindExecutable('git')
  579. return [git]
  580. else:
  581. return ['git']
  582. class SubprocessGitClient(TraditionalGitClient):
  583. """Git client that talks to a server using a subprocess."""
  584. def __init__(self, *args, **kwargs):
  585. self._connection = None
  586. self._stderr = None
  587. self._stderr = kwargs.get('stderr')
  588. if 'stderr' in kwargs:
  589. del kwargs['stderr']
  590. TraditionalGitClient.__init__(self, *args, **kwargs)
  591. git_command = None
  592. def _connect(self, service, path):
  593. import subprocess
  594. if self.git_command is None:
  595. git_command = find_git_command()
  596. argv = git_command + [service, path]
  597. p = SubprocessWrapper(
  598. subprocess.Popen(argv, bufsize=0, stdin=subprocess.PIPE,
  599. stdout=subprocess.PIPE,
  600. stderr=self._stderr))
  601. return Protocol(p.read, p.write, p.close,
  602. report_activity=self._report_activity), p.can_read
  603. class LocalGitClient(GitClient):
  604. """Git Client that just uses a local Repo."""
  605. def __init__(self, thin_packs=True, report_activity=None):
  606. """Create a new LocalGitClient instance.
  607. :param path: Path to the local repository
  608. :param thin_packs: Whether or not thin packs should be retrieved
  609. :param report_activity: Optional callback for reporting transport
  610. activity.
  611. """
  612. self._report_activity = report_activity
  613. # Ignore the thin_packs argument
  614. def send_pack(self, path, determine_wants, generate_pack_contents,
  615. progress=None, write_pack=write_pack_objects):
  616. """Upload a pack to a remote repository.
  617. :param path: Repository path
  618. :param generate_pack_contents: Function that can return a sequence of
  619. the shas of the objects to upload.
  620. :param progress: Optional progress function
  621. :param write_pack: Function called with (file, iterable of objects) to
  622. write the objects returned by generate_pack_contents to the server.
  623. :raises SendPackError: if server rejects the pack data
  624. :raises UpdateRefsError: if the server supports report-status
  625. and rejects ref updates
  626. """
  627. from dulwich.repo import Repo
  628. with closing(Repo(path)) as target:
  629. old_refs = target.get_refs()
  630. new_refs = determine_wants(old_refs)
  631. have = [sha1 for sha1 in old_refs.values() if sha1 != ZERO_SHA]
  632. want = []
  633. all_refs = set(new_refs.keys()).union(set(old_refs.keys()))
  634. for refname in all_refs:
  635. old_sha1 = old_refs.get(refname, ZERO_SHA)
  636. new_sha1 = new_refs.get(refname, ZERO_SHA)
  637. if new_sha1 not in have and new_sha1 != ZERO_SHA:
  638. want.append(new_sha1)
  639. if not want and old_refs == new_refs:
  640. return new_refs
  641. target.object_store.add_objects(generate_pack_contents(have, want))
  642. for name, sha in new_refs.items():
  643. target.refs[name] = sha
  644. return new_refs
  645. def fetch(self, path, target, determine_wants=None, progress=None):
  646. """Fetch into a target repository.
  647. :param path: Path to fetch from
  648. :param target: Target repository to fetch into
  649. :param determine_wants: Optional function to determine what refs
  650. to fetch
  651. :param progress: Optional progress function
  652. :return: remote refs as dictionary
  653. """
  654. from dulwich.repo import Repo
  655. with closing(Repo(path)) as r:
  656. return r.fetch(target, determine_wants=determine_wants,
  657. progress=progress)
  658. def fetch_pack(self, path, determine_wants, graph_walker, pack_data,
  659. progress=None):
  660. """Retrieve a pack from a git smart server.
  661. :param determine_wants: Callback that returns list of commits to fetch
  662. :param graph_walker: Object with next() and ack().
  663. :param pack_data: Callback called for each bit of data in the pack
  664. :param progress: Callback for progress reports (strings)
  665. """
  666. from dulwich.repo import Repo
  667. with closing(Repo(path)) as r:
  668. objects_iter = r.fetch_objects(determine_wants, graph_walker, progress)
  669. # Did the process short-circuit (e.g. in a stateless RPC call)? Note
  670. # that the client still expects a 0-object pack in most cases.
  671. if objects_iter is None:
  672. return
  673. write_pack_objects(ProtocolFile(None, pack_data), objects_iter)
  674. # What Git client to use for local access
  675. default_local_git_client_cls = SubprocessGitClient
  676. class SSHVendor(object):
  677. """A client side SSH implementation."""
  678. def connect_ssh(self, host, command, username=None, port=None):
  679. import warnings
  680. warnings.warn(
  681. "SSHVendor.connect_ssh has been renamed to SSHVendor.run_command",
  682. DeprecationWarning)
  683. return self.run_command(host, command, username=username, port=port)
  684. def run_command(self, host, command, username=None, port=None):
  685. """Connect to an SSH server.
  686. Run a command remotely and return a file-like object for interaction
  687. with the remote command.
  688. :param host: Host name
  689. :param command: Command to run
  690. :param username: Optional ame of user to log in as
  691. :param port: Optional SSH port to use
  692. """
  693. raise NotImplementedError(self.run_command)
  694. class SubprocessSSHVendor(SSHVendor):
  695. """SSH vendor that shells out to the local 'ssh' command."""
  696. def run_command(self, host, command, username=None, port=None):
  697. import subprocess
  698. #FIXME: This has no way to deal with passwords..
  699. args = ['ssh', '-x']
  700. if port is not None:
  701. args.extend(['-p', str(port)])
  702. if username is not None:
  703. host = '%s@%s' % (username, host)
  704. args.append(host)
  705. proc = subprocess.Popen(args + command,
  706. stdin=subprocess.PIPE,
  707. stdout=subprocess.PIPE)
  708. return SubprocessWrapper(proc)
  709. try:
  710. import paramiko
  711. except ImportError:
  712. pass
  713. else:
  714. import threading
  715. class ParamikoWrapper(object):
  716. STDERR_READ_N = 2048 # 2k
  717. def __init__(self, client, channel, progress_stderr=None):
  718. self.client = client
  719. self.channel = channel
  720. self.progress_stderr = progress_stderr
  721. self.should_monitor = bool(progress_stderr) or True
  722. self.monitor_thread = None
  723. self.stderr = ''
  724. # Channel must block
  725. self.channel.setblocking(True)
  726. # Start
  727. if self.should_monitor:
  728. self.monitor_thread = threading.Thread(
  729. target=self.monitor_stderr)
  730. self.monitor_thread.start()
  731. def monitor_stderr(self):
  732. while self.should_monitor:
  733. # Block and read
  734. data = self.read_stderr(self.STDERR_READ_N)
  735. # Socket closed
  736. if not data:
  737. self.should_monitor = False
  738. break
  739. # Emit data
  740. if self.progress_stderr:
  741. self.progress_stderr(data)
  742. # Append to buffer
  743. self.stderr += data
  744. def stop_monitoring(self):
  745. # Stop StdErr thread
  746. if self.should_monitor:
  747. self.should_monitor = False
  748. self.monitor_thread.join()
  749. # Get left over data
  750. data = self.channel.in_stderr_buffer.empty()
  751. self.stderr += data
  752. def can_read(self):
  753. return self.channel.recv_ready()
  754. def write(self, data):
  755. return self.channel.sendall(data)
  756. def read_stderr(self, n):
  757. return self.channel.recv_stderr(n)
  758. def read(self, n=None):
  759. data = self.channel.recv(n)
  760. data_len = len(data)
  761. # Closed socket
  762. if not data:
  763. return
  764. # Read more if needed
  765. if n and data_len < n:
  766. diff_len = n - data_len
  767. return data + self.read(diff_len)
  768. return data
  769. def close(self):
  770. self.channel.close()
  771. self.stop_monitoring()
  772. class ParamikoSSHVendor(object):
  773. def __init__(self):
  774. self.ssh_kwargs = {}
  775. def run_command(self, host, command, username=None, port=None,
  776. progress_stderr=None):
  777. # Paramiko needs an explicit port. None is not valid
  778. if port is None:
  779. port = 22
  780. client = paramiko.SSHClient()
  781. policy = paramiko.client.MissingHostKeyPolicy()
  782. client.set_missing_host_key_policy(policy)
  783. client.connect(host, username=username, port=port,
  784. **self.ssh_kwargs)
  785. # Open SSH session
  786. channel = client.get_transport().open_session()
  787. # Run commands
  788. channel.exec_command(*command)
  789. return ParamikoWrapper(
  790. client, channel, progress_stderr=progress_stderr)
  791. # Can be overridden by users
  792. get_ssh_vendor = SubprocessSSHVendor
  793. class SSHGitClient(TraditionalGitClient):
  794. def __init__(self, host, port=None, username=None, *args, **kwargs):
  795. self.host = host
  796. self.port = port
  797. self.username = username
  798. TraditionalGitClient.__init__(self, *args, **kwargs)
  799. self.alternative_paths = {}
  800. def _get_cmd_path(self, cmd):
  801. return self.alternative_paths.get(cmd, b'git-' + cmd)
  802. def _connect(self, cmd, path):
  803. if path.startswith(b"/~"):
  804. path = path[1:]
  805. con = get_ssh_vendor().run_command(
  806. self.host, [self._get_cmd_path(cmd) + b" '" + path + b"'"],
  807. port=self.port, username=self.username)
  808. return (Protocol(con.read, con.write, con.close,
  809. report_activity=self._report_activity),
  810. con.can_read)
  811. def default_user_agent_string():
  812. return "dulwich/%s" % ".".join([str(x) for x in dulwich.__version__])
  813. def default_urllib2_opener(config):
  814. if config is not None:
  815. proxy_server = config.get("http", "proxy")
  816. else:
  817. proxy_server = None
  818. handlers = []
  819. if proxy_server is not None:
  820. handlers.append(urllib2.ProxyHandler({"http": proxy_server}))
  821. opener = urllib2.build_opener(*handlers)
  822. if config is not None:
  823. user_agent = config.get("http", "useragent")
  824. else:
  825. user_agent = None
  826. if user_agent is None:
  827. user_agent = default_user_agent_string()
  828. opener.addheaders = [('User-agent', user_agent)]
  829. return opener
  830. class HttpGitClient(GitClient):
  831. def __init__(self, base_url, dumb=None, opener=None, config=None, *args,
  832. **kwargs):
  833. self.base_url = base_url.rstrip("/") + "/"
  834. self.dumb = dumb
  835. if opener is None:
  836. self.opener = default_urllib2_opener(config)
  837. else:
  838. self.opener = opener
  839. GitClient.__init__(self, *args, **kwargs)
  840. def __repr__(self):
  841. return "%s(%r, dumb=%r)" % (type(self).__name__, self.base_url, self.dumb)
  842. def _get_url(self, path):
  843. return urlparse.urljoin(self.base_url, path).rstrip("/") + "/"
  844. def _http_request(self, url, headers={}, data=None):
  845. req = urllib2.Request(url, headers=headers, data=data)
  846. try:
  847. resp = self.opener.open(req)
  848. except urllib2.HTTPError as e:
  849. if e.code == 404:
  850. raise NotGitRepository()
  851. if e.code != 200:
  852. raise GitProtocolError("unexpected http response %d" % e.code)
  853. return resp
  854. def _discover_references(self, service, url):
  855. assert url[-1] == "/"
  856. url = urlparse.urljoin(url, "info/refs")
  857. headers = {}
  858. if self.dumb is not False:
  859. url += "?service=%s" % service
  860. headers["Content-Type"] = "application/x-%s-request" % service
  861. resp = self._http_request(url, headers)
  862. try:
  863. self.dumb = (not resp.info().gettype().startswith("application/x-git-"))
  864. if not self.dumb:
  865. proto = Protocol(resp.read, None)
  866. # The first line should mention the service
  867. pkts = list(proto.read_pkt_seq())
  868. if pkts != [('# service=%s\n' % service)]:
  869. raise GitProtocolError(
  870. "unexpected first line %r from smart server" % pkts)
  871. return read_pkt_refs(proto)
  872. else:
  873. return read_info_refs(resp), set()
  874. finally:
  875. resp.close()
  876. def _smart_request(self, service, url, data):
  877. assert url[-1] == "/"
  878. url = urlparse.urljoin(url, service)
  879. headers = {"Content-Type": "application/x-%s-request" % service}
  880. resp = self._http_request(url, headers, data)
  881. if resp.info().gettype() != ("application/x-%s-result" % service):
  882. raise GitProtocolError("Invalid content-type from server: %s"
  883. % resp.info().gettype())
  884. return resp
  885. def send_pack(self, path, determine_wants, generate_pack_contents,
  886. progress=None, write_pack=write_pack_objects):
  887. """Upload a pack to a remote repository.
  888. :param path: Repository path
  889. :param generate_pack_contents: Function that can return a sequence of
  890. the shas of the objects to upload.
  891. :param progress: Optional progress function
  892. :param write_pack: Function called with (file, iterable of objects) to
  893. write the objects returned by generate_pack_contents to the server.
  894. :raises SendPackError: if server rejects the pack data
  895. :raises UpdateRefsError: if the server supports report-status
  896. and rejects ref updates
  897. """
  898. url = self._get_url(path)
  899. old_refs, server_capabilities = self._discover_references(
  900. b"git-receive-pack", url)
  901. negotiated_capabilities = self._send_capabilities & server_capabilities
  902. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  903. self._report_status_parser = ReportStatusParser()
  904. new_refs = determine_wants(dict(old_refs))
  905. if new_refs is None:
  906. return old_refs
  907. if self.dumb:
  908. raise NotImplementedError(self.fetch_pack)
  909. req_data = BytesIO()
  910. req_proto = Protocol(None, req_data.write)
  911. (have, want) = self._handle_receive_pack_head(
  912. req_proto, negotiated_capabilities, old_refs, new_refs)
  913. if not want and old_refs == new_refs:
  914. return new_refs
  915. objects = generate_pack_contents(have, want)
  916. if len(objects) > 0:
  917. write_pack(req_proto.write_file(), objects)
  918. resp = self._smart_request(b"git-receive-pack", url,
  919. data=req_data.getvalue())
  920. try:
  921. resp_proto = Protocol(resp.read, None)
  922. self._handle_receive_pack_tail(resp_proto, negotiated_capabilities,
  923. progress)
  924. return new_refs
  925. finally:
  926. resp.close()
  927. def fetch_pack(self, path, determine_wants, graph_walker, pack_data,
  928. progress=None):
  929. """Retrieve a pack from a git smart server.
  930. :param determine_wants: Callback that returns list of commits to fetch
  931. :param graph_walker: Object with next() and ack().
  932. :param pack_data: Callback called for each bit of data in the pack
  933. :param progress: Callback for progress reports (strings)
  934. :return: Dictionary with the refs of the remote repository
  935. """
  936. url = self._get_url(path)
  937. refs, server_capabilities = self._discover_references(
  938. b"git-upload-pack", url)
  939. negotiated_capabilities = self._fetch_capabilities & server_capabilities
  940. wants = determine_wants(refs)
  941. if wants is not None:
  942. wants = [cid for cid in wants if cid != ZERO_SHA]
  943. if not wants:
  944. return refs
  945. if self.dumb:
  946. raise NotImplementedError(self.send_pack)
  947. req_data = BytesIO()
  948. req_proto = Protocol(None, req_data.write)
  949. self._handle_upload_pack_head(
  950. req_proto, negotiated_capabilities, graph_walker, wants,
  951. lambda: False)
  952. resp = self._smart_request(
  953. b"git-upload-pack", url, data=req_data.getvalue())
  954. try:
  955. resp_proto = Protocol(resp.read, None)
  956. self._handle_upload_pack_tail(resp_proto, negotiated_capabilities,
  957. graph_walker, pack_data, progress)
  958. return refs
  959. finally:
  960. resp.close()
  961. def get_transport_and_path_from_url(url, config=None, **kwargs):
  962. """Obtain a git client from a URL.
  963. :param url: URL to open
  964. :param config: Optional config object
  965. :param thin_packs: Whether or not thin packs should be retrieved
  966. :param report_activity: Optional callback for reporting transport
  967. activity.
  968. :return: Tuple with client instance and relative path.
  969. """
  970. parsed = urlparse.urlparse(url)
  971. if parsed.scheme == 'git':
  972. return (TCPGitClient(parsed.hostname, port=parsed.port, **kwargs),
  973. parsed.path)
  974. elif parsed.scheme == 'git+ssh':
  975. path = parsed.path
  976. if path.startswith('/'):
  977. path = parsed.path[1:]
  978. return SSHGitClient(parsed.hostname, port=parsed.port,
  979. username=parsed.username, **kwargs), path
  980. elif parsed.scheme in ('http', 'https'):
  981. return HttpGitClient(urlparse.urlunparse(parsed), config=config,
  982. **kwargs), parsed.path
  983. elif parsed.scheme == 'file':
  984. return default_local_git_client_cls(**kwargs), parsed.path
  985. raise ValueError("unknown scheme '%s'" % parsed.scheme)
  986. def get_transport_and_path(location, **kwargs):
  987. """Obtain a git client from a URL.
  988. :param location: URL or path
  989. :param config: Optional config object
  990. :param thin_packs: Whether or not thin packs should be retrieved
  991. :param report_activity: Optional callback for reporting transport
  992. activity.
  993. :return: Tuple with client instance and relative path.
  994. """
  995. # First, try to parse it as a URL
  996. try:
  997. return get_transport_and_path_from_url(location, **kwargs)
  998. except ValueError:
  999. pass
  1000. if (sys.platform == 'win32' and
  1001. location[0].isalpha() and location[1:3] == ':\\'):
  1002. # Windows local path
  1003. return default_local_git_client_cls(**kwargs), location
  1004. if ':' in location and not '@' in location:
  1005. # SSH with no user@, zero or one leading slash.
  1006. (hostname, path) = location.split(':')
  1007. return SSHGitClient(hostname, **kwargs), path
  1008. elif '@' in location and ':' in location:
  1009. # SSH with user@host:foo.
  1010. user_host, path = location.split(':')
  1011. user, host = user_host.rsplit('@')
  1012. return SSHGitClient(host, username=user, **kwargs), path
  1013. # Otherwise, assume it's a local path.
  1014. return default_local_git_client_cls(**kwargs), location