Skip to content
Snippets Groups Projects
  1. Mar 04, 2022
    • Emanuele Giuseppe Esposito's avatar
      block: introduce bdrv_activate · a94750d9
      Emanuele Giuseppe Esposito authored
      
      This function is currently just a wrapper for bdrv_invalidate_cache(),
      but in future will contain the code of bdrv_co_invalidate_cache() that
      has to always be protected by BQL, and leave the rest in the I/O
      coroutine.
      
      Replace all bdrv_invalidate_cache() invokations with bdrv_activate().
      
      Signed-off-by: default avatarEmanuele Giuseppe Esposito <eesposit@redhat.com>
      Reviewed-by: default avatarHanna Reitz <hreitz@redhat.com>
      Message-Id: <20220209105452.1694545-4-eesposit@redhat.com>
      Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
      a94750d9
    • Emanuele Giuseppe Esposito's avatar
      crypto: distinguish between main loop and I/O in block_crypto_amend_options_generic_luks · dae84929
      Emanuele Giuseppe Esposito authored
      
      block_crypto_amend_options_generic_luks uses the block layer
      permission API, therefore it should be called with the BQL held.
      
      However, the same function is being called by two BlockDriver
      callbacks: bdrv_amend_options (under BQL) and bdrv_co_amend (I/O).
      
      The latter is I/O because it is invoked by block/amend.c's
      blockdev_amend_run(), a .run callback of the amend JobDriver.
      
      Therefore we want to change this function to still perform
      the permission check, but making sure it is done under BQL regardless
      of the caller context.
      
      Remove the permission check in block_crypto_amend_options_generic_luks()
      and:
      - in block_crypto_amend_options_luks() (BQL case, called by
        .bdrv_amend_options()), reuse helper functions
        block_crypto_amend_{prepare/cleanup} that take care of checking
        permissions.
      
      - for block_crypto_co_amend_luks() (I/O case, called by
        .bdrv_co_amend()), don't check for permissions but delegate
        .bdrv_amend_pre_run() and .bdrv_amend_clean() to do it,
        performing these checks before and after the job runs in its aiocontext.
      
      Signed-off-by: default avatarEmanuele Giuseppe Esposito <eesposit@redhat.com>
      Message-Id: <20220209105452.1694545-3-eesposit@redhat.com>
      Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
      dae84929
    • Emanuele Giuseppe Esposito's avatar
      crypto: perform permission checks under BQL · c1019d16
      Emanuele Giuseppe Esposito authored
      
      Move the permission API calls into driver-specific callbacks
      that always run under BQL. In this case, bdrv_crypto_luks
      needs to perform permission checks before and after
      qcrypto_block_amend_options(). The problem is that the caller,
      block_crypto_amend_options_generic_luks(), can also run in I/O
      from .bdrv_co_amend(). This does not comply with Global State-I/O API split,
      as permissions API must always run under BQL.
      
      Firstly, introduce .bdrv_amend_pre_run() and .bdrv_amend_clean()
      callbacks. These two callbacks are guaranteed to be invoked under
      BQL, respectively before and after .bdrv_co_amend().
      They take care of performing the permission checks
      in the same way as they are currently done before and after
      qcrypto_block_amend_options().
      These callbacks are in preparation for next patch, where we
      delete the original permission check. Right now they just add redundant
      control.
      
      Then, call .bdrv_amend_pre_run() before job_start in
      qmp_x_blockdev_amend(), so that it will be run before the job coroutine
      is created and stay in the main loop.
      As a cleanup, use JobDriver's .clean() callback to call
      .bdrv_amend_clean(), and run amend-specific cleanup callbacks under BQL.
      
      After this patch, permission failures occur early in the blockdev-amend
      job to update a LUKS volume's keys.  iotest 296 must now expect them in
      x-blockdev-amend's QMP reply instead of waiting for the actual job to
      fail later.
      
      Signed-off-by: default avatarEmanuele Giuseppe Esposito <eesposit@redhat.com>
      Message-Id: <20220209105452.1694545-2-eesposit@redhat.com>
      Signed-off-by: default avatarHanna Reitz <hreitz@redhat.com>
      Message-Id: <20220304153729.711387-6-hreitz@redhat.com>
      Signed-off-by: default avatarKevin Wolf <kwolf@redhat.com>
      c1019d16
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/nvme/tags/nvme-next-pull-request' into staging · 3d1fbc59
      Peter Maydell authored
      
      hw/nvme updates
      
      - add enhanced protection information (64-bit guard)
      
      # gpg: Signature made Fri 04 Mar 2022 06:23:36 GMT
      # gpg:                using RSA key 522833AA75E2DCE6A24766C04DE1AF316D4F0DE9
      # gpg: Good signature from "Klaus Jensen <its@irrelevant.dk>" [unknown]
      # gpg:                 aka "Klaus Jensen <k.jensen@samsung.com>" [unknown]
      # gpg: WARNING: This key is not certified with a trusted signature!
      # gpg:          There is no indication that the signature belongs to the owner.
      # Primary key fingerprint: DDCA 4D9C 9EF9 31CC 3468  4272 63D5 6FC5 E55D A838
      #      Subkey fingerprint: 5228 33AA 75E2 DCE6 A247  66C0 4DE1 AF31 6D4F 0DE9
      
      * remotes/nvme/tags/nvme-next-pull-request:
        hw/nvme: 64-bit pi support
        hw/nvme: add pi tuple size helper
        hw/nvme: add support for the lbafee hbs feature
        hw/nvme: move format parameter parsing
        hw/nvme: add host behavior support feature
        hw/nvme: move dif/pi prototypes into dif.h
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      3d1fbc59
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/rth-gitlab/tags/pull-nios-20220303' into staging · 4c1d764d
      Peter Maydell authored
      
      Rewrite nios2 interrupt handling
      
      # gpg: Signature made Thu 03 Mar 2022 19:52:33 GMT
      # gpg:                using RSA key 7A481E78868B4DB6A85A05C064DF38E8AF7E215F
      # gpg:                issuer "richard.henderson@linaro.org"
      # gpg: Good signature from "Richard Henderson <richard.henderson@linaro.org>" [full]
      # Primary key fingerprint: 7A48 1E78 868B 4DB6 A85A  05C0 64DF 38E8 AF7E 215F
      
      * remotes/rth-gitlab/tags/pull-nios-20220303:
        target/nios2: Rewrite interrupt handling
        target/nios2: Special case ipending in rdctl and wrctl
        target/nios2: Split mmu_write
        target/nios2: Hoist R_ZERO check in rdctl
        target/nios2: Only build mmu.c for system mode
        target/nios2: Replace MMU_LOG with tracepoints
        target/nios2: Remove mmu_read_debug
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      4c1d764d
  2. Mar 03, 2022
  3. Mar 02, 2022
    • Peter Maydell's avatar
      Merge remote-tracking branch 'remotes/dgilbert-gitlab/tags/pull-migration-20220302b' into staging · 36eae3a7
      Peter Maydell authored
      
      Migration/HMP/Virtio pull 2022-03-02
      
      A bit of a mix this time:
        * Minor fixes from myself, Hanna, and Jack
        * VNC password rework by Stefan and Fabian
        * Postcopy changes from Peter X that are
          the start of a larger series to come
        * Removing the prehistoic load_state_old
          code from Peter M
      
      Signed-off-by: default avatarDr. David Alan Gilbert <dgilbert@redhat.com>
      
      # gpg: Signature made Wed 02 Mar 2022 18:25:12 GMT
      # gpg:                using RSA key 45F5C71B4A0CB7FB977A9FA90516331EBC5BFDE7
      # gpg: Good signature from "Dr. David Alan Gilbert (RH2) <dgilbert@redhat.com>" [full]
      # Primary key fingerprint: 45F5 C71B 4A0C B7FB 977A  9FA9 0516 331E BC5B FDE7
      
      * remotes/dgilbert-gitlab/tags/pull-migration-20220302b:
        migration: Remove load_state_old and minimum_version_id_old
        tests: Pass in MigrateStart** into test_migrate_start()
        migration: Add migration_incoming_transport_cleanup()
        migration: postcopy_pause_fault_thread() never fails
        migration: Enlarge postcopy recovery to capture !-EIO too
        migration: Move static var in ram_block_from_stream() into global
        migration: Add postcopy_thread_create()
        migration: Dump ramblock and offset too when non-same-page detected
        migration: Introduce postcopy channels on dest node
        migration: Tracepoint change in postcopy-run bottom half
        migration: Finer grained tracepoints for POSTCOPY_LISTEN
        migration: Dump sub-cmd name in loadvm_process_command tp
        migration/rdma: set the REUSEADDR option for destination
        qapi/monitor: allow VNC display id in set/expire_password
        qapi/monitor: refactor set/expire_password with enums
        monitor/hmp: add support for flag argument with value
        virtiofsd: Let meson check for statx.stx_mnt_id
        clock-vmstate: Add missing END_OF_LIST
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      36eae3a7
    • Peter Maydell's avatar
      ui/cocoa.m: Remove unnecessary NSAutoreleasePools · 268c1198
      Peter Maydell authored
      
      In commit 6e657e64 in 2013 we added some autorelease pools to
      deal with complaints from macOS when we made calls into Cocoa from
      threads that didn't have automatically created autorelease pools.
      Later on, macOS got stricter about forbidding cross-thread Cocoa
      calls, and in commit 5588840f we restructured the code to
      avoid them.  This left the autorelease pool creation in several
      functions without any purpose; delete it.
      
      We still need the pool in cocoa_refresh() for the clipboard related
      code which is called directly there.
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: default avatarAkihiko Odaki <akihiko.odaki@gmail.com>
      Tested-by: default avatarAkihiko Odaki <akihiko.odaki@gmail.com>
      Message-id: 20220224101330.967429-3-peter.maydell@linaro.org
      268c1198
    • Peter Maydell's avatar
      ui/cocoa.m: Fix updateUIInfo threading issues · 8d65dee2
      Peter Maydell authored
      
      The updateUIInfo method makes Cocoa API calls.  It also calls back
      into QEMU functions like dpy_set_ui_info().  To do this safely, we
      need to follow two rules:
       * Cocoa API calls are made on the Cocoa UI thread
       * When calling back into QEMU we must hold the iothread lock
      
      Fix the places where we got this wrong, by taking the iothread lock
      while executing updateUIInfo, and moving the call in cocoa_switch()
      inside the dispatch_async block.
      
      Some of the Cocoa UI methods which call updateUIInfo are invoked as
      part of the initial application startup, while we're still doing the
      little cross-thread dance described in the comment just above
      call_qemu_main().  This meant they were calling back into the QEMU UI
      layer before we'd actually finished initializing our display and
      registered the DisplayChangeListener, which isn't really valid.  Once
      updateUIInfo takes the iothread lock, we no longer get away with
      this, because during this startup phase the iothread lock is held by
      the QEMU main-loop thread which is waiting for us to finish our
      display initialization.  So we must suppress updateUIInfo until
      applicationDidFinishLaunching allows the QEMU main-loop thread to
      continue.
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: default avatarAkihiko Odaki <akihiko.odaki@gmail.com>
      Tested-by: default avatarAkihiko Odaki <akihiko.odaki@gmail.com>
      Message-id: 20220224101330.967429-2-peter.maydell@linaro.org
      8d65dee2
    • Peter Maydell's avatar
      target/arm: Report KVM's actual PSCI version to guest in dtb · dc8bc9d6
      Peter Maydell authored
      
      When we're using KVM, the PSCI implementation is provided by the
      kernel, but QEMU has to tell the guest about it via the device tree.
      Currently we look at the KVM_CAP_ARM_PSCI_0_2 capability to determine
      if the kernel is providing at least PSCI 0.2, but if the kernel
      provides a newer version than that we will still only tell the guest
      it has PSCI 0.2.  (This is fairly harmless; it just means the guest
      won't use newer parts of the PSCI API.)
      
      The kernel exposes the specific PSCI version it is implementing via
      the ONE_REG API; use this to report in the dtb that the PSCI
      implementation is 1.0-compatible if appropriate.  (The device tree
      binding currently only distinguishes "pre-0.2", "0.2-compatible" and
      "1.0-compatible".)
      
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Reviewed-by: default avatarMarc Zyngier <maz@kernel.org>
      Reviewed-by: default avatarAkihiko Odaki <akihiko.odaki@gmail.com>
      Reviewed-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Reviewed-by: default avatarAndrew Jones <drjones@redhat.com>
      Message-id: 20220224134655.1207865-1-peter.maydell@linaro.org
      dc8bc9d6
    • Richard Henderson's avatar
      target/arm: Implement FEAT_LPA2 · ef56c242
      Richard Henderson authored
      
      This feature widens physical addresses (and intermediate physical
      addresses for 2-stage translation) from 48 to 52 bits, when using
      4k or 16k pages.
      
      This introduces the DS bit to TCR_ELx, which is RES0 unless the
      page size is enabled and supports LPA2, resulting in the effective
      value of DS for a given table walk.  The DS bit changes the format
      of the page table descriptor slightly, moving the PS field out to
      TCR so that all pages have the same sharability and repurposing
      those bits of the page table descriptor for the highest bits of
      the output address.
      
      Do not yet enable FEAT_LPA2; we need extra plumbing to avoid
      tickling an old kernel bug.
      
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-id: 20220301215958.157011-17-richard.henderson@linaro.org
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      ef56c242
    • Richard Henderson's avatar
      target/arm: Advertise all page sizes for -cpu max · c20281b2
      Richard Henderson authored
      
      We support 16k pages, but do not advertize that in ID_AA64MMFR0.
      
      The value 0 in the TGRAN*_2 fields indicates that stage2 lookups defer
      to the same support as stage1 lookups.  This setting is deprecated, so
      indicate support for all stage2 page sizes directly.
      
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Message-id: 20220301215958.157011-16-richard.henderson@linaro.org
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      c20281b2
    • Richard Henderson's avatar
      target/arm: Validate tlbi TG matches translation granule in use · 3974ff93
      Richard Henderson authored
      
      For FEAT_LPA2, we will need other ARMVAParameters, which themselves
      depend on the translation granule in use.  We might as well validate
      that the given TG matches; the architecture "does not require that
      the instruction invalidates any entries" if this is not true.
      
      Reviewed-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      Signed-off-by: default avatarRichard Henderson <richard.henderson@linaro.org>
      Message-id: 20220301215958.157011-15-richard.henderson@linaro.org
      Signed-off-by: default avatarPeter Maydell <peter.maydell@linaro.org>
      3974ff93
Loading