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
c9846b15
Commit
c9846b15
authored
15 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
Fix for 2706862 for default HFS permissions when mode is not set
parent
bd552946
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CHANGES.txt
+3
-0
3 additions, 0 deletions
CHANGES.txt
tsk3/fs/hfs.c
+22
-7
22 additions, 7 deletions
tsk3/fs/hfs.c
with
25 additions
and
7 deletions
CHANGES.txt
+
3
−
0
View file @
c9846b15
...
@@ -77,6 +77,9 @@ attributes. Patch by Jamie Butler.
...
@@ -77,6 +77,9 @@ attributes. Patch by Jamie Butler.
4/21/09: Bug Fix. Fixed issue 2777633 re: missing second resolution on FAT
4/21/09: Bug Fix. Fixed issue 2777633 re: missing second resolution on FAT
creation times. Reported by Eoghan Casey.
creation times. Reported by Eoghan Casey.
4/21/09: Bug Fix: Fixed issue 2706862 re: default assignment of HFS
permissions and type. Patch by Rob Joyce.
---------------- VERSION 3.0.0 --------------
---------------- VERSION 3.0.0 --------------
0/00/00: Update: Many, many, many API changes.
0/00/00: Update: Many, many, many API changes.
...
...
This diff is collapsed.
Click to expand it.
tsk3/fs/hfs.c
+
22
−
7
View file @
c9846b15
...
@@ -1727,6 +1727,7 @@ hfs_dinode_copy(HFS_INFO * a_hfs, const hfs_file_folder * a_entry,
...
@@ -1727,6 +1727,7 @@ hfs_dinode_copy(HFS_INFO * a_hfs, const hfs_file_folder * a_entry,
{
{
const
hfs_file_fold_std
*
std
;
const
hfs_file_fold_std
*
std
;
TSK_FS_INFO
*
fs
=
(
TSK_FS_INFO
*
)
&
a_hfs
->
fs_info
;
TSK_FS_INFO
*
fs
=
(
TSK_FS_INFO
*
)
&
a_hfs
->
fs_info
;
uint16_t
hfsmode
;
if
(
a_fs_meta
==
NULL
)
{
if
(
a_fs_meta
==
NULL
)
{
tsk_errno
=
TSK_ERR_FS_ARG
;
tsk_errno
=
TSK_ERR_FS_ARG
;
...
@@ -1758,12 +1759,20 @@ hfs_dinode_copy(HFS_INFO * a_hfs, const hfs_file_folder * a_entry,
...
@@ -1758,12 +1759,20 @@ hfs_dinode_copy(HFS_INFO * a_hfs, const hfs_file_folder * a_entry,
/*
/*
* Copy the file type specific stuff first
* Copy the file type specific stuff first
*/
*/
hfsmode
=
tsk_getu16
(
fs
->
endian
,
std
->
perm
.
mode
);
if
(
tsk_getu16
(
fs
->
endian
,
std
->
rec_type
)
==
HFS_FOLDER_RECORD
)
{
if
(
tsk_getu16
(
fs
->
endian
,
std
->
rec_type
)
==
HFS_FOLDER_RECORD
)
{
// set the type of mode is not set
if
((
hfsmode
&
HFS_IN_IFMT
)
==
0
)
a_fs_meta
->
type
=
TSK_FS_META_TYPE_DIR
;
a_fs_meta
->
size
=
0
;
a_fs_meta
->
size
=
0
;
memset
(
a_fs_meta
->
content_ptr
,
0
,
HFS_FILE_CONTENT_LEN
);
memset
(
a_fs_meta
->
content_ptr
,
0
,
HFS_FILE_CONTENT_LEN
);
}
}
else
if
(
tsk_getu16
(
fs
->
endian
,
std
->
rec_type
)
==
HFS_FILE_RECORD
)
{
else
if
(
tsk_getu16
(
fs
->
endian
,
std
->
rec_type
)
==
HFS_FILE_RECORD
)
{
hfs_fork
*
fork
;
hfs_fork
*
fork
;
// set the type of mode is not set
if
((
hfsmode
&
HFS_IN_IFMT
)
==
0
)
a_fs_meta
->
type
=
TSK_FS_META_TYPE_REG
;
a_fs_meta
->
size
=
a_fs_meta
->
size
=
tsk_getu64
(
fs
->
endian
,
a_entry
->
file
.
data
.
logic_sz
);
tsk_getu64
(
fs
->
endian
,
a_entry
->
file
.
data
.
logic_sz
);
...
@@ -1779,15 +1788,21 @@ hfs_dinode_copy(HFS_INFO * a_hfs, const hfs_file_folder * a_entry,
...
@@ -1779,15 +1788,21 @@ hfs_dinode_copy(HFS_INFO * a_hfs, const hfs_file_folder * a_entry,
}
}
/*
/*
* Copy the standard stuff
* Copy the standard stuff.
* Use default values (as defined in spec) if mode is not defined.
*/
*/
a_fs_meta
->
mode
=
if
((
hfsmode
&
HFS_IN_IFMT
)
==
0
)
{
hfsmode2tskmode
(
tsk_getu16
(
fs
->
endian
,
std
->
perm
.
mode
));
a_fs_meta
->
mode
=
0
;
a_fs_meta
->
type
=
a_fs_meta
->
uid
=
99
;
hfsmode2tskmetatype
(
tsk_getu16
(
fs
->
endian
,
std
->
perm
.
mode
));
a_fs_meta
->
gid
=
99
;
}
else
{
a_fs_meta
->
mode
=
hfsmode2tskmode
(
hfsmode
);
a_fs_meta
->
type
=
hfsmode2tskmetatype
(
hfsmode
);
a_fs_meta
->
uid
=
tsk_getu32
(
fs
->
endian
,
std
->
perm
.
owner
);
a_fs_meta
->
gid
=
tsk_getu32
(
fs
->
endian
,
std
->
perm
.
group
);
}
a_fs_meta
->
uid
=
tsk_getu32
(
fs
->
endian
,
std
->
perm
.
owner
);
a_fs_meta
->
gid
=
tsk_getu32
(
fs
->
endian
,
std
->
perm
.
group
);
// this field is set only for "indirect" entries
// this field is set only for "indirect" entries
if
(
tsk_getu32
(
fs
->
endian
,
std
->
perm
.
special
.
nlink
))
if
(
tsk_getu32
(
fs
->
endian
,
std
->
perm
.
special
.
nlink
))
a_fs_meta
->
nlink
=
tsk_getu32
(
fs
->
endian
,
std
->
perm
.
special
.
nlink
);
a_fs_meta
->
nlink
=
tsk_getu32
(
fs
->
endian
,
std
->
perm
.
special
.
nlink
);
...
...
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