Blame glib/pcre/pcre_valid_utf8.c

Packit ae235b
/*************************************************
Packit ae235b
*      Perl-Compatible Regular Expressions       *
Packit ae235b
*************************************************/
Packit ae235b
Packit ae235b
/* PCRE is a library of functions to support regular expressions whose syntax
Packit ae235b
and semantics are as close as possible to those of the Perl 5 language.
Packit ae235b
Packit ae235b
                       Written by Philip Hazel
Packit ae235b
           Copyright (c) 1997-2012 University of Cambridge
Packit ae235b
Packit ae235b
-----------------------------------------------------------------------------
Packit ae235b
Redistribution and use in source and binary forms, with or without
Packit ae235b
modification, are permitted provided that the following conditions are met:
Packit ae235b
Packit ae235b
    * Redistributions of source code must retain the above copyright notice,
Packit ae235b
      this list of conditions and the following disclaimer.
Packit ae235b
Packit ae235b
    * Redistributions in binary form must reproduce the above copyright
Packit ae235b
      notice, this list of conditions and the following disclaimer in the
Packit ae235b
      documentation and/or other materials provided with the distribution.
Packit ae235b
Packit ae235b
    * Neither the name of the University of Cambridge nor the names of its
Packit ae235b
      contributors may be used to endorse or promote products derived from
Packit ae235b
      this software without specific prior written permission.
Packit ae235b
Packit ae235b
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
Packit ae235b
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
Packit ae235b
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
Packit ae235b
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
Packit ae235b
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
Packit ae235b
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
Packit ae235b
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
Packit ae235b
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
Packit ae235b
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
Packit ae235b
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
Packit ae235b
POSSIBILITY OF SUCH DAMAGE.
Packit ae235b
-----------------------------------------------------------------------------
Packit ae235b
*/
Packit ae235b
Packit ae235b
Packit ae235b
/* This module contains an internal function for validating UTF-8 character
Packit ae235b
strings. */
Packit ae235b
Packit ae235b
Packit ae235b
#include "config.h"
Packit ae235b
Packit ae235b
#include "pcre_internal.h"
Packit ae235b
Packit ae235b
Packit ae235b
/*************************************************
Packit ae235b
*         Validate a UTF-8 string                *
Packit ae235b
*************************************************/
Packit ae235b
Packit ae235b
/* This function is called (optionally) at the start of compile or match, to
Packit ae235b
check that a supposed UTF-8 string is actually valid. The early check means
Packit ae235b
that subsequent code can assume it is dealing with a valid string. The check
Packit ae235b
can be turned off for maximum performance, but the consequences of supplying an
Packit ae235b
invalid string are then undefined.
Packit ae235b
Packit ae235b
Originally, this function checked according to RFC 2279, allowing for values in
Packit ae235b
the range 0 to 0x7fffffff, up to 6 bytes long, but ensuring that they were in
Packit ae235b
the canonical format. Once somebody had pointed out RFC 3629 to me (it
Packit ae235b
obsoletes 2279), additional restrictions were applied. The values are now
Packit ae235b
limited to be between 0 and 0x0010ffff, no more than 4 bytes long, and the
Packit ae235b
subrange 0xd000 to 0xdfff is excluded. However, the format of 5-byte and 6-byte
Packit ae235b
characters is still checked.
Packit ae235b
Packit ae235b
From release 8.13 more information about the details of the error are passed
Packit ae235b
back in the returned value:
Packit ae235b
Packit ae235b
PCRE_UTF8_ERR0   No error
Packit ae235b
PCRE_UTF8_ERR1   Missing 1 byte at the end of the string
Packit ae235b
PCRE_UTF8_ERR2   Missing 2 bytes at the end of the string
Packit ae235b
PCRE_UTF8_ERR3   Missing 3 bytes at the end of the string
Packit ae235b
PCRE_UTF8_ERR4   Missing 4 bytes at the end of the string
Packit ae235b
PCRE_UTF8_ERR5   Missing 5 bytes at the end of the string
Packit ae235b
PCRE_UTF8_ERR6   2nd-byte's two top bits are not 0x80
Packit ae235b
PCRE_UTF8_ERR7   3rd-byte's two top bits are not 0x80
Packit ae235b
PCRE_UTF8_ERR8   4th-byte's two top bits are not 0x80
Packit ae235b
PCRE_UTF8_ERR9   5th-byte's two top bits are not 0x80
Packit ae235b
PCRE_UTF8_ERR10  6th-byte's two top bits are not 0x80
Packit ae235b
PCRE_UTF8_ERR11  5-byte character is not permitted by RFC 3629
Packit ae235b
PCRE_UTF8_ERR12  6-byte character is not permitted by RFC 3629
Packit ae235b
PCRE_UTF8_ERR13  4-byte character with value > 0x10ffff is not permitted
Packit ae235b
PCRE_UTF8_ERR14  3-byte character with value 0xd000-0xdfff is not permitted
Packit ae235b
PCRE_UTF8_ERR15  Overlong 2-byte sequence
Packit ae235b
PCRE_UTF8_ERR16  Overlong 3-byte sequence
Packit ae235b
PCRE_UTF8_ERR17  Overlong 4-byte sequence
Packit ae235b
PCRE_UTF8_ERR18  Overlong 5-byte sequence (won't ever occur)
Packit ae235b
PCRE_UTF8_ERR19  Overlong 6-byte sequence (won't ever occur)
Packit ae235b
PCRE_UTF8_ERR20  Isolated 0x80 byte (not within UTF-8 character)
Packit ae235b
PCRE_UTF8_ERR21  Byte with the illegal value 0xfe or 0xff
Packit ae235b
Packit ae235b
Arguments:
Packit ae235b
  string       points to the string
Packit ae235b
  length       length of string, or -1 if the string is zero-terminated
Packit ae235b
  errp         pointer to an error position offset variable
Packit ae235b
Packit ae235b
Returns:       = 0    if the string is a valid UTF-8 string
Packit ae235b
               > 0    otherwise, setting the offset of the bad character
Packit ae235b
*/
Packit ae235b
Packit ae235b
int
Packit ae235b
PRIV(valid_utf)(PCRE_PUCHAR string, int length, int *erroroffset)
Packit ae235b
{
Packit ae235b
#ifdef SUPPORT_UTF
Packit ae235b
PCRE_PUCHAR p;
Packit ae235b
Packit ae235b
if (length < 0)
Packit ae235b
  {
Packit ae235b
  for (p = string; *p != 0; p++);
Packit ae235b
  length = (int)(p - string);
Packit ae235b
  }
Packit ae235b
Packit ae235b
for (p = string; length-- > 0; p++)
Packit ae235b
  {
Packit ae235b
  int ab, c, d;
Packit ae235b
Packit ae235b
  c = *p;
Packit ae235b
  if (c < 128) continue;                /* ASCII character */
Packit ae235b
Packit ae235b
  if (c < 0xc0)                         /* Isolated 10xx xxxx byte */
Packit ae235b
    {
Packit ae235b
    *erroroffset = (int)(p - string);
Packit ae235b
    return PCRE_UTF8_ERR20;
Packit ae235b
    }
Packit ae235b
Packit ae235b
  if (c >= 0xfe)                        /* Invalid 0xfe or 0xff bytes */
Packit ae235b
    {
Packit ae235b
    *erroroffset = (int)(p - string);
Packit ae235b
    return PCRE_UTF8_ERR21;
Packit ae235b
    }
Packit ae235b
Packit ae235b
  ab = PRIV(utf8_table4)[c & 0x3f];     /* Number of additional bytes */
Packit ae235b
  if (length < ab)
Packit ae235b
    {
Packit ae235b
    *erroroffset = (int)(p - string);          /* Missing bytes */
Packit ae235b
    return ab - length;                 /* Codes ERR1 to ERR5 */
Packit ae235b
    }
Packit ae235b
  length -= ab;                         /* Length remaining */
Packit ae235b
Packit ae235b
  /* Check top bits in the second byte */
Packit ae235b
Packit ae235b
  if (((d = *(++p)) & 0xc0) != 0x80)
Packit ae235b
    {
Packit ae235b
    *erroroffset = (int)(p - string) - 1;
Packit ae235b
    return PCRE_UTF8_ERR6;
Packit ae235b
    }
Packit ae235b
Packit ae235b
  /* For each length, check that the remaining bytes start with the 0x80 bit
Packit ae235b
  set and not the 0x40 bit. Then check for an overlong sequence, and for the
Packit ae235b
  excluded range 0xd800 to 0xdfff. */
Packit ae235b
Packit ae235b
  switch (ab)
Packit ae235b
    {
Packit ae235b
    /* 2-byte character. No further bytes to check for 0x80. Check first byte
Packit ae235b
    for for xx00 000x (overlong sequence). */
Packit ae235b
Packit ae235b
    case 1: if ((c & 0x3e) == 0)
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 1;
Packit ae235b
      return PCRE_UTF8_ERR15;
Packit ae235b
      }
Packit ae235b
    break;
Packit ae235b
Packit ae235b
    /* 3-byte character. Check third byte for 0x80. Then check first 2 bytes
Packit ae235b
      for 1110 0000, xx0x xxxx (overlong sequence) or
Packit ae235b
          1110 1101, 1010 xxxx (0xd800 - 0xdfff) */
Packit ae235b
Packit ae235b
    case 2:
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Third byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 2;
Packit ae235b
      return PCRE_UTF8_ERR7;
Packit ae235b
      }
Packit ae235b
    if (c == 0xe0 && (d & 0x20) == 0)
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 2;
Packit ae235b
      return PCRE_UTF8_ERR16;
Packit ae235b
      }
