]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
rpc: Double buffer size instead of quadrupling buffer size.
authorRichard W.M. Jones <rjones@redhat.com>
Fri, 26 May 2017 11:23:42 +0000 (12:23 +0100)
committerRichard W.M. Jones <rjones@redhat.com>
Fri, 26 May 2017 12:53:31 +0000 (13:53 +0100)
When increasing the buffer size up to VIR_NET_MESSAGE_MAX, we
currently quadruple it each time.  This unfortunately means that we
cannot allow certain buffer sizes -- for example the current
VIR_NET_MESSAGE_MAX == 33554432 can never be "hit" since ‘newlen’
jumps from 16MB to 64MB.

Instead of quadrupling, double it each time.

Thanks: Daniel Berrange.
Signed-off-by: Richard W.M. Jones <rjones@redhat.com>
src/rpc/virnetmessage.c

index c3a2e595c130b98f4bd95afe31bdd9109690548c..5908b074a86c18288849e89cc21679e8bee4b84d 100644 (file)
@@ -358,7 +358,8 @@ int virNetMessageEncodePayload(virNetMessagePtr msg,
 
     /* Try to encode the payload. If the buffer is too small increase it. */
     while (!(*filter)(&xdr, data, 0)) {
-        unsigned int newlen = (msg->bufferLength - VIR_NET_MESSAGE_LEN_MAX) * 4;
+        unsigned int newlen = msg->bufferLength - VIR_NET_MESSAGE_LEN_MAX;
+        newlen *= 2;
 
         if (newlen > VIR_NET_MESSAGE_MAX) {
             virReportError(VIR_ERR_RPC, "%s", _("Unable to encode message payload"));