Make fd.c and select.c include their own header file.
[adu.git] / fd.c
1 /*
2  * Copyright (C) 2006-2008 Andre Noll <maan@tuebingen.mpg.de>
3  *
4  * Licensed under the GPL v2. For licencing details see COPYING.
5  */
6
7 /** \file fd.c \brief Helper functions for file descriptor handling. */
8
9 #include <sys/types.h>
10 #include <dirent.h>
11 #include <sys/mman.h>
12 #include <string.h>
13
14 #include "adu.h"
15 #include "error.h"
16 #include "string.h"
17 #include "fd.h"
18
19 /**
20  * Wrapper for the write system call.
21  *
22  * \param fd The file descriptor to write to.
23  * \param buf The buffer to write.
24  * \param size The length of \a buf in bytes.
25  *
26  * This function writes out the given buffer and retries if an interrupt
27  * occurred during the write.
28  *
29  * \return Standard.
30  *
31  * \sa write(2).
32  */
33 ssize_t __write(int fd, const void *buf, size_t size)
34 {
35         ssize_t ret;
36
37         for (;;) {
38                 ret = write(fd, buf, size);
39                 if ((ret < 0) && (errno == EAGAIN || errno == EINTR))
40                         continue;
41                 return ret >= 0? ret : -ERRNO_TO_ERROR(errno);
42         }
43 }
44
45 /**
46  * Write the whole buffer to a file descriptor.
47  *
48  * \param fd The file descriptor to write to.
49  * \param buf The buffer to write.
50  * \param size The length of \a buf in bytes.
51  *
52  * This function writes the given buffer and continues on short writes and
53  * when interrupted by a signal.
54  *
55  * \return Standard.
56  */
57 static ssize_t write_all(int fd, const void *buf, size_t size)
58 {
59 //      DEBUG_LOG("writing %zu bytes\n", size);
60         const char *b = buf;
61         while (size) {
62                 ssize_t ret = __write(fd, b, size);
63 //              DEBUG_LOG("ret: %zd\n", ret);
64                 if (ret < 0)
65                         return ret;
66                 b += ret;
67                 size -= ret;
68         }
69         return 1;
70 }
71
72 /**
73  * Wrapper for the open(2) system call.
74  *
75  * \param path The filename.
76  * \param flags The usual open(2) flags.
77  * \param mode Specifies the permissions to use.
78  *
79  * The mode parameter must be specified when O_CREAT is in the flags, and is
80  * ignored otherwise.
81  *
82  * \return The file descriptor on success, negative on errors.
83  *
84  * \sa open(2).
85  */
86 static int __open(const char *path, int flags, mode_t mode)
87 {
88         int ret = open(path, flags, mode);
89
90         if (ret >= 0)
91                 return ret;
92         return -ERRNO_TO_ERROR(errno);
93 }
94
95 /**
96  * Open a file, write the given buffer and close the file.
97  *
98  * \param filename Full path to the file to open.
99  * \param buf The buffer to write to the file.
100  * \param size The size of \a buf.
101  *
102  * \return Standard.
103  */
104 int adu_write_file(const char *filename, const void *buf, size_t size)
105 {
106         int ret, fd;
107
108         ret = __open(filename, O_WRONLY | O_CREAT | O_EXCL, 0644);
109         if (ret < 0)
110                 return ret;
111         fd = ret;
112         ret = write_all(fd, buf, size);
113         if (ret < 0)
114                 goto out;
115         ret = 1;
116 out:
117         close(fd);
118         return ret;
119 }
120
121 /**
122  * Wrapper for chdir(2).
123  *
124  * \param path The specified directory.
125  *
126  * \return Standard.
127  */
128 static int __chdir(const char *path)
129 {
130         int ret = chdir(path);
131
132         if (ret >= 0)
133                 return 1;
134         return -ERRNO_TO_ERROR(errno);
135 }
136
137 /**
138  * Save the cwd and open a given directory.
139  *
140  * \param dirname Path to the directory to open.
141  * \param dir Result pointer.
142  * \param cwd File descriptor of the current working directory.
143  *
144  * \return Standard.
145  *
146  * Opening the current directory (".") and calling fchdir() to return is
147  * usually faster and more reliable than saving cwd in some buffer and calling
148  * chdir() afterwards.
149  *
150  * If \a cwd is not \p NULL "." is opened and the resulting file descriptor is
151  * stored in \a cwd. If the function returns success, and \a cwd is not \p
152  * NULL, the caller must close this file descriptor (probably after calling
153  * fchdir(*cwd)).
154  *
155  * On errors, the function undos everything, so the caller needs neither close
156  * any files, nor change back to the original working directory.
157  *
158  * \sa getcwd(3).
159  *
160  */
161 int adu_opendir(const char *dirname, DIR **dir, int *cwd)
162 {
163         int ret;
164
165         if (cwd) {
166                 ret = __open(".", O_RDONLY, 0);
167                 if (ret < 0)
168                         return ret;
169                 *cwd = ret;
170         }
171         ret = __chdir(dirname);
172         if (ret < 0)
173                 goto close_cwd;
174         *dir = opendir(".");
175         if (*dir)
176                 return 1;
177         ret = -ERRNO_TO_ERROR(errno);
178 /* Ignore return value of fchdir() and close(). We're busted anyway. */
179         if (cwd)
180                 fchdir(*cwd);
181 close_cwd:
182         if (cwd)
183                 close(*cwd);
184         return ret;
185 }
186
187 /**
188  * A wrapper for fchdir().
189  *
190  * \param fd An open file descriptor.
191  *
192  * \return Standard.
193  */
194 int adu_fchdir(int fd)
195 {
196         if (fchdir(fd) < 0)
197                 return -ERRNO_TO_ERROR(errno);
198         return 1;
199 }
200
201 /**
202  * Open a file and map it into memory.
203  *
204  * \param path Name of the regular file to map.
205  * \param open_mode Either \p O_RDONLY or \p O_RDWR.
206  * \param map On success, the mapping is returned here.
207  * \param size size of the mapping.
208  * \param fd_ptr The file descriptor of the mapping.
209  *
210  * If \a fd_ptr is \p NULL, the file descriptor resulting from the underlying
211  * open call is closed after mmap().  Otherwise the file is kept open and the
212  * file descriptor is returned in \a fd_ptr.
213  *
214  * \return Standard.
215  *
216  * \sa mmap(2).
217  */
218 int mmap_full_file(const char *path, int open_mode, void **map,
219                 size_t *size, int *fd_ptr)
220 {
221         int fd, ret, mmap_prot, mmap_flags;
222         struct stat file_status;
223
224         if (open_mode == O_RDONLY) {
225                 mmap_prot = PROT_READ;
226                 mmap_flags = MAP_PRIVATE;
227         } else {
228                 mmap_prot = PROT_READ | PROT_WRITE;
229                 mmap_flags = MAP_SHARED;
230         }
231         ret = __open(path, open_mode, 0);
232         if (ret < 0)
233                 return ret;
234         fd = ret;
235         if (fstat(fd, &file_status) < 0) {
236                 ret = -ERRNO_TO_ERROR(errno);
237                 goto out;
238         }
239         *size = file_status.st_size;
240         ret = -E_EMPTY;
241         DEBUG_LOG("%s: size %zu\n", path, *size);
242         if (!*size)
243                 goto out;
244         *map = mmap(NULL, *size, mmap_prot, mmap_flags, fd, 0);
245         if (*map == MAP_FAILED) {
246                 *map = NULL;
247                 ret = -E_MMAP;
248                 goto out;
249         }
250         ret = 1;
251 out:
252         if (ret < 0 || !fd_ptr)
253                 close(fd);
254         else
255                 *fd_ptr = fd;
256         return ret;
257 }
258
259 /**
260  * A wrapper for munmap(2).
261  *
262  * \param start The start address of the memory mapping.
263  * \param length The size of the mapping.
264  *
265  * \return Positive on success, \p -E_MUNMAP on errors.
266  *
267  * \sa munmap(2), mmap_full_file().
268  */
269 int adu_munmap(void *start, size_t length)
270 {
271         int err;
272         if (munmap(start, length) >= 0)
273                 return 1;
274         err = errno;
275         ERROR_LOG("munmap (%p/%zu) failed: %s\n", start, length,
276                 strerror(err));
277         return -ERRNO_TO_ERROR(err);
278 }
279
280 __must_check __malloc static char *adu_dirname(const char *name)
281 {
282         char *p, *ret;
283
284         if (!name || !*name)
285                 return NULL;
286         ret = adu_strdup(name);
287         p = strrchr(ret, '/');
288         if (!p)
289                 *ret = '\0';
290         else
291                 *p = '\0';
292         return ret;
293 }
294
295 /**
296  * Recursive mkdir
297  *
298  * \param p Full path that should be created.
299  *
300  * \param mode Use this mode when creating directories.
301  *
302  * \return 0 if successful, -E_MKDIR on errors.
303  */
304 int mkpath(const char *p, mode_t mode)
305 {
306         char *parent, *path;
307         int ret = -E_MKDIR;
308
309         DEBUG_LOG("%s\n", p);
310         if (strcmp(p, ".") == 0 || strcmp(p, "/") == 0 || strcmp(p, "") == 0) {
311                 DEBUG_LOG("reached beginning of path\n");
312                 return 0;
313         }
314         path = adu_strdup(p);
315         parent = adu_dirname(p);
316         if (!parent)
317                 goto out;
318         ret = mkpath(parent, mode);
319         if (ret < 0)
320                 goto out;
321         INFO_LOG("making dir %s\n", path);
322         ret = 0;
323         if ((mkdir(path, mode) == -1) && (errno != EEXIST))
324                 ret = -E_MKDIR;
325 out:
326         free(parent);
327         free(path);
328         return ret;
329 }