1 /* provide a replacement openat function
2 Copyright (C) 2004-2020 Free Software Foundation, Inc.
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.
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.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* written by Jim Meyering */
19 /* If the user's config.h happens to include <fcntl.h>, let it include only
20 the system's <fcntl.h> here, so that orig_openat doesn't recurse to
22 #define __need_system_fcntl_h
25 /* Get the original definition of open. It might be defined as a macro. */
27 #include <sys/types.h>
28 #undef __need_system_fcntl_h
32 orig_openat (int fd
, char const *filename
, int flags
, mode_t mode
)
34 return openat (fd
, filename
, flags
, mode
);
38 /* Write "fcntl.h" here, not <fcntl.h>, otherwise OSF/1 5.1 DTK cc eliminates
39 this include because of the preliminary #include <fcntl.h> above. */
56 /* Like openat, but support O_CLOEXEC and work around Solaris 9 bugs
57 with trailing slash. */
59 rpl_openat (int dfd
, char const *filename
, int flags
, ...)
61 /* 0 = unknown, 1 = yes, -1 = no. */
62 #if GNULIB_defined_O_CLOEXEC
63 int have_cloexec
= -1;
65 static int have_cloexec
;
75 va_start (arg
, flags
);
77 /* We have to use PROMOTED_MODE_T instead of mode_t, otherwise GCC 4
78 creates crashing code when 'mode_t' is smaller than 'int'. */
79 mode
= va_arg (arg
, PROMOTED_MODE_T
);
84 # if OPEN_TRAILING_SLASH_BUG
85 /* Fail if one of O_CREAT, O_WRONLY, O_RDWR is specified and the filename
86 ends in a slash, as POSIX says such a filename must name a directory
87 <https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13>:
88 "A pathname that contains at least one non-<slash> character and that
89 ends with one or more trailing <slash> characters shall not be resolved
90 successfully unless the last pathname component before the trailing
91 <slash> characters names an existing directory"
92 If the named file already exists as a directory, then
93 - if O_CREAT is specified, open() must fail because of the semantics
95 - if O_WRONLY or O_RDWR is specified, open() must fail because POSIX
96 <https://pubs.opengroup.org/onlinepubs/9699919799/functions/openat.html>
97 says that it fails with errno = EISDIR in this case.
98 If the named file does not exist or does not name a directory, then
99 - if O_CREAT is specified, open() must fail since open() cannot create
101 - if O_WRONLY or O_RDWR is specified, open() must fail because the
102 file does not contain a '.' directory. */
103 if ((flags
& O_CREAT
)
104 || (flags
& O_ACCMODE
) == O_RDWR
105 || (flags
& O_ACCMODE
) == O_WRONLY
)
107 size_t len
= strlen (filename
);
108 if (len
> 0 && filename
[len
- 1] == '/')
116 fd
= orig_openat (dfd
, filename
,
117 flags
& ~(have_cloexec
< 0 ? O_CLOEXEC
: 0), mode
);
119 if (flags
& O_CLOEXEC
)
125 else if (errno
== EINVAL
)
127 fd
= orig_openat (dfd
, filename
, flags
& ~O_CLOEXEC
, mode
);
131 if (have_cloexec
< 0 && 0 <= fd
)
132 set_cloexec_flag (fd
, true);
136 # if OPEN_TRAILING_SLASH_BUG
137 /* If the filename ends in a slash and fd does not refer to a directory,
139 Rationale: POSIX says such a filename must name a directory
140 <https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap04.html#tag_04_13>:
141 "A pathname that contains at least one non-<slash> character and that
142 ends with one or more trailing <slash> characters shall not be resolved
143 successfully unless the last pathname component before the trailing
144 <slash> characters names an existing directory"
145 If the named file without the slash is not a directory, open() must fail
149 /* We know len is positive, since open did not fail with ENOENT. */
150 size_t len
= strlen (filename
);
151 if (filename
[len
- 1] == '/')
155 if (fstat (fd
, &statbuf
) >= 0 && !S_ISDIR (statbuf
.st_mode
))
168 #else /* !HAVE_OPENAT */
170 # include "filename.h" /* solely for definition of IS_ABSOLUTE_FILE_NAME */
171 # include "openat-priv.h"
172 # include "save-cwd.h"
174 /* Replacement for Solaris' openat function.
175 <https://www.google.com/search?q=openat+site:docs.oracle.com>
176 First, try to simulate it via open ("/proc/self/fd/FD/FILE").
177 Failing that, simulate it by doing save_cwd/fchdir/open/restore_cwd.
178 If either the save_cwd or the restore_cwd fails (relatively unlikely),
179 then give a diagnostic and exit nonzero.
180 Otherwise, upon failure, set errno and return -1, as openat does.
181 Upon successful completion, return a file descriptor. */
183 openat (int fd
, char const *file
, int flags
, ...)
190 va_start (arg
, flags
);
192 /* We have to use PROMOTED_MODE_T instead of mode_t, otherwise GCC 4
193 creates crashing code when 'mode_t' is smaller than 'int'. */
194 mode
= va_arg (arg
, PROMOTED_MODE_T
);
199 return openat_permissive (fd
, file
, flags
, mode
, NULL
);
202 /* Like openat (FD, FILE, FLAGS, MODE), but if CWD_ERRNO is
203 nonnull, set *CWD_ERRNO to an errno value if unable to save
204 or restore the initial working directory. This is needed only
205 the first time remove.c's remove_dir opens a command-line
208 If a previous attempt to restore the current working directory
209 failed, then we must not even try to access a '.'-relative name.
210 It is the caller's responsibility not to call this function
214 openat_permissive (int fd
, char const *file
, int flags
, mode_t mode
,
217 struct saved_cwd saved_cwd
;
222 if (fd
== AT_FDCWD
|| IS_ABSOLUTE_FILE_NAME (file
))
223 return open (file
, flags
, mode
);
226 char buf
[OPENAT_BUFFER_SIZE
];
227 char *proc_file
= openat_proc_name (buf
, fd
, file
);
230 int open_result
= open (proc_file
, flags
, mode
);
231 int open_errno
= errno
;
232 if (proc_file
!= buf
)
234 /* If the syscall succeeds, or if it fails with an unexpected
235 errno value, then return right away. Otherwise, fall through
236 and resort to using save_cwd/restore_cwd. */
237 if (0 <= open_result
|| ! EXPECTED_ERRNO (open_errno
))
245 save_ok
= (save_cwd (&saved_cwd
) == 0);
249 openat_save_fail (errno
);
252 if (0 <= fd
&& fd
== saved_cwd
.desc
)
254 /* If saving the working directory collides with the user's
255 requested fd, then the user's fd must have been closed to
257 free_cwd (&saved_cwd
);
267 err
= open (file
, flags
, mode
);
269 if (save_ok
&& restore_cwd (&saved_cwd
) != 0)
273 /* Don't write a message to just-created fd 2. */
275 if (err
== STDERR_FILENO
)
277 openat_restore_fail (saved_errno
);
283 free_cwd (&saved_cwd
);
288 /* Return true if our openat implementation must resort to
289 using save_cwd and restore_cwd. */
291 openat_needs_fchdir (void)
293 bool needs_fchdir
= true;
294 int fd
= open ("/", O_SEARCH
| O_CLOEXEC
);
298 char buf
[OPENAT_BUFFER_SIZE
];
299 char *proc_file
= openat_proc_name (buf
, fd
, ".");
302 needs_fchdir
= false;
303 if (proc_file
!= buf
)
312 #endif /* !HAVE_OPENAT */