Coverage Report

Created: 2025-07-11 06:23

/src/libunistring/lib/unistr/u8-check.c
Line
Count
Source (jump to first uncovered line)
1
/* Check UTF-8 string.
2
   Copyright (C) 2002, 2006-2007, 2009-2025 Free Software Foundation, Inc.
3
   Written by Bruno Haible <bruno@clisp.org>, 2002.
4
5
   This file is free software: you can redistribute it and/or modify
6
   it under the terms of the GNU Lesser General Public License as
7
   published by the Free Software Foundation; either version 2.1 of the
8
   License, or (at your option) any later version.
9
10
   This file is distributed in the hope that it will be useful,
11
   but WITHOUT ANY WARRANTY; without even the implied warranty of
12
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
   GNU Lesser General Public License for more details.
14
15
   You should have received a copy of the GNU Lesser General Public License
16
   along with this program.  If not, see <https://www.gnu.org/licenses/>.  */
17
18
/* Don't use the const-improved function macros in this compilation unit.  */
19
#define _LIBUNISTRING_NO_CONST_GENERICS
20
21
#include <config.h>
22
23
/* Specification.  */
24
#include "unistr.h"
25
26
const uint8_t *
27
u8_check (const uint8_t *s, size_t n)
28
0
{
29
0
  const uint8_t *s_end = s + n;
30
31
0
  while (s < s_end)
32
0
    {
33
      /* Keep in sync with unistr.h and u8-mbtouc-aux.c.  */
34
0
      uint8_t c = *s;
35
36
0
      if (c < 0x80)
37
0
        {
38
0
          s++;
39
0
          continue;
40
0
        }
41
0
      if (c >= 0xc2)
42
0
        {
43
0
          if (c < 0xe0)
44
0
            {
45
0
              if (s + 2 <= s_end
46
0
                  && (s[1] ^ 0x80) < 0x40)
47
0
                {
48
0
                  s += 2;
49
0
                  continue;
50
0
                }
51
0
            }
52
0
          else if (c < 0xf0)
53
0
            {
54
0
              if (s + 3 <= s_end
55
0
                  && (s[1] ^ 0x80) < 0x40 && (s[2] ^ 0x80) < 0x40
56
0
                  && (c >= 0xe1 || s[1] >= 0xa0)
57
0
                  && (c != 0xed || s[1] < 0xa0))
58
0
                {
59
0
                  s += 3;
60
0
                  continue;
61
0
                }
62
0
            }
63
0
          else if (c <= 0xf4)
64
0
            {
65
0
              if (s + 4 <= s_end
66
0
                  && (s[1] ^ 0x80) < 0x40 && (s[2] ^ 0x80) < 0x40
67
0
                  && (s[3] ^ 0x80) < 0x40
68
0
                  && (c >= 0xf1 || s[1] >= 0x90)
69
0
                  && (c < 0xf4 || (/* c == 0xf4 && */ s[1] < 0x90)))
70
0
                {
71
0
                  s += 4;
72
0
                  continue;
73
0
                }
74
0
            }
75
0
        }
76
      /* invalid or incomplete multibyte character */
77
0
      return s;
78
0
    }
79
0
  return NULL;
80
0
}