From ac2eebc224e859862e86645664ad43caebbb0bd3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?P=C3=A1draig=20Brady?= Date: Thu, 24 Aug 2017 00:18:41 -0700 Subject: [PATCH] ls: consistently quote symlink targets * src/ls.c (gobble_file): Disable the optimization to avoid quoting if the symlink target itself needs quoting. This was introduced with the quoting alignment adjustments in v8.25-106-g01971c0 * tests/ls/symlink-quote.sh: Add a test. * tests/local.mk: Reference the test. * NEWS: Mention the fix. --- NEWS | 4 ++++ src/ls.c | 5 +++++ tests/local.mk | 1 + tests/ls/symlink-quote.sh | 30 ++++++++++++++++++++++++++++++ 4 files changed, 40 insertions(+) create mode 100755 tests/ls/symlink-quote.sh diff --git a/NEWS b/NEWS index 6b6cafdae9..d37195e2dd 100644 --- a/NEWS +++ b/NEWS @@ -45,6 +45,10 @@ GNU coreutils NEWS -*- outline -*- Previously it would have always returned the 'EXIT' name. [bug introduced in fileutils-4.1.9] + ls now quotes symlink targets consistently. Previously it may not + have quoted the target name if the link name itself didn't need quoting. + [bug introduced in coreutils-8.26] + split no longer exits when invocations of a --filter return EPIPE. [bug introduced in coreutils-8.26] diff --git a/src/ls.c b/src/ls.c index 4802d9218c..bb97e98a79 100644 --- a/src/ls.c +++ b/src/ls.c @@ -3234,6 +3234,11 @@ gobble_file (char const *name, enum filetype type, ino_t inode, get_link_name (absolute_name, f, command_line_arg); char *linkname = make_link_name (absolute_name, f->linkname); + /* Use the slower quoting path for this entry, though + don't update CWD_SOME_QUOTED since alignment not affected. */ + if (linkname && f->quoted == 0 && needs_quoting (f->linkname)) + f->quoted = -1; + /* Avoid following symbolic links when possible, ie, when they won't be traced and when no indicator is needed. */ if (linkname diff --git a/tests/local.mk b/tests/local.mk index 8fc48c4892..fd4713d778 100644 --- a/tests/local.mk +++ b/tests/local.mk @@ -603,6 +603,7 @@ all_tests = \ tests/ls/stat-free-color.sh \ tests/ls/stat-free-symlinks.sh \ tests/ls/stat-vs-dirent.sh \ + tests/ls/symlink-quote.sh \ tests/ls/symlink-slash.sh \ tests/ls/time-style-diag.sh \ tests/ls/x-option.sh \ diff --git a/tests/ls/symlink-quote.sh b/tests/ls/symlink-quote.sh new file mode 100755 index 0000000000..d792d966ec --- /dev/null +++ b/tests/ls/symlink-quote.sh @@ -0,0 +1,30 @@ +#!/bin/sh +# Ensure symlinks are quoted appropriately + +# Copyright (C) 2017 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +. "${srcdir=.}/tests/init.sh"; path_prepend_ ./src +print_ver_ ls + +ln -s 'needs quoting' symlink || framework_failure_ + +ls -l --quoting-style='shell-escape' symlink >out || fail=1 + +# Coreutils v8.26 and 8.27 failed to quote the target name +grep -q "symlink -> 'needs quoting'\$" out || + { cat out; fail=1; } + +Exit $fail -- 2.47.2