All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Roger Pau Monné" <roger.pau@citrix.com>
To: Jan Beulich <jbeulich@suse.com>
Cc: "xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>,
	Andrew Cooper <andrew.cooper3@citrix.com>,
	Oleksii Kurochko <oleksii.kurochko@gmail.com>
Subject: Re: [PATCH for-4.22? 8/9] x86/domctl: don't imply I/O port permissions from I/O port mapping
Date: Tue, 16 Jun 2026 11:21:04 +0200	[thread overview]
Message-ID: <ajEVgN9h78QFh6mZ@macbook.local> (raw)
In-Reply-To: <a88eb54a-f0ff-4ad6-971f-ae526297a15d@suse.com>

On Mon, Jun 15, 2026 at 04:16:11PM +0200, Jan Beulich wrote:
> Rather than granting permissions when mapping (an operation that DM-s are
> allowed to carry out, while they can't invoke ioport-permission), check
> whether permissions actually were granted when adding a mapping. This then
> also allows relaxing the necessary locking.
> 
> Fixes: 192c4dabc344 ("domctl and p2m changes for PCI passthru")
> Signed-off-by: Jan Beulich <jbeulich@suse.com>
> ---
> libxl has libxl__grant_vga_iomem_permission(), but I can't spot any I/O
> port equivalent (nor a revoke counterpart, btw). Everywhere else MMIO and
> I/O ports look to be treated equally.
> 
> Qemu uses both xc_domain_{iomem_permission,memory_mapping}() in
> igd_write_opregion(), but only xc_domain_{memory,ioport}_mapping() in
> xen_pt_region_update() and xen_pt_{,un}register_vga_regions(). Is the IGD
> region special in any way? Clearly this can't work from a stubdom.
> 
> --- a/xen/arch/x86/domctl.c
> +++ b/xen/arch/x86/domctl.c
> @@ -714,9 +714,14 @@ long arch_do_domctl(
>              break;
>  
>          hvm = &d->arch.hvm;
> -        iocaps_double_lock(d, true);
> +        /*
> +         * NB: The double lock isn't really needed when !add, but is used anyway
> +         * to keep things simple.
> +         */
> +        iocaps_double_lock(d, false);
>  
> -        if ( !ioports_access_permitted(currd, fmp, fmp + np - 1) )
> +        if ( !ioports_access_permitted(currd, fmp, fmp + np - 1) ||
> +             (add && !ioports_access_permitted(d, fmp, fmp + np - 1)) )
>              ret = -EPERM;
>          else if ( add )
>          {
> @@ -747,15 +752,6 @@ long arch_do_domctl(
>                  list_add_tail(&g2m_ioport->list, &hvm->g2m_ioport_list);
>              }
>              write_unlock(&hvm->g2m_ioport_lock);
> -            if ( !ret )
> -                ret = ioports_permit_access(d, fmp, fmp + np - 1);
> -            if ( ret && !found && g2m_ioport )
> -            {
> -                write_lock(&hvm->g2m_ioport_lock);
> -                list_del(&g2m_ioport->list);
> -                write_unlock(&hvm->g2m_ioport_lock);
> -                xfree(g2m_ioport);
> -            }
>          }
>          else
>          {
> @@ -772,15 +768,9 @@ long arch_do_domctl(
>                      break;
>                  }
>              write_unlock(&hvm->g2m_ioport_lock);
> -
> -            ret = ioports_deny_access(d, fmp, fmp + np - 1);
> -            if ( ret && is_hardware_domain(currd) )
> -                printk(XENLOG_ERR
> -                       "ioport_map: error %ld denying dom%d access to [%x,%x]\n",
> -                       ret, d->domain_id, fmp, fmp + np - 1);
>          }
>  
> -        iocaps_double_unlock(d, true);
> +        iocaps_double_unlock(d, false);

I think the new behavior is more sane, however the problematic aspect
of this change is the removal case IMO: we cannot be sure whether
existing callers rely on XEN_DOMCTL_ioport_mapping also removing the
permissions, and hence Xen no longer removing the permissions might
lead to leaks.

This is a risk we might be willing to take, but it must be stated in
the commit message.  And likely in a CHANGELOG entry so that external
consumers are aware of this change and can adjust as necessary.

Thanks, Roger.


  reply	other threads:[~2026-06-16  9:21 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-06-15 14:11 [PATCH for-4.22? 0/9] domctl: XSA-492 and -491 follow-on Jan Beulich
2026-06-15 14:12 ` [PATCH for-4.22? 1/9] sched: introduce specialization of "running only" vcpu_runstate_get() Jan Beulich
2026-06-16  8:41   ` Roger Pau Monné
2026-06-16  8:48     ` Jan Beulich
2026-06-16  9:21   ` Jürgen Groß
2026-06-15 14:12 ` [PATCH for-4.22? 2/9] domctl: move XEN_DOMCTL_irq_permission handling to x86 code Jan Beulich
2026-06-16  7:22   ` Oleksii Kurochko
2026-06-15 14:13 ` [PATCH for-4.22? 3/9] domctl: rename a label Jan Beulich
2026-06-16  7:23   ` Oleksii Kurochko
2026-06-16  8:43   ` Roger Pau Monné
2026-06-15 14:13 ` [PATCH for-4.22? 4/9] domctl: error code adjustment for unpriv callers Jan Beulich
2026-06-16  7:27   ` Oleksii Kurochko
2026-06-15 14:13 ` [PATCH for-4.22? 5/9] domctl/XSM: avoid XSM_OTHER with xsm_domctl() Jan Beulich
2026-06-15 20:57   ` Daniel P. Smith
2026-06-16 15:27   ` Oleksii Kurochko
2026-06-15 14:15 ` [PATCH for-4.22? 6/9] domctl: handle XEN_DOMCTL_getvcpuinfo without acquiring domctl lock Jan Beulich
2026-06-16  8:56   ` Roger Pau Monné
2026-06-16  9:08     ` Jan Beulich
2026-06-16 15:22   ` Oleksii Kurochko
2026-06-15 14:15 ` [PATCH for-4.22? 7/9] domctl: restrict permission check for XEN_DOMCTL_memory_mapping's remove form Jan Beulich
2026-06-16  9:08   ` Roger Pau Monné
2026-06-16  9:51     ` Jan Beulich
2026-06-16 10:06       ` Roger Pau Monné
2026-06-15 14:16 ` [PATCH for-4.22? 8/9] x86/domctl: don't imply I/O port permissions from I/O port mapping Jan Beulich
2026-06-16  9:21   ` Roger Pau Monné [this message]
2026-06-16  9:36     ` Jan Beulich
2026-06-16 10:09       ` Roger Pau Monné
2026-06-15 14:16 ` [PATCH for-4.22? 9/9] x86/HVM: more checking for XEN_DOMCTL_ioport_mapping Jan Beulich
2026-06-16 10:01   ` Roger Pau Monné
2026-06-16 10:07     ` Jan Beulich
2026-06-16 15:29   ` Oleksii Kurochko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ajEVgN9h78QFh6mZ@macbook.local \
    --to=roger.pau@citrix.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=jbeulich@suse.com \
    --cc=oleksii.kurochko@gmail.com \
    --cc=xen-devel@lists.xenproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.