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.

FileSender.java 6.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  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. package org.eclipse.jgit.http.server;
  44. import static javax.servlet.http.HttpServletResponse.SC_PARTIAL_CONTENT;
  45. import static javax.servlet.http.HttpServletResponse.SC_REQUESTED_RANGE_NOT_SATISFIABLE;
  46. import static org.eclipse.jgit.util.HttpSupport.HDR_ACCEPT_RANGES;
  47. import static org.eclipse.jgit.util.HttpSupport.HDR_CONTENT_LENGTH;
  48. import static org.eclipse.jgit.util.HttpSupport.HDR_CONTENT_RANGE;
  49. import static org.eclipse.jgit.util.HttpSupport.HDR_IF_RANGE;
  50. import static org.eclipse.jgit.util.HttpSupport.HDR_RANGE;
  51. import java.io.EOFException;
  52. import java.io.File;
  53. import java.io.FileNotFoundException;
  54. import java.io.IOException;
  55. import java.io.OutputStream;
  56. import java.io.RandomAccessFile;
  57. import java.text.MessageFormat;
  58. import java.time.Instant;
  59. import java.util.Enumeration;
  60. import javax.servlet.http.HttpServletRequest;
  61. import javax.servlet.http.HttpServletResponse;
  62. import org.eclipse.jgit.lib.ObjectId;
  63. import org.eclipse.jgit.util.FS;
  64. /**
  65. * Dumps a file over HTTP GET (or its information via HEAD).
  66. * <p>
  67. * Supports a single byte range requested via {@code Range} HTTP header. This
  68. * feature supports a dumb client to resume download of a larger object file.
  69. */
  70. final class FileSender {
  71. private final File path;
  72. private final RandomAccessFile source;
  73. private final Instant lastModified;
  74. private final long fileLen;
  75. private long pos;
  76. private long end;
  77. FileSender(File path) throws FileNotFoundException {
  78. this.path = path;
  79. this.source = new RandomAccessFile(path, "r");
  80. try {
  81. this.lastModified = FS.DETECTED.lastModifiedInstant(path);
  82. this.fileLen = source.getChannel().size();
  83. this.end = fileLen;
  84. } catch (IOException e) {
  85. try {
  86. source.close();
  87. } catch (IOException closeError) {
  88. // Ignore any error closing the stream.
  89. }
  90. final FileNotFoundException r;
  91. r = new FileNotFoundException(MessageFormat.format(HttpServerText.get().cannotGetLengthOf, path));
  92. r.initCause(e);
  93. throw r;
  94. }
  95. }
  96. void close() {
  97. try {
  98. source.close();
  99. } catch (IOException e) {
  100. // Ignore close errors on a read-only stream.
  101. }
  102. }
  103. Instant getLastModified() {
  104. return lastModified;
  105. }
  106. String getTailChecksum() throws IOException {
  107. final int n = 20;
  108. final byte[] buf = new byte[n];
  109. source.seek(fileLen - n);
  110. source.readFully(buf, 0, n);
  111. return ObjectId.fromRaw(buf).getName();
  112. }
  113. void serve(final HttpServletRequest req, final HttpServletResponse rsp,
  114. final boolean sendBody) throws IOException {
  115. if (!initRangeRequest(req, rsp)) {
  116. rsp.sendError(SC_REQUESTED_RANGE_NOT_SATISFIABLE);
  117. return;
  118. }
  119. rsp.setHeader(HDR_ACCEPT_RANGES, "bytes");
  120. rsp.setHeader(HDR_CONTENT_LENGTH, Long.toString(end - pos));
  121. if (sendBody) {
  122. try (OutputStream out = rsp.getOutputStream()) {
  123. final byte[] buf = new byte[4096];
  124. source.seek(pos);
  125. while (pos < end) {
  126. final int r = (int) Math.min(buf.length, end - pos);
  127. final int n = source.read(buf, 0, r);
  128. if (n < 0) {
  129. throw new EOFException(MessageFormat.format(HttpServerText.get().unexpectedeOFOn, path));
  130. }
  131. out.write(buf, 0, n);
  132. pos += n;
  133. }
  134. out.flush();
  135. }
  136. }
  137. }
  138. private boolean initRangeRequest(final HttpServletRequest req,
  139. final HttpServletResponse rsp) throws IOException {
  140. final Enumeration<String> rangeHeaders = getRange(req);
  141. if (!rangeHeaders.hasMoreElements()) {
  142. // No range headers, the request is fine.
  143. return true;
  144. }
  145. final String range = rangeHeaders.nextElement();
  146. if (rangeHeaders.hasMoreElements()) {
  147. // To simplify the code we support only one range.
  148. return false;
  149. }
  150. final int eq = range.indexOf('=');
  151. final int dash = range.indexOf('-');
  152. if (eq < 0 || dash < 0 || !range.startsWith("bytes=")) {
  153. return false;
  154. }
  155. final String ifRange = req.getHeader(HDR_IF_RANGE);
  156. if (ifRange != null && !getTailChecksum().equals(ifRange)) {
  157. // If the client asked us to verify the ETag and its not
  158. // what they expected we need to send the entire content.
  159. return true;
  160. }
  161. try {
  162. if (eq + 1 == dash) {
  163. // "bytes=-500" means last 500 bytes
  164. pos = Long.parseLong(range.substring(dash + 1));
  165. pos = fileLen - pos;
  166. } else {
  167. // "bytes=500-" (position 500 to end)
  168. // "bytes=500-1000" (position 500 to 1000)
  169. pos = Long.parseLong(range.substring(eq + 1, dash));
  170. if (dash < range.length() - 1) {
  171. end = Long.parseLong(range.substring(dash + 1));
  172. end++; // range was inclusive, want exclusive
  173. }
  174. }
  175. } catch (NumberFormatException e) {
  176. // We probably hit here because of a non-digit such as
  177. // "," appearing at the end of the first range telling
  178. // us there is a second range following. To simplify
  179. // the code we support only one range.
  180. return false;
  181. }
  182. if (end > fileLen) {
  183. end = fileLen;
  184. }
  185. if (pos >= end) {
  186. return false;
  187. }
  188. rsp.setStatus(SC_PARTIAL_CONTENT);
  189. rsp.setHeader(HDR_CONTENT_RANGE, "bytes " + pos + "-" + (end - 1) + "/"
  190. + fileLen);
  191. source.seek(pos);
  192. return true;
  193. }
  194. private static Enumeration<String> getRange(HttpServletRequest req) {
  195. return req.getHeaders(HDR_RANGE);
  196. }
  197. }