public inbox for cygwin-cvs@sourceware.org
help / color / mirror / Atom feed
From: Corinna Vinschen <corinna@sourceware.org>
To: cygwin-cvs@sourceware.org
Subject: [newlib-cygwin/main] Revert "Cygwin: glob: perform ignore_case_with_glob on input"
Date: Mon, 18 Mar 2024 10:26:45 +0000 (GMT)	[thread overview]
Message-ID: <20240318102645.672793858C98@sourceware.org> (raw)

https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=89afbb8d8af2d4cbb71194bc24697795b5eb0ef6

commit 89afbb8d8af2d4cbb71194bc24697795b5eb0ef6
Author:     Corinna Vinschen <corinna@vinschen.de>
AuthorDate: Mon Mar 18 10:50:30 2024 +0100
Commit:     Corinna Vinschen <corinna@vinschen.de>
CommitDate: Mon Mar 18 11:10:13 2024 +0100

    Revert "Cygwin: glob: perform ignore_case_with_glob on input"
    
    This reverts commit a51147467e6cf58618433286f93d17043e00b0fc.
    
    Dumb thinko on my part.  What was supposed to be an optimization
    actually broke caseinsensitive globbing in that the entire input
    of globbed expressions were downcased.
    
    Drop the unused CCHAR() macro nevertheless.
    
    Fixes: a51147467e6cf ("Cygwin: glob: perform ignore_case_with_glob on input")
    Reported-by: Michael Goldshteyn <mgold10000@gmail.com>
    Signed-off-by: Corinna Vinschen <corinna@vinschen.de>

Diff:
---
 winsup/cygwin/glob.cc       | 22 +++-------------------
 winsup/cygwin/release/3.5.2 |  4 ++++
 2 files changed, 7 insertions(+), 19 deletions(-)

diff --git a/winsup/cygwin/glob.cc b/winsup/cygwin/glob.cc
index 4730d09f5590..90ec473aea55 100644
--- a/winsup/cygwin/glob.cc
+++ b/winsup/cygwin/glob.cc
@@ -96,8 +96,6 @@ __FBSDID("$FreeBSD: src/lib/libc/gen/glob.c,v 1.28 2010/05/12 17:44:00 gordon Ex
 
 #ifdef __CYGWIN__
 #define Cchar(c)	(ignore_case_with_glob ? towlower (c) : (c))
-#else
-#define Cchar(c)	(c)
 #endif
 
 #undef MAXPATHLEN
@@ -123,7 +121,6 @@ __FBSDID("$FreeBSD: src/lib/libc/gen/glob.c,v 1.28 2010/05/12 17:44:00 gordon Ex
 #define	SLASH		'/'
 #define	COMMA		','
 
-#undef DEBUG /* never define */
 #ifndef DEBUG
 
 #define	M_QUOTE		0x40000000U
@@ -251,7 +248,7 @@ glob(const char *__restrict pattern, int flags, int (*errfunc)(const char *, int
 				return (GLOB_NOMATCH);
 			else if (clen == 0)
 				break;
-			*bufnext++ = Cchar(wc);
+			*bufnext++ = wc;
 			patnext += clen;
 		}
 	} else {
@@ -271,7 +268,7 @@ glob(const char *__restrict pattern, int flags, int (*errfunc)(const char *, int
 				return (GLOB_NOMATCH);
 			else if (clen == 0)
 				break;
-			*bufnext++ = Cchar(wc) | prot;
+			*bufnext++ = wc | prot;
 			patnext += clen;
 		}
 	}
@@ -772,19 +769,6 @@ glob3(Char *pathbuf, Char *pathend, Char *pathend_last,
 				break;
 			sc += clen;
 		}
-#ifdef __CYGWIN__
-		if (ignore_case_with_glob) {
-			wint_t lower_path[MAXPATHLEN];
-			wint_t *lp = lower_path, *sp = pathend;
-
-			while ((*lp++ = towlower(*sp++)))
-				;
-			if (!match(lower_path, pattern, restpattern)) {
-				*pathend = EOS;
-				continue;
-			}
-		} else
-#endif
 		if (!match(pathend, pattern, restpattern)) {
 			*pathend = EOS;
 			continue;
@@ -938,7 +922,7 @@ match(Char *name, Char *pat, Char *patend)
 				return(0);
 			break;
 		default:
-			if (*name++ != *c)
+			if (Cchar(*name++) != Cchar(*c))
 				return(0);
 			break;
 		}
diff --git a/winsup/cygwin/release/3.5.2 b/winsup/cygwin/release/3.5.2
index 449047d9c276..32137c2e6807 100644
--- a/winsup/cygwin/release/3.5.2
+++ b/winsup/cygwin/release/3.5.2
@@ -20,3 +20,7 @@ Fixes:
 
 - Don't skip inadvertently some local SAM accounts on domain member
   machines.
+
+- Revert ill-advised optimization of glob(3) in case of caseinsensitive
+  globbing.
+  Addresses: https://cygwin.com/pipermail/cygwin/2024-March/255675.html

                 reply	other threads:[~2024-03-18 10:26 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240318102645.672793858C98@sourceware.org \
    --to=corinna@sourceware.org \
    --cc=cygwin-cvs@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).