Autopsy  4.21.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
Installer.java
Go to the documentation of this file.
1 /*
2  * Autopsy Forensic Browser
3  *
4  * Copyright 2011-2021 Basis Technology Corp.
5  * Contact: carrier <at> sleuthkit <dot> org
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  */
19 package org.sleuthkit.autopsy.core;
20 
21 import com.sun.jna.platform.win32.Kernel32;
22 import java.awt.Cursor;
23 import java.awt.GraphicsEnvironment;
24 import java.io.File;
25 import java.io.IOException;
26 import java.lang.management.ManagementFactory;
27 import java.nio.file.Path;
28 import java.nio.file.Paths;
29 import java.util.ArrayList;
30 import java.util.List;
31 import java.util.concurrent.Callable;
32 import java.util.concurrent.ExecutionException;
33 import java.util.concurrent.FutureTask;
34 import java.util.logging.Handler;
35 import java.util.logging.Level;
36 import javafx.application.Platform;
37 import javafx.embed.swing.JFXPanel;
38 import javax.imageio.ImageIO;
39 import javax.swing.JOptionPane;
40 import net.sf.sevenzipjbinding.SevenZip;
41 import net.sf.sevenzipjbinding.SevenZipNativeInitializationException;
42 import org.apache.commons.io.FileUtils;
43 import org.apache.commons.lang3.StringUtils;
44 import org.openide.modules.InstalledFileLocator;
45 import org.openide.modules.ModuleInstall;
46 import org.openide.util.NbBundle;
47 import org.openide.util.NbBundle.Messages;
48 import org.openide.windows.WindowManager;
60 
65 public class Installer extends ModuleInstall {
66 
67  private static final long serialVersionUID = 1L;
68 
69  private static final String JAVA_TEMP = "java.io.tmpdir";
70  private static final String AUTOPSY_TEMP_DIR_SUFFIX = "_temp";
71  private static final String TSK_TEMP = "tsk.tmpdir";
72 
73  private final List<ModuleInstall> packageInstallers;
74  private static final Logger logger = Logger.getLogger(Installer.class.getName());
75  private static volatile boolean javaFxInit = false;
76 
77  static {
78  setTskTemp();
79 
81 
82  // This call was moved from MediaViewImagePanel so that it is
83  // not called during top level component construction.
84  ImageIO.scanForPlugins();
85 
86  // This will cause OpenCvLoader to load its library instead of
88  }
89 
93  private static void setTskTemp() {
94  try {
95  String curTemp = System.getProperty(JAVA_TEMP, "");
96  String autopsyTempDir = StringUtils.defaultIfBlank(UserPreferences.getAppName(), "autopsy").replaceAll("[^a-zA-Z0-9_\\-]", "_") + AUTOPSY_TEMP_DIR_SUFFIX;
97  String tskTemp = Paths.get(StringUtils.defaultString(curTemp), autopsyTempDir).toString();
98  System.setProperty(TSK_TEMP, tskTemp);
99  File tskTempDir = new File(tskTemp);
100  tskTempDir.mkdirs();
101  if (!tskTempDir.isDirectory()) {
102  throw new IOException("Unable to create directory at " + tskTemp);
103  }
104  } catch (Exception ex) {
105  logger.log(Level.WARNING, "There was an error setting up tsk temp directory", ex);
106  }
107  }
108 
109  private static void loadDynLibraries() {
110  /*
111  * On Windows, we distribute dlls that libtsk_jni depend on. If
112  * libtsk_jni tries to load them, they will not be found by Windows
113  * because they are in special NetBeans folders. So, we manually load
114  * them from within Autopsy so that they are found via the NetBeans
115  * loading setup. These are copied by the build script when making the
116  * ZIP file. In a development environment they will need to be loaded
117  * from standard places in your system.
118  *
119  * On non-Windows platforms, we assume the dependncies are all installed
120  * and loadable (i.e. a 'make install' was done).
121  */
122  if (PlatformUtil.isWindowsOS()) {
123  try {
125 
126  //Note: if shipping with a different CRT version, this will only print a warning
127  //and try to use linker mechanism to find the correct versions of libs.
128  //We should update this if we officially switch to a new version of CRT/compiler
129  System.loadLibrary("api-ms-win-core-console-l1-1-0"); //NON-NLS
130  System.loadLibrary("api-ms-win-core-datetime-l1-1-0"); //NON-NLS
131  System.loadLibrary("api-ms-win-core-debug-l1-1-0"); //NON-NLS
132  System.loadLibrary("api-ms-win-core-errorhandling-l1-1-0"); //NON-NLS
133  System.loadLibrary("api-ms-win-core-file-l1-1-0"); //NON-NLS
134  System.loadLibrary("api-ms-win-core-file-l1-2-0"); //NON-NLS
135  System.loadLibrary("api-ms-win-core-file-l2-1-0"); //NON-NLS
136  System.loadLibrary("api-ms-win-core-handle-l1-1-0"); //NON-NLS
137  System.loadLibrary("api-ms-win-core-heap-l1-1-0"); //NON-NLS
138  System.loadLibrary("api-ms-win-core-interlocked-l1-1-0"); //NON-NLS
139  System.loadLibrary("api-ms-win-core-libraryloader-l1-1-0"); //NON-NLS
140  System.loadLibrary("api-ms-win-core-localization-l1-2-0"); //NON-NLS
141  System.loadLibrary("api-ms-win-core-memory-l1-1-0"); //NON-NLS
142  System.loadLibrary("api-ms-win-core-namedpipe-l1-1-0"); //NON-NLS
143  System.loadLibrary("api-ms-win-core-processenvironment-l1-1-0"); //NON-NLS
144  System.loadLibrary("api-ms-win-core-processthreads-l1-1-0"); //NON-NLS
145  System.loadLibrary("api-ms-win-core-processthreads-l1-1-1"); //NON-NLS
146  System.loadLibrary("api-ms-win-core-profile-l1-1-0"); //NON-NLS
147  System.loadLibrary("api-ms-win-core-rtlsupport-l1-1-0"); //NON-NLS
148  System.loadLibrary("api-ms-win-core-string-l1-1-0"); //NON-NLS
149  System.loadLibrary("api-ms-win-core-synch-l1-1-0"); //NON-NLS
150  System.loadLibrary("api-ms-win-core-synch-l1-2-0"); //NON-NLS
151  System.loadLibrary("api-ms-win-core-sysinfo-l1-1-0"); //NON-NLS
152  System.loadLibrary("api-ms-win-core-timezone-l1-1-0"); //NON-NLS
153  System.loadLibrary("api-ms-win-core-util-l1-1-0"); //NON-NLS
154  System.loadLibrary("api-ms-win-crt-conio-l1-1-0"); //NON-NLS
155  System.loadLibrary("api-ms-win-crt-convert-l1-1-0"); //NON-NLS
156  System.loadLibrary("api-ms-win-crt-environment-l1-1-0"); //NON-NLS
157  System.loadLibrary("api-ms-win-crt-filesystem-l1-1-0"); //NON-NLS
158  System.loadLibrary("api-ms-win-crt-heap-l1-1-0"); //NON-NLS
159  System.loadLibrary("api-ms-win-crt-locale-l1-1-0"); //NON-NLS
160  System.loadLibrary("api-ms-win-crt-math-l1-1-0"); //NON-NLS
161  System.loadLibrary("api-ms-win-crt-multibyte-l1-1-0"); //NON-NLS
162  System.loadLibrary("api-ms-win-crt-private-l1-1-0"); //NON-NLS
163  System.loadLibrary("api-ms-win-crt-process-l1-1-0"); //NON-NLS
164  System.loadLibrary("api-ms-win-crt-runtime-l1-1-0"); //NON-NLS
165  System.loadLibrary("api-ms-win-crt-stdio-l1-1-0"); //NON-NLS
166  System.loadLibrary("api-ms-win-crt-string-l1-1-0"); //NON-NLS
167  System.loadLibrary("api-ms-win-crt-time-l1-1-0"); //NON-NLS
168  System.loadLibrary("api-ms-win-crt-utility-l1-1-0"); //NON-NLS
169 
170  System.loadLibrary("ucrtbase"); //NON-NLS
171  System.loadLibrary("vcruntime140"); //NON-NLS
172  System.loadLibrary("msvcp140"); //NON-NLS
173 
174  logger.log(Level.INFO, "Visual C Runtime libraries loaded"); //NON-NLS
175  } catch (UnsatisfiedLinkError e) {
176  logger.log(Level.SEVERE, "Error loading Visual C Runtime libraries, ", e); //NON-NLS
177  }
178 
179  try {
180  System.loadLibrary("zlib"); //NON-NLS
181  logger.log(Level.INFO, "ZLIB library loaded loaded"); //NON-NLS
182  } catch (UnsatisfiedLinkError e) {
183  logger.log(Level.SEVERE, "Error loading ZLIB library, ", e); //NON-NLS
184  }
185 
186  try {
187  System.loadLibrary("libewf"); //NON-NLS
188  logger.log(Level.INFO, "EWF library loaded"); //NON-NLS
189  } catch (UnsatisfiedLinkError e) {
190  logger.log(Level.SEVERE, "Error loading EWF library, ", e); //NON-NLS
191  }
192 
193  try {
194  System.loadLibrary("libvmdk"); //NON-NLS
195  logger.log(Level.INFO, "VMDK library loaded"); //NON-NLS
196  } catch (UnsatisfiedLinkError e) {
197  logger.log(Level.SEVERE, "Error loading VMDK library, ", e); //NON-NLS
198  }
199 
200  try {
201  System.loadLibrary("libvhdi"); //NON-NLS
202  logger.log(Level.INFO, "VHDI library loaded"); //NON-NLS
203  } catch (UnsatisfiedLinkError e) {
204  logger.log(Level.SEVERE, "Error loading VHDI library, ", e); //NON-NLS
205  }
206 
207  // Only attempt to load OpenSSL if we're in 64 bit mode
208  if(System.getProperty("sun.arch.data.model").contains("64")) {
209  // libcrypto must be loaded before libssl to make sure it's the correct version
210  try {
211  System.loadLibrary("libcrypto-1_1-x64"); //NON-NLS
212  logger.log(Level.INFO, "Crypto library loaded"); //NON-NLS
213  } catch (UnsatisfiedLinkError e) {
214  logger.log(Level.SEVERE, "Error loading Crypto library, ", e); //NON-NLS
215  }
216 
217  try {
218  System.loadLibrary("libssl-1_1-x64"); //NON-NLS
219  logger.log(Level.INFO, "OpenSSL library loaded"); //NON-NLS
220  } catch (UnsatisfiedLinkError e) {
221  logger.log(Level.SEVERE, "Error loading OpenSSL library, ", e); //NON-NLS
222  }
223  }
224  }
225  }
226 
227  public Installer() {
228  logger.log(Level.INFO, "core installer created"); //NON-NLS
229  javaFxInit = false;
230 
231  // Prevent the Autopsy UI from shrinking on high DPI displays
232  System.setProperty("sun.java2d.dpiaware", "false");
233  System.setProperty("prism.allowhidpi", "false");
234 
235  // Update existing configuration in case of unsupported settings
236  UserPreferences.updateConfig();
237  updateConfig();
238 
239  packageInstallers = new ArrayList<>();
240  packageInstallers.add(org.sleuthkit.autopsy.coreutils.Installer.getDefault());
241  packageInstallers.add(org.sleuthkit.autopsy.corecomponents.Installer.getDefault());
242  packageInstallers.add(org.sleuthkit.autopsy.datamodel.Installer.getDefault());
243  packageInstallers.add(org.sleuthkit.autopsy.ingest.Installer.getDefault());
245  packageInstallers.add(org.sleuthkit.autopsy.healthmonitor.Installer.getDefault());
246  packageInstallers.add(org.sleuthkit.autopsy.casemodule.Installer.getDefault());
248  packageInstallers.add(org.sleuthkit.autopsy.report.infrastructure.Installer.getDefault());
250 
260  try {
261  FileTypeDetector fileTypeDetector = new FileTypeDetector();
263  logger.log(Level.SEVERE, "Failed to load file type detector.", ex);
264  }
265  }
266 
271  private void updateConfig() {
272  String mode = ModuleSettings.getConfigSetting(SETTINGS_PROPERTIES, "AutopsyMode");
273  if (mode != null) {
274  int ordinal = Integer.parseInt(mode);
275  if (ordinal > 1) {
277  ModuleSettings.setConfigSetting(UserPreferences.SETTINGS_PROPERTIES, "JoinAutoModeCluster", Boolean.toString(false));
278  }
279  }
280  }
281 
288  public static boolean isJavaFxInited() {
289  return javaFxInit;
290  }
291 
292  private static void initJavaFx() {
293  //initialize java fx if exists
294  System.setProperty("javafx.macosx.embedded", "true");
295  try {
296 
297  // Due to a lingering issue https://bugs.openjdk.org/browse/JDK-8223377 where glass.dll from java 8 gets loaded instead of the java 17 one.
298  String javaLibraryPath = "java.library.path";
299  String jvmBinPathStr = Paths.get(System.getProperty("java.home"), "bin").toAbsolutePath().toString();
300  String path = System.getProperty(javaLibraryPath);
301  System.setProperty(javaLibraryPath, StringUtils.isBlank(path) ? jvmBinPathStr : jvmBinPathStr + File.pathSeparator + path);
302 
303  // Creating a JFXPanel initializes JavaFX
304  new JFXPanel();
305  Platform.setImplicitExit(false);
306  javaFxInit = true;
307  } catch (UnsatisfiedLinkError | NoClassDefFoundError | Exception e) {
308  //in case javafx not present
309  final String msg = NbBundle.getMessage(Installer.class, "Installer.errorInitJavafx.msg");
310  final String details = NbBundle.getMessage(Installer.class, "Installer.errorInitJavafx.details");
311  logger.log(Level.SEVERE, msg
312  + details, e);
313 
314  WindowManager.getDefault().invokeWhenUIReady(new Runnable() {
315  @Override
316  public void run() {
317  MessageNotifyUtil.Notify.error(msg, details);
318  }
319  });
320  }
321  }
322 
328  private static void addGstreamerPathsToEnv() {
329  if (System.getProperty("jna.nosys") == null) {
330  System.setProperty("jna.nosys", "true");
331  }
332 
333  Path gstreamerPath = InstalledFileLocator.getDefault().locate("gstreamer", Installer.class.getPackage().getName(), false).toPath();
334 
335  if (gstreamerPath == null) {
336  logger.log(Level.SEVERE, "Failed to find GStreamer.");
337  } else {
338  String arch = "x86_64";
339  if (!PlatformUtil.is64BitJVM()) {
340  arch = "x86";
341  }
342 
343  Path gstreamerBasePath = Paths.get(gstreamerPath.toString(), "1.0", arch);
344  Path gstreamerBinPath = Paths.get(gstreamerBasePath.toString(), "bin");
345  Path gstreamerLibPath = Paths.get(gstreamerBasePath.toString(), "lib", "gstreamer-1.0");
346 
347  // Update the PATH environment variable to contain the GStreamer
348  // lib and bin paths.
349  Kernel32 k32 = Kernel32.INSTANCE;
350  String path = System.getenv("PATH");
351  if (StringUtils.isBlank(path)) {
352  k32.SetEnvironmentVariable("PATH", gstreamerLibPath.toString());
353  } else {
354  /*
355  * Note that we *prepend* the paths so that the Gstreamer
356  * binaries associated with the current release are found rather
357  * than binaries associated with an earlier version of Autopsy.
358  */
359  k32.SetEnvironmentVariable("PATH", gstreamerBinPath.toString() + File.pathSeparator + gstreamerLibPath.toString() + path);
360  }
361  }
362  }
363 
368  private static void ensureClassifierFolderExists() {
369  File objectDetectionClassifierDir = new File(PlatformUtil.getObjectDetectionClassifierPath());
370  objectDetectionClassifierDir.mkdir();
371  }
372 
377  private static void ensurePythonModulesFolderExists() {
378  File pythonModulesDir = new File(PlatformUtil.getUserPythonModulesPath());
379  pythonModulesDir.mkdir();
380  }
381 
386  private static void ensureOcrLanguagePacksFolderExists() {
387  File ocrLanguagePacksDir = new File(PlatformUtil.getOcrLanguagePacksPath());
388  boolean createDirectory = ocrLanguagePacksDir.mkdir();
389 
390  //If the directory did not exist, copy the tessdata folder over so we
391  //support english.
392  if (createDirectory) {
393  File tessdataDir = InstalledFileLocator.getDefault().locate(
394  "Tesseract-OCR/tessdata", Installer.class.getPackage().getName(), false);
395  try {
396  FileUtils.copyDirectory(tessdataDir, ocrLanguagePacksDir);
397  } catch (IOException ex) {
398  logger.log(Level.SEVERE, "Copying over default language packs for Tesseract failed.", ex);
399  }
400  }
401  }
402 
403  @Override
404  public void restored() {
405  super.restored();
410 
411  if (!GraphicsEnvironment.isHeadless()) {
412  initJavaFx();
413  }
414 
416  for (ModuleInstall mi : packageInstallers) {
417  try {
418  mi.restored();
419  logger.log(Level.INFO, "{0} restore succeeded", mi.getClass().getName()); //NON-NLS
420  } catch (Exception e) {
421  String msg = mi.getClass().getName() + " restore failed"; //NON-NLS
422  logger.log(Level.WARNING, msg, e);
423  }
424  }
425  logger.log(Level.INFO, "Autopsy Core restore completed"); //NON-NLS
426  preloadJython();
428  }
429 
433  @Messages({
434  "# {0} - physicalMemory",
435  "Installer_checkMemoryAvailable_physicalRamExpected_desc=Physical memory: {0}, is less than the 8 GB required. Some aspects of the application may not work as expected.",
436  "# {0} - maxMemory",
437  "Installer_checkMemoryAvailable_maxMemExpected_desc=Maximum JVM memory: {0}, is less than the 2 GB required. Some aspects of the application may not work as expected."
438  })
439  private void checkMemoryAvailable() {
440  try {
441  long memorySize = ((com.sun.management.OperatingSystemMXBean) ManagementFactory
442  .getOperatingSystemMXBean()).getTotalMemorySize();
443  if (memorySize < 8_000_000_000L) {
444  String desc = Bundle.Installer_checkMemoryAvailable_physicalRamExpected_desc(
445  FileUtils.byteCountToDisplaySize(memorySize));
446  logger.log(Level.SEVERE, desc);
447  }
448  } catch (Throwable t) {
449  logger.log(Level.SEVERE, "There was an error fetching physical memory size", t);
450  }
451 
452  try {
453  long maxMemory = Runtime.getRuntime().maxMemory();
454  if (maxMemory < 2_000_000_000L) {
455  String desc = Bundle.Installer_checkMemoryAvailable_maxMemExpected_desc(
456  FileUtils.byteCountToDisplaySize(maxMemory));
457  logger.log(Level.SEVERE, desc);
458  }
459  } catch (Throwable t) {
460  logger.log(Level.SEVERE, "There was an error fetching jvm max memory", t);
461  }
462  }
463 
469  private static void initializeSevenZip() {
470  try {
471  SevenZip.initSevenZipFromPlatformJAR();
472  logger.log(Level.INFO, "7zip-java bindings loaded"); //NON-NLS
473  } catch (SevenZipNativeInitializationException e) {
474  logger.log(Level.SEVERE, "Error loading 7zip-java bindings", e); //NON-NLS
475  }
476  }
477 
481  private static void preloadJython() {
482  Runnable loader = () -> {
483  try {
487  } catch (Exception ex) {
488  // This is a firewall exception to ensure that any possible exception caused
489  // by this initial load of the Jython modules are caught and logged.
490  logger.log(Level.SEVERE, "There was an error while doing an initial load of python plugins.", ex);
491  }
492 
493  };
494  new Thread(loader).start();
495  }
496 
500  private static void preloadTranslationServices() {
501  Runnable loader = () -> {
502  try {
504  } catch (Exception ex) {
505  // This is a firewall exception to ensure that any possible exception caused
506  // by this initial load of the translation modules are caught and logged.
507  logger.log(Level.SEVERE, "There was an error while doing an initial load of translation services.", ex);
508  }
509  };
510  new Thread(loader).start();
511  }
512 
513  @Override
514  public void validate() throws IllegalStateException {
515  super.validate();
516 
517  logger.log(Level.INFO, "validate()"); //NON-NLS
518  for (ModuleInstall mi : packageInstallers) {
519  logger.log(Level.INFO, "{0} validate()", mi.getClass().getName()); //NON-NLS
520  try {
521  mi.validate();
522  } catch (IllegalStateException e) {
523  logger.log(Level.WARNING, "", e);
524  }
525  }
526  }
527 
528  @Override
529  public void uninstalled() {
530  super.uninstalled();
531 
532  logger.log(Level.INFO, "uninstalled()"); //NON-NLS
533 
534  for (ModuleInstall mi : packageInstallers) {
535  logger.log(Level.INFO, "{0} uninstalled()", mi.getClass().getName()); //NON-NLS
536  try {
537  mi.uninstalled();
538  } catch (Exception e) {
539  logger.log(Level.WARNING, "", e);
540  }
541  }
542  }
543 
544  @NbBundle.Messages({
545  "Installer.closing.confirmationDialog.title=Ingest is Running",
546  "Installer.closing.confirmationDialog.message=Ingest is running, are you sure you want to exit?",
547  "# {0} - exception message", "Installer.closing.messageBox.caseCloseExceptionMessage=Error closing case: {0}"
548  })
549  @Override
550  public boolean closing() {
551  if (IngestRunningCheck.checkAndConfirmProceed(Bundle.Installer_closing_confirmationDialog_title(), Bundle.Installer_closing_confirmationDialog_message())) {
552  if (!GraphicsEnvironment.isHeadless() && RuntimeProperties.runningWithGUI()) {
553  WindowManager.getDefault().getMainWindow().setCursor(Cursor.getPredefinedCursor(Cursor.WAIT_CURSOR));
554  }
555 
556  FutureTask<Void> future = new FutureTask<>(new Callable<Void>() {
557  @Override
558  public Void call() throws Exception {
560  return null;
561  }
562  });
563  Thread thread = new Thread(future);
564  thread.start();
565  try {
566  future.get();
567  } catch (InterruptedException ex) {
568  logger.log(Level.SEVERE, "Unexpected interrupt closing the current case", ex);
569  } catch (ExecutionException ex) {
570  logger.log(Level.SEVERE, "Error closing the current case", ex);
571  MessageNotifyUtil.Message.error(Bundle.Installer_closing_messageBox_caseCloseExceptionMessage(ex.getMessage()));
572  } finally {
573  if (!GraphicsEnvironment.isHeadless() && RuntimeProperties.runningWithGUI()) {
574  WindowManager.getDefault().getMainWindow().setCursor(Cursor.getPredefinedCursor(Cursor.DEFAULT_CURSOR));
575  }
576  }
577  return true;
578  } else {
579  return false;
580  }
581  }
582 
583  @Override
584  public void close() {
585  super.close();
586 
587  logger.log(Level.INFO, "close()"); //NON-NLS
588 
589  for (ModuleInstall mi : packageInstallers) {
590  logger.log(Level.INFO, "{0} close()", mi.getClass().getName()); //NON-NLS
591  try {
592  mi.close();
593  } catch (Exception e) {
594  logger.log(Level.WARNING, "", e);
595  }
596  }
597  for (Handler h : logger.getHandlers()) {
598  h.close(); //must call h.close or a .LCK file will remain.
599  }
600 
601  //exit JavaFx plat
602  if (javaFxInit) {
603  Platform.exit();
604  }
605  }
606 }
static synchronized String getConfigSetting(String moduleName, String settingName)
static synchronized List< IngestModuleFactory > getIngestModuleFactories()
static boolean checkAndConfirmProceed(String optionsDlgTitle, String optionsDlgMessage)
static void setMode(SelectedMode mode)
static synchronized Installer getDefault()
Definition: Installer.java:62
static synchronized List< GeneralReportModule > getGeneralReportModules()
static synchronized void setConfigSetting(String moduleName, String settingName, String settingVal)
static volatile boolean javaFxInit
Definition: Installer.java:75
static synchronized Installer getDefault()
Definition: Installer.java:41
static synchronized Installer getDefault()
Definition: Installer.java:33
static void ensureOcrLanguagePacksFolderExists()
Definition: Installer.java:386
static synchronized Installer getDefault()
Definition: Installer.java:51
static final String AUTOPSY_TEMP_DIR_SUFFIX
Definition: Installer.java:70
synchronized static Logger getLogger(String name)
Definition: Logger.java:124
final List< ModuleInstall > packageInstallers
Definition: Installer.java:73
static synchronized Installer getDefault()
Definition: Installer.java:39
static synchronized List< DataSourceProcessor > getDataSourceProcessorModules()
static synchronized Installer getDefault()
Definition: Installer.java:35

Copyright © 2012-2024 Sleuth Kit Labs. Generated on: Mon Mar 17 2025
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.