mirror of
https://github.com/ysoftdevs/DependencyCheck.git
synced 2026-03-21 16:49:43 +01:00
updated to make downloading of the NVD CVE a multi-threaded operations
Former-commit-id: 28e7467020db617007e89018d2d9fed8de335181
This commit is contained in:
@@ -29,6 +29,14 @@ import java.net.URL;
|
|||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.util.Calendar;
|
import java.util.Calendar;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Set;
|
||||||
|
import java.util.concurrent.Callable;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
import java.util.logging.Level;
|
import java.util.logging.Level;
|
||||||
import java.util.logging.Logger;
|
import java.util.logging.Logger;
|
||||||
import org.owasp.dependencycheck.data.UpdateException;
|
import org.owasp.dependencycheck.data.UpdateException;
|
||||||
@@ -69,6 +77,99 @@ public class StandardUpdateTask extends AbstractUpdateTask {
|
|||||||
* database
|
* database
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
|
public void update() throws UpdateException {
|
||||||
|
int maxUpdates = 0;
|
||||||
|
try {
|
||||||
|
for (NvdCveInfo cve : getUpdateable()) {
|
||||||
|
if (cve.getNeedsUpdate()) {
|
||||||
|
maxUpdates += 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (maxUpdates <= 0) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (maxUpdates > 3) {
|
||||||
|
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.INFO,
|
||||||
|
"NVD CVE requires several updates; this could take a couple of minutes.");
|
||||||
|
}
|
||||||
|
if (maxUpdates > 0) {
|
||||||
|
openDataStores();
|
||||||
|
}
|
||||||
|
|
||||||
|
int numThreads = (3 > maxUpdates) ? 3 : maxUpdates;
|
||||||
|
final ExecutorService executorService = Executors.newFixedThreadPool(numThreads);
|
||||||
|
Set<Future<CallableDownloadTask>> futures = new HashSet<Future<CallableDownloadTask>>(maxUpdates);
|
||||||
|
|
||||||
|
for (NvdCveInfo cve : getUpdateable()) {
|
||||||
|
if (cve.getNeedsUpdate()) {
|
||||||
|
final File file_1;
|
||||||
|
final File file_2;
|
||||||
|
try {
|
||||||
|
file_1 = File.createTempFile("cve" + cve.getId() + "_", ".xml");
|
||||||
|
file_2 = File.createTempFile("cve_1_2_" + cve.getId() + "_", ".xml");
|
||||||
|
} catch (IOException ex) {
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
}
|
||||||
|
final CallableDownloadTask call = new CallableDownloadTask(cve, file_1, file_2);
|
||||||
|
futures.add(executorService.submit(call));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
for (Future<CallableDownloadTask> future : futures) {
|
||||||
|
CallableDownloadTask filePair = future.get();
|
||||||
|
String msg = String.format("Processing Started for NVD CVE - %s", filePair.getNvdCveInfo().getId());
|
||||||
|
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.INFO, msg);
|
||||||
|
try {
|
||||||
|
importXML(filePair.getFirst(), filePair.getSecond());
|
||||||
|
getCveDB().commit();
|
||||||
|
getProperties().save(filePair.getNvdCveInfo());
|
||||||
|
} catch (FileNotFoundException ex) {
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} catch (ParserConfigurationException ex) {
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} catch (SAXException ex) {
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} catch (IOException ex) {
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} catch (SQLException ex) {
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} catch (DatabaseException ex) {
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} catch (ClassNotFoundException ex) {
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} finally {
|
||||||
|
filePair.cleanup();
|
||||||
|
}
|
||||||
|
msg = String.format("Processing Complete for NVD CVE - %s", filePair.getNvdCveInfo().getId());
|
||||||
|
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.INFO, msg);
|
||||||
|
}
|
||||||
|
} catch (InterruptedException ex) {
|
||||||
|
executorService.shutdownNow();
|
||||||
|
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.FINE, "Thread was interupted", ex);
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} catch (ExecutionException ex) {
|
||||||
|
executorService.shutdownNow();
|
||||||
|
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.SEVERE, null, ex);
|
||||||
|
throw new UpdateException(ex);
|
||||||
|
} finally {
|
||||||
|
//yes, this should likely not be in the finally because of the shutdownNow above.
|
||||||
|
executorService.shutdown();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (maxUpdates
|
||||||
|
>= 1) { //ensure the modified file date gets written
|
||||||
|
getProperties().save(getUpdateable().get(MODIFIED));
|
||||||
|
getCveDB().cleanupDatabase();
|
||||||
|
}
|
||||||
|
} finally {
|
||||||
|
closeDataStores();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//<editor-fold defaultstate="collapsed" desc="OLD version of update() - not multithreaded">
|
||||||
|
/*
|
||||||
|
* TODO - remove this
|
||||||
public void update() throws UpdateException {
|
public void update() throws UpdateException {
|
||||||
try {
|
try {
|
||||||
int maxUpdates = 0;
|
int maxUpdates = 0;
|
||||||
@@ -162,7 +263,8 @@ public class StandardUpdateTask extends AbstractUpdateTask {
|
|||||||
closeDataStores();
|
closeDataStores();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
//</editor-fold>
|
||||||
/**
|
/**
|
||||||
* Determines if the index needs to be updated. This is done by fetching the
|
* Determines if the index needs to be updated. This is done by fetching the
|
||||||
* NVD CVE meta data and checking the last update date. If the data needs to
|
* NVD CVE meta data and checking the last update date. If the data needs to
|
||||||
@@ -184,11 +286,15 @@ public class StandardUpdateTask extends AbstractUpdateTask {
|
|||||||
updates = retrieveCurrentTimestampsFromWeb();
|
updates = retrieveCurrentTimestampsFromWeb();
|
||||||
} catch (InvalidDataException ex) {
|
} catch (InvalidDataException ex) {
|
||||||
final String msg = "Unable to retrieve valid timestamp from nvd cve downloads page";
|
final String msg = "Unable to retrieve valid timestamp from nvd cve downloads page";
|
||||||
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.FINE, msg, ex);
|
Logger
|
||||||
|
.getLogger(StandardUpdateTask.class
|
||||||
|
.getName()).log(Level.FINE, msg, ex);
|
||||||
throw new DownloadFailedException(msg, ex);
|
throw new DownloadFailedException(msg, ex);
|
||||||
} catch (InvalidSettingException ex) {
|
} catch (InvalidSettingException ex) {
|
||||||
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.FINE, "Invalid setting found when retrieving timestamps", ex);
|
Logger.getLogger(StandardUpdateTask.class
|
||||||
throw new DownloadFailedException("Invalid settings", ex);
|
.getName()).log(Level.FINE, "Invalid setting found when retrieving timestamps", ex);
|
||||||
|
throw new DownloadFailedException(
|
||||||
|
"Invalid settings", ex);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (updates == null) {
|
if (updates == null) {
|
||||||
@@ -241,7 +347,9 @@ public class StandardUpdateTask extends AbstractUpdateTask {
|
|||||||
} catch (NumberFormatException ex) {
|
} catch (NumberFormatException ex) {
|
||||||
final String msg = String.format("Error parsing '%s' '%s' from nvdcve.lastupdated",
|
final String msg = String.format("Error parsing '%s' '%s' from nvdcve.lastupdated",
|
||||||
DataStoreMetaInfo.LAST_UPDATED_BASE, entry.getId());
|
DataStoreMetaInfo.LAST_UPDATED_BASE, entry.getId());
|
||||||
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.FINE, msg, ex);
|
Logger
|
||||||
|
.getLogger(StandardUpdateTask.class
|
||||||
|
.getName()).log(Level.FINE, msg, ex);
|
||||||
}
|
}
|
||||||
if (currentTimestamp == entry.getTimestamp()) {
|
if (currentTimestamp == entry.getTimestamp()) {
|
||||||
entry.setNeedsUpdate(false);
|
entry.setNeedsUpdate(false);
|
||||||
@@ -251,8 +359,11 @@ public class StandardUpdateTask extends AbstractUpdateTask {
|
|||||||
}
|
}
|
||||||
} catch (NumberFormatException ex) {
|
} catch (NumberFormatException ex) {
|
||||||
final String msg = "An invalid schema version or timestamp exists in the data.properties file.";
|
final String msg = "An invalid schema version or timestamp exists in the data.properties file.";
|
||||||
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.WARNING, msg);
|
Logger
|
||||||
Logger.getLogger(StandardUpdateTask.class.getName()).log(Level.FINE, null, ex);
|
.getLogger(StandardUpdateTask.class
|
||||||
|
.getName()).log(Level.WARNING, msg);
|
||||||
|
Logger.getLogger(StandardUpdateTask.class
|
||||||
|
.getName()).log(Level.FINE, null, ex);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return updates;
|
return updates;
|
||||||
|
|||||||
Reference in New Issue
Block a user