summaryrefslogtreecommitdiffstats
path: root/drivers/xen/xenbus
diff options
context:
space:
mode:
authorIan Campbell2012-01-04 12:39:51 +0100
committerKonrad Rzeszutek Wilk2012-01-04 23:02:04 +0100
commit50bf73796e85ed6a061df6d8474f7cef7870df6a (patch)
tree27ccd8abb98723da4338075d2e69bc0e688efa5a /drivers/xen/xenbus
parentxen/xenbus: Reject replies with payload > XENSTORE_PAYLOAD_MAX. (diff)
downloadkernel-qcow2-linux-50bf73796e85ed6a061df6d8474f7cef7870df6a.tar.gz
kernel-qcow2-linux-50bf73796e85ed6a061df6d8474f7cef7870df6a.tar.xz
kernel-qcow2-linux-50bf73796e85ed6a061df6d8474f7cef7870df6a.zip
xenbus: maximum buffer size is XENSTORE_PAYLOAD_MAX
Use this now that it is defined even though it happens to be == PAGE_SIZE. The code which takes requests from userspace already validates against the size of this buffer so no further checks are required to ensure that userspace requests comply with the protocol in this respect. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> Cc: Haogang Chen <haogangchen@gmail.com> Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Diffstat (limited to 'drivers/xen/xenbus')
-rw-r--r--drivers/xen/xenbus/xenbus_dev_frontend.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/xen/xenbus/xenbus_dev_frontend.c b/drivers/xen/xenbus/xenbus_dev_frontend.c
index aec01420d979..527dc2a3b89f 100644
--- a/drivers/xen/xenbus/xenbus_dev_frontend.c
+++ b/drivers/xen/xenbus/xenbus_dev_frontend.c
@@ -105,7 +105,7 @@ struct xenbus_file_priv {
unsigned int len;
union {
struct xsd_sockmsg msg;
- char buffer[PAGE_SIZE];
+ char buffer[XENSTORE_PAYLOAD_MAX];
} u;
/* Response queue. */