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