Skip to content
Snippets Groups Projects
  1. Nov 21, 2017
    • Kevin Wolf's avatar
      block: Don't use BLK_PERM_CONSISTENT_READ for format probing · dacaa162
      Kevin Wolf authored
      
      For format probing, we don't really care whether all of the image
      content is consistent. The only thing we're looking at is the image
      header, and specifically the magic numbers that are expected to never
      change, no matter how inconsistent the guest visible disk content is.
      
      Therefore, don't request BLK_PERM_CONSISTENT_READ. This allows to use
      format probing, e.g. in the context of 'qemu-img info', even while the
      guest visible data in the image is inconsistent during a running block
      job.
      
      Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
      Reviewed-by: default avatarFam Zheng <famz@redhat.com>
      dacaa162
    • Michael Roth's avatar
      scripts/make-release: ship u-boot source as a tarball · d0dead3b
      Michael Roth authored
      
      The u-boot sources we ship currently cause problems with unpacking on
      a case-insensitive filesystem due to path conflicts. This has been
      fixed in upstream u-boot via commit 610eec7f, but since it is not
      yet included in an official release we implement this approach as a
      temporary workaround.
      
      Once we move to a u-boot containing commit 610eec7f we should revert
      this patch.
      
      Cc: qemu-stable@nongnu.org
      Cc: Alexander Graf <agraf@suse.de>
      Cc: Richard Henderson <richard.henderson@linaro.org>
      Cc: Thomas Huth <thuth@redhat.com>
      Cc: Peter Maydell <peter.maydell@linaro.org>
      Suggested-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Signed-off-by: default avatarMichael Roth <mdroth@linux.vnet.ibm.com>
      Reviewed-by: default avatarThomas Huth <thuth@redhat.com>
      Message-id: 20171107205201.10207-1-mdroth@linux.vnet.ibm.com
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      d0dead3b
    • Peter Maydell's avatar
      accel/tcg: Handle atomic accesses to notdirty memory correctly · 34d49937
      Peter Maydell authored
      
      To do a write to memory that is marked as notdirty, we need
      to invalidate any TBs we have cached for that memory, and
      update the cpu physical memory dirty flags for VGA and migration.
      The slowpath code in notdirty_mem_write() does all this correctly,
      but the new atomic handling code in atomic_mmu_lookup() doesn't
      do anything at all, it just clears the dirty bit in the TLB.
      
      The effect of this bug is that if the first write to a notdirty
      page for which we have cached TBs is by a guest atomic access,
      we fail to invalidate the TBs and subsequently will execute
      incorrect code. This can be seen by trying to run 'javac' on AArch64.
      
      Use the new notdirty_call_before() and notdirty_call_after()
      functions to correctly handle the update to notdirty memory
      in the atomic codepath.
      
      Cc: qemu-stable@nongnu.org
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-id: 1511201308-23580-3-git-send-email-peter.maydell@linaro.org
      34d49937
    • Peter Maydell's avatar
      exec.c: Factor out before/after actions for notdirty memory writes · 27266271
      Peter Maydell authored
      
      The function notdirty_mem_write() has a sequence of actions
      it has to do before and after the actual business of writing
      data to host RAM to ensure that dirty flags are correctly
      updated and we flush any TCG translations for the region.
      We need to do this also in other places that write directly
      to host RAM, most notably the TCG atomic helper functions.
      Pull out the before and after pieces into their own functions.
      
      We use an API where the prepare function stashes the various
      bits of information about the write into a struct for the
      complete function to use, because in the calls for the atomic
      helpers the place where the complete function will be called
      doesn't have the information to hand.
      
      Cc: qemu-stable@nongnu.org
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Reviewed-by: default avatarPaolo Bonzini <pbonzini@redhat.com>
      Message-id: 1511201308-23580-2-git-send-email-peter.maydell@linaro.org
      27266271
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/mdroth/tags/qga-pull-2017-11-20-tag' into staging · a61d3439
      Peter Maydell authored
      
      qemu-ga patch queue for 2.11
      
      * fix potential overflow in network interface stats reporting
      
      # gpg: Signature made Mon 20 Nov 2017 20:56:05 GMT
      # gpg:                using RSA key 0x3353C9CEF108B584
      # gpg: Good signature from "Michael Roth <flukshun@gmail.com>"
      # gpg:                 aka "Michael Roth <mdroth@utexas.edu>"
      # gpg:                 aka "Michael Roth <mdroth@linux.vnet.ibm.com>"
      # Primary key fingerprint: CEAC C9E1 5534 EBAB B82D  3FA0 3353 C9CE F108 B584
      
      * remotes/mdroth/tags/qga-pull-2017-11-20-tag:
        qga: replace GetIfEntry with GetIfEntry2 for interface stats
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      a61d3439
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/riku/tags/pull-linux-user-20171120' into staging · 1b4e6e8c
      Peter Maydell authored
      
      late linux-user fixes for Qemu 2.11
      
      # gpg: Signature made Mon 20 Nov 2017 21:19:00 GMT
      # gpg:                using RSA key 0xB44890DEDE3C9BC0
      # gpg: Good signature from "Riku Voipio <riku.voipio@iki.fi>"
      # gpg:                 aka "Riku Voipio <riku.voipio@linaro.org>"
      # Primary key fingerprint: FF82 03C8 C391 98AE 0581  41EF B448 90DE DE3C 9BC0
      
      * remotes/riku/tags/pull-linux-user-20171120:
        linux-user: Fix calculation of auxv length
        linux-user: Handle rt_sigaction correctly for SPARC
        linux-user/sparc: Put address for data faults where linux-user expects it
        linux-user/ppc: Report correct fault address for data faults
        linux-user/s390x: Mask si_addr for SIGSEGV
        linux-user: return EINVAL from prctl(PR_*_SECCOMP)
        linux-user: fix 'finshed' typo in comment
        linux-user/syscall.c: Handle SH4's exceptional alignment for p{read, write}64
        linux-user: Handle TARGET_MAP_STACK and TARGET_MAP_HUGETLB
        linux-user/hppa: Fix TARGET_F_RDLCK, TARGET_F_WRLCK, TARGET_F_UNLCK
        linux-user/hppa: Fix TARGET_MAP_TYPE
        linux-user/hppa: Fix typo for TARGET_NR_epoll_wait
        linux-user/hppa: Fix cpu_clone_regs
        linux-user/hppa: Fix TARGET_SA_* defines
        linux-user: Restrict usage of sa_restorer
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      1b4e6e8c
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/pmaydell/tags/pull-target-arm-20171120' into staging · 5f49d73c
      Peter Maydell authored
      
      target-arm queue:
       * hw/arm: Silence xlnx-ep108 deprecation warning during tests
       * hw/arm/aspeed: Unlock SCU when running kernel
       * arm: check regime, not current state, for ATS write PAR format
       * nvic: Fix ARMv7M MPU_RBAR reads
       * target/arm: Report GICv3 sysregs present in ID registers if needed
      
      # gpg: Signature made Mon 20 Nov 2017 17:35:25 GMT
      # gpg:                using RSA key 0x3C2525ED14360CDE
      # gpg: Good signature from "Peter Maydell <peter.maydell@linaro.org>"
      # gpg:                 aka "Peter Maydell <pmaydell@gmail.com>"
      # gpg:                 aka "Peter Maydell <pmaydell@chiark.greenend.org.uk>"
      # Primary key fingerprint: E1A5 C593 CD41 9DE2 8E83  15CF 3C25 25ED 1436 0CDE
      
      * remotes/pmaydell/tags/pull-target-arm-20171120:
        hw/arm: Silence xlnx-ep108 deprecation warning during tests
        hw/arm/aspeed: Unlock SCU when running kernel
        arm: check regime, not current state, for ATS write PAR format
        nvic: Fix ARMv7M MPU_RBAR reads
        target/arm: Report GICv3 sysregs present in ID registers if needed
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      5f49d73c
  2. Nov 20, 2017
  3. Nov 19, 2017
    • Greg Kurz's avatar
      spapr: reset DRCs after devices · 82512483
      Greg Kurz authored
      
      A DRC with a pending unplug request releases its associated device at
      machine reset time.
      
      In the case of LMB, when all DRCs for a DIMM device have been reset,
      the DIMM gets unplugged, causing guest memory to disappear. This may
      be very confusing for anything still using this memory.
      
      This is exactly what happens with vhost backends, and QEMU aborts
      with:
      
      qemu-system-ppc64: used ring relocated for ring 2
      qemu-system-ppc64: qemu/hw/virtio/vhost.c:649: vhost_commit: Assertion
       `r >= 0' failed.
      
      The issue is that each DRC registers a QEMU reset handler, and we
      don't control the order in which these handlers are called (ie,
      a LMB DRC will unplug a DIMM before the virtio device using the
      memory on this DIMM could stop its vhost backend).
      
      To avoid such situations, let's reset DRCs after all devices
      have been reset.
      
      Reported-by: default avatarMallesh N. Koti <mallesh@linux.vnet.ibm.com>
      Signed-off-by: default avatarGreg Kurz <groug@kaod.org>
      Reviewed-by: default avatarDaniel Henrique Barboza <danielhb@linux.vnet.ibm.com>
      Reviewed-by: default avatarMichael Roth <mdroth@linux.vnet.ibm.com>
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      82512483
    • Suraj Jitindar Singh's avatar
      target/ppc: Update setting of cpu features to account for compat modes · 7abd43ba
      Suraj Jitindar Singh authored
      
      The device tree nodes ibm,arch-vec-5-platform-support and ibm,pa-features
      are used to communicate features of the cpu to the guest operating
      system. The properties of each of these are determined based on the
      selected cpu model and the availability of hypervisor features.
      Currently the compatibility mode of the cpu is not taken into account.
      
      The ibm,arch-vec-5-platform-support node is used to communicate the
      level of support for various ISAv3 processor features to the guest
      before CAS to inform the guests' request. The available mmu mode should
      only be hash unless the cpu is a POWER9 which is not in a prePOWER9
      compat mode, in which case the available modes depend on the
      accelerator and the hypervisor capabilities.
      
      The ibm,pa-featues node is used to communicate the level of cpu support
      for various features to the guest os. This should only contain features
      relevant to the operating mode of the processor, that is the selected
      cpu model taking into account any compat mode. This means that the
      compat mode should be taken into account when choosing the properties of
      ibm,pa-features and they should match the compat mode selected, or the
      cpu model selected if no compat mode.
      
      Update the setting of these cpu features in the device tree as described
      above to properly take into account any compat mode. We use the
      ppc_check_compat function which takes into account the current processor
      model and the cpu compat mode.
      
      Signed-off-by: default avatarSuraj Jitindar Singh <sjitindarsingh@gmail.com>
      Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
      7abd43ba
  4. Nov 17, 2017
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging · 2e020834
      Peter Maydell authored
      
      Block layer patches for 2.11.0-rc2
      
      # gpg: Signature made Fri 17 Nov 2017 17:58:36 GMT
      # gpg:                using RSA key 0x7F09B272C88F2FD6
      # gpg: Good signature from "Kevin Wolf <kwolf@redhat.com>"
      # Primary key fingerprint: DC3D EB15 9A9A F95D 3D74  56FE 7F09 B272 C88F 2FD6
      
      * remotes/kevin/tags/for-upstream: (25 commits)
        iotests: Make 087 pass without AIO enabled
        block: Make bdrv_next() keep strong references
        qcow2: Fix overly broad madvise()
        qcow2: Refuse to get unaligned offsets from cache
        qcow2: Add bounds check to get_refblock_offset()
        block: Guard against NULL bs->drv
        qcow2: Unaligned zero cluster in handle_alloc()
        qcow2: check_errors are fatal
        qcow2: reject unaligned offsets in write compressed
        iotests: Add test for failing qemu-img commit
        tests: Add check-qobject for equality tests
        iotests: Add test for non-string option reopening
        block: qobject_is_equal() in bdrv_reopen_prepare()
        qapi: Add qobject_is_equal()
        qapi/qlist: Add qlist_append_null() macro
        qapi/qnull: Add own header
        qcow2: fix image corruption on commit with persistent bitmap
        iotests: test clearing unknown autoclear_features by qcow2
        block: Fix permissions in image activation
        qcow2: fix image corruption after committing qcow2 image into base
        ...
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      2e020834
    • Kevin Wolf's avatar
      Merge remote-tracking branch 'mreitz/tags/pull-block-2017-11-17' into queue-block · d5a49c6e
      Kevin Wolf authored
      
      Block patches for 2.11.0-rc2
      
      # gpg: Signature made Fri Nov 17 18:22:07 2017 CET
      # gpg:                using RSA key F407DB0061D5CF40
      # gpg: Good signature from "Max Reitz <mreitz@redhat.com>"
      # Primary key fingerprint: 91BE B60A 30DB 3E88 57D1  1829 F407 DB00 61D5 CF40
      
      * mreitz/tags/pull-block-2017-11-17:
        iotests: Make 087 pass without AIO enabled
        block: Make bdrv_next() keep strong references
        qcow2: Fix overly broad madvise()
        qcow2: Refuse to get unaligned offsets from cache
        qcow2: Add bounds check to get_refblock_offset()
        block: Guard against NULL bs->drv
        qcow2: Unaligned zero cluster in handle_alloc()
        qcow2: check_errors are fatal
        qcow2: reject unaligned offsets in write compressed
        iotests: Add test for failing qemu-img commit
        tests: Add check-qobject for equality tests
        iotests: Add test for non-string option reopening
        block: qobject_is_equal() in bdrv_reopen_prepare()
        qapi: Add qobject_is_equal()
        qapi/qlist: Add qlist_append_null() macro
        qapi/qnull: Add own header
      
      Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
      d5a49c6e
    • Hanna Reitz's avatar
      iotests: Make 087 pass without AIO enabled · c0012e9a
      Hanna Reitz authored
      
      If AIO has not been enabled in the qemu build that is to be tested, we
      should skip the "aio=native without O_DIRECT" test instead of failing.
      
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      Message-id: 20171115180732.31753-1-mreitz@redhat.com
      Reviewed-by: default avatarEric Blake <eblake@redhat.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      c0012e9a
    • Hanna Reitz's avatar
      block: Make bdrv_next() keep strong references · 5e003f17
      Hanna Reitz authored
      
      On one hand, it is a good idea for bdrv_next() to return a strong
      reference because ideally nearly every pointer should be refcounted.
      This fixes intermittent failure of iotest 194.
      
      On the other, it is absolutely necessary for bdrv_next() itself to keep
      a strong reference to both the BB (in its first phase) and the BDS (at
      least in the second phase) because when called the next time, it will
      dereference those objects to get a link to the next one.  Therefore, it
      needs these objects to stay around until then.  Just storing the pointer
      to the next in the iterator is not really viable because that pointer
      might become invalid as well.
      
      Both arguments taken together means we should probably just invoke
      bdrv_ref() and blk_ref() in bdrv_next().  This means we have to assert
      that bdrv_next() is always called from the main loop, but that was
      probably necessary already before this patch and judging from the
      callers, it also looks to actually be the case.
      
      Keeping these strong references means however that callers need to give
      them up if they decide to abort the iteration early.  They can do so
      through the new bdrv_next_cleanup() function.
      
      Suggested-by: default avatarKevin Wolf <kwolf@redhat.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      Message-id: 20171110172545.32609-1-mreitz@redhat.com
      Reviewed-by: default avatarStefan Hajnoczi <stefanha@redhat.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      5e003f17
    • Hanna Reitz's avatar
      qcow2: Fix overly broad madvise() · 08546bcf
      Hanna Reitz authored
      
      @mem_size and @offset are both size_t, thus subtracting them from one
      another will just return a big size_t if mem_size < offset -- even more
      obvious here because the result is stored in another size_t.
      
      Checking that result to be positive is therefore not sufficient to
      exclude the case that offset > mem_size.  Thus, we currently sometimes
      issue an madvise() over a very large address range.
      
      This is triggered by iotest 163, but with -m64, this does not result in
      tangible problems.  But with -m32, this test produces three segfaults,
      all of which are fixed by this patch.
      
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      Message-id: 20171114184127.24238-1-mreitz@redhat.com
      Reviewed-by: default avatarEric Blake <eblake@redhat.com>
      Reviewed-by: default avatarAlberto Garcia <berto@igalia.com>
      Reviewed-by: default avatarDarren Kenny <darren.kenny@oracle.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      08546bcf
    • Hanna Reitz's avatar
      qcow2: Refuse to get unaligned offsets from cache · 4efb1f7c
      Hanna Reitz authored
      
      Instead of using an assertion, it is better to emit a corruption event
      here.  Checking all offsets for correct alignment can be tedious and it
      is easily possible to forget to do so.  qcow2_cache_do_get() is a
      function every L2 and refblock access has to go through, so this is a
      good central point to add such a check.
      
      And for good measure, let us also add an assertion that the offset is
      non-zero.  Making this a corruption event is not feasible, because a
      zero offset usually means something special (such as the cluster is
      unused), so all callers should be checking this anyway.  If they do not,
      it is their fault, hence the assertion here.
      
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      Message-id: 20171110203111.7666-6-mreitz@redhat.com
      Reviewed-by: default avatarEric Blake <eblake@redhat.com>
      Reviewed-by: default avatarAlberto Garcia <berto@igalia.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      4efb1f7c
    • Hanna Reitz's avatar
      qcow2: Add bounds check to get_refblock_offset() · 23482f8a
      Hanna Reitz authored
      
      Reported-by: default avatarR. Nageswara Sastry <nasastry@in.ibm.com>
      Buglink: https://bugs.launchpad.net/qemu/+bug/1728661
      
      
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      Message-id: 20171110203111.7666-5-mreitz@redhat.com
      Reviewed-by: default avatarEric Blake <eblake@redhat.com>
      Reviewed-by: default avatarAlberto Garcia <berto@igalia.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      23482f8a
    • Hanna Reitz's avatar
      block: Guard against NULL bs->drv · d470ad42
      Hanna Reitz authored
      
      We currently do not guard everywhere against a NULL bs->drv where we
      should be doing so.  Most of the places fixed here just do not care
      about that case at all.
      
      Some care implicitly, e.g. through a prior function call to
      bdrv_getlength() which would always fail for an ejected BDS.  Add an
      assert there to make it more obvious.
      
      Other places seem to care, but do so insufficiently: Freeing clusters in
      a qcow2 image is an error-free operation, but it may leave the image in
      an unusable state anyway.  Giving qcow2_free_clusters() an error code is
      not really viable, it is much easier to note that bs->drv may be NULL
      even after a successful driver call.  This concerns bdrv_co_flush(), and
      the way the check is added to bdrv_co_pdiscard() (in every iteration
      instead of only once).
      
      Finally, some places employ at least an assert(bs->drv); somewhere, that
      may be reasonable (such as in the reopen code), but in
      bdrv_has_zero_init(), it is definitely not.  Returning 0 there in case
      of an ejected BDS saves us much headache instead.
      
      Reported-by: default avatarR. Nageswara Sastry <nasastry@in.ibm.com>
      Buglink: https://bugs.launchpad.net/qemu/+bug/1728660
      
      
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      Message-id: 20171110203111.7666-4-mreitz@redhat.com
      Reviewed-by: default avatarEric Blake <eblake@redhat.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      d470ad42
    • Hanna Reitz's avatar
      qcow2: Unaligned zero cluster in handle_alloc() · 93bbaf03
      Hanna Reitz authored
      
      We should check whether the cluster offset we are about to use is
      actually valid; that is, whether it is aligned to cluster boundaries.
      
      Reported-by: default avatarR. Nageswara Sastry <nasastry@in.ibm.com>
      Buglink: https://bugs.launchpad.net/qemu/+bug/1728643
      Buglink: https://bugs.launchpad.net/qemu/+bug/1728657
      
      
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      Message-id: 20171110203111.7666-3-mreitz@redhat.com
      Reviewed-by: default avatarEric Blake <eblake@redhat.com>
      Reviewed-by: default avatarAlberto Garcia <berto@igalia.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      93bbaf03
    • Hanna Reitz's avatar
      qcow2: check_errors are fatal · 791fff50
      Hanna Reitz authored
      
      When trying to repair a dirty image, qcow2_check() may apparently
      succeed (no really fatal error occurred that would prevent the check
      from continuing), but if check_errors in the result object is non-zero,
      we cannot trust the image to be usable.
      
      Reported-by: default avatarR. Nageswara Sastry <nasastry@in.ibm.com>
      Buglink: https://bugs.launchpad.net/qemu/+bug/1728639
      
      
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      Message-id: 20171110203111.7666-2-mreitz@redhat.com
      Reviewed-by: default avatarEric Blake <eblake@redhat.com>
      Signed-off-by: default avatarMax Reitz <mreitz@redhat.com>
      791fff50
Loading