Intel-XE Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Demi Marie Obenour <demiobenour@gmail.com>
To: Ashutosh Dixit <ashutosh.dixit@intel.com>,
	intel-xe@lists.freedesktop.org
Subject: Re: [PATCH 0/9] Don't whitelist OA registers unconditionally
Date: Wed, 27 May 2026 15:53:24 -0400	[thread overview]
Message-ID: <71d6095d-fedc-4258-a19a-82e57dbac32d@gmail.com> (raw)
In-Reply-To: <20260518234716.1540123-1-ashutosh.dixit@intel.com>


[-- Attachment #1.1.1: Type: text/plain, Size: 1819 bytes --]

On 5/18/26 19:47, Ashutosh Dixit wrote:
> Whitelisting OA registers unconditionally is a security violation. In this
> series we resolve this issue as follows:
> 
> * Set the 'deny' bit (bit 30) for all OA registers, ensuring OA registers
>   are not whitelisted by default after probe/reset/restart
> * Reset the 'deny' bit when an OA stream is opened and certain conditions
>   are met, whitelisting OA registers only for the duration when OA streams
>   are open for a gt
> * Set the 'deny' bit again, when OA streams are closed
> * To manage this scheme, separate out OA whitelists from non-OA whitelists
>   (into separate save-restore lists)
> 
> Ashutosh Dixit (9):
>   drm/xe/rtp: Add RING_FORCE_TO_NONPRIV_DENY to OA whitelists
>   drm/xe/rtp: Maintain OA whitelists separately
>   drm/xe/rtp: Keep track of non-OA nonpriv slots
>   drm/xe/rtp: Generalize whitelist_apply_to_hwe
>   drm/xe/rtp: Save OA nonpriv registers to register save/restore lists
>   drm/xe/rtp: Toggle 'deny' bit to (de-)whitelist OA regs
>   drm/xe/rtp: (De-)whitelist OA registers for all hwe's for a gt
>   drm/xe/oa: (De-)whitelist OA registers on OA stream open/release
>   drm/xe/rtp: Ensure locking/ref counting for OA whitelists
> 
>  drivers/gpu/drm/xe/xe_gt_debugfs.c      |  4 +-
>  drivers/gpu/drm/xe/xe_hw_engine.c       |  2 +
>  drivers/gpu/drm/xe/xe_hw_engine_types.h |  8 +++
>  drivers/gpu/drm/xe/xe_oa.c              |  7 ++
>  drivers/gpu/drm/xe/xe_oa_types.h        |  3 +
>  drivers/gpu/drm/xe/xe_reg_whitelist.c   | 92 ++++++++++++++++++++++---
>  drivers/gpu/drm/xe/xe_reg_whitelist.h   |  4 ++
>  7 files changed, 111 insertions(+), 9 deletions(-)
> 

Does this (and any other potential security issues) need to be Cc: stable?
-- 
Sincerely,
Demi Marie Obenour (she/her/hers)

[-- Attachment #1.1.2: OpenPGP public key --]
[-- Type: application/pgp-keys, Size: 7253 bytes --]

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

      parent reply	other threads:[~2026-05-28 13:46 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-18 23:47 [PATCH 0/9] Don't whitelist OA registers unconditionally Ashutosh Dixit
2026-05-18 23:47 ` [PATCH 1/9] drm/xe/rtp: Add RING_FORCE_TO_NONPRIV_DENY to OA whitelists Ashutosh Dixit
2026-05-21 23:14   ` Umesh Nerlige Ramappa
2026-05-21 23:35     ` Dixit, Ashutosh
2026-05-26 19:12       ` Umesh Nerlige Ramappa
2026-05-27 20:03         ` Umesh Nerlige Ramappa
2026-05-29 19:12           ` Dixit, Ashutosh
2026-05-18 23:47 ` [PATCH 2/9] drm/xe/rtp: Maintain OA whitelists separately Ashutosh Dixit
2026-05-29 18:31   ` Umesh Nerlige Ramappa
2026-05-18 23:47 ` [PATCH 3/9] drm/xe/rtp: Keep track of non-OA nonpriv slots Ashutosh Dixit
2026-05-29 18:30   ` Umesh Nerlige Ramappa
2026-05-29 20:45     ` Dixit, Ashutosh
2026-05-29 23:24       ` Umesh Nerlige Ramappa
2026-05-30  1:51         ` Dixit, Ashutosh
2026-06-09  3:51           ` Dixit, Ashutosh
2026-05-18 23:47 ` [PATCH 4/9] drm/xe/rtp: Generalize whitelist_apply_to_hwe Ashutosh Dixit
2026-05-18 23:47 ` [PATCH 5/9] drm/xe/rtp: Save OA nonpriv registers to register save/restore lists Ashutosh Dixit
2026-05-27 22:00   ` Umesh Nerlige Ramappa
2026-05-29 20:45     ` Dixit, Ashutosh
2026-05-18 23:47 ` [PATCH 6/9] drm/xe/rtp: Toggle 'deny' bit to (de-)whitelist OA regs Ashutosh Dixit
2026-05-29 18:33   ` Umesh Nerlige Ramappa
2026-05-18 23:47 ` [PATCH 7/9] drm/xe/rtp: (De-)whitelist OA registers for all hwe's for a gt Ashutosh Dixit
2026-05-27 21:49   ` Umesh Nerlige Ramappa
2026-05-29 23:03     ` Dixit, Ashutosh
2026-06-02 22:47       ` Umesh Nerlige Ramappa
2026-06-03 18:49         ` Dixit, Ashutosh
2026-05-18 23:47 ` [PATCH 8/9] drm/xe/oa: (De-)whitelist OA registers on OA stream open/release Ashutosh Dixit
2026-05-29 18:35   ` Umesh Nerlige Ramappa
2026-05-18 23:47 ` [PATCH 9/9] drm/xe/rtp: Ensure locking/ref counting for OA whitelists Ashutosh Dixit
2026-05-27 20:04   ` Umesh Nerlige Ramappa
2026-06-01 23:30     ` Dixit, Ashutosh
2026-05-18 23:54 ` ✓ CI.KUnit: success for Don't whitelist OA registers unconditionally Patchwork
2026-05-19  1:05 ` ✓ Xe.CI.BAT: " Patchwork
2026-05-19  8:32 ` ✗ Xe.CI.FULL: failure " Patchwork
2026-05-27 19:53 ` Demi Marie Obenour [this message]

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=71d6095d-fedc-4258-a19a-82e57dbac32d@gmail.com \
    --to=demiobenour@gmail.com \
    --cc=ashutosh.dixit@intel.com \
    --cc=intel-xe@lists.freedesktop.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox