Page MenuHomeFreeBSD

D49674.id153178.diff
No OneTemporary

D49674.id153178.diff

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.
+ */
+ if (inoff < 0 || outoff < 0 || inoff + (ssize_t)len < 0 ||
+ outoff + (ssize_t)len < 0) {
+ error = EINVAL;
+ goto out;
+ }
+
/*
* If infp and outfp refer to the same file, the byte ranges cannot
* overlap.

File Metadata

Mime Type
text/plain
Expires
Fri, Aug 7, 1:43 PM (2 h, 50 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
36177089
Default Alt Text
D49674.id153178.diff (478 B)

Event Timeline