]> CyberLeo.Net >> Repos - FreeBSD/releng/7.2.git/blob - contrib/cpio/lib/savedir.c
Create releng/7.2 from stable/7 in preparation for 7.2-RELEASE.
[FreeBSD/releng/7.2.git] / contrib / cpio / lib / savedir.c
1 /* savedir.c -- save the list of files in a directory in a string
2
3    Copyright 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004 Free
4    Software Foundation, Inc.
5
6    This program is free software; you can redistribute it and/or modify
7    it under the terms of the GNU General Public License as published by
8    the Free Software Foundation; either version 2, or (at your option)
9    any later version.
10
11    This program is distributed in the hope that it will be useful,
12    but WITHOUT ANY WARRANTY; without even the implied warranty of
13    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14    GNU General Public License for more details.
15
16    You should have received a copy of the GNU General Public License
17    along with this program; if not, write to the Free Software Foundation,
18    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
19
20 /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
21
22 #if HAVE_CONFIG_H
23 # include <config.h>
24 #endif
25
26 #include "savedir.h"
27
28 #include <sys/types.h>
29
30 #include <errno.h>
31
32 #if HAVE_DIRENT_H
33 # include <dirent.h>
34 #else
35 # define dirent direct
36 # if HAVE_SYS_NDIR_H
37 #  include <sys/ndir.h>
38 # endif
39 # if HAVE_SYS_DIR_H
40 #  include <sys/dir.h>
41 # endif
42 # if HAVE_NDIR_H
43 #  include <ndir.h>
44 # endif
45 #endif
46
47 #ifdef CLOSEDIR_VOID
48 /* Fake a return value. */
49 # define CLOSEDIR(d) (closedir (d), 0)
50 #else
51 # define CLOSEDIR(d) closedir (d)
52 #endif
53
54 #include <stddef.h>
55 #include <stdlib.h>
56 #include <string.h>
57
58 #include "xalloc.h"
59
60 /* Return a freshly allocated string containing the filenames
61    in directory DIR, separated by '\0' characters;
62    the end is marked by two '\0' characters in a row.
63    Return NULL (setting errno) if DIR cannot be opened, read, or closed.  */
64
65 #ifndef NAME_SIZE_DEFAULT
66 # define NAME_SIZE_DEFAULT 512
67 #endif
68
69 char *
70 savedir (const char *dir)
71 {
72   DIR *dirp;
73   struct dirent *dp;
74   char *name_space;
75   size_t allocated = NAME_SIZE_DEFAULT;
76   size_t used = 0;
77   int save_errno;
78
79   dirp = opendir (dir);
80   if (dirp == NULL)
81     return NULL;
82
83   name_space = xmalloc (allocated);
84
85   errno = 0;
86   while ((dp = readdir (dirp)) != NULL)
87     {
88       /* Skip "", ".", and "..".  "" is returned by at least one buggy
89          implementation: Solaris 2.4 readdir on NFS file systems.  */
90       char const *entry = dp->d_name;
91       if (entry[entry[0] != '.' ? 0 : entry[1] != '.' ? 1 : 2] != '\0')
92         {
93           size_t entry_size = strlen (entry) + 1;
94           if (used + entry_size < used)
95             xalloc_die ();
96           if (allocated <= used + entry_size)
97             {
98               do
99                 {
100                   if (2 * allocated < allocated)
101                     xalloc_die ();
102                   allocated *= 2;
103                 }
104               while (allocated <= used + entry_size);
105
106               name_space = xrealloc (name_space, allocated);
107             }
108           memcpy (name_space + used, entry, entry_size);
109           used += entry_size;
110         }
111     }
112   name_space[used] = '\0';
113   save_errno = errno;
114   if (CLOSEDIR (dirp) != 0)
115     save_errno = errno;
116   if (save_errno != 0)
117     {
118       free (name_space);
119       errno = save_errno;
120       return NULL;
121     }
122   return name_space;
123 }