lsscsi: fix xchdir("..") from symlink in /sys/bus/scsi/devices

Signed-off-by: Markus Gothe <nietzsche@lysator.liu.se>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Markus Gothe 2017-10-21 21:34:22 +02:00 committed by Denys Vlasenko
parent 14c85eb7db
commit 045327a418

View File

@ -25,6 +25,8 @@
#include "libbb.h"
static const char scsi_dir[] ALIGN1 = "/sys/bus/scsi/devices";
static char *get_line(const char *filename, char *buf, unsigned *bufsize_p)
{
unsigned bufsize = *bufsize_p;
@ -53,7 +55,7 @@ int lsscsi_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
struct dirent *de;
DIR *dir;
xchdir("/sys/bus/scsi/devices");
xchdir(scsi_dir);
dir = xopendir(".");
while ((de = readdir(dir)) != NULL) {
@ -112,7 +114,10 @@ int lsscsi_main(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
);
/* TODO: also output device column, e.g. "/dev/sdX" */
xchdir("..");
/* chdir("..") may not work as expected,
* since we might have followed a symlink.
*/
xchdir(scsi_dir);
}
if (ENABLE_FEATURE_CLEAN_UP)