Bugzilla will be upgraded to version 5.0. The upgrade date is tentatively scheduled for 2 December 2018, pending final testing and feedback.
Bug 818621 - lsblk should not open device it prints info about
lsblk should not open device it prints info about
Status: CLOSED ERRATA
Product: Red Hat Enterprise Linux 6
Classification: Red Hat
Component: util-linux-ng (Show other bugs)
6.3
Unspecified Unspecified
medium Severity medium
: rc
: ---
Assigned To: Karel Zak
Branislav Blaškovič
:
Depends On:
Blocks: 836160
  Show dependency treegraph
 
Reported: 2012-05-03 10:42 EDT by Milan Broz
Modified: 2013-02-28 23:11 EST (History)
4 users (show)

See Also:
Fixed In Version: util-linux-ng-2.17.2-12.8.el6
Doc Type: Bug Fix
Doc Text:
Cause: lsblk opens block devices to check if the device is in read-only mode, although the information is available in /sys. Consequence: unexpected selinux alerts, unnecessary open() call Fix: now lsblk is less aggressive and reads the info from /sys filesystem
Story Points: ---
Clone Of:
Environment:
Last Closed: 2013-02-21 05:22:56 EST
Type: Bug
Regression: ---
Mount Type: ---
Documentation: ---
CRM:
Verified Versions:
Category: ---
oVirt Team: ---
RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: ---


Attachments (Terms of Use)


External Trackers
Tracker ID Priority Status Summary Last Updated
Red Hat Product Errata RHSA-2013:0517 normal SHIPPED_LIVE Low: util-linux-ng security, bug fix and enhancement update 2013-02-20 16:29:06 EST

  None (edit)
Description Milan Broz 2012-05-03 10:42:17 EDT
Description of problem:

lsblk was meant as debugging utility which is usable even in situation when e.g. device-mapper devices are suspended, multipath devices are blocked etc.

It should (in default mode) read only information from /sys and /pro (IOW read only virtual filesystems).

Unfortunately in RHEL6 version it uses check_mount_point() function (formerly from ext utils) which tries to open device (to check if it can be opened exclusively.)

This is wrong and should be avoided (it will perhaps produce even some selinux alerts - lsblk can be run from use account.)

In upstream this problem is already solved by using libmount.

Moreover, there is bug in scanning "ro" sysfs attribute which causes another device open
(one line fix).

Version-Release number of selected component (if applicable):
util-linux-ng-2.17.2-12.7.el6.i686

How reproducible:
# strace lsblk /dev/sda1 2>&1 |grep open\( |grep sda1
open("/sys/block/sda/sda1", O_RDONLY|O_LARGEFILE) = 4

open("/dev/sda1", O_RDONLY|O_LARGEFILE) = 5          
open("/dev/sda1", O_RDONLY|O_EXCL|O_LARGEFILE) = -1 EBUSY (Device or resource busy)
(these are wrong)

Expected results:

Do not open device at all.
Comment 1 Karel Zak 2012-05-03 16:46:47 EDT
The problem with "ro" has been fixed by upstream commit 1ea962b2088b8db2090917a5eb1609b5eb99e048.
Comment 5 Karel Zak 2012-12-05 07:07:52 EST
Note that RHEL6 lsblk rebase fixes the problem with "ro" attribute only. Now it correctly reads the attribute from /sys and BLKROGET ioctl is unnecessary.

The rebase does not remove the check_mount_point() code and O_RDONLY|O_EXCL, because we don't want to backport whole libmount too...
Comment 7 errata-xmlrpc 2013-02-21 05:22:56 EST
Since the problem described in this bug report should be
resolved in a recent advisory, it has been closed with a
resolution of ERRATA.

For information on the advisory, and where to find the updated
files, follow the link below.

If the solution does not work for you, open a new bug report.

http://rhn.redhat.com/errata/RHSA-2013-0517.html

Note You need to log in before you can comment on or make changes to this bug.