scsi: sd: Keep disk read-only when re-reading partition
authorJeremy Cline <jeremy@jcline.org>
Tue, 6 Mar 2018 21:47:32 +0000 (21:47 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 25 May 2018 14:17:49 +0000 (16:17 +0200)
commitb1a706fdb5a89e1e432f2fc2e3e48a8eb9a9fbb6
tree755f8c4f1ed47a5ed676b00dbe4c1d7e73a0fa20
parent2bb6b7decff05262b04c7ef62b6d3b311420bc37
scsi: sd: Keep disk read-only when re-reading partition

[ Upstream commit 20bd1d026aacc5399464f8328f305985c493cde3 ]

If the read-only flag is true on a SCSI disk, re-reading the partition
table sets the flag back to false.

To observe this bug, you can run:

1. blockdev --setro /dev/sda
2. blockdev --rereadpt /dev/sda
3. blockdev --getro /dev/sda

This commit reads the disk's old state and combines it with the device
disk-reported state rather than unconditionally marking it as RW.

Reported-by: Li Ning <lining916740672@icloud.com>
Signed-off-by: Jeremy Cline <jeremy@jcline.org>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/scsi/sd.c