4 * Copyright 2002, 2003, 2004 Alexandre Julliard
5 * Copyright 2003 Eric Pouech
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include <sys/types.h>
26 #define WIN32_NO_STATUS
29 #include "wine/debug.h"
30 #include "ntdll_misc.h"
32 WINE_DEFAULT_DEBUG_CHANNEL(file
);
34 #define IS_SEPARATOR(ch) ((ch) == '\\' || (ch) == '/')
36 /***********************************************************************
37 * RtlDetermineDosPathNameType_U (NTDLL.@)
39 DOS_PATHNAME_TYPE WINAPI
RtlDetermineDosPathNameType_U( PCWSTR path
)
41 if (IS_SEPARATOR(path
[0]))
43 if (!IS_SEPARATOR(path
[1])) return ABSOLUTE_PATH
; /* "/foo" */
44 if (path
[2] != '.' && path
[2] != '?') return UNC_PATH
; /* "//foo" */
45 if (IS_SEPARATOR(path
[3])) return DEVICE_PATH
; /* "//./foo" or "//?/foo" */
46 if (path
[3]) return UNC_PATH
; /* "//.foo" or "//?foo" */
47 return UNC_DOT_PATH
; /* "//." or "//?" */
51 if (!path
[0] || path
[1] != ':') return RELATIVE_PATH
; /* "foo" */
52 if (IS_SEPARATOR(path
[2])) return ABSOLUTE_DRIVE_PATH
; /* "c:/foo" */
53 return RELATIVE_DRIVE_PATH
; /* "c:foo" */
57 /***********************************************************************
58 * RtlIsDosDeviceName_U (NTDLL.@)
60 * Check if the given DOS path contains a DOS device name.
62 * Returns the length of the device name in the low word and its
63 * position in the high word (both in bytes, not WCHARs), or 0 if no
64 * device name is found.
66 ULONG WINAPI
RtlIsDosDeviceName_U( PCWSTR dos_name
)
68 static const WCHAR auxW
[] = {'A','U','X'};
69 static const WCHAR comW
[] = {'C','O','M'};
70 static const WCHAR conW
[] = {'C','O','N'};
71 static const WCHAR lptW
[] = {'L','P','T'};
72 static const WCHAR nulW
[] = {'N','U','L'};
73 static const WCHAR prnW
[] = {'P','R','N'};
74 static const WCHAR coninW
[] = {'C','O','N','I','N','$'};
75 static const WCHAR conoutW
[] = {'C','O','N','O','U','T','$'};
77 const WCHAR
*start
, *end
, *p
;
79 switch(RtlDetermineDosPathNameType_U( dos_name
))
85 if (!wcsicmp( dos_name
, L
"\\\\.\\CON" ))
86 return MAKELONG( sizeof(conW
), 4 * sizeof(WCHAR
) ); /* 4 is length of \\.\ prefix */
88 case ABSOLUTE_DRIVE_PATH
:
89 case RELATIVE_DRIVE_PATH
:
90 start
= dos_name
+ 2; /* skip drive letter */
97 /* find start of file name */
98 for (p
= start
; *p
; p
++) if (IS_SEPARATOR(*p
)) start
= p
+ 1;
100 /* truncate at extension and ':' */
101 for (end
= start
; *end
; end
++) if (*end
== '.' || *end
== ':') break;
104 /* remove trailing spaces */
105 while (end
>= start
&& *end
== ' ') end
--;
107 /* now we have a potential device name between start and end, check it */
108 switch(end
- start
+ 1)
111 if (wcsnicmp( start
, auxW
, 3 ) &&
112 wcsnicmp( start
, conW
, 3 ) &&
113 wcsnicmp( start
, nulW
, 3 ) &&
114 wcsnicmp( start
, prnW
, 3 )) break;
115 return MAKELONG( 3 * sizeof(WCHAR
), (start
- dos_name
) * sizeof(WCHAR
) );
117 if (wcsnicmp( start
, comW
, 3 ) && wcsnicmp( start
, lptW
, 3 )) break;
118 if (*end
<= '0' || *end
> '9') break;
119 return MAKELONG( 4 * sizeof(WCHAR
), (start
- dos_name
) * sizeof(WCHAR
) );
121 if (wcsnicmp( start
, coninW
, ARRAY_SIZE(coninW
) )) break;
122 return MAKELONG( sizeof(coninW
), (start
- dos_name
) * sizeof(WCHAR
) );
124 if (wcsnicmp( start
, conoutW
, ARRAY_SIZE(conoutW
) )) break;
125 return MAKELONG( sizeof(conoutW
), (start
- dos_name
) * sizeof(WCHAR
) );
126 default: /* can't match anything */
132 /******************************************************************
135 * Helper for RtlDosPathNameToNtPathName_U_WithStatus.
136 * Test if the path is an existing directory.
138 static BOOL
is_valid_directory(LPCWSTR path
)
140 OBJECT_ATTRIBUTES attr
;
141 UNICODE_STRING ntpath
;
146 if (!RtlDosPathNameToNtPathName_U(path
, &ntpath
, NULL
, NULL
))
149 attr
.Length
= sizeof(attr
);
150 attr
.RootDirectory
= 0;
151 attr
.Attributes
= OBJ_CASE_INSENSITIVE
;
152 attr
.ObjectName
= &ntpath
;
153 attr
.SecurityDescriptor
= NULL
;
154 attr
.SecurityQualityOfService
= NULL
;
156 nts
= NtOpenFile(&handle
, FILE_READ_ATTRIBUTES
| SYNCHRONIZE
, &attr
, &io
,
157 FILE_SHARE_READ
| FILE_SHARE_WRITE
| FILE_SHARE_DELETE
,
158 FILE_DIRECTORY_FILE
| FILE_SYNCHRONOUS_IO_NONALERT
);
159 RtlFreeUnicodeString(&ntpath
);
160 if (nts
!= STATUS_SUCCESS
)
166 /**************************************************************************
167 * RtlDosPathNameToNtPathName_U_WithStatus [NTDLL.@]
169 * dos_path: a DOS path name (fully qualified or not)
170 * ntpath: pointer to a UNICODE_STRING to hold the converted
172 * file_part:will point (in ntpath) to the file part in the path
173 * cd: directory reference (optional)
176 * + fill the cd structure
178 NTSTATUS WINAPI
RtlDosPathNameToNtPathName_U_WithStatus(const WCHAR
*dos_path
, UNICODE_STRING
*ntpath
,
179 WCHAR
**file_part
, CURDIR
*cd
)
181 static const WCHAR global_prefix
[] = {'\\','\\','?','\\'};
182 static const WCHAR global_prefix2
[] = {'\\','?','?','\\'};
183 NTSTATUS nts
= STATUS_SUCCESS
;
184 ULONG sz
, offset
, dosdev
;
185 WCHAR local
[MAX_PATH
];
188 TRACE("(%s,%p,%p,%p)\n", debugstr_w(dos_path
), ntpath
, file_part
, cd
);
192 FIXME("Unsupported parameter\n");
193 memset(cd
, 0, sizeof(*cd
));
196 if (!dos_path
|| !*dos_path
)
197 return STATUS_OBJECT_NAME_INVALID
;
199 if (!memcmp(dos_path
, global_prefix
, sizeof(global_prefix
)) ||
200 (!memcmp(dos_path
, global_prefix2
, sizeof(global_prefix2
)) && dos_path
[4]) ||
201 !wcsicmp( dos_path
, L
"\\\\.\\CON" ))
203 ntpath
->Length
= wcslen(dos_path
) * sizeof(WCHAR
);
204 ntpath
->MaximumLength
= ntpath
->Length
+ sizeof(WCHAR
);
205 ntpath
->Buffer
= RtlAllocateHeap(GetProcessHeap(), 0, ntpath
->MaximumLength
);
206 if (!ntpath
->Buffer
) return STATUS_NO_MEMORY
;
207 memcpy( ntpath
->Buffer
, dos_path
, ntpath
->MaximumLength
);
208 ntpath
->Buffer
[1] = '?'; /* change \\?\ to \??\ */
209 ntpath
->Buffer
[2] = '?';
212 if ((ptr
= wcsrchr( ntpath
->Buffer
, '\\' )) && ptr
[1]) *file_part
= ptr
+ 1;
213 else *file_part
= NULL
;
215 return STATUS_SUCCESS
;
218 dosdev
= RtlIsDosDeviceName_U(dos_path
);
219 if ((offset
= HIWORD(dosdev
)))
221 sz
= offset
+ sizeof(WCHAR
);
223 if (sz
> sizeof(local
) &&
224 (!(ptr
= RtlAllocateHeap(GetProcessHeap(), 0, sz
))))
225 return STATUS_NO_MEMORY
;
227 memcpy(ptr
, dos_path
, offset
);
228 ptr
[offset
/sizeof(WCHAR
)] = '\0';
230 if (!is_valid_directory(ptr
))
232 nts
= STATUS_OBJECT_NAME_INVALID
;
236 if (file_part
) *file_part
= NULL
;
240 wcscpy(ptr
, L
"\\\\.\\");
241 memcpy(ptr
+ 4, dos_path
+ offset
/ sizeof(WCHAR
), sz
);
242 ptr
[4 + sz
/ sizeof(WCHAR
)] = '\0';
243 sz
+= 4 * sizeof(WCHAR
);
247 sz
= RtlGetFullPathName_U(dos_path
, sizeof(local
), ptr
, file_part
);
248 if (sz
== 0) return STATUS_OBJECT_NAME_INVALID
;
250 if (sz
> sizeof(local
))
252 if (!(ptr
= RtlAllocateHeap(GetProcessHeap(), 0, sz
))) return STATUS_NO_MEMORY
;
253 sz
= RtlGetFullPathName_U(dos_path
, sz
, ptr
, file_part
);
256 sz
+= (1 /* NUL */ + 4 /* unc\ */ + 4 /* \??\ */) * sizeof(WCHAR
);
259 nts
= STATUS_OBJECT_NAME_INVALID
;
263 ntpath
->MaximumLength
= sz
;
264 ntpath
->Buffer
= RtlAllocateHeap(GetProcessHeap(), 0, ntpath
->MaximumLength
);
267 nts
= STATUS_NO_MEMORY
;
271 wcscpy(ntpath
->Buffer
, L
"\\??\\");
272 switch (RtlDetermineDosPathNameType_U(ptr
))
274 case UNC_PATH
: /* \\foo */
276 wcscat(ntpath
->Buffer
, L
"UNC\\");
278 case DEVICE_PATH
: /* \\.\foo */
286 wcscat(ntpath
->Buffer
, ptr
+ offset
);
287 ntpath
->Length
= wcslen(ntpath
->Buffer
) * sizeof(WCHAR
);
289 if (file_part
&& *file_part
)
290 *file_part
= ntpath
->Buffer
+ ntpath
->Length
/ sizeof(WCHAR
) - wcslen(*file_part
);
292 /* FIXME: cd filling */
295 if (ptr
!= local
) RtlFreeHeap(GetProcessHeap(), 0, ptr
);
299 /**************************************************************************
300 * RtlDosPathNameToNtPathName_U [NTDLL.@]
302 * See RtlDosPathNameToNtPathName_U_WithStatus
304 BOOLEAN WINAPI
RtlDosPathNameToNtPathName_U(PCWSTR dos_path
,
305 PUNICODE_STRING ntpath
,
309 return RtlDosPathNameToNtPathName_U_WithStatus(dos_path
, ntpath
, file_part
, cd
) == STATUS_SUCCESS
;
312 /**************************************************************************
313 * RtlDosPathNameToRelativeNtPathName_U_WithStatus [NTDLL.@]
315 * See RtlDosPathNameToNtPathName_U_WithStatus (except the last parameter)
317 NTSTATUS WINAPI
RtlDosPathNameToRelativeNtPathName_U_WithStatus(const WCHAR
*dos_path
,
318 UNICODE_STRING
*ntpath
, WCHAR
**file_part
, RTL_RELATIVE_NAME
*relative
)
320 TRACE("(%s,%p,%p,%p)\n", debugstr_w(dos_path
), ntpath
, file_part
, relative
);
324 FIXME("Unsupported parameter\n");
325 memset(relative
, 0, sizeof(*relative
));
328 /* FIXME: fill parameter relative */
330 return RtlDosPathNameToNtPathName_U_WithStatus(dos_path
, ntpath
, file_part
, NULL
);
333 /**************************************************************************
334 * RtlReleaseRelativeName [NTDLL.@]
336 void WINAPI
RtlReleaseRelativeName(RTL_RELATIVE_NAME
*relative
)
340 /******************************************************************
343 * Searches a file of name 'name' into a ';' separated list of paths
345 * Doesn't seem to search elsewhere than the paths list
346 * Stores the result in buffer (file_part will point to the position
347 * of the file name in the buffer)
349 * - how long shall the paths be ??? (MAX_PATH or larger with \\?\ constructs ???)
351 ULONG WINAPI
RtlDosSearchPath_U(LPCWSTR paths
, LPCWSTR search
, LPCWSTR ext
,
352 ULONG buffer_size
, LPWSTR buffer
,
355 DOS_PATHNAME_TYPE type
= RtlDetermineDosPathNameType_U(search
);
358 if (type
== RELATIVE_PATH
)
360 ULONG allocated
= 0, needed
, filelen
;
363 filelen
= 1 /* for \ */ + wcslen(search
) + 1 /* \0 */;
365 /* Windows only checks for '.' without worrying about path components */
366 if (wcschr( search
, '.' )) ext
= NULL
;
367 if (ext
!= NULL
) filelen
+= wcslen(ext
);
373 for (needed
= 0, ptr
= paths
; *ptr
!= 0 && *ptr
++ != ';'; needed
++);
374 if (needed
+ filelen
> allocated
)
376 if (!name
) name
= RtlAllocateHeap(GetProcessHeap(), 0,
377 (needed
+ filelen
) * sizeof(WCHAR
));
380 WCHAR
*newname
= RtlReAllocateHeap(GetProcessHeap(), 0, name
,
381 (needed
+ filelen
) * sizeof(WCHAR
));
382 if (!newname
) RtlFreeHeap(GetProcessHeap(), 0, name
);
386 allocated
= needed
+ filelen
;
388 memmove(name
, paths
, needed
* sizeof(WCHAR
));
389 /* append '\\' if none is present */
390 if (needed
> 0 && name
[needed
- 1] != '\\') name
[needed
++] = '\\';
391 wcscpy(&name
[needed
], search
);
392 if (ext
) wcscat(&name
[needed
], ext
);
393 if (RtlDoesFileExists_U(name
))
395 len
= RtlGetFullPathName_U(name
, buffer_size
, buffer
, file_part
);
400 RtlFreeHeap(GetProcessHeap(), 0, name
);
402 else if (RtlDoesFileExists_U(search
))
404 len
= RtlGetFullPathName_U(search
, buffer_size
, buffer
, file_part
);
411 /******************************************************************
414 * Helper for RtlGetFullPathName_U.
415 * Get rid of . and .. components in the path.
417 static inline void collapse_path( WCHAR
*path
, UINT mark
)
421 /* convert every / into a \ */
422 for (p
= path
; *p
; p
++) if (*p
== '/') *p
= '\\';
424 /* collapse duplicate backslashes */
425 next
= path
+ max( 1, mark
);
426 for (p
= next
; *p
; p
++) if (*p
!= '\\' || next
[-1] != '\\') *next
++ = *p
;
436 case '\\': /* .\ component */
438 memmove( p
, next
, (wcslen(next
) + 1) * sizeof(WCHAR
) );
440 case 0: /* final . */
441 if (p
> path
+ mark
) p
--;
445 if (p
[2] == '\\') /* ..\ component */
451 while (p
> path
+ mark
&& p
[-1] != '\\') p
--;
453 memmove( p
, next
, (wcslen(next
) + 1) * sizeof(WCHAR
) );
456 else if (!p
[2]) /* final .. */
461 while (p
> path
+ mark
&& p
[-1] != '\\') p
--;
462 if (p
> path
+ mark
) p
--;
470 /* skip to the next component */
471 while (*p
&& *p
!= '\\') p
++;
474 /* remove last dot in previous dir name */
475 if (p
> path
+ mark
&& p
[-1] == '.') memmove( p
-1, p
, (wcslen(p
) + 1) * sizeof(WCHAR
) );
480 /* remove trailing spaces and dots (yes, Windows really does that, don't ask) */
481 while (p
> path
+ mark
&& (p
[-1] == ' ' || p
[-1] == '.')) p
--;
486 /******************************************************************
489 * Skip the \\share\dir\ part of a file name. Helper for RtlGetFullPathName_U.
491 static const WCHAR
*skip_unc_prefix( const WCHAR
*ptr
)
494 while (*ptr
&& !IS_SEPARATOR(*ptr
)) ptr
++; /* share name */
495 while (IS_SEPARATOR(*ptr
)) ptr
++;
496 while (*ptr
&& !IS_SEPARATOR(*ptr
)) ptr
++; /* dir name */
497 while (IS_SEPARATOR(*ptr
)) ptr
++;
502 /******************************************************************
503 * get_full_path_helper
505 * Helper for RtlGetFullPathName_U
506 * Note: name and buffer are allowed to point to the same memory spot
508 static ULONG
get_full_path_helper(LPCWSTR name
, LPWSTR buffer
, ULONG size
)
510 ULONG reqsize
= 0, mark
= 0, dep
= 0, deplen
;
511 LPWSTR ins_str
= NULL
;
513 const UNICODE_STRING
* cd
;
516 /* return error if name only consists of spaces */
517 for (ptr
= name
; *ptr
; ptr
++) if (*ptr
!= ' ') break;
522 if (NtCurrentTeb()->Tib
.SubSystemTib
) /* FIXME: hack */
523 cd
= &((WIN16_SUBSYSTEM_TIB
*)NtCurrentTeb()->Tib
.SubSystemTib
)->curdir
.DosPath
;
525 cd
= &NtCurrentTeb()->Peb
->ProcessParameters
->CurrentDirectory
.DosPath
;
527 switch (RtlDetermineDosPathNameType_U(name
))
529 case UNC_PATH
: /* \\foo */
530 ptr
= skip_unc_prefix( name
);
534 case DEVICE_PATH
: /* \\.\foo */
538 case ABSOLUTE_DRIVE_PATH
: /* c:\foo */
539 reqsize
= sizeof(WCHAR
);
546 case RELATIVE_DRIVE_PATH
: /* c:foo */
548 if (wcsnicmp( name
, cd
->Buffer
, 2 ))
550 UNICODE_STRING var
, val
;
556 var
.Length
= 3 * sizeof(WCHAR
);
557 var
.MaximumLength
= 4 * sizeof(WCHAR
);
560 val
.MaximumLength
= size
;
561 val
.Buffer
= RtlAllocateHeap(GetProcessHeap(), 0, size
);
563 switch (RtlQueryEnvironmentVariable_U(NULL
, &var
, &val
))
566 /* FIXME: Win2k seems to check that the environment variable actually points
567 * to an existing directory. If not, root of the drive is used
568 * (this seems also to be the only spot in RtlGetFullPathName that the
569 * existence of a part of a path is checked)
572 case STATUS_BUFFER_TOO_SMALL
:
573 reqsize
= val
.Length
+ sizeof(WCHAR
); /* append trailing '\\' */
574 val
.Buffer
[val
.Length
/ sizeof(WCHAR
)] = '\\';
575 ins_str
= val
.Buffer
;
577 case STATUS_VARIABLE_NOT_FOUND
:
578 reqsize
= 3 * sizeof(WCHAR
);
583 RtlFreeHeap(GetProcessHeap(), 0, val
.Buffer
);
586 ERR("Unsupported status code\n");
587 RtlFreeHeap(GetProcessHeap(), 0, val
.Buffer
);
595 case RELATIVE_PATH
: /* foo */
596 reqsize
= cd
->Length
;
597 ins_str
= cd
->Buffer
;
598 if (cd
->Buffer
[1] != ':')
600 ptr
= skip_unc_prefix( cd
->Buffer
);
601 mark
= ptr
- cd
->Buffer
;
606 case ABSOLUTE_PATH
: /* \xxx */
607 if (name
[0] == '/') /* may be a Unix path */
614 OBJECT_ATTRIBUTES attr
;
616 nt_str
= RtlAllocateHeap( GetProcessHeap(), 0, (wcslen(name
) + 9) * sizeof(WCHAR
) );
617 wcscpy( nt_str
, L
"\\??\\unix" );
618 wcscat( nt_str
, name
);
619 RtlInitUnicodeString( &str
, nt_str
);
620 InitializeObjectAttributes( &attr
, &str
, 0, 0, NULL
);
621 buflen
= 3 * wcslen(name
) + 1;
622 unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, buflen
);
623 status
= wine_nt_to_unix_file_name( &attr
, unix_name
, &buflen
, FILE_OPEN_IF
);
624 if (!status
|| status
== STATUS_NO_SUCH_FILE
)
626 buflen
= wcslen(name
) + 9;
627 status
= wine_unix_to_nt_file_name( unix_name
, nt_str
, &buflen
);
629 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
630 if (!status
&& buflen
> 6 && nt_str
[5] == ':')
632 reqsize
= (buflen
- 4) * sizeof(WCHAR
);
635 memcpy( buffer
, nt_str
+ 4, reqsize
);
636 collapse_path( buffer
, 3 );
637 reqsize
-= sizeof(WCHAR
);
639 RtlFreeHeap( GetProcessHeap(), 0, nt_str
);
642 RtlFreeHeap( GetProcessHeap(), 0, nt_str
);
644 if (cd
->Buffer
[1] == ':')
646 reqsize
= 2 * sizeof(WCHAR
);
647 tmp
[0] = cd
->Buffer
[0];
654 ptr
= skip_unc_prefix( cd
->Buffer
);
655 reqsize
= (ptr
- cd
->Buffer
) * sizeof(WCHAR
);
656 mark
= reqsize
/ sizeof(WCHAR
);
657 ins_str
= cd
->Buffer
;
661 case UNC_DOT_PATH
: /* \\. */
662 reqsize
= 4 * sizeof(WCHAR
);
677 deplen
= wcslen(name
+ dep
) * sizeof(WCHAR
);
678 if (reqsize
+ deplen
+ sizeof(WCHAR
) > size
)
680 /* not enough space, return need size (including terminating '\0') */
681 reqsize
+= deplen
+ sizeof(WCHAR
);
685 memmove(buffer
+ reqsize
/ sizeof(WCHAR
), name
+ dep
, deplen
+ sizeof(WCHAR
));
686 if (reqsize
) memcpy(buffer
, ins_str
, reqsize
);
688 if (ins_str
!= tmp
&& ins_str
!= cd
->Buffer
)
689 RtlFreeHeap(GetProcessHeap(), 0, ins_str
);
691 collapse_path( buffer
, mark
);
692 reqsize
= wcslen(buffer
) * sizeof(WCHAR
);
699 /******************************************************************
700 * RtlGetFullPathName_U (NTDLL.@)
702 * Returns the number of bytes written to buffer (not including the
703 * terminating NULL) if the function succeeds, or the required number of bytes
704 * (including the terminating NULL) if the buffer is too small.
706 * file_part will point to the filename part inside buffer (except if we use
707 * DOS device name, in which case file_in_buf is NULL)
710 DWORD WINAPI
RtlGetFullPathName_U(const WCHAR
* name
, ULONG size
, WCHAR
* buffer
,
717 TRACE("(%s %u %p %p)\n", debugstr_w(name
), size
, buffer
, file_part
);
719 if (!name
|| !*name
) return 0;
721 if (file_part
) *file_part
= NULL
;
723 /* check for DOS device name */
724 dosdev
= RtlIsDosDeviceName_U(name
);
727 DWORD offset
= HIWORD(dosdev
) / sizeof(WCHAR
); /* get it in WCHARs, not bytes */
728 DWORD sz
= LOWORD(dosdev
); /* in bytes */
730 if (8 + sz
+ 2 > size
) return sz
+ 10;
731 wcscpy(buffer
, L
"\\\\.\\");
732 memmove(buffer
+ 4, name
+ offset
, sz
);
733 buffer
[4 + sz
/ sizeof(WCHAR
)] = '\0';
734 /* file_part isn't set in this case */
738 reqsize
= get_full_path_helper(name
, buffer
, size
);
739 if (!reqsize
) return 0;
742 LPWSTR tmp
= RtlAllocateHeap(GetProcessHeap(), 0, reqsize
);
743 reqsize
= get_full_path_helper(name
, tmp
, reqsize
);
744 if (reqsize
+ sizeof(WCHAR
) > size
) /* it may have worked the second time */
746 RtlFreeHeap(GetProcessHeap(), 0, tmp
);
747 return reqsize
+ sizeof(WCHAR
);
749 memcpy( buffer
, tmp
, reqsize
+ sizeof(WCHAR
) );
750 RtlFreeHeap(GetProcessHeap(), 0, tmp
);
754 if (file_part
&& (ptr
= wcsrchr(buffer
, '\\')) != NULL
&& ptr
>= buffer
+ 2 && *++ptr
)
759 /*************************************************************************
760 * RtlGetLongestNtPathLength [NTDLL.@]
762 * Get the longest allowed path length
768 * The longest allowed path length (277 characters under Win2k).
770 DWORD WINAPI
RtlGetLongestNtPathLength(void)
772 return MAX_NT_PATH_LENGTH
;
776 /******************************************************************
777 * RtlDoesFileExists_U (NTDLL.@)
779 BOOLEAN WINAPI
RtlDoesFileExists_U(LPCWSTR file_name
)
781 UNICODE_STRING nt_name
;
782 FILE_BASIC_INFORMATION basic_info
;
783 OBJECT_ATTRIBUTES attr
;
786 if (!RtlDosPathNameToNtPathName_U( file_name
, &nt_name
, NULL
, NULL
)) return FALSE
;
787 InitializeObjectAttributes( &attr
, &nt_name
, OBJ_CASE_INSENSITIVE
, 0, NULL
);
788 status
= NtQueryAttributesFile(&attr
, &basic_info
);
789 RtlFreeUnicodeString( &nt_name
);
794 /******************************************************************
795 * RtlIsNameLegalDOS8Dot3 (NTDLL.@)
797 * Returns TRUE iff unicode is a valid DOS (8+3) name.
798 * If the name is valid, oem gets filled with the corresponding OEM string
799 * spaces is set to TRUE if unicode contains spaces
801 BOOLEAN WINAPI
RtlIsNameLegalDOS8Dot3( const UNICODE_STRING
*unicode
,
802 OEM_STRING
*oem
, BOOLEAN
*spaces
)
804 static const char illegal
[] = "*?<>|\"+=,;[]:/\\\345";
809 BOOLEAN got_space
= FALSE
;
813 oem_str
.Length
= sizeof(buffer
);
814 oem_str
.MaximumLength
= sizeof(buffer
);
815 oem_str
.Buffer
= buffer
;
818 if (RtlUpcaseUnicodeStringToCountedOemString( oem
, unicode
, FALSE
) != STATUS_SUCCESS
)
821 if (oem
->Length
> 12) return FALSE
;
823 /* a starting . is invalid, except for . and .. */
824 if (oem
->Length
> 0 && oem
->Buffer
[0] == '.')
826 if (oem
->Length
!= 1 && (oem
->Length
!= 2 || oem
->Buffer
[1] != '.')) return FALSE
;
827 if (spaces
) *spaces
= FALSE
;
831 for (i
= 0; i
< oem
->Length
; i
++)
833 switch (oem
->Buffer
[i
])
836 /* leading/trailing spaces not allowed */
837 if (!i
|| i
== oem
->Length
-1 || oem
->Buffer
[i
+1] == '.') return FALSE
;
841 if (dot
!= -1) return FALSE
;
845 if (strchr(illegal
, oem
->Buffer
[i
])) return FALSE
;
849 /* check file part is shorter than 8, extension shorter than 3
850 * dot cannot be last in string
854 if (oem
->Length
> 8) return FALSE
;
858 if (dot
> 8 || (oem
->Length
- dot
> 4) || dot
== oem
->Length
- 1) return FALSE
;
860 if (spaces
) *spaces
= got_space
;
864 /******************************************************************
865 * RtlGetCurrentDirectory_U (NTDLL.@)
868 ULONG WINAPI
RtlGetCurrentDirectory_U(ULONG buflen
, LPWSTR buf
)
873 TRACE("(%u %p)\n", buflen
, buf
);
877 if (NtCurrentTeb()->Tib
.SubSystemTib
) /* FIXME: hack */
878 us
= &((WIN16_SUBSYSTEM_TIB
*)NtCurrentTeb()->Tib
.SubSystemTib
)->curdir
.DosPath
;
880 us
= &NtCurrentTeb()->Peb
->ProcessParameters
->CurrentDirectory
.DosPath
;
882 len
= us
->Length
/ sizeof(WCHAR
);
883 if (us
->Buffer
[len
- 1] == '\\' && us
->Buffer
[len
- 2] != ':')
886 if (buflen
/ sizeof(WCHAR
) > len
)
888 memcpy(buf
, us
->Buffer
, len
* sizeof(WCHAR
));
898 return len
* sizeof(WCHAR
);
901 /******************************************************************
902 * RtlSetCurrentDirectory_U (NTDLL.@)
905 NTSTATUS WINAPI
RtlSetCurrentDirectory_U(const UNICODE_STRING
* dir
)
907 FILE_FS_DEVICE_INFORMATION device_info
;
908 OBJECT_ATTRIBUTES attr
;
909 UNICODE_STRING newdir
;
917 newdir
.Buffer
= NULL
;
921 if (NtCurrentTeb()->Tib
.SubSystemTib
) /* FIXME: hack */
922 curdir
= &((WIN16_SUBSYSTEM_TIB
*)NtCurrentTeb()->Tib
.SubSystemTib
)->curdir
;
924 curdir
= &NtCurrentTeb()->Peb
->ProcessParameters
->CurrentDirectory
;
926 if (!RtlDosPathNameToNtPathName_U( dir
->Buffer
, &newdir
, NULL
, NULL
))
928 nts
= STATUS_OBJECT_NAME_INVALID
;
932 attr
.Length
= sizeof(attr
);
933 attr
.RootDirectory
= 0;
934 attr
.Attributes
= OBJ_CASE_INSENSITIVE
;
935 attr
.ObjectName
= &newdir
;
936 attr
.SecurityDescriptor
= NULL
;
937 attr
.SecurityQualityOfService
= NULL
;
939 nts
= NtOpenFile( &handle
, FILE_TRAVERSE
| SYNCHRONIZE
, &attr
, &io
, FILE_SHARE_READ
| FILE_SHARE_WRITE
,
940 FILE_DIRECTORY_FILE
| FILE_SYNCHRONOUS_IO_NONALERT
);
941 if (nts
!= STATUS_SUCCESS
) goto out
;
943 /* don't keep the directory handle open on removable media */
944 if (!NtQueryVolumeInformationFile( handle
, &io
, &device_info
,
945 sizeof(device_info
), FileFsDeviceInformation
) &&
946 (device_info
.Characteristics
& FILE_REMOVABLE_MEDIA
))
952 if (curdir
->Handle
) NtClose( curdir
->Handle
);
953 curdir
->Handle
= handle
;
955 /* append trailing \ if missing */
956 size
= newdir
.Length
/ sizeof(WCHAR
);
958 ptr
+= 4; /* skip \??\ prefix */
960 if (size
&& ptr
[size
- 1] != '\\') ptr
[size
++] = '\\';
962 /* convert \??\UNC\ path to \\ prefix */
963 if (size
>= 4 && !wcsnicmp(ptr
, L
"UNC\\", 4))
970 memcpy( curdir
->DosPath
.Buffer
, ptr
, size
* sizeof(WCHAR
));
971 curdir
->DosPath
.Buffer
[size
] = 0;
972 curdir
->DosPath
.Length
= size
* sizeof(WCHAR
);
974 TRACE( "curdir now %s %p\n", debugstr_w(curdir
->DosPath
.Buffer
), curdir
->Handle
);
977 RtlFreeUnicodeString( &newdir
);