client.py 39 KB

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