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
a8e1eb58
Commit
a8e1eb58
authored
5 years ago
by
Ann Priestman
Browse files
Options
Downloads
Patches
Plain Diff
Starting work
parent
c8ec6f59
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
tsk/auto/auto_db.cpp
+11
-1
11 additions, 1 deletion
tsk/auto/auto_db.cpp
tsk/auto/tsk_case_db.h
+1
-0
1 addition, 0 deletions
tsk/auto/tsk_case_db.h
with
12 additions
and
1 deletion
tsk/auto/auto_db.cpp
+
11
−
1
View file @
a8e1eb58
...
...
@@ -329,6 +329,16 @@ TskAutoDb::filterPool(const TSK_POOL_INFO * pool_info)
return
TSK_FILTER_CONT
;
}
TSK_FILTER_ENUM
TskAutoDb
::
addUnallocatedPoolBlocks
(
const
TSK_POOL_INFO
*
pool_info
)
{
/* Only APFS pools are currently supported */
if
(
pool_info
->
ctype
!=
TSK_POOL_TYPE_APFS
)
{
return
TSK_FILTER_CONT
;
}
}
TSK_FILTER_ENUM
TskAutoDb
::
filterPoolVol
(
const
TSK_POOL_VOLUME_INFO
*
pool_vol
)
{
...
...
@@ -1032,7 +1042,7 @@ TSK_WALK_RET_ENUM TskAutoDb::fsWalkUnallocBlocksCb(const TSK_FS_BLOCK *a_block,
*/
TSK_RETVAL_ENUM
TskAutoDb
::
addFsInfoUnalloc
(
const
TSK_DB_FS_INFO
&
dbFsInfo
)
{
// Unalloc space is
not yet implemented
for APFS
// Unalloc space is
handled separately
for APFS
if
(
dbFsInfo
.
fType
==
TSK_FS_TYPE_APFS
)
{
return
TSK_OK
;
}
...
...
This diff is collapsed.
Click to expand it.
tsk/auto/tsk_case_db.h
+
1
−
0
View file @
a8e1eb58
...
...
@@ -186,6 +186,7 @@ class TskAutoDb:public TskAuto {
TSK_OFF_T
offset
,
TSK_DADDR_T
addr
,
char
*
buf
,
size_t
size
,
TSK_FS_BLOCK_FLAG_ENUM
a_flags
,
void
*
ptr
);
int
md5HashAttr
(
unsigned
char
md5Hash
[
16
],
const
TSK_FS_ATTR
*
fs_attr
);
TSK_FILTER_ENUM
addUnallocatedPoolBlocks
(
const
TSK_POOL_INFO
*
pool_info
);
static
TSK_WALK_RET_ENUM
fsWalkUnallocBlocksCb
(
const
TSK_FS_BLOCK
*
a_block
,
void
*
a_ptr
);
TSK_RETVAL_ENUM
addFsInfoUnalloc
(
const
TSK_DB_FS_INFO
&
dbFsInfo
);
...
...
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