Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2005-12-08 13:55:29 +0300
committerCorinna Vinschen <corinna@vinschen.de>2005-12-08 13:55:29 +0300
commit7d6fde96deca12d77c7bd00c5d3216b94eb1bdea (patch)
treeeb555cf4c9b21733c2254220f3f5cb437e87846f /winsup/cygwin/fhandler_raw.cc
parentddd62ccbd4e10b481ee67b54548765f045fddc80 (diff)
* fhandler_raw.cc (fhandler_dev_raw::ioctl): Only allow 0, 1 or a
multiple of 512 as new buffersize.
Diffstat (limited to 'winsup/cygwin/fhandler_raw.cc')
-rw-r--r--winsup/cygwin/fhandler_raw.cc10
1 files changed, 8 insertions, 2 deletions
diff --git a/winsup/cygwin/fhandler_raw.cc b/winsup/cygwin/fhandler_raw.cc
index e4d4e3660..00d023e7e 100644
--- a/winsup/cygwin/fhandler_raw.cc
+++ b/winsup/cygwin/fhandler_raw.cc
@@ -157,8 +157,14 @@ fhandler_dev_raw::ioctl (unsigned int cmd, void *buf)
mop.mt_count = op->rd_parm;
ret = ioctl (MTIOCTOP, &mop);
}
- else if (devbuf && ((op->rd_parm <= 1 && (devbufend - devbufstart))
- || op->rd_parm < devbufend - devbufstart))
+ else if ((devbuf && ((op->rd_parm <= 1 && (devbufend - devbufstart))
+ || op->rd_parm < devbufend - devbufstart))
+ || (op->rd_parm > 1 && (op->rd_parm % 512)))
+ /* The conditions for a *valid* parameter are these:
+ - If there's still data in the current buffer, it must
+ fit in the new buffer.
+ - The new size is either 0 or 1, both indicating unbufferd
+ I/O, or the new buffersize must be a multiple of 512. */
ret = ERROR_INVALID_PARAMETER;
else if (!devbuf || op->rd_parm != devbufsiz)
{