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