core: fix the major:minor number comparison between the device and sysfs
authorBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 3 Sep 2019 10:00:25 +0000 (12:00 +0200)
committerBartosz Golaszewski <bgolaszewski@baylibre.com>
Tue, 3 Sep 2019 11:28:57 +0000 (13:28 +0200)
commit4d823fef34f44f1c7a6464db85305ed3068493ba
treeebdfdc9f0eda3a7d8de57626172ea6c31f8c1fa3
parentc83573ba313815d005aeebb333c5bda08a55dabe
core: fix the major:minor number comparison between the device and sysfs

Current code will incorrectly conclude that a device "1:1" matches
a sysfs device "1:10" as the length it reads from sysfsp is based on
the devstr length, which in this example is 3.

Always read the whole sysfs attribute and compare the string generated
from actual major:minor numbers against it (minus the trailing newline).

Fixes: d9b1c1f14c6b ("core: harden gpiod_chip_open()")
Reported-by: Kent Gibson <warthog618@gmail.com>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
lib/core.c