You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TransportLocal.java 14KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. /*
  2. * Copyright (C) 2007, Dave Watson <dwatson@mimvista.com>
  3. * Copyright (C) 2008-2010, Google Inc.
  4. * Copyright (C) 2008, Marek Zawirski <marek.zawirski@gmail.com>
  5. * Copyright (C) 2008, Robin Rosenberg <robin.rosenberg@dewire.com>
  6. * Copyright (C) 2008, Shawn O. Pearce <spearce@spearce.org>
  7. * and other copyright owners as documented in the project's IP log.
  8. *
  9. * This program and the accompanying materials are made available
  10. * under the terms of the Eclipse Distribution License v1.0 which
  11. * accompanies this distribution, is reproduced below, and is
  12. * available at http://www.eclipse.org/org/documents/edl-v10.php
  13. *
  14. * All rights reserved.
  15. *
  16. * Redistribution and use in source and binary forms, with or
  17. * without modification, are permitted provided that the following
  18. * conditions are met:
  19. *
  20. * - Redistributions of source code must retain the above copyright
  21. * notice, this list of conditions and the following disclaimer.
  22. *
  23. * - Redistributions in binary form must reproduce the above
  24. * copyright notice, this list of conditions and the following
  25. * disclaimer in the documentation and/or other materials provided
  26. * with the distribution.
  27. *
  28. * - Neither the name of the Eclipse Foundation, Inc. nor the
  29. * names of its contributors may be used to endorse or promote
  30. * products derived from this software without specific prior
  31. * written permission.
  32. *
  33. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  34. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  35. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  36. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  37. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  38. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  39. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  40. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  41. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  42. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  43. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  44. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  45. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  46. */
  47. package org.eclipse.jgit.transport;
  48. import java.io.BufferedInputStream;
  49. import java.io.File;
  50. import java.io.IOException;
  51. import java.io.InputStream;
  52. import java.io.OutputStream;
  53. import java.io.PipedInputStream;
  54. import java.io.PipedOutputStream;
  55. import java.util.Collections;
  56. import java.util.Map;
  57. import java.util.Set;
  58. import org.eclipse.jgit.errors.NoRemoteRepositoryException;
  59. import org.eclipse.jgit.errors.NotSupportedException;
  60. import org.eclipse.jgit.errors.TransportException;
  61. import org.eclipse.jgit.internal.JGitText;
  62. import org.eclipse.jgit.lib.Repository;
  63. import org.eclipse.jgit.lib.RepositoryBuilder;
  64. import org.eclipse.jgit.lib.RepositoryCache;
  65. import org.eclipse.jgit.util.FS;
  66. import org.eclipse.jgit.util.io.MessageWriter;
  67. import org.eclipse.jgit.util.io.SafeBufferedOutputStream;
  68. import org.eclipse.jgit.util.io.StreamCopyThread;
  69. /**
  70. * Transport to access a local directory as though it were a remote peer.
  71. * <p>
  72. * This transport is suitable for use on the local system, where the caller has
  73. * direct read or write access to the "remote" repository.
  74. * <p>
  75. * By default this transport works by spawning a helper thread within the same
  76. * JVM, and processes the data transfer using a shared memory buffer between the
  77. * calling thread and the helper thread. This is a pure-Java implementation
  78. * which does not require forking an external process.
  79. * <p>
  80. * However, during {@link #openFetch()}, if the Transport has configured
  81. * {@link Transport#getOptionUploadPack()} to be anything other than
  82. * <code>"git-upload-pack"</code> or <code>"git upload-pack"</code>, this
  83. * implementation will fork and execute the external process, using an operating
  84. * system pipe to transfer data.
  85. * <p>
  86. * Similarly, during {@link #openPush()}, if the Transport has configured
  87. * {@link Transport#getOptionReceivePack()} to be anything other than
  88. * <code>"git-receive-pack"</code> or <code>"git receive-pack"</code>, this
  89. * implementation will fork and execute the external process, using an operating
  90. * system pipe to transfer data.
  91. */
  92. class TransportLocal extends Transport implements PackTransport {
  93. static final TransportProtocol PROTO_LOCAL = new TransportProtocol() {
  94. @Override
  95. public String getName() {
  96. return JGitText.get().transportProtoLocal;
  97. }
  98. public Set<String> getSchemes() {
  99. return Collections.singleton("file"); //$NON-NLS-1$
  100. }
  101. @Override
  102. public boolean canHandle(URIish uri, Repository local, String remoteName) {
  103. if (uri.getPath() == null
  104. || uri.getPort() > 0
  105. || uri.getUser() != null
  106. || uri.getPass() != null
  107. || uri.getHost() != null
  108. || (uri.getScheme() != null && !getSchemes().contains(uri.getScheme())))
  109. return false;
  110. return true;
  111. }
  112. @Override
  113. public Transport open(URIish uri, Repository local, String remoteName)
  114. throws NoRemoteRepositoryException {
  115. File localPath = local.isBare() ? local.getDirectory() : local.getWorkTree();
  116. File path = local.getFS().resolve(localPath, uri.getPath());
  117. // If the reference is to a local file, C Git behavior says
  118. // assume this is a bundle, since repositories are directories.
  119. if (path.isFile())
  120. return new TransportBundleFile(local, uri, path);
  121. File gitDir = RepositoryCache.FileKey.resolve(path, local.getFS());
  122. if (gitDir == null)
  123. throw new NoRemoteRepositoryException(uri, JGitText.get().notFound);
  124. return new TransportLocal(local, uri, gitDir);
  125. }
  126. public Transport open(URIish uri) throws NotSupportedException,
  127. TransportException {
  128. File path = FS.DETECTED.resolve(new File("."), uri.getPath()); //$NON-NLS-1$
  129. // If the reference is to a local file, C Git behavior says
  130. // assume this is a bundle, since repositories are directories.
  131. if (path.isFile())
  132. return new TransportBundleFile(uri, path);
  133. File gitDir = RepositoryCache.FileKey.resolve(path, FS.DETECTED);
  134. if (gitDir == null)
  135. throw new NoRemoteRepositoryException(uri,
  136. JGitText.get().notFound);
  137. return new TransportLocal(uri, gitDir);
  138. }
  139. };
  140. private final File remoteGitDir;
  141. TransportLocal(Repository local, URIish uri, File gitDir) {
  142. super(local, uri);
  143. remoteGitDir = gitDir;
  144. }
  145. TransportLocal(URIish uri, File gitDir) {
  146. super(uri);
  147. remoteGitDir = gitDir;
  148. }
  149. UploadPack createUploadPack(final Repository dst) {
  150. return new UploadPack(dst);
  151. }
  152. ReceivePack createReceivePack(final Repository dst) {
  153. return new ReceivePack(dst);
  154. }
  155. @Override
  156. public FetchConnection openFetch() throws TransportException {
  157. final String up = getOptionUploadPack();
  158. if ("git-upload-pack".equals(up) || "git upload-pack".equals(up)) //$NON-NLS-1$ //$NON-NLS-2$
  159. return new InternalLocalFetchConnection();
  160. return new ForkLocalFetchConnection();
  161. }
  162. @Override
  163. public PushConnection openPush() throws NotSupportedException,
  164. TransportException {
  165. final String rp = getOptionReceivePack();
  166. if ("git-receive-pack".equals(rp) || "git receive-pack".equals(rp)) //$NON-NLS-1$ //$NON-NLS-2$
  167. return new InternalLocalPushConnection();
  168. return new ForkLocalPushConnection();
  169. }
  170. @Override
  171. public void close() {
  172. // Resources must be established per-connection.
  173. }
  174. protected Process spawn(final String cmd)
  175. throws TransportException {
  176. try {
  177. String[] args = { "." }; //$NON-NLS-1$
  178. ProcessBuilder proc = local.getFS().runInShell(cmd, args);
  179. proc.directory(remoteGitDir);
  180. // Remove the same variables CGit does.
  181. Map<String, String> env = proc.environment();
  182. env.remove("GIT_ALTERNATE_OBJECT_DIRECTORIES"); //$NON-NLS-1$
  183. env.remove("GIT_CONFIG"); //$NON-NLS-1$
  184. env.remove("GIT_CONFIG_PARAMETERS"); //$NON-NLS-1$
  185. env.remove("GIT_DIR"); //$NON-NLS-1$
  186. env.remove("GIT_WORK_TREE"); //$NON-NLS-1$
  187. env.remove("GIT_GRAFT_FILE"); //$NON-NLS-1$
  188. env.remove("GIT_INDEX_FILE"); //$NON-NLS-1$
  189. env.remove("GIT_NO_REPLACE_OBJECTS"); //$NON-NLS-1$
  190. return proc.start();
  191. } catch (IOException err) {
  192. throw new TransportException(uri, err.getMessage(), err);
  193. }
  194. }
  195. class InternalLocalFetchConnection extends BasePackFetchConnection {
  196. private Thread worker;
  197. InternalLocalFetchConnection() throws TransportException {
  198. super(TransportLocal.this);
  199. final Repository dst;
  200. try {
  201. dst = new RepositoryBuilder().setGitDir(remoteGitDir).build();
  202. } catch (IOException err) {
  203. throw new TransportException(uri, JGitText.get().notAGitDirectory);
  204. }
  205. final PipedInputStream in_r;
  206. final PipedOutputStream in_w;
  207. final PipedInputStream out_r;
  208. final PipedOutputStream out_w;
  209. try {
  210. in_r = new PipedInputStream();
  211. in_w = new PipedOutputStream(in_r);
  212. out_r = new PipedInputStream() {
  213. // The client (BasePackFetchConnection) can write
  214. // a huge burst before it reads again. We need to
  215. // force the buffer to be big enough, otherwise it
  216. // will deadlock both threads.
  217. {
  218. buffer = new byte[MIN_CLIENT_BUFFER];
  219. }
  220. };
  221. out_w = new PipedOutputStream(out_r);
  222. } catch (IOException err) {
  223. dst.close();
  224. throw new TransportException(uri, JGitText.get().cannotConnectPipes, err);
  225. }
  226. worker = new Thread("JGit-Upload-Pack") { //$NON-NLS-1$
  227. public void run() {
  228. try {
  229. final UploadPack rp = createUploadPack(dst);
  230. rp.upload(out_r, in_w, null);
  231. } catch (IOException err) {
  232. // Client side of the pipes should report the problem.
  233. err.printStackTrace();
  234. } catch (RuntimeException err) {
  235. // Clients side will notice we went away, and report.
  236. err.printStackTrace();
  237. } finally {
  238. try {
  239. out_r.close();
  240. } catch (IOException e2) {
  241. // Ignore close failure, we probably crashed above.
  242. }
  243. try {
  244. in_w.close();
  245. } catch (IOException e2) {
  246. // Ignore close failure, we probably crashed above.
  247. }
  248. dst.close();
  249. }
  250. }
  251. };
  252. worker.start();
  253. init(in_r, out_w);
  254. readAdvertisedRefs();
  255. }
  256. @Override
  257. public void close() {
  258. super.close();
  259. if (worker != null) {
  260. try {
  261. worker.join();
  262. } catch (InterruptedException ie) {
  263. // Stop waiting and return anyway.
  264. } finally {
  265. worker = null;
  266. }
  267. }
  268. }
  269. }
  270. class ForkLocalFetchConnection extends BasePackFetchConnection {
  271. private Process uploadPack;
  272. private Thread errorReaderThread;
  273. ForkLocalFetchConnection() throws TransportException {
  274. super(TransportLocal.this);
  275. final MessageWriter msg = new MessageWriter();
  276. setMessageWriter(msg);
  277. uploadPack = spawn(getOptionUploadPack());
  278. final InputStream upErr = uploadPack.getErrorStream();
  279. errorReaderThread = new StreamCopyThread(upErr, msg.getRawStream());
  280. errorReaderThread.start();
  281. InputStream upIn = uploadPack.getInputStream();
  282. OutputStream upOut = uploadPack.getOutputStream();
  283. upIn = new BufferedInputStream(upIn);
  284. upOut = new SafeBufferedOutputStream(upOut);
  285. init(upIn, upOut);
  286. readAdvertisedRefs();
  287. }
  288. @Override
  289. public void close() {
  290. super.close();
  291. if (uploadPack != null) {
  292. try {
  293. uploadPack.waitFor();
  294. } catch (InterruptedException ie) {
  295. // Stop waiting and return anyway.
  296. } finally {
  297. uploadPack = null;
  298. }
  299. }
  300. if (errorReaderThread != null) {
  301. try {
  302. errorReaderThread.join();
  303. } catch (InterruptedException e) {
  304. // Stop waiting and return anyway.
  305. } finally {
  306. errorReaderThread = null;
  307. }
  308. }
  309. }
  310. }
  311. class InternalLocalPushConnection extends BasePackPushConnection {
  312. private Thread worker;
  313. InternalLocalPushConnection() throws TransportException {
  314. super(TransportLocal.this);
  315. final Repository dst;
  316. try {
  317. dst = new RepositoryBuilder().setGitDir(remoteGitDir).build();
  318. } catch (IOException err) {
  319. throw new TransportException(uri, JGitText.get().notAGitDirectory);
  320. }
  321. final PipedInputStream in_r;
  322. final PipedOutputStream in_w;
  323. final PipedInputStream out_r;
  324. final PipedOutputStream out_w;
  325. try {
  326. in_r = new PipedInputStream();
  327. in_w = new PipedOutputStream(in_r);
  328. out_r = new PipedInputStream();
  329. out_w = new PipedOutputStream(out_r);
  330. } catch (IOException err) {
  331. dst.close();
  332. throw new TransportException(uri, JGitText.get().cannotConnectPipes, err);
  333. }
  334. worker = new Thread("JGit-Receive-Pack") { //$NON-NLS-1$
  335. public void run() {
  336. try {
  337. final ReceivePack rp = createReceivePack(dst);
  338. rp.receive(out_r, in_w, System.err);
  339. } catch (IOException err) {
  340. // Client side of the pipes should report the problem.
  341. } catch (RuntimeException err) {
  342. // Clients side will notice we went away, and report.
  343. } finally {
  344. try {
  345. out_r.close();
  346. } catch (IOException e2) {
  347. // Ignore close failure, we probably crashed above.
  348. }
  349. try {
  350. in_w.close();
  351. } catch (IOException e2) {
  352. // Ignore close failure, we probably crashed above.
  353. }
  354. dst.close();
  355. }
  356. }
  357. };
  358. worker.start();
  359. init(in_r, out_w);
  360. readAdvertisedRefs();
  361. }
  362. @Override
  363. public void close() {
  364. super.close();
  365. if (worker != null) {
  366. try {
  367. worker.join();
  368. } catch (InterruptedException ie) {
  369. // Stop waiting and return anyway.
  370. } finally {
  371. worker = null;
  372. }
  373. }
  374. }
  375. }
  376. class ForkLocalPushConnection extends BasePackPushConnection {
  377. private Process receivePack;
  378. private Thread errorReaderThread;
  379. ForkLocalPushConnection() throws TransportException {
  380. super(TransportLocal.this);
  381. final MessageWriter msg = new MessageWriter();
  382. setMessageWriter(msg);
  383. receivePack = spawn(getOptionReceivePack());
  384. final InputStream rpErr = receivePack.getErrorStream();
  385. errorReaderThread = new StreamCopyThread(rpErr, msg.getRawStream());
  386. errorReaderThread.start();
  387. InputStream rpIn = receivePack.getInputStream();
  388. OutputStream rpOut = receivePack.getOutputStream();
  389. rpIn = new BufferedInputStream(rpIn);
  390. rpOut = new SafeBufferedOutputStream(rpOut);
  391. init(rpIn, rpOut);
  392. readAdvertisedRefs();
  393. }
  394. @Override
  395. public void close() {
  396. super.close();
  397. if (receivePack != null) {
  398. try {
  399. receivePack.waitFor();
  400. } catch (InterruptedException ie) {
  401. // Stop waiting and return anyway.
  402. } finally {
  403. receivePack = null;
  404. }
  405. }
  406. if (errorReaderThread != null) {
  407. try {
  408. errorReaderThread.join();
  409. } catch (InterruptedException e) {
  410. // Stop waiting and return anyway.
  411. } finally {
  412. errorReaderThread = null;
  413. }
  414. }
  415. }
  416. }
  417. }