public inbox for libc-hacker@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] fix crash for sed "script" /\(\)/x
@ 2005-02-10  9:33 Paolo Bonzini
  2005-02-22  5:07 ` Ulrich Drepper
  0 siblings, 1 reply; 2+ messages in thread
From: Paolo Bonzini @ 2005-02-10  9:33 UTC (permalink / raw)
  To: libc-hacker

[-- Attachment #1: Type: text/plain, Size: 294 bytes --]

An empty subexpression in the presence of REG_NOSUB may cause a CONCAT 
node to have a NULL children, and this would crash in calc_first.

The attached patch cures it by not optimizing the empty subexpression in 
the first place.  It ought not to be very common, so we do not lose much.

Paolo

[-- Attachment #2: regex-fix-crash.patch --]
[-- Type: text/plain, Size: 1005 bytes --]

2005-02-10  Paolo Bonzini  <bonzini@gnu.org>

	* posix/regcomp.c (lower_subexp): Do not optimize empty
	subexpressions even with REG_NOSUB.
	* posix/rxspencer/tests: Add a previously failing testcase.

--- orig/regcomp.c
+++ mod/regcomp.c
@@ -1321,6 +1321,11 @@ lower_subexp (err, preg, node)
   bin_tree_t *op, *cls, *tree1, *tree;
 
   if (preg->no_sub
+      /* We do not optimize empty subexpressions, because otherwise we may
+	 have bad CONCAT nodes with NULL children.  This is obviously not
+	 very common, so we do not lose much.  An example that triggers
+	 this case is the sed "script" /\(\)/x.  */
+      && node->left
       && (node->token.opr.idx >= 8 * sizeof (dfa->used_bkref_map)
 	  || !(dfa->used_bkref_map & (1 << node->token.opr.idx))))
     return node->left;
--- orig/rxspencer/tests
+++ mod/rxspencer/tests
@@ -376,6 +376,7 @@
 a[bc]d		-	xyzaaabcaababdacd	abd
 a[ab]c		-	aaabc	abc
 abc		s	abc	abc
+()		s	abc	@abc
 a*		&	b	@b
 
 # Let's have some fun -- try to match a C comment.

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] fix crash for sed "script" /\(\)/x
  2005-02-10  9:33 [PATCH] fix crash for sed "script" /\(\)/x Paolo Bonzini
@ 2005-02-22  5:07 ` Ulrich Drepper
  0 siblings, 0 replies; 2+ messages in thread
From: Ulrich Drepper @ 2005-02-22  5:07 UTC (permalink / raw)
  To: Paolo Bonzini; +Cc: libc-hacker

[-- Attachment #1: Type: text/plain, Size: 109 bytes --]

Applied.

--
➧ Ulrich Drepper ➧ Red Hat, Inc. ➧ 444 Castro St ➧ Mountain View, CA ❖

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 252 bytes --]

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-02-22  5:07 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2005-02-10  9:33 [PATCH] fix crash for sed "script" /\(\)/x Paolo Bonzini
2005-02-22  5:07 ` Ulrich Drepper

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).