fdopendir: split into its own module
[pspp] / lib / fdopendir.c
1 /* provide a replacement fdopendir function
2    Copyright (C) 2004-2009 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* written by Jim Meyering */
18
19 #include <config.h>
20
21 #include <dirent.h>
22
23 #include <stdlib.h>
24 #include <unistd.h>
25
26 #include "openat.h"
27 #include "openat-priv.h"
28 #include "save-cwd.h"
29
30 /* Replacement for Solaris' function by the same name.
31    <http://www.google.com/search?q=fdopendir+site:docs.sun.com>
32    First, try to simulate it via opendir ("/proc/self/fd/FD").  Failing
33    that, simulate it by doing save_cwd/fchdir/opendir(".")/restore_cwd.
34    If either the save_cwd or the restore_cwd fails (relatively unlikely),
35    then give a diagnostic and exit nonzero.
36    Otherwise, this function works just like Solaris' fdopendir.
37
38    W A R N I N G:
39    Unlike other fd-related functions, this one effectively consumes
40    its FD parameter.  The caller should not close or otherwise
41    manipulate FD if this function returns successfully.  Also, this
42    implementation does not guarantee that dirfd(fdopendir(n))==n;
43    the open directory stream may use a clone of FD, or have no
44    associated fd at all.  */
45 DIR *
46 fdopendir (int fd)
47 {
48   struct saved_cwd saved_cwd;
49   int saved_errno;
50   DIR *dir;
51
52   char buf[OPENAT_BUFFER_SIZE];
53   char *proc_file = openat_proc_name (buf, fd, ".");
54   if (proc_file)
55     {
56       dir = opendir (proc_file);
57       saved_errno = errno;
58     }
59   else
60     {
61       dir = NULL;
62       saved_errno = EOPNOTSUPP;
63     }
64
65   /* If the syscall fails with an expected errno value, resort to
66      save_cwd/restore_cwd.  */
67   if (! dir && EXPECTED_ERRNO (saved_errno))
68     {
69       if (save_cwd (&saved_cwd) != 0)
70         openat_save_fail (errno);
71
72       if (fchdir (fd) != 0)
73         {
74           dir = NULL;
75           saved_errno = errno;
76         }
77       else
78         {
79           dir = opendir (".");
80           saved_errno = errno;
81
82           if (restore_cwd (&saved_cwd) != 0)
83             openat_restore_fail (errno);
84         }
85
86       free_cwd (&saved_cwd);
87     }
88
89   if (dir)
90     close (fd);
91   if (proc_file != buf)
92     free (proc_file);
93   errno = saved_errno;
94   return dir;
95 }