mdev: fix "foo 0:0 444 >bar/baz" rule handling. make_device() +23 bytes
This commit is contained in:
parent
4461564c77
commit
cae11b51aa
@ -8,6 +8,8 @@
|
|||||||
# sed: (1) "maj, min" -> "maj,min" (2) coalesce spaces
|
# sed: (1) "maj, min" -> "maj,min" (2) coalesce spaces
|
||||||
# cut: remove date
|
# cut: remove date
|
||||||
FILTER_LS="sed -e 's/, */,/g' -e 's/ */ /g' | cut -d' ' -f 1-5,9-"
|
FILTER_LS="sed -e 's/, */,/g' -e 's/ */ /g' | cut -d' ' -f 1-5,9-"
|
||||||
|
# cut: remove size+date
|
||||||
|
FILTER_LS2="sed -e 's/, */,/g' -e 's/ */ /g' | cut -d' ' -f 1-4,9-"
|
||||||
|
|
||||||
# testing "test name" "options" "expected result" "file input" "stdin"
|
# testing "test name" "options" "expected result" "file input" "stdin"
|
||||||
|
|
||||||
@ -31,7 +33,7 @@ brw-rw---- 1 0 0 8,0 sda
|
|||||||
"" ""
|
"" ""
|
||||||
|
|
||||||
# continuing to use directory structure from prev test
|
# continuing to use directory structure from prev test
|
||||||
rm mdev.testdir/dev/sda
|
rm -rf mdev.testdir/dev/*
|
||||||
echo ".* 1:1 666" >mdev.testdir/etc/mdev.conf
|
echo ".* 1:1 666" >mdev.testdir/etc/mdev.conf
|
||||||
echo "sda 2:2 444" >>mdev.testdir/etc/mdev.conf
|
echo "sda 2:2 444" >>mdev.testdir/etc/mdev.conf
|
||||||
testing "mdev stops on first rule" \
|
testing "mdev stops on first rule" \
|
||||||
@ -42,6 +44,38 @@ brw-rw-rw- 1 1 1 8,0 sda
|
|||||||
" \
|
" \
|
||||||
"" ""
|
"" ""
|
||||||
|
|
||||||
|
# continuing to use directory structure from prev test
|
||||||
|
rm -rf mdev.testdir/dev/*
|
||||||
|
echo "sda 0:0 444 >disk/scsiA" >mdev.testdir/etc/mdev.conf
|
||||||
|
testing "mdev move/symlink rule '>bar/baz'" \
|
||||||
|
"env - ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
|
||||||
|
ls -lnR mdev.testdir/dev | $FILTER_LS2" \
|
||||||
|
"\
|
||||||
|
mdev.testdir/dev:
|
||||||
|
drwxr-xr-x 2 0 0 disk
|
||||||
|
lrwxrwxrwx 1 0 0 sda -> disk/scsiA
|
||||||
|
|
||||||
|
mdev.testdir/dev/disk:
|
||||||
|
br--r--r-- 1 0 0 scsiA
|
||||||
|
" \
|
||||||
|
"" ""
|
||||||
|
|
||||||
|
# continuing to use directory structure from prev test
|
||||||
|
rm -rf mdev.testdir/dev/*
|
||||||
|
echo "sda 0:0 444 >disk/" >mdev.testdir/etc/mdev.conf
|
||||||
|
testing "mdev move/symlink rule '>bar/'" \
|
||||||
|
"env - ACTION=add DEVPATH=/block/sda chroot mdev.testdir /mdev 2>&1;
|
||||||
|
ls -lnR mdev.testdir/dev | $FILTER_LS2" \
|
||||||
|
"\
|
||||||
|
mdev.testdir/dev:
|
||||||
|
drwxr-xr-x 2 0 0 disk
|
||||||
|
lrwxrwxrwx 1 0 0 sda -> disk/sda
|
||||||
|
|
||||||
|
mdev.testdir/dev/disk:
|
||||||
|
br--r--r-- 1 0 0 sda
|
||||||
|
" \
|
||||||
|
"" ""
|
||||||
|
|
||||||
# clean up
|
# clean up
|
||||||
rm -rf mdev.testdir
|
rm -rf mdev.testdir
|
||||||
|
|
||||||
|
@ -203,21 +203,26 @@ static void make_device(char *path, int delete)
|
|||||||
if (ENABLE_FEATURE_MDEV_RENAME && alias) {
|
if (ENABLE_FEATURE_MDEV_RENAME && alias) {
|
||||||
char *dest;
|
char *dest;
|
||||||
|
|
||||||
|
/* ">bar/": rename to bar/device_name */
|
||||||
|
/* ">bar[/]baz": rename to bar[/]baz */
|
||||||
dest = strrchr(alias, '/');
|
dest = strrchr(alias, '/');
|
||||||
if (dest) {
|
if (dest) { /* ">bar/[baz]" ? */
|
||||||
if (dest[1] != '\0')
|
*dest = '\0'; /* mkdir bar */
|
||||||
/* given a file name, so rename it */
|
|
||||||
*dest = '\0';
|
|
||||||
bb_make_directory(alias, 0755, FILEUTILS_RECUR);
|
bb_make_directory(alias, 0755, FILEUTILS_RECUR);
|
||||||
dest = concat_path_file(alias, device_name);
|
*dest = '/';
|
||||||
free(alias);
|
if (dest[1] == '\0') { /* ">bar/" => ">bar/device_name" */
|
||||||
} else
|
dest = alias;
|
||||||
dest = alias;
|
alias = concat_path_file(alias, device_name);
|
||||||
|
free(dest);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
rename(device_name, dest);
|
/* recreate device_name as a symlink to moved device node */
|
||||||
symlink(dest, device_name);
|
if (rename(device_name, alias) == 0) {
|
||||||
|
symlink(alias, device_name);
|
||||||
|
}
|
||||||
|
|
||||||
free(dest);
|
free(alias);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user