All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] tee driver fixes for v4.17
@ 2018-05-07 12:47 ` Jens Wiklander
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Wiklander @ 2018-05-07 12:47 UTC (permalink / raw)
  To: arm-soc; +Cc: Linux Kernel Mailing List, Linux ARM

Hello arm-soc maintainers,

Please pull these tee driver fixes. Of particular interest is a fix for a
use-after-free issue. There's also a fix making sure that memory references
are kept within the used shm object.

Thanks,
Jens

The following changes since commit 75bc37fefc4471e718ba8e651aa74673d4e0a9eb:

  Linux 4.17-rc4 (2018-05-06 16:57:38 -1000)

are available in the Git repository at:

  git://git.linaro.org/people/jens.wiklander/linux-tee.git/ tags/tee-drv-fixes-for-4.17

for you to fetch changes up to ab9d3db5b320a052452b9cd035599ee3c84bbee9:

  tee: check shm references are consistent in offset/size (2018-05-07 11:51:03 +0200)

----------------------------------------------------------------
Small fixes for tee subsystem

* Fixes for use-after-free via temporarily dropped reference
* Checks that passed shm references are consistent in offset/size
  with regards to the shm object

----------------------------------------------------------------
Etienne Carriere (1):
      tee: check shm references are consistent in offset/size

Jann Horn (1):
      tee: shm: fix use-after-free via temporarily dropped reference

 drivers/tee/tee_core.c | 11 +++++++++++
 drivers/tee/tee_shm.c  |  5 +++--
 2 files changed, 14 insertions(+), 2 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] tee driver fixes for v4.17
@ 2018-05-07 12:47 ` Jens Wiklander
  0 siblings, 0 replies; 4+ messages in thread
From: Jens Wiklander @ 2018-05-07 12:47 UTC (permalink / raw)
  To: linux-arm-kernel

Hello arm-soc maintainers,

Please pull these tee driver fixes. Of particular interest is a fix for a
use-after-free issue. There's also a fix making sure that memory references
are kept within the used shm object.

Thanks,
Jens

The following changes since commit 75bc37fefc4471e718ba8e651aa74673d4e0a9eb:

  Linux 4.17-rc4 (2018-05-06 16:57:38 -1000)

are available in the Git repository at:

  git://git.linaro.org/people/jens.wiklander/linux-tee.git/ tags/tee-drv-fixes-for-4.17

for you to fetch changes up to ab9d3db5b320a052452b9cd035599ee3c84bbee9:

  tee: check shm references are consistent in offset/size (2018-05-07 11:51:03 +0200)

----------------------------------------------------------------
Small fixes for tee subsystem

* Fixes for use-after-free via temporarily dropped reference
* Checks that passed shm references are consistent in offset/size
  with regards to the shm object

----------------------------------------------------------------
Etienne Carriere (1):
      tee: check shm references are consistent in offset/size

Jann Horn (1):
      tee: shm: fix use-after-free via temporarily dropped reference

 drivers/tee/tee_core.c | 11 +++++++++++
 drivers/tee/tee_shm.c  |  5 +++--
 2 files changed, 14 insertions(+), 2 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] tee driver fixes for v4.17
  2018-05-07 12:47 ` Jens Wiklander
@ 2018-05-14  8:02   ` Olof Johansson
  -1 siblings, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2018-05-14  8:02 UTC (permalink / raw)
  To: Jens Wiklander; +Cc: arm-soc, Linux Kernel Mailing List, Linux ARM

On Mon, May 07, 2018 at 02:47:31PM +0200, Jens Wiklander wrote:
> Hello arm-soc maintainers,
> 
> Please pull these tee driver fixes. Of particular interest is a fix for a
> use-after-free issue. There's also a fix making sure that memory references
> are kept within the used shm object.
> 
> Thanks,
> Jens
> 
> The following changes since commit 75bc37fefc4471e718ba8e651aa74673d4e0a9eb:
> 
>   Linux 4.17-rc4 (2018-05-06 16:57:38 -1000)
> 
> are available in the Git repository at:
> 
>   git://git.linaro.org/people/jens.wiklander/linux-tee.git/ tags/tee-drv-fixes-for-4.17
> 
> for you to fetch changes up to ab9d3db5b320a052452b9cd035599ee3c84bbee9:
> 
>   tee: check shm references are consistent in offset/size (2018-05-07 11:51:03 +0200)
> 
> ----------------------------------------------------------------
> Small fixes for tee subsystem
> 
> * Fixes for use-after-free via temporarily dropped reference
> * Checks that passed shm references are consistent in offset/size
>   with regards to the shm object

Merged, thanks!


-Olof

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] tee driver fixes for v4.17
@ 2018-05-14  8:02   ` Olof Johansson
  0 siblings, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2018-05-14  8:02 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, May 07, 2018 at 02:47:31PM +0200, Jens Wiklander wrote:
> Hello arm-soc maintainers,
> 
> Please pull these tee driver fixes. Of particular interest is a fix for a
> use-after-free issue. There's also a fix making sure that memory references
> are kept within the used shm object.
> 
> Thanks,
> Jens
> 
> The following changes since commit 75bc37fefc4471e718ba8e651aa74673d4e0a9eb:
> 
>   Linux 4.17-rc4 (2018-05-06 16:57:38 -1000)
> 
> are available in the Git repository at:
> 
>   git://git.linaro.org/people/jens.wiklander/linux-tee.git/ tags/tee-drv-fixes-for-4.17
> 
> for you to fetch changes up to ab9d3db5b320a052452b9cd035599ee3c84bbee9:
> 
>   tee: check shm references are consistent in offset/size (2018-05-07 11:51:03 +0200)
> 
> ----------------------------------------------------------------
> Small fixes for tee subsystem
> 
> * Fixes for use-after-free via temporarily dropped reference
> * Checks that passed shm references are consistent in offset/size
>   with regards to the shm object

Merged, thanks!


-Olof

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2018-05-14  8:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-07 12:47 [GIT PULL] tee driver fixes for v4.17 Jens Wiklander
2018-05-07 12:47 ` Jens Wiklander
2018-05-14  8:02 ` Olof Johansson
2018-05-14  8:02   ` Olof Johansson

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.