View Javadoc
1   /*
2    * Copyright (C) 2008-2009, Google Inc.
3    * and other copyright owners as documented in the project's IP log.
4    *
5    * This program and the accompanying materials are made available
6    * under the terms of the Eclipse Distribution License v1.0 which
7    * accompanies this distribution, is reproduced below, and is
8    * available at http://www.eclipse.org/org/documents/edl-v10.php
9    *
10   * All rights reserved.
11   *
12   * Redistribution and use in source and binary forms, with or
13   * without modification, are permitted provided that the following
14   * conditions are met:
15   *
16   * - Redistributions of source code must retain the above copyright
17   *   notice, this list of conditions and the following disclaimer.
18   *
19   * - Redistributions in binary form must reproduce the above
20   *   copyright notice, this list of conditions and the following
21   *   disclaimer in the documentation and/or other materials provided
22   *   with the distribution.
23   *
24   * - Neither the name of the Eclipse Foundation, Inc. nor the
25   *   names of its contributors may be used to endorse or promote
26   *   products derived from this software without specific prior
27   *   written permission.
28   *
29   * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
30   * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
31   * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
32   * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
33   * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
34   * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
35   * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
36   * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37   * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
38   * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39   * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
40   * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
41   * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42   */
43  
44  package org.eclipse.jgit.transport;
45  
46  import java.io.IOException;
47  import java.io.InputStream;
48  import java.io.InterruptedIOException;
49  import java.io.OutputStream;
50  import java.net.InetAddress;
51  import java.net.InetSocketAddress;
52  import java.net.ServerSocket;
53  import java.net.Socket;
54  import java.net.SocketAddress;
55  
56  import org.eclipse.jgit.errors.RepositoryNotFoundException;
57  import org.eclipse.jgit.internal.JGitText;
58  import org.eclipse.jgit.lib.PersonIdent;
59  import org.eclipse.jgit.lib.Repository;
60  import org.eclipse.jgit.storage.pack.PackConfig;
61  import org.eclipse.jgit.transport.resolver.ReceivePackFactory;
62  import org.eclipse.jgit.transport.resolver.RepositoryResolver;
63  import org.eclipse.jgit.transport.resolver.ServiceNotAuthorizedException;
64  import org.eclipse.jgit.transport.resolver.ServiceNotEnabledException;
65  import org.eclipse.jgit.transport.resolver.UploadPackFactory;
66  
67  /** Basic daemon for the anonymous <code>git://</code> transport protocol. */
68  public class Daemon {
69  	/** 9418: IANA assigned port number for Git. */
70  	public static final int DEFAULT_PORT = 9418;
71  
72  	private static final int BACKLOG = 5;
73  
74  	private InetSocketAddress myAddress;
75  
76  	private final DaemonService[] services;
77  
78  	private final ThreadGroup processors;
79  
80  	private boolean run;
81  
82  	private Thread acceptThread;
83  
84  	private int timeout;
85  
86  	private PackConfig packConfig;
87  
88  	private volatile RepositoryResolver<DaemonClient> repositoryResolver;
89  
90  	private volatile UploadPackFactory<DaemonClient> uploadPackFactory;
91  
92  	private volatile ReceivePackFactory<DaemonClient> receivePackFactory;
93  
94  	/** Configure a daemon to listen on any available network port. */
95  	public Daemon() {
96  		this(null);
97  	}
98  
99  	/**
100 	 * Configure a new daemon for the specified network address.
101 	 *
102 	 * @param addr
103 	 *            address to listen for connections on. If null, any available
104 	 *            port will be chosen on all network interfaces.
105 	 */
106 	@SuppressWarnings("unchecked")
107 	public Daemon(final InetSocketAddress addr) {
108 		myAddress = addr;
109 		processors = new ThreadGroup("Git-Daemon"); //$NON-NLS-1$
110 
111 		repositoryResolver = (RepositoryResolver<DaemonClient>) RepositoryResolver.NONE;
112 
113 		uploadPackFactory = new UploadPackFactory<DaemonClient>() {
114 			public UploadPack create(DaemonClient req, Repository db)
115 					throws ServiceNotEnabledException,
116 					ServiceNotAuthorizedException {
117 				UploadPack up = new UploadPack(db);
118 				up.setTimeout(getTimeout());
119 				up.setPackConfig(getPackConfig());
120 				return up;
121 			}
122 		};
123 
124 		receivePackFactory = new ReceivePackFactory<DaemonClient>() {
125 			public ReceivePack create(DaemonClient req, Repository db)
126 					throws ServiceNotEnabledException,
127 					ServiceNotAuthorizedException {
128 				ReceivePack rp = new ReceivePack(db);
129 
130 				InetAddress peer = req.getRemoteAddress();
131 				String host = peer.getCanonicalHostName();
132 				if (host == null)
133 					host = peer.getHostAddress();
134 				String name = "anonymous"; //$NON-NLS-1$
135 				String email = name + "@" + host; //$NON-NLS-1$
136 				rp.setRefLogIdent(new PersonIdent(name, email));
137 				rp.setTimeout(getTimeout());
138 
139 				return rp;
140 			}
141 		};
142 
143 		services = new DaemonService[] {
144 				new DaemonService("upload-pack", "uploadpack") { //$NON-NLS-1$ //$NON-NLS-2$
145 					{
146 						setEnabled(true);
147 					}
148 
149 					@Override
150 					protected void execute(final DaemonClient dc,
151 							final Repository db) throws IOException,
152 							ServiceNotEnabledException,
153 							ServiceNotAuthorizedException {
154 						UploadPack up = uploadPackFactory.create(dc, db);
155 						InputStream in = dc.getInputStream();
156 						OutputStream out = dc.getOutputStream();
157 						up.upload(in, out, null);
158 					}
159 				}, new DaemonService("receive-pack", "receivepack") { //$NON-NLS-1$ //$NON-NLS-2$
160 					{
161 						setEnabled(false);
162 					}
163 
164 					@Override
165 					protected void execute(final DaemonClient dc,
166 							final Repository db) throws IOException,
167 							ServiceNotEnabledException,
168 							ServiceNotAuthorizedException {
169 						ReceivePack rp = receivePackFactory.create(dc, db);
170 						InputStream in = dc.getInputStream();
171 						OutputStream out = dc.getOutputStream();
172 						rp.receive(in, out, null);
173 					}
174 				} };
175 	}
176 
177 	/** @return the address connections are received on. */
178 	public synchronized InetSocketAddress getAddress() {
179 		return myAddress;
180 	}
181 
182 	/**
183 	 * Lookup a supported service so it can be reconfigured.
184 	 *
185 	 * @param name
186 	 *            name of the service; e.g. "receive-pack"/"git-receive-pack" or
187 	 *            "upload-pack"/"git-upload-pack".
188 	 * @return the service; null if this daemon implementation doesn't support
189 	 *         the requested service type.
190 	 */
191 	public synchronized DaemonService getService(String name) {
192 		if (!name.startsWith("git-")) //$NON-NLS-1$
193 			name = "git-" + name; //$NON-NLS-1$
194 		for (final DaemonService s : services) {
195 			if (s.getCommandName().equals(name))
196 				return s;
197 		}
198 		return null;
199 	}
200 
201 	/** @return timeout (in seconds) before aborting an IO operation. */
202 	public int getTimeout() {
203 		return timeout;
204 	}
205 
206 	/**
207 	 * Set the timeout before willing to abort an IO call.
208 	 *
209 	 * @param seconds
210 	 *            number of seconds to wait (with no data transfer occurring)
211 	 *            before aborting an IO read or write operation with the
212 	 *            connected client.
213 	 */
214 	public void setTimeout(final int seconds) {
215 		timeout = seconds;
216 	}
217 
218 	/** @return configuration controlling packing, may be null. */
219 	public PackConfig getPackConfig() {
220 		return packConfig;
221 	}
222 
223 	/**
224 	 * Set the configuration used by the pack generator.
225 	 *
226 	 * @param pc
227 	 *            configuration controlling packing parameters. If null the
228 	 *            source repository's settings will be used.
229 	 */
230 	public void setPackConfig(PackConfig pc) {
231 		this.packConfig = pc;
232 	}
233 
234 	/**
235 	 * Set the resolver used to locate a repository by name.
236 	 *
237 	 * @param resolver
238 	 *            the resolver instance.
239 	 */
240 	public void setRepositoryResolver(RepositoryResolver<DaemonClient> resolver) {
241 		repositoryResolver = resolver;
242 	}
243 
244 	/**
245 	 * Set the factory to construct and configure per-request UploadPack.
246 	 *
247 	 * @param factory
248 	 *            the factory. If null upload-pack is disabled.
249 	 */
250 	@SuppressWarnings("unchecked")
251 	public void setUploadPackFactory(UploadPackFactory<DaemonClient> factory) {
252 		if (factory != null)
253 			uploadPackFactory = factory;
254 		else
255 			uploadPackFactory = (UploadPackFactory<DaemonClient>) UploadPackFactory.DISABLED;
256 	}
257 
258 	/**
259 	 * Set the factory to construct and configure per-request ReceivePack.
260 	 *
261 	 * @param factory
262 	 *            the factory. If null receive-pack is disabled.
263 	 */
264 	@SuppressWarnings("unchecked")
265 	public void setReceivePackFactory(ReceivePackFactory<DaemonClient> factory) {
266 		if (factory != null)
267 			receivePackFactory = factory;
268 		else
269 			receivePackFactory = (ReceivePackFactory<DaemonClient>) ReceivePackFactory.DISABLED;
270 	}
271 
272 	/**
273 	 * Start this daemon on a background thread.
274 	 *
275 	 * @throws IOException
276 	 *             the server socket could not be opened.
277 	 * @throws IllegalStateException
278 	 *             the daemon is already running.
279 	 */
280 	public synchronized void start() throws IOException {
281 		if (acceptThread != null)
282 			throw new IllegalStateException(JGitText.get().daemonAlreadyRunning);
283 
284 		final ServerSocket listenSock = new ServerSocket(
285 				myAddress != null ? myAddress.getPort() : 0, BACKLOG,
286 				myAddress != null ? myAddress.getAddress() : null);
287 		myAddress = (InetSocketAddress) listenSock.getLocalSocketAddress();
288 
289 		run = true;
290 		acceptThread = new Thread(processors, "Git-Daemon-Accept") { //$NON-NLS-1$
291 			public void run() {
292 				while (isRunning()) {
293 					try {
294 						startClient(listenSock.accept());
295 					} catch (InterruptedIOException e) {
296 						// Test again to see if we should keep accepting.
297 					} catch (IOException e) {
298 						break;
299 					}
300 				}
301 
302 				try {
303 					listenSock.close();
304 				} catch (IOException err) {
305 					//
306 				} finally {
307 					synchronized (Daemon.this) {
308 						acceptThread = null;
309 					}
310 				}
311 			}
312 		};
313 		acceptThread.start();
314 	}
315 
316 	/** @return true if this daemon is receiving connections. */
317 	public synchronized boolean isRunning() {
318 		return run;
319 	}
320 
321 	/** Stop this daemon. */
322 	public synchronized void stop() {
323 		if (acceptThread != null) {
324 			run = false;
325 			acceptThread.interrupt();
326 		}
327 	}
328 
329 	private void startClient(final Socket s) {
330 		final DaemonClient dc = new DaemonClient(this);
331 
332 		final SocketAddress peer = s.getRemoteSocketAddress();
333 		if (peer instanceof InetSocketAddress)
334 			dc.setRemoteAddress(((InetSocketAddress) peer).getAddress());
335 
336 		new Thread(processors, "Git-Daemon-Client " + peer.toString()) { //$NON-NLS-1$
337 			public void run() {
338 				try {
339 					dc.execute(s);
340 				} catch (ServiceNotEnabledException e) {
341 					// Ignored. Client cannot use this repository.
342 				} catch (ServiceNotAuthorizedException e) {
343 					// Ignored. Client cannot use this repository.
344 				} catch (IOException e) {
345 					// Ignore unexpected IO exceptions from clients
346 				} finally {
347 					try {
348 						s.getInputStream().close();
349 					} catch (IOException e) {
350 						// Ignore close exceptions
351 					}
352 					try {
353 						s.getOutputStream().close();
354 					} catch (IOException e) {
355 						// Ignore close exceptions
356 					}
357 				}
358 			}
359 		}.start();
360 	}
361 
362 	synchronized DaemonService matchService(final String cmd) {
363 		for (final DaemonService d : services) {
364 			if (d.handles(cmd))
365 				return d;
366 		}
367 		return null;
368 	}
369 
370 	Repository openRepository(DaemonClient client, String name)
371 			throws ServiceMayNotContinueException {
372 		// Assume any attempt to use \ was by a Windows client
373 		// and correct to the more typical / used in Git URIs.
374 		//
375 		name = name.replace('\\', '/');
376 
377 		// git://thishost/path should always be name="/path" here
378 		//
379 		if (!name.startsWith("/")) //$NON-NLS-1$
380 			return null;
381 
382 		try {
383 			return repositoryResolver.open(client, name.substring(1));
384 		} catch (RepositoryNotFoundException e) {
385 			// null signals it "wasn't found", which is all that is suitable
386 			// for the remote client to know.
387 			return null;
388 		} catch (ServiceNotAuthorizedException e) {
389 			// null signals it "wasn't found", which is all that is suitable
390 			// for the remote client to know.
391 			return null;
392 		} catch (ServiceNotEnabledException e) {
393 			// null signals it "wasn't found", which is all that is suitable
394 			// for the remote client to know.
395 			return null;
396 		}
397 	}
398 }