]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
slirp: Use g_new() to allocate sockets in socreate()
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 6 Nov 2018 15:13:21 +0000 (15:13 +0000)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sat, 10 Nov 2018 14:07:53 +0000 (15:07 +0100)
The slirp socreate() function can only fail if the attempt
to malloc() the struct socket fails. Switch to using
g_new() instead, which will allow us to remove the
error-handling code from its callers.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
slirp/socket.c
slirp/tcp_input.c
slirp/tcp_subr.c

index 322383a1f9f2edf28a0d740a48511bd83c863274..35a9a14565931018015825dd7c3310dedf6ce2d6 100644 (file)
@@ -46,17 +46,15 @@ struct socket *solookup(struct socket **last, struct socket *head,
 struct socket *
 socreate(Slirp *slirp)
 {
-  struct socket *so;
+    struct socket *so = g_new(struct socket, 1);
 
-  so = (struct socket *)malloc(sizeof(struct socket));
-  if(so) {
     memset(so, 0, sizeof(struct socket));
     so->so_state = SS_NOFDREF;
     so->s = -1;
     so->slirp = slirp;
     so->pollfds_idx = -1;
-  }
-  return(so);
+
+    return so;
 }
 
 /*
@@ -110,7 +108,7 @@ sofree(struct socket *so)
   if (so->so_tcpcb) {
       free(so->so_tcpcb);
   }
-  free(so);
+  g_free(so);
 }
 
 size_t sopreprbuf(struct socket *so, struct iovec *iov, int *np)
@@ -721,8 +719,8 @@ tcp_listen(Slirp *slirp, uint32_t haddr, u_int hport, uint32_t laddr,
 
        /* Don't tcp_attach... we don't need so_snd nor so_rcv */
        if ((so->so_tcpcb = tcp_newtcpcb(so)) == NULL) {
-               free(so);
-               return NULL;
+            g_free(so);
+            return NULL;
        }
        insque(so, &slirp->tcb);
 
index 07bcbdb2dddcabfa181b5047d770160ade4bc9bb..4f79c95fdb4aa02b8c56578a2992bc69c6f89682 100644 (file)
@@ -432,8 +432,8 @@ findso:
          if ((so = socreate(slirp)) == NULL)
            goto dropwithreset;
          if (tcp_attach(so) < 0) {
-           free(so); /* Not sofree (if it failed, it's not insqued) */
-           goto dropwithreset;
+            g_free(so); /* Not sofree (if it failed, it's not insqued) */
+            goto dropwithreset;
          }
 
          sbreserve(&so->so_snd, TCP_SNDSPACE);
index 8d0f94b75fca3830ed0b067b456e9a6dd3973429..0270c89ae3abb6d4d215f622a70f468bd351b018 100644 (file)
@@ -475,7 +475,7 @@ void tcp_connect(struct socket *inso)
             return;
         }
         if (tcp_attach(so) < 0) {
-            free(so); /* NOT sofree */
+            g_free(so); /* NOT sofree */
             return;
         }
         so->lhost = inso->lhost;