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
e081a4db
Commit
e081a4db
authored
16 years ago
by
Brian Carrier
Browse files
Options
Downloads
Patches
Plain Diff
updated CreateFile error messages
parent
24752c3f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
tsk3/img/raw.c
+12
-7
12 additions, 7 deletions
tsk3/img/raw.c
with
12 additions
and
7 deletions
tsk3/img/raw.c
+
12
−
7
View file @
e081a4db
...
...
@@ -199,10 +199,10 @@ raw_open(const TSK_TCHAR * image)
DWORD
dwHi
,
dwLo
;
if
((
raw_info
->
fd
=
CreateFile
(
image
,
GENERIC_READ
,
FILE_SHARE_READ
,
0
,
OPEN_EXISTING
,
0
,
0
))
==
FILE_SHARE_READ
,
NULL
,
OPEN_EXISTING
,
0
,
NULL
))
==
INVALID_HANDLE_VALUE
)
{
// if it is a device, try SHARE_WRITE
// if it is a device, try
with
SHARE_WRITE
if
((
image
[
0
]
==
_TSK_T
(
'\\'
))
&&
(
image
[
1
]
==
_TSK_T
(
'\\'
))
&&
(
image
[
2
]
==
_TSK_T
(
'.'
))
&&
(
image
[
3
]
==
_TSK_T
(
'\\'
)))
{
if
(
tsk_verbose
)
...
...
@@ -210,23 +210,28 @@ raw_open(const TSK_TCHAR * image)
"raw_open: Trying Windows device with share_write mode
\n
"
);
raw_info
->
fd
=
CreateFile
(
image
,
GENERIC_READ
,
FILE_SHARE_READ
|
FILE_SHARE_WRITE
,
0
,
OPEN_EXISTING
,
0
,
0
);
FILE_SHARE_READ
|
FILE_SHARE_WRITE
,
NULL
,
OPEN_EXISTING
,
0
,
NULL
);
}
if
(
raw_info
->
fd
==
INVALID_HANDLE_VALUE
)
{
tsk_error_reset
();
tsk_errno
=
TSK_ERR_IMG_OPEN
;
// print string of commonly found errors
if
(
GetLastError
()
==
ERROR_ACCESS_DENIED
)
{
snprintf
(
tsk_errstr
,
TSK_ERRSTR_L
,
"raw_open file: %"
PRIttocTSK
"
msg:
Access Denied"
,
image
);
"raw_open file: %"
PRIttocTSK
"
(
Access Denied
)
"
,
image
);
}
if
(
GetLastError
()
==
ERROR_SHARING_VIOLATION
)
{
else
if
(
GetLastError
()
==
ERROR_SHARING_VIOLATION
)
{
snprintf
(
tsk_errstr
,
TSK_ERRSTR_L
,
"raw_open file: %"
PRIttocTSK
" msg: Sharing Violation"
,
image
);
"raw_open file: %"
PRIttocTSK
" (Sharing Violation)"
,
image
);
}
else
if
(
GetLastError
()
==
ERROR_FILE_NOT_FOUND
)
{
snprintf
(
tsk_errstr
,
TSK_ERRSTR_L
,
"raw_open file: %"
PRIttocTSK
" (File not found)"
,
image
);
}
else
{
snprintf
(
tsk_errstr
,
TSK_ERRSTR_L
,
"raw_open file: %"
PRIttocTSK
"
msg:
%d"
,
image
,
"raw_open file: %"
PRIttocTSK
"
(
%d
)
"
,
image
,
(
int
)
GetLastError
());
}
return
NULL
;
...
...
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