Fix reference.
[dragonfly.git] / contrib / cvs-1.12.12 / 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, 2004 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 #if defined LSTAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK
31 # include <stdlib.h>
32 # include <string.h>
33
34 # include "stat-macros.h"
35 # include "xalloc.h"
36
37 /* lstat works differently on Linux and Solaris systems.  POSIX (see
38    `pathname resolution' in the glossary) requires that programs like `ls'
39    take into consideration the fact that FILE has a trailing slash when
40    FILE is a symbolic link.  On Linux systems, the lstat function already
41    has the desired semantics (in treating `lstat("symlink/",sbuf)' just like
42    `lstat("symlink/.",sbuf)', but on Solaris it does not.
43
44    If FILE has a trailing slash and specifies a symbolic link,
45    then append a `.' to FILE and call lstat a second time.  */
46
47 static int
48 slash_aware_lstat (const char *file, struct stat *sbuf)
49 {
50   size_t len;
51   char *new_file;
52
53   int lstat_result = lstat (file, sbuf);
54
55   if (lstat_result != 0 || !S_ISLNK (sbuf->st_mode))
56     return lstat_result;
57
58   len = strlen (file);
59   if (file[len - 1] != '/')
60     return lstat_result;
61
62   /* FILE refers to a symbolic link and the name ends with a slash.
63      Append a `.' to FILE and repeat the lstat call.  */
64
65   /* Add one for the `.' we'll append, and one more for the trailing NUL.  */
66   new_file = xmalloc (len + 1 + 1);
67   memcpy (new_file, file, len);
68   new_file[len] = '.';
69   new_file[len + 1] = 0;
70
71   lstat_result = lstat (new_file, sbuf);
72   free (new_file);
73
74   return lstat_result;
75 }
76 #endif /* LSTAT && ! LSTAT_FOLLOWS_SLASHED_SYMLINK */
77
78 /* This is a wrapper for stat/lstat.
79    If FILE is the empty string, fail with errno == ENOENT.
80    Otherwise, return the result of calling the real stat/lstat.
81
82    This works around the bug in some systems whereby stat/lstat succeeds when
83    given the zero-length file name argument.  The stat/lstat from SunOS 4.1.4
84    has this bug.  */
85
86 /* This function also provides a version of lstat with consistent semantics
87    when FILE specifies a symbolic link and has a trailing slash.  */
88
89 #ifdef LSTAT
90 # define rpl_xstat rpl_lstat
91 # if ! LSTAT_FOLLOWS_SLASHED_SYMLINK
92 #  define xstat_return_val(F, S) slash_aware_lstat (F, S)
93 # else
94 #  define xstat_return_val(F, S) lstat (F, S)
95 # endif
96 #else
97 # define rpl_xstat rpl_stat
98 # define xstat_return_val(F, S) stat (F, S)
99 #endif
100
101 int
102 rpl_xstat (const char *file, struct stat *sbuf)
103 {
104   if (file && *file == 0)
105     {
106       errno = ENOENT;
107       return -1;
108     }
109
110   return xstat_return_val (file, sbuf);
111 }