annotate src/realpath.c @ 3044:d00888bfced1

[xemacs-hg @ 2005-11-02 10:01:57 by crestani] * realpath.c (readlink_or_correct_case): Move the closing paren outside the ifdef.
author crestani
date Wed, 02 Nov 2005 10:01:58 +0000
parents 967fea9dfad5
children 19d70297d866
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
1 /*
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
2 * realpath.c -- canonicalize pathname by removing symlinks
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
3 * Copyright (C) 1993 Rick Sladkey <jrs@world.std.com>
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
4 * Copyright (C) 2001, 2002, 2004 Ben Wing.
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
5 *
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
6
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
7 This file is part of XEmacs.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
8
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
9 XEmacs is free software; you can redistribute it and/or modify it
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
10 under the terms of the GNU General Public License as published by the
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
11 Free Software Foundation; either version 2, or (at your option) any
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
12 later version.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
13
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
14 XEmacs is distributed in the hope that it will be useful, but WITHOUT
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
17 for more details.
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
18
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
19 You should have received a copy of the GNU General Public License
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
20 along with XEmacs; see the file COPYING. If not, write to
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
21 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
22 Boston, MA 02111-1307, USA. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
23
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
24 /* Synched up with: Not in FSF. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
25
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
26 /* This file has been Mule-ized, June 2001 by Ben Wing.
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
27
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
28 Everything in this file now works in terms of internal, not external,
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
29 data. This is the only way to be safe, and it makes the code cleaner. */
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
30
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
31 #include <config.h>
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
32 #include "lisp.h"
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
33
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
34 #include "profile.h"
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
35
558
ed498ef2108b [xemacs-hg @ 2001-05-23 09:59:33 by ben]
ben
parents: 462
diff changeset
36 #include "sysfile.h"
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
37 #include "sysdir.h"
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
38
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
39 #define MAX_READLINKS 32
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
40
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
41 #ifdef WIN32_ANY
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
42 #include "syswindows.h"
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
43 #ifndef ELOOP
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
44 #define ELOOP 10062 /* = WSAELOOP in winsock.h */
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
45 #endif
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
46 #endif
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
47
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
48 Lisp_Object QSin_qxe_realpath;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
49
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
50 /* Length of start of absolute filename. */
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
51 static int
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
52 abs_start (const Ibyte *name)
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
53 {
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
54 #ifdef WIN32_ANY
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
55 if (isalpha (*name) && IS_DEVICE_SEP (name[1])
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
56 && IS_DIRECTORY_SEP (name[2]))
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
57 return 3;
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
58 else if (IS_DIRECTORY_SEP (*name))
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
59 return IS_DIRECTORY_SEP (name[1]) ? 2 : 1;
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
60 else
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
61 return 0;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
62 #else /* not WIN32_ANY */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
63 return IS_DIRECTORY_SEP (*name) ? 1 : 0;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
64 #endif
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
65 }
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
66
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
67 /* Find real name of a file by resolving symbolic links and/or shortcuts
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
68 under Windows (.LNK links), if such support is enabled.
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
69
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
70 If no link found, and LINKS_ONLY is false, look up the correct case in
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
71 the file system of the last component.
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
72
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
73 Under Windows, UNC servers and shares are lower-cased. Directories must
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
74 be given without trailing '/'. One day, this could read Win2K's reparse
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
75 points.
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
76
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
77 Returns length of characters copied info BUF.
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
78 DOES NOT ZERO TERMINATE!!!!!
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
79 */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
80
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
81 static int
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
82 readlink_or_correct_case (const Ibyte *name, Ibyte *buf, Bytecount size,
3042
967fea9dfad5 [xemacs-hg @ 2005-11-02 03:30:17 by crestani]
crestani
parents: 2526
diff changeset
83 #ifndef WIN32_ANY
3044
d00888bfced1 [xemacs-hg @ 2005-11-02 10:01:57 by crestani]
crestani
parents: 3042
diff changeset
84 Boolint UNUSED (links_only)
3042
967fea9dfad5 [xemacs-hg @ 2005-11-02 03:30:17 by crestani]
crestani
parents: 2526
diff changeset
85 #else
3044
d00888bfced1 [xemacs-hg @ 2005-11-02 10:01:57 by crestani]
crestani
parents: 3042
diff changeset
86 Boolint links_only
3042
967fea9dfad5 [xemacs-hg @ 2005-11-02 03:30:17 by crestani]
crestani
parents: 2526
diff changeset
87 #endif
3044
d00888bfced1 [xemacs-hg @ 2005-11-02 10:01:57 by crestani]
crestani
parents: 3042
diff changeset
88 )
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
89 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
90 #ifndef WIN32_ANY
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
91 return qxe_readlink (name, buf, (size_t) size);
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
92 #else
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
93 # ifdef CYGWIN
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
94 Ibyte *tmp;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
95 int n = qxe_readlink (name, buf, (size_t) size);
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
96 if (n >= 0 || errno != EINVAL)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
97 return n;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
98
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
99 /* The file may exist, but isn't a symlink. Try to find the
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
100 right name. */
2367
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 1760
diff changeset
101 tmp =
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 1760
diff changeset
102 alloca_ibytes (cygwin_posix_to_win32_path_list_buf_size ((char *) name));
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
103 cygwin_posix_to_win32_path_list ((char *) name, (char *) tmp);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
104 name = tmp;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
105 # else
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
106 if (mswindows_shortcuts_are_symlinks)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
107 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
108 Ibyte *tmp = mswindows_read_link (name);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
109
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
110 if (tmp != NULL)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
111 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
112 /* Fucking fixed buffers. */
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
113 Bytecount len = qxestrlen (tmp);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
114 if (len > size)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
115 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
116 errno = ENAMETOOLONG;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
117 return -1;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
118 }
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
119 memcpy (buf, tmp, len);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
120 xfree (tmp, Ibyte *);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
121 return len;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
122 }
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
123 }
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
124 # endif
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
125
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
126 if (links_only)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
127 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
128 errno = EINVAL;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
129 return -1;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
130 }
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
131
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
132 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
133 int len = 0;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
134 int err = 0;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
135 const Ibyte *lastname;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
136 int count = 0;
1204
e22b0213b713 [xemacs-hg @ 2003-01-12 11:07:58 by michaels]
michaels
parents: 1116
diff changeset
137 const Ibyte *nn;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
138 DECLARE_EISTRING (result);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
139
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
140 assert (*name);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
141
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
142 /* Sort of check we have a valid filename. */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
143 if (qxestrpbrk (name, "*?|<>\""))
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
144 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
145 errno = ENOENT;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
146 return -1;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
147 }
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
148 else if (qxestrlen (name) >= PATH_MAX_INTERNAL)
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
149 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
150 errno = ENAMETOOLONG;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
151 return -1;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
152 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
153
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
154 /* Find start of filename */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
155 lastname = name + qxestrlen (name);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
156 while (lastname > name && !IS_DIRECTORY_SEP (lastname[-1]))
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
157 --lastname;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
158
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
159 /* Count slashes in unc path */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
160 if (abs_start (name) == 2)
1204
e22b0213b713 [xemacs-hg @ 2003-01-12 11:07:58 by michaels]
michaels
parents: 1116
diff changeset
161 for (nn = name; *nn; nn++)
e22b0213b713 [xemacs-hg @ 2003-01-12 11:07:58 by michaels]
michaels
parents: 1116
diff changeset
162 if (IS_DIRECTORY_SEP (*nn))
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
163 count++;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
164
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
165 if (count >= 2 && count < 4)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
166 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
167 eicpy_rawz (result, lastname);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
168 eilwr (result);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
169 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
170 else
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
171 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
172 WIN32_FIND_DATAW find_data;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
173 Extbyte *nameext;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
174 HANDLE dir_handle;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
175
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
176 C_STRING_TO_TSTR (name, nameext);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
177 dir_handle = qxeFindFirstFile (nameext, &find_data);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
178 if (dir_handle == INVALID_HANDLE_VALUE)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
179 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
180 errno = ENOENT;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
181 return -1;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
182 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
183 eicpy_ext (result, (Extbyte *) find_data.cFileName, Qmswindows_tstr);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
184 FindClose (dir_handle);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
185 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
186
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
187 if ((len = eilen (result)) <= size)
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
188 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
189 DECLARE_EISTRING (eilastname);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
190
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
191 eicpy_rawz (eilastname, lastname);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
192 if (eicmp_ei (eilastname, result) == 0)
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
193 /* Signal that the name is already OK. */
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
194 err = EINVAL;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
195 else
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
196 memcpy (buf, eidata (result), len);
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
197 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
198 else
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
199 err = ENAMETOOLONG;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
200
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
201 errno = err;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
202 return err ? -1 : len;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
203 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
204 #endif /* WIN32_ANY */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
205 }
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
206
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
207 /* Mule Note: This function works with and returns
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
208 internally-formatted strings.
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
209
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
210 if LINKS_ONLY is true, don't do case canonicalization under
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
211 Windows. */
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 428
diff changeset
212
867
804517e16990 [xemacs-hg @ 2002-06-05 09:54:39 by ben]
ben
parents: 851
diff changeset
213 Ibyte *
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
214 qxe_realpath (const Ibyte *path, Ibyte *resolved_path, Boolint links_only)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
215 {
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
216 Ibyte copy_path[PATH_MAX_INTERNAL];
867
804517e16990 [xemacs-hg @ 2002-06-05 09:54:39 by ben]
ben
parents: 851
diff changeset
217 Ibyte *new_path = resolved_path;
804517e16990 [xemacs-hg @ 2002-06-05 09:54:39 by ben]
ben
parents: 851
diff changeset
218 Ibyte *max_path;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
219 Ibyte *retval = NULL;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
220 #if defined (HAVE_READLINK) || defined (WIN32_ANY)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
221 int readlinks = 0;
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
222 Ibyte link_path[PATH_MAX_INTERNAL];
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
223 int n;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
224 int abslen = abs_start (path);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
225 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
226
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
227 PROFILE_DECLARE ();
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
228
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
229 PROFILE_RECORD_ENTERING_SECTION (QSin_qxe_realpath);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
230
1760
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
231 restart:
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
232
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
233 /* Make a copy of the source path since we may need to modify it. */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
234 qxestrcpy (copy_path, path);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
235 path = copy_path;
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
236 max_path = copy_path + PATH_MAX_INTERNAL - 2;
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
237
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
238 if (0)
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
239 ;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
240 #ifdef WIN32_ANY
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
241 /* Check for c:/... or //server/... */
988
5df795348f45 [xemacs-hg @ 2002-09-01 22:13:52 by andyp]
andyp
parents: 867
diff changeset
242 else if (abslen == 3 || abslen == 2)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
243 {
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
244 /* Make sure drive letter is lowercased. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
245 if (abslen == 3)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
246 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
247 *new_path = tolower (*path);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
248 new_path++;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
249 path++;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
250 abslen--;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
251 }
988
5df795348f45 [xemacs-hg @ 2002-09-01 22:13:52 by andyp]
andyp
parents: 867
diff changeset
252 /* Coerce directory chars. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
253 while (abslen-- > 0)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
254 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
255 if (IS_DIRECTORY_SEP (*path))
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
256 *new_path++ = DIRECTORY_SEP;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
257 else
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
258 *new_path++ = *path;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
259 path++;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
260 }
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
261 }
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
262 #endif
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
263 #ifdef WIN32_NATIVE
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
264 /* No drive letter, but a beginning slash? Prepend drive letter. */
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
265 else if (abslen == 1)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
266 {
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
267 get_initial_directory (new_path, PATH_MAX_INTERNAL - 1);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
268 new_path += 3;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
269 path++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
270 }
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
271 /* Just a path name, prepend the current directory */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
272 else
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
273 {
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
274 get_initial_directory (new_path, PATH_MAX_INTERNAL - 1);
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
275 new_path += qxestrlen (new_path);
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
276 if (!IS_DIRECTORY_SEP (new_path[-1]))
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
277 *new_path++ = DIRECTORY_SEP;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
278 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
279 #else
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
280 /* If it's a relative pathname use get_initial_directory for starters. */
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
281 else if (abslen == 0)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
282 {
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
283 get_initial_directory (new_path, PATH_MAX_INTERNAL - 1);
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
284 new_path += qxestrlen (new_path);
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
285 if (!IS_DIRECTORY_SEP (new_path[-1]))
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
286 *new_path++ = DIRECTORY_SEP;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
287 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
288 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
289 {
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
290 /* Copy first directory sep. May have two on cygwin. */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
291 qxestrncpy (new_path, path, abslen);
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
292 new_path += abslen;
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
293 path += abslen;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
294 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
295 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
296 /* Expand each slash-separated pathname component. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
297 while (*path != '\0')
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
298 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
299 /* Ignore stray "/". */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
300 if (IS_DIRECTORY_SEP (*path))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
301 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
302 path++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
303 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
304 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
305
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
306 if (*path == '.')
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
307 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
308 /* Ignore ".". */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
309 if (path[1] == '\0' || IS_DIRECTORY_SEP (path[1]))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
310 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
311 path++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
312 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
313 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
314
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
315 /* Handle ".." */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
316 if (path[1] == '.' &&
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
317 (path[2] == '\0' || IS_DIRECTORY_SEP (path[2])))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
318 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
319 path += 2;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
320
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
321 /* Ignore ".." at root. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
322 if (new_path == resolved_path + abs_start (resolved_path))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
323 continue;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
324
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
325 /* Handle ".." by backing up. */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
326 --new_path;
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
327 while (!IS_DIRECTORY_SEP (new_path[-1]))
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
328 --new_path;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
329 continue;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
330 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
331 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
332
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
333 /* Safely copy the next pathname component. */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
334 while (*path != '\0' && !IS_DIRECTORY_SEP (*path))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
335 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
336 if (path > max_path)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
337 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
338 errno = ENAMETOOLONG;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
339 goto done;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
340 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
341 *new_path++ = *path++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
342 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
343
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
344 #if defined (HAVE_READLINK) || defined (WIN32_ANY)
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
345 /* See if latest pathname component is a symlink or needs case
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
346 correction. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
347 *new_path = '\0';
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
348 n = readlink_or_correct_case (resolved_path, link_path,
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
349 PATH_MAX_INTERNAL - 1, links_only);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
350
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
351 if (n < 0)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
352 {
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
353 /* EINVAL means the file exists but isn't a symlink or doesn't
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
354 need case correction. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
355 #ifdef WIN32_ANY
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
356 if (errno != EINVAL && errno != ENOENT)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
357 #else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
358 if (errno != EINVAL)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
359 #endif
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
360 goto done;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
361 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
362 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
363 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
364 /* Protect against infinite loops. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
365 if (readlinks++ > MAX_READLINKS)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
366 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
367 errno = ELOOP;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
368 goto done;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
369 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
370
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
371 /* Note: readlink doesn't add the null byte. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
372 link_path[n] = '\0';
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
373
1760
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
374 abslen = abs_start (link_path);
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
375 if (abslen > 0)
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
376 {
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
377 /* Start over for an absolute symlink. */
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
378 new_path = resolved_path;
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
379 qxestrcat (link_path, path);
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
380 path = link_path;
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
381 goto restart;
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
382 }
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
383
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
384 /* Otherwise back up over this component. */
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
385 for (--new_path; !IS_DIRECTORY_SEP (*new_path); --new_path)
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
386 assert (new_path > resolved_path);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
387
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
388 /* Safe sex check. */
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
389 if (qxestrlen (path) + n >= PATH_MAX_INTERNAL)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
390 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
391 errno = ENAMETOOLONG;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
392 goto done;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
393 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
394
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
395 /* Insert symlink contents into path. */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
396 qxestrcat (link_path, path);
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
397 qxestrcpy (copy_path, link_path);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
398 path = copy_path;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
399 }
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
400 #endif /* HAVE_READLINK || WIN32_ANY */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
401 *new_path++ = DIRECTORY_SEP;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
402 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
403
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
404 /* Delete trailing slash but don't whomp a lone slash. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
405 if (new_path != resolved_path + abs_start (resolved_path) &&
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
406 IS_DIRECTORY_SEP (new_path[-1]))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
407 new_path--;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
408
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
409 /* Make sure it's null terminated. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
410 *new_path = '\0';
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
411
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
412 retval = resolved_path;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
413 done:
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
414 PROFILE_RECORD_EXITING_SECTION (QSin_qxe_realpath);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
415 return retval;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
416 }
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
417
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
418 void
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
419 vars_of_realpath (void)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
420 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
421 QSin_qxe_realpath =
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
422 build_msg_string ("(in qxe_realpath)");
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
423 staticpro (&QSin_qxe_realpath);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
424 }