Override fopen more carefully.
[gnulib.git] / lib / fopen.c
1 /* Open a stream to a file.
2    Copyright (C) 2007-2008 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 Bruno Haible <bruno@clisp.org>, 2007.  */
18
19 #include <config.h>
20
21 /* Get the original definition of fopen.  It might be defined as a macro.  */
22 #define __need_FILE
23 #include <stdio.h>
24 #undef __need_FILE
25
26 static inline FILE *
27 orig_fopen (const char *filename, const char *mode)
28 {
29   return fopen (filename, mode);
30 }
31
32 /* Specification.  */
33 #include <stdio.h>
34
35 #include <errno.h>
36 #include <fcntl.h>
37 #include <string.h>
38 #include <unistd.h>
39
40 FILE *
41 rpl_fopen (const char *filename, const char *mode)
42 {
43 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
44   if (strcmp (filename, "/dev/null") == 0)
45     filename = "NUL";
46 #endif
47
48 #if FOPEN_TRAILING_SLASH_BUG
49   /* If the filename ends in a slash and a mode that requires write access is
50      specified, then fail.
51      Rationale: POSIX <http://www.opengroup.org/susv3/basedefs/xbd_chap04.html>
52      says that
53        "A pathname that contains at least one non-slash character and that
54         ends with one or more trailing slashes shall be resolved as if a
55         single dot character ( '.' ) were appended to the pathname."
56      and
57        "The special filename dot shall refer to the directory specified by
58         its predecessor."
59      If the named file already exists as a directory, then if a mode that
60      requires write access is specified, fopen() must fail because POSIX
61      <http://www.opengroup.org/susv3/functions/fopen.html> says that it
62      fails with errno = EISDIR in this case.
63      If the named file does not exist or does not name a directory, then
64      fopen() must fail since the file does not contain a '.' directory.  */
65   {
66     size_t len = strlen (filename);
67     if (len > 0 && filename[len - 1] == '/')
68       {
69         int fd;
70         struct stat statbuf;
71         FILE *fp;
72
73         if (mode[0] == 'w' || mode[0] == 'a')
74           {
75             errno = EISDIR;
76             return NULL;
77           }
78
79         fd = open (filename, O_RDONLY);
80         if (fd < 0)
81           return NULL;
82
83         if (fstat (fd, &statbuf) >= 0 && !S_ISDIR (statbuf.st_mode))
84           {
85             close (fd);
86             errno = ENOTDIR;
87             return NULL;
88           }
89
90         fp = fdopen (fd, mode);
91         if (fp == NULL)
92           {
93             int saved_errno = errno;
94             close (fd);
95             errno = saved_errno;
96           }
97         return fp;
98       }
99   }
100 # endif
101
102   return orig_fopen (filename, mode);
103 }