Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a8489d12
Commit
a8489d12
authored
Aug 07, 2023
by
Joel Holdsworth
Committed by
Alexandre Julliard
Oct 05, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
server: Don't allow read-only files to be replaced by File{Rename,Link}Information{,Ex}.
Signed-off-by:
Joel Holdsworth
<
joel@airwebreathe.org.uk
>
parent
08ca54b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
8 deletions
+15
-8
file.c
dlls/ntdll/tests/file.c
+8
-8
fd.c
server/fd.c
+7
-0
No files found.
dlls/ntdll/tests/file.c
View file @
a8489d12
...
...
@@ -2226,9 +2226,9 @@ static void test_file_rename_information_ex(void)
}
todo_wine
ok
(
io
.
Status
==
0xdeadbeef
,
"io.Status expected 0xdeadbeef, got %lx
\n
"
,
io
.
Status
);
todo_wine
ok
(
res
==
STATUS_ACCESS_DENIED
,
"res expected STATUS_ACCESS_DENIED, got %lx
\n
"
,
res
);
ok
(
res
==
STATUS_ACCESS_DENIED
,
"res expected STATUS_ACCESS_DENIED, got %lx
\n
"
,
res
);
fileDeleted
=
GetFileAttributesW
(
oldpath
)
==
INVALID_FILE_ATTRIBUTES
&&
GetLastError
()
==
ERROR_FILE_NOT_FOUND
;
todo_wine
ok
(
!
fileDeleted
,
"file should exist
\n
"
);
ok
(
!
fileDeleted
,
"file should exist
\n
"
);
fileDeleted
=
GetFileAttributesW
(
newpath
)
==
INVALID_FILE_ATTRIBUTES
&&
GetLastError
()
==
ERROR_FILE_NOT_FOUND
;
ok
(
!
fileDeleted
,
"file should exist
\n
"
);
...
...
@@ -2259,10 +2259,10 @@ static void test_file_rename_information_ex(void)
io
.
Status
=
0xdeadbeef
;
res
=
pNtSetInformationFile
(
handle
,
&
io
,
fri
,
sizeof
(
FILE_RENAME_INFORMATION
)
+
fri
->
FileNameLength
,
FileRenameInformationEx
);
ok
(
io
.
Status
==
STATUS_SUCCESS
,
"io.Status expected STATUS_SUCCESS, got %lx
\n
"
,
io
.
Status
);
ok
(
res
==
STATUS_SUCCESS
,
"res expected STATUS_SUCCESS, got %lx
\n
"
,
res
);
todo_wine
ok
(
io
.
Status
==
STATUS_SUCCESS
,
"io.Status expected STATUS_SUCCESS, got %lx
\n
"
,
io
.
Status
);
todo_wine
ok
(
res
==
STATUS_SUCCESS
,
"res expected STATUS_SUCCESS, got %lx
\n
"
,
res
);
fileDeleted
=
GetFileAttributesW
(
oldpath
)
==
INVALID_FILE_ATTRIBUTES
&&
GetLastError
()
==
ERROR_FILE_NOT_FOUND
;
ok
(
fileDeleted
,
"file should not exist
\n
"
);
todo_wine
ok
(
fileDeleted
,
"file should not exist
\n
"
);
fileDeleted
=
GetFileAttributesW
(
newpath
)
==
INVALID_FILE_ATTRIBUTES
&&
GetLastError
()
==
ERROR_FILE_NOT_FOUND
;
ok
(
!
fileDeleted
,
"file should exist
\n
"
);
...
...
@@ -3076,7 +3076,7 @@ static void test_file_link_information_ex(void)
return
;
}
todo_wine
ok
(
io
.
Status
==
0xdeadbeef
,
"io.Status expected 0xdeadbeef, got %lx
\n
"
,
io
.
Status
);
ok
(
io
.
Status
==
0xdeadbeef
,
"io.Status expected 0xdeadbeef, got %lx
\n
"
,
io
.
Status
);
todo_wine
ok
(
res
==
STATUS_ACCESS_DENIED
,
"res expected STATUS_ACCESS_DENIED, got %lx
\n
"
,
res
);
fileDeleted
=
GetFileAttributesW
(
oldpath
)
==
INVALID_FILE_ATTRIBUTES
&&
GetLastError
()
==
ERROR_FILE_NOT_FOUND
;
ok
(
!
fileDeleted
,
"file should exist
\n
"
);
...
...
@@ -3110,8 +3110,8 @@ static void test_file_link_information_ex(void)
io
.
Status
=
0xdeadbeef
;
res
=
pNtSetInformationFile
(
handle
,
&
io
,
fli
,
sizeof
(
FILE_LINK_INFORMATION
)
+
fli
->
FileNameLength
,
FileLinkInformationEx
);
ok
(
io
.
Status
==
STATUS_SUCCESS
,
"io.Status expected STATUS_SUCCESS, got %lx
\n
"
,
io
.
Status
);
ok
(
res
==
STATUS_SUCCESS
,
"res expected STATUS_SUCCESS, got %lx
\n
"
,
res
);
todo_wine
ok
(
io
.
Status
==
STATUS_SUCCESS
,
"io.Status expected STATUS_SUCCESS, got %lx
\n
"
,
io
.
Status
);
todo_wine
ok
(
res
==
STATUS_SUCCESS
,
"res expected STATUS_SUCCESS, got %lx
\n
"
,
res
);
fileDeleted
=
GetFileAttributesW
(
oldpath
)
==
INVALID_FILE_ATTRIBUTES
&&
GetLastError
()
==
ERROR_FILE_NOT_FOUND
;
ok
(
!
fileDeleted
,
"file should exist
\n
"
);
fileDeleted
=
GetFileAttributesW
(
newpath
)
==
INVALID_FILE_ATTRIBUTES
&&
GetLastError
()
==
ERROR_FILE_NOT_FOUND
;
...
...
server/fd.c
View file @
a8489d12
...
...
@@ -2600,6 +2600,13 @@ static void set_fd_name( struct fd *fd, struct fd *root, const char *nameptr, da
goto
failed
;
}
/* read-only files cannot be replaced */
if
(
!
(
st
.
st_mode
&
(
S_IWUSR
|
S_IWGRP
|
S_IWOTH
)))
{
set_error
(
STATUS_ACCESS_DENIED
);
goto
failed
;
}
/* can't replace an opened file */
if
((
inode
=
get_inode
(
st
.
st_dev
,
st
.
st_ino
,
-
1
)))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment