1 | /* savedir.c -- save the list of files in a directory in a string
|
---|
2 |
|
---|
3 | Copyright (C) 1990, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
|
---|
4 | 2006 Free 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
|
---|
19 |
|
---|
20 | /* Written by David MacKenzie <djm@gnu.ai.mit.edu>. */
|
---|
21 |
|
---|
22 | #include <config.h>
|
---|
23 |
|
---|
24 | #include "savedir.h"
|
---|
25 |
|
---|
26 | #include <sys/types.h>
|
---|
27 |
|
---|
28 | #include <errno.h>
|
---|
29 |
|
---|
30 | #include <dirent.h>
|
---|
31 | #ifndef _D_EXACT_NAMLEN
|
---|
32 | # define _D_EXACT_NAMLEN(dp) strlen ((dp)->d_name)
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | #include <stddef.h>
|
---|
36 | #include <stdlib.h>
|
---|
37 | #include <string.h>
|
---|
38 |
|
---|
39 | #include "openat.h"
|
---|
40 | #include "xalloc.h"
|
---|
41 |
|
---|
42 | #ifndef NAME_SIZE_DEFAULT
|
---|
43 | # define NAME_SIZE_DEFAULT 512
|
---|
44 | #endif
|
---|
45 |
|
---|
46 | /* Return a freshly allocated string containing the file names
|
---|
47 | in directory DIRP, separated by '\0' characters;
|
---|
48 | the end is marked by two '\0' characters in a row.
|
---|
49 | Return NULL (setting errno) if DIRP cannot be read or closed.
|
---|
50 | If DIRP is NULL, return NULL without affecting errno. */
|
---|
51 |
|
---|
52 | static char *
|
---|
53 | savedirstream (DIR *dirp)
|
---|
54 | {
|
---|
55 | char *name_space;
|
---|
56 | size_t allocated = NAME_SIZE_DEFAULT;
|
---|
57 | size_t used = 0;
|
---|
58 | int save_errno;
|
---|
59 |
|
---|
60 | if (dirp == NULL)
|
---|
61 | return NULL;
|
---|
62 |
|
---|
63 | name_space = xmalloc (allocated);
|
---|
64 |
|
---|
65 | for (;;)
|
---|
66 | {
|
---|
67 | struct dirent const *dp;
|
---|
68 | char const *entry;
|
---|
69 |
|
---|
70 | errno = 0;
|
---|
71 | dp = readdir (dirp);
|
---|
72 | if (! dp)
|
---|
73 | break;
|
---|
74 |
|
---|
75 | /* Skip "", ".", and "..". "" is returned by at least one buggy
|
---|
76 | implementation: Solaris 2.4 readdir on NFS file systems. */
|
---|
77 | entry = dp->d_name;
|
---|
78 | if (entry[entry[0] != '.' ? 0 : entry[1] != '.' ? 1 : 2] != '\0')
|
---|
79 | {
|
---|
80 | size_t entry_size = _D_EXACT_NAMLEN (dp) + 1;
|
---|
81 | if (used + entry_size < used)
|
---|
82 | xalloc_die ();
|
---|
83 | if (allocated <= used + entry_size)
|
---|
84 | {
|
---|
85 | do
|
---|
86 | {
|
---|
87 | if (2 * allocated < allocated)
|
---|
88 | xalloc_die ();
|
---|
89 | allocated *= 2;
|
---|
90 | }
|
---|
91 | while (allocated <= used + entry_size);
|
---|
92 |
|
---|
93 | name_space = xrealloc (name_space, allocated);
|
---|
94 | }
|
---|
95 | memcpy (name_space + used, entry, entry_size);
|
---|
96 | used += entry_size;
|
---|
97 | }
|
---|
98 | }
|
---|
99 | name_space[used] = '\0';
|
---|
100 | save_errno = errno;
|
---|
101 | if (closedir (dirp) != 0)
|
---|
102 | save_errno = errno;
|
---|
103 | if (save_errno != 0)
|
---|
104 | {
|
---|
105 | free (name_space);
|
---|
106 | errno = save_errno;
|
---|
107 | return NULL;
|
---|
108 | }
|
---|
109 | return name_space;
|
---|
110 | }
|
---|
111 |
|
---|
112 | /* Return a freshly allocated string containing the file names
|
---|
113 | in directory DIR, separated by '\0' characters;
|
---|
114 | the end is marked by two '\0' characters in a row.
|
---|
115 | Return NULL (setting errno) if DIR cannot be opened, read, or closed. */
|
---|
116 |
|
---|
117 | char *
|
---|
118 | savedir (char const *dir)
|
---|
119 | {
|
---|
120 | return savedirstream (opendir (dir));
|
---|
121 | }
|
---|
122 |
|
---|
123 | /* Return a freshly allocated string containing the file names
|
---|
124 | in directory FD, separated by '\0' characters;
|
---|
125 | the end is marked by two '\0' characters in a row.
|
---|
126 | Return NULL (setting errno) if FD cannot be read or closed. */
|
---|
127 |
|
---|
128 | char *
|
---|
129 | fdsavedir (int fd)
|
---|
130 | {
|
---|
131 | return savedirstream (fdopendir (fd));
|
---|
132 | }
|
---|