~ubuntu-branches/ubuntu/hardy/renameutils/hardy

« back to all changes in this revision

Viewing changes to lib/lstat.c

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2006-07-21 16:39:15 UTC
  • mfrom: (1.1.4 edgy)
  • Revision ID: james.westby@ubuntu.com-20060721163915-k3kqs080hol8uw1n
Tags: 0.8.1-4
* Enable large file support on 32-bit platforms (closes: #377845)
* Bump Standards-Version up to 3.7.2 (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* Work around the bug in some systems whereby lstat succeeds when
2
 
   given the zero-length file name argument.  The lstat from SunOS 4.1.4
3
 
   has this bug.
 
1
/* Work around a bug of lstat on some systems
4
2
 
5
 
   Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free
 
3
   Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005 Free
6
4
   Software Foundation, Inc.
7
5
 
8
6
   This program is free software; you can redistribute it and/or modify
17
15
 
18
16
   You should have received a copy of the GNU General Public License
19
17
   along with this program; if not, write to the Free Software Foundation,
20
 
   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
21
 
 
22
 
#define LSTAT
23
 
#include "stat.c"
 
18
   Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
 
19
 
 
20
/* written by Jim Meyering */
 
21
 
 
22
#include <config.h>
 
23
 
 
24
/* The specification of these functions is in sys_stat.h.  But we cannot
 
25
   include this include file here, because on some systems, a
 
26
   "#define lstat lstat64" is being used, and sys_stat.h deletes this
 
27
   definition.  */
 
28
 
 
29
#include <sys/types.h>
 
30
#include <sys/stat.h>
 
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
int
 
48
rpl_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 (len == 0 || 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
}