glob.c
上传用户:zibowangxu
上传日期:2007-01-04
资源大小:331k
文件大小:26k
源码类别:

Ftp客户端

开发平台:

Unix_Linux

  1. /****************************************************************************  
  2.  
  3.   Copyright (c) 1999 WU-FTPD Development Group.  
  4.   All rights reserved.
  5.   
  6.   Portions Copyright (c) 1980, 1985, 1988, 1989, 1990, 1991, 1993, 1994
  7.     The Regents of the University of California.
  8.   Portions Copyright (c) 1993, 1994 Washington University in Saint Louis.
  9.   Portions Copyright (c) 1996, 1998 Berkeley Software Design, Inc.
  10.   Portions Copyright (c) 1989 Massachusetts Institute of Technology.
  11.   Portions Copyright (c) 1998 Sendmail, Inc.
  12.   Portions Copyright (c) 1983, 1995, 1996, 1997 Eric P.  Allman.
  13.   Portions Copyright (c) 1997 by Stan Barber.
  14.   Portions Copyright (c) 1997 by Kent Landfield.
  15.   Portions Copyright (c) 1991, 1992, 1993, 1994, 1995, 1996, 1997
  16.     Free Software Foundation, Inc.  
  17.  
  18.   Use and distribution of this software and its source code are governed 
  19.   by the terms and conditions of the WU-FTPD Software License ("LICENSE").
  20.  
  21.   If you did not receive a copy of the license, it may be obtained online
  22.   at http://www.wu-ftpd.org/license.html.
  23.  
  24.   $Id: glob.c,v 1.8 1999/09/21 04:17:06 wuftpd Exp $
  25.  
  26. ****************************************************************************/
  27. /* AIX requires this to be the first thing in the file.  */
  28. #include "../config.h"
  29. #include "../src/config.h"
  30. #if defined _AIX && !defined __GNUC__
  31. #pragma alloca
  32. #endif
  33. #ifdef HAVE_CONFIG_H
  34. #include <config.h>
  35. #endif
  36. /* Enable GNU extensions in glob.h.  */
  37. #ifndef _GNU_SOURCE
  38. #define _GNU_SOURCE 1
  39. #endif
  40. #include <errno.h>
  41. #include <sys/types.h>
  42. #include <sys/stat.h>
  43. /* Outcomment the following line for production quality code.  */
  44. /* #define NDEBUG 1 */
  45. #include <assert.h>
  46. #include <stdio.h> /* Needed on stupid SunOS for assert.  */
  47. #include <unistd.h> /* Needed on stupid SunOS for getlogin. */
  48. /* Comment out all this code if we are using the GNU C Library, and are not
  49.    actually compiling the library itself.  This code is part of the GNU C
  50.    Library, but also included in many other GNU distributions.  Compiling
  51.    and linking in this code is a waste when using the GNU C library
  52.    (especially if it is a shared library).  Rather than having every GNU
  53.    program understand `configure --with-gnu-libc' and omit the object files,
  54.    it is simpler to just do this in the source for each such file.  */
  55. #define GLOB_INTERFACE_VERSION 1
  56. #if !defined _LIBC && defined __GNU_LIBRARY__ && __GNU_LIBRARY__ > 1
  57. #include <gnu-versions.h>
  58. #if _GNU_GLOB_INTERFACE_VERSION == GLOB_INTERFACE_VERSION
  59. #define ELIDE_CODE
  60. #endif
  61. #endif
  62. #ifndef ELIDE_CODE
  63. #if defined STDC_HEADERS || defined __GNU_LIBRARY__
  64. #include <stddef.h>
  65. #endif
  66. #if defined HAVE_UNISTD_H || defined _LIBC
  67. #include <unistd.h>
  68. #ifndef POSIX
  69. #ifdef _POSIX_VERSION
  70. #define POSIX
  71. #endif
  72. #endif
  73. #endif
  74. #if !defined _AMIGA && !defined VMS && !defined WINDOWS32
  75. #include <pwd.h>
  76. #endif
  77. #if !defined __GNU_LIBRARY__ && !defined STDC_HEADERS
  78. extern int errno;
  79. #endif
  80. #ifndef __set_errno
  81. #define __set_errno(val) errno = (val)
  82. #endif
  83. #ifndef NULL
  84. #define NULL 0
  85. #endif
  86. #if defined HAVE_DIRENT_H || defined __GNU_LIBRARY__
  87. #include <dirent.h>
  88. #define NAMLEN(dirent) strlen((dirent)->d_name)
  89. #else
  90. #define dirent direct
  91. #define NAMLEN(dirent) (dirent)->d_namlen
  92. #ifdef HAVE_SYS_NDIR_H
  93. #include <sys/ndir.h>
  94. #endif
  95. #ifdef HAVE_SYS_DIR_H
  96. #include <sys/dir.h>
  97. #endif
  98. #ifdef HAVE_NDIR_H
  99. #include <ndir.h>
  100. #endif
  101. #ifdef HAVE_VMSDIR_H
  102. #include "vmsdir.h"
  103. #endif /* HAVE_VMSDIR_H */
  104. #endif
  105. /* In GNU systems, <dirent.h> defines this macro for us.  */
  106. #ifdef _D_NAMLEN
  107. #undef NAMLEN
  108. #define NAMLEN(d) _D_NAMLEN(d)
  109. #endif
  110. /* When used in the GNU libc the symbol _DIRENT_HAVE_D_TYPE is available
  111.    if the `d_type' member for `struct dirent' is available.  */
  112. #ifdef _DIRENT_HAVE_D_TYPE
  113. #define HAVE_D_TYPE 1
  114. #endif
  115. #if (defined POSIX || defined WINDOWS32) && !defined __GNU_LIBRARY__
  116. /* Posix does not require that the d_ino field be present, and some
  117.    systems do not provide it. */
  118. #define REAL_DIR_ENTRY(dp) 1
  119. #else
  120. #define REAL_DIR_ENTRY(dp) (dp->d_ino != 0)
  121. #endif /* POSIX */
  122. #if sparc && !__svr4__
  123. #include <string.h>
  124. #include <dirent.h>
  125. #endif
  126. #if defined STDC_HEADERS || defined __GNU_LIBRARY__
  127. #include <stdlib.h>
  128. #include <string.h>
  129. #define ANSI_STRING
  130. #else /* No standard headers.  */
  131. extern char *getenv();
  132. #ifdef HAVE_STRING_H
  133. #include <string.h>
  134. #define ANSI_STRING
  135. #else
  136. #include <strings.h>
  137. #endif
  138. #ifdef HAVE_MEMORY_H
  139. #include <memory.h>
  140. #endif
  141. #endif /* Standard headers.  */
  142. #ifndef HAVE_MEMCPY
  143. #define memcpy(d, s, n) bcopy ((s), (d), (n))
  144. #endif
  145. #ifndef ANSI_STRING
  146. #ifndef bzero
  147. extern void bzero();
  148. #endif
  149. #ifndef bcopy
  150. extern void bcopy();
  151. #endif
  152. #define strrchr rindex
  153. /* memset is only used for zero here, but let's be paranoid.  */
  154. #define memset(s, better_be_zero, n) 
  155.   (((better_be_zero) == 0 ? (bzero((s), (n)), 0) : (abort(), 0)))
  156. #endif /* Not ANSI_STRING.  */
  157. #if !defined HAVE_STRCOLL && !defined _LIBC
  158. #define strcoll strcmp
  159. #endif
  160. #if !defined HAVE_MEMPCPY && __GLIBC__ - 0 == 2 && __GLIBC_MINOR__ >= 1
  161. #define HAVE_MEMPCPY 1
  162. #define mempcpy(Dest, Src, Len) __mempcpy (Dest, Src, Len)
  163. #endif
  164. #ifndef __GNU_LIBRARY__
  165. #ifdef __GNUC__
  166. __inline
  167. #endif
  168. #ifndef __SASC
  169. #ifdef WINDOWS32
  170. static void *
  171. #else
  172. static char *
  173. #endif
  174.      my_realloc(p, n)
  175.      char *p;
  176.      unsigned int n;
  177. {
  178.     /* These casts are the for sake of the broken Ultrix compiler,
  179.        which warns of illegal pointer combinations otherwise.  */
  180.     if (p == NULL)
  181. return (char *) malloc(n);
  182.     return (char *) realloc(p, n);
  183. }
  184. #define realloc my_realloc
  185. #endif /* __SASC */
  186. #endif /* __GNU_LIBRARY__ */
  187. #if !defined __alloca && !defined __GNU_LIBRARY__
  188. #ifdef __GNUC__
  189. #undef alloca
  190. #define alloca(n) __builtin_alloca (n)
  191. #else /* Not GCC.  */
  192. #ifdef HAVE_ALLOCA_H
  193. #include <alloca.h>
  194. #else /* Not HAVE_ALLOCA_H.  */
  195. #ifndef _AIX
  196. #ifdef WINDOWS32
  197. #include <malloc.h>
  198. #else
  199. extern char *alloca();
  200. #endif /* WINDOWS32 */
  201. #endif /* Not _AIX.  */
  202. #endif /* sparc or HAVE_ALLOCA_H.  */
  203. #endif /* GCC.  */
  204. #define __alloca alloca
  205. #endif
  206. #ifndef __GNU_LIBRARY__
  207. #define __stat stat
  208. #ifdef STAT_MACROS_BROKEN
  209. #undef S_ISDIR
  210. #endif
  211. #ifndef S_ISDIR
  212. #define S_ISDIR(mode) (((mode) & S_IFMT) == S_IFDIR)
  213. #endif
  214. #endif
  215. #if !(defined STDC_HEADERS || defined __GNU_LIBRARY__)
  216. #undef size_t
  217. #define size_t unsigned int
  218. #endif
  219. /* Some system header files erroneously define these.
  220.    We want our own definitions from <fnmatch.h> to take precedence.  */
  221. #undef FNM_CASEFOLD
  222. #undef FNM_NOESCAPE
  223. #undef FNM_PERIOD
  224. #include "../src/wu_fnmatch.h"
  225. /* Some system header files erroneously define these.
  226.    We want our own definitions from <glob.h> to take precedence.  */
  227. #undef GLOB_ERR
  228. #undef GLOB_MARK
  229. #undef GLOB_NOSORT
  230. #undef GLOB_DOOFFS
  231. #undef GLOB_NOCHECK
  232. #undef GLOB_APPEND
  233. #undef GLOB_NOESCAPE
  234. #undef GLOB_PERIOD
  235. #include "wuftpd_glob.h"
  236. static
  237. #if __GNUC__ - 0 >= 2
  238.        inline
  239. #endif
  240. const char *next_brace_sub __P((const char *begin));
  241. static int glob_in_dir __P((const char *pattern, const char *directory,
  242.     int flags,
  243.     int         (*errfunc) __P((const char *, int)),
  244.     glob_t * pglob));
  245. static int prefix_array __P((const char *prefix, char **array, size_t n));
  246. static int collated_compare __P((const __ptr_t, const __ptr_t));
  247. /* Find the end of the sub-pattern in a brace expression.  We define
  248.    this as an inline function if the compiler permits.  */
  249. static
  250. #if __GNUC__ - 0 >= 2
  251.        inline
  252. #endif
  253. const char *
  254.      next_brace_sub(begin)
  255.      const char *begin;
  256. {
  257.     unsigned int depth = 0;
  258.     const char *cp = begin;
  259.     while (1) {
  260. if (depth == 0) {
  261.     if (*cp != ',' && *cp != '}' && *cp != '') {
  262. if (*cp == '{')
  263.     ++depth;
  264. ++cp;
  265. continue;
  266.     }
  267. }
  268. else {
  269.     while (*cp != '' && (*cp != '}' || depth > 0)) {
  270. if (*cp == '}')
  271.     --depth;
  272. ++cp;
  273.     }
  274.     if (*cp == '')
  275. /* An incorrectly terminated brace expression.  */
  276. return NULL;
  277.     continue;
  278. }
  279. break;
  280.     }
  281.     return cp;
  282. }
  283. /* Do glob searching for PATTERN, placing results in PGLOB.
  284.    The bits defined above may be set in FLAGS.
  285.    If a directory cannot be opened or read and ERRFUNC is not nil,
  286.    it is called with the pathname that caused the error, and the
  287.    `errno' value from the failing call; if it returns non-zero
  288.    `glob' returns GLOB_ABORTED; if it returns zero, the error is ignored.
  289.    If memory cannot be allocated for PGLOB, GLOB_NOSPACE is returned.
  290.    Otherwise, `glob' returns zero.  */
  291. int glob(pattern, flags, errfunc, pglob)
  292.      const char *pattern;
  293.      int flags;
  294.      int (*errfunc) __P((const char *, int));
  295.      glob_t *pglob;
  296. {
  297.     const char *filename;
  298.     char *dirname;
  299.     size_t dirlen;
  300.     int status;
  301.     int oldcount;
  302.     if (pattern == NULL || pglob == NULL || (flags & ~__GLOB_FLAGS) != 0) {
  303. __set_errno(EINVAL);
  304. return -1;
  305.     }
  306.     if (flags & GLOB_BRACE) {
  307. const char *begin = strchr(pattern, '{');
  308. if (begin != NULL) {
  309.     /* Allocate working buffer large enough for our work.  Note that
  310.        we have at least an opening and closing brace.  */
  311.     int firstc;
  312.     char *alt_start;
  313.     const char *p;
  314.     const char *next;
  315.     const char *rest;
  316.     size_t rest_len;
  317. #ifdef __GNUC__
  318.     char onealt[strlen(pattern) - 1];
  319. #else
  320.     char *onealt = (char *) malloc(strlen(pattern) - 1);
  321.     if (onealt == NULL) {
  322. if (!(flags & GLOB_APPEND))
  323.     globfree(pglob);
  324. return GLOB_NOSPACE;
  325.     }
  326. #endif
  327.     /* We know the prefix for all sub-patterns.  */
  328. #ifdef HAVE_MEMPCPY
  329.     alt_start = mempcpy(onealt, pattern, begin - pattern);
  330. #else
  331.     memcpy(onealt, pattern, begin - pattern);
  332.     alt_start = &onealt[begin - pattern];
  333. #endif
  334.     /* Find the first sub-pattern and at the same time find the
  335.        rest after the closing brace.  */
  336.     next = next_brace_sub(begin + 1);
  337.     if (next == NULL) {
  338. /* It is an illegal expression.  */
  339. #ifndef __GNUC__
  340. free(onealt);
  341. #endif
  342. return glob(pattern, flags & ~GLOB_BRACE, errfunc, pglob);
  343.     }
  344.     /* Now find the end of the whole brace expression.  */
  345.     rest = next;
  346.     while (*rest != '}') {
  347. rest = next_brace_sub(rest + 1);
  348. if (rest == NULL) {
  349.     /* It is an illegal expression.  */
  350. #ifndef __GNUC__
  351.     free(onealt);
  352. #endif
  353.     return glob(pattern, flags & ~GLOB_BRACE, errfunc, pglob);
  354. }
  355.     }
  356.     /* Please note that we now can be sure the brace expression
  357.        is well-formed.  */
  358.     rest_len = strlen(++rest) + 1;
  359.     /* We have a brace expression.  BEGIN points to the opening {,
  360.        NEXT points past the terminator of the first element, and END
  361.        points past the final }.  We will accumulate result names from
  362.        recursive runs for each brace alternative in the buffer using
  363.        GLOB_APPEND.  */
  364.     if (!(flags & GLOB_APPEND)) {
  365. /* This call is to set a new vector, so clear out the
  366.    vector so we can append to it.  */
  367. pglob->gl_pathc = 0;
  368. pglob->gl_pathv = NULL;
  369.     }
  370.     firstc = pglob->gl_pathc;
  371.     p = begin + 1;
  372.     while (1) {
  373. int result;
  374. /* Construct the new glob expression.  */
  375. #ifdef HAVE_MEMPCPY
  376. mempcpy(mempcpy(alt_start, p, next - p), rest, rest_len);
  377. #else
  378. memcpy(alt_start, p, next - p);
  379. memcpy(&alt_start[next - p], rest, rest_len);
  380. #endif
  381. result = glob(onealt,
  382.       ((flags & ~(GLOB_NOCHECK | GLOB_NOMAGIC))
  383.        | GLOB_APPEND), errfunc, pglob);
  384. /* If we got an error, return it.  */
  385. if (result && result != GLOB_NOMATCH) {
  386. #ifndef __GNUC__
  387.     free(onealt);
  388. #endif
  389.     if (!(flags & GLOB_APPEND))
  390. globfree(pglob);
  391.     return result;
  392. }
  393. if (*next == '}')
  394.     /* We saw the last entry.  */
  395.     break;
  396. p = next + 1;
  397. next = next_brace_sub(p);
  398. assert(next != NULL);
  399.     }
  400. #ifndef __GNUC__
  401.     free(onealt);
  402. #endif
  403.     if (pglob->gl_pathc != firstc)
  404. /* We found some entries.  */
  405. return 0;
  406.     else if (!(flags & (GLOB_NOCHECK | GLOB_NOMAGIC)))
  407. return GLOB_NOMATCH;
  408. }
  409.     }
  410.     /* Find the filename.  */
  411.     filename = strrchr(pattern, '/');
  412.     if (filename == NULL) {
  413. filename = pattern;
  414. #ifdef _AMIGA
  415. dirname = (char *) "";
  416. #else
  417. dirname = (char *) ".";
  418. #endif
  419. dirlen = 0;
  420.     }
  421.     else if (filename == pattern) {
  422. /* "/pattern".  */
  423. dirname = (char *) "/";
  424. dirlen = 1;
  425. ++filename;
  426.     }
  427.     else {
  428. dirlen = filename - pattern;
  429. dirname = (char *) __alloca(dirlen + 1);
  430. #ifdef HAVE_MEMPCPY
  431. *((char *) mempcpy(dirname, pattern, dirlen)) = '';
  432. #else
  433. memcpy(dirname, pattern, dirlen);
  434. dirname[dirlen] = '';
  435. #endif
  436. ++filename;
  437.     }
  438.     if (filename[0] == '' && dirlen > 1)
  439. /* "pattern/".  Expand "pattern", appending slashes.  */
  440.     {
  441. int val = glob(dirname, flags | GLOB_MARK, errfunc, pglob);
  442. if (val == 0)
  443.     pglob->gl_flags = (pglob->gl_flags & ~GLOB_MARK) | (flags & GLOB_MARK);
  444. return val;
  445.     }
  446.     if (!(flags & GLOB_APPEND)) {
  447. pglob->gl_pathc = 0;
  448. pglob->gl_pathv = NULL;
  449.     }
  450.     oldcount = pglob->gl_pathc;
  451. #ifndef VMS
  452.     if ((flags & GLOB_TILDE) && dirname[0] == '~') {
  453. if (dirname[1] == '' || dirname[1] == '/') {
  454.     /* Look up home directory.  */
  455.     char *home_dir = getenv("HOME");
  456. #ifdef _AMIGA
  457.     if (home_dir == NULL || home_dir[0] == '')
  458. home_dir = "SYS:";
  459. #else
  460. #ifdef WINDOWS32
  461.     if (home_dir == NULL || home_dir[0] == '')
  462. home_dir = "c:/users/default"; /* poor default */
  463. #else
  464.     if (home_dir == NULL || home_dir[0] == '') {
  465. int success;
  466. #if defined HAVE_GETLOGIN_R || defined _LIBC
  467. extern int getlogin_r __P((char *, size_t));
  468. size_t buflen = sysconf(_SC_LOGIN_NAME_MAX) + 1;
  469. char *name;
  470. if (buflen == 0)
  471.     /* `sysconf' does not support _SC_LOGIN_NAME_MAX.  Try
  472.        a moderate value.  */
  473.     buflen = 16;
  474. name = (char *) __alloca(buflen);
  475. success = getlogin_r(name, buflen) >= 0;
  476. #else
  477. /*            extern char *getlogin __P (); */
  478. char *name;
  479. success = (name = getlogin()) != NULL;
  480. #endif
  481. if (success) {
  482. #if defined HAVE_GETPWNAM_R || defined _LIBC
  483.     size_t pwbuflen = sysconf(_SC_GETPW_R_SIZE_MAX);
  484.     char *pwtmpbuf;
  485.     struct passwd pwbuf, *p;
  486.     pwtmpbuf = (char *) __alloca(pwbuflen);
  487.     success = (__getpwnam_r(name, &pwbuf, pwtmpbuf,
  488.     pwbuflen, &p) >= 0);
  489. #else
  490.     struct passwd *p = getpwnam(name);
  491.     success = p != NULL;
  492. #endif
  493.     if (success)
  494. home_dir = p->pw_dir;
  495. }
  496.     }
  497.     if (home_dir == NULL || home_dir[0] == '')
  498. home_dir = (char *) "~"; /* No luck.  */
  499. #endif /* WINDOWS32 */
  500. #endif
  501.     /* Now construct the full directory.  */
  502.     if (dirname[1] == '')
  503. dirname = home_dir;
  504.     else {
  505. char *newp;
  506. size_t home_len = strlen(home_dir);
  507. newp = (char *) __alloca(home_len + dirlen);
  508. #ifdef HAVE_MEMPCPY
  509. mempcpy(mempcpy(newp, home_dir, home_len),
  510. &dirname[1], dirlen);
  511. #else
  512. memcpy(newp, home_dir, home_len);
  513. memcpy(&newp[home_len], &dirname[1], dirlen);
  514. #endif
  515. dirname = newp;
  516.     }
  517. }
  518. #if !defined _AMIGA && !defined WINDOWS32
  519. else {
  520.     char *end_name = strchr(dirname, '/');
  521.     char *user_name;
  522.     char *home_dir;
  523.     if (end_name == NULL)
  524. user_name = dirname + 1;
  525.     else {
  526. user_name = (char *) __alloca(end_name - dirname);
  527. #ifdef HAVE_MEMPCPY
  528. *((char *) mempcpy(user_name, dirname + 1, end_name - dirname))
  529.     = '';
  530. #else
  531. memcpy(user_name, dirname + 1, end_name - dirname);
  532. user_name[end_name - dirname - 1] = '';
  533. #endif
  534.     }
  535.     /* Look up specific user's home directory.  */
  536.     {
  537. #if defined HAVE_GETPWNAM_R || defined _LIBC
  538. size_t buflen = sysconf(_SC_GETPW_R_SIZE_MAX);
  539. char *pwtmpbuf = (char *) __alloca(buflen);
  540. struct passwd pwbuf, *p;
  541. if (__getpwnam_r(user_name, &pwbuf, pwtmpbuf, buflen, &p) >= 0)
  542.     home_dir = p->pw_dir;
  543. else
  544.     home_dir = NULL;
  545. #else
  546. struct passwd *p = getpwnam(user_name);
  547. if (p != NULL)
  548.     home_dir = p->pw_dir;
  549. else
  550.     home_dir = NULL;
  551. #endif
  552.     }
  553.     /* If we found a home directory use this.  */
  554.     if (home_dir != NULL) {
  555. char *newp;
  556. size_t home_len = strlen(home_dir);
  557. size_t rest_len = end_name == NULL ? 0 : strlen(end_name);
  558. newp = (char *) __alloca(home_len + rest_len + 1);
  559. #ifdef HAVE_MEMPCPY
  560. *((char *) mempcpy(mempcpy(newp, home_dir, home_len),
  561.    end_name, rest_len)) = '';
  562. #else
  563. memcpy(newp, home_dir, home_len);
  564. memcpy(&newp[home_len], end_name, rest_len);
  565. newp[home_len + rest_len] = '';
  566. #endif
  567. dirname = newp;
  568.     }
  569. }
  570. #endif /* Not Amiga && not WINDOWS32.  */
  571.     }
  572. #endif /* Not VMS.  */
  573.     if (__glob_pattern_p(dirname, !(flags & GLOB_NOESCAPE))) {
  574. /* The directory name contains metacharacters, so we
  575.    have to glob for the directory, and then glob for
  576.    the pattern in each directory found.  */
  577. glob_t dirs;
  578. register int i;
  579. status = glob(dirname,
  580.       ((flags & (GLOB_ERR | GLOB_NOCHECK | GLOB_NOESCAPE))
  581.        | GLOB_NOSORT | GLOB_ONLYDIR),
  582.       errfunc, &dirs);
  583. if (status != 0)
  584.     return status;
  585. /* We have successfully globbed the preceding directory name.
  586.    For each name we found, call glob_in_dir on it and FILENAME,
  587.    appending the results to PGLOB.  */
  588. for (i = 0; i < dirs.gl_pathc; ++i) {
  589.     int oldcount;
  590.     oldcount = pglob->gl_pathc;
  591.     status = glob_in_dir(filename, dirs.gl_pathv[i],
  592.  ((flags | GLOB_APPEND)
  593.   & ~(GLOB_NOCHECK | GLOB_ERR)),
  594.  errfunc, pglob);
  595.     if (status == GLOB_NOMATCH)
  596. /* No matches in this directory.  Try the next.  */
  597. continue;
  598.     if (status != 0) {
  599. globfree(&dirs);
  600. globfree(pglob);
  601. return status;
  602.     }
  603.     /* Stick the directory on the front of each name.  */
  604.     if (prefix_array(dirs.gl_pathv[i],
  605.      &pglob->gl_pathv[oldcount],
  606.      pglob->gl_pathc - oldcount)) {
  607. globfree(&dirs);
  608. globfree(pglob);
  609. return GLOB_NOSPACE;
  610.     }
  611. }
  612. flags |= GLOB_MAGCHAR;
  613. if (pglob->gl_pathc == oldcount)
  614.     /* No matches.  */
  615.     if (flags & GLOB_NOCHECK) {
  616. size_t len = strlen(pattern) + 1;
  617. char *patcopy = (char *) malloc(len);
  618. if (patcopy == NULL)
  619.     return GLOB_NOSPACE;
  620. memcpy(patcopy, pattern, len);
  621. pglob->gl_pathv
  622.     = (char **) realloc(pglob->gl_pathv,
  623. (pglob->gl_pathc +
  624.  ((flags & GLOB_DOOFFS) ?
  625.   pglob->gl_offs : 0) +
  626.  1 + 1) *
  627. sizeof(char *));
  628. if (pglob->gl_pathv == NULL) {
  629.     free(patcopy);
  630.     return GLOB_NOSPACE;
  631. }
  632. if (flags & GLOB_DOOFFS)
  633.     while (pglob->gl_pathc < pglob->gl_offs)
  634. pglob->gl_pathv[pglob->gl_pathc++] = NULL;
  635. pglob->gl_pathv[pglob->gl_pathc++] = patcopy;
  636. pglob->gl_pathv[pglob->gl_pathc] = NULL;
  637. pglob->gl_flags = flags;
  638.     }
  639.     else
  640. return GLOB_NOMATCH;
  641.     }
  642.     else {
  643. status = glob_in_dir(filename, dirname, flags, errfunc, pglob);
  644. if (status != 0)
  645.     return status;
  646. if (dirlen > 0) {
  647.     /* Stick the directory on the front of each name.  */
  648.     if (prefix_array(dirname,
  649.      &pglob->gl_pathv[oldcount],
  650.      pglob->gl_pathc - oldcount)) {
  651. globfree(pglob);
  652. return GLOB_NOSPACE;
  653.     }
  654. }
  655.     }
  656.     if (flags & GLOB_MARK) {
  657. /* Append slashes to directory names.  */
  658. int i;
  659. struct stat st;
  660. for (i = oldcount; i < pglob->gl_pathc; ++i)
  661.     if (((flags & GLOB_ALTDIRFUNC) ?
  662.  (*pglob->gl_stat) (pglob->gl_pathv[i], &st) :
  663.  __stat(pglob->gl_pathv[i], &st)) == 0 &&
  664. S_ISDIR(st.st_mode)) {
  665. size_t len = strlen(pglob->gl_pathv[i]) + 2;
  666. char *new = realloc(pglob->gl_pathv[i], len);
  667. if (new == NULL) {
  668.     globfree(pglob);
  669.     return GLOB_NOSPACE;
  670. }
  671. strcpy(&new[len - 2], "/");
  672. pglob->gl_pathv[i] = new;
  673.     }
  674.     }
  675.     if (!(flags & GLOB_NOSORT))
  676. /* Sort the vector.  */
  677. qsort((__ptr_t) & pglob->gl_pathv[oldcount],
  678.       pglob->gl_pathc - oldcount,
  679.       sizeof(char *), collated_compare);
  680.     return 0;
  681. }
  682. /* Free storage allocated in PGLOB by a previous `glob' call.  */
  683. void globfree(pglob)
  684.      register glob_t *pglob;
  685. {
  686.     if (pglob->gl_pathv != NULL) {
  687. register int i;
  688. for (i = 0; i < pglob->gl_pathc; ++i)
  689.     if (pglob->gl_pathv[i] != NULL)
  690. free((__ptr_t) pglob->gl_pathv[i]);
  691. free((__ptr_t) pglob->gl_pathv);
  692.     }
  693. }
  694. /* Do a collated comparison of A and B.  */
  695. static int collated_compare(a, b)
  696.      const __ptr_t a;
  697.      const __ptr_t b;
  698. {
  699.     const char *const s1 = *(const char *const *const) a;
  700.     const char *const s2 = *(const char *const *const) b;
  701.     if (s1 == s2)
  702. return 0;
  703.     if (s1 == NULL)
  704. return 1;
  705.     if (s2 == NULL)
  706. return -1;
  707.     return strcoll(s1, s2);
  708. }
  709. /* Prepend DIRNAME to each of N members of ARRAY, replacing ARRAY's
  710.    elements in place.  Return nonzero if out of memory, zero if successful.
  711.    A slash is inserted between DIRNAME and each elt of ARRAY,
  712.    unless DIRNAME is just "/".  Each old element of ARRAY is freed.  */
  713. static int prefix_array(dirname, array, n)
  714.      const char *dirname;
  715.      char **array;
  716.      size_t n;
  717. {
  718.     register size_t i;
  719.     size_t dirlen = strlen(dirname);
  720.     if (dirlen == 1 && dirname[0] == '/')
  721. /* DIRNAME is just "/", so normal prepending would get us "//foo".
  722.    We want "/foo" instead, so don't prepend any chars from DIRNAME.  */
  723. dirlen = 0;
  724.     for (i = 0; i < n; ++i) {
  725. size_t eltlen = strlen(array[i]) + 1;
  726. char *new = (char *) malloc(dirlen + 1 + eltlen);
  727. if (new == NULL) {
  728.     while (i > 0)
  729. free((__ptr_t) array[--i]);
  730.     return 1;
  731. }
  732. #ifdef HAVE_MEMPCPY
  733. {
  734.     char *endp = (char *) mempcpy(new, dirname, dirlen);
  735.     *endp++ = '/';
  736.     mempcpy(endp, array[i], eltlen);
  737. }
  738. #else
  739. memcpy(new, dirname, dirlen);
  740. new[dirlen] = '/';
  741. memcpy(&new[dirlen + 1], array[i], eltlen);
  742. #endif
  743. free((__ptr_t) array[i]);
  744. array[i] = new;
  745.     }
  746.     return 0;
  747. }
  748. /* Return nonzero if PATTERN contains any metacharacters.
  749.    Metacharacters can be quoted with backslashes if QUOTE is nonzero.  */
  750. int __glob_pattern_p(pattern, quote)
  751.      const char *pattern;
  752.      int quote;
  753. {
  754.     register const char *p;
  755.     int open = 0;
  756.     for (p = pattern; *p != ''; ++p)
  757. switch (*p) {
  758. case '?':
  759. case '*':
  760.     return 1;
  761. case '\':
  762.     if (quote && p[1] != '')
  763. ++p;
  764.     break;
  765. case '[':
  766.     open = 1;
  767.     break;
  768. case ']':
  769.     if (open)
  770. return 1;
  771.     break;
  772. }
  773.     return 0;
  774. }
  775. #ifdef _LIBC
  776. weak_alias(__glob_pattern_p, glob_pattern_p)
  777. #endif
  778. /* Like `glob', but PATTERN is a final pathname component,
  779.    and matches are searched for in DIRECTORY.
  780.    The GLOB_NOSORT bit in FLAGS is ignored.  No sorting is ever done.
  781.    The GLOB_APPEND flag is assumed to be set (always appends).  */
  782.      static int
  783.          glob_in_dir(pattern, directory, flags, errfunc, pglob)
  784.      const char *pattern;
  785.      const char *directory;
  786.      int flags;
  787.      int (*errfunc) __P((const char *, int));
  788.      glob_t *pglob;
  789. {
  790.     __ptr_t stream;
  791.     struct globlink {
  792. struct globlink *next;
  793. char *name;
  794.     };
  795.     struct globlink *names = NULL;
  796.     size_t nfound;
  797.     int meta;
  798.     int save;
  799.     stream = ((flags & GLOB_ALTDIRFUNC) ?
  800.       (*pglob->gl_opendir) (directory) :
  801.       (__ptr_t) opendir(directory));
  802.     if (stream == NULL) {
  803. if ((errfunc != NULL && (*errfunc) (directory, errno)) ||
  804.     (flags & GLOB_ERR))
  805.     return GLOB_ABORTED;
  806. nfound = 0;
  807. meta = 0;
  808.     }
  809.     else if (pattern[0] == '') {
  810. /* This is a special case for matching directories like in
  811.    "*a/".  */
  812. names = (struct globlink *) __alloca(sizeof(struct globlink));
  813. names->name = (char *) malloc(1);
  814. if (names->name == NULL)
  815.     goto memory_error;
  816. names->name[0] = '';
  817. names->next = NULL;
  818. nfound = 1;
  819. meta = 0;
  820.     }
  821.     else {
  822. nfound = 0;
  823. meta = __glob_pattern_p(pattern, !(flags & GLOB_NOESCAPE));
  824. if (meta)
  825.     flags |= GLOB_MAGCHAR;
  826. while (1) {
  827.     const char *name;
  828.     size_t len;
  829.     struct dirent *d = ((flags & GLOB_ALTDIRFUNC) ?
  830. (*pglob->gl_readdir) (stream) :
  831. readdir((DIR *) stream));
  832.     if (d == NULL)
  833. break;
  834.     if (!REAL_DIR_ENTRY(d))
  835. continue;
  836. #ifdef HAVE_D_TYPE
  837.     /* If we shall match only directories use the information
  838.        provided by the dirent call if possible.  */
  839.     if ((flags & GLOB_ONLYDIR)
  840. && d->d_type != DT_UNKNOWN && d->d_type != DT_DIR)
  841. continue;
  842. #endif
  843.     name = d->d_name;
  844.     if ((!meta && strcmp(pattern, name) == 0)
  845. || wu_fnmatch(pattern, name,
  846.       (!(flags & GLOB_PERIOD) ? FNM_PERIOD : 0) |
  847.       ((flags & GLOB_NOESCAPE) ? FNM_NOESCAPE : 0)
  848. #ifdef _AMIGA
  849.       | FNM_CASEFOLD
  850. #endif
  851. ) == 0) {
  852. struct globlink *new
  853. = (struct globlink *) __alloca(sizeof(struct globlink));
  854. len = NAMLEN(d);
  855. new->name = (char *) malloc(len + 1);
  856. if (new->name == NULL)
  857.     goto memory_error;
  858. #ifdef HAVE_MEMPCPY
  859. *((char *) mempcpy((__ptr_t) new->name, name, len)) = '';
  860. #else
  861. memcpy((__ptr_t) new->name, name, len);
  862. new->name[len] = '';
  863. #endif
  864. new->next = names;
  865. names = new;
  866. ++nfound;
  867. if (!meta)
  868.     break;
  869.     }
  870. }
  871.     }
  872.     if (nfound == 0 && (flags & GLOB_NOMAGIC) && !meta)
  873. flags |= GLOB_NOCHECK;
  874.     if (nfound == 0 && (flags & GLOB_NOCHECK)) {
  875. size_t len = strlen(pattern);
  876. nfound = 1;
  877. names = (struct globlink *) __alloca(sizeof(struct globlink));
  878. names->next = NULL;
  879. names->name = (char *) malloc(len + 1);
  880. if (names->name == NULL)
  881.     goto memory_error;
  882. #ifdef HAVE_MEMPCPY
  883. *((char *) mempcpy(names->name, pattern, len)) = '';
  884. #else
  885. memcpy(names->name, pattern, len);
  886. names->name[len] = '';
  887. #endif
  888.     }
  889.     if (nfound != 0) {
  890. pglob->gl_pathv
  891.     = (char **) realloc(pglob->gl_pathv,
  892. (pglob->gl_pathc +
  893.       ((flags & GLOB_DOOFFS) ? pglob->gl_offs : 0) +
  894.  nfound + 1) *
  895. sizeof(char *));
  896. if (pglob->gl_pathv == NULL)
  897.     goto memory_error;
  898. if (flags & GLOB_DOOFFS)
  899.     while (pglob->gl_pathc < pglob->gl_offs)
  900. pglob->gl_pathv[pglob->gl_pathc++] = NULL;
  901. for (; names != NULL; names = names->next)
  902.     pglob->gl_pathv[pglob->gl_pathc++] = names->name;
  903. pglob->gl_pathv[pglob->gl_pathc] = NULL;
  904. pglob->gl_flags = flags;
  905.     }
  906.     save = errno;
  907.     if (flags & GLOB_ALTDIRFUNC)
  908. (*pglob->gl_closedir) (stream);
  909.     else
  910. closedir((DIR *) stream);
  911.     __set_errno(save);
  912.     return nfound == 0 ? GLOB_NOMATCH : 0;
  913.   memory_error:
  914.     {
  915. int save = errno;
  916. if (flags & GLOB_ALTDIRFUNC)
  917.     (*pglob->gl_closedir) (stream);
  918. else
  919.     closedir((DIR *) stream);
  920. __set_errno(save);
  921.     }
  922.     while (names != NULL) {
  923. if (names->name != NULL)
  924.     free((__ptr_t) names->name);
  925. names = names->next;
  926.     }
  927.     return GLOB_NOSPACE;
  928. }
  929. #endif /* Not ELIDE_CODE.  */