Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F151221587
D49674.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
466 B
Referenced Files
None
Subscribers
None
D49674.id.diff
View Options
diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c
--- a/sys/kern/vfs_syscalls.c
+++ b/sys/kern/vfs_syscalls.c
@@ -5075,6 +5075,15 @@
if (len == 0)
goto out;
+ /*
+ * Make sure that the ranges we check and lock below are valid. Note
+ * that len is clamped to SSIZE_MAX above.
+ */
+ if (inoff < 0 || outoff < 0) {
+ error = EINVAL;
+ goto out;
+ }
+
/*
* If infp and outfp refer to the same file, the byte ranges cannot
* overlap.
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Apr 7, 11:00 PM (5 h, 47 s)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31053797
Default Alt Text
D49674.id.diff (466 B)
Attached To
Mode
D49674: copy_file_range: Fix overlap checking
Attached
Detach File
Event Timeline
Log In to Comment