]> git.proxmox.com Git - mirror_qemu.git/commitdiff
slirp: Fix access to freed memory
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 13 Nov 2016 22:54:27 +0000 (23:54 +0100)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Mon, 14 Nov 2016 16:36:33 +0000 (17:36 +0100)
if_start() goes through the slirp->if_fastq and slirp->if_batchq
list of pending messages, and accesses ifm->ifq_so->so_nqueued of its
elements if ifm->ifq_so != NULL.  When freeing a socket, we thus need
to make sure that any pending message for this socket does not refer
to the socket any more.

Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
Tested-by: Brian Candler <b.candler@pobox.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
slirp/socket.c

index 280050a21f87b51cf2f6c056f473d8b6ce081af9..6c189713688cdf10ce25b01221d67a15e864ca0b 100644 (file)
@@ -66,6 +66,23 @@ void
 sofree(struct socket *so)
 {
   Slirp *slirp = so->slirp;
+  struct mbuf *ifm;
+
+  for (ifm = (struct mbuf *) slirp->if_fastq.qh_link;
+       (struct quehead *) ifm != &slirp->if_fastq;
+       ifm = ifm->ifq_next) {
+    if (ifm->ifq_so == so) {
+      ifm->ifq_so = NULL;
+    }
+  }
+
+  for (ifm = (struct mbuf *) slirp->if_batchq.qh_link;
+       (struct quehead *) ifm != &slirp->if_batchq;
+       ifm = ifm->ifq_next) {
+    if (ifm->ifq_so == so) {
+      ifm->ifq_so = NULL;
+    }
+  }
 
   if (so->so_emu==EMU_RSH && so->extra) {
        sofree(so->extra);