diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2007-10-26 13:31:20 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@citi.umich.edu> | 2008-02-01 16:42:02 -0500 |
commit | 01b2969a8528b926f5e4d98161ae37053234475c (patch) | |
tree | 942fbf141743721476a3d79aa7b920ab9e72910f /net/sunrpc/cache.c | |
parent | d4395e03fec0895d01451904b8a2276ceda663c9 (diff) |
SUNRPC: Prevent length underflow in read_flush()
Make sure we compare an unsigned length to an unsigned count in
read_flush().
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'net/sunrpc/cache.c')
-rw-r--r-- | net/sunrpc/cache.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net/sunrpc/cache.c b/net/sunrpc/cache.c index 73f053d0cc7a..d27bbe0ee907 100644 --- a/net/sunrpc/cache.c +++ b/net/sunrpc/cache.c | |||
@@ -1244,18 +1244,18 @@ static ssize_t read_flush(struct file *file, char __user *buf, | |||
1244 | struct cache_detail *cd = PDE(file->f_path.dentry->d_inode)->data; | 1244 | struct cache_detail *cd = PDE(file->f_path.dentry->d_inode)->data; |
1245 | char tbuf[20]; | 1245 | char tbuf[20]; |
1246 | unsigned long p = *ppos; | 1246 | unsigned long p = *ppos; |
1247 | int len; | 1247 | size_t len; |
1248 | 1248 | ||
1249 | sprintf(tbuf, "%lu\n", cd->flush_time); | 1249 | sprintf(tbuf, "%lu\n", cd->flush_time); |
1250 | len = strlen(tbuf); | 1250 | len = strlen(tbuf); |
1251 | if (p >= len) | 1251 | if (p >= len) |
1252 | return 0; | 1252 | return 0; |
1253 | len -= p; | 1253 | len -= p; |
1254 | if (len > count) len = count; | 1254 | if (len > count) |
1255 | len = count; | ||
1255 | if (copy_to_user(buf, (void*)(tbuf+p), len)) | 1256 | if (copy_to_user(buf, (void*)(tbuf+p), len)) |
1256 | len = -EFAULT; | 1257 | return -EFAULT; |
1257 | else | 1258 | *ppos += len; |
1258 | *ppos += len; | ||
1259 | return len; | 1259 | return len; |
1260 | } | 1260 | } |
1261 | 1261 | ||