]> git.baikalelectronics.ru Git - kernel.git/commit
drm/etnaviv: limit submit sizes
authorLucas Stach <l.stach@pengutronix.de>
Fri, 17 Dec 2021 10:59:28 +0000 (11:59 +0100)
committerLucas Stach <l.stach@pengutronix.de>
Mon, 20 Dec 2021 20:51:00 +0000 (21:51 +0100)
commit04db1593405d8ae53cf26392bb06d6284e482376
tree9b8034e978f8ff013ab4a2dfd50dcdb02e443f78
parentd9feed1af6bf2ba32ef2a2d366b46e7505f0adab
drm/etnaviv: limit submit sizes

Currently we allow rediculous amounts of kernel memory being allocated
via the etnaviv GEM_SUBMIT ioctl, which is a pretty easy DoS vector. Put
some reasonable limits in to fix this.

The commandstream size is limited to 64KB, which was already a soft limit
on older kernels after which the kernel only took submits on a best effort
base, so there is no userspace that tries to submit commandstreams larger
than this. Even if the whole commandstream is a single incrementing address
load, the size limit also limits the number of potential relocs and
referenced buffers to slightly under 64K, so use the same limit for those
arguments. The performance monitoring infrastructure currently supports
less than 50 performance counter signals, so limiting them to 128 on a
single submit seems like a reasonably future-proof number for now. This
number can be bumped if needed without breaking the interface.

Cc: stable@vger.kernel.org
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Lucas Stach <l.stach@pengutronix.de>
Reviewed-by: Christian Gmeiner <christian.gmeiner@gmail.com>
drivers/gpu/drm/etnaviv/etnaviv_gem_submit.c