Merge from vendor branch OPENSSL:
[dragonfly.git] / contrib / cvs-1.12.9 / lib / stat.c
1 /* Work around the bug in some systems whereby stat/lstat succeeds when
2    given the zero-length file name argument.  The stat/lstat from SunOS 4.1.4
3    has this bug.  Also work around a deficiency in Solaris systems (up to at
4    least Solaris 9) regarding the semantics of `lstat ("symlink/", sbuf).'
5
6    Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free
7    Software Foundation, Inc.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2, or (at your option)
12    any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software Foundation,
21    Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
22
23 /* written by Jim Meyering */
24
25 #include <config.h>
26
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <errno.h>
30 #ifndef errno
31 extern int errno;
32 #endif
33 #if defined LSTAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK
34 # include <string.h>
35
36 # if HAVE_STDLIB_H
37 #  include <stdlib.h>
38 # endif
39
40 # ifdef STAT_MACROS_BROKEN
41 #  undef S_ISLNK
42 # endif
43
44 # ifndef S_ISLNK
45 #  ifdef S_IFLNK
46 #   define S_ISLNK(m) (((m) & S_IFMT) == S_IFLNK)
47 #  else
48 #   define S_ISLNK(m) 0
49 #  endif
50 # endif
51
52 # ifndef HAVE_DECL_FREE
53 "this configure-time declaration test was not run"
54 # endif
55 # if !HAVE_DECL_FREE
56 void free ();
57 # endif
58
59 char *xmalloc ();
60
61 /* lstat works differently on Linux and Solaris systems.  POSIX (see
62    `pathname resolution' in the glossary) requires that programs like `ls'
63    take into consideration the fact that FILE has a trailing slash when
64    FILE is a symbolic link.  On Linux systems, the lstat function already
65    has the desired semantics (in treating `lstat("symlink/",sbuf)' just like
66    `lstat("symlink/.",sbuf)', but on Solaris it does not.
67
68    If FILE has a trailing slash and specifies a symbolic link,
69    then append a `.' to FILE and call lstat a second time.  */
70
71 static int
72 slash_aware_lstat (const char *file, struct stat *sbuf)
73 {
74   size_t len;
75   char *new_file;
76
77   int lstat_result = lstat (file, sbuf);
78
79   if (lstat_result != 0 || !S_ISLNK (sbuf->st_mode))
80     return lstat_result;
81
82   len = strlen (file);
83   if (file[len - 1] != '/')
84     return lstat_result;
85
86   /* FILE refers to a symbolic link and the name ends with a slash.
87      Append a `.' to FILE and repeat the lstat call.  */
88
89   /* Add one for the `.' we'll append, and one more for the trailing NUL.  */
90   new_file = xmalloc (len + 1 + 1);
91   memcpy (new_file, file, len);
92   new_file[len] = '.';
93   new_file[len + 1] = 0;
94
95   lstat_result = lstat (new_file, sbuf);
96   free (new_file);
97
98   return lstat_result;
99 }
100 #endif /* LSTAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK */
101
102 /* This is a wrapper for stat/lstat.
103    If FILE is the empty string, fail with errno == ENOENT.
104    Otherwise, return the result of calling the real stat/lstat.
105
106    This works around the bug in some systems whereby stat/lstat succeeds when
107    given the zero-length file name argument.  The stat/lstat from SunOS 4.1.4
108    has this bug.  */
109
110 /* This function also provides a version of lstat with consistent semantics
111    when FILE specifies a symbolic link and has a trailing slash.  */
112
113 #ifdef LSTAT
114 # define rpl_xstat rpl_lstat
115 # if ! LSTAT_FOLLOWS_SLASHED_SYMLINK
116 #  define xstat_return_val(F, S) slash_aware_lstat (F, S)
117 # else
118 #  define xstat_return_val(F, S) lstat (F, S)
119 # endif
120 #else
121 # define rpl_xstat rpl_stat
122 # define xstat_return_val(F, S) stat (F, S)
123 #endif
124
125 int
126 rpl_xstat (const char *file, struct stat *sbuf)
127 {
128   if (file && *file == 0)
129     {
130       errno = ENOENT;
131       return -1;
132     }
133
134   return xstat_return_val (file, sbuf);
135 }