All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Ville Syrjälä" <ville.syrjala@linux.intel.com>
To: Daniel Vetter <daniel@ffwll.ch>
Cc: liviu.dudau@arm.com, dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] drm/atomic: Don't reject reflect-only rotations
Date: Wed, 7 Dec 2016 18:02:22 +0200	[thread overview]
Message-ID: <20161207160222.GP31595@intel.com> (raw)
In-Reply-To: <20161207155440.qdzdilmwjkq2l7lm@phenom.ffwll.local>

On Wed, Dec 07, 2016 at 04:54:40PM +0100, Daniel Vetter wrote:
> On Wed, Dec 07, 2016 at 05:13:24PM +0200, Ville Syrjälä wrote:
> > On Wed, Dec 07, 2016 at 03:52:29PM +0100, Daniel Vetter wrote:
> > > On Wed, Dec 07, 2016 at 01:32:57PM +0000, Chris Wilson wrote:
> > > > On Wed, Dec 07, 2016 at 12:18:19PM +0000, Brian Starkey wrote:
> > > > > The check to reject combinations of multiple rotation angles is overly
> > > > > restrictive and has the side-effect of also failing any rotation value
> > > > > which consists only of reflections.
> > > > > 
> > > > > Fix this by relaxing the check to ignore values which contain no
> > > > > rotation flags.
> > > > > 
> > > > > Fixes: 6e0c7c3358d4 ("drm/atomic: Reject attempts to use multiple rotation angles at once")
> > > > > Signed-off-by: Brian Starkey <brian.starkey@arm.com>
> > > > 
> > > > >  drivers/gpu/drm/drm_atomic.c |    3 ++-
> > > > >  1 file changed, 2 insertions(+), 1 deletion(-)
> > > > > 
> > > > > diff --git a/drivers/gpu/drm/drm_atomic.c b/drivers/gpu/drm/drm_atomic.c
> > > > > index 362e3ea..44f4030 100644
> > > > > --- a/drivers/gpu/drm/drm_atomic.c
> > > > > +++ b/drivers/gpu/drm/drm_atomic.c
> > > > > @@ -846,7 +846,8 @@ int drm_atomic_plane_set_property(struct drm_plane *plane,
> > > > >  	} else if (property == config->prop_src_h) {
> > > > >  		state->src_h = val;
> > > > >  	} else if (property == plane->rotation_property) {
> > > > > -		if (!is_power_of_2(val & DRM_ROTATE_MASK))
> > > > > +		if ((val & DRM_ROTATE_MASK) &&
> > > > 
> > > > If val & DRM_ROTATE_MASK is zero, val must be REFLECT_X | REFLECT_Y.
> > > 
> > > While we bikeshed this check: Validation like this should be somewhere
> > > behind ->atomic_check, since if it's only here then you can sneak invalid
> > > stuff in through the legacy/compat set_property ioctls.
> > 
> > Not if you use drm_atomic_helper_plane_set_property().
> 
> Oh right, I mixed up the callchain maze in my head again. I still feel
> like putting all the validation code in one place might be a good idea.
> But yeah not strictly needed.

Well, we do quite a bit of checking already earlier. Eg.
drm_property_change_valid(), and obj ID lookups. I think this sort of
"totally invalid use of the API" check fits in pretty well with that
crowd.

-- 
Ville Syrjälä
Intel OTC
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

  reply	other threads:[~2016-12-07 16:02 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-07 12:18 [PATCH] drm/atomic: Don't reject reflect-only rotations Brian Starkey
2016-12-07 13:20 ` Gustavo Padovan
2016-12-07 13:32 ` Chris Wilson
2016-12-07 14:52   ` Daniel Vetter
2016-12-07 15:13     ` Ville Syrjälä
2016-12-07 15:54       ` Daniel Vetter
2016-12-07 16:02         ` Ville Syrjälä [this message]
2016-12-07 14:12 ` Ville Syrjälä
2016-12-07 14:48   ` Brian Starkey

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=20161207160222.GP31595@intel.com \
    --to=ville.syrjala@linux.intel.com \
    --cc=daniel@ffwll.ch \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=liviu.dudau@arm.com \
    /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.