Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Sleuthkit
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
IRT
Sleuthkit
Commits
2bfdef21
Commit
2bfdef21
authored
5 years ago
by
apriestman
Browse files
Options
Downloads
Patches
Plain Diff
Testing parent obj ID caching on the Java side
parent
3e2d7647
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
bindings/java/jni/auto_db_java.cpp
+20
-3
20 additions, 3 deletions
bindings/java/jni/auto_db_java.cpp
bindings/java/src/org/sleuthkit/datamodel/JniDbHelper.java
+105
-2
105 additions, 2 deletions
bindings/java/src/org/sleuthkit/datamodel/JniDbHelper.java
with
125 additions
and
5 deletions
bindings/java/jni/auto_db_java.cpp
+
20
−
3
View file @
2bfdef21
...
...
@@ -110,7 +110,7 @@ TskAutoDbJava::initializeJni(JNIEnv * jniEnv, jobject jobj) {
return
TSK_ERR
;
}
m_addFileMethodID
=
m_jniEnv
->
GetMethodID
(
m_callbackClass
,
"addFile"
,
"(JJJIIILjava/lang/String;JJIIIIJJJJJIIILjava/lang/String;Ljava/lang/String;)J"
);
m_addFileMethodID
=
m_jniEnv
->
GetMethodID
(
m_callbackClass
,
"addFile"
,
"(JJJIIILjava/lang/String;JJIIIIJJJJJIIILjava/lang/String;Ljava/lang/String;
JJJ
)J"
);
if
(
m_addFileMethodID
==
NULL
)
{
return
TSK_ERR
;
}
...
...
@@ -543,6 +543,7 @@ TskAutoDbJava::addFile(TSK_FS_FILE* fs_file,
int
meta_type
=
0
;
int
meta_flags
=
0
;
int
meta_mode
=
0
;
int
meta_seq
=
0
;
int
gid
=
0
;
int
uid
=
0
;
int
type
=
TSK_FS_ATTR_TYPE_NOT_FOUND
;
...
...
@@ -561,6 +562,7 @@ TskAutoDbJava::addFile(TSK_FS_FILE* fs_file,
meta_mode
=
fs_file
->
meta
->
mode
;
gid
=
fs_file
->
meta
->
gid
;
uid
=
fs_file
->
meta
->
uid
;
meta_seq
=
fs_file
->
meta
->
seq
;
}
size_t
attr_nlen
=
0
;
...
...
@@ -616,6 +618,19 @@ TskAutoDbJava::addFile(TSK_FS_FILE* fs_file,
jstring
namej
=
m_jniEnv
->
NewStringUTF
(
name
);
jstring
pathj
=
m_jniEnv
->
NewStringUTF
(
escaped_path
);
jstring
extj
=
m_jniEnv
->
NewStringUTF
(
extension
);
/* NTFS uses sequence, otherwise we hash the path. We do this to map to the
* correct parent folder if there are two from the root dir that eventually point to
* the same folder (one deleted and one allocated) or two hard links. */
jlong
par_seqj
;
if
(
TSK_FS_TYPE_ISNTFS
(
fs_file
->
fs_info
->
ftype
))
{
par_seqj
=
fs_file
->
name
->
par_seq
;
}
else
{
par_seqj
=
-
1
;
}
TSK_INUM_T
par_meta_addr
=
fs_file
->
name
->
par_addr
;
// Add the file to the database
jlong
objIdj
=
m_jniEnv
->
CallLongMethod
(
m_javaDbObj
,
m_addFileMethodID
,
...
...
@@ -628,7 +643,8 @@ TskAutoDbJava::addFile(TSK_FS_FILE* fs_file,
size
,
(
unsigned
long
long
)
crtime
,
(
unsigned
long
long
)
ctime
,
(
unsigned
long
long
)
atime
,
(
unsigned
long
long
)
mtime
,
meta_mode
,
gid
,
uid
,
pathj
,
extj
);
pathj
,
extj
,
(
uint64_t
)
meta_seq
,
par_meta_addr
,
par_seqj
);
objId
=
(
int64_t
)
objIdj
;
if
(
objId
<
0
)
{
...
...
@@ -672,7 +688,8 @@ TskAutoDbJava::addFile(TSK_FS_FILE* fs_file,
slackSize
,
(
unsigned
long
long
)
crtime
,
(
unsigned
long
long
)
ctime
,
(
unsigned
long
long
)
atime
,
(
unsigned
long
long
)
mtime
,
meta_mode
,
gid
,
uid
,
// md5TextPtr, known,
pathj
,
slackExtj
);
pathj
,
slackExtj
,
(
uint64_t
)
meta_seq
,
par_meta_addr
,
par_seqj
);
int64_t
slackObjId
=
(
int64_t
)
objIdj
;
if
(
slackObjId
<
0
)
{
...
...
This diff is collapsed.
Click to expand it.
bindings/java/src/org/sleuthkit/datamodel/JniDbHelper.java
+
105
−
2
View file @
2bfdef21
...
...
@@ -18,8 +18,10 @@
*/
package
org.sleuthkit.datamodel
;
import
org.apache.commons.lang3.StringUtils
;
import
java.util.HashMap
;
import
java.util.Map
;
import
java.util.Objects
;
import
java.util.logging.Level
;
import
java.util.logging.Logger
;
import
org.sleuthkit.datamodel.SleuthkitCase.CaseDbTransaction
;
...
...
@@ -38,6 +40,8 @@ class JniDbHelper {
private
CaseDbTransaction
trans
=
null
;
private
final
Map
<
Long
,
Long
>
fsIdToRootDir
=
new
HashMap
<>();
private
final
Map
<
Long
,
TskData
.
TSK_FS_TYPE_ENUM
>
fsIdToFsType
=
new
HashMap
<>();
private
final
Map
<
ParentCacheKey
,
Long
>
parentDirCache
=
new
HashMap
<>();
JniDbHelper
(
SleuthkitCase
caseDb
)
{
this
.
caseDb
=
caseDb
;
...
...
@@ -61,6 +65,7 @@ void beginTransaction() throws TskCoreException {
void
commitTransaction
()
throws
TskCoreException
{
trans
.
commit
();
trans
=
null
;
parentDirCache
.
clear
();
}
/**
...
...
@@ -71,6 +76,7 @@ void commitTransaction() throws TskCoreException {
void
revertTransaction
()
throws
TskCoreException
{
trans
.
rollback
();
trans
=
null
;
parentDirCache
.
clear
();
}
/**
...
...
@@ -208,6 +214,7 @@ long addFileSystem(long parentObjId, long imgOffset, int fsType, long blockSize,
try
{
FileSystem
fs
=
caseDb
.
addFileSystem
(
parentObjId
,
imgOffset
,
TskData
.
TSK_FS_TYPE_ENUM
.
valueOf
(
fsType
),
blockSize
,
blockCount
,
rootInum
,
firstInum
,
lastInum
,
null
,
trans
);
fsIdToFsType
.
put
(
fs
.
getId
(),
TskData
.
TSK_FS_TYPE_ENUM
.
valueOf
(
fsType
));
return
fs
.
getId
();
}
catch
(
TskCoreException
ex
)
{
logger
.
log
(
Level
.
SEVERE
,
"Error adding file system to the database - parent object ID: "
+
parentObjId
...
...
@@ -228,7 +235,7 @@ long addFileSystem(long parentObjId, long imgOffset, int fsType, long blockSize,
* @param attrId The type id given to the file by the file system.
* @param name The name of the file.
* @param metaAddr The meta address of the file.
* @param metaSeq The meta sequence number of the file.
* @param metaSeq The meta sequence number of the file
from fs_file->name->meta_seq
.
* @param dirType The type of the file, usually as reported in
* the name structure of the file system.
* @param metaType The type of the file, usually as reported in
...
...
@@ -249,6 +256,9 @@ long addFileSystem(long parentObjId, long imgOffset, int fsType, long blockSize,
* @param known The file known status.
* @param escaped_path The escaped path to the file.
* @param extension The file extension.
* @param seq The sequence number from fs_file->meta->seq.
* @param parMetaAddr The metadata address of the parent
* @param parSeq The parent sequence number if NTFS, -1 otherwise.
*
* @return The object ID of the new file or -1 if an error occurred
*/
...
...
@@ -261,7 +271,8 @@ long addFile(long parentObjId,
long
size
,
long
crtime
,
long
ctime
,
long
atime
,
long
mtime
,
int
meta_mode
,
int
gid
,
int
uid
,
String
escaped_path
,
String
extension
)
{
String
escaped_path
,
String
extension
,
long
seq
,
long
parMetaAddr
,
long
parSeq
)
{
try
{
long
objId
=
caseDb
.
addFileJNI
(
parentObjId
,
fsObjId
,
dataSourceObjId
,
...
...
@@ -280,6 +291,39 @@ long addFile(long parentObjId,
if
(
parentObjId
==
fsObjId
)
{
fsIdToRootDir
.
put
(
fsObjId
,
objId
);
}
// Testing!
if
(
metaType
==
TskData
.
TSK_FS_META_TYPE_ENUM
.
TSK_FS_META_TYPE_DIR
.
getValue
()
&&
(
name
!=
null
)
&&
!
name
.
equals
(
"."
)
&&
!
name
.
equals
(
".."
))
{
String
dirName
=
escaped_path
+
name
;
ParentCacheKey
key
=
new
ParentCacheKey
(
fsObjId
,
metaAddr
,
seq
,
dirName
);
parentDirCache
.
put
(
key
,
objId
);
//System.out.println("### Saving: " + objId + " : " + metaAddr + " " + seq + " " + dirName);
}
// Let's see if the parent lookup matches - skip for root folder
if
(
fsObjId
!=
parentObjId
)
{
String
parentPath
=
escaped_path
;
if
(
parentPath
.
endsWith
(
"/"
)
&&
!
parentPath
.
equals
(
"/"
))
{
parentPath
=
parentPath
.
substring
(
0
,
parentPath
.
lastIndexOf
(
"/"
));
}
ParentCacheKey
key
=
new
ParentCacheKey
(
fsObjId
,
parMetaAddr
,
parSeq
,
parentPath
);
String
keyStr
=
parMetaAddr
+
" "
+
parSeq
+
" "
+
parentPath
;
if
(
parentDirCache
.
containsKey
(
key
))
{
long
cachedId
=
parentDirCache
.
get
(
key
);
if
(
cachedId
==
parentObjId
)
{
//System.out.println("### Found match! " + cachedId + " : " + keyStr);
}
else
{
System
.
out
.
println
(
"### Mismatch : cached: "
+
cachedId
+
", given: "
+
parentObjId
+
" : "
+
keyStr
);
}
}
else
{
System
.
out
.
println
(
"### Did not find "
+
parentObjId
+
" : "
+
keyStr
+
" - orig parent_path: <"
+
escaped_path
+
">"
);
}
}
return
objId
;
}
catch
(
TskCoreException
ex
)
{
logger
.
log
(
Level
.
SEVERE
,
"Error adding file to the database - parent object ID: "
+
parentObjId
...
...
@@ -369,6 +413,7 @@ long addLayoutFileRange(long objId, long byteStart, long byteLen, long seq) {
*/
long
findParentObjId
(
long
metaAddr
,
long
fsObjId
,
String
path
,
String
name
)
{
try
{
System
.
out
.
println
(
"### Had to do lookup for meta addr: "
+
metaAddr
+
" and path: "
+
path
+
" "
+
name
);
return
caseDb
.
findParentObjIdJNI
(
metaAddr
,
fsObjId
,
path
,
name
,
trans
);
}
catch
(
TskCoreException
ex
)
{
logger
.
log
(
Level
.
WARNING
,
"Error looking up parent with meta addr: "
+
metaAddr
+
" and name "
+
name
,
ex
);
...
...
@@ -397,4 +442,62 @@ long addUnallocFsBlockFilesParent(long fsObjId, String name) {
return
-
1
;
}
}
/**
* Class to use as a key into the parent object ID map
*/
private
class
ParentCacheKey
{
long
fsObjId
;
long
metaAddr
;
long
seqNum
;
String
path
;
/**
* Create the key into the parent dir cache.
* Only NTFS uses the seqNum of the parent. For all file systems set to zero.
*
* @param fsObjId The file system object ID.
* @param metaAddr The metadata address of the directory.
* @param seqNum The sequence number of the directory. Unused unless file system is NTFS.
* @param path The path to the directory (should not include final slash unless root dir).
*/
ParentCacheKey
(
long
fsObjId
,
long
metaAddr
,
long
seqNum
,
String
path
)
{
this
.
fsObjId
=
fsObjId
;
this
.
metaAddr
=
metaAddr
;
if
(
fsIdToFsType
.
containsKey
(
fsObjId
)
&&
(
fsIdToFsType
.
get
(
fsObjId
).
equals
(
TskData
.
TSK_FS_TYPE_ENUM
.
TSK_FS_TYPE_NTFS
)
||
fsIdToFsType
.
get
(
fsObjId
).
equals
(
TskData
.
TSK_FS_TYPE_ENUM
.
TSK_FS_TYPE_NTFS_DETECT
)))
{
this
.
seqNum
=
seqNum
;
}
else
{
this
.
seqNum
=
0
;
}
this
.
path
=
path
;
}
@Override
public
boolean
equals
(
Object
obj
)
{
if
(
obj
==
null
||
!
(
obj
instanceof
ParentCacheKey
))
{
return
false
;
}
ParentCacheKey
otherKey
=
(
ParentCacheKey
)
obj
;
if
(
this
.
fsObjId
!=
otherKey
.
fsObjId
||
this
.
metaAddr
!=
otherKey
.
metaAddr
||
this
.
seqNum
!=
otherKey
.
seqNum
)
{
return
false
;
}
return
StringUtils
.
equals
(
this
.
path
,
otherKey
.
path
);
}
@Override
public
int
hashCode
()
{
int
hash
=
3
;
hash
=
31
*
hash
+
(
int
)
(
this
.
fsObjId
^
(
this
.
fsObjId
>>>
32
));
hash
=
31
*
hash
+
(
int
)
(
this
.
metaAddr
^
(
this
.
metaAddr
>>>
32
));
hash
=
31
*
hash
+
(
int
)
(
this
.
seqNum
^
(
this
.
seqNum
>>>
32
));
hash
=
31
*
hash
+
Objects
.
hashCode
(
this
.
path
);
return
hash
;
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment