Fixed the dwBCastAddr member of MIB_IPADDRROW, added a test program.
[wine] / dlls / ntdll / path.c
1 /*
2  * Ntdll path functions
3  *
4  * Copyright 2002, 2003 Alexandre Julliard
5  * Copyright 2003 Eric Pouech
6  *
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.
11  *
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.
16  *
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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
20  */
21
22 #include "config.h"
23
24 #include <stdarg.h>
25
26 #include "windef.h"
27 #include "winbase.h"
28 #include "winreg.h"
29 #include "winternl.h"
30 #include "wine/unicode.h"
31 #include "wine/debug.h"
32 #include "ntdll_misc.h"
33
34 WINE_DEFAULT_DEBUG_CHANNEL(file);
35
36 static const WCHAR DeviceRootW[] = {'\\','\\','.','\\',0};
37 static const WCHAR NTDosPrefixW[] = {'\\','?','?','\\',0};
38 static const WCHAR UncPfxW[] = {'U','N','C','\\',0};
39
40 /* FIXME: hack! */
41 HANDLE (WINAPI *pCreateFileW)( LPCWSTR filename, DWORD access, DWORD sharing,
42                                LPSECURITY_ATTRIBUTES sa, DWORD creation,
43                                DWORD attributes, HANDLE template );
44
45 #define IS_SEPARATOR(ch)  ((ch) == '\\' || (ch) == '/')
46
47 /***********************************************************************
48  *             RtlDetermineDosPathNameType_U   (NTDLL.@)
49  */
50 DOS_PATHNAME_TYPE WINAPI RtlDetermineDosPathNameType_U( PCWSTR path )
51 {
52     if (IS_SEPARATOR(path[0]))
53     {
54         if (!IS_SEPARATOR(path[1])) return ABSOLUTE_PATH;       /* "/foo" */
55         if (path[2] != '.') return UNC_PATH;                    /* "//foo" */
56         if (IS_SEPARATOR(path[3])) return DEVICE_PATH;          /* "//./foo" */
57         if (path[3]) return UNC_PATH;                           /* "//.foo" */
58         return UNC_DOT_PATH;                                    /* "//." */
59     }
60     else
61     {
62         if (!path[0] || path[1] != ':') return RELATIVE_PATH;   /* "foo" */
63         if (IS_SEPARATOR(path[2])) return ABSOLUTE_DRIVE_PATH;  /* "c:/foo" */
64         return RELATIVE_DRIVE_PATH;                             /* "c:foo" */
65     }
66 }
67
68 /******************************************************************
69  *              RtlDoesFileExists_U
70  *
71  * FIXME: should not use CreateFileW
72  */
73 BOOLEAN WINAPI RtlDoesFileExists_U(LPCWSTR file_name)
74 {
75     HANDLE handle = pCreateFileW( file_name, 0, FILE_SHARE_READ|FILE_SHARE_WRITE,
76                                   NULL, OPEN_EXISTING, 0, 0 );
77     if (handle == INVALID_HANDLE_VALUE) return FALSE;
78     NtClose( handle );
79     return TRUE;
80 }
81
82 /***********************************************************************
83  *             RtlIsDosDeviceName_U   (NTDLL.@)
84  *
85  * Check if the given DOS path contains a DOS device name.
86  *
87  * Returns the length of the device name in the low word and its
88  * position in the high word (both in bytes, not WCHARs), or 0 if no
89  * device name is found.
90  */
91 ULONG WINAPI RtlIsDosDeviceName_U( PCWSTR dos_name )
92 {
93     static const WCHAR consoleW[] = {'\\','\\','.','\\','C','O','N',0};
94     static const WCHAR auxW[3] = {'A','U','X'};
95     static const WCHAR comW[3] = {'C','O','M'};
96     static const WCHAR conW[3] = {'C','O','N'};
97     static const WCHAR lptW[3] = {'L','P','T'};
98     static const WCHAR nulW[3] = {'N','U','L'};
99     static const WCHAR prnW[3] = {'P','R','N'};
100
101     const WCHAR *start, *end, *p;
102
103     switch(RtlDetermineDosPathNameType_U( dos_name ))
104     {
105     case INVALID_PATH:
106     case UNC_PATH:
107         return 0;
108     case DEVICE_PATH:
109         if (!strcmpiW( dos_name, consoleW ))
110             return MAKELONG( sizeof(conW), 4 * sizeof(WCHAR) );  /* 4 is length of \\.\ prefix */
111         return 0;
112     default:
113         break;
114     }
115
116     end = dos_name + strlenW(dos_name) - 1;
117     if (end >= dos_name && *end == ':') end--;  /* remove trailing ':' */
118
119     /* find start of file name */
120     for (start = end; start >= dos_name; start--)
121     {
122         if (IS_SEPARATOR(start[0])) break;
123         /* check for ':' but ignore if before extension (for things like NUL:.txt) */
124         if (start[0] == ':' && start[1] != '.') break;
125     }
126     start++;
127
128     /* remove extension */
129     if ((p = strchrW( start, '.' )))
130     {
131         end = p - 1;
132         if (end >= dos_name && *end == ':') end--;  /* remove trailing ':' before extension */
133     }
134     else
135     {
136         /* no extension, remove trailing spaces */
137         while (end >= dos_name && *end == ' ') end--;
138     }
139
140     /* now we have a potential device name between start and end, check it */
141     switch(end - start + 1)
142     {
143     case 3:
144         if (strncmpiW( start, auxW, 3 ) &&
145             strncmpiW( start, conW, 3 ) &&
146             strncmpiW( start, nulW, 3 ) &&
147             strncmpiW( start, prnW, 3 )) break;
148         return MAKELONG( 3 * sizeof(WCHAR), (start - dos_name) * sizeof(WCHAR) );
149     case 4:
150         if (strncmpiW( start, comW, 3 ) && strncmpiW( start, lptW, 3 )) break;
151         if (*end <= '0' || *end > '9') break;
152         return MAKELONG( 4 * sizeof(WCHAR), (start - dos_name) * sizeof(WCHAR) );
153     default:  /* can't match anything */
154         break;
155     }
156     return 0;
157 }
158
159
160 /**************************************************************************
161  *                 RtlDosPathNameToNtPathName_U         [NTDLL.@]
162  *
163  * dos_path: a DOS path name (fully qualified or not)
164  * ntpath:   pointer to a UNICODE_STRING to hold the converted
165  *           path name
166  * file_part:will point (in ntpath) to the file part in the path
167  * cd:       directory reference (optional)
168  *
169  * FIXME:
170  *      + fill the cd structure
171  */
172 BOOLEAN  WINAPI RtlDosPathNameToNtPathName_U(PWSTR dos_path,
173                                              PUNICODE_STRING ntpath,
174                                              PWSTR* file_part,
175                                              CURDIR* cd)
176 {
177     static const WCHAR LongFileNamePfxW[4] = {'\\','\\','?','\\'};
178     ULONG sz, ptr_sz, offset;
179     WCHAR local[MAX_PATH];
180     LPWSTR ptr;
181
182     TRACE("(%s,%p,%p,%p)\n",
183           debugstr_w(dos_path), ntpath, file_part, cd);
184
185     if (cd)
186     {
187         FIXME("Unsupported parameter\n");
188         memset(cd, 0, sizeof(*cd));
189     }
190
191     if (!dos_path || !*dos_path) return FALSE;
192
193     if (!memcmp(dos_path, LongFileNamePfxW, sizeof(LongFileNamePfxW)))
194     {
195         dos_path += sizeof(LongFileNamePfxW) / sizeof(WCHAR);
196         ptr = NULL;
197         ptr_sz = 0;
198     }
199     else
200     {
201         ptr = local;
202         ptr_sz = sizeof(local);
203     }
204     sz = RtlGetFullPathName_U(dos_path, ptr_sz, ptr, file_part);
205     if (sz == 0) return FALSE;
206     if (sz > ptr_sz)
207     {
208         ptr = RtlAllocateHeap(ntdll_get_process_heap(), 0, sz);
209         sz = RtlGetFullPathName_U(dos_path, sz, ptr, file_part);
210     }
211
212     ntpath->MaximumLength = sz + (4 /* unc\ */ + 4 /* \??\ */) * sizeof(WCHAR);
213     ntpath->Buffer = RtlAllocateHeap(ntdll_get_process_heap(), 0, ntpath->MaximumLength);
214     if (!ntpath->Buffer)
215     {
216         if (ptr != local) RtlFreeHeap(ntdll_get_process_heap(), 0, ptr);
217         return FALSE;
218     }
219
220     strcpyW(ntpath->Buffer, NTDosPrefixW);
221     offset = 0;
222     switch (RtlDetermineDosPathNameType_U(ptr))
223     {
224     case UNC_PATH: /* \\foo */
225         if (ptr[2] != '?')
226         {
227             offset = 2;
228             strcatW(ntpath->Buffer, UncPfxW);
229         }
230         break;
231     case DEVICE_PATH: /* \\.\foo */
232         offset = 4;
233         break;
234     default: break; /* needed to keep gcc quiet */
235     }
236
237     strcatW(ntpath->Buffer, ptr + offset);
238     ntpath->Length = strlenW(ntpath->Buffer) * sizeof(WCHAR);
239
240     if (file_part && *file_part)
241         *file_part = ntpath->Buffer + ntpath->Length / sizeof(WCHAR) - strlenW(*file_part);
242
243     /* FIXME: cd filling */
244
245     if (ptr != local) RtlFreeHeap(ntdll_get_process_heap(), 0, ptr);
246     return TRUE;
247 }
248
249 /******************************************************************
250  *              RtlDosSearchPath_U
251  *
252  * Searchs a file of name 'name' into a ';' separated list of paths
253  * (stored in paths)
254  * Doesn't seem to search elsewhere than the paths list
255  * Stores the result in buffer (file_part will point to the position
256  * of the file name in the buffer)
257  * FIXME:
258  * - how long shall the paths be ??? (MAX_PATH or larger with \\?\ constructs ???)
259  */
260 ULONG WINAPI RtlDosSearchPath_U(LPCWSTR paths, LPCWSTR search, LPCWSTR ext, 
261                                 ULONG buffer_size, LPWSTR buffer, 
262                                 LPWSTR* file_part)
263 {
264     DOS_PATHNAME_TYPE type = RtlDetermineDosPathNameType_U(search);
265     ULONG len = 0;
266
267     if (type == RELATIVE_PATH)
268     {
269         ULONG allocated = 0, needed, filelen;
270         WCHAR *name = NULL;
271
272         filelen = 1 /* for \ */ + strlenW(search) + 1 /* \0 */;
273
274         /* Windows only checks for '.' without worrying about path components */
275         if (strchrW( search, '.' )) ext = NULL;
276         if (ext != NULL) filelen += strlenW(ext);
277
278         while (*paths)
279         {
280             LPCWSTR ptr;
281
282             for (needed = 0, ptr = paths; *ptr != 0 && *ptr++ != ';'; needed++);
283             if (needed + filelen > allocated)
284             {
285                 if (!name) name = RtlAllocateHeap(GetProcessHeap(), 0,
286                                                   (needed + filelen) * sizeof(WCHAR));
287                 else
288                 {
289                     WCHAR *newname = RtlReAllocateHeap(GetProcessHeap(), 0, name,
290                                                        (needed + filelen) * sizeof(WCHAR));
291                     if (!newname) RtlFreeHeap(GetProcessHeap(), 0, name);
292                     name = newname;
293                 }
294                 if (!name) return 0;
295                 allocated = needed + filelen;
296             }
297             memmove(name, paths, needed * sizeof(WCHAR));
298             /* append '\\' if none is present */
299             if (needed > 0 && name[needed - 1] != '\\') name[needed++] = '\\';
300             strcpyW(&name[needed], search);
301             if (ext) strcatW(&name[needed], ext);
302             if (RtlDoesFileExists_U(name))
303             {
304                 len = RtlGetFullPathName_U(name, buffer_size, buffer, file_part);
305                 break;
306             }
307             paths = ptr;
308         }
309         RtlFreeHeap(ntdll_get_process_heap(), 0, name);
310     }
311     else if (RtlDoesFileExists_U(search))
312     {
313         len = RtlGetFullPathName_U(search, buffer_size, buffer, file_part);
314     }
315
316     return len;
317 }
318
319 /******************************************************************
320  *              get_full_path_helper
321  *
322  * Helper for RtlGetFullPathName_U
323  */
324 static ULONG get_full_path_helper(LPCWSTR name, LPWSTR buffer, ULONG size)
325 {
326     ULONG               reqsize, mark = 0;
327     DOS_PATHNAME_TYPE   type;
328     LPWSTR              ptr;
329     UNICODE_STRING*     cd;
330
331     reqsize = sizeof(WCHAR); /* '\0' at the end */
332
333     RtlAcquirePebLock();
334     cd = &ntdll_get_process_pmts()->CurrentDirectoryName;
335
336     switch (type = RtlDetermineDosPathNameType_U(name))
337     {
338     case UNC_PATH:              /* \\foo   */
339     case DEVICE_PATH:           /* \\.\foo */
340         if (reqsize <= size) buffer[0] = '\0';
341         break;
342
343     case ABSOLUTE_DRIVE_PATH:   /* c:\foo  */
344         reqsize += sizeof(WCHAR);
345         if (reqsize <= size)
346         {
347             buffer[0] = toupperW(name[0]);
348             buffer[1] = '\0';
349         }
350         name++;
351         break;
352
353     case RELATIVE_DRIVE_PATH:   /* c:foo   */
354         if (toupperW(name[0]) != toupperW(cd->Buffer[0]) || cd->Buffer[1] != ':')
355         {
356             WCHAR               drive[4];
357             UNICODE_STRING      var, val;
358
359             drive[0] = '=';
360             drive[1] = name[0];
361             drive[2] = ':';
362             drive[3] = '\0';
363             var.Length = 6;
364             var.MaximumLength = 8;
365             var.Buffer = drive;
366             val.Length = 0;
367             val.MaximumLength = size;
368             val.Buffer = buffer;
369
370             name += 2;
371
372             switch (RtlQueryEnvironmentVariable_U(NULL, &var, &val))
373             {
374             case STATUS_SUCCESS:
375                 /* FIXME: Win2k seems to check that the environment variable actually points 
376                  * to an existing directory. If not, root of the drive is used
377                  * (this seems also to be the only spot in RtlGetFullPathName that the 
378                  * existence of a part of a path is checked)
379                  */
380                 /* fall thru */
381             case STATUS_BUFFER_TOO_SMALL:
382                 reqsize += val.Length;
383                 /* append trailing \\ */
384                 reqsize += sizeof(WCHAR);
385                 if (reqsize <= size)
386                 {
387                     buffer[reqsize / sizeof(WCHAR) - 2] = '\\';
388                     buffer[reqsize / sizeof(WCHAR) - 1] = '\0';
389                 }
390                 break;
391             case STATUS_VARIABLE_NOT_FOUND:
392                 reqsize += 3 * sizeof(WCHAR);
393                 if (reqsize <= size)
394                 {
395                     buffer[0] = drive[1];
396                     buffer[1] = ':';
397                     buffer[2] = '\\';
398                     buffer[3] = '\0';
399                 }
400                 break;
401             default:
402                 ERR("Unsupported status code\n");
403                 break;
404             }
405             break;
406         }
407         name += 2;
408         /* fall through */
409
410     case RELATIVE_PATH:         /* foo     */
411         reqsize += cd->Length;
412         if (reqsize <= size)
413         {
414             memcpy(buffer, cd->Buffer, cd->Length);
415             buffer[cd->Length / sizeof(WCHAR)] = 0;
416         }
417         if (cd->Buffer[1] != ':')
418         {
419             ptr = strchrW(cd->Buffer + 2, '\\');
420             if (ptr) ptr = strchrW(ptr + 1, '\\');
421             if (!ptr) ptr = cd->Buffer + strlenW(cd->Buffer);
422             mark = ptr - cd->Buffer;
423         }
424         break;
425
426     case ABSOLUTE_PATH:         /* \xxx    */
427         if (cd->Buffer[1] == ':')
428         {
429             reqsize += 2 * sizeof(WCHAR);
430             if (reqsize <= size)
431             {
432                 buffer[0] = cd->Buffer[0];
433                 buffer[1] = ':';
434                 buffer[2] = '\0';
435             }
436         }
437         else
438         {
439             unsigned    len;
440
441             ptr = strchrW(cd->Buffer + 2, '\\');
442             if (ptr) ptr = strchrW(ptr + 1, '\\');
443             if (!ptr) ptr = cd->Buffer + strlenW(cd->Buffer);
444             len = (ptr - cd->Buffer) * sizeof(WCHAR);
445             reqsize += len;
446             mark = len / sizeof(WCHAR);
447             if (reqsize <= size)
448             {
449                 memcpy(buffer, cd->Buffer, len);
450                 buffer[len / sizeof(WCHAR)] = '\0';
451             }
452             else
453                 buffer[0] = '\0';
454         }
455         break;
456
457     case UNC_DOT_PATH:         /* \\.     */
458         reqsize += 4 * sizeof(WCHAR);
459         name += 3;
460         if (reqsize <= size)
461         {
462             buffer[0] = '\\';
463             buffer[1] = '\\';
464             buffer[2] = '.';
465             buffer[3] = '\\';
466             buffer[4] = '\0';
467         }
468         break;
469
470     case INVALID_PATH:
471         reqsize = 0;
472         goto done;
473     }
474
475     reqsize += strlenW(name) * sizeof(WCHAR);
476     if (reqsize > size) goto done;
477
478     strcatW(buffer, name);
479
480     /* convert every / into a \ */
481     for (ptr = buffer; *ptr; ptr++)
482         if (*ptr == '/') *ptr = '\\';
483
484     reqsize -= sizeof(WCHAR); /* don't count trailing \0 */
485
486     /* mark is non NULL for UNC names, so start path collapsing after server & share name
487      * otherwise, it's a fully qualified DOS name, so start after the drive designation
488      */
489     for (ptr = buffer + (mark ? mark : 2); ptr < buffer + reqsize / sizeof(WCHAR); )
490     {
491         WCHAR* p = strchrW(ptr, '\\');
492         if (!p) break;
493
494         p++;
495         if (p[0] == '.')
496         {
497             switch (p[1])
498             {
499             case '.':
500                 switch (p[2])
501                 {
502                 case '\\':
503                     {
504                         WCHAR*      prev = p - 2;
505                         while (prev >= buffer + mark && *prev != '\\') prev--;
506                         /* either collapse \foo\.. into \ or \.. into \ */
507                         if (prev < buffer + mark) prev = p - 1;
508                         reqsize -= (p + 2 - prev) * sizeof(WCHAR);
509                         memmove(prev, p + 2, reqsize + sizeof(WCHAR) - (prev - buffer) * sizeof(WCHAR));
510                         p = prev;
511                     }
512                     break;
513                 case '\0':
514                     reqsize -= 2 * sizeof(WCHAR);
515                     *p = 0;
516                     break;
517                 }
518                 break;
519             case '\\':
520                 reqsize -= 2 * sizeof(WCHAR);
521                 memmove(p, p + 2, reqsize + sizeof(WCHAR) - (p - buffer) * sizeof(WCHAR));
522                 break;
523             }
524         }
525         ptr = p;
526     }
527
528 done:
529     RtlReleasePebLock();
530     return reqsize;
531 }
532
533 /******************************************************************
534  *              RtlGetFullPathName_U  (NTDLL.@)
535  *
536  * Returns the number of bytes written to buffer (not including the
537  * terminating NULL) if the function succeeds, or the required number of bytes
538  * (including the terminating NULL) if the buffer is too small.
539  *
540  * file_part will point to the filename part inside buffer (except if we use
541  * DOS device name, in which case file_in_buf is NULL)
542  *
543  */
544 DWORD WINAPI RtlGetFullPathName_U(const WCHAR* name, ULONG size, WCHAR* buffer,
545                                   WCHAR** file_part)
546 {
547     WCHAR*      ptr;
548     DWORD       dosdev;
549     DWORD       reqsize;
550
551     TRACE("(%s %lu %p %p)\n", debugstr_w(name), size, buffer, file_part);
552
553     if (!name || !*name) return 0;
554
555     if (file_part) *file_part = NULL;
556
557     /* check for DOS device name */
558     dosdev = RtlIsDosDeviceName_U(name);
559     if (dosdev)
560     {
561         DWORD   offset = HIWORD(dosdev) / sizeof(WCHAR); /* get it in WCHARs, not bytes */
562         DWORD   sz = LOWORD(dosdev); /* in bytes */
563
564         if (8 + sz + 2 > size) return sz + 10;
565         strcpyW(buffer, DeviceRootW);
566         memmove(buffer + 4, name + offset, sz);
567         buffer[4 + sz / sizeof(WCHAR)] = '\0';
568         /* file_part isn't set in this case */
569         return sz + 8;
570     }
571
572     reqsize = get_full_path_helper(name, buffer, size);
573     if (reqsize > size)
574     {
575         LPWSTR tmp = RtlAllocateHeap(ntdll_get_process_heap(), 0, reqsize);
576         reqsize = get_full_path_helper(name, tmp, reqsize);
577         if (reqsize > size)  /* it may have worked the second time */
578         {
579             RtlFreeHeap(ntdll_get_process_heap(), 0, tmp);
580             return reqsize + sizeof(WCHAR);
581         }
582         memcpy( buffer, tmp, reqsize + sizeof(WCHAR) );
583         RtlFreeHeap(ntdll_get_process_heap(), 0, tmp);
584     }
585
586     /* find file part */
587     if (file_part && (ptr = strrchrW(buffer, '\\')) != NULL && ptr >= buffer + 2 && *++ptr)
588         *file_part = ptr;
589     return reqsize;
590 }
591
592 /*************************************************************************
593  * RtlGetLongestNtPathLength    [NTDLL.@]
594  *
595  * Get the longest allowed path length
596  *
597  * PARAMS
598  *  None.
599  *
600  * RETURNS
601  *  The longest allowed path length (277 characters under Win2k).
602  */
603 DWORD WINAPI RtlGetLongestNtPathLength(void)
604 {
605     return 277;
606 }
607
608 /******************************************************************
609  *             RtlIsNameLegalDOS8Dot3   (NTDLL.@)
610  *
611  * Returns TRUE iff unicode is a valid DOS (8+3) name.
612  * If the name is valid, oem gets filled with the corresponding OEM string
613  * spaces is set to TRUE if unicode contains spaces
614  */
615 BOOLEAN WINAPI RtlIsNameLegalDOS8Dot3( const UNICODE_STRING *unicode,
616                                        OEM_STRING *oem, BOOLEAN *spaces )
617 {
618     int dot = -1;
619     unsigned int i;
620     char buffer[12];
621     OEM_STRING oem_str;
622     BOOLEAN got_space = FALSE;
623
624     if (!oem)
625     {
626         oem_str.Length = sizeof(buffer);
627         oem_str.MaximumLength = sizeof(buffer);
628         oem_str.Buffer = buffer;
629         oem = &oem_str;
630     }
631     if (RtlUpcaseUnicodeStringToCountedOemString( oem, unicode, FALSE ) != STATUS_SUCCESS)
632         return FALSE;
633
634     if (oem->Length > 12) return FALSE;
635
636     /* a starting . is invalid, except for . and .. */
637     if (oem->Buffer[0] == '.')
638     {
639         if (oem->Length != 1 && (oem->Length != 2 || oem->Buffer[1] != '.')) return FALSE;
640         if (spaces) *spaces = FALSE;
641         return TRUE;
642     }
643
644     for (i = 0; i < oem->Length; i++)
645     {
646         switch (oem->Buffer[i])
647         {
648         case ' ':
649             /* leading/trailing spaces not allowed */
650             if (!i || i == oem->Length-1 || oem->Buffer[i+1] == '.') return FALSE;
651             got_space = TRUE;
652             break;
653         case '.':
654             if (dot != -1) return FALSE;
655             dot = i;
656             break;
657         default:
658             /* FIXME: check for invalid chars */
659             break;
660         }
661     }
662     /* check file part is shorter than 8, extension shorter than 3
663      * dot cannot be last in string
664      */
665     if (dot == -1)
666     {
667         if (oem->Length > 8) return FALSE;
668     }
669     else
670     {
671         if (dot > 8 || (oem->Length - dot > 4) || dot == oem->Length - 1) return FALSE;
672     }
673     if (spaces) *spaces = got_space;
674     return TRUE;
675 }
676
677 /******************************************************************
678  *              RtlGetCurrentDirectory_U (NTDLL.@)
679  *
680  */
681 NTSTATUS WINAPI RtlGetCurrentDirectory_U(ULONG buflen, LPWSTR buf)
682 {
683     UNICODE_STRING*     us;
684     ULONG               len;
685
686     TRACE("(%lu %p)\n", buflen, buf);
687
688     RtlAcquirePebLock();
689
690     us = &ntdll_get_process_pmts()->CurrentDirectoryName;
691     len = us->Length / sizeof(WCHAR);
692     if (us->Buffer[len - 1] == '\\' && us->Buffer[len - 2] != ':')
693         len--;
694
695     if (buflen / sizeof(WCHAR) > len)
696     {
697         memcpy(buf, us->Buffer, len * sizeof(WCHAR));
698         buf[len] = '\0';
699     }
700     else
701     {
702         len++;
703     }
704
705     RtlReleasePebLock();
706
707     return len * sizeof(WCHAR);
708 }
709
710 /******************************************************************
711  *              RtlSetCurrentDirectory_U (NTDLL.@)
712  *
713  */
714 NTSTATUS WINAPI RtlSetCurrentDirectory_U(const UNICODE_STRING* dir)
715 {
716     UNICODE_STRING*     curdir;
717     NTSTATUS            nts = STATUS_SUCCESS;
718     ULONG               size;
719     PWSTR               buf = NULL;
720
721     TRACE("(%s)\n", debugstr_w(dir->Buffer));
722
723     RtlAcquirePebLock();
724
725     curdir = &ntdll_get_process_pmts()->CurrentDirectoryName;
726     size = curdir->MaximumLength;
727
728     buf = RtlAllocateHeap(ntdll_get_process_heap(), 0, size);
729     if (buf == NULL)
730     {
731         nts = STATUS_NO_MEMORY;
732         goto out;
733     }
734
735     size = RtlGetFullPathName_U(dir->Buffer, size, buf, 0);
736     if (!size)
737     {
738         nts = STATUS_OBJECT_NAME_INVALID;
739         goto out;
740     }
741
742     switch (RtlDetermineDosPathNameType_U(buf))
743     {
744     case ABSOLUTE_DRIVE_PATH:
745     case UNC_PATH:
746         break;
747     default:
748         FIXME("Don't support those cases yes\n");
749         nts = STATUS_NOT_IMPLEMENTED;
750         goto out;
751     }
752
753     /* FIXME: should check that the directory actually exists,
754      * and fill CurrentDirectoryHandle accordingly 
755      */
756
757     /* append trailing \ if missing */
758     if (buf[size / sizeof(WCHAR) - 1] != '\\')
759     {
760         buf[size / sizeof(WCHAR)] = '\\';
761         buf[size / sizeof(WCHAR) + 1] = '\0';
762         size += sizeof(WCHAR);
763     }
764
765     memmove(curdir->Buffer, buf, size + sizeof(WCHAR));
766     curdir->Length = size;
767
768 #if 0
769     if (curdir->Buffer[1] == ':')
770     {
771         UNICODE_STRING  env;
772         WCHAR           var[4];
773
774         var[0] = '=';
775         var[1] = curdir->Buffer[0];
776         var[2] = ':';
777         var[3] = 0;
778         env.Length = 3 * sizeof(WCHAR);
779         env.MaximumLength = 4 * sizeof(WCHAR);
780         env.Buffer = var;
781
782         RtlSetEnvironmentVariable(NULL, &env, curdir);
783     }
784 #endif
785
786  out:
787     if (buf) RtlFreeHeap(ntdll_get_process_heap(), 0, buf);
788
789     RtlReleasePebLock();
790
791     return nts;
792 }