1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 2007-2025 Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3, or (at your option)
any later version.
GNU Mailutils is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with GNU Mailutils. If not, see <http://www.gnu.org/licenses/>. */
#if HAVE_CONFIG_H
# include <config.h>
#endif
#include <mailutils/opool.h>
#include <mailutils/error.h>
#include <mailutils/errno.h>
#include <mailutils/glob.h>
#include <regex.h>
#include <string.h>
#include <stdlib.h>
static void
parse_character_class (unsigned char const *str, mu_opool_t pool,
unsigned char const **endp)
{
unsigned char const *cur;
cur = str + 1;
if (*cur == '!')
cur++;
if (*cur == ']')
cur++;
while (*cur && *cur != ']')
{
int c = *cur++;
if (c == '\\')
cur++;
else if (c >= 0xc2)
{
size_t len;
if (c < 0xe0)
len = 1;
else if (c < 0xf0)
len = 2;
else if (c < 0xf8)
len = 3;
else
/* Invalid UTF-8 sequence; skip. */
continue;
while (len-- && *cur)
cur++;
}
}
if (*cur == ']')
{
/* Valid character class */
mu_opool_append_char (pool, *str);
str++;
if (*str == '!')
{
mu_opool_append_char (pool, '^');
str++;
}
while (str < cur)
{
if (*str == '[')
mu_opool_append_char (pool, '\\');
mu_opool_append_char (pool, *str);
str++;
}
mu_opool_append_char (pool, ']');
*endp = cur + 1;
}
else
{
mu_opool_append_char (pool, '\\');
mu_opool_append_char (pool, *str);
str++;
*endp = str;
}
}
int
mu_glob_to_regex_opool (char const *pattern, mu_opool_t pool, int flags)
{
unsigned char const *str = (unsigned char const *) pattern;
mu_nonlocal_jmp_t jmp;
if (!(flags & MU_GLOBF_SUB))
flags |= MU_GLOBF_COLLAPSE;
mu_opool_setup_nonlocal_jump (pool, jmp);
while (*str)
{
int c = *str++;
if (c < 0x80)
{
switch (c)
{
case '\\':
mu_opool_append_char (pool, '\\');
if (*str && strchr ("?*[", *str))
{
mu_opool_append_char (pool, *str);
str++;
}
else
mu_opool_append_char (pool, '\\');
break;
case '?':
if (flags & MU_GLOBF_SUB)
mu_opool_append_char (pool, '(');
mu_opool_append_char (pool, '.');
if (flags & MU_GLOBF_SUB)
mu_opool_append_char (pool, ')');
break;
case '*':
if (flags & MU_GLOBF_COLLAPSE)
{
while (*str == '*')
str++;
}
if (flags & MU_GLOBF_SUB)
{
while (*str == '*')
{
mu_opool_append (pool, "()", 2);
str++;
}
mu_opool_append_char (pool, '(');
mu_opool_append (pool, ".*", 2);
mu_opool_append_char (pool, ')');
}
else
mu_opool_append (pool, ".*", 2);
break;
case '[':
parse_character_class (str - 1, pool, &str);
break;
case '(':
case ')':
case '{':
case '}':
case '^':
case '$':
case ']':
case '|':
case '.':
mu_opool_append_char (pool, '\\');
mu_opool_append_char (pool, c);
break;
default:
mu_opool_append_char (pool, c);
}
}
else
{
mu_opool_append_char (pool, c);
if (c >= 0xc2)
{
size_t len;
if (c < 0xe0)
len = 1;
else if (c < 0xf0)
len = 2;
else if (c < 0xf8)
len = 3;
else
/* Invalid UTF-8 sequence; skip. */
continue;
for (; len-- && *str; str++)
mu_opool_append_char (pool, *str);
}
}
}
mu_opool_clrjmp (pool);
return 0;
}
int
mu_glob_to_regex (char **rxstr, char const *pattern, int flags)
{
mu_opool_t pool;
int rc;
mu_nonlocal_jmp_t jmp;
rc = mu_opool_create (&pool, MU_OPOOL_DEFAULT);
if (rc)
return rc;
mu_opool_setup_nonlocal_jump (pool, jmp);
mu_opool_append_char (pool, '^');
rc = mu_glob_to_regex_opool (pattern, pool, flags);
if (rc == 0)
{
mu_opool_append_char (pool, '$');
mu_opool_append_char (pool, 0);
*rxstr = mu_opool_detach (pool, NULL);
}
mu_opool_clrjmp (pool);
mu_opool_destroy (&pool);
return rc;
}
int
mu_glob_compile (regex_t *rx, char const *pattern, int flags)
{
char *str;
int rc;
int rxflags;
rc = mu_glob_to_regex (&str, pattern, flags);
if (rc)
return rc;
rxflags = REG_EXTENDED;
if (flags & MU_GLOBF_ICASE)
rxflags |= REG_ICASE;
if (!(flags & MU_GLOBF_SUB))
rxflags |= REG_NOSUB;
rc = regcomp (rx, str, rxflags);
if (rc)
{
size_t size = regerror (rc, rx, NULL, 0);
char *errbuf = malloc (size + 1);
if (errbuf)
{
regerror (rc, rx, errbuf, size);
mu_error ("INTERNAL ERROR: can't compile regular expression \"%s\": %s",
str, mu_strerror (rc));
}
else
mu_error ("INTERNAL ERROR: can't compile regular expression \"%s\"",
str);
mu_error ("INTERNAL ERROR: expression compiled from globbing pattern: %s",
pattern);
free (errbuf);
}
free (str);
return rc;
}
|