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 * RtlDosPathNameToRelativeNtPathName_U [NTDLL.@]
336 BOOLEAN WINAPI
RtlDosPathNameToRelativeNtPathName_U(const WCHAR
*dos_path
, UNICODE_STRING
*ntpath
,
337 WCHAR
**file_part
, RTL_RELATIVE_NAME
*relative
)
339 return RtlDosPathNameToRelativeNtPathName_U_WithStatus(dos_path
, ntpath
, file_part
, relative
) == STATUS_SUCCESS
;
342 /**************************************************************************
343 * RtlReleaseRelativeName [NTDLL.@]
345 void WINAPI
RtlReleaseRelativeName(RTL_RELATIVE_NAME
*relative
)
349 /******************************************************************
352 * Searches a file of name 'name' into a ';' separated list of paths
354 * Doesn't seem to search elsewhere than the paths list
355 * Stores the result in buffer (file_part will point to the position
356 * of the file name in the buffer)
358 * - how long shall the paths be ??? (MAX_PATH or larger with \\?\ constructs ???)
360 ULONG WINAPI
RtlDosSearchPath_U(LPCWSTR paths
, LPCWSTR search
, LPCWSTR ext
,
361 ULONG buffer_size
, LPWSTR buffer
,
364 DOS_PATHNAME_TYPE type
= RtlDetermineDosPathNameType_U(search
);
367 if (type
== RELATIVE_PATH
)
369 ULONG allocated
= 0, needed
, filelen
;
372 filelen
= 1 /* for \ */ + wcslen(search
) + 1 /* \0 */;
374 /* Windows only checks for '.' without worrying about path components */
375 if (wcschr( search
, '.' )) ext
= NULL
;
376 if (ext
!= NULL
) filelen
+= wcslen(ext
);
382 for (needed
= 0, ptr
= paths
; *ptr
!= 0 && *ptr
++ != ';'; needed
++);
383 if (needed
+ filelen
> allocated
)
385 if (!name
) name
= RtlAllocateHeap(GetProcessHeap(), 0,
386 (needed
+ filelen
) * sizeof(WCHAR
));
389 WCHAR
*newname
= RtlReAllocateHeap(GetProcessHeap(), 0, name
,
390 (needed
+ filelen
) * sizeof(WCHAR
));
391 if (!newname
) RtlFreeHeap(GetProcessHeap(), 0, name
);
395 allocated
= needed
+ filelen
;
397 memmove(name
, paths
, needed
* sizeof(WCHAR
));
398 /* append '\\' if none is present */
399 if (needed
> 0 && name
[needed
- 1] != '\\') name
[needed
++] = '\\';
400 wcscpy(&name
[needed
], search
);
401 if (ext
) wcscat(&name
[needed
], ext
);
402 if (RtlDoesFileExists_U(name
))
404 len
= RtlGetFullPathName_U(name
, buffer_size
, buffer
, file_part
);
409 RtlFreeHeap(GetProcessHeap(), 0, name
);
411 else if (RtlDoesFileExists_U(search
))
413 len
= RtlGetFullPathName_U(search
, buffer_size
, buffer
, file_part
);
420 /******************************************************************
423 * Helper for RtlGetFullPathName_U.
424 * Get rid of . and .. components in the path.
426 static inline void collapse_path( WCHAR
*path
, UINT mark
)
430 /* convert every / into a \ */
431 for (p
= path
; *p
; p
++) if (*p
== '/') *p
= '\\';
433 /* collapse duplicate backslashes */
434 next
= path
+ max( 1, mark
);
435 for (p
= next
; *p
; p
++) if (*p
!= '\\' || next
[-1] != '\\') *next
++ = *p
;
445 case '\\': /* .\ component */
447 memmove( p
, next
, (wcslen(next
) + 1) * sizeof(WCHAR
) );
449 case 0: /* final . */
450 if (p
> path
+ mark
) p
--;
454 if (p
[2] == '\\') /* ..\ component */
460 while (p
> path
+ mark
&& p
[-1] != '\\') p
--;
462 memmove( p
, next
, (wcslen(next
) + 1) * sizeof(WCHAR
) );
465 else if (!p
[2]) /* final .. */
470 while (p
> path
+ mark
&& p
[-1] != '\\') p
--;
471 if (p
> path
+ mark
) p
--;
479 /* skip to the next component */
480 while (*p
&& *p
!= '\\') p
++;
483 /* remove last dot in previous dir name */
484 if (p
> path
+ mark
&& p
[-1] == '.') memmove( p
-1, p
, (wcslen(p
) + 1) * sizeof(WCHAR
) );
489 /* remove trailing spaces and dots (yes, Windows really does that, don't ask) */
490 while (p
> path
+ mark
&& (p
[-1] == ' ' || p
[-1] == '.')) p
--;
495 /******************************************************************
498 * Skip the \\share\dir\ part of a file name. Helper for RtlGetFullPathName_U.
500 static const WCHAR
*skip_unc_prefix( const WCHAR
*ptr
)
503 while (*ptr
&& !IS_SEPARATOR(*ptr
)) ptr
++; /* share name */
504 while (IS_SEPARATOR(*ptr
)) ptr
++;
505 while (*ptr
&& !IS_SEPARATOR(*ptr
)) ptr
++; /* dir name */
506 while (IS_SEPARATOR(*ptr
)) ptr
++;
511 /******************************************************************
512 * get_full_path_helper
514 * Helper for RtlGetFullPathName_U
515 * Note: name and buffer are allowed to point to the same memory spot
517 static ULONG
get_full_path_helper(LPCWSTR name
, LPWSTR buffer
, ULONG size
)
519 ULONG reqsize
= 0, mark
= 0, dep
= 0, deplen
;
520 LPWSTR ins_str
= NULL
;
522 const UNICODE_STRING
* cd
;
525 /* return error if name only consists of spaces */
526 for (ptr
= name
; *ptr
; ptr
++) if (*ptr
!= ' ') break;
531 if (NtCurrentTeb()->Tib
.SubSystemTib
) /* FIXME: hack */
532 cd
= &((WIN16_SUBSYSTEM_TIB
*)NtCurrentTeb()->Tib
.SubSystemTib
)->curdir
.DosPath
;
534 cd
= &NtCurrentTeb()->Peb
->ProcessParameters
->CurrentDirectory
.DosPath
;
536 switch (RtlDetermineDosPathNameType_U(name
))
538 case UNC_PATH
: /* \\foo */
539 ptr
= skip_unc_prefix( name
);
543 case DEVICE_PATH
: /* \\.\foo */
547 case ABSOLUTE_DRIVE_PATH
: /* c:\foo */
548 reqsize
= sizeof(WCHAR
);
555 case RELATIVE_DRIVE_PATH
: /* c:foo */
557 if (wcsnicmp( name
, cd
->Buffer
, 2 ))
559 UNICODE_STRING var
, val
;
565 var
.Length
= 3 * sizeof(WCHAR
);
566 var
.MaximumLength
= 4 * sizeof(WCHAR
);
569 val
.MaximumLength
= size
;
570 val
.Buffer
= RtlAllocateHeap(GetProcessHeap(), 0, size
);
572 switch (RtlQueryEnvironmentVariable_U(NULL
, &var
, &val
))
575 /* FIXME: Win2k seems to check that the environment variable actually points
576 * to an existing directory. If not, root of the drive is used
577 * (this seems also to be the only spot in RtlGetFullPathName that the
578 * existence of a part of a path is checked)
581 case STATUS_BUFFER_TOO_SMALL
:
582 reqsize
= val
.Length
+ sizeof(WCHAR
); /* append trailing '\\' */
583 val
.Buffer
[val
.Length
/ sizeof(WCHAR
)] = '\\';
584 ins_str
= val
.Buffer
;
586 case STATUS_VARIABLE_NOT_FOUND
:
587 reqsize
= 3 * sizeof(WCHAR
);
592 RtlFreeHeap(GetProcessHeap(), 0, val
.Buffer
);
595 ERR("Unsupported status code\n");
596 RtlFreeHeap(GetProcessHeap(), 0, val
.Buffer
);
604 case RELATIVE_PATH
: /* foo */
605 reqsize
= cd
->Length
;
606 ins_str
= cd
->Buffer
;
607 if (cd
->Buffer
[1] != ':')
609 ptr
= skip_unc_prefix( cd
->Buffer
);
610 mark
= ptr
- cd
->Buffer
;
615 case ABSOLUTE_PATH
: /* \xxx */
616 if (name
[0] == '/') /* may be a Unix path */
623 OBJECT_ATTRIBUTES attr
;
625 nt_str
= RtlAllocateHeap( GetProcessHeap(), 0, (wcslen(name
) + 9) * sizeof(WCHAR
) );
626 wcscpy( nt_str
, L
"\\??\\unix" );
627 wcscat( nt_str
, name
);
628 RtlInitUnicodeString( &str
, nt_str
);
629 InitializeObjectAttributes( &attr
, &str
, 0, 0, NULL
);
630 buflen
= 3 * wcslen(name
) + 1;
631 unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, buflen
);
632 status
= wine_nt_to_unix_file_name( &attr
, unix_name
, &buflen
, FILE_OPEN_IF
);
633 if (!status
|| status
== STATUS_NO_SUCH_FILE
)
635 buflen
= wcslen(name
) + 9;
636 status
= wine_unix_to_nt_file_name( unix_name
, nt_str
, &buflen
);
638 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
639 if (!status
&& buflen
> 6 && nt_str
[5] == ':')
641 reqsize
= (buflen
- 4) * sizeof(WCHAR
);
644 memcpy( buffer
, nt_str
+ 4, reqsize
);
645 collapse_path( buffer
, 3 );
646 reqsize
-= sizeof(WCHAR
);
648 RtlFreeHeap( GetProcessHeap(), 0, nt_str
);
651 RtlFreeHeap( GetProcessHeap(), 0, nt_str
);
653 if (cd
->Buffer
[1] == ':')
655 reqsize
= 2 * sizeof(WCHAR
);
656 tmp
[0] = cd
->Buffer
[0];
663 ptr
= skip_unc_prefix( cd
->Buffer
);
664 reqsize
= (ptr
- cd
->Buffer
) * sizeof(WCHAR
);
665 mark
= reqsize
/ sizeof(WCHAR
);
666 ins_str
= cd
->Buffer
;
670 case UNC_DOT_PATH
: /* \\. */
671 reqsize
= 4 * sizeof(WCHAR
);
686 deplen
= wcslen(name
+ dep
) * sizeof(WCHAR
);
687 if (reqsize
+ deplen
+ sizeof(WCHAR
) > size
)
689 /* not enough space, return need size (including terminating '\0') */
690 reqsize
+= deplen
+ sizeof(WCHAR
);
694 memmove(buffer
+ reqsize
/ sizeof(WCHAR
), name
+ dep
, deplen
+ sizeof(WCHAR
));
695 if (reqsize
) memcpy(buffer
, ins_str
, reqsize
);
697 if (ins_str
!= tmp
&& ins_str
!= cd
->Buffer
)
698 RtlFreeHeap(GetProcessHeap(), 0, ins_str
);
700 collapse_path( buffer
, mark
);
701 reqsize
= wcslen(buffer
) * sizeof(WCHAR
);
708 /******************************************************************
709 * RtlGetFullPathName_U (NTDLL.@)
711 * Returns the number of bytes written to buffer (not including the
712 * terminating NULL) if the function succeeds, or the required number of bytes
713 * (including the terminating NULL) if the buffer is too small.
715 * file_part will point to the filename part inside buffer (except if we use
716 * DOS device name, in which case file_in_buf is NULL)
719 DWORD WINAPI
RtlGetFullPathName_U(const WCHAR
* name
, ULONG size
, WCHAR
* buffer
,
726 TRACE("(%s %lu %p %p)\n", debugstr_w(name
), size
, buffer
, file_part
);
728 if (!name
|| !*name
) return 0;
730 if (file_part
) *file_part
= NULL
;
732 /* check for DOS device name */
733 dosdev
= RtlIsDosDeviceName_U(name
);
736 DWORD offset
= HIWORD(dosdev
) / sizeof(WCHAR
); /* get it in WCHARs, not bytes */
737 DWORD sz
= LOWORD(dosdev
); /* in bytes */
739 if (8 + sz
+ 2 > size
) return sz
+ 10;
740 wcscpy(buffer
, L
"\\\\.\\");
741 memmove(buffer
+ 4, name
+ offset
, sz
);
742 buffer
[4 + sz
/ sizeof(WCHAR
)] = '\0';
743 /* file_part isn't set in this case */
747 reqsize
= get_full_path_helper(name
, buffer
, size
);
748 if (!reqsize
) return 0;
751 LPWSTR tmp
= RtlAllocateHeap(GetProcessHeap(), 0, reqsize
);
752 reqsize
= get_full_path_helper(name
, tmp
, reqsize
);
753 if (reqsize
+ sizeof(WCHAR
) > size
) /* it may have worked the second time */
755 RtlFreeHeap(GetProcessHeap(), 0, tmp
);
756 return reqsize
+ sizeof(WCHAR
);
758 memcpy( buffer
, tmp
, reqsize
+ sizeof(WCHAR
) );
759 RtlFreeHeap(GetProcessHeap(), 0, tmp
);
763 if (file_part
&& (ptr
= wcsrchr(buffer
, '\\')) != NULL
&& ptr
>= buffer
+ 2 && *++ptr
)
768 /*************************************************************************
769 * RtlGetLongestNtPathLength [NTDLL.@]
771 * Get the longest allowed path length
777 * The longest allowed path length (277 characters under Win2k).
779 DWORD WINAPI
RtlGetLongestNtPathLength(void)
781 return MAX_NT_PATH_LENGTH
;
785 /******************************************************************
786 * RtlDoesFileExists_U (NTDLL.@)
788 BOOLEAN WINAPI
RtlDoesFileExists_U(LPCWSTR file_name
)
790 UNICODE_STRING nt_name
;
791 FILE_BASIC_INFORMATION basic_info
;
792 OBJECT_ATTRIBUTES attr
;
795 if (!RtlDosPathNameToNtPathName_U( file_name
, &nt_name
, NULL
, NULL
)) return FALSE
;
796 InitializeObjectAttributes( &attr
, &nt_name
, OBJ_CASE_INSENSITIVE
, 0, NULL
);
797 status
= NtQueryAttributesFile(&attr
, &basic_info
);
798 RtlFreeUnicodeString( &nt_name
);
803 /******************************************************************
804 * RtlIsNameLegalDOS8Dot3 (NTDLL.@)
806 * Returns TRUE iff unicode is a valid DOS (8+3) name.
807 * If the name is valid, oem gets filled with the corresponding OEM string
808 * spaces is set to TRUE if unicode contains spaces
810 BOOLEAN WINAPI
RtlIsNameLegalDOS8Dot3( const UNICODE_STRING
*unicode
,
811 OEM_STRING
*oem
, BOOLEAN
*spaces
)
813 static const char illegal
[] = "*?<>|\"+=,;[]:/\\\345";
818 BOOLEAN got_space
= FALSE
;
822 oem_str
.Length
= sizeof(buffer
);
823 oem_str
.MaximumLength
= sizeof(buffer
);
824 oem_str
.Buffer
= buffer
;
827 if (RtlUpcaseUnicodeStringToCountedOemString( oem
, unicode
, FALSE
) != STATUS_SUCCESS
)
830 if (oem
->Length
> 12) return FALSE
;
832 /* a starting . is invalid, except for . and .. */
833 if (oem
->Length
> 0 && oem
->Buffer
[0] == '.')
835 if (oem
->Length
!= 1 && (oem
->Length
!= 2 || oem
->Buffer
[1] != '.')) return FALSE
;
836 if (spaces
) *spaces
= FALSE
;
840 for (i
= 0; i
< oem
->Length
; i
++)
842 switch (oem
->Buffer
[i
])
845 /* leading/trailing spaces not allowed */
846 if (!i
|| i
== oem
->Length
-1 || oem
->Buffer
[i
+1] == '.') return FALSE
;
850 if (dot
!= -1) return FALSE
;
854 if (strchr(illegal
, oem
->Buffer
[i
])) return FALSE
;
858 /* check file part is shorter than 8, extension shorter than 3
859 * dot cannot be last in string
863 if (oem
->Length
> 8) return FALSE
;
867 if (dot
> 8 || (oem
->Length
- dot
> 4) || dot
== oem
->Length
- 1) return FALSE
;
869 if (spaces
) *spaces
= got_space
;
873 /******************************************************************
874 * RtlGetCurrentDirectory_U (NTDLL.@)
877 ULONG WINAPI
RtlGetCurrentDirectory_U(ULONG buflen
, LPWSTR buf
)
882 TRACE("(%lu %p)\n", buflen
, buf
);
886 if (NtCurrentTeb()->Tib
.SubSystemTib
) /* FIXME: hack */
887 us
= &((WIN16_SUBSYSTEM_TIB
*)NtCurrentTeb()->Tib
.SubSystemTib
)->curdir
.DosPath
;
889 us
= &NtCurrentTeb()->Peb
->ProcessParameters
->CurrentDirectory
.DosPath
;
891 len
= us
->Length
/ sizeof(WCHAR
);
892 if (us
->Buffer
[len
- 1] == '\\' && us
->Buffer
[len
- 2] != ':')
895 if (buflen
/ sizeof(WCHAR
) > len
)
897 memcpy(buf
, us
->Buffer
, len
* sizeof(WCHAR
));
907 return len
* sizeof(WCHAR
);
910 /******************************************************************
911 * RtlSetCurrentDirectory_U (NTDLL.@)
914 NTSTATUS WINAPI
RtlSetCurrentDirectory_U(const UNICODE_STRING
* dir
)
916 FILE_FS_DEVICE_INFORMATION device_info
;
917 OBJECT_ATTRIBUTES attr
;
918 UNICODE_STRING newdir
;
926 newdir
.Buffer
= NULL
;
930 if (NtCurrentTeb()->Tib
.SubSystemTib
) /* FIXME: hack */
931 curdir
= &((WIN16_SUBSYSTEM_TIB
*)NtCurrentTeb()->Tib
.SubSystemTib
)->curdir
;
933 curdir
= &NtCurrentTeb()->Peb
->ProcessParameters
->CurrentDirectory
;
935 if (!RtlDosPathNameToNtPathName_U( dir
->Buffer
, &newdir
, NULL
, NULL
))
937 nts
= STATUS_OBJECT_NAME_INVALID
;
941 attr
.Length
= sizeof(attr
);
942 attr
.RootDirectory
= 0;
943 attr
.Attributes
= OBJ_CASE_INSENSITIVE
;
944 attr
.ObjectName
= &newdir
;
945 attr
.SecurityDescriptor
= NULL
;
946 attr
.SecurityQualityOfService
= NULL
;
948 nts
= NtOpenFile( &handle
, FILE_TRAVERSE
| SYNCHRONIZE
, &attr
, &io
, FILE_SHARE_READ
| FILE_SHARE_WRITE
,
949 FILE_DIRECTORY_FILE
| FILE_SYNCHRONOUS_IO_NONALERT
);
950 if (nts
!= STATUS_SUCCESS
) goto out
;
952 /* don't keep the directory handle open on removable media */
953 if (!NtQueryVolumeInformationFile( handle
, &io
, &device_info
,
954 sizeof(device_info
), FileFsDeviceInformation
) &&
955 (device_info
.Characteristics
& FILE_REMOVABLE_MEDIA
))
961 if (curdir
->Handle
) NtClose( curdir
->Handle
);
962 curdir
->Handle
= handle
;
964 /* append trailing \ if missing */
965 size
= newdir
.Length
/ sizeof(WCHAR
);
967 ptr
+= 4; /* skip \??\ prefix */
969 if (size
&& ptr
[size
- 1] != '\\') ptr
[size
++] = '\\';
971 /* convert \??\UNC\ path to \\ prefix */
972 if (size
>= 4 && !wcsnicmp(ptr
, L
"UNC\\", 4))
979 memcpy( curdir
->DosPath
.Buffer
, ptr
, size
* sizeof(WCHAR
));
980 curdir
->DosPath
.Buffer
[size
] = 0;
981 curdir
->DosPath
.Length
= size
* sizeof(WCHAR
);
983 TRACE( "curdir now %s %p\n", debugstr_w(curdir
->DosPath
.Buffer
), curdir
->Handle
);
986 RtlFreeUnicodeString( &newdir
);