annotate src/realpath.c @ 3042:967fea9dfad5

[xemacs-hg @ 2005-11-02 03:30:17 by crestani] * realpath.c (readlink_or_correct_case): Mark parameter as unused.
author crestani
date Wed, 02 Nov 2005 03:30:19 +0000
parents 902d5bd9b75c
children d00888bfced1
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
967fea9dfad5 [xemacs-hg @ 2005-11-02 03:30:17 by crestani]
crestani
parents: 2526
diff changeset
84 Boolint UNUSED (links_only))
967fea9dfad5 [xemacs-hg @ 2005-11-02 03:30:17 by crestani]
crestani
parents: 2526
diff changeset
85 #else
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
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
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
88 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
89 #ifndef WIN32_ANY
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
90 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
91 #else
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
92 # ifdef CYGWIN
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
93 Ibyte *tmp;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
94 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
95 if (n >= 0 || errno != EINVAL)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
96 return n;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
97
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
98 /* 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
99 right name. */
2367
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 1760
diff changeset
100 tmp =
ecf1ebac70d8 [xemacs-hg @ 2004-11-04 23:05:23 by ben]
ben
parents: 1760
diff changeset
101 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
102 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
103 name = tmp;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
104 # else
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
105 if (mswindows_shortcuts_are_symlinks)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
106 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
107 Ibyte *tmp = mswindows_read_link (name);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
108
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
109 if (tmp != NULL)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
110 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
111 /* Fucking fixed buffers. */
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
112 Bytecount len = qxestrlen (tmp);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
113 if (len > size)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
114 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
115 errno = ENAMETOOLONG;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
116 return -1;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
117 }
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
118 memcpy (buf, tmp, len);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
119 xfree (tmp, Ibyte *);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
120 return len;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
121 }
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
122 }
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
123 # endif
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
124
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
125 if (links_only)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
126 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
127 errno = EINVAL;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
128 return -1;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
129 }
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
130
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
131 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
132 int len = 0;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
133 int err = 0;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
134 const Ibyte *lastname;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
135 int count = 0;
1204
e22b0213b713 [xemacs-hg @ 2003-01-12 11:07:58 by michaels]
michaels
parents: 1116
diff changeset
136 const Ibyte *nn;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
137 DECLARE_EISTRING (result);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
138
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
139 assert (*name);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
140
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
141 /* Sort of check we have a valid filename. */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
142 if (qxestrpbrk (name, "*?|<>\""))
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
143 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
144 errno = ENOENT;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
145 return -1;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
146 }
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
147 else if (qxestrlen (name) >= PATH_MAX_INTERNAL)
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
148 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
149 errno = ENAMETOOLONG;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
150 return -1;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
151 }
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 /* Find start of filename */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
154 lastname = name + qxestrlen (name);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
155 while (lastname > name && !IS_DIRECTORY_SEP (lastname[-1]))
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
156 --lastname;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
157
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
158 /* Count slashes in unc path */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
159 if (abs_start (name) == 2)
1204
e22b0213b713 [xemacs-hg @ 2003-01-12 11:07:58 by michaels]
michaels
parents: 1116
diff changeset
160 for (nn = name; *nn; nn++)
e22b0213b713 [xemacs-hg @ 2003-01-12 11:07:58 by michaels]
michaels
parents: 1116
diff changeset
161 if (IS_DIRECTORY_SEP (*nn))
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
162 count++;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
163
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
164 if (count >= 2 && count < 4)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
165 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
166 eicpy_rawz (result, lastname);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
167 eilwr (result);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
168 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
169 else
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
170 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
171 WIN32_FIND_DATAW find_data;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
172 Extbyte *nameext;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
173 HANDLE dir_handle;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
174
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
175 C_STRING_TO_TSTR (name, nameext);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
176 dir_handle = qxeFindFirstFile (nameext, &find_data);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
177 if (dir_handle == INVALID_HANDLE_VALUE)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
178 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
179 errno = ENOENT;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
180 return -1;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
181 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
182 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
183 FindClose (dir_handle);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
184 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
185
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
186 if ((len = eilen (result)) <= size)
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
187 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
188 DECLARE_EISTRING (eilastname);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
189
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
190 eicpy_rawz (eilastname, lastname);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
191 if (eicmp_ei (eilastname, result) == 0)
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
192 /* Signal that the name is already OK. */
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
193 err = EINVAL;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
194 else
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
195 memcpy (buf, eidata (result), len);
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
196 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
197 else
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
198 err = ENAMETOOLONG;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
199
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
200 errno = err;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
201 return err ? -1 : len;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
202 }
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
203 #endif /* WIN32_ANY */
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
204 }
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
205
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
206 /* 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
207 internally-formatted strings.
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
208
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
209 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
210 Windows. */
440
8de8e3f6228a Import from CVS: tag r21-2-28
cvs
parents: 428
diff changeset
211
867
804517e16990 [xemacs-hg @ 2002-06-05 09:54:39 by ben]
ben
parents: 851
diff changeset
212 Ibyte *
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
213 qxe_realpath (const Ibyte *path, Ibyte *resolved_path, Boolint links_only)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
214 {
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
215 Ibyte copy_path[PATH_MAX_INTERNAL];
867
804517e16990 [xemacs-hg @ 2002-06-05 09:54:39 by ben]
ben
parents: 851
diff changeset
216 Ibyte *new_path = resolved_path;
804517e16990 [xemacs-hg @ 2002-06-05 09:54:39 by ben]
ben
parents: 851
diff changeset
217 Ibyte *max_path;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
218 Ibyte *retval = NULL;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
219 #if defined (HAVE_READLINK) || defined (WIN32_ANY)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
220 int readlinks = 0;
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
221 Ibyte link_path[PATH_MAX_INTERNAL];
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
222 int n;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
223 int abslen = abs_start (path);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
224 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
225
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
226 PROFILE_DECLARE ();
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
227
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
228 PROFILE_RECORD_ENTERING_SECTION (QSin_qxe_realpath);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
229
1760
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
230 restart:
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
231
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
232 /* 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
233 qxestrcpy (copy_path, path);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
234 path = copy_path;
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
235 max_path = copy_path + PATH_MAX_INTERNAL - 2;
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
236
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
237 if (0)
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
238 ;
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
239 #ifdef WIN32_ANY
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
240 /* Check for c:/... or //server/... */
988
5df795348f45 [xemacs-hg @ 2002-09-01 22:13:52 by andyp]
andyp
parents: 867
diff changeset
241 else if (abslen == 3 || abslen == 2)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
242 {
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
243 /* Make sure drive letter is lowercased. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
244 if (abslen == 3)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
245 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
246 *new_path = tolower (*path);
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
247 new_path++;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
248 path++;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
249 abslen--;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
250 }
988
5df795348f45 [xemacs-hg @ 2002-09-01 22:13:52 by andyp]
andyp
parents: 867
diff changeset
251 /* Coerce directory chars. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
252 while (abslen-- > 0)
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
253 {
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
254 if (IS_DIRECTORY_SEP (*path))
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
255 *new_path++ = DIRECTORY_SEP;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
256 else
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
257 *new_path++ = *path;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
258 path++;
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
259 }
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
260 }
819
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
261 #endif
6504113e7c2d [xemacs-hg @ 2002-04-25 18:03:23 by andyp]
andyp
parents: 771
diff changeset
262 #ifdef WIN32_NATIVE
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
263 /* No drive letter, but a beginning slash? Prepend drive letter. */
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
264 else if (abslen == 1)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
265 {
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
266 get_initial_directory (new_path, PATH_MAX_INTERNAL - 1);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
267 new_path += 3;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
268 path++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
269 }
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
270 /* 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
271 else
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
272 {
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
273 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
274 new_path += qxestrlen (new_path);
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
275 if (!IS_DIRECTORY_SEP (new_path[-1]))
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
276 *new_path++ = DIRECTORY_SEP;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
277 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
278 #else
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
279 /* 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
280 else if (abslen == 0)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
281 {
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
282 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
283 new_path += qxestrlen (new_path);
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
284 if (!IS_DIRECTORY_SEP (new_path[-1]))
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
285 *new_path++ = DIRECTORY_SEP;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
286 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
287 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
288 {
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
289 /* 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
290 qxestrncpy (new_path, path, abslen);
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
291 new_path += abslen;
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
292 path += abslen;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
293 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
294 #endif
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
295 /* Expand each slash-separated pathname component. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
296 while (*path != '\0')
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
297 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
298 /* Ignore stray "/". */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
299 if (IS_DIRECTORY_SEP (*path))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
300 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
301 path++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
302 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
303 }
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 if (*path == '.')
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
306 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
307 /* Ignore ".". */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
308 if (path[1] == '\0' || IS_DIRECTORY_SEP (path[1]))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
309 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
310 path++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
311 continue;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
312 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
313
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
314 /* Handle ".." */
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
315 if (path[1] == '.' &&
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
316 (path[2] == '\0' || IS_DIRECTORY_SEP (path[2])))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
317 {
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
318 path += 2;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
319
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
320 /* Ignore ".." at root. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
321 if (new_path == resolved_path + abs_start (resolved_path))
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
322 continue;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
323
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
324 /* Handle ".." by backing up. */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
325 --new_path;
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
326 while (!IS_DIRECTORY_SEP (new_path[-1]))
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
327 --new_path;
442
abe6d1db359e Import from CVS: tag r21-2-36
cvs
parents: 440
diff changeset
328 continue;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
329 }
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 /* Safely copy the next pathname component. */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
333 while (*path != '\0' && !IS_DIRECTORY_SEP (*path))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
334 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
335 if (path > max_path)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
336 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
337 errno = ENAMETOOLONG;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
338 goto done;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
339 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
340 *new_path++ = *path++;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
341 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
342
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
343 #if defined (HAVE_READLINK) || defined (WIN32_ANY)
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
344 /* 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
345 correction. */
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
346 *new_path = '\0';
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
347 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
348 PATH_MAX_INTERNAL - 1, links_only);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
349
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
350 if (n < 0)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
351 {
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
352 /* 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
353 need case correction. */
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
354 #ifdef WIN32_ANY
462
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
355 if (errno != EINVAL && errno != ENOENT)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
356 #else
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
357 if (errno != EINVAL)
0784d089fdc9 Import from CVS: tag r21-2-46
cvs
parents: 446
diff changeset
358 #endif
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
359 goto done;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
360 }
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
361 else
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
362 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
363 /* Protect against infinite loops. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
364 if (readlinks++ > MAX_READLINKS)
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
365 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
366 errno = ELOOP;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
367 goto done;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
368 }
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 /* Note: readlink doesn't add the null byte. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
371 link_path[n] = '\0';
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
372
1760
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
373 abslen = abs_start (link_path);
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
374 if (abslen > 0)
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
375 {
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
376 /* Start over for an absolute symlink. */
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
377 new_path = resolved_path;
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
378 qxestrcat (link_path, path);
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
379 path = link_path;
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
380 goto restart;
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
381 }
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 /* Otherwise back up over this component. */
0240ff815597 [xemacs-hg @ 2003-10-22 14:16:58 by james]
james
parents: 1204
diff changeset
384 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
385 assert (new_path > resolved_path);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
386
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
387 /* Safe sex check. */
2421
ab71ad6ff3dd [xemacs-hg @ 2004-12-06 03:50:53 by ben]
ben
parents: 2367
diff changeset
388 if (qxestrlen (path) + n >= PATH_MAX_INTERNAL)
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
389 {
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
390 errno = ENAMETOOLONG;
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
391 goto done;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
392 }
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 /* Insert symlink contents into path. */
771
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
395 qxestrcat (link_path, path);
943eaba38521 [xemacs-hg @ 2002-03-13 08:51:24 by ben]
ben
parents: 593
diff changeset
396 qxestrcpy (copy_path, link_path);
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
397 path = copy_path;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
398 }
1116
3bcd77d0bf93 [xemacs-hg @ 2002-11-22 12:57:09 by ben]
ben
parents: 988
diff changeset
399 #endif /* HAVE_READLINK || WIN32_ANY */
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
400 *new_path++ = DIRECTORY_SEP;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
401 }
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 /* 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
404 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
405 IS_DIRECTORY_SEP (new_path[-1]))
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
406 new_path--;
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
407
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
408 /* Make sure it's null terminated. */
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
409 *new_path = '\0';
446
1ccc32a20af4 Import from CVS: tag r21-2-38
cvs
parents: 442
diff changeset
410
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
411 retval = resolved_path;
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
412 done:
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
413 PROFILE_RECORD_EXITING_SECTION (QSin_qxe_realpath);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
414 return retval;
428
3ecd8885ac67 Import from CVS: tag r21-2-22
cvs
parents:
diff changeset
415 }
2526
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
416
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
417 void
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
418 vars_of_realpath (void)
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
419 {
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
420 QSin_qxe_realpath =
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
421 build_msg_string ("(in qxe_realpath)");
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
422 staticpro (&QSin_qxe_realpath);
902d5bd9b75c [xemacs-hg @ 2005-01-28 02:36:11 by ben]
ben
parents: 2421
diff changeset
423 }