public inbox for glibc-bugs-regex@sourceware.org
help / color / mirror / Atom feed
* [Bug regex/11244] New: re_compiler_pattern fails to diagnose [b-a] as an invalid range
@ 2010-02-03 16:47 jim at meyering dot net
  2010-02-03 17:13 ` [Bug regex/11244] " schwab at linux-m68k dot org
  2010-02-03 17:47 ` jim at meyering dot net
  0 siblings, 2 replies; 3+ messages in thread
From: jim at meyering dot net @ 2010-02-03 16:47 UTC (permalink / raw)
  To: glibc-bugs-regex

tested on rawhide, with glibc-2.11.90-10.x86_64:

$ cat regex-check.c
#include <config.h>
#include <limits.h>
#include <regex.h>
#include <string.h>

int
main (int argc, char **argv)
{
  char *regexp = (2 <= argc ? argv[1] : "a[b-a]");
  struct re_pattern_buffer regex;
  /* Ensure that [b-a] is diagnosed as invalid. */
  re_set_syntax (RE_SYNTAX_POSIX_EGREP);
  memset (&regex, 0, sizeof regex);
  const char *s = re_compile_pattern (regexp, strlen (regexp), &regex);
  return s == NULL;
}
$ echo '#define _GNU_SOURCE 1' > config.h
$ gcc -g -Wall -W -Wextra regex-check.c -I.
$ ./a.out
[Exit 1]

It looks like the code intends to diagnose that condition with REG_ERANGE,
but something is not working:

      start_collseq = lookup_collation_sequence_value (start_elem);
      end_collseq = lookup_collation_sequence_value (end_elem);
      /* Check start/end collation sequence values.  */
      if (BE (start_collseq == UINT_MAX || end_collseq == UINT_MAX, 0))
	return REG_ECOLLATE;
      if (BE ((syntax & RE_NO_EMPTY_RANGES) && start_collseq > end_collseq, 0))
	return REG_ERANGE;

-- 
           Summary: re_compiler_pattern fails to diagnose [b-a] as an
                    invalid range
           Product: glibc
           Version: 2.11
            Status: NEW
          Severity: normal
          Priority: P2
         Component: regex
        AssignedTo: drepper at redhat dot com
        ReportedBy: jim at meyering dot net
                CC: glibc-bugs-regex at sources dot redhat dot com,glibc-
                    bugs at sources dot redhat dot com


http://sourceware.org/bugzilla/show_bug.cgi?id=11244

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

* [Bug regex/11244] re_compiler_pattern fails to diagnose [b-a] as an invalid range
  2010-02-03 16:47 [Bug regex/11244] New: re_compiler_pattern fails to diagnose [b-a] as an invalid range jim at meyering dot net
@ 2010-02-03 17:13 ` schwab at linux-m68k dot org
  2010-02-03 17:47 ` jim at meyering dot net
  1 sibling, 0 replies; 3+ messages in thread
From: schwab at linux-m68k dot org @ 2010-02-03 17:13 UTC (permalink / raw)
  To: glibc-bugs-regex


------- Additional Comments From schwab at linux-m68k dot org  2010-02-03 17:12 -------
(RE_SYNTAX_POSIX_EGREP & RE_NO_EMPTY_RANGES) == 0

-- 
           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |INVALID


http://sourceware.org/bugzilla/show_bug.cgi?id=11244

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

* [Bug regex/11244] re_compiler_pattern fails to diagnose [b-a] as an invalid range
  2010-02-03 16:47 [Bug regex/11244] New: re_compiler_pattern fails to diagnose [b-a] as an invalid range jim at meyering dot net
  2010-02-03 17:13 ` [Bug regex/11244] " schwab at linux-m68k dot org
@ 2010-02-03 17:47 ` jim at meyering dot net
  1 sibling, 0 replies; 3+ messages in thread
From: jim at meyering dot net @ 2010-02-03 17:47 UTC (permalink / raw)
  To: glibc-bugs-regex


------- Additional Comments From jim at meyering dot net  2010-02-03 17:47 -------
(In reply to comment #1)
> (RE_SYNTAX_POSIX_EGREP & RE_NO_EMPTY_RANGES) == 0

Thanks.
The real problem is that the non-_LIBC code (which is used in gnulib) performs
the range test regardless of whether RE_NO_EMPTY_RANGES is set.  The non-LIBC
function currently lacks access to the "syntax" variable.

-- 


http://sourceware.org/bugzilla/show_bug.cgi?id=11244

------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


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

end of thread, other threads:[~2010-02-03 17:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-02-03 16:47 [Bug regex/11244] New: re_compiler_pattern fails to diagnose [b-a] as an invalid range jim at meyering dot net
2010-02-03 17:13 ` [Bug regex/11244] " schwab at linux-m68k dot org
2010-02-03 17:47 ` jim at meyering dot net

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