client.py 77 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460
  1. # client.py -- Implementation of the client side git protocols
  2. # Copyright (C) 2008-2013 Jelmer Vernooij <jelmer@jelmer.uk>
  3. #
  4. # Dulwich is dual-licensed under the Apache License, Version 2.0 and the GNU
  5. # General Public License as public by the Free Software Foundation; version 2.0
  6. # or (at your option) any later version. You can redistribute it and/or
  7. # modify it under the terms of either of these two licenses.
  8. #
  9. # Unless required by applicable law or agreed to in writing, software
  10. # distributed under the License is distributed on an "AS IS" BASIS,
  11. # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. # See the License for the specific language governing permissions and
  13. # limitations under the License.
  14. #
  15. # You should have received a copy of the licenses; if not, see
  16. # <http://www.gnu.org/licenses/> for a copy of the GNU General Public License
  17. # and <http://www.apache.org/licenses/LICENSE-2.0> for a copy of the Apache
  18. # License, Version 2.0.
  19. #
  20. """Client side support for the Git protocol.
  21. The Dulwich client supports the following capabilities:
  22. * thin-pack
  23. * multi_ack_detailed
  24. * multi_ack
  25. * side-band-64k
  26. * ofs-delta
  27. * quiet
  28. * report-status
  29. * delete-refs
  30. * shallow
  31. Known capabilities that are not supported:
  32. * no-progress
  33. * include-tag
  34. """
  35. from contextlib import closing
  36. from io import BytesIO, BufferedReader
  37. import logging
  38. import os
  39. import select
  40. import socket
  41. import subprocess
  42. import sys
  43. from typing import (
  44. Any,
  45. Callable,
  46. Dict,
  47. List,
  48. Iterable,
  49. Iterator,
  50. Optional,
  51. Set,
  52. Tuple,
  53. IO,
  54. Union,
  55. TYPE_CHECKING,
  56. )
  57. from urllib.parse import (
  58. quote as urlquote,
  59. unquote as urlunquote,
  60. urlparse,
  61. urljoin,
  62. urlunsplit,
  63. urlunparse,
  64. )
  65. if TYPE_CHECKING:
  66. import urllib3
  67. import dulwich
  68. from dulwich.config import get_xdg_config_home_path, Config, apply_instead_of
  69. from dulwich.errors import (
  70. GitProtocolError,
  71. NotGitRepository,
  72. SendPackError,
  73. )
  74. from dulwich.protocol import (
  75. HangupException,
  76. _RBUFSIZE,
  77. agent_string,
  78. capability_agent,
  79. extract_capability_names,
  80. CAPABILITY_AGENT,
  81. CAPABILITY_DELETE_REFS,
  82. CAPABILITY_INCLUDE_TAG,
  83. CAPABILITY_MULTI_ACK,
  84. CAPABILITY_MULTI_ACK_DETAILED,
  85. CAPABILITY_OFS_DELTA,
  86. CAPABILITY_QUIET,
  87. CAPABILITY_REPORT_STATUS,
  88. CAPABILITY_SHALLOW,
  89. CAPABILITY_SYMREF,
  90. CAPABILITY_SIDE_BAND_64K,
  91. CAPABILITY_THIN_PACK,
  92. CAPABILITIES_REF,
  93. KNOWN_RECEIVE_CAPABILITIES,
  94. KNOWN_UPLOAD_CAPABILITIES,
  95. COMMAND_DEEPEN,
  96. COMMAND_SHALLOW,
  97. COMMAND_UNSHALLOW,
  98. COMMAND_DONE,
  99. COMMAND_HAVE,
  100. COMMAND_WANT,
  101. SIDE_BAND_CHANNEL_DATA,
  102. SIDE_BAND_CHANNEL_PROGRESS,
  103. SIDE_BAND_CHANNEL_FATAL,
  104. PktLineParser,
  105. Protocol,
  106. TCP_GIT_PORT,
  107. ZERO_SHA,
  108. extract_capabilities,
  109. parse_capability,
  110. pkt_line,
  111. )
  112. from dulwich.pack import (
  113. write_pack_from_container,
  114. UnpackedObject,
  115. PackChunkGenerator,
  116. )
  117. from dulwich.refs import (
  118. read_info_refs,
  119. ANNOTATED_TAG_SUFFIX,
  120. _import_remote_refs,
  121. )
  122. from dulwich.repo import Repo
  123. # url2pathname is lazily imported
  124. url2pathname = None
  125. logger = logging.getLogger(__name__)
  126. class InvalidWants(Exception):
  127. """Invalid wants."""
  128. def __init__(self, wants):
  129. Exception.__init__(
  130. self, "requested wants not in server provided refs: %r" % wants
  131. )
  132. class HTTPUnauthorized(Exception):
  133. """Raised when authentication fails."""
  134. def __init__(self, www_authenticate, url):
  135. Exception.__init__(self, "No valid credentials provided")
  136. self.www_authenticate = www_authenticate
  137. self.url = url
  138. class HTTPProxyUnauthorized(Exception):
  139. """Raised when proxy authentication fails."""
  140. def __init__(self, proxy_authenticate, url):
  141. Exception.__init__(self, "No valid proxy credentials provided")
  142. self.proxy_authenticate = proxy_authenticate
  143. self.url = url
  144. def _fileno_can_read(fileno):
  145. """Check if a file descriptor is readable."""
  146. return len(select.select([fileno], [], [], 0)[0]) > 0
  147. def _win32_peek_avail(handle):
  148. """Wrapper around PeekNamedPipe to check how many bytes are available."""
  149. from ctypes import byref, wintypes, windll
  150. c_avail = wintypes.DWORD()
  151. c_message = wintypes.DWORD()
  152. success = windll.kernel32.PeekNamedPipe(
  153. handle, None, 0, None, byref(c_avail), byref(c_message)
  154. )
  155. if not success:
  156. raise OSError(wintypes.GetLastError())
  157. return c_avail.value
  158. COMMON_CAPABILITIES = [CAPABILITY_OFS_DELTA, CAPABILITY_SIDE_BAND_64K]
  159. UPLOAD_CAPABILITIES = [
  160. CAPABILITY_THIN_PACK,
  161. CAPABILITY_MULTI_ACK,
  162. CAPABILITY_MULTI_ACK_DETAILED,
  163. CAPABILITY_SHALLOW,
  164. ] + COMMON_CAPABILITIES
  165. RECEIVE_CAPABILITIES = [
  166. CAPABILITY_REPORT_STATUS,
  167. CAPABILITY_DELETE_REFS,
  168. ] + COMMON_CAPABILITIES
  169. class ReportStatusParser:
  170. """Handle status as reported by servers with 'report-status' capability."""
  171. def __init__(self):
  172. self._done = False
  173. self._pack_status = None
  174. self._ref_statuses = []
  175. def check(self):
  176. """Check if there were any errors and, if so, raise exceptions.
  177. Raises:
  178. SendPackError: Raised when the server could not unpack
  179. Returns:
  180. iterator over refs
  181. """
  182. if self._pack_status not in (b"unpack ok", None):
  183. raise SendPackError(self._pack_status)
  184. for status in self._ref_statuses:
  185. try:
  186. status, rest = status.split(b" ", 1)
  187. except ValueError:
  188. # malformed response, move on to the next one
  189. continue
  190. if status == b"ng":
  191. ref, error = rest.split(b" ", 1)
  192. yield ref, error.decode("utf-8")
  193. elif status == b"ok":
  194. yield rest, None
  195. else:
  196. raise GitProtocolError("invalid ref status %r" % status)
  197. def handle_packet(self, pkt):
  198. """Handle a packet.
  199. Raises:
  200. GitProtocolError: Raised when packets are received after a flush
  201. packet.
  202. """
  203. if self._done:
  204. raise GitProtocolError("received more data after status report")
  205. if pkt is None:
  206. self._done = True
  207. return
  208. if self._pack_status is None:
  209. self._pack_status = pkt.strip()
  210. else:
  211. ref_status = pkt.strip()
  212. self._ref_statuses.append(ref_status)
  213. def read_pkt_refs(pkt_seq):
  214. server_capabilities = None
  215. refs = {}
  216. # Receive refs from server
  217. for pkt in pkt_seq:
  218. (sha, ref) = pkt.rstrip(b"\n").split(None, 1)
  219. if sha == b"ERR":
  220. raise GitProtocolError(ref.decode("utf-8", "replace"))
  221. if server_capabilities is None:
  222. (ref, server_capabilities) = extract_capabilities(ref)
  223. refs[ref] = sha
  224. if len(refs) == 0:
  225. return {}, set()
  226. if refs == {CAPABILITIES_REF: ZERO_SHA}:
  227. refs = {}
  228. return refs, set(server_capabilities)
  229. class FetchPackResult:
  230. """Result of a fetch-pack operation.
  231. Attributes:
  232. refs: Dictionary with all remote refs
  233. symrefs: Dictionary with remote symrefs
  234. agent: User agent string
  235. """
  236. _FORWARDED_ATTRS = [
  237. "clear",
  238. "copy",
  239. "fromkeys",
  240. "get",
  241. "items",
  242. "keys",
  243. "pop",
  244. "popitem",
  245. "setdefault",
  246. "update",
  247. "values",
  248. "viewitems",
  249. "viewkeys",
  250. "viewvalues",
  251. ]
  252. def __init__(self, refs, symrefs, agent, new_shallow=None, new_unshallow=None):
  253. self.refs = refs
  254. self.symrefs = symrefs
  255. self.agent = agent
  256. self.new_shallow = new_shallow
  257. self.new_unshallow = new_unshallow
  258. def _warn_deprecated(self):
  259. import warnings
  260. warnings.warn(
  261. "Use FetchPackResult.refs instead.",
  262. DeprecationWarning,
  263. stacklevel=3,
  264. )
  265. def __eq__(self, other):
  266. if isinstance(other, dict):
  267. self._warn_deprecated()
  268. return self.refs == other
  269. return (
  270. self.refs == other.refs
  271. and self.symrefs == other.symrefs
  272. and self.agent == other.agent
  273. )
  274. def __contains__(self, name):
  275. self._warn_deprecated()
  276. return name in self.refs
  277. def __getitem__(self, name):
  278. self._warn_deprecated()
  279. return self.refs[name]
  280. def __len__(self):
  281. self._warn_deprecated()
  282. return len(self.refs)
  283. def __iter__(self):
  284. self._warn_deprecated()
  285. return iter(self.refs)
  286. def __getattribute__(self, name):
  287. if name in type(self)._FORWARDED_ATTRS:
  288. self._warn_deprecated()
  289. return getattr(self.refs, name)
  290. return super().__getattribute__(name)
  291. def __repr__(self):
  292. return "{}({!r}, {!r}, {!r})".format(
  293. self.__class__.__name__,
  294. self.refs,
  295. self.symrefs,
  296. self.agent,
  297. )
  298. class SendPackResult:
  299. """Result of a upload-pack operation.
  300. Attributes:
  301. refs: Dictionary with all remote refs
  302. agent: User agent string
  303. ref_status: Optional dictionary mapping ref name to error message (if it
  304. failed to update), or None if it was updated successfully
  305. """
  306. _FORWARDED_ATTRS = [
  307. "clear",
  308. "copy",
  309. "fromkeys",
  310. "get",
  311. "items",
  312. "keys",
  313. "pop",
  314. "popitem",
  315. "setdefault",
  316. "update",
  317. "values",
  318. "viewitems",
  319. "viewkeys",
  320. "viewvalues",
  321. ]
  322. def __init__(self, refs, agent=None, ref_status=None):
  323. self.refs = refs
  324. self.agent = agent
  325. self.ref_status = ref_status
  326. def _warn_deprecated(self):
  327. import warnings
  328. warnings.warn(
  329. "Use SendPackResult.refs instead.",
  330. DeprecationWarning,
  331. stacklevel=3,
  332. )
  333. def __eq__(self, other):
  334. if isinstance(other, dict):
  335. self._warn_deprecated()
  336. return self.refs == other
  337. return self.refs == other.refs and self.agent == other.agent
  338. def __contains__(self, name):
  339. self._warn_deprecated()
  340. return name in self.refs
  341. def __getitem__(self, name):
  342. self._warn_deprecated()
  343. return self.refs[name]
  344. def __len__(self):
  345. self._warn_deprecated()
  346. return len(self.refs)
  347. def __iter__(self):
  348. self._warn_deprecated()
  349. return iter(self.refs)
  350. def __getattribute__(self, name):
  351. if name in type(self)._FORWARDED_ATTRS:
  352. self._warn_deprecated()
  353. return getattr(self.refs, name)
  354. return super().__getattribute__(name)
  355. def __repr__(self):
  356. return "{}({!r}, {!r})".format(self.__class__.__name__, self.refs, self.agent)
  357. def _read_shallow_updates(pkt_seq):
  358. new_shallow = set()
  359. new_unshallow = set()
  360. for pkt in pkt_seq:
  361. cmd, sha = pkt.split(b" ", 1)
  362. if cmd == COMMAND_SHALLOW:
  363. new_shallow.add(sha.strip())
  364. elif cmd == COMMAND_UNSHALLOW:
  365. new_unshallow.add(sha.strip())
  366. else:
  367. raise GitProtocolError("unknown command %s" % pkt)
  368. return (new_shallow, new_unshallow)
  369. class _v1ReceivePackHeader:
  370. def __init__(self, capabilities, old_refs, new_refs):
  371. self.want = []
  372. self.have = []
  373. self._it = self._handle_receive_pack_head(capabilities, old_refs, new_refs)
  374. self.sent_capabilities = False
  375. def __iter__(self):
  376. return self._it
  377. def _handle_receive_pack_head(self, capabilities, old_refs, new_refs):
  378. """Handle the head of a 'git-receive-pack' request.
  379. Args:
  380. capabilities: List of negotiated capabilities
  381. old_refs: Old refs, as received from the server
  382. new_refs: Refs to change
  383. Returns:
  384. (have, want) tuple
  385. """
  386. self.have = [x for x in old_refs.values() if not x == ZERO_SHA]
  387. for refname in new_refs:
  388. if not isinstance(refname, bytes):
  389. raise TypeError("refname is not a bytestring: %r" % refname)
  390. old_sha1 = old_refs.get(refname, ZERO_SHA)
  391. if not isinstance(old_sha1, bytes):
  392. raise TypeError(
  393. "old sha1 for {!r} is not a bytestring: {!r}".format(refname, old_sha1)
  394. )
  395. new_sha1 = new_refs.get(refname, ZERO_SHA)
  396. if not isinstance(new_sha1, bytes):
  397. raise TypeError(
  398. "old sha1 for {!r} is not a bytestring {!r}".format(refname, new_sha1)
  399. )
  400. if old_sha1 != new_sha1:
  401. logger.debug(
  402. 'Sending updated ref %r: %r -> %r',
  403. refname, old_sha1, new_sha1)
  404. if self.sent_capabilities:
  405. yield old_sha1 + b" " + new_sha1 + b" " + refname
  406. else:
  407. yield (
  408. old_sha1
  409. + b" "
  410. + new_sha1
  411. + b" "
  412. + refname
  413. + b"\0"
  414. + b" ".join(sorted(capabilities))
  415. )
  416. self.sent_capabilities = True
  417. if new_sha1 not in self.have and new_sha1 != ZERO_SHA:
  418. self.want.append(new_sha1)
  419. yield None
  420. def _read_side_band64k_data(pkt_seq: Iterable[bytes], channel_callbacks: Dict[int, Callable[[bytes], None]]) -> None:
  421. """Read per-channel data.
  422. This requires the side-band-64k capability.
  423. Args:
  424. pkt_seq: Sequence of packets to read
  425. channel_callbacks: Dictionary mapping channels to packet
  426. handlers to use. None for a callback discards channel data.
  427. """
  428. for pkt in pkt_seq:
  429. channel = ord(pkt[:1])
  430. pkt = pkt[1:]
  431. try:
  432. cb = channel_callbacks[channel]
  433. except KeyError as exc:
  434. raise AssertionError(
  435. "Invalid sideband channel %d" % channel) from exc
  436. else:
  437. if cb is not None:
  438. cb(pkt)
  439. def _handle_upload_pack_head(
  440. proto, capabilities, graph_walker, wants, can_read, depth
  441. ):
  442. """Handle the head of a 'git-upload-pack' request.
  443. Args:
  444. proto: Protocol object to read from
  445. capabilities: List of negotiated capabilities
  446. graph_walker: GraphWalker instance to call .ack() on
  447. wants: List of commits to fetch
  448. can_read: function that returns a boolean that indicates
  449. whether there is extra graph data to read on proto
  450. depth: Depth for request
  451. Returns:
  452. """
  453. assert isinstance(wants, list) and isinstance(wants[0], bytes)
  454. proto.write_pkt_line(
  455. COMMAND_WANT
  456. + b" "
  457. + wants[0]
  458. + b" "
  459. + b" ".join(sorted(capabilities))
  460. + b"\n"
  461. )
  462. for want in wants[1:]:
  463. proto.write_pkt_line(COMMAND_WANT + b" " + want + b"\n")
  464. if depth not in (0, None) or getattr(graph_walker, "shallow", None):
  465. if CAPABILITY_SHALLOW not in capabilities:
  466. raise GitProtocolError(
  467. "server does not support shallow capability required for " "depth"
  468. )
  469. for sha in graph_walker.shallow:
  470. proto.write_pkt_line(COMMAND_SHALLOW + b" " + sha + b"\n")
  471. if depth is not None:
  472. proto.write_pkt_line(
  473. COMMAND_DEEPEN + b" " + str(depth).encode("ascii") + b"\n"
  474. )
  475. proto.write_pkt_line(None)
  476. if can_read is not None:
  477. (new_shallow, new_unshallow) = _read_shallow_updates(proto.read_pkt_seq())
  478. else:
  479. new_shallow = new_unshallow = None
  480. else:
  481. new_shallow = new_unshallow = set()
  482. proto.write_pkt_line(None)
  483. have = next(graph_walker)
  484. while have:
  485. proto.write_pkt_line(COMMAND_HAVE + b" " + have + b"\n")
  486. if can_read is not None and can_read():
  487. pkt = proto.read_pkt_line()
  488. parts = pkt.rstrip(b"\n").split(b" ")
  489. if parts[0] == b"ACK":
  490. graph_walker.ack(parts[1])
  491. if parts[2] in (b"continue", b"common"):
  492. pass
  493. elif parts[2] == b"ready":
  494. break
  495. else:
  496. raise AssertionError(
  497. "%s not in ('continue', 'ready', 'common)" % parts[2]
  498. )
  499. have = next(graph_walker)
  500. proto.write_pkt_line(COMMAND_DONE + b"\n")
  501. return (new_shallow, new_unshallow)
  502. def _handle_upload_pack_tail(
  503. proto,
  504. capabilities: Set[bytes],
  505. graph_walker,
  506. pack_data: Callable[[bytes], None],
  507. progress=None,
  508. rbufsize=_RBUFSIZE,
  509. ):
  510. """Handle the tail of a 'git-upload-pack' request.
  511. Args:
  512. proto: Protocol object to read from
  513. capabilities: List of negotiated capabilities
  514. graph_walker: GraphWalker instance to call .ack() on
  515. pack_data: Function to call with pack data
  516. progress: Optional progress reporting function
  517. rbufsize: Read buffer size
  518. Returns:
  519. """
  520. pkt = proto.read_pkt_line()
  521. while pkt:
  522. parts = pkt.rstrip(b"\n").split(b" ")
  523. if parts[0] == b"ACK":
  524. graph_walker.ack(parts[1])
  525. if parts[0] == b"NAK":
  526. graph_walker.nak()
  527. if len(parts) < 3 or parts[2] not in (
  528. b"ready",
  529. b"continue",
  530. b"common",
  531. ):
  532. break
  533. pkt = proto.read_pkt_line()
  534. if CAPABILITY_SIDE_BAND_64K in capabilities:
  535. if progress is None:
  536. # Just ignore progress data
  537. def progress(x):
  538. pass
  539. _read_side_band64k_data(
  540. proto.read_pkt_seq(),
  541. {
  542. SIDE_BAND_CHANNEL_DATA: pack_data,
  543. SIDE_BAND_CHANNEL_PROGRESS: progress,
  544. },
  545. )
  546. else:
  547. while True:
  548. data = proto.read(rbufsize)
  549. if data == b"":
  550. break
  551. pack_data(data)
  552. # TODO(durin42): this doesn't correctly degrade if the server doesn't
  553. # support some capabilities. This should work properly with servers
  554. # that don't support multi_ack.
  555. class GitClient:
  556. """Git smart server client."""
  557. def __init__(
  558. self,
  559. thin_packs=True,
  560. report_activity=None,
  561. quiet=False,
  562. include_tags=False,
  563. ):
  564. """Create a new GitClient instance.
  565. Args:
  566. thin_packs: Whether or not thin packs should be retrieved
  567. report_activity: Optional callback for reporting transport
  568. activity.
  569. include_tags: send annotated tags when sending the objects they point
  570. to
  571. """
  572. self._report_activity = report_activity
  573. self._report_status_parser = None
  574. self._fetch_capabilities = set(UPLOAD_CAPABILITIES)
  575. self._fetch_capabilities.add(capability_agent())
  576. self._send_capabilities = set(RECEIVE_CAPABILITIES)
  577. self._send_capabilities.add(capability_agent())
  578. if quiet:
  579. self._send_capabilities.add(CAPABILITY_QUIET)
  580. if not thin_packs:
  581. self._fetch_capabilities.remove(CAPABILITY_THIN_PACK)
  582. if include_tags:
  583. self._fetch_capabilities.add(CAPABILITY_INCLUDE_TAG)
  584. def get_url(self, path):
  585. """Retrieves full url to given path.
  586. Args:
  587. path: Repository path (as string)
  588. Returns:
  589. Url to path (as string)
  590. """
  591. raise NotImplementedError(self.get_url)
  592. @classmethod
  593. def from_parsedurl(cls, parsedurl, **kwargs):
  594. """Create an instance of this client from a urlparse.parsed object.
  595. Args:
  596. parsedurl: Result of urlparse()
  597. Returns:
  598. A `GitClient` object
  599. """
  600. raise NotImplementedError(cls.from_parsedurl)
  601. def send_pack(self, path, update_refs, generate_pack_data: Callable[[Set[bytes], Set[bytes], bool], Tuple[int, Iterator[UnpackedObject]]], progress=None):
  602. """Upload a pack to a remote repository.
  603. Args:
  604. path: Repository path (as bytestring)
  605. update_refs: Function to determine changes to remote refs. Receive
  606. dict with existing remote refs, returns dict with
  607. changed refs (name -> sha, where sha=ZERO_SHA for deletions)
  608. generate_pack_data: Function that can return a tuple
  609. with number of objects and list of pack data to include
  610. progress: Optional progress function
  611. Returns:
  612. SendPackResult object
  613. Raises:
  614. SendPackError: if server rejects the pack data
  615. """
  616. raise NotImplementedError(self.send_pack)
  617. def clone(self, path, target_path, mkdir: bool = True, bare=False, origin="origin",
  618. checkout=None, branch=None, progress=None, depth=None):
  619. """Clone a repository."""
  620. from .refs import _set_origin_head, _set_default_branch, _set_head
  621. if mkdir:
  622. os.mkdir(target_path)
  623. try:
  624. target = None
  625. if not bare:
  626. target = Repo.init(target_path)
  627. if checkout is None:
  628. checkout = True
  629. else:
  630. if checkout:
  631. raise ValueError("checkout and bare are incompatible")
  632. target = Repo.init_bare(target_path)
  633. # TODO(jelmer): abstract method for get_location?
  634. if isinstance(self, (LocalGitClient, SubprocessGitClient)):
  635. encoded_path = path.encode('utf-8')
  636. else:
  637. encoded_path = self.get_url(path).encode('utf-8')
  638. assert target is not None
  639. target_config = target.get_config()
  640. target_config.set((b"remote", origin.encode('utf-8')), b"url", encoded_path)
  641. target_config.set(
  642. (b"remote", origin.encode('utf-8')),
  643. b"fetch",
  644. b"+refs/heads/*:refs/remotes/" + origin.encode('utf-8') + b"/*",
  645. )
  646. target_config.write_to_path()
  647. ref_message = b"clone: from " + encoded_path
  648. result = self.fetch(path, target, progress=progress, depth=depth)
  649. _import_remote_refs(
  650. target.refs, origin, result.refs, message=ref_message)
  651. origin_head = result.symrefs.get(b"HEAD")
  652. origin_sha = result.refs.get(b'HEAD')
  653. if origin_sha and not origin_head:
  654. # set detached HEAD
  655. target.refs[b"HEAD"] = origin_sha
  656. _set_origin_head(target.refs, origin.encode('utf-8'), origin_head)
  657. head_ref = _set_default_branch(
  658. target.refs, origin.encode('utf-8'), origin_head, branch, ref_message
  659. )
  660. # Update target head
  661. if head_ref:
  662. head = _set_head(target.refs, head_ref, ref_message)
  663. else:
  664. head = None
  665. if checkout and head is not None:
  666. target.reset_index()
  667. except BaseException:
  668. if target is not None:
  669. target.close()
  670. if mkdir:
  671. import shutil
  672. shutil.rmtree(target_path)
  673. raise
  674. return target
  675. def fetch(
  676. self,
  677. path: str,
  678. target: Repo,
  679. determine_wants: Optional[
  680. Callable[[Dict[bytes, bytes], Optional[int]], List[bytes]]
  681. ] = None,
  682. progress: Optional[Callable[[bytes], None]] = None,
  683. depth: Optional[int] = None
  684. ) -> FetchPackResult:
  685. """Fetch into a target repository.
  686. Args:
  687. path: Path to fetch from (as bytestring)
  688. target: Target repository to fetch into
  689. determine_wants: Optional function to determine what refs to fetch.
  690. Receives dictionary of name->sha, should return
  691. list of shas to fetch. Defaults to all shas.
  692. progress: Optional progress function
  693. depth: Depth to fetch at
  694. Returns:
  695. Dictionary with all remote refs (not just those fetched)
  696. """
  697. if determine_wants is None:
  698. determine_wants = target.object_store.determine_wants_all
  699. if CAPABILITY_THIN_PACK in self._fetch_capabilities:
  700. # TODO(jelmer): Avoid reading entire file into memory and
  701. # only processing it after the whole file has been fetched.
  702. from tempfile import SpooledTemporaryFile
  703. f: IO[bytes] = SpooledTemporaryFile()
  704. def commit():
  705. if f.tell():
  706. f.seek(0)
  707. target.object_store.add_thin_pack(f.read, None)
  708. f.close()
  709. def abort():
  710. f.close()
  711. else:
  712. f, commit, abort = target.object_store.add_pack()
  713. try:
  714. result = self.fetch_pack(
  715. path,
  716. determine_wants,
  717. target.get_graph_walker(),
  718. f.write,
  719. progress=progress,
  720. depth=depth,
  721. )
  722. except BaseException:
  723. abort()
  724. raise
  725. else:
  726. commit()
  727. target.update_shallow(result.new_shallow, result.new_unshallow)
  728. return result
  729. def fetch_pack(
  730. self,
  731. path,
  732. determine_wants,
  733. graph_walker,
  734. pack_data,
  735. *,
  736. progress=None,
  737. depth=None,
  738. ):
  739. """Retrieve a pack from a git smart server.
  740. Args:
  741. path: Remote path to fetch from
  742. determine_wants: Function determine what refs
  743. to fetch. Receives dictionary of name->sha, should return
  744. list of shas to fetch.
  745. graph_walker: Object with next() and ack().
  746. pack_data: Callback called for each bit of data in the pack
  747. progress: Callback for progress reports (strings)
  748. depth: Shallow fetch depth
  749. Returns:
  750. FetchPackResult object
  751. """
  752. raise NotImplementedError(self.fetch_pack)
  753. def get_refs(self, path):
  754. """Retrieve the current refs from a git smart server.
  755. Args:
  756. path: Path to the repo to fetch from. (as bytestring)
  757. Returns:
  758. """
  759. raise NotImplementedError(self.get_refs)
  760. @staticmethod
  761. def _should_send_pack(new_refs):
  762. # The packfile MUST NOT be sent if the only command used is delete.
  763. return any(sha != ZERO_SHA for sha in new_refs.values())
  764. def _negotiate_receive_pack_capabilities(self, server_capabilities):
  765. negotiated_capabilities = self._send_capabilities & server_capabilities
  766. agent = None
  767. for capability in server_capabilities:
  768. k, v = parse_capability(capability)
  769. if k == CAPABILITY_AGENT:
  770. agent = v
  771. unknown_capabilities = ( # noqa: F841
  772. extract_capability_names(server_capabilities) - KNOWN_RECEIVE_CAPABILITIES
  773. )
  774. # TODO(jelmer): warn about unknown capabilities
  775. return negotiated_capabilities, agent
  776. def _handle_receive_pack_tail(
  777. self,
  778. proto: Protocol,
  779. capabilities: Set[bytes],
  780. progress: Optional[Callable[[bytes], None]] = None,
  781. ) -> Optional[Dict[bytes, Optional[str]]]:
  782. """Handle the tail of a 'git-receive-pack' request.
  783. Args:
  784. proto: Protocol object to read from
  785. capabilities: List of negotiated capabilities
  786. progress: Optional progress reporting function
  787. Returns:
  788. dict mapping ref name to:
  789. error message if the ref failed to update
  790. None if it was updated successfully
  791. """
  792. if CAPABILITY_SIDE_BAND_64K in capabilities:
  793. if progress is None:
  794. def progress(x):
  795. pass
  796. channel_callbacks = {2: progress}
  797. if CAPABILITY_REPORT_STATUS in capabilities:
  798. channel_callbacks[1] = PktLineParser(
  799. self._report_status_parser.handle_packet
  800. ).parse
  801. _read_side_band64k_data(proto.read_pkt_seq(), channel_callbacks)
  802. else:
  803. if CAPABILITY_REPORT_STATUS in capabilities:
  804. for pkt in proto.read_pkt_seq():
  805. self._report_status_parser.handle_packet(pkt)
  806. if self._report_status_parser is not None:
  807. return dict(self._report_status_parser.check())
  808. return None
  809. def _negotiate_upload_pack_capabilities(self, server_capabilities):
  810. unknown_capabilities = ( # noqa: F841
  811. extract_capability_names(server_capabilities) - KNOWN_UPLOAD_CAPABILITIES
  812. )
  813. # TODO(jelmer): warn about unknown capabilities
  814. symrefs = {}
  815. agent = None
  816. for capability in server_capabilities:
  817. k, v = parse_capability(capability)
  818. if k == CAPABILITY_SYMREF:
  819. (src, dst) = v.split(b":", 1)
  820. symrefs[src] = dst
  821. if k == CAPABILITY_AGENT:
  822. agent = v
  823. negotiated_capabilities = self._fetch_capabilities & server_capabilities
  824. return (negotiated_capabilities, symrefs, agent)
  825. def archive(
  826. self,
  827. path,
  828. committish,
  829. write_data,
  830. progress=None,
  831. write_error=None,
  832. format=None,
  833. subdirs=None,
  834. prefix=None,
  835. ):
  836. """Retrieve an archive of the specified tree.
  837. """
  838. raise NotImplementedError(self.archive)
  839. def check_wants(wants, refs):
  840. """Check that a set of wants is valid.
  841. Args:
  842. wants: Set of object SHAs to fetch
  843. refs: Refs dictionary to check against
  844. Returns:
  845. """
  846. missing = set(wants) - {
  847. v for (k, v) in refs.items() if not k.endswith(ANNOTATED_TAG_SUFFIX)
  848. }
  849. if missing:
  850. raise InvalidWants(missing)
  851. def _remote_error_from_stderr(stderr):
  852. if stderr is None:
  853. return HangupException()
  854. lines = [line.rstrip(b"\n") for line in stderr.readlines()]
  855. for line in lines:
  856. if line.startswith(b"ERROR: "):
  857. return GitProtocolError(line[len(b"ERROR: ") :].decode("utf-8", "replace"))
  858. return HangupException(lines)
  859. class TraditionalGitClient(GitClient):
  860. """Traditional Git client."""
  861. DEFAULT_ENCODING = "utf-8"
  862. def __init__(self, path_encoding=DEFAULT_ENCODING, **kwargs):
  863. self._remote_path_encoding = path_encoding
  864. super().__init__(**kwargs)
  865. async def _connect(self, cmd, path):
  866. """Create a connection to the server.
  867. This method is abstract - concrete implementations should
  868. implement their own variant which connects to the server and
  869. returns an initialized Protocol object with the service ready
  870. for use and a can_read function which may be used to see if
  871. reads would block.
  872. Args:
  873. cmd: The git service name to which we should connect.
  874. path: The path we should pass to the service. (as bytestirng)
  875. """
  876. raise NotImplementedError()
  877. def send_pack(self, path, update_refs, generate_pack_data, progress=None):
  878. """Upload a pack to a remote repository.
  879. Args:
  880. path: Repository path (as bytestring)
  881. update_refs: Function to determine changes to remote refs.
  882. Receive dict with existing remote refs, returns dict with
  883. changed refs (name -> sha, where sha=ZERO_SHA for deletions)
  884. generate_pack_data: Function that can return a tuple with
  885. number of objects and pack data to upload.
  886. progress: Optional callback called with progress updates
  887. Returns:
  888. SendPackResult
  889. Raises:
  890. SendPackError: if server rejects the pack data
  891. """
  892. proto, unused_can_read, stderr = self._connect(b"receive-pack", path)
  893. with proto:
  894. try:
  895. old_refs, server_capabilities = read_pkt_refs(proto.read_pkt_seq())
  896. except HangupException as exc:
  897. raise _remote_error_from_stderr(stderr) from exc
  898. (
  899. negotiated_capabilities,
  900. agent,
  901. ) = self._negotiate_receive_pack_capabilities(server_capabilities)
  902. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  903. self._report_status_parser = ReportStatusParser()
  904. report_status_parser = self._report_status_parser
  905. try:
  906. new_refs = orig_new_refs = update_refs(dict(old_refs))
  907. except BaseException:
  908. proto.write_pkt_line(None)
  909. raise
  910. if set(new_refs.items()).issubset(set(old_refs.items())):
  911. proto.write_pkt_line(None)
  912. return SendPackResult(new_refs, agent=agent, ref_status={})
  913. if CAPABILITY_DELETE_REFS not in server_capabilities:
  914. # Server does not support deletions. Fail later.
  915. new_refs = dict(orig_new_refs)
  916. for ref, sha in orig_new_refs.items():
  917. if sha == ZERO_SHA:
  918. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  919. report_status_parser._ref_statuses.append(
  920. b"ng " + ref + b" remote does not support deleting refs"
  921. )
  922. report_status_parser._ref_status_ok = False
  923. del new_refs[ref]
  924. if new_refs is None:
  925. proto.write_pkt_line(None)
  926. return SendPackResult(old_refs, agent=agent, ref_status={})
  927. if len(new_refs) == 0 and orig_new_refs:
  928. # NOOP - Original new refs filtered out by policy
  929. proto.write_pkt_line(None)
  930. if report_status_parser is not None:
  931. ref_status = dict(report_status_parser.check())
  932. else:
  933. ref_status = None
  934. return SendPackResult(old_refs, agent=agent, ref_status=ref_status)
  935. header_handler = _v1ReceivePackHeader(negotiated_capabilities, old_refs, new_refs)
  936. for pkt in header_handler:
  937. proto.write_pkt_line(pkt)
  938. pack_data_count, pack_data = generate_pack_data(
  939. header_handler.have,
  940. header_handler.want,
  941. ofs_delta=(CAPABILITY_OFS_DELTA in negotiated_capabilities),
  942. progress=progress,
  943. )
  944. if self._should_send_pack(new_refs):
  945. for chunk in PackChunkGenerator(pack_data_count, pack_data, progress=progress):
  946. proto.write(chunk)
  947. ref_status = self._handle_receive_pack_tail(
  948. proto, negotiated_capabilities, progress
  949. )
  950. return SendPackResult(new_refs, agent=agent, ref_status=ref_status)
  951. def fetch_pack(
  952. self,
  953. path,
  954. determine_wants,
  955. graph_walker,
  956. pack_data,
  957. progress=None,
  958. depth=None,
  959. ):
  960. """Retrieve a pack from a git smart server.
  961. Args:
  962. path: Remote path to fetch from
  963. determine_wants: Function determine what refs
  964. to fetch. Receives dictionary of name->sha, should return
  965. list of shas to fetch.
  966. graph_walker: Object with next() and ack().
  967. pack_data: Callback called for each bit of data in the pack
  968. progress: Callback for progress reports (strings)
  969. depth: Shallow fetch depth
  970. Returns:
  971. FetchPackResult object
  972. """
  973. proto, can_read, stderr = self._connect(b"upload-pack", path)
  974. with proto:
  975. try:
  976. refs, server_capabilities = read_pkt_refs(proto.read_pkt_seq())
  977. except HangupException as exc:
  978. raise _remote_error_from_stderr(stderr) from exc
  979. (
  980. negotiated_capabilities,
  981. symrefs,
  982. agent,
  983. ) = self._negotiate_upload_pack_capabilities(server_capabilities)
  984. if refs is None:
  985. proto.write_pkt_line(None)
  986. return FetchPackResult(refs, symrefs, agent)
  987. try:
  988. if depth is not None:
  989. wants = determine_wants(refs, depth=depth)
  990. else:
  991. wants = determine_wants(refs)
  992. except BaseException:
  993. proto.write_pkt_line(None)
  994. raise
  995. if wants is not None:
  996. wants = [cid for cid in wants if cid != ZERO_SHA]
  997. if not wants:
  998. proto.write_pkt_line(None)
  999. return FetchPackResult(refs, symrefs, agent)
  1000. (new_shallow, new_unshallow) = _handle_upload_pack_head(
  1001. proto,
  1002. negotiated_capabilities,
  1003. graph_walker,
  1004. wants,
  1005. can_read,
  1006. depth=depth,
  1007. )
  1008. _handle_upload_pack_tail(
  1009. proto,
  1010. negotiated_capabilities,
  1011. graph_walker,
  1012. pack_data,
  1013. progress,
  1014. )
  1015. return FetchPackResult(refs, symrefs, agent, new_shallow, new_unshallow)
  1016. def get_refs(self, path):
  1017. """Retrieve the current refs from a git smart server."""
  1018. # stock `git ls-remote` uses upload-pack
  1019. proto, _, stderr = self._connect(b"upload-pack", path)
  1020. with proto:
  1021. try:
  1022. refs, _ = read_pkt_refs(proto.read_pkt_seq())
  1023. except HangupException as exc:
  1024. raise _remote_error_from_stderr(stderr) from exc
  1025. proto.write_pkt_line(None)
  1026. return refs
  1027. def archive(
  1028. self,
  1029. path,
  1030. committish,
  1031. write_data,
  1032. progress=None,
  1033. write_error=None,
  1034. format=None,
  1035. subdirs=None,
  1036. prefix=None,
  1037. ):
  1038. proto, can_read, stderr = self._connect(b"upload-archive", path)
  1039. with proto:
  1040. if format is not None:
  1041. proto.write_pkt_line(b"argument --format=" + format)
  1042. proto.write_pkt_line(b"argument " + committish)
  1043. if subdirs is not None:
  1044. for subdir in subdirs:
  1045. proto.write_pkt_line(b"argument " + subdir)
  1046. if prefix is not None:
  1047. proto.write_pkt_line(b"argument --prefix=" + prefix)
  1048. proto.write_pkt_line(None)
  1049. try:
  1050. pkt = proto.read_pkt_line()
  1051. except HangupException as exc:
  1052. raise _remote_error_from_stderr(stderr) from exc
  1053. if pkt == b"NACK\n" or pkt == b"NACK":
  1054. return
  1055. elif pkt == b"ACK\n" or pkt == b"ACK":
  1056. pass
  1057. elif pkt.startswith(b"ERR "):
  1058. raise GitProtocolError(pkt[4:].rstrip(b"\n").decode("utf-8", "replace"))
  1059. else:
  1060. raise AssertionError("invalid response %r" % pkt)
  1061. ret = proto.read_pkt_line()
  1062. if ret is not None:
  1063. raise AssertionError("expected pkt tail")
  1064. _read_side_band64k_data(
  1065. proto.read_pkt_seq(),
  1066. {
  1067. SIDE_BAND_CHANNEL_DATA: write_data,
  1068. SIDE_BAND_CHANNEL_PROGRESS: progress,
  1069. SIDE_BAND_CHANNEL_FATAL: write_error,
  1070. },
  1071. )
  1072. class TCPGitClient(TraditionalGitClient):
  1073. """A Git Client that works over TCP directly (i.e. git://)."""
  1074. def __init__(self, host, port=None, **kwargs):
  1075. if port is None:
  1076. port = TCP_GIT_PORT
  1077. self._host = host
  1078. self._port = port
  1079. super().__init__(**kwargs)
  1080. @classmethod
  1081. def from_parsedurl(cls, parsedurl, **kwargs):
  1082. return cls(parsedurl.hostname, port=parsedurl.port, **kwargs)
  1083. def get_url(self, path):
  1084. netloc = self._host
  1085. if self._port is not None and self._port != TCP_GIT_PORT:
  1086. netloc += ":%d" % self._port
  1087. return urlunsplit(("git", netloc, path, "", ""))
  1088. def _connect(self, cmd, path):
  1089. if not isinstance(cmd, bytes):
  1090. raise TypeError(cmd)
  1091. if not isinstance(path, bytes):
  1092. path = path.encode(self._remote_path_encoding)
  1093. sockaddrs = socket.getaddrinfo(
  1094. self._host, self._port, socket.AF_UNSPEC, socket.SOCK_STREAM
  1095. )
  1096. s = None
  1097. err = socket.error("no address found for %s" % self._host)
  1098. for (family, socktype, proto, canonname, sockaddr) in sockaddrs:
  1099. s = socket.socket(family, socktype, proto)
  1100. s.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
  1101. try:
  1102. s.connect(sockaddr)
  1103. break
  1104. except OSError as e:
  1105. err = e
  1106. if s is not None:
  1107. s.close()
  1108. s = None
  1109. if s is None:
  1110. raise err
  1111. # -1 means system default buffering
  1112. rfile = s.makefile("rb", -1)
  1113. # 0 means unbuffered
  1114. wfile = s.makefile("wb", 0)
  1115. def close():
  1116. rfile.close()
  1117. wfile.close()
  1118. s.close()
  1119. proto = Protocol(
  1120. rfile.read,
  1121. wfile.write,
  1122. close,
  1123. report_activity=self._report_activity,
  1124. )
  1125. if path.startswith(b"/~"):
  1126. path = path[1:]
  1127. # TODO(jelmer): Alternative to ascii?
  1128. proto.send_cmd(b"git-" + cmd, path, b"host=" + self._host.encode("ascii"))
  1129. return proto, lambda: _fileno_can_read(s), None
  1130. class SubprocessWrapper:
  1131. """A socket-like object that talks to a subprocess via pipes."""
  1132. def __init__(self, proc):
  1133. self.proc = proc
  1134. self.read = BufferedReader(proc.stdout).read
  1135. self.write = proc.stdin.write
  1136. @property
  1137. def stderr(self):
  1138. return self.proc.stderr
  1139. def can_read(self):
  1140. if sys.platform == "win32":
  1141. from msvcrt import get_osfhandle
  1142. handle = get_osfhandle(self.proc.stdout.fileno())
  1143. return _win32_peek_avail(handle) != 0
  1144. else:
  1145. return _fileno_can_read(self.proc.stdout.fileno())
  1146. def close(self):
  1147. self.proc.stdin.close()
  1148. self.proc.stdout.close()
  1149. if self.proc.stderr:
  1150. self.proc.stderr.close()
  1151. self.proc.wait()
  1152. def find_git_command() -> List[str]:
  1153. """Find command to run for system Git (usually C Git)."""
  1154. if sys.platform == "win32": # support .exe, .bat and .cmd
  1155. try: # to avoid overhead
  1156. import win32api
  1157. except ImportError: # run through cmd.exe with some overhead
  1158. return ["cmd", "/c", "git"]
  1159. else:
  1160. status, git = win32api.FindExecutable("git")
  1161. return [git]
  1162. else:
  1163. return ["git"]
  1164. class SubprocessGitClient(TraditionalGitClient):
  1165. """Git client that talks to a server using a subprocess."""
  1166. @classmethod
  1167. def from_parsedurl(cls, parsedurl, **kwargs):
  1168. return cls(**kwargs)
  1169. git_command = None
  1170. def _connect(self, service, path):
  1171. if not isinstance(service, bytes):
  1172. raise TypeError(service)
  1173. if isinstance(path, bytes):
  1174. path = path.decode(self._remote_path_encoding)
  1175. if self.git_command is None:
  1176. git_command = find_git_command()
  1177. argv = git_command + [service.decode("ascii"), path]
  1178. p = subprocess.Popen(
  1179. argv,
  1180. bufsize=0,
  1181. stdin=subprocess.PIPE,
  1182. stdout=subprocess.PIPE,
  1183. stderr=subprocess.PIPE,
  1184. )
  1185. pw = SubprocessWrapper(p)
  1186. return (
  1187. Protocol(
  1188. pw.read,
  1189. pw.write,
  1190. pw.close,
  1191. report_activity=self._report_activity,
  1192. ),
  1193. pw.can_read,
  1194. p.stderr,
  1195. )
  1196. class LocalGitClient(GitClient):
  1197. """Git Client that just uses a local Repo."""
  1198. def __init__(self, thin_packs=True, report_activity=None,
  1199. config: Optional[Config] = None):
  1200. """Create a new LocalGitClient instance.
  1201. Args:
  1202. thin_packs: Whether or not thin packs should be retrieved
  1203. report_activity: Optional callback for reporting transport
  1204. activity.
  1205. """
  1206. self._report_activity = report_activity
  1207. # Ignore the thin_packs argument
  1208. def get_url(self, path):
  1209. return urlunsplit(("file", "", path, "", ""))
  1210. @classmethod
  1211. def from_parsedurl(cls, parsedurl, **kwargs):
  1212. return cls(**kwargs)
  1213. @classmethod
  1214. def _open_repo(cls, path):
  1215. if not isinstance(path, str):
  1216. path = os.fsdecode(path)
  1217. return closing(Repo(path))
  1218. def send_pack(self, path, update_refs, generate_pack_data, progress=None):
  1219. """Upload a pack to a remote repository.
  1220. Args:
  1221. path: Repository path (as bytestring)
  1222. update_refs: Function to determine changes to remote refs.
  1223. Receive dict with existing remote refs, returns dict with
  1224. changed refs (name -> sha, where sha=ZERO_SHA for deletions)
  1225. with number of items and pack data to upload.
  1226. progress: Optional progress function
  1227. Returns:
  1228. SendPackResult
  1229. Raises:
  1230. SendPackError: if server rejects the pack data
  1231. """
  1232. if not progress:
  1233. def progress(x):
  1234. pass
  1235. with self._open_repo(path) as target:
  1236. old_refs = target.get_refs()
  1237. new_refs = update_refs(dict(old_refs))
  1238. have = [sha1 for sha1 in old_refs.values() if sha1 != ZERO_SHA]
  1239. want = []
  1240. for refname, new_sha1 in new_refs.items():
  1241. if (
  1242. new_sha1 not in have
  1243. and new_sha1 not in want
  1244. and new_sha1 != ZERO_SHA
  1245. ):
  1246. want.append(new_sha1)
  1247. if not want and set(new_refs.items()).issubset(set(old_refs.items())):
  1248. return SendPackResult(new_refs, ref_status={})
  1249. target.object_store.add_pack_data(
  1250. *generate_pack_data(have, want, ofs_delta=True)
  1251. )
  1252. ref_status = {}
  1253. for refname, new_sha1 in new_refs.items():
  1254. old_sha1 = old_refs.get(refname, ZERO_SHA)
  1255. if new_sha1 != ZERO_SHA:
  1256. if not target.refs.set_if_equals(refname, old_sha1, new_sha1):
  1257. msg = "unable to set {} to {}".format(refname, new_sha1)
  1258. progress(msg)
  1259. ref_status[refname] = msg
  1260. else:
  1261. if not target.refs.remove_if_equals(refname, old_sha1):
  1262. progress("unable to remove %s" % refname)
  1263. ref_status[refname] = "unable to remove"
  1264. return SendPackResult(new_refs, ref_status=ref_status)
  1265. def fetch(self, path, target, determine_wants=None, progress=None, depth=None):
  1266. """Fetch into a target repository.
  1267. Args:
  1268. path: Path to fetch from (as bytestring)
  1269. target: Target repository to fetch into
  1270. determine_wants: Optional function determine what refs
  1271. to fetch. Receives dictionary of name->sha, should return
  1272. list of shas to fetch. Defaults to all shas.
  1273. progress: Optional progress function
  1274. depth: Shallow fetch depth
  1275. Returns:
  1276. FetchPackResult object
  1277. """
  1278. with self._open_repo(path) as r:
  1279. refs = r.fetch(
  1280. target,
  1281. determine_wants=determine_wants,
  1282. progress=progress,
  1283. depth=depth,
  1284. )
  1285. return FetchPackResult(refs, r.refs.get_symrefs(), agent_string())
  1286. def fetch_pack(
  1287. self,
  1288. path,
  1289. determine_wants,
  1290. graph_walker,
  1291. pack_data,
  1292. progress=None,
  1293. depth=None,
  1294. ) -> FetchPackResult:
  1295. """Retrieve a pack from a git smart server.
  1296. Args:
  1297. path: Remote path to fetch from
  1298. determine_wants: Function determine what refs
  1299. to fetch. Receives dictionary of name->sha, should return
  1300. list of shas to fetch.
  1301. graph_walker: Object with next() and ack().
  1302. pack_data: Callback called for each bit of data in the pack
  1303. progress: Callback for progress reports (strings)
  1304. depth: Shallow fetch depth
  1305. Returns:
  1306. FetchPackResult object
  1307. """
  1308. with self._open_repo(path) as r:
  1309. missing_objects = r.find_missing_objects(
  1310. determine_wants, graph_walker, progress=progress, depth=depth
  1311. )
  1312. other_haves = missing_objects.get_remote_has()
  1313. object_ids = list(missing_objects)
  1314. symrefs = r.refs.get_symrefs()
  1315. agent = agent_string()
  1316. # Did the process short-circuit (e.g. in a stateless RPC call)?
  1317. # Note that the client still expects a 0-object pack in most cases.
  1318. if object_ids is None:
  1319. return FetchPackResult(None, symrefs, agent)
  1320. write_pack_from_container(pack_data, r.object_store, object_ids, other_haves=other_haves)
  1321. return FetchPackResult(r.get_refs(), symrefs, agent)
  1322. def get_refs(self, path):
  1323. """Retrieve the current refs from a git smart server."""
  1324. with self._open_repo(path) as target:
  1325. return target.get_refs()
  1326. # What Git client to use for local access
  1327. default_local_git_client_cls = LocalGitClient
  1328. class SSHVendor:
  1329. """A client side SSH implementation."""
  1330. def run_command(
  1331. self,
  1332. host,
  1333. command,
  1334. username=None,
  1335. port=None,
  1336. password=None,
  1337. key_filename=None,
  1338. ssh_command=None,
  1339. ):
  1340. """Connect to an SSH server.
  1341. Run a command remotely and return a file-like object for interaction
  1342. with the remote command.
  1343. Args:
  1344. host: Host name
  1345. command: Command to run (as argv array)
  1346. username: Optional ame of user to log in as
  1347. port: Optional SSH port to use
  1348. password: Optional ssh password for login or private key
  1349. key_filename: Optional path to private keyfile
  1350. ssh_command: Optional SSH command
  1351. Returns:
  1352. """
  1353. raise NotImplementedError(self.run_command)
  1354. class StrangeHostname(Exception):
  1355. """Refusing to connect to strange SSH hostname."""
  1356. def __init__(self, hostname):
  1357. super().__init__(hostname)
  1358. class SubprocessSSHVendor(SSHVendor):
  1359. """SSH vendor that shells out to the local 'ssh' command."""
  1360. def run_command(
  1361. self,
  1362. host,
  1363. command,
  1364. username=None,
  1365. port=None,
  1366. password=None,
  1367. key_filename=None,
  1368. ssh_command=None,
  1369. ):
  1370. if password is not None:
  1371. raise NotImplementedError(
  1372. "Setting password not supported by SubprocessSSHVendor."
  1373. )
  1374. if ssh_command:
  1375. import shlex
  1376. args = shlex.split(
  1377. ssh_command, posix=(sys.platform != 'win32')) + ["-x"]
  1378. else:
  1379. args = ["ssh", "-x"]
  1380. if port:
  1381. args.extend(["-p", str(port)])
  1382. if key_filename:
  1383. args.extend(["-i", str(key_filename)])
  1384. if username:
  1385. host = "{}@{}".format(username, host)
  1386. if host.startswith("-"):
  1387. raise StrangeHostname(hostname=host)
  1388. args.append(host)
  1389. proc = subprocess.Popen(
  1390. args + [command],
  1391. bufsize=0,
  1392. stdin=subprocess.PIPE,
  1393. stdout=subprocess.PIPE,
  1394. stderr=subprocess.PIPE,
  1395. )
  1396. return SubprocessWrapper(proc)
  1397. class PLinkSSHVendor(SSHVendor):
  1398. """SSH vendor that shells out to the local 'plink' command."""
  1399. def run_command(
  1400. self,
  1401. host,
  1402. command,
  1403. username=None,
  1404. port=None,
  1405. password=None,
  1406. key_filename=None,
  1407. ssh_command=None,
  1408. ):
  1409. if ssh_command:
  1410. import shlex
  1411. args = shlex.split(
  1412. ssh_command, posix=(sys.platform != 'win32')) + ["-ssh"]
  1413. elif sys.platform == "win32":
  1414. args = ["plink.exe", "-ssh"]
  1415. else:
  1416. args = ["plink", "-ssh"]
  1417. if password is not None:
  1418. import warnings
  1419. warnings.warn(
  1420. "Invoking PLink with a password exposes the password in the "
  1421. "process list."
  1422. )
  1423. args.extend(["-pw", str(password)])
  1424. if port:
  1425. args.extend(["-P", str(port)])
  1426. if key_filename:
  1427. args.extend(["-i", str(key_filename)])
  1428. if username:
  1429. host = "{}@{}".format(username, host)
  1430. if host.startswith("-"):
  1431. raise StrangeHostname(hostname=host)
  1432. args.append(host)
  1433. proc = subprocess.Popen(
  1434. args + [command],
  1435. bufsize=0,
  1436. stdin=subprocess.PIPE,
  1437. stdout=subprocess.PIPE,
  1438. stderr=subprocess.PIPE,
  1439. )
  1440. return SubprocessWrapper(proc)
  1441. def ParamikoSSHVendor(**kwargs):
  1442. import warnings
  1443. warnings.warn(
  1444. "ParamikoSSHVendor has been moved to dulwich.contrib.paramiko_vendor.",
  1445. DeprecationWarning,
  1446. )
  1447. from dulwich.contrib.paramiko_vendor import ParamikoSSHVendor
  1448. return ParamikoSSHVendor(**kwargs)
  1449. # Can be overridden by users
  1450. get_ssh_vendor = SubprocessSSHVendor
  1451. class SSHGitClient(TraditionalGitClient):
  1452. def __init__(
  1453. self,
  1454. host,
  1455. port=None,
  1456. username=None,
  1457. vendor=None,
  1458. config=None,
  1459. password=None,
  1460. key_filename=None,
  1461. ssh_command=None,
  1462. **kwargs
  1463. ):
  1464. self.host = host
  1465. self.port = port
  1466. self.username = username
  1467. self.password = password
  1468. self.key_filename = key_filename
  1469. self.ssh_command = ssh_command or os.environ.get(
  1470. "GIT_SSH_COMMAND", os.environ.get("GIT_SSH")
  1471. )
  1472. super().__init__(**kwargs)
  1473. self.alternative_paths = {}
  1474. if vendor is not None:
  1475. self.ssh_vendor = vendor
  1476. else:
  1477. self.ssh_vendor = get_ssh_vendor()
  1478. def get_url(self, path):
  1479. netloc = self.host
  1480. if self.port is not None:
  1481. netloc += ":%d" % self.port
  1482. if self.username is not None:
  1483. netloc = urlquote(self.username, "@/:") + "@" + netloc
  1484. return urlunsplit(("ssh", netloc, path, "", ""))
  1485. @classmethod
  1486. def from_parsedurl(cls, parsedurl, **kwargs):
  1487. return cls(
  1488. host=parsedurl.hostname,
  1489. port=parsedurl.port,
  1490. username=parsedurl.username,
  1491. **kwargs
  1492. )
  1493. def _get_cmd_path(self, cmd):
  1494. cmd = self.alternative_paths.get(cmd, b"git-" + cmd)
  1495. assert isinstance(cmd, bytes)
  1496. return cmd
  1497. def _connect(self, cmd, path):
  1498. if not isinstance(cmd, bytes):
  1499. raise TypeError(cmd)
  1500. if isinstance(path, bytes):
  1501. path = path.decode(self._remote_path_encoding)
  1502. if path.startswith("/~"):
  1503. path = path[1:]
  1504. argv = (
  1505. self._get_cmd_path(cmd).decode(self._remote_path_encoding)
  1506. + " '"
  1507. + path
  1508. + "'"
  1509. )
  1510. kwargs = {}
  1511. if self.password is not None:
  1512. kwargs["password"] = self.password
  1513. if self.key_filename is not None:
  1514. kwargs["key_filename"] = self.key_filename
  1515. # GIT_SSH_COMMAND takes precedence over GIT_SSH
  1516. if self.ssh_command is not None:
  1517. kwargs["ssh_command"] = self.ssh_command
  1518. con = self.ssh_vendor.run_command(
  1519. self.host, argv, port=self.port, username=self.username, **kwargs
  1520. )
  1521. return (
  1522. Protocol(
  1523. con.read,
  1524. con.write,
  1525. con.close,
  1526. report_activity=self._report_activity,
  1527. ),
  1528. con.can_read,
  1529. getattr(con, "stderr", None),
  1530. )
  1531. def default_user_agent_string():
  1532. # Start user agent with "git/", because GitHub requires this. :-( See
  1533. # https://github.com/jelmer/dulwich/issues/562 for details.
  1534. return "git/dulwich/%s" % ".".join([str(x) for x in dulwich.__version__])
  1535. def default_urllib3_manager( # noqa: C901
  1536. config, pool_manager_cls=None, proxy_manager_cls=None, base_url=None, **override_kwargs
  1537. ) -> Union["urllib3.ProxyManager", "urllib3.PoolManager"]:
  1538. """Return urllib3 connection pool manager.
  1539. Honour detected proxy configurations.
  1540. Args:
  1541. config: `dulwich.config.ConfigDict` instance with Git configuration.
  1542. override_kwargs: Additional arguments for `urllib3.ProxyManager`
  1543. Returns:
  1544. Either pool_manager_cls (defaults to `urllib3.ProxyManager`) instance for
  1545. proxy configurations, proxy_manager_cls
  1546. (defaults to `urllib3.PoolManager`) instance otherwise
  1547. """
  1548. proxy_server = user_agent = None
  1549. ca_certs = ssl_verify = None
  1550. if proxy_server is None:
  1551. for proxyname in ("https_proxy", "http_proxy", "all_proxy"):
  1552. proxy_server = os.environ.get(proxyname)
  1553. if proxy_server:
  1554. break
  1555. if proxy_server:
  1556. if check_for_proxy_bypass(base_url):
  1557. proxy_server = None
  1558. if config is not None:
  1559. if proxy_server is None:
  1560. try:
  1561. proxy_server = config.get(b"http", b"proxy")
  1562. except KeyError:
  1563. pass
  1564. try:
  1565. user_agent = config.get(b"http", b"useragent")
  1566. except KeyError:
  1567. pass
  1568. # TODO(jelmer): Support per-host settings
  1569. try:
  1570. ssl_verify = config.get_boolean(b"http", b"sslVerify")
  1571. except KeyError:
  1572. ssl_verify = True
  1573. try:
  1574. ca_certs = config.get(b"http", b"sslCAInfo")
  1575. except KeyError:
  1576. ca_certs = None
  1577. if user_agent is None:
  1578. user_agent = default_user_agent_string()
  1579. headers = {"User-agent": user_agent}
  1580. kwargs = {
  1581. "ca_certs" : ca_certs,
  1582. }
  1583. if ssl_verify is True:
  1584. kwargs["cert_reqs"] = "CERT_REQUIRED"
  1585. elif ssl_verify is False:
  1586. kwargs["cert_reqs"] = "CERT_NONE"
  1587. else:
  1588. # Default to SSL verification
  1589. kwargs["cert_reqs"] = "CERT_REQUIRED"
  1590. kwargs.update(override_kwargs)
  1591. import urllib3
  1592. if proxy_server is not None:
  1593. if proxy_manager_cls is None:
  1594. proxy_manager_cls = urllib3.ProxyManager
  1595. if not isinstance(proxy_server, str):
  1596. proxy_server = proxy_server.decode()
  1597. manager = proxy_manager_cls(proxy_server, headers=headers, **kwargs)
  1598. else:
  1599. if pool_manager_cls is None:
  1600. pool_manager_cls = urllib3.PoolManager
  1601. manager = pool_manager_cls(headers=headers, **kwargs)
  1602. return manager
  1603. def check_for_proxy_bypass(base_url):
  1604. # Check if a proxy bypass is defined with the no_proxy environment variable
  1605. if base_url: # only check if base_url is provided
  1606. no_proxy_str = os.environ.get("no_proxy")
  1607. if no_proxy_str:
  1608. # implementation based on curl behavior: https://curl.se/libcurl/c/CURLOPT_NOPROXY.html
  1609. # get hostname of provided parsed url
  1610. parsed_url = urlparse(base_url)
  1611. hostname = parsed_url.hostname
  1612. if hostname:
  1613. import ipaddress
  1614. # check if hostname is an ip address
  1615. try:
  1616. hostname_ip = ipaddress.ip_address(hostname)
  1617. except ValueError:
  1618. hostname_ip = None
  1619. no_proxy_values = no_proxy_str.split(',')
  1620. for no_proxy_value in no_proxy_values:
  1621. no_proxy_value = no_proxy_value.strip()
  1622. if no_proxy_value:
  1623. no_proxy_value = no_proxy_value.lower()
  1624. no_proxy_value = no_proxy_value.lstrip('.') # ignore leading dots
  1625. if hostname_ip:
  1626. # check if no_proxy_value is a ip network
  1627. try:
  1628. no_proxy_value_network = ipaddress.ip_network(no_proxy_value, strict=False)
  1629. except ValueError:
  1630. no_proxy_value_network = None
  1631. if no_proxy_value_network:
  1632. # if hostname is a ip address and no_proxy_value is a ip network -> check if ip address is part of network
  1633. if hostname_ip in no_proxy_value_network:
  1634. return True
  1635. if no_proxy_value == '*':
  1636. # '*' is special case for always bypass proxy
  1637. return True
  1638. if hostname == no_proxy_value:
  1639. return True
  1640. no_proxy_value = '.' + no_proxy_value # add a dot to only match complete domains
  1641. if hostname.endswith(no_proxy_value):
  1642. return True
  1643. return False
  1644. class AbstractHttpGitClient(GitClient):
  1645. """Abstract base class for HTTP Git Clients.
  1646. This is agonistic of the actual HTTP implementation.
  1647. Subclasses should provide an implementation of the
  1648. _http_request method.
  1649. """
  1650. def __init__(self, base_url, dumb=False, **kwargs):
  1651. self._base_url = base_url.rstrip("/") + "/"
  1652. self.dumb = dumb
  1653. GitClient.__init__(self, **kwargs)
  1654. def _http_request(self, url, headers=None, data=None):
  1655. """Perform HTTP request.
  1656. Args:
  1657. url: Request URL.
  1658. headers: Optional custom headers to override defaults.
  1659. data: Request data.
  1660. Returns:
  1661. Tuple (response, read), where response is an urllib3
  1662. response object with additional content_type and
  1663. redirect_location properties, and read is a consumable read
  1664. method for the response data.
  1665. """
  1666. raise NotImplementedError(self._http_request)
  1667. def _discover_references(self, service, base_url):
  1668. assert base_url[-1] == "/"
  1669. tail = "info/refs"
  1670. headers = {"Accept": "*/*"}
  1671. if self.dumb is not True:
  1672. tail += "?service=%s" % service.decode("ascii")
  1673. url = urljoin(base_url, tail)
  1674. resp, read = self._http_request(url, headers)
  1675. if resp.redirect_location:
  1676. # Something changed (redirect!), so let's update the base URL
  1677. if not resp.redirect_location.endswith(tail):
  1678. raise GitProtocolError(
  1679. "Redirected from URL %s to URL %s without %s"
  1680. % (url, resp.redirect_location, tail)
  1681. )
  1682. base_url = resp.redirect_location[: -len(tail)]
  1683. try:
  1684. self.dumb = (
  1685. resp.content_type is None
  1686. or not resp.content_type.startswith("application/x-git-"))
  1687. if not self.dumb:
  1688. proto = Protocol(read, None)
  1689. # The first line should mention the service
  1690. try:
  1691. [pkt] = list(proto.read_pkt_seq())
  1692. except ValueError as exc:
  1693. raise GitProtocolError(
  1694. "unexpected number of packets received") from exc
  1695. if pkt.rstrip(b"\n") != (b"# service=" + service):
  1696. raise GitProtocolError(
  1697. "unexpected first line %r from smart server" % pkt
  1698. )
  1699. return read_pkt_refs(proto.read_pkt_seq()) + (base_url,)
  1700. else:
  1701. return read_info_refs(resp), set(), base_url
  1702. finally:
  1703. resp.close()
  1704. def _smart_request(self, service, url, data):
  1705. """Send a 'smart' HTTP request.
  1706. This is a simple wrapper around _http_request that sets
  1707. a couple of extra headers.
  1708. """
  1709. assert url[-1] == "/"
  1710. url = urljoin(url, service)
  1711. result_content_type = "application/x-%s-result" % service
  1712. headers = {
  1713. "Content-Type": "application/x-%s-request" % service,
  1714. "Accept": result_content_type,
  1715. }
  1716. if isinstance(data, bytes):
  1717. headers["Content-Length"] = str(len(data))
  1718. resp, read = self._http_request(url, headers, data)
  1719. if resp.content_type != result_content_type:
  1720. raise GitProtocolError(
  1721. "Invalid content-type from server: %s" % resp.content_type
  1722. )
  1723. return resp, read
  1724. def send_pack(self, path, update_refs, generate_pack_data, progress=None):
  1725. """Upload a pack to a remote repository.
  1726. Args:
  1727. path: Repository path (as bytestring)
  1728. update_refs: Function to determine changes to remote refs.
  1729. Receives dict with existing remote refs, returns dict with
  1730. changed refs (name -> sha, where sha=ZERO_SHA for deletions)
  1731. generate_pack_data: Function that can return a tuple
  1732. with number of elements and pack data to upload.
  1733. progress: Optional progress function
  1734. Returns:
  1735. SendPackResult
  1736. Raises:
  1737. SendPackError: if server rejects the pack data
  1738. """
  1739. url = self._get_url(path)
  1740. old_refs, server_capabilities, url = self._discover_references(
  1741. b"git-receive-pack", url
  1742. )
  1743. (
  1744. negotiated_capabilities,
  1745. agent,
  1746. ) = self._negotiate_receive_pack_capabilities(server_capabilities)
  1747. negotiated_capabilities.add(capability_agent())
  1748. if CAPABILITY_REPORT_STATUS in negotiated_capabilities:
  1749. self._report_status_parser = ReportStatusParser()
  1750. new_refs = update_refs(dict(old_refs))
  1751. if new_refs is None:
  1752. # Determine wants function is aborting the push.
  1753. return SendPackResult(old_refs, agent=agent, ref_status={})
  1754. if set(new_refs.items()).issubset(set(old_refs.items())):
  1755. return SendPackResult(new_refs, agent=agent, ref_status={})
  1756. if self.dumb:
  1757. raise NotImplementedError(self.fetch_pack)
  1758. def body_generator():
  1759. header_handler = _v1ReceivePackHeader(negotiated_capabilities, old_refs, new_refs)
  1760. for pkt in header_handler:
  1761. yield pkt_line(pkt)
  1762. pack_data_count, pack_data = generate_pack_data(
  1763. header_handler.have,
  1764. header_handler.want,
  1765. ofs_delta=(CAPABILITY_OFS_DELTA in negotiated_capabilities),
  1766. )
  1767. if self._should_send_pack(new_refs):
  1768. yield from PackChunkGenerator(pack_data_count, pack_data)
  1769. resp, read = self._smart_request(
  1770. "git-receive-pack", url, data=body_generator()
  1771. )
  1772. try:
  1773. resp_proto = Protocol(read, None)
  1774. ref_status = self._handle_receive_pack_tail(
  1775. resp_proto, negotiated_capabilities, progress
  1776. )
  1777. return SendPackResult(new_refs, agent=agent, ref_status=ref_status)
  1778. finally:
  1779. resp.close()
  1780. def fetch_pack(
  1781. self,
  1782. path,
  1783. determine_wants,
  1784. graph_walker,
  1785. pack_data,
  1786. progress=None,
  1787. depth=None,
  1788. ):
  1789. """Retrieve a pack from a git smart server.
  1790. Args:
  1791. path: Path to fetch from
  1792. determine_wants: Callback that returns list of commits to fetch
  1793. graph_walker: Object with next() and ack().
  1794. pack_data: Callback called for each bit of data in the pack
  1795. progress: Callback for progress reports (strings)
  1796. depth: Depth for request
  1797. Returns:
  1798. FetchPackResult object
  1799. """
  1800. url = self._get_url(path)
  1801. refs, server_capabilities, url = self._discover_references(
  1802. b"git-upload-pack", url
  1803. )
  1804. (
  1805. negotiated_capabilities,
  1806. symrefs,
  1807. agent,
  1808. ) = self._negotiate_upload_pack_capabilities(server_capabilities)
  1809. if depth is not None:
  1810. wants = determine_wants(refs, depth=depth)
  1811. else:
  1812. wants = determine_wants(refs)
  1813. if wants is not None:
  1814. wants = [cid for cid in wants if cid != ZERO_SHA]
  1815. if not wants:
  1816. return FetchPackResult(refs, symrefs, agent)
  1817. if self.dumb:
  1818. raise NotImplementedError(self.fetch_pack)
  1819. req_data = BytesIO()
  1820. req_proto = Protocol(None, req_data.write)
  1821. (new_shallow, new_unshallow) = _handle_upload_pack_head(
  1822. req_proto,
  1823. negotiated_capabilities,
  1824. graph_walker,
  1825. wants,
  1826. can_read=None,
  1827. depth=depth,
  1828. )
  1829. resp, read = self._smart_request(
  1830. "git-upload-pack", url, data=req_data.getvalue()
  1831. )
  1832. try:
  1833. resp_proto = Protocol(read, None)
  1834. if new_shallow is None and new_unshallow is None:
  1835. (new_shallow, new_unshallow) = _read_shallow_updates(
  1836. resp_proto.read_pkt_seq())
  1837. _handle_upload_pack_tail(
  1838. resp_proto,
  1839. negotiated_capabilities,
  1840. graph_walker,
  1841. pack_data,
  1842. progress,
  1843. )
  1844. return FetchPackResult(refs, symrefs, agent, new_shallow, new_unshallow)
  1845. finally:
  1846. resp.close()
  1847. def get_refs(self, path):
  1848. """Retrieve the current refs from a git smart server."""
  1849. url = self._get_url(path)
  1850. refs, _, _ = self._discover_references(b"git-upload-pack", url)
  1851. return refs
  1852. def get_url(self, path):
  1853. return self._get_url(path).rstrip("/")
  1854. def _get_url(self, path):
  1855. return urljoin(self._base_url, path).rstrip("/") + "/"
  1856. @classmethod
  1857. def from_parsedurl(cls, parsedurl, **kwargs):
  1858. password = parsedurl.password
  1859. if password is not None:
  1860. kwargs["password"] = urlunquote(password)
  1861. username = parsedurl.username
  1862. if username is not None:
  1863. kwargs["username"] = urlunquote(username)
  1864. netloc = parsedurl.hostname
  1865. if parsedurl.port:
  1866. netloc = "{}:{}".format(netloc, parsedurl.port)
  1867. if parsedurl.username:
  1868. netloc = "{}@{}".format(parsedurl.username, netloc)
  1869. parsedurl = parsedurl._replace(netloc=netloc)
  1870. return cls(urlunparse(parsedurl), **kwargs)
  1871. def __repr__(self):
  1872. return "{}({!r}, dumb={!r})".format(
  1873. type(self).__name__,
  1874. self._base_url,
  1875. self.dumb,
  1876. )
  1877. class Urllib3HttpGitClient(AbstractHttpGitClient):
  1878. def __init__(
  1879. self,
  1880. base_url,
  1881. dumb=None,
  1882. pool_manager=None,
  1883. config=None,
  1884. username=None,
  1885. password=None,
  1886. **kwargs
  1887. ):
  1888. self._username = username
  1889. self._password = password
  1890. if pool_manager is None:
  1891. self.pool_manager = default_urllib3_manager(config, base_url=base_url)
  1892. else:
  1893. self.pool_manager = pool_manager
  1894. if username is not None:
  1895. # No escaping needed: ":" is not allowed in username:
  1896. # https://tools.ietf.org/html/rfc2617#section-2
  1897. credentials = f"{username}:{password or ''}"
  1898. import urllib3.util
  1899. basic_auth = urllib3.util.make_headers(basic_auth=credentials)
  1900. self.pool_manager.headers.update(basic_auth)
  1901. self.config = config
  1902. super().__init__(
  1903. base_url=base_url, dumb=dumb, **kwargs)
  1904. def _get_url(self, path):
  1905. if not isinstance(path, str):
  1906. # urllib3.util.url._encode_invalid_chars() converts the path back
  1907. # to bytes using the utf-8 codec.
  1908. path = path.decode("utf-8")
  1909. return urljoin(self._base_url, path).rstrip("/") + "/"
  1910. def _http_request(self, url, headers=None, data=None):
  1911. req_headers = self.pool_manager.headers.copy()
  1912. if headers is not None:
  1913. req_headers.update(headers)
  1914. req_headers["Pragma"] = "no-cache"
  1915. if data is None:
  1916. resp = self.pool_manager.request(
  1917. "GET", url, headers=req_headers, preload_content=False)
  1918. else:
  1919. resp = self.pool_manager.request(
  1920. "POST", url, headers=req_headers, body=data, preload_content=False
  1921. )
  1922. if resp.status == 404:
  1923. raise NotGitRepository()
  1924. if resp.status == 401:
  1925. raise HTTPUnauthorized(resp.headers.get("WWW-Authenticate"), url)
  1926. if resp.status == 407:
  1927. raise HTTPProxyUnauthorized(resp.headers.get("Proxy-Authenticate"), url)
  1928. if resp.status != 200:
  1929. raise GitProtocolError(
  1930. "unexpected http resp %d for %s" % (resp.status, url)
  1931. )
  1932. resp.content_type = resp.headers.get("Content-Type")
  1933. # Check if geturl() is available (urllib3 version >= 1.23)
  1934. try:
  1935. resp_url = resp.geturl()
  1936. except AttributeError:
  1937. # get_redirect_location() is available for urllib3 >= 1.1
  1938. resp.redirect_location = resp.get_redirect_location()
  1939. else:
  1940. resp.redirect_location = resp_url if resp_url != url else ""
  1941. return resp, resp.read
  1942. HttpGitClient = Urllib3HttpGitClient
  1943. def _win32_url_to_path(parsed) -> str:
  1944. """Convert a file: URL to a path.
  1945. https://datatracker.ietf.org/doc/html/rfc8089
  1946. """
  1947. assert sys.platform == "win32" or os.name == "nt"
  1948. assert parsed.scheme == "file"
  1949. _, netloc, path, _, _, _ = parsed
  1950. if netloc == "localhost" or not netloc:
  1951. netloc = ""
  1952. elif (
  1953. netloc
  1954. and len(netloc) >= 2
  1955. and netloc[0].isalpha()
  1956. and netloc[1:2] in (":", ":/")
  1957. ):
  1958. # file://C:/foo.bar/baz or file://C://foo.bar//baz
  1959. netloc = netloc[:2]
  1960. else:
  1961. raise NotImplementedError("Non-local file URLs are not supported")
  1962. global url2pathname
  1963. if url2pathname is None:
  1964. from urllib.request import url2pathname # type: ignore
  1965. return url2pathname(netloc + path) # type: ignore
  1966. def get_transport_and_path_from_url(
  1967. url: str, config: Optional[Config] = None,
  1968. operation: Optional[str] = None, **kwargs) -> Tuple[GitClient, str]:
  1969. """Obtain a git client from a URL.
  1970. Args:
  1971. url: URL to open (a unicode string)
  1972. config: Optional config object
  1973. operation: Kind of operation that'll be performed; "pull" or "push"
  1974. thin_packs: Whether or not thin packs should be retrieved
  1975. report_activity: Optional callback for reporting transport
  1976. activity.
  1977. Returns:
  1978. Tuple with client instance and relative path.
  1979. """
  1980. if config is not None:
  1981. url = apply_instead_of(config, url, push=(operation == "push"))
  1982. return _get_transport_and_path_from_url(
  1983. url, config=config, operation=operation, **kwargs)
  1984. def _get_transport_and_path_from_url(url, config, operation, **kwargs):
  1985. parsed = urlparse(url)
  1986. if parsed.scheme == "git":
  1987. return (TCPGitClient.from_parsedurl(parsed, **kwargs), parsed.path)
  1988. elif parsed.scheme in ("git+ssh", "ssh"):
  1989. return SSHGitClient.from_parsedurl(parsed, **kwargs), parsed.path
  1990. elif parsed.scheme in ("http", "https"):
  1991. return (
  1992. HttpGitClient.from_parsedurl(parsed, config=config, **kwargs),
  1993. parsed.path,
  1994. )
  1995. elif parsed.scheme == "file":
  1996. if sys.platform == "win32" or os.name == "nt":
  1997. return default_local_git_client_cls(**kwargs), _win32_url_to_path(parsed)
  1998. return (
  1999. default_local_git_client_cls.from_parsedurl(parsed, **kwargs),
  2000. parsed.path,
  2001. )
  2002. raise ValueError("unknown scheme '%s'" % parsed.scheme)
  2003. def parse_rsync_url(location: str) -> Tuple[Optional[str], str, str]:
  2004. """Parse a rsync-style URL."""
  2005. if ":" in location and "@" not in location:
  2006. # SSH with no user@, zero or one leading slash.
  2007. (host, path) = location.split(":", 1)
  2008. user = None
  2009. elif ":" in location:
  2010. # SSH with user@host:foo.
  2011. user_host, path = location.split(":", 1)
  2012. if "@" in user_host:
  2013. user, host = user_host.rsplit("@", 1)
  2014. else:
  2015. user = None
  2016. host = user_host
  2017. else:
  2018. raise ValueError("not a valid rsync-style URL")
  2019. return (user, host, path)
  2020. def get_transport_and_path(
  2021. location: str,
  2022. config: Optional[Config] = None,
  2023. operation: Optional[str] = None,
  2024. **kwargs: Any
  2025. ) -> Tuple[GitClient, str]:
  2026. """Obtain a git client from a URL.
  2027. Args:
  2028. location: URL or path (a string)
  2029. config: Optional config object
  2030. operation: Kind of operation that'll be performed; "pull" or "push"
  2031. thin_packs: Whether or not thin packs should be retrieved
  2032. report_activity: Optional callback for reporting transport
  2033. activity.
  2034. Returns:
  2035. Tuple with client instance and relative path.
  2036. """
  2037. if config is not None:
  2038. location = apply_instead_of(config, location, push=(operation == "push"))
  2039. # First, try to parse it as a URL
  2040. try:
  2041. return _get_transport_and_path_from_url(
  2042. location, config=config, operation=operation, **kwargs)
  2043. except ValueError:
  2044. pass
  2045. if sys.platform == "win32" and location[0].isalpha() and location[1:3] == ":\\":
  2046. # Windows local path
  2047. return default_local_git_client_cls(**kwargs), location
  2048. try:
  2049. (username, hostname, path) = parse_rsync_url(location)
  2050. except ValueError:
  2051. # Otherwise, assume it's a local path.
  2052. return default_local_git_client_cls(**kwargs), location
  2053. else:
  2054. return SSHGitClient(hostname, username=username, **kwargs), path
  2055. DEFAULT_GIT_CREDENTIALS_PATHS = [
  2056. os.path.expanduser("~/.git-credentials"),
  2057. get_xdg_config_home_path("git", "credentials"),
  2058. ]
  2059. def get_credentials_from_store(
  2060. scheme, hostname, username=None, fnames=DEFAULT_GIT_CREDENTIALS_PATHS
  2061. ):
  2062. for fname in fnames:
  2063. try:
  2064. with open(fname, "rb") as f:
  2065. for line in f:
  2066. parsed_line = urlparse(line.strip())
  2067. if (
  2068. parsed_line.scheme == scheme
  2069. and parsed_line.hostname == hostname
  2070. and (username is None or parsed_line.username == username)
  2071. ):
  2072. return parsed_line.username, parsed_line.password
  2073. except FileNotFoundError:
  2074. # If the file doesn't exist, try the next one.
  2075. continue