Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6-0]: src/sys/arch/xen Pull up following revision(s) (requested b...



details:   https://anonhg.NetBSD.org/src/rev/c780cd6fe83b
branches:  netbsd-6-0
changeset: 775110:c780cd6fe83b
user:      snj <snj%NetBSD.org@localhost>
date:      Fri Jan 08 21:24:37 2016 +0000

description:
Pull up following revision(s) (requested by bouyer in ticket #1358):
        sys/arch/xen/include/xen-public/io/ring.h: revision 1.3 via patch
        sys/arch/xen/xen/pciback.c: revision 1.10 via patch
        sys/arch/xen/xen/xbdback_xenbus.c: revision 1.62 via patch
        sys/arch/xen/xen/xennetback_xenbus.c: revision 1.54 via patch
Apply patch from xsa155: make sure that the backend won't read parts of the
request again (possibly because of compiler optimisations), by using
copies and barrier.
>From XSA155:
The compiler can emit optimizations in the PV backend drivers which
can lead to double fetch vulnerabilities. Specifically the shared
memory between the frontend and backend can be fetched twice (during
which time the frontend can alter the contents) possibly leading to
arbitrary code execution in backend.

diffstat:

 sys/arch/xen/include/xen-public/io/ring.h |  16 +++++-
 sys/arch/xen/xen/pciback.c                |  12 +++-
 sys/arch/xen/xen/xbdback_xenbus.c         |   5 +-
 sys/arch/xen/xen/xennetback_xenbus.c      |  82 +++++++++++++++---------------
 4 files changed, 69 insertions(+), 46 deletions(-)

diffs (truncated from 341 to 300 lines):

diff -r 20783602f454 -r c780cd6fe83b sys/arch/xen/include/xen-public/io/ring.h
--- a/sys/arch/xen/include/xen-public/io/ring.h Wed Nov 18 07:45:00 2015 +0000
+++ b/sys/arch/xen/include/xen-public/io/ring.h Fri Jan 08 21:24:37 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: ring.h,v 1.2 2011/12/07 15:40:15 cegger Exp $ */
+/* $NetBSD: ring.h,v 1.2.10.1 2016/01/08 21:24:37 snj Exp $ */
 /******************************************************************************
  * ring.h
  * 
@@ -236,6 +236,20 @@
 #define RING_GET_REQUEST(_r, _idx)                                      \
     (&((_r)->sring->ring[((_idx) & (RING_SIZE(_r) - 1))].req))
 
+/*
+ * Get a local copy of a request.
+ *
+ * Use this in preference to RING_GET_REQUEST() so all processing is
+ * done on a local copy that cannot be modified by the other end.
+ *
+ * Note that https://gcc.gnu.org/bugzilla/show_bug.cgi?id=58145 may cause this
+ * to be ineffective where _req is a struct which consists of only bitfields.
+ */
+#define RING_COPY_REQUEST(_r, _idx, _req) do {                         \
+       /* Use volatile to force the copy into _req. */                 \
+       *(_req) = *(volatile typeof(_req))RING_GET_REQUEST(_r, _idx);   \
+} while (0)
+
 #define RING_GET_RESPONSE(_r, _idx)                                     \
     (&((_r)->sring->ring[((_idx) & (RING_SIZE(_r) - 1))].rsp))
 
diff -r 20783602f454 -r c780cd6fe83b sys/arch/xen/xen/pciback.c
--- a/sys/arch/xen/xen/pciback.c        Wed Nov 18 07:45:00 2015 +0000
+++ b/sys/arch/xen/xen/pciback.c        Fri Jan 08 21:24:37 2016 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: pciback.c,v 1.7 2012/02/02 19:43:01 tls Exp $      */
+/*      $NetBSD: pciback.c,v 1.7.8.1 2016/01/08 21:24:37 snj Exp $      */
 
 /*
  * Copyright (c) 2009 Manuel Bouyer.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: pciback.c,v 1.7 2012/02/02 19:43:01 tls Exp $");
+__KERNEL_RCSID(0, "$NetBSD: pciback.c,v 1.7.8.1 2016/01/08 21:24:37 snj Exp $");
 
 #include "opt_xen.h"
 
@@ -188,6 +188,7 @@
        /* communication with the domU */
         unsigned int pbx_evtchn; /* our even channel */
         struct xen_pci_sharedinfo *pbx_sh_info;
+        struct xen_pci_op op;
         grant_handle_t pbx_shinfo_handle; /* to unmap shared page */
 };
 
