Work around bug with trailing slash on Solaris 9 and HP-UX 11.00.
[pspp] / 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 <string.h>
26
27 FILE *
28 rpl_fopen (const char *filename, const char *mode)
29 #undef fopen
30 {
31 #if FOPEN_TRAILING_SLASH_BUG
32   /* If the filename ends in a slash and a mode that requires write access is
33      specified, then fail.
34      Rationale: POSIX <http://www.opengroup.org/susv3/basedefs/xbd_chap04.html>
35      says that
36        "A pathname that contains at least one non-slash character and that
37         ends with one or more trailing slashes shall be resolved as if a
38         single dot character ( '.' ) were appended to the pathname."
39      and
40        "The special filename dot shall refer to the directory specified by
41         its predecessor."
42      If the named file already exists as a directory, then if a mode that
43      requires write access is specified, fopen() must fail because POSIX
44      <http://www.opengroup.org/susv3/functions/fopen.html> says that it
45      fails with errno = EISDIR in this case.
46      If the named file does not exist or does not name a directory, then
47      fopen() must fail since the file does not contain a '.' directory.  */
48   if (mode[0] == 'w' || mode[0] == 'a')
49     {
50       size_t len = strlen (filename);
51       if (len > 0 && filename[len - 1] == '/')
52         {
53           errno = EISDIR;
54           return NULL;
55         }
56     }
57 #endif
58
59 #if (defined _WIN32 || defined __WIN32__) && ! defined __CYGWIN__
60   if (strcmp (filename, "/dev/null") == 0)
61     filename = "NUL";
62 #endif
63
64   return fopen (filename, mode);
65 }