Packit ae235b
    if (c == 0xed && d >= 0xa0)
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 2;
Packit ae235b
      return PCRE_UTF8_ERR14;
Packit ae235b
      }
Packit ae235b
    break;
Packit ae235b
Packit ae235b
    /* 4-byte character. Check 3rd and 4th bytes for 0x80. Then check first 2
Packit ae235b
       bytes for for 1111 0000, xx00 xxxx (overlong sequence), then check for a
Packit ae235b
       character greater than 0x0010ffff (f4 8f bf bf) */
Packit ae235b
Packit ae235b
    case 3:
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Third byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 2;
Packit ae235b
      return PCRE_UTF8_ERR7;
Packit ae235b
      }
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Fourth byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 3;
Packit ae235b
      return PCRE_UTF8_ERR8;
Packit ae235b
      }
Packit ae235b
    if (c == 0xf0 && (d & 0x30) == 0)
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 3;
Packit ae235b
      return PCRE_UTF8_ERR17;
Packit ae235b
      }
Packit ae235b
    if (c > 0xf4 || (c == 0xf4 && d > 0x8f))
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 3;
Packit ae235b
      return PCRE_UTF8_ERR13;
Packit ae235b
      }
Packit ae235b
    break;
Packit ae235b
Packit ae235b
    /* 5-byte and 6-byte characters are not allowed by RFC 3629, and will be
Packit ae235b
    rejected by the length test below. However, we do the appropriate tests
Packit ae235b
    here so that overlong sequences get diagnosed, and also in case there is
Packit ae235b
    ever an option for handling these larger code points. */
