1 /* Open a descriptor to a file.
2 Copyright (C) 2007-2016 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 <http://www.gnu.org/licenses/>. */
17 /* Written by Bruno Haible <bruno@clisp.org>, 2007. */
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_open 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
31 orig_open (const char *filename, int flags, mode_t mode)
33 return open (filename, flags, mode);
37 /* Write "fcntl.h" here, not <fcntl.h>, otherwise OSF/1 5.1 DTK cc eliminates
38 this include because of the preliminary #include <fcntl.h> above. */
44 #include <sys/types.h>
48 #ifndef REPLACE_OPEN_DIRECTORY
49 # define REPLACE_OPEN_DIRECTORY 0
53 open (const char *filename, int flags, ...)
62 va_start (arg, flags);
64 /* We have to use PROMOTED_MODE_T instead of mode_t, otherwise GCC 4
65 creates crashing code when 'mode_t' is smaller than 'int'. */
66 mode = va_arg (arg, PROMOTED_MODE_T);
71 #if GNULIB_defined_O_NONBLOCK
72 /* The only known platform that lacks O_NONBLOCK is mingw, but it
73 also lacks named pipes and Unix sockets, which are the only two
74 file types that require non-blocking handling in open().
75 Therefore, it is safe to ignore O_NONBLOCK here. It is handy
76 that mingw also lacks openat(), so that is also covered here. */
80 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
81 if (strcmp (filename, "/dev/null") == 0)
85 #if OPEN_TRAILING_SLASH_BUG
86 /* If the filename ends in a slash and one of O_CREAT, O_WRONLY, O_RDWR
87 is specified, then fail.
88 Rationale: POSIX <http://www.opengroup.org/susv3/basedefs/xbd_chap04.html>
90 "A pathname that contains at least one non-slash character and that
91 ends with one or more trailing slashes shall be resolved as if a
92 single dot character ( '.' ) were appended to the pathname."
94 "The special filename dot shall refer to the directory specified by
96 If the named file already exists as a directory, then
97 - if O_CREAT is specified, open() must fail because of the semantics
99 - if O_WRONLY or O_RDWR is specified, open() must fail because POSIX
100 <http://www.opengroup.org/susv3/functions/open.html> says that it
101 fails with errno = EISDIR in this case.
102 If the named file does not exist or does not name a directory, then
103 - if O_CREAT is specified, open() must fail since open() cannot create
105 - if O_WRONLY or O_RDWR is specified, open() must fail because the
106 file does not contain a '.' directory. */
107 if (flags & (O_CREAT | O_WRONLY | O_RDWR))
109 size_t len = strlen (filename);
110 if (len > 0 && filename[len - 1] == '/')
118 fd = orig_open (filename, flags, mode);
121 /* Implementing fchdir and fdopendir requires the ability to open a
122 directory file descriptor. If open doesn't support that (as on
123 mingw), we use a dummy file that behaves the same as directories
124 on Linux (ie. always reports EOF on attempts to read()), and
125 override fstat() in fchdir.c to hide the fact that we have a
127 if (REPLACE_OPEN_DIRECTORY && fd < 0 && errno == EACCES
128 && ((flags & O_ACCMODE) == O_RDONLY
129 || (O_SEARCH != O_RDONLY && (flags & O_ACCMODE) == O_SEARCH)))
132 if (stat (filename, &statbuf) == 0 && S_ISDIR (statbuf.st_mode))
134 /* Maximum recursion depth of 1. */
135 fd = open ("/dev/null", flags, mode);
137 fd = _gl_register_fd (fd, filename);
144 #if OPEN_TRAILING_SLASH_BUG
145 /* If the filename ends in a slash and fd does not refer to a directory,
147 Rationale: POSIX <http://www.opengroup.org/susv3/basedefs/xbd_chap04.html>
149 "A pathname that contains at least one non-slash character and that
150 ends with one or more trailing slashes shall be resolved as if a
151 single dot character ( '.' ) were appended to the pathname."
153 "The special filename dot shall refer to the directory specified by
155 If the named file without the slash is not a directory, open() must fail
159 /* We know len is positive, since open did not fail with ENOENT. */
160 size_t len = strlen (filename);
161 if (filename[len - 1] == '/')
165 if (fstat (fd, &statbuf) >= 0 && !S_ISDIR (statbuf.st_mode))
176 if (!REPLACE_OPEN_DIRECTORY && 0 <= fd)
177 fd = _gl_register_fd (fd, filename);