Autopsy  4.17.0
Graphical digital forensics platform for The Sleuth Kit and other tools.
CentralRepository.java
Go to the documentation of this file.
1 /*
2  * Central Repository
3  *
4  * Copyright 2015-2020 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.centralrepository.datamodel;
20 
21 import java.sql.SQLException;
22 import java.util.Collection;
23 import java.util.List;
24 import java.util.Set;
25 import org.sleuthkit.datamodel.TskData;
29 import org.sleuthkit.datamodel.HashHitInfo;
30 import org.sleuthkit.datamodel.InvalidAccountIDException;
31 
35 public interface CentralRepository {
36 
45 
49  }
50  switch (selectedPlatform) {
51  case POSTGRESQL:
52  return PostgresCentralRepo.getInstance();
53 
54  case SQLITE:
55  return SqliteCentralRepo.getInstance();
56  default:
57  return null;
58  }
59  }
60 
72 
81  void updateSettings();
82 
86  void saveSettings();
87 
91  void reset() throws CentralRepoException;
92 
98  static boolean isEnabled() {
101  }
102 
111  public void newDbInfo(String name, String value) throws CentralRepoException;
112 
121  void addDataSourceObjectId(int rowId, long dataSourceObjectId) throws CentralRepoException;
122 
132  public String getDbInfo(String name) throws CentralRepoException;
133 
142  public void updateDbInfo(String name, String value) throws CentralRepoException;
143 
151  CorrelationCase newCase(CorrelationCase eamCase) throws CentralRepoException;
152 
158  CorrelationCase newCase(Case autopsyCase) throws CentralRepoException;
159 
165  void updateCase(CorrelationCase eamCase) throws CentralRepoException;
166 
176  CentralRepoExaminer getOrInsertExaminer(String examinerLoginName) throws CentralRepoException;
177 
187  CorrelationCase getCase(Case autopsyCase) throws CentralRepoException;
188 
196  CorrelationCase getCaseByUUID(String caseUUID) throws CentralRepoException;
197 
205  CorrelationCase getCaseById(int caseId) throws CentralRepoException;
206 
212  List<CorrelationCase> getCases() throws CentralRepoException;
213 
222  CorrelationDataSource newDataSource(CorrelationDataSource eamDataSource) throws CentralRepoException;
223 
229  void updateDataSourceMd5Hash(CorrelationDataSource eamDataSource) throws CentralRepoException;
230 
236  void updateDataSourceSha1Hash(CorrelationDataSource eamDataSource) throws CentralRepoException;
237 
244  void updateDataSourceSha256Hash(CorrelationDataSource eamDataSource) throws CentralRepoException;
245 
255  CorrelationDataSource getDataSource(CorrelationCase correlationCase, Long caseDbDataSourceId) throws CentralRepoException;
256 
266  CorrelationDataSource getDataSourceById(CorrelationCase correlationCase, int dataSourceId) throws CentralRepoException;
267 
273  List<CorrelationDataSource> getDataSources() throws CentralRepoException;
274 
283  void updateDataSourceName(CorrelationDataSource eamDataSource, String newName) throws CentralRepoException;
284 
291  void addArtifactInstance(CorrelationAttributeInstance eamArtifact) throws CentralRepoException;
292 
308 
321  List<CorrelationAttributeInstance> getArtifactInstancesByTypeValue(CorrelationAttributeInstance.Type aType, String value) throws CentralRepoException, CorrelationAttributeNormalizationException;
322 
340  List<CorrelationAttributeInstance> getArtifactInstancesByTypeValuesAndCases(CorrelationAttributeInstance.Type aType, List<String> values, List<Integer> caseIds) throws CentralRepoException, CorrelationAttributeNormalizationException;
341 
352  Long getCountArtifactInstancesByTypeValue(CorrelationAttributeInstance.Type aType, String value) throws CentralRepoException, CorrelationAttributeNormalizationException;
353 
361  int getFrequencyPercentage(CorrelationAttributeInstance corAttr) throws CentralRepoException, CorrelationAttributeNormalizationException;
362 
373  Long getCountUniqueCaseDataSourceTuplesHavingTypeValue(CorrelationAttributeInstance.Type aType, String value) throws CentralRepoException, CorrelationAttributeNormalizationException;
374 
380  Long getCountUniqueDataSources() throws CentralRepoException;
381 
391  Long getCountArtifactInstancesByCaseDataSource(CorrelationDataSource correlationDataSource) throws CentralRepoException;
392 
400  void addAttributeInstanceBulk(CorrelationAttributeInstance eamArtifact) throws CentralRepoException;
401 
406  void commitAttributeInstancesBulk() throws CentralRepoException;
407 
411  void bulkInsertCases(List<CorrelationCase> cases) throws CentralRepoException;
412 
422  void updateAttributeInstanceComment(CorrelationAttributeInstance eamArtifact) throws CentralRepoException;
423 
442  CorrelationDataSource correlationDataSource, String value, String filePath) throws CentralRepoException, CorrelationAttributeNormalizationException;
443 
458  CorrelationDataSource correlationDataSource, long objectID) throws CentralRepoException, CorrelationAttributeNormalizationException;
459 
467  void setAttributeInstanceKnownStatus(CorrelationAttributeInstance eamArtifact, TskData.FileKnown knownStatus) throws CentralRepoException;
468 
477  Long getCountArtifactInstancesKnownBad(CorrelationAttributeInstance.Type aType, String value) throws CentralRepoException, CorrelationAttributeNormalizationException;
478 
491  List<String> getListCasesHavingArtifactInstancesKnownBad(CorrelationAttributeInstance.Type aType, String value) throws CentralRepoException, CorrelationAttributeNormalizationException;
492 
505  List<String> getListCasesHavingArtifactInstances(CorrelationAttributeInstance.Type aType, String value) throws CentralRepoException, CorrelationAttributeNormalizationException;
506 
514  public void deleteReferenceSet(int referenceSetID) throws CentralRepoException;
515 
529  public boolean referenceSetIsValid(int referenceSetID, String referenceSetName, String version) throws CentralRepoException;
530 
543  public boolean referenceSetExists(String referenceSetName, String version) throws CentralRepoException;
544 
556  public boolean isFileHashInReferenceSet(String hash, int referenceSetID) throws CentralRepoException, CorrelationAttributeNormalizationException;
557 
571  HashHitInfo lookupHash(String hash, int referenceSetID) throws CentralRepoException, CorrelationAttributeNormalizationException;
572 
582  public boolean isValueInReferenceSet(String value, int referenceSetID, int correlationTypeID) throws CentralRepoException, CorrelationAttributeNormalizationException;
583 
592  boolean isArtifactKnownBadByReference(CorrelationAttributeInstance.Type aType, String value) throws CentralRepoException, CorrelationAttributeNormalizationException;
593 
603  CentralRepoOrganization newOrganization(CentralRepoOrganization eamOrg) throws CentralRepoException;
604 
612  List<CentralRepoOrganization> getOrganizations() throws CentralRepoException;
613 
623  CentralRepoOrganization getOrganizationByID(int orgID) throws CentralRepoException;
624 
634  CentralRepoOrganization getReferenceSetOrganization(int referenceSetID) throws CentralRepoException;
635 
644  void updateOrganization(CentralRepoOrganization updatedOrganization) throws CentralRepoException;
645 
653  void deleteOrganization(CentralRepoOrganization organizationToDelete) throws CentralRepoException;
654 
664  int newReferenceSet(CentralRepoFileSet eamGlobalSet) throws CentralRepoException;
665 
675  CentralRepoFileSet getReferenceSetByID(int globalSetID) throws CentralRepoException;
676 
686  List<CentralRepoFileSet> getAllReferenceSets(CorrelationAttributeInstance.Type correlationType) throws CentralRepoException;
687 
696  void addReferenceInstance(CentralRepoFileInstance eamGlobalFileInstance, CorrelationAttributeInstance.Type correlationType) throws CentralRepoException;
697 
707  void bulkInsertReferenceTypeEntries(Set<CentralRepoFileInstance> globalInstances, CorrelationAttributeInstance.Type contentType) throws CentralRepoException;
708 
719  List<CentralRepoFileInstance> getReferenceInstancesByTypeValue(CorrelationAttributeInstance.Type aType, String aValue) throws CentralRepoException, CorrelationAttributeNormalizationException;
720 
730  int newCorrelationType(CorrelationAttributeInstance.Type newType) throws CentralRepoException;
731 
741  List<CorrelationAttributeInstance.Type> getDefinedCorrelationTypes() throws CentralRepoException;
742 
752  List<CorrelationAttributeInstance.Type> getEnabledCorrelationTypes() throws CentralRepoException;
753 
763  List<CorrelationAttributeInstance.Type> getSupportedCorrelationTypes() throws CentralRepoException;
764 
772  void updateCorrelationType(CorrelationAttributeInstance.Type aType) throws CentralRepoException;
773 
783  CorrelationAttributeInstance.Type getCorrelationTypeById(int typeId) throws CentralRepoException;
784 
790  public void upgradeSchema() throws CentralRepoException, SQLException, IncompatibleCentralRepoException;
791 
803  public CoordinationService.Lock getExclusiveMultiUserDbLock() throws CentralRepoException;
804 
813  void processInstanceTable(CorrelationAttributeInstance.Type type, InstanceTableCallback instanceTableCallback) throws CentralRepoException;
814 
824  void processInstanceTableWhere(CorrelationAttributeInstance.Type type, String whereClause, InstanceTableCallback instanceTableCallback) throws CentralRepoException;
825 
834  public void processSelectClause(String selectClause, InstanceTableCallback instanceTableCallback) throws CentralRepoException;
835 
845  void executeCommand(String sql, List<Object> params) throws CentralRepoException;
846 
857  void executeQuery(String sql, List<Object> params, CentralRepositoryDbQueryCallback queryCallback) throws CentralRepoException;
858 
866  CentralRepoAccountType getAccountTypeByName(String accountTypeName) throws CentralRepoException;
867 
875  Collection<CentralRepoAccountType> getAllAccountTypes() throws CentralRepoException;
876 
888  CentralRepoAccount getOrCreateAccount(CentralRepoAccount.CentralRepoAccountType crAccountType, String accountUniqueID) throws InvalidAccountIDException, CentralRepoException;
889 
902  CentralRepoAccount getAccount(CentralRepoAccount.CentralRepoAccountType crAccountType, String accountUniqueID) throws InvalidAccountIDException, CentralRepoException;
903 
904 }
void addAttributeInstanceBulk(CorrelationAttributeInstance eamArtifact)
boolean referenceSetExists(String referenceSetName, String version)
List< String > getListCasesHavingArtifactInstances(CorrelationAttributeInstance.Type aType, String value)
void executeQuery(String sql, List< Object > params, CentralRepositoryDbQueryCallback queryCallback)
CentralRepoOrganization newOrganization(CentralRepoOrganization eamOrg)
Long getCountArtifactInstancesByTypeValue(CorrelationAttributeInstance.Type aType, String value)
void addReferenceInstance(CentralRepoFileInstance eamGlobalFileInstance, CorrelationAttributeInstance.Type correlationType)
List< CentralRepoFileSet > getAllReferenceSets(CorrelationAttributeInstance.Type correlationType)
CentralRepoAccount getAccount(CentralRepoAccount.CentralRepoAccountType crAccountType, String accountUniqueID)
List< CorrelationAttributeInstance > getArtifactInstancesByTypeValue(CorrelationAttributeInstance.Type aType, String value)
void deleteOrganization(CentralRepoOrganization organizationToDelete)
boolean isArtifactKnownBadByReference(CorrelationAttributeInstance.Type aType, String value)
CentralRepoExaminer getOrInsertExaminer(String examinerLoginName)
void setAttributeInstanceKnownStatus(CorrelationAttributeInstance eamArtifact, TskData.FileKnown knownStatus)
void addDataSourceObjectId(int rowId, long dataSourceObjectId)
void bulkInsertReferenceTypeEntries(Set< CentralRepoFileInstance > globalInstances, CorrelationAttributeInstance.Type contentType)
void updateAttributeInstanceComment(CorrelationAttributeInstance eamArtifact)
List< String > getListCasesHavingArtifactInstancesKnownBad(CorrelationAttributeInstance.Type aType, String value)
List< CorrelationAttributeInstance.Type > getDefinedCorrelationTypes()
void addArtifactInstance(CorrelationAttributeInstance eamArtifact)
Long getCountArtifactInstancesKnownBad(CorrelationAttributeInstance.Type aType, String value)
List< CentralRepoFileInstance > getReferenceInstancesByTypeValue(CorrelationAttributeInstance.Type aType, String aValue)
void updateDataSourceSha1Hash(CorrelationDataSource eamDataSource)
void processInstanceTableWhere(CorrelationAttributeInstance.Type type, String whereClause, InstanceTableCallback instanceTableCallback)
HashHitInfo lookupHash(String hash, int referenceSetID)
void processInstanceTable(CorrelationAttributeInstance.Type type, InstanceTableCallback instanceTableCallback)
boolean isFileHashInReferenceSet(String hash, int referenceSetID)
List< CorrelationAttributeInstance > getArtifactInstancesByTypeValues(CorrelationAttributeInstance.Type aType, List< String > values)
void updateOrganization(CentralRepoOrganization updatedOrganization)
int newCorrelationType(CorrelationAttributeInstance.Type newType)
boolean referenceSetIsValid(int referenceSetID, String referenceSetName, String version)
void updateDataSourceName(CorrelationDataSource eamDataSource, String newName)
CorrelationAttributeInstance getCorrelationAttributeInstance(CorrelationAttributeInstance.Type type, CorrelationCase correlationCase, CorrelationDataSource correlationDataSource, String value, String filePath)
void updateDataSourceMd5Hash(CorrelationDataSource eamDataSource)
void updateCorrelationType(CorrelationAttributeInstance.Type aType)
CorrelationDataSource newDataSource(CorrelationDataSource eamDataSource)
List< CorrelationAttributeInstance > getArtifactInstancesByTypeValuesAndCases(CorrelationAttributeInstance.Type aType, List< String > values, List< Integer > caseIds)
boolean isValueInReferenceSet(String value, int referenceSetID, int correlationTypeID)
int getFrequencyPercentage(CorrelationAttributeInstance corAttr)
List< CorrelationAttributeInstance.Type > getEnabledCorrelationTypes()
CorrelationDataSource getDataSource(CorrelationCase correlationCase, Long caseDbDataSourceId)
CorrelationAttributeInstance.Type getCorrelationTypeById(int typeId)
List< CorrelationAttributeInstance.Type > getSupportedCorrelationTypes()
void processSelectClause(String selectClause, InstanceTableCallback instanceTableCallback)
Long getCountArtifactInstancesByCaseDataSource(CorrelationDataSource correlationDataSource)
CentralRepoOrganization getReferenceSetOrganization(int referenceSetID)
void updateDataSourceSha256Hash(CorrelationDataSource eamDataSource)
CentralRepoAccountType getAccountTypeByName(String accountTypeName)
Long getCountUniqueCaseDataSourceTuplesHavingTypeValue(CorrelationAttributeInstance.Type aType, String value)
CentralRepoAccount getOrCreateAccount(CentralRepoAccount.CentralRepoAccountType crAccountType, String accountUniqueID)
CorrelationDataSource getDataSourceById(CorrelationCase correlationCase, int dataSourceId)

Copyright © 2012-2021 Basis Technology. Generated on: Tue Jan 19 2021
This work is licensed under a Creative Commons Attribution-Share Alike 3.0 United States License.