b217126beb11f677d6fa981bda014b6889c92588
[gnulib.git] / lib / fstatat.c
1 /* Work around an fstatat bug on Solaris 9.
2
3    Copyright (C) 2006, 2009-2011 Free Software Foundation, Inc.
4
5    This program is free software: you can redistribute it and/or modify
6    it under the terms of the GNU General Public License as published by
7    the Free Software Foundation; either version 3 of the License, or
8    (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful,
11    but WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13    GNU General Public License for more details.
14
15    You should have received a copy of the GNU General Public License
16    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
17
18 /* Written by Paul Eggert and Jim Meyering.  */
19
20 #include <config.h>
21
22 #include <sys/stat.h>
23
24 #include <errno.h>
25 #include <fcntl.h>
26 #include <string.h>
27
28 #if HAVE_FSTATAT && ! FSTATAT_ST_SIZE_ETC_BROKEN
29
30 # undef fstatat
31
32 /* fstatat should always follow symbolic links that end in /, but on
33    Solaris 9 it doesn't if AT_SYMLINK_NOFOLLOW is specified.
34    Likewise, trailing slash on a non-directory should be an error.
35    These are the same problems that lstat.c and stat.c address, so
36    solve it in a similar way.  */
37
38 int
39 rpl_fstatat (int fd, char const *file, struct stat *st, int flag)
40 {
41   int result = fstatat (fd, file, st, flag);
42   size_t len;
43
44   if (result != 0)
45     return result;
46   len = strlen (file);
47   if (flag & AT_SYMLINK_NOFOLLOW)
48     {
49       /* Fix lstat behavior.  */
50       if (file[len - 1] != '/' || S_ISDIR (st->st_mode))
51         return 0;
52       if (!S_ISLNK (st->st_mode))
53         {
54           errno = ENOTDIR;
55           return -1;
56         }
57       result = fstatat (fd, file, st, flag & ~AT_SYMLINK_NOFOLLOW);
58     }
59   /* Fix stat behavior.  */
60   if (result == 0 && !S_ISDIR (st->st_mode) && file[len - 1] == '/')
61     {
62       errno = ENOTDIR;
63       return -1;
64     }
65   return result;
66 }
67
68 #else /* ! (HAVE_FSTATAT && ! FSTATAT_ST_SIZE_ETC_BROKEN) */
69
70 # if HAVE_FSTATAT
71 #  undef fstatat
72 #  define fstatat rpl_fstatat
73 # endif
74
75 /* On mingw, the gnulib <sys/stat.h> defines `stat' as a function-like
76    macro; but using it in AT_FUNC_F2 causes compilation failure
77    because the preprocessor sees a use of a macro that requires two
78    arguments but is only given one.  Hence, we need an inline
79    forwarder to get past the preprocessor.  */
80 static inline int
81 stat_func (char const *name, struct stat *st)
82 {
83   return stat (name, st);
84 }
85
86 /* Likewise, if there is no native `lstat', then the gnulib
87    <sys/stat.h> defined it as stat, which also needs adjustment.  */
88 # if !HAVE_LSTAT
89 #  undef lstat
90 #  define lstat stat_func
91 # endif
92
93 /* Replacement for Solaris' function by the same name.
94    <http://www.google.com/search?q=fstatat+site:docs.sun.com>
95    First, try to simulate it via l?stat ("/proc/self/fd/FD/FILE").
96    Failing that, simulate it via save_cwd/fchdir/(stat|lstat)/restore_cwd.
97    If either the save_cwd or the restore_cwd fails (relatively unlikely),
98    then give a diagnostic and exit nonzero.
99    Otherwise, this function works just like Solaris' fstatat.  */
100
101 # define AT_FUNC_NAME fstatat
102 # define AT_FUNC_F1 lstat
103 # define AT_FUNC_F2 stat_func
104 # define AT_FUNC_USE_F1_COND AT_SYMLINK_NOFOLLOW
105 # define AT_FUNC_POST_FILE_PARAM_DECLS , struct stat *st, int flag
106 # define AT_FUNC_POST_FILE_ARGS        , st
107 # include "at-func.c"
108 # undef AT_FUNC_NAME
109 # undef AT_FUNC_F1
110 # undef AT_FUNC_F2
111 # undef AT_FUNC_USE_F1_COND
112 # undef AT_FUNC_POST_FILE_PARAM_DECLS
113 # undef AT_FUNC_POST_FILE_ARGS
114
115 #endif /* ! (HAVE_FSTATAT && ! FSTATAT_ST_SIZE_ETC_BROKEN) */