View Javadoc
1   /*
2    * Copyright (C) 2009-2010, 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.http.server;
45  
46  import static javax.servlet.http.HttpServletResponse.SC_BAD_REQUEST;
47  import static javax.servlet.http.HttpServletResponse.SC_FORBIDDEN;
48  import static javax.servlet.http.HttpServletResponse.SC_INTERNAL_SERVER_ERROR;
49  import static javax.servlet.http.HttpServletResponse.SC_UNAUTHORIZED;
50  import static javax.servlet.http.HttpServletResponse.SC_UNSUPPORTED_MEDIA_TYPE;
51  import static org.eclipse.jgit.http.server.ClientVersionUtil.hasChunkedEncodingRequestBug;
52  import static org.eclipse.jgit.http.server.ClientVersionUtil.parseVersion;
53  import static org.eclipse.jgit.http.server.GitSmartHttpTools.UPLOAD_PACK;
54  import static org.eclipse.jgit.http.server.GitSmartHttpTools.UPLOAD_PACK_REQUEST_TYPE;
55  import static org.eclipse.jgit.http.server.GitSmartHttpTools.UPLOAD_PACK_RESULT_TYPE;
56  import static org.eclipse.jgit.http.server.GitSmartHttpTools.sendError;
57  import static org.eclipse.jgit.http.server.ServletUtils.ATTRIBUTE_HANDLER;
58  import static org.eclipse.jgit.http.server.ServletUtils.consumeRequestBody;
59  import static org.eclipse.jgit.http.server.ServletUtils.getInputStream;
60  import static org.eclipse.jgit.http.server.ServletUtils.getRepository;
61  import static org.eclipse.jgit.util.HttpSupport.HDR_USER_AGENT;
62  
63  import java.io.IOException;
64  import java.text.MessageFormat;
65  import java.util.List;
66  
67  import javax.servlet.Filter;
68  import javax.servlet.FilterChain;
69  import javax.servlet.FilterConfig;
70  import javax.servlet.ServletException;
71  import javax.servlet.ServletRequest;
72  import javax.servlet.ServletResponse;
73  import javax.servlet.http.HttpServlet;
74  import javax.servlet.http.HttpServletRequest;
75  import javax.servlet.http.HttpServletResponse;
76  
77  import org.eclipse.jgit.lib.Repository;
78  import org.eclipse.jgit.transport.InternalHttpServerGlue;
79  import org.eclipse.jgit.transport.RefAdvertiser.PacketLineOutRefAdvertiser;
80  import org.eclipse.jgit.transport.ServiceMayNotContinueException;
81  import org.eclipse.jgit.transport.UploadPack;
82  import org.eclipse.jgit.transport.UploadPackInternalServerErrorException;
83  import org.eclipse.jgit.transport.resolver.ServiceNotAuthorizedException;
84  import org.eclipse.jgit.transport.resolver.ServiceNotEnabledException;
85  import org.eclipse.jgit.transport.resolver.UploadPackFactory;
86  
87  /** Server side implementation of smart fetch over HTTP. */
88  class UploadPackServlet extends HttpServlet {
89  	private static final long serialVersionUID = 1L;
90  
91  	static class InfoRefs extends SmartServiceInfoRefs {
92  		private final UploadPackFactory<HttpServletRequest> uploadPackFactory;
93  
94  		InfoRefs(UploadPackFactory<HttpServletRequest> uploadPackFactory,
95  				List<Filter> filters) {
96  			super(UPLOAD_PACK, filters);
97  			this.uploadPackFactory = uploadPackFactory;
98  		}
99  
100 		@Override
101 		protected void begin(HttpServletRequest req, Repository db)
102 				throws IOException, ServiceNotEnabledException,
103 				ServiceNotAuthorizedException {
104 			UploadPack up = uploadPackFactory.create(req, db);
105 			InternalHttpServerGlue.setPeerUserAgent(
106 					up,
107 					req.getHeader(HDR_USER_AGENT));
108 			req.setAttribute(ATTRIBUTE_HANDLER, up);
109 		}
110 
111 		@Override
112 		protected void advertise(HttpServletRequest req,
113 				PacketLineOutRefAdvertiser pck) throws IOException,
114 				ServiceNotEnabledException, ServiceNotAuthorizedException {
115 			UploadPack up = (UploadPack) req.getAttribute(ATTRIBUTE_HANDLER);
116 			try {
117 				up.setBiDirectionalPipe(false);
118 				up.sendAdvertisedRefs(pck);
119 			} finally {
120 				up.getRevWalk().close();
121 			}
122 		}
123 	}
124 
125 	static class Factory implements Filter {
126 		private final UploadPackFactory<HttpServletRequest> uploadPackFactory;
127 
128 		Factory(UploadPackFactory<HttpServletRequest> uploadPackFactory) {
129 			this.uploadPackFactory = uploadPackFactory;
130 		}
131 
132 		public void doFilter(ServletRequest request, ServletResponse response,
133 				FilterChain chain) throws IOException, ServletException {
134 			HttpServletRequest req = (HttpServletRequest) request;
135 			HttpServletResponse rsp = (HttpServletResponse) response;
136 			UploadPack rp;
137 			try {
138 				rp = uploadPackFactory.create(req, getRepository(req));
139 			} catch (ServiceNotAuthorizedException e) {
140 				rsp.sendError(SC_UNAUTHORIZED, e.getMessage());
141 				return;
142 			} catch (ServiceNotEnabledException e) {
143 				sendError(req, rsp, SC_FORBIDDEN, e.getMessage());
144 				return;
145 			}
146 
147 			try {
148 				req.setAttribute(ATTRIBUTE_HANDLER, rp);
149 				chain.doFilter(req, rsp);
150 			} finally {
151 				req.removeAttribute(ATTRIBUTE_HANDLER);
152 			}
153 		}
154 
155 		public void init(FilterConfig filterConfig) throws ServletException {
156 			// Nothing.
157 		}
158 
159 		public void destroy() {
160 			// Nothing.
161 		}
162 	}
163 
164 	@Override
165 	public void doPost(final HttpServletRequest req,
166 			final HttpServletResponse rsp) throws IOException {
167 		if (!UPLOAD_PACK_REQUEST_TYPE.equals(req.getContentType())) {
168 			rsp.sendError(SC_UNSUPPORTED_MEDIA_TYPE);
169 			return;
170 		}
171 
172 		int[] version = parseVersion(req.getHeader(HDR_USER_AGENT));
173 		if (hasChunkedEncodingRequestBug(version, req)) {
174 			GitSmartHttpTools.sendError(req, rsp, SC_BAD_REQUEST, "\n\n"
175 					+ HttpServerText.get().clientHas175ChunkedEncodingBug);
176 			return;
177 		}
178 
179 		SmartOutputStream out = new SmartOutputStream(req, rsp, false) {
180 			@Override
181 			public void flush() throws IOException {
182 				doFlush();
183 			}
184 		};
185 
186 		UploadPack up = (UploadPack) req.getAttribute(ATTRIBUTE_HANDLER);
187 		try {
188 			up.setBiDirectionalPipe(false);
189 			rsp.setContentType(UPLOAD_PACK_RESULT_TYPE);
190 
191 			up.upload(getInputStream(req), out, null);
192 			out.close();
193 
194 		} catch (ServiceMayNotContinueException e) {
195 			if (e.isOutput()) {
196 				consumeRequestBody(req);
197 				out.close();
198 			} else if (!rsp.isCommitted()) {
199 				rsp.reset();
200 				sendError(req, rsp, SC_FORBIDDEN, e.getMessage());
201 			}
202 			return;
203 
204 		} catch (UploadPackInternalServerErrorException e) {
205 			// Special case exception, error message was sent to client.
206 			log(up.getRepository(), e.getCause());
207 			consumeRequestBody(req);
208 			out.close();
209 
210 		} catch (Throwable e) {
211 			log(up.getRepository(), e);
212 			if (!rsp.isCommitted()) {
213 				rsp.reset();
214 				sendError(req, rsp, SC_INTERNAL_SERVER_ERROR);
215 			}
216 			return;
217 		}
218 	}
219 
220 	private void log(Repository git, Throwable e) {
221 		getServletContext().log(MessageFormat.format(
222 				HttpServerText.get().internalErrorDuringUploadPack,
223 				ServletUtils.identify(git)), e);
224 	}
225 }