| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
|
| 17 | |
|
| 18 | |
package org.owasp.dependencycheck.utils; |
| 19 | |
|
| 20 | |
import java.io.BufferedOutputStream; |
| 21 | |
import org.slf4j.Logger; |
| 22 | |
import org.slf4j.LoggerFactory; |
| 23 | |
|
| 24 | |
import java.io.File; |
| 25 | |
import java.io.FileOutputStream; |
| 26 | |
import java.io.IOException; |
| 27 | |
import java.io.InputStream; |
| 28 | |
import java.net.HttpURLConnection; |
| 29 | |
import java.net.URISyntaxException; |
| 30 | |
import java.net.URL; |
| 31 | |
import java.security.InvalidAlgorithmParameterException; |
| 32 | |
import java.util.zip.GZIPInputStream; |
| 33 | |
import java.util.zip.InflaterInputStream; |
| 34 | |
|
| 35 | |
import static java.lang.String.format; |
| 36 | |
import static org.owasp.dependencycheck.utils.Settings.KEYS.DOWNLOADER_QUICK_QUERY_TIMESTAMP; |
| 37 | |
import static org.owasp.dependencycheck.utils.Settings.getBoolean; |
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
|
| 42 | |
|
| 43 | |
|
| 44 | |
public final class Downloader { |
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
|
| 49 | 1 | private static final Logger LOGGER = LoggerFactory.getLogger(Downloader.class); |
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
private static final int MAX_REDIRECT_ATTEMPTS = 5; |
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
|
| 58 | |
private static final String HEAD = "HEAD"; |
| 59 | |
|
| 60 | |
|
| 61 | |
|
| 62 | |
|
| 63 | |
private static final String GET = "GET"; |
| 64 | |
|
| 65 | |
|
| 66 | |
|
| 67 | |
|
| 68 | 0 | private Downloader() { |
| 69 | 0 | } |
| 70 | |
|
| 71 | |
|
| 72 | |
|
| 73 | |
|
| 74 | |
|
| 75 | |
|
| 76 | |
|
| 77 | |
|
| 78 | |
public static void fetchFile(URL url, File outputPath) throws DownloadFailedException { |
| 79 | 0 | fetchFile(url, outputPath, true); |
| 80 | 0 | } |
| 81 | |
|
| 82 | |
|
| 83 | |
|
| 84 | |
|
| 85 | |
|
| 86 | |
|
| 87 | |
|
| 88 | |
|
| 89 | |
|
| 90 | |
public static void fetchFile(URL url, File outputPath, boolean useProxy) throws DownloadFailedException { |
| 91 | 0 | if ("file".equalsIgnoreCase(url.getProtocol())) { |
| 92 | |
File file; |
| 93 | |
try { |
| 94 | 0 | file = new File(url.toURI()); |
| 95 | 0 | } catch (URISyntaxException ex) { |
| 96 | 0 | final String msg = format("Download failed, unable to locate '%s'", url.toString()); |
| 97 | 0 | throw new DownloadFailedException(msg); |
| 98 | 0 | } |
| 99 | 0 | if (file.exists()) { |
| 100 | |
try { |
| 101 | 0 | org.apache.commons.io.FileUtils.copyFile(file, outputPath); |
| 102 | 0 | } catch (IOException ex) { |
| 103 | 0 | final String msg = format("Download failed, unable to copy '%s' to '%s'", url.toString(), outputPath.getAbsolutePath()); |
| 104 | 0 | throw new DownloadFailedException(msg); |
| 105 | 0 | } |
| 106 | |
} else { |
| 107 | 0 | final String msg = format("Download failed, file ('%s') does not exist", url.toString()); |
| 108 | 0 | throw new DownloadFailedException(msg); |
| 109 | |
} |
| 110 | 0 | } else { |
| 111 | 0 | HttpURLConnection conn = null; |
| 112 | |
try { |
| 113 | 0 | LOGGER.debug("Attempting download of {}", url.toString()); |
| 114 | 0 | conn = URLConnectionFactory.createHttpURLConnection(url, useProxy); |
| 115 | 0 | conn.setRequestProperty("Accept-Encoding", "gzip, deflate"); |
| 116 | 0 | conn.connect(); |
| 117 | 0 | int status = conn.getResponseCode(); |
| 118 | 0 | int redirectCount = 0; |
| 119 | 0 | while ((status == HttpURLConnection.HTTP_MOVED_TEMP |
| 120 | |
|| status == HttpURLConnection.HTTP_MOVED_PERM |
| 121 | |
|| status == HttpURLConnection.HTTP_SEE_OTHER) |
| 122 | |
&& MAX_REDIRECT_ATTEMPTS > redirectCount++) { |
| 123 | 0 | final String location = conn.getHeaderField("Location"); |
| 124 | |
try { |
| 125 | 0 | conn.disconnect(); |
| 126 | |
} finally { |
| 127 | 0 | conn = null; |
| 128 | 0 | } |
| 129 | 0 | LOGGER.debug("Download is being redirected from {} to {}", url.toString(), location); |
| 130 | 0 | conn = URLConnectionFactory.createHttpURLConnection(new URL(location), useProxy); |
| 131 | 0 | conn.setRequestProperty("Accept-Encoding", "gzip, deflate"); |
| 132 | 0 | conn.connect(); |
| 133 | 0 | status = conn.getResponseCode(); |
| 134 | 0 | } |
| 135 | 0 | if (status != 200) { |
| 136 | |
try { |
| 137 | 0 | conn.disconnect(); |
| 138 | |
} finally { |
| 139 | 0 | conn = null; |
| 140 | 0 | } |
| 141 | 0 | final String msg = format("Error downloading file %s; received response code %s.", url.toString(), status); |
| 142 | 0 | throw new DownloadFailedException(msg); |
| 143 | |
|
| 144 | |
} |
| 145 | 0 | } catch (IOException ex) { |
| 146 | |
try { |
| 147 | 0 | if (conn != null) { |
| 148 | 0 | conn.disconnect(); |
| 149 | |
} |
| 150 | |
} finally { |
| 151 | 0 | conn = null; |
| 152 | 0 | } |
| 153 | 0 | final String msg = format("Error downloading file %s; unable to connect.", url.toString()); |
| 154 | 0 | throw new DownloadFailedException(msg, ex); |
| 155 | 0 | } |
| 156 | |
|
| 157 | 0 | final String encoding = conn.getContentEncoding(); |
| 158 | 0 | BufferedOutputStream writer = null; |
| 159 | 0 | InputStream reader = null; |
| 160 | |
try { |
| 161 | 0 | if (encoding != null && "gzip".equalsIgnoreCase(encoding)) { |
| 162 | 0 | reader = new GZIPInputStream(conn.getInputStream()); |
| 163 | 0 | } else if (encoding != null && "deflate".equalsIgnoreCase(encoding)) { |
| 164 | 0 | reader = new InflaterInputStream(conn.getInputStream()); |
| 165 | |
} else { |
| 166 | 0 | reader = conn.getInputStream(); |
| 167 | |
} |
| 168 | |
|
| 169 | 0 | writer = new BufferedOutputStream(new FileOutputStream(outputPath)); |
| 170 | 0 | final byte[] buffer = new byte[4096]; |
| 171 | |
int bytesRead; |
| 172 | 0 | while ((bytesRead = reader.read(buffer)) > 0) { |
| 173 | 0 | writer.write(buffer, 0, bytesRead); |
| 174 | |
} |
| 175 | 0 | LOGGER.debug("Download of {} complete", url.toString()); |
| 176 | 0 | } catch (IOException ex) { |
| 177 | 0 | analyzeException(ex); |
| 178 | 0 | final String msg = format("Error saving '%s' to file '%s'%nConnection Timeout: %d%nEncoding: %s%n", |
| 179 | |
url.toString(), outputPath.getAbsolutePath(), conn.getConnectTimeout(), encoding); |
| 180 | 0 | throw new DownloadFailedException(msg, ex); |
| 181 | 0 | } catch (Throwable ex) { |
| 182 | 0 | final String msg = format("Unexpected exception saving '%s' to file '%s'%nConnection Timeout: %d%nEncoding: %s%n", |
| 183 | |
url.toString(), outputPath.getAbsolutePath(), conn.getConnectTimeout(), encoding); |
| 184 | 0 | throw new DownloadFailedException(msg, ex); |
| 185 | |
} finally { |
| 186 | 0 | if (writer != null) { |
| 187 | |
try { |
| 188 | 0 | writer.close(); |
| 189 | 0 | } catch (IOException ex) { |
| 190 | 0 | LOGGER.trace("Error closing the writer in Downloader.", ex); |
| 191 | 0 | } |
| 192 | |
} |
| 193 | 0 | if (reader != null) { |
| 194 | |
try { |
| 195 | 0 | reader.close(); |
| 196 | 0 | } catch (IOException ex) { |
| 197 | 0 | LOGGER.trace("Error closing the reader in Downloader.", ex); |
| 198 | 0 | } |
| 199 | |
} |
| 200 | |
try { |
| 201 | 0 | conn.disconnect(); |
| 202 | |
} finally { |
| 203 | 0 | conn = null; |
| 204 | 0 | } |
| 205 | 0 | } |
| 206 | |
} |
| 207 | 0 | } |
| 208 | |
|
| 209 | |
|
| 210 | |
|
| 211 | |
|
| 212 | |
|
| 213 | |
|
| 214 | |
|
| 215 | |
|
| 216 | |
|
| 217 | |
public static long getLastModified(URL url) throws DownloadFailedException { |
| 218 | 1 | long timestamp = 0; |
| 219 | |
|
| 220 | 1 | if ("file".equalsIgnoreCase(url.getProtocol())) { |
| 221 | |
File lastModifiedFile; |
| 222 | |
try { |
| 223 | 1 | lastModifiedFile = new File(url.toURI()); |
| 224 | 0 | } catch (URISyntaxException ex) { |
| 225 | 0 | final String msg = format("Unable to locate '%s'", url.toString()); |
| 226 | 0 | throw new DownloadFailedException(msg); |
| 227 | 1 | } |
| 228 | 1 | timestamp = lastModifiedFile.lastModified(); |
| 229 | 1 | } else { |
| 230 | 0 | final String httpMethod = determineHttpMethod(); |
| 231 | 0 | HttpURLConnection conn = null; |
| 232 | |
try { |
| 233 | 0 | conn = URLConnectionFactory.createHttpURLConnection(url); |
| 234 | 0 | conn.setRequestMethod(httpMethod); |
| 235 | 0 | conn.connect(); |
| 236 | 0 | final int t = conn.getResponseCode(); |
| 237 | 0 | if (t >= 200 && t < 300) { |
| 238 | 0 | timestamp = conn.getLastModified(); |
| 239 | |
} else { |
| 240 | 0 | throw new DownloadFailedException(format("%s request returned a non-200 status code", httpMethod)); |
| 241 | |
} |
| 242 | 0 | } catch (URLConnectionFailureException ex) { |
| 243 | 0 | throw new DownloadFailedException(format("Error creating URL Connection for HTTP %s request.", httpMethod), ex); |
| 244 | 0 | } catch (IOException ex) { |
| 245 | 0 | analyzeException(ex); |
| 246 | 0 | throw new DownloadFailedException(format("Error making HTTP %s request.", httpMethod), ex); |
| 247 | |
} finally { |
| 248 | 0 | if (conn != null) { |
| 249 | |
try { |
| 250 | 0 | conn.disconnect(); |
| 251 | |
} finally { |
| 252 | 0 | conn = null; |
| 253 | 0 | } |
| 254 | |
} |
| 255 | |
} |
| 256 | |
} |
| 257 | 1 | return timestamp; |
| 258 | |
} |
| 259 | |
|
| 260 | |
|
| 261 | |
|
| 262 | |
|
| 263 | |
|
| 264 | |
|
| 265 | |
|
| 266 | |
|
| 267 | |
protected static void analyzeException(IOException ex) throws DownloadFailedException { |
| 268 | 0 | Throwable cause = ex; |
| 269 | 0 | while (cause != null) { |
| 270 | 0 | if (cause instanceof InvalidAlgorithmParameterException) { |
| 271 | 0 | final String keystore = System.getProperty("javax.net.ssl.keyStore"); |
| 272 | 0 | final String version = System.getProperty("java.version"); |
| 273 | 0 | final String vendor = System.getProperty("java.vendor"); |
| 274 | 0 | LOGGER.info("Error making HTTPS request - InvalidAlgorithmParameterException"); |
| 275 | 0 | LOGGER.info("There appears to be an issue with the installation of Java and the cacerts." |
| 276 | |
+ "See closed issue #177 here: https://github.com/jeremylong/DependencyCheck/issues/177"); |
| 277 | 0 | LOGGER.info("Java Info:\njavax.net.ssl.keyStore='{}'\njava.version='{}'\njava.vendor='{}'", |
| 278 | |
keystore, version, vendor); |
| 279 | 0 | throw new DownloadFailedException("Error making HTTPS request. Please see the log for more details."); |
| 280 | |
} |
| 281 | 0 | cause = cause.getCause(); |
| 282 | |
} |
| 283 | 0 | } |
| 284 | |
|
| 285 | |
|
| 286 | |
|
| 287 | |
|
| 288 | |
|
| 289 | |
|
| 290 | |
private static String determineHttpMethod() { |
| 291 | 0 | return isQuickQuery() ? HEAD : GET; |
| 292 | |
} |
| 293 | |
|
| 294 | |
|
| 295 | |
|
| 296 | |
|
| 297 | |
|
| 298 | |
|
| 299 | |
private static boolean isQuickQuery() { |
| 300 | |
boolean quickQuery; |
| 301 | |
|
| 302 | |
try { |
| 303 | 0 | quickQuery = getBoolean(DOWNLOADER_QUICK_QUERY_TIMESTAMP, true); |
| 304 | 0 | } catch (InvalidSettingException e) { |
| 305 | 0 | quickQuery = true; |
| 306 | 0 | } |
| 307 | 0 | return quickQuery; |
| 308 | |
} |
| 309 | |
} |