Packit ae235b
Packit ae235b
    /* 5-byte character. Check 3rd, 4th, and 5th bytes for 0x80. Then check for
Packit ae235b
    1111 1000, xx00 0xxx */
Packit ae235b
Packit ae235b
    case 4:
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Third byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 2;
Packit ae235b
      return PCRE_UTF8_ERR7;
Packit ae235b
      }
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Fourth byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 3;
Packit ae235b
      return PCRE_UTF8_ERR8;
Packit ae235b
      }
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Fifth byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 4;
Packit ae235b
      return PCRE_UTF8_ERR9;
Packit ae235b
      }
Packit ae235b
    if (c == 0xf8 && (d & 0x38) == 0)
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 4;
Packit ae235b
      return PCRE_UTF8_ERR18;
Packit ae235b
      }
Packit ae235b
    break;
Packit ae235b
Packit ae235b
    /* 6-byte character. Check 3rd-6th bytes for 0x80. Then check for
Packit ae235b
    1111 1100, xx00 00xx. */
Packit ae235b
Packit ae235b
    case 5:
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Third byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 2;
Packit ae235b
      return PCRE_UTF8_ERR7;
Packit ae235b
      }
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Fourth byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 3;
Packit ae235b
      return PCRE_UTF8_ERR8;
Packit ae235b
      }
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Fifth byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 4;
Packit ae235b
      return PCRE_UTF8_ERR9;
Packit ae235b
      }
Packit ae235b
    if ((*(++p) & 0xc0) != 0x80)     /* Sixth byte */
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 5;
Packit ae235b
      return PCRE_UTF8_ERR10;
Packit ae235b
      }
Packit ae235b
    if (c == 0xfc && (d & 0x3c) == 0)
Packit ae235b
      {
Packit ae235b
      *erroroffset = (int)(p - string) - 5;
Packit ae235b
      return PCRE_UTF8_ERR19;
Packit ae235b
      }
Packit ae235b
    break;
Packit ae235b
    }
Packit ae235b
Packit ae235b
  /* Character is valid under RFC 2279, but 4-byte and 5-byte characters are
Packit ae235b
  excluded by RFC 3629. The pointer p is currently at the last byte of the
Packit ae235b
  character. */
Packit ae235b
Packit ae235b
  if (ab > 3)
Packit ae235b
    {
Packit ae235b
    *erroroffset = (int)(p - string) - ab;
Packit ae235b
    return (ab == 4)? PCRE_UTF8_ERR11 : PCRE_UTF8_ERR12;
Packit ae235b
    }
Packit ae235b
  }
Packit ae235b
Packit ae235b
#else  /* SUPPORT_UTF */
Packit ae235b
(void)(string);  /* Keep picky compilers happy */
Packit ae235b
(void)(length);
Packit ae235b
#endif
Packit ae235b
Packit ae235b
return PCRE_UTF8_ERR0;   /* This indicates success */
Packit ae235b
}
Packit ae235b
Packit ae235b
/* End of pcre_valid_utf8.c */