@@ -712,13 +713,16 @@
 {
        struct pb_xenbus_instance *pbxi = arg;
        struct pciback_pci_dev *pbd;
-       struct xen_pci_op *op = &pbxi->pbx_sh_info->op;
+       struct xen_pci_op *op = &pbxi->op;
        u_int bus, dev, func;
 
        hypervisor_clear_event(pbxi->pbx_evtchn);
        if (xen_atomic_test_bit(&pbxi->pbx_sh_info->flags,
            _XEN_PCIF_active) == 0)
                return 0;
+
+       memcpy(op, &pbxi->pbx_sh_info->op, sizeof (struct xen_pci_op));
+       __insn_barrier();
        if (op->domain != 0) {
                aprint_error("pciback: domain %d != 0", op->domain);
                op->err = XEN_PCI_ERR_dev_not_found;
@@ -785,6 +789,8 @@
                aprint_error("pciback: unknown cmd %d\n", op->cmd);
                op->err = XEN_PCI_ERR_not_implemented;
        }
+       pbxi->pbx_sh_info->op.value = op->value;
+       pbxi->pbx_sh_info->op.err = op->err;
 end:
        xen_atomic_clear_bit(&pbxi->pbx_sh_info->flags, _XEN_PCIF_active);
        hypervisor_notify_via_evtchn(pbxi->pbx_evtchn);
diff -r 20783602f454 -r c780cd6fe83b sys/arch/xen/xen/xbdback_xenbus.c
--- a/sys/arch/xen/xen/xbdback_xenbus.c Wed Nov 18 07:45:00 2015 +0000
+++ b/sys/arch/xen/xen/xbdback_xenbus.c Fri Jan 08 21:24:37 2016 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: xbdback_xenbus.c,v 1.55.2.1.4.2 2015/11/16 07:53:01 msaitoh Exp $      */
+/*      $NetBSD: xbdback_xenbus.c,v 1.55.2.1.4.3 2016/01/08 21:24:37 snj Exp $      */
 
 /*
  * Copyright (c) 2006 Manuel Bouyer.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xbdback_xenbus.c,v 1.55.2.1.4.2 2015/11/16 07:53:01 msaitoh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xbdback_xenbus.c,v 1.55.2.1.4.3 2016/01/08 21:24:37 snj Exp $");
 
 #include <sys/atomic.h>
 #include <sys/buf.h>
@@ -1023,6 +1023,7 @@
                        req->sector_number = req64->sector_number;
                        break;
                }
+               __insn_barrier();
                XENPRINTF(("xbdback op %d req_cons 0x%x req_prod 0x%x "
                    "resp_prod 0x%x id %" PRIu64 "\n", req->operation,
                        xbdi->xbdi_ring.ring_n.req_cons,
diff -r 20783602f454 -r c780cd6fe83b sys/arch/xen/xen/xennetback_xenbus.c
--- a/sys/arch/xen/xen/xennetback_xenbus.c      Wed Nov 18 07:45:00 2015 +0000
+++ b/sys/arch/xen/xen/xennetback_xenbus.c      Fri Jan 08 21:24:37 2016 +0000
@@ -1,4 +1,4 @@
-/*      $NetBSD: xennetback_xenbus.c,v 1.47 2011/08/28 22:36:17 jym Exp $      */
+/*      $NetBSD: xennetback_xenbus.c,v 1.47.12.1 2016/01/08 21:24:37 snj Exp $      */
 
 /*
  * Copyright (c) 2006 Manuel Bouyer.
@@ -26,7 +26,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: xennetback_xenbus.c,v 1.47 2011/08/28 22:36:17 jym Exp $");
+__KERNEL_RCSID(0, "$NetBSD: xennetback_xenbus.c,v 1.47.12.1 2016/01/08 21:24:37 snj Exp $");
 
 #include "opt_xen.h"
 
@@ -714,7 +714,7 @@
 {
        struct xnetback_instance *xneti = arg;
        struct ifnet *ifp = &xneti->xni_if;
-       netif_tx_request_t *txreq;
+       netif_tx_request_t txreq;
        struct xni_pkt *pkt;
        vaddr_t pkt_va;
        struct mbuf *m;
@@ -732,36 +732,36 @@
                    receive_pending);
                if (receive_pending == 0)
                        break;
-               txreq = RING_GET_REQUEST(&xneti->xni_txring, req_cons);
+               RING_COPY_REQUEST(&xneti->xni_txring, req_cons, &txreq);
                xen_rmb();
                XENPRINTF(("%s pkt size %d\n", xneti->xni_if.if_xname,
-                   txreq->size));
+                   txreq.size));
                req_cons++;
                if (__predict_false((ifp->if_flags & (IFF_UP | IFF_RUNNING)) !=
                    (IFF_UP | IFF_RUNNING))) {
                        /* interface not up, drop */
-                       xennetback_tx_response(xneti, txreq->id,
+                       xennetback_tx_response(xneti, txreq.id,
                            NETIF_RSP_DROPPED);
                        continue;
                }
                /*
                 * Do some sanity checks, and map the packet's page.
                 */
-               if (__predict_false(txreq->size < ETHER_HDR_LEN ||
-                  txreq->size > (ETHER_MAX_LEN - ETHER_CRC_LEN))) {
+               if (__predict_false(txreq.size < ETHER_HDR_LEN ||
+                  txreq.size > (ETHER_MAX_LEN - ETHER_CRC_LEN))) {
                        printf("%s: packet size %d too big\n",
-                           ifp->if_xname, txreq->size);
-                       xennetback_tx_response(xneti, txreq->id,
+                           ifp->if_xname, txreq.size);
+                       xennetback_tx_response(xneti, txreq.id,
                            NETIF_RSP_ERROR);
                        ifp->if_ierrors++;
                        continue;
                }
                /* don't cross page boundaries */
                if (__predict_false(
-                   txreq->offset + txreq->size > PAGE_SIZE)) {
+                   txreq.offset + txreq.size > PAGE_SIZE)) {
                        printf("%s: packet cross page boundary\n",
                            ifp->if_xname);
-                       xennetback_tx_response(xneti, txreq->id,
+                       xennetback_tx_response(xneti, txreq.id,
                            NETIF_RSP_ERROR);
                        ifp->if_ierrors++;
                        continue;
@@ -773,15 +773,15 @@
                        if (ratecheck(&lasttime, &xni_pool_errintvl))
                                printf("%s: mbuf alloc failed\n",
                                    ifp->if_xname);
-                       xennetback_tx_response(xneti, txreq->id,
+                       xennetback_tx_response(xneti, txreq.id,
                            NETIF_RSP_DROPPED);
                        ifp->if_ierrors++;
                        continue;
                }
 
                XENPRINTF(("%s pkt offset %d size %d id %d req_cons %d\n",
-                   xneti->xni_if.if_xname, txreq->offset,
-                   txreq->size, txreq->id, MASK_NETIF_TX_IDX(req_cons)));
+                   xneti->xni_if.if_xname, txreq.offset,
+                   txreq.size, txreq.id, MASK_NETIF_TX_IDX(req_cons)));
                
                pkt = pool_get(&xni_pkt_pool, PR_NOWAIT);
                if (__predict_false(pkt == NULL)) {
@@ -789,16 +789,16 @@
                        if (ratecheck(&lasttime, &xni_pool_errintvl))
                                printf("%s: xnbpkt alloc failed\n",
                                    ifp->if_xname);
-                       xennetback_tx_response(xneti, txreq->id,
+                       xennetback_tx_response(xneti, txreq.id,
                            NETIF_RSP_DROPPED);
                        ifp->if_ierrors++;
                        m_freem(m);
                        continue;
                }
-               err = xen_shm_map(1, xneti->xni_domid, &txreq->gref, &pkt_va,
+               err = xen_shm_map(1, xneti->xni_domid, &txreq.gref, &pkt_va,
                    &pkt->pkt_handle, XSHM_RO);
                if (__predict_false(err == ENOMEM)) {
-                       xennetback_tx_response(xneti, txreq->id,
+                       xennetback_tx_response(xneti, txreq.id,
                            NETIF_RSP_DROPPED);
                        ifp->if_ierrors++;
                        pool_put(&xni_pkt_pool, pkt);
@@ -809,7 +809,7 @@
                if (__predict_false(err)) {
                        printf("%s: mapping foreing page failed: %d\n",
                            xneti->xni_if.if_xname, err);
-                       xennetback_tx_response(xneti, txreq->id,
+                       xennetback_tx_response(xneti, txreq.id,
                            NETIF_RSP_ERROR);
                        ifp->if_ierrors++;
                        pool_put(&xni_pkt_pool, pkt);
@@ -819,13 +819,13 @@
 
                if ((ifp->if_flags & IFF_PROMISC) == 0) {
                        struct ether_header *eh =
-                           (void*)(pkt_va + txreq->offset);
+                           (void*)(pkt_va + txreq.offset);
                        if (ETHER_IS_MULTICAST(eh->ether_dhost) == 0 &&
                            memcmp(CLLADDR(ifp->if_sadl), eh->ether_dhost,
                            ETHER_ADDR_LEN) != 0) {
                                xni_pkt_unmap(pkt, pkt_va);
                                m_freem(m);
-                               xennetback_tx_response(xneti, txreq->id,
+                               xennetback_tx_response(xneti, txreq.id,
                                    NETIF_RSP_OKAY);
                                continue; /* packet is not for us */
                        }
@@ -844,31 +844,31 @@
                         * ack it. Delaying it until the mbuf is
                         * freed will stall transmit.
                         */
-                       m->m_len = min(MHLEN, txreq->size);
+                       m->m_len = min(MHLEN, txreq.size);
                        m->m_pkthdr.len = 0;
-                       m_copyback(m, 0, txreq->size,
-                           (void *)(pkt_va + txreq->offset));
+                       m_copyback(m, 0, txreq.size,
+                           (void *)(pkt_va + txreq.offset));
                        xni_pkt_unmap(pkt, pkt_va);
-                       if (m->m_pkthdr.len < txreq->size) {
+                       if (m->m_pkthdr.len < txreq.size) {
                                ifp->if_ierrors++;
                                m_freem(m);
-                               xennetback_tx_response(xneti, txreq->id,
+                               xennetback_tx_response(xneti, txreq.id,
                                    NETIF_RSP_DROPPED);
                                continue;
                        }
-                       xennetback_tx_response(xneti, txreq->id,
+                       xennetback_tx_response(xneti, txreq.id,
                            NETIF_RSP_OKAY);
                } else {
 
-                       pkt->pkt_id = txreq->id;
+                       pkt->pkt_id = txreq.id;
                        pkt->pkt_xneti = xneti;
 
-                       MEXTADD(m, pkt_va + txreq->offset,
-                           txreq->size, M_DEVBUF, xennetback_tx_free, pkt);
-                       m->m_pkthdr.len = m->m_len = txreq->size;
+                       MEXTADD(m, pkt_va + txreq.offset,
+                           txreq.size, M_DEVBUF, xennetback_tx_free, pkt);
+                       m->m_pkthdr.len = m->m_len = txreq.size;
                        m->m_flags |= M_EXT_ROMAP;
                }
-               if ((txreq->flags & NETTXF_csum_blank) != 0) {
+               if ((txreq.flags & NETTXF_csum_blank) != 0) {
                        xennet_checksum_fill(&m);
                        if (m == NULL) {
                                ifp->if_ierrors++;
@@ -952,6 +952,7 @@
        mmu_update_t *mmup;
        multicall_entry_t *mclp;
        netif_rx_response_t *rxresp;
+       netif_rx_request_t rxreq;
        RING_IDX req_prod, resp_prod;
        int do_event = 0;
        gnttab_transfer_t *gop;
@@ -1027,10 +1028,10 @@
                                nppitems++;
                        }



Home | Main Index | Thread Index | Old Index