1 /* 2 * Copyright (c) 1989, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * This code is derived from software contributed to Berkeley by 6 * Guido van Rossum. 7 * 8 * Copyright (c) 2011 The FreeBSD Foundation 9 * All rights reserved. 10 * Portions of this software were developed by David Chisnall 11 * under sponsorship from the FreeBSD Foundation. 12 * 13 * Redistribution and use in source and binary forms, with or without 14 * modification, are permitted provided that the following conditions 15 * are met: 16 * 1. Redistributions of source code must retain the above copyright 17 * notice, this list of conditions and the following disclaimer. 18 * 2. Redistributions in binary form must reproduce the above copyright 19 * notice, this list of conditions and the following disclaimer in the 20 * documentation and/or other materials provided with the distribution. 21 * 4. Neither the name of the University nor the names of its contributors 22 * may be used to endorse or promote products derived from this software 23 * without specific prior written permission. 24 * 25 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 28 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 29 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 30 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 31 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 32 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 33 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 34 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 35 * SUCH DAMAGE. 36 */ 37 38 #if defined(LIBC_SCCS) && !defined(lint) 39 static char sccsid[] = "@(#)glob.c 8.3 (Berkeley) 10/13/93"; 40 #endif /* LIBC_SCCS and not lint */ 41 #include <sys/cdefs.h> 42 __FBSDID("$FreeBSD$"); 43 44 /* 45 * glob(3) -- a superset of the one defined in POSIX 1003.2. 46 * 47 * The [!...] convention to negate a range is supported (SysV, Posix, ksh). 48 * 49 * Optional extra services, controlled by flags not defined by POSIX: 50 * 51 * GLOB_QUOTE: 52 * Escaping convention: \ inhibits any special meaning the following 53 * character might have (except \ at end of string is retained). 54 * GLOB_MAGCHAR: 55 * Set in gl_flags if pattern contained a globbing character. 56 * GLOB_NOMAGIC: 57 * Same as GLOB_NOCHECK, but it will only append pattern if it did 58 * not contain any magic characters. [Used in csh style globbing] 59 * GLOB_ALTDIRFUNC: 60 * Use alternately specified directory access functions. 61 * GLOB_TILDE: 62 * expand ~user/foo to the /home/dir/of/user/foo 63 * GLOB_BRACE: 64 * expand {1,2}{a,b} to 1a 1b 2a 2b 65 * gl_matchc: 66 * Number of matches in the current invocation of glob. 67 */ 68 69 /* 70 * Some notes on multibyte character support: 71 * 1. Patterns with illegal byte sequences match nothing - even if 72 * GLOB_NOCHECK is specified. 73 * 2. Illegal byte sequences in filenames are handled by treating them as 74 * single-byte characters with a values of such bytes of the sequence 75 * cast to wchar_t. 76 * 3. State-dependent encodings are not currently supported. 77 */ 78 79 #include <sys/param.h> 80 #include <sys/stat.h> 81 82 #include <ctype.h> 83 #include <dirent.h> 84 #include <errno.h> 85 #include <glob.h> 86 #include <limits.h> 87 #include <pwd.h> 88 #include <stdint.h> 89 #include <stdio.h> 90 #include <stdlib.h> 91 #include <string.h> 92 #include <unistd.h> 93 #include <wchar.h> 94 95 #include "collate.h" 96 97 /* 98 * glob(3) expansion limits. Stop the expansion if any of these limits 99 * is reached. This caps the runtime in the face of DoS attacks. See 100 * also CVE-2010-2632 101 */ 102 #define GLOB_LIMIT_BRACE 128 /* number of brace calls */ 103 #define GLOB_LIMIT_PATH 65536 /* number of path elements */ 104 #define GLOB_LIMIT_READDIR 16384 /* number of readdirs */ 105 #define GLOB_LIMIT_STAT 1024 /* number of stat system calls */ 106 #define GLOB_LIMIT_STRING ARG_MAX /* maximum total size for paths */ 107 108 struct glob_limit { 109 size_t l_brace_cnt; 110 size_t l_path_lim; 111 size_t l_readdir_cnt; 112 size_t l_stat_cnt; 113 size_t l_string_cnt; 114 }; 115 116 #define DOT L'.' 117 #define EOS L'\0' 118 #define LBRACKET L'[' 119 #define NOT L'!' 120 #define QUESTION L'?' 121 #define QUOTE L'\\' 122 #define RANGE L'-' 123 #define RBRACKET L']' 124 #define SEP L'/' 125 #define STAR L'*' 126 #define TILDE L'~' 127 #define LBRACE L'{' 128 #define RBRACE L'}' 129 #define COMMA L',' 130 131 #define M_QUOTE 0x8000000000ULL 132 #define M_PROTECT 0x4000000000ULL 133 #define M_MASK 0xffffffffffULL 134 #define M_CHAR 0x00ffffffffULL 135 136 typedef uint_fast64_t Char; 137 138 #define CHAR(c) ((Char)((c)&M_CHAR)) 139 #define META(c) ((Char)((c)|M_QUOTE)) 140 #define UNPROT(c) ((c) & ~M_PROTECT) 141 #define M_ALL META(L'*') 142 #define M_END META(L']') 143 #define M_NOT META(L'!') 144 #define M_ONE META(L'?') 145 #define M_RNG META(L'-') 146 #define M_SET META(L'[') 147 #define ismeta(c) (((c)&M_QUOTE) != 0) 148 #ifdef DEBUG 149 #define isprot(c) (((c)&M_PROTECT) != 0) 150 #endif 151 152 static int compare(const void *, const void *); 153 static int g_Ctoc(const Char *, char *, size_t); 154 static int g_lstat(Char *, struct stat *, glob_t *); 155 static DIR *g_opendir(Char *, glob_t *); 156 static const Char *g_strchr(const Char *, wchar_t); 157 #ifdef notdef 158 static Char *g_strcat(Char *, const Char *); 159 #endif 160 static int g_stat(Char *, struct stat *, glob_t *); 161 static int glob0(const Char *, glob_t *, struct glob_limit *, 162 const char *); 163 static int glob1(Char *, glob_t *, struct glob_limit *); 164 static int glob2(Char *, Char *, Char *, Char *, glob_t *, 165 struct glob_limit *); 166 static int glob3(Char *, Char *, Char *, Char *, Char *, glob_t *, 167 struct glob_limit *); 168 static int globextend(const Char *, glob_t *, struct glob_limit *, 169 const char *); 170 static const Char * 171 globtilde(const Char *, Char *, size_t, glob_t *); 172 static int globexp0(const Char *, glob_t *, struct glob_limit *, 173 const char *); 174 static int globexp1(const Char *, glob_t *, struct glob_limit *); 175 static int globexp2(const Char *, const Char *, glob_t *, 176 struct glob_limit *); 177 static int globfinal(glob_t *, struct glob_limit *, size_t, 178 const char *); 179 static int match(Char *, Char *, Char *); 180 #ifdef DEBUG 181 static void qprintf(const char *, Char *); 182 #endif 183 184 int 185 glob(const char * __restrict pattern, int flags, 186 int (*errfunc)(const char *, int), glob_t * __restrict pglob) 187 { 188 struct glob_limit limit = { 0, 0, 0, 0, 0 }; 189 const char *patnext; 190 Char *bufnext, *bufend, patbuf[MAXPATHLEN], prot; 191 mbstate_t mbs; 192 wchar_t wc; 193 size_t clen; 194 int too_long; 195 196 patnext = pattern; 197 if (!(flags & GLOB_APPEND)) { 198 pglob->gl_pathc = 0; 199 pglob->gl_pathv = NULL; 200 if (!(flags & GLOB_DOOFFS)) 201 pglob->gl_offs = 0; 202 } 203 if (flags & GLOB_LIMIT) { 204 limit.l_path_lim = pglob->gl_matchc; 205 if (limit.l_path_lim == 0) 206 limit.l_path_lim = GLOB_LIMIT_PATH; 207 } 208 pglob->gl_flags = flags & ~GLOB_MAGCHAR; 209 pglob->gl_errfunc = errfunc; 210 pglob->gl_matchc = 0; 211 212 bufnext = patbuf; 213 bufend = bufnext + MAXPATHLEN - 1; 214 too_long = 1; 215 if (flags & GLOB_NOESCAPE) { 216 memset(&mbs, 0, sizeof(mbs)); 217 while (bufnext <= bufend) { 218 clen = mbrtowc(&wc, patnext, MB_LEN_MAX, &mbs); 219 if (clen == (size_t)-1 || clen == (size_t)-2) 220 return (globfinal(pglob, &limit, 221 pglob->gl_pathc, pattern)); 222 else if (clen == 0) { 223 too_long = 0; 224 break; 225 } 226 *bufnext++ = wc; 227 patnext += clen; 228 } 229 } else { 230 /* Protect the quoted characters. */ 231 memset(&mbs, 0, sizeof(mbs)); 232 while (bufnext <= bufend) { 233 if (*patnext == '\\') { 234 if (*++patnext == '\0') { 235 *bufnext++ = QUOTE; 236 continue; 237 } 238 prot = M_PROTECT; 239 } else 240 prot = 0; 241 clen = mbrtowc(&wc, patnext, MB_LEN_MAX, &mbs); 242 if (clen == (size_t)-1 || clen == (size_t)-2) 243 return (globfinal(pglob, &limit, 244 pglob->gl_pathc, pattern)); 245 else if (clen == 0) { 246 too_long = 0; 247 break; 248 } 249 *bufnext++ = wc | prot; 250 patnext += clen; 251 } 252 } 253 if (too_long) 254 return (globfinal(pglob, &limit, pglob->gl_pathc, pattern)); 255 *bufnext = EOS; 256 257 if (flags & GLOB_BRACE) 258 return (globexp0(patbuf, pglob, &limit, pattern)); 259 else 260 return (glob0(patbuf, pglob, &limit, pattern)); 261 } 262 263 static int 264 globexp0(const Char *pattern, glob_t *pglob, struct glob_limit *limit, 265 const char *origpat) { 266 int rv; 267 size_t oldpathc; 268 269 /* Protect a single {}, for find(1), like csh */ 270 if (pattern[0] == LBRACE && pattern[1] == RBRACE && pattern[2] == EOS) { 271 if ((pglob->gl_flags & GLOB_LIMIT) && 272 limit->l_brace_cnt++ >= GLOB_LIMIT_BRACE) { 273 errno = 0; 274 return (GLOB_NOSPACE); 275 } 276 return (glob0(pattern, pglob, limit, origpat)); 277 } 278 279 oldpathc = pglob->gl_pathc; 280 281 if ((rv = globexp1(pattern, pglob, limit)) != 0) 282 return rv; 283 284 return (globfinal(pglob, limit, oldpathc, origpat)); 285 } 286 287 /* 288 * Expand recursively a glob {} pattern. When there is no more expansion 289 * invoke the standard globbing routine to glob the rest of the magic 290 * characters 291 */ 292 static int 293 globexp1(const Char *pattern, glob_t *pglob, struct glob_limit *limit) 294 { 295 const Char* ptr; 296 297 if ((ptr = g_strchr(pattern, LBRACE)) != NULL) { 298 if ((pglob->gl_flags & GLOB_LIMIT) && 299 limit->l_brace_cnt++ >= GLOB_LIMIT_BRACE) { 300 errno = 0; 301 return (GLOB_NOSPACE); 302 } 303 return (globexp2(ptr, pattern, pglob, limit)); 304 } 305 306 return (glob0(pattern, pglob, limit, NULL)); 307 } 308 309 310 /* 311 * Recursive brace globbing helper. Tries to expand a single brace. 312 * If it succeeds then it invokes globexp1 with the new pattern. 313 * If it fails then it tries to glob the rest of the pattern and returns. 314 */ 315 static int 316 globexp2(const Char *ptr, const Char *pattern, glob_t *pglob, 317 struct glob_limit *limit) 318 { 319 int i, rv; 320 Char *lm, *ls; 321 const Char *pe, *pm, *pm1, *pl; 322 Char patbuf[MAXPATHLEN]; 323 324 /* copy part up to the brace */ 325 for (lm = patbuf, pm = pattern; pm != ptr; *lm++ = *pm++) 326 continue; 327 *lm = EOS; 328 ls = lm; 329 330 /* Find the balanced brace */ 331 for (i = 0, pe = ++ptr; *pe != EOS; pe++) 332 if (*pe == LBRACKET) { 333 /* Ignore everything between [] */ 334 for (pm = pe++; *pe != RBRACKET && *pe != EOS; pe++) 335 continue; 336 if (*pe == EOS) { 337 /* 338 * We could not find a matching RBRACKET. 339 * Ignore and just look for RBRACE 340 */ 341 pe = pm; 342 } 343 } 344 else if (*pe == LBRACE) 345 i++; 346 else if (*pe == RBRACE) { 347 if (i == 0) 348 break; 349 i--; 350 } 351 352 /* Non matching braces; just glob the pattern */ 353 if (i != 0 || *pe == EOS) 354 return (glob0(pattern, pglob, limit, NULL)); 355 356 for (i = 0, pl = pm = ptr; pm <= pe; pm++) 357 switch (*pm) { 358 case LBRACKET: 359 /* Ignore everything between [] */ 360 for (pm1 = pm++; *pm != RBRACKET && *pm != EOS; pm++) 361 continue; 362 if (*pm == EOS) { 363 /* 364 * We could not find a matching RBRACKET. 365 * Ignore and just look for RBRACE 366 */ 367 pm = pm1; 368 } 369 break; 370 371 case LBRACE: 372 i++; 373 break; 374 375 case RBRACE: 376 if (i) { 377 i--; 378 break; 379 } 380 /* FALLTHROUGH */ 381 case COMMA: 382 if (i && *pm == COMMA) 383 break; 384 else { 385 /* Append the current string */ 386 for (lm = ls; (pl < pm); *lm++ = *pl++) 387 continue; 388 /* 389 * Append the rest of the pattern after the 390 * closing brace 391 */ 392 for (pl = pe + 1; (*lm++ = *pl++) != EOS;) 393 continue; 394 395 /* Expand the current pattern */ 396 #ifdef DEBUG 397 qprintf("globexp2:", patbuf); 398 #endif 399 rv = globexp1(patbuf, pglob, limit); 400 if (rv) 401 return (rv); 402 403 /* move after the comma, to the next string */ 404 pl = pm + 1; 405 } 406 break; 407 408 default: 409 break; 410 } 411 return (0); 412 } 413 414 415 416 /* 417 * expand tilde from the passwd file. 418 */ 419 static const Char * 420 globtilde(const Char *pattern, Char *patbuf, size_t patbuf_len, glob_t *pglob) 421 { 422 struct passwd *pwd; 423 char *h, *sc; 424 const Char *p; 425 Char *b, *eb; 426 wchar_t wc; 427 wchar_t wbuf[MAXPATHLEN]; 428 wchar_t *wbufend, *dc; 429 size_t clen; 430 mbstate_t mbs; 431 int too_long; 432 433 if (*pattern != TILDE || !(pglob->gl_flags & GLOB_TILDE)) 434 return (pattern); 435 436 /* 437 * Copy up to the end of the string or / 438 */ 439 eb = &patbuf[patbuf_len - 1]; 440 for (p = pattern + 1, b = patbuf; 441 b < eb && *p != EOS && UNPROT(*p) != SEP; *b++ = *p++) 442 continue; 443 444 if (*p != EOS && UNPROT(*p) != SEP) 445 return (NULL); 446 447 *b = EOS; 448 h = NULL; 449 450 if (patbuf[0] == EOS) { 451 /* 452 * handle a plain ~ or ~/ by expanding $HOME first (iff 453 * we're not running setuid or setgid) and then trying 454 * the password file 455 */ 456 if (issetugid() != 0 || 457 (h = getenv("HOME")) == NULL) { 458 if (((h = getlogin()) != NULL && 459 (pwd = getpwnam(h)) != NULL) || 460 (pwd = getpwuid(getuid())) != NULL) 461 h = pwd->pw_dir; 462 else 463 return (pattern); 464 } 465 } 466 else { 467 /* 468 * Expand a ~user 469 */ 470 if (g_Ctoc(patbuf, (char *)wbuf, sizeof(wbuf))) 471 return (NULL); 472 if ((pwd = getpwnam((char *)wbuf)) == NULL) 473 return (pattern); 474 else 475 h = pwd->pw_dir; 476 } 477 478 /* Copy the home directory */ 479 dc = wbuf; 480 sc = h; 481 wbufend = wbuf + MAXPATHLEN - 1; 482 too_long = 1; 483 memset(&mbs, 0, sizeof(mbs)); 484 while (dc <= wbufend) { 485 clen = mbrtowc(&wc, sc, MB_LEN_MAX, &mbs); 486 if (clen == (size_t)-1 || clen == (size_t)-2) { 487 /* XXX See initial comment #2. */ 488 wc = (unsigned char)*sc; 489 clen = 1; 490 memset(&mbs, 0, sizeof(mbs)); 491 } 492 if ((*dc++ = wc) == EOS) { 493 too_long = 0; 494 break; 495 } 496 sc += clen; 497 } 498 if (too_long) 499 return (NULL); 500 501 dc = wbuf; 502 for (b = patbuf; b < eb && *dc != EOS; *b++ = *dc++ | M_PROTECT) 503 continue; 504 if (*dc != EOS) 505 return (NULL); 506 507 /* Append the rest of the pattern */ 508 if (*p != EOS) { 509 too_long = 1; 510 while (b <= eb) { 511 if ((*b++ = *p++) == EOS) { 512 too_long = 0; 513 break; 514 } 515 } 516 if (too_long) 517 return (NULL); 518 } else 519 *b = EOS; 520 521 return (patbuf); 522 } 523 524 525 /* 526 * The main glob() routine: compiles the pattern (optionally processing 527 * quotes), calls glob1() to do the real pattern matching, and finally 528 * sorts the list (unless unsorted operation is requested). Returns 0 529 * if things went well, nonzero if errors occurred. 530 */ 531 static int 532 glob0(const Char *pattern, glob_t *pglob, struct glob_limit *limit, 533 const char *origpat) { 534 const Char *qpatnext; 535 int err; 536 size_t oldpathc; 537 Char *bufnext, c, patbuf[MAXPATHLEN]; 538 539 qpatnext = globtilde(pattern, patbuf, MAXPATHLEN, pglob); 540 if (qpatnext == NULL) { 541 errno = 0; 542 return (GLOB_NOSPACE); 543 } 544 oldpathc = pglob->gl_pathc; 545 bufnext = patbuf; 546 547 /* We don't need to check for buffer overflow any more. */ 548 while ((c = *qpatnext++) != EOS) { 549 switch (c) { 550 case LBRACKET: 551 c = *qpatnext; 552 if (c == NOT) 553 ++qpatnext; 554 if (*qpatnext == EOS || 555 g_strchr(qpatnext+1, RBRACKET) == NULL) { 556 *bufnext++ = LBRACKET; 557 if (c == NOT) 558 --qpatnext; 559 break; 560 } 561 *bufnext++ = M_SET; 562 if (c == NOT) 563 *bufnext++ = M_NOT; 564 c = *qpatnext++; 565 do { 566 *bufnext++ = CHAR(c); 567 if (*qpatnext == RANGE && 568 (c = qpatnext[1]) != RBRACKET) { 569 *bufnext++ = M_RNG; 570 *bufnext++ = CHAR(c); 571 qpatnext += 2; 572 } 573 } while ((c = *qpatnext++) != RBRACKET); 574 pglob->gl_flags |= GLOB_MAGCHAR; 575 *bufnext++ = M_END; 576 break; 577 case QUESTION: 578 pglob->gl_flags |= GLOB_MAGCHAR; 579 *bufnext++ = M_ONE; 580 break; 581 case STAR: 582 pglob->gl_flags |= GLOB_MAGCHAR; 583 /* collapse adjacent stars to one, 584 * to avoid exponential behavior 585 */ 586 if (bufnext == patbuf || bufnext[-1] != M_ALL) 587 *bufnext++ = M_ALL; 588 break; 589 default: 590 *bufnext++ = CHAR(c); 591 break; 592 } 593 } 594 *bufnext = EOS; 595 #ifdef DEBUG 596 qprintf("glob0:", patbuf); 597 #endif 598 599 if ((err = glob1(patbuf, pglob, limit)) != 0) 600 return(err); 601 602 if (origpat != NULL) 603 return (globfinal(pglob, limit, oldpathc, origpat)); 604 605 return (0); 606 } 607 608 static int 609 globfinal(glob_t *pglob, struct glob_limit *limit, size_t oldpathc, 610 const char *origpat) { 611 /* 612 * If there was no match we are going to append the origpat 613 * if GLOB_NOCHECK was specified or if GLOB_NOMAGIC was specified 614 * and the origpat did not contain any magic characters 615 * GLOB_NOMAGIC is there just for compatibility with csh. 616 */ 617 if (pglob->gl_pathc == oldpathc) { 618 if ((pglob->gl_flags & GLOB_NOCHECK) || 619 ((pglob->gl_flags & GLOB_NOMAGIC) && 620 !(pglob->gl_flags & GLOB_MAGCHAR))) 621 return (globextend(NULL, pglob, limit, origpat)); 622 else 623 return (GLOB_NOMATCH); 624 } 625 if (!(pglob->gl_flags & GLOB_NOSORT)) 626 qsort(pglob->gl_pathv + pglob->gl_offs + oldpathc, 627 pglob->gl_pathc - oldpathc, sizeof(char *), compare); 628 629 return (0); 630 } 631 632 static int 633 compare(const void *p, const void *q) 634 { 635 return (strcoll(*(char **)p, *(char **)q)); 636 } 637 638 static int 639 glob1(Char *pattern, glob_t *pglob, struct glob_limit *limit) 640 { 641 Char pathbuf[MAXPATHLEN]; 642 643 /* A null pathname is invalid -- POSIX 1003.1 sect. 2.4. */ 644 if (*pattern == EOS) 645 return (0); 646 return (glob2(pathbuf, pathbuf, pathbuf + MAXPATHLEN - 1, 647 pattern, pglob, limit)); 648 } 649 650 /* 651 * The functions glob2 and glob3 are mutually recursive; there is one level 652 * of recursion for each segment in the pattern that contains one or more 653 * meta characters. 654 */ 655 static int 656 glob2(Char *pathbuf, Char *pathend, Char *pathend_last, Char *pattern, 657 glob_t *pglob, struct glob_limit *limit) 658 { 659 struct stat sb; 660 Char *p, *q; 661 int anymeta; 662 663 /* 664 * Loop over pattern segments until end of pattern or until 665 * segment with meta character found. 666 */ 667 for (anymeta = 0;;) { 668 if (*pattern == EOS) { /* End of pattern? */ 669 *pathend = EOS; 670 if (g_lstat(pathbuf, &sb, pglob)) 671 return (0); 672 673 if ((pglob->gl_flags & GLOB_LIMIT) && 674 limit->l_stat_cnt++ >= GLOB_LIMIT_STAT) { 675 errno = 0; 676 return (GLOB_NOSPACE); 677 } 678 if ((pglob->gl_flags & GLOB_MARK) && 679 UNPROT(pathend[-1]) != SEP && 680 (S_ISDIR(sb.st_mode) || 681 (S_ISLNK(sb.st_mode) && 682 g_stat(pathbuf, &sb, pglob) == 0 && 683 S_ISDIR(sb.st_mode)))) { 684 if (pathend + 1 > pathend_last) { 685 errno = 0; 686 return (GLOB_NOSPACE); 687 } 688 *pathend++ = SEP; 689 *pathend = EOS; 690 } 691 ++pglob->gl_matchc; 692 return (globextend(pathbuf, pglob, limit, NULL)); 693 } 694 695 /* Find end of next segment, copy tentatively to pathend. */ 696 q = pathend; 697 p = pattern; 698 while (*p != EOS && UNPROT(*p) != SEP) { 699 if (ismeta(*p)) 700 anymeta = 1; 701 if (q + 1 > pathend_last) { 702 errno = 0; 703 return (GLOB_NOSPACE); 704 } 705 *q++ = *p++; 706 } 707 708 if (!anymeta) { /* No expansion, do next segment. */ 709 pathend = q; 710 pattern = p; 711 while (UNPROT(*pattern) == SEP) { 712 if (pathend + 1 > pathend_last) { 713 errno = 0; 714 return (GLOB_NOSPACE); 715 } 716 *pathend++ = *pattern++; 717 } 718 } else /* Need expansion, recurse. */ 719 return (glob3(pathbuf, pathend, pathend_last, pattern, 720 p, pglob, limit)); 721 } 722 /* NOTREACHED */ 723 } 724 725 static int 726 glob3(Char *pathbuf, Char *pathend, Char *pathend_last, 727 Char *pattern, Char *restpattern, 728 glob_t *pglob, struct glob_limit *limit) 729 { 730 struct dirent *dp; 731 DIR *dirp; 732 int err, too_long, saverrno; 733 char buf[MAXPATHLEN + MB_LEN_MAX - 1]; 734 735 struct dirent *(*readdirfunc)(DIR *); 736 737 if (pathend > pathend_last) { 738 errno = 0; 739 return (GLOB_NOSPACE); 740 } 741 *pathend = EOS; 742 if (pglob->gl_errfunc != NULL && 743 g_Ctoc(pathbuf, buf, sizeof(buf))) { 744 errno = 0; 745 return (GLOB_NOSPACE); 746 } 747 748 errno = 0; 749 if ((dirp = g_opendir(pathbuf, pglob)) == NULL) { 750 if (errno == ENOENT || errno == ENOTDIR) 751 return (0); 752 if ((pglob->gl_errfunc != NULL && 753 pglob->gl_errfunc(buf, errno)) || 754 (pglob->gl_flags & GLOB_ERR)) 755 return (GLOB_ABORTED); 756 return (0); 757 } 758 759 err = 0; 760 761 /* pglob->gl_readdir takes a void *, fix this manually */ 762 if (pglob->gl_flags & GLOB_ALTDIRFUNC) 763 readdirfunc = (struct dirent *(*)(DIR *))pglob->gl_readdir; 764 else 765 readdirfunc = readdir; 766 767 errno = 0; 768 /* Search directory for matching names. */ 769 while ((dp = (*readdirfunc)(dirp)) != NULL) { 770 char *sc; 771 Char *dc; 772 wchar_t wc; 773 size_t clen; 774 mbstate_t mbs; 775 776 if ((pglob->gl_flags & GLOB_LIMIT) && 777 limit->l_readdir_cnt++ >= GLOB_LIMIT_READDIR) { 778 errno = 0; 779 err = GLOB_NOSPACE; 780 break; 781 } 782 783 /* Initial DOT must be matched literally. */ 784 if (dp->d_name[0] == '.' && UNPROT(*pattern) != DOT) { 785 errno = 0; 786 continue; 787 } 788 memset(&mbs, 0, sizeof(mbs)); 789 dc = pathend; 790 sc = dp->d_name; 791 too_long = 1; 792 while (dc <= pathend_last) { 793 clen = mbrtowc(&wc, sc, MB_LEN_MAX, &mbs); 794 if (clen == (size_t)-1 || clen == (size_t)-2) { 795 /* XXX See initial comment #2. */ 796 wc = (unsigned char)*sc; 797 clen = 1; 798 memset(&mbs, 0, sizeof(mbs)); 799 } 800 if ((*dc++ = wc) == EOS) { 801 too_long = 0; 802 break; 803 } 804 sc += clen; 805 } 806 if (too_long || !match(pathend, pattern, restpattern)) { 807 *pathend = EOS; 808 errno = 0; 809 continue; 810 } 811 err = glob2(pathbuf, --dc, pathend_last, restpattern, 812 pglob, limit); 813 if (err) 814 break; 815 errno = 0; 816 } 817 818 saverrno = errno; 819 if (pglob->gl_flags & GLOB_ALTDIRFUNC) 820 (*pglob->gl_closedir)(dirp); 821 else 822 closedir(dirp); 823 errno = saverrno; 824 825 if (err) 826 return (err); 827 828 if (dp == NULL && errno != 0 && ((pglob->gl_errfunc != NULL && 829 pglob->gl_errfunc(buf, errno)) || (pglob->gl_flags & GLOB_ERR))) 830 return (GLOB_ABORTED); 831 832 return (0); 833 } 834 835 836 /* 837 * Extend the gl_pathv member of a glob_t structure to accommodate a new item, 838 * add the new item, and update gl_pathc. 839 * 840 * This assumes the BSD realloc, which only copies the block when its size 841 * crosses a power-of-two boundary; for v7 realloc, this would cause quadratic 842 * behavior. 843 * 844 * Return 0 if new item added, error code if memory couldn't be allocated. 845 * 846 * Invariant of the glob_t structure: 847 * Either gl_pathc is zero and gl_pathv is NULL; or gl_pathc > 0 and 848 * gl_pathv points to (gl_offs + gl_pathc + 1) items. 849 */ 850 static int 851 globextend(const Char *path, glob_t *pglob, struct glob_limit *limit, 852 const char *origpat) 853 { 854 char **pathv; 855 size_t i, newsize, len; 856 char *copy; 857 const Char *p; 858 859 if ((pglob->gl_flags & GLOB_LIMIT) && 860 pglob->gl_matchc > limit->l_path_lim) { 861 errno = 0; 862 return (GLOB_NOSPACE); 863 } 864 865 newsize = sizeof(*pathv) * (2 + pglob->gl_pathc + pglob->gl_offs); 866 /* realloc(NULL, newsize) is equivalent to malloc(newsize). */ 867 pathv = realloc((void *)pglob->gl_pathv, newsize); 868 if (pathv == NULL) 869 return (GLOB_NOSPACE); 870 871 if (pglob->gl_pathv == NULL && pglob->gl_offs > 0) { 872 /* first time around -- clear initial gl_offs items */ 873 pathv += pglob->gl_offs; 874 for (i = pglob->gl_offs + 1; --i > 0; ) 875 *--pathv = NULL; 876 } 877 pglob->gl_pathv = pathv; 878 879 if (origpat != NULL) 880 copy = strdup(origpat); 881 else { 882 for (p = path; *p++ != EOS;) 883 continue; 884 len = MB_CUR_MAX * (size_t)(p - path); /* XXX overallocation */ 885 if ((copy = malloc(len)) != NULL) { 886 if (g_Ctoc(path, copy, len)) { 887 free(copy); 888 errno = 0; 889 return (GLOB_NOSPACE); 890 } 891 } 892 } 893 if (copy != NULL) { 894 limit->l_string_cnt += strlen(copy) + 1; 895 if ((pglob->gl_flags & GLOB_LIMIT) && 896 limit->l_string_cnt >= GLOB_LIMIT_STRING) { 897 free(copy); 898 errno = 0; 899 return (GLOB_NOSPACE); 900 } 901 pathv[pglob->gl_offs + pglob->gl_pathc++] = copy; 902 } 903 pathv[pglob->gl_offs + pglob->gl_pathc] = NULL; 904 return (copy == NULL ? GLOB_NOSPACE : 0); 905 } 906 907 /* 908 * pattern matching function for filenames. Each occurrence of the * 909 * pattern causes a recursion level. 910 */ 911 static int 912 match(Char *name, Char *pat, Char *patend) 913 { 914 int ok, negate_range; 915 Char c, k; 916 struct xlocale_collate *table = 917 (struct xlocale_collate*)__get_locale()->components[XLC_COLLATE]; 918 919 while (pat < patend) { 920 c = *pat++; 921 switch (c & M_MASK) { 922 case M_ALL: 923 if (pat == patend) 924 return (1); 925 do 926 if (match(name, pat, patend)) 927 return (1); 928 while (*name++ != EOS); 929 return (0); 930 case M_ONE: 931 if (*name++ == EOS) 932 return (0); 933 break; 934 case M_SET: 935 ok = 0; 936 if ((k = *name++) == EOS) 937 return (0); 938 if ((negate_range = ((*pat & M_MASK) == M_NOT)) != 0) 939 ++pat; 940 while (((c = *pat++) & M_MASK) != M_END) 941 if ((*pat & M_MASK) == M_RNG) { 942 if (table->__collate_load_error ? 943 CHAR(c) <= CHAR(k) && 944 CHAR(k) <= CHAR(pat[1]) : 945 __wcollate_range_cmp(CHAR(c), 946 CHAR(k)) <= 0 && 947 __wcollate_range_cmp(CHAR(k), 948 CHAR(pat[1])) <= 0) 949 ok = 1; 950 pat += 2; 951 } else if (c == k) 952 ok = 1; 953 if (ok == negate_range) 954 return (0); 955 break; 956 default: 957 if (*name++ != c) 958 return (0); 959 break; 960 } 961 } 962 return (*name == EOS); 963 } 964 965 /* Free allocated data belonging to a glob_t structure. */ 966 void 967 globfree(glob_t *pglob) 968 { 969 size_t i; 970 char **pp; 971 972 if (pglob->gl_pathv != NULL) { 973 pp = pglob->gl_pathv + pglob->gl_offs; 974 for (i = pglob->gl_pathc; i--; ++pp) 975 if (*pp) 976 free(*pp); 977 free(pglob->gl_pathv); 978 pglob->gl_pathv = NULL; 979 } 980 } 981 982 static DIR * 983 g_opendir(Char *str, glob_t *pglob) 984 { 985 char buf[MAXPATHLEN + MB_LEN_MAX - 1]; 986 987 if (*str == EOS) 988 strcpy(buf, "."); 989 else { 990 if (g_Ctoc(str, buf, sizeof(buf))) { 991 errno = ENAMETOOLONG; 992 return (NULL); 993 } 994 } 995 996 if (pglob->gl_flags & GLOB_ALTDIRFUNC) 997 return ((*pglob->gl_opendir)(buf)); 998 999 return (opendir(buf)); 1000 } 1001 1002 static int 1003 g_lstat(Char *fn, struct stat *sb, glob_t *pglob) 1004 { 1005 char buf[MAXPATHLEN + MB_LEN_MAX - 1]; 1006 1007 if (g_Ctoc(fn, buf, sizeof(buf))) { 1008 errno = ENAMETOOLONG; 1009 return (-1); 1010 } 1011 if (pglob->gl_flags & GLOB_ALTDIRFUNC) 1012 return((*pglob->gl_lstat)(buf, sb)); 1013 return (lstat(buf, sb)); 1014 } 1015 1016 static int 1017 g_stat(Char *fn, struct stat *sb, glob_t *pglob) 1018 { 1019 char buf[MAXPATHLEN + MB_LEN_MAX - 1]; 1020 1021 if (g_Ctoc(fn, buf, sizeof(buf))) { 1022 errno = ENAMETOOLONG; 1023 return (-1); 1024 } 1025 if (pglob->gl_flags & GLOB_ALTDIRFUNC) 1026 return ((*pglob->gl_stat)(buf, sb)); 1027 return (stat(buf, sb)); 1028 } 1029 1030 static const Char * 1031 g_strchr(const Char *str, wchar_t ch) 1032 { 1033 1034 do { 1035 if (*str == ch) 1036 return (str); 1037 } while (*str++); 1038 return (NULL); 1039 } 1040 1041 static int 1042 g_Ctoc(const Char *str, char *buf, size_t len) 1043 { 1044 mbstate_t mbs; 1045 size_t clen; 1046 1047 memset(&mbs, 0, sizeof(mbs)); 1048 while (len >= MB_CUR_MAX) { 1049 clen = wcrtomb(buf, CHAR(*str), &mbs); 1050 if (clen == (size_t)-1) { 1051 /* XXX See initial comment #2. */ 1052 *buf = (char)CHAR(*str); 1053 clen = 1; 1054 memset(&mbs, 0, sizeof(mbs)); 1055 } 1056 if (CHAR(*str) == EOS) 1057 return (0); 1058 str++; 1059 buf += clen; 1060 len -= clen; 1061 } 1062 return (1); 1063 } 1064 1065 #ifdef DEBUG 1066 static void 1067 qprintf(const char *str, Char *s) 1068 { 1069 Char *p; 1070 1071 (void)printf("%s\n", str); 1072 if (s != NULL) { 1073 for (p = s; *p != EOS; p++) 1074 (void)printf("%c", (char)CHAR(*p)); 1075 (void)printf("\n"); 1076 for (p = s; *p != EOS; p++) 1077 (void)printf("%c", (isprot(*p) ? '\\' : ' ')); 1078 (void)printf("\n"); 1079 for (p = s; *p != EOS; p++) 1080 (void)printf("%c", (ismeta(*p) ? '_' : ' ')); 1081 (void)printf("\n"); 1082 } 1083 } 1084 #endif 1085