Skip to content
Snippets Groups Projects
Commit b735d82e authored by Ewan D. Milne's avatar Ewan D. Milne
Browse files

scsi: sr: Do not leak information in ioctl

Bugzilla: https://bugzilla.redhat.com/show_bug.cgi?id=2132461
Upstream Status: From upstream linux mainline

sr_ioctl.c uses this pattern:

  result = sr_do_ioctl(cd, &cgc);
  to-user = buffer[];
  kfree(buffer);
  return result;

Use of a buffer without checking leaks information. Check result and jump
over the use of buffer if there is an error.

  result = sr_do_ioctl(cd, &cgc);
  if (result)
    goto err;
  to-user = buffer[];
err:
  kfree(buffer);
  return result;

Additionally, initialize the buffer to zero.

This problem can be seen in the 2.4.0 kernel.

Link: https://lore.kernel.org/r/20220411174756.2418435-1-trix@redhat.com


Fixes: 1da177e4 ("Linux-2.6.12-rc2")
Reviewed-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
(cherry picked from commit faad6ceb)
Signed-off-by: default avatarEwan D. Milne <emilne@redhat.com>
parent cbabe8b9
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment