This source file includes following definitions.
- ensure_dirs_slot
- get_name
- _gl_unregister_fd
- _gl_register_fd
- _gl_register_dup
- _gl_directory_name
- fchdir
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 #include <config.h>
18
19
20 #include <unistd.h>
21
22 #include <dirent.h>
23 #include <errno.h>
24 #include <fcntl.h>
25 #include <stdbool.h>
26 #include <stdlib.h>
27 #include <string.h>
28 #include <sys/types.h>
29 #include <sys/stat.h>
30
31 #include "assure.h"
32 #include "filename.h"
33 #include "filenamecat.h"
34
35 #ifndef REPLACE_OPEN_DIRECTORY
36 # define REPLACE_OPEN_DIRECTORY 0
37 #endif
38
39
40
41
42
43
44
45
46
47
48
49 typedef struct
50 {
51 char *name;
52
53 } dir_info_t;
54 static dir_info_t *dirs;
55 static size_t dirs_allocated;
56
57
58
59
60 static bool
61 ensure_dirs_slot (size_t fd)
62 {
63 if (fd < dirs_allocated)
64 free (dirs[fd].name);
65 else
66 {
67 size_t new_allocated;
68 dir_info_t *new_dirs;
69
70 new_allocated = 2 * dirs_allocated + 1;
71 if (new_allocated <= fd)
72 new_allocated = fd + 1;
73 new_dirs =
74 (dirs != NULL
75 ? (dir_info_t *) realloc (dirs, new_allocated * sizeof *dirs)
76 : (dir_info_t *) malloc (new_allocated * sizeof *dirs));
77 if (new_dirs == NULL)
78 return false;
79 memset (new_dirs + dirs_allocated, 0,
80 (new_allocated - dirs_allocated) * sizeof *dirs);
81 dirs = new_dirs;
82 dirs_allocated = new_allocated;
83 }
84 return true;
85 }
86
87
88
89 static char *
90 get_name (char const *dir)
91 {
92 char *cwd;
93 char *result;
94
95 if (IS_ABSOLUTE_FILE_NAME (dir))
96 return strdup (dir);
97
98
99 cwd = getcwd (NULL, 0);
100 if (!cwd || (dir[0] == '.' && dir[1] == '\0'))
101 return cwd;
102
103 result = mfile_name_concat (cwd, dir, NULL);
104 free (cwd);
105 return result;
106 }
107
108
109
110
111
112
113 void
114 _gl_unregister_fd (int fd)
115 {
116 if (fd >= 0 && fd < dirs_allocated)
117 {
118 free (dirs[fd].name);
119 dirs[fd].name = NULL;
120 }
121 }
122
123
124
125
126
127
128 int
129 _gl_register_fd (int fd, const char *filename)
130 {
131 struct stat statbuf;
132
133 assure (0 <= fd);
134 if (REPLACE_OPEN_DIRECTORY
135 || (fstat (fd, &statbuf) == 0 && S_ISDIR (statbuf.st_mode)))
136 {
137 if (!ensure_dirs_slot (fd)
138 || (dirs[fd].name = get_name (filename)) == NULL)
139 {
140 int saved_errno = errno;
141 close (fd);
142 errno = saved_errno;
143 return -1;
144 }
145 }
146 return fd;
147 }
148
149
150
151
152
153
154 int
155 _gl_register_dup (int oldfd, int newfd)
156 {
157 assure (0 <= oldfd && 0 <= newfd && oldfd != newfd);
158 if (oldfd < dirs_allocated && dirs[oldfd].name)
159 {
160
161 if (!ensure_dirs_slot (newfd)
162 || (dirs[newfd].name = strdup (dirs[oldfd].name)) == NULL)
163 {
164 int saved_errno = errno;
165 close (newfd);
166 errno = saved_errno;
167 newfd = -1;
168 }
169 }
170 else if (newfd < dirs_allocated)
171 {
172
173 free (dirs[newfd].name);
174 dirs[newfd].name = NULL;
175 }
176 return newfd;
177 }
178
179
180
181 const char *
182 _gl_directory_name (int fd)
183 {
184 if (0 <= fd && fd < dirs_allocated && dirs[fd].name != NULL)
185 return dirs[fd].name;
186
187
188 if (0 <= fd)
189 {
190 if (dup2 (fd, fd) == fd)
191 errno = ENOTDIR;
192 }
193 else
194 errno = EBADF;
195 return NULL;
196 }
197
198
199
200
201 int
202 fchdir (int fd)
203 {
204 const char *name = _gl_directory_name (fd);
205 return name ? chdir (name) : -1;
206 }