Merge pull request #1626 from gebart/pr/cfs-readonly-seek

core/cfs: Disallow seeking past the end of a file unless it is writable
This commit is contained in:
Nicolas Tsiftes 2016-05-03 12:52:11 +02:00
commit 617465e465

View file

@ -1055,7 +1055,12 @@ cfs_seek(int fd, cfs_offset_t offset, int whence)
}
if(fdp->file->end < new_offset) {
fdp->file->end = new_offset;
if(FD_WRITABLE(fd)) {
fdp->file->end = new_offset;
} else {
/* Disallow seeking past the end of the file for read only FDs */
return (cfs_offset_t)-1;
}
}
return fdp->offset = new_offset;