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

Ftp客户端

开发平台:

Unix_Linux

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