Attempt at fixing MAX_PATH issues for mingw.
[wine/dcerpc.git] / dlls / msvcrt / dir.c
blobc43bd52ed571e6f1bea2bb02752ad19c523e6c75
1 /*
2 * msvcrt.dll drive/directory functions
4 * Copyright 1996,1998 Marcus Meissner
5 * Copyright 1996 Jukka Iivonen
6 * Copyright 1997,2000 Uwe Bonnes
7 * Copyright 2000 Jon Griffiths
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
24 #include "config.h"
25 #include "wine/port.h"
27 #include <time.h>
28 #include "ntddk.h"
29 #include "wine/unicode.h"
30 #include "msvcrt.h"
31 #include "ms_errno.h"
33 #include "wine/unicode.h"
34 #include "msvcrt/direct.h"
35 #include "msvcrt/dos.h"
36 #include "msvcrt/io.h"
37 #include "msvcrt/stdlib.h"
38 #include "msvcrt/string.h"
40 #include "wine/debug.h"
42 WINE_DEFAULT_DEBUG_CHANNEL(msvcrt);
44 /* INTERNAL: Translate finddata_t to PWIN32_FIND_DATAA */
45 static void msvcrt_fttofd(LPWIN32_FIND_DATAA fd, struct _finddata_t* ft)
47 DWORD dw;
49 if (fd->dwFileAttributes == FILE_ATTRIBUTE_NORMAL)
50 ft->attrib = 0;
51 else
52 ft->attrib = fd->dwFileAttributes;
54 RtlTimeToSecondsSince1970( &fd->ftCreationTime, &dw );
55 ft->time_create = dw;
56 RtlTimeToSecondsSince1970( &fd->ftLastAccessTime, &dw );
57 ft->time_access = dw;
58 RtlTimeToSecondsSince1970( &fd->ftLastWriteTime, &dw );
59 ft->time_write = dw;
60 ft->size = fd->nFileSizeLow;
61 strcpy(ft->name, fd->cFileName);
64 /* INTERNAL: Translate wfinddata_t to PWIN32_FIND_DATAA */
65 static void msvcrt_wfttofd(LPWIN32_FIND_DATAW fd, struct _wfinddata_t* ft)
67 DWORD dw;
69 if (fd->dwFileAttributes == FILE_ATTRIBUTE_NORMAL)
70 ft->attrib = 0;
71 else
72 ft->attrib = fd->dwFileAttributes;
74 RtlTimeToSecondsSince1970( &fd->ftCreationTime, &dw );
75 ft->time_create = dw;
76 RtlTimeToSecondsSince1970( &fd->ftLastAccessTime, &dw );
77 ft->time_access = dw;
78 RtlTimeToSecondsSince1970( &fd->ftLastWriteTime, &dw );
79 ft->time_write = dw;
80 ft->size = fd->nFileSizeLow;
81 strcpyW(ft->name, fd->cFileName);
84 /*********************************************************************
85 * _chdir (MSVCRT.@)
87 int _chdir(const char * newdir)
89 if (!SetCurrentDirectoryA(newdir))
91 MSVCRT__set_errno(newdir?GetLastError():0);
92 return -1;
94 return 0;
97 /*********************************************************************
98 * _wchdir (MSVCRT.@)
100 int _wchdir(const WCHAR * newdir)
102 if (!SetCurrentDirectoryW(newdir))
104 MSVCRT__set_errno(newdir?GetLastError():0);
105 return -1;
107 return 0;
110 /*********************************************************************
111 * _chdrive (MSVCRT.@)
113 int _chdrive(int newdrive)
115 char buffer[3] = "A:";
116 buffer[0] += newdrive - 1;
117 if (!SetCurrentDirectoryA( buffer ))
119 MSVCRT__set_errno(GetLastError());
120 if (newdrive <= 0)
121 SET_THREAD_VAR(errno,MSVCRT_EACCES);
122 return -1;
124 return 0;
127 /*********************************************************************
128 * _findclose (MSVCRT.@)
130 int _findclose(long hand)
132 TRACE(":handle %ld\n",hand);
133 if (!FindClose((HANDLE)hand))
135 MSVCRT__set_errno(GetLastError());
136 return -1;
138 return 0;
141 /*********************************************************************
142 * _findfirst (MSVCRT.@)
144 long _findfirst(const char * fspec, struct _finddata_t* ft)
146 WIN32_FIND_DATAA find_data;
147 HANDLE hfind;
149 hfind = FindFirstFileA(fspec, &find_data);
150 if (hfind == INVALID_HANDLE_VALUE)
152 MSVCRT__set_errno(GetLastError());
153 return -1;
155 msvcrt_fttofd(&find_data,ft);
156 TRACE(":got handle %d\n",hfind);
157 return hfind;
160 /*********************************************************************
161 * _wfindfirst (MSVCRT.@)
163 long _wfindfirst(const WCHAR * fspec, struct _wfinddata_t* ft)
165 WIN32_FIND_DATAW find_data;
166 HANDLE hfind;
168 hfind = FindFirstFileW(fspec, &find_data);
169 if (hfind == INVALID_HANDLE_VALUE)
171 MSVCRT__set_errno(GetLastError());
172 return -1;
174 msvcrt_wfttofd(&find_data,ft);
175 TRACE(":got handle %d\n",hfind);
176 return hfind;
179 /*********************************************************************
180 * _findnext (MSVCRT.@)
182 int _findnext(long hand, struct _finddata_t * ft)
184 WIN32_FIND_DATAA find_data;
186 if (!FindNextFileA(hand, &find_data))
188 SET_THREAD_VAR(errno,MSVCRT_ENOENT);
189 return -1;
192 msvcrt_fttofd(&find_data,ft);
193 return 0;
196 /*********************************************************************
197 * _wfindnext (MSVCRT.@)
199 int _wfindnext(long hand, struct _wfinddata_t * ft)
201 WIN32_FIND_DATAW find_data;
203 if (!FindNextFileW(hand, &find_data))
205 SET_THREAD_VAR(errno,MSVCRT_ENOENT);
206 return -1;
209 msvcrt_wfttofd(&find_data,ft);
210 return 0;
213 /*********************************************************************
214 * _getcwd (MSVCRT.@)
216 char* _getcwd(char * buf, int size)
218 char dir[MAX_PATH];
219 int dir_len = GetCurrentDirectoryA(MAX_PATH,dir);
221 if (dir_len < 1)
222 return NULL; /* FIXME: Real return value untested */
224 if (!buf)
226 if (size < 0)
227 return _strdup(dir);
228 return msvcrt_strndup(dir,size);
230 if (dir_len >= size)
232 SET_THREAD_VAR(errno,MSVCRT_ERANGE);
233 return NULL; /* buf too small */
235 strcpy(buf,dir);
236 return buf;
239 /*********************************************************************
240 * _wgetcwd (MSVCRT.@)
242 WCHAR* _wgetcwd(WCHAR * buf, int size)
244 WCHAR dir[MAX_PATH];
245 int dir_len = GetCurrentDirectoryW(MAX_PATH,dir);
247 if (dir_len < 1)
248 return NULL; /* FIXME: Real return value untested */
250 if (!buf)
252 if (size < 0)
253 return _wcsdup(dir);
254 return msvcrt_wstrndup(dir,size);
256 if (dir_len >= size)
258 SET_THREAD_VAR(errno,MSVCRT_ERANGE);
259 return NULL; /* buf too small */
261 strcpyW(buf,dir);
262 return buf;
265 /*********************************************************************
266 * _getdrive (MSVCRT.@)
268 int _getdrive(void)
270 char buffer[MAX_PATH];
271 if (!GetCurrentDirectoryA( sizeof(buffer), buffer )) return 0;
272 if (buffer[1] != ':') return 0;
273 return toupper(buffer[0]) - 'A' + 1;
276 /*********************************************************************
277 * _getdcwd (MSVCRT.@)
279 char* _getdcwd(int drive, char * buf, int size)
281 static char* dummy;
283 TRACE(":drive %d(%c), size %d\n",drive, drive + 'A' - 1, size);
285 if (!drive || drive == _getdrive())
286 return _getcwd(buf,size); /* current */
287 else
289 char dir[MAX_PATH];
290 char drivespec[4] = {'A', ':', '\\', 0};
291 int dir_len;
293 drivespec[0] += drive - 1;
294 if (GetDriveTypeA(drivespec) < DRIVE_REMOVABLE)
296 SET_THREAD_VAR(errno,MSVCRT_EACCES);
297 return NULL;
300 dir_len = GetFullPathNameA(drivespec,MAX_PATH,dir,&dummy);
301 if (dir_len >= size || dir_len < 1)
303 SET_THREAD_VAR(errno,MSVCRT_ERANGE);
304 return NULL; /* buf too small */
307 TRACE(":returning '%s'\n", dir);
308 if (!buf)
309 return _strdup(dir); /* allocate */
311 strcpy(buf,dir);
313 return buf;
316 /*********************************************************************
317 * _wgetdcwd (MSVCRT.@)
319 WCHAR* _wgetdcwd(int drive, WCHAR * buf, int size)
321 static WCHAR* dummy;
323 TRACE(":drive %d(%c), size %d\n",drive, drive + 'A' - 1, size);
325 if (!drive || drive == _getdrive())
326 return _wgetcwd(buf,size); /* current */
327 else
329 WCHAR dir[MAX_PATH];
330 WCHAR drivespec[4] = {'A', ':', '\\', 0};
331 int dir_len;
333 drivespec[0] += drive - 1;
334 if (GetDriveTypeW(drivespec) < DRIVE_REMOVABLE)
336 SET_THREAD_VAR(errno,MSVCRT_EACCES);
337 return NULL;
340 dir_len = GetFullPathNameW(drivespec,MAX_PATH,dir,&dummy);
341 if (dir_len >= size || dir_len < 1)
343 SET_THREAD_VAR(errno,MSVCRT_ERANGE);
344 return NULL; /* buf too small */
347 TRACE(":returning %s\n", debugstr_w(dir));
348 if (!buf)
349 return _wcsdup(dir); /* allocate */
350 strcpyW(buf,dir);
352 return buf;
355 /*********************************************************************
356 * _getdiskfree (MSVCRT.@)
358 unsigned int _getdiskfree(unsigned int disk, struct _diskfree_t* d)
360 char drivespec[4] = {'@', ':', '\\', 0};
361 DWORD ret[4];
362 unsigned int err;
364 if (disk > 26)
365 return ERROR_INVALID_PARAMETER; /* MSVCRT doesn't set errno here */
367 drivespec[0] += disk; /* make a drive letter */
369 if (GetDiskFreeSpaceA(disk==0?NULL:drivespec,ret,ret+1,ret+2,ret+3))
371 d->sectors_per_cluster = (unsigned)ret[0];
372 d->bytes_per_sector = (unsigned)ret[1];
373 d->avail_clusters = (unsigned)ret[2];
374 d->total_clusters = (unsigned)ret[3];
375 return 0;
377 err = GetLastError();
378 MSVCRT__set_errno(err);
379 return err;
382 /*********************************************************************
383 * _mkdir (MSVCRT.@)
385 int _mkdir(const char * newdir)
387 if (CreateDirectoryA(newdir,NULL))
388 return 0;
389 MSVCRT__set_errno(GetLastError());
390 return -1;
393 /*********************************************************************
394 * _wmkdir (MSVCRT.@)
396 int _wmkdir(const WCHAR* newdir)
398 if (CreateDirectoryW(newdir,NULL))
399 return 0;
400 MSVCRT__set_errno(GetLastError());
401 return -1;
404 /*********************************************************************
405 * _rmdir (MSVCRT.@)
407 int _rmdir(const char * dir)
409 if (RemoveDirectoryA(dir))
410 return 0;
411 MSVCRT__set_errno(GetLastError());
412 return -1;
415 /*********************************************************************
416 * _wrmdir (MSVCRT.@)
418 int _wrmdir(const WCHAR * dir)
420 if (RemoveDirectoryW(dir))
421 return 0;
422 MSVCRT__set_errno(GetLastError());
423 return -1;
426 /*********************************************************************
427 * _wsplitpath (MSVCRT.@)
429 void _wsplitpath(const WCHAR *inpath, WCHAR *drv, WCHAR *dir,
430 WCHAR *fname, WCHAR *ext )
432 /* Modified PD code from 'snippets' collection. */
433 WCHAR ch, *ptr, *p;
434 WCHAR pathbuff[MAX_PATH],*path=pathbuff;
436 TRACE(":splitting path %s\n",debugstr_w(path));
437 /* FIXME: Should be an strncpyW or something */
438 strcpyW(pathbuff, inpath);
440 /* convert slashes to backslashes for searching */
441 for (ptr = (WCHAR*)path; *ptr; ++ptr)
442 if (*ptr == (WCHAR)L'/')
443 *ptr = (WCHAR)L'\\';
445 /* look for drive spec */
446 if ((ptr = strchrW(path, (WCHAR)L':')) != (WCHAR)L'\0')
448 ++ptr;
449 if (drv)
451 strncpyW(drv, path, ptr - path);
452 drv[ptr - path] = (WCHAR)L'\0';
454 path = ptr;
456 else if (drv)
457 *drv = (WCHAR)L'\0';
459 /* find rightmost backslash or leftmost colon */
460 if ((ptr = strrchrW(path, (WCHAR)L'\\')) == NULL)
461 ptr = (strchrW(path, (WCHAR)L':'));
463 if (!ptr)
465 ptr = (WCHAR *)path; /* no path */
466 if (dir)
467 *dir = (WCHAR)L'\0';
469 else
471 ++ptr; /* skip the delimiter */
472 if (dir)
474 ch = *ptr;
475 *ptr = (WCHAR)L'\0';
476 strcpyW(dir, path);
477 *ptr = ch;
481 if ((p = strrchrW(ptr, (WCHAR)L'.')) == NULL)
483 if (fname)
484 strcpyW(fname, ptr);
485 if (ext)
486 *ext = (WCHAR)L'\0';
488 else
490 *p = (WCHAR)L'\0';
491 if (fname)
492 strcpyW(fname, ptr);
493 *p = (WCHAR)L'.';
494 if (ext)
495 strcpyW(ext, p);
498 /* Fix pathological case - Win returns ':' as part of the
499 * directory when no drive letter is given.
501 if (drv && drv[0] == (WCHAR)L':')
503 *drv = (WCHAR)L'\0';
504 if (dir)
506 pathbuff[0] = (WCHAR)L':';
507 pathbuff[1] = (WCHAR)L'\0';
508 strcatW(pathbuff,dir);
509 strcpyW(dir, pathbuff);
514 /* INTERNAL: Helper for _fullpath. Modified PD code from 'snippets'. */
515 static void msvcrt_fln_fix(char *path)
517 int dir_flag = 0, root_flag = 0;
518 char *r, *p, *q, *s;
520 /* Skip drive */
521 if (NULL == (r = strrchr(path, ':')))
522 r = path;
523 else
524 ++r;
526 /* Ignore leading slashes */
527 while ('\\' == *r)
528 if ('\\' == r[1])
529 strcpy(r, &r[1]);
530 else
532 root_flag = 1;
533 ++r;
536 p = r; /* Change "\\" to "\" */
537 while (NULL != (p = strchr(p, '\\')))
538 if ('\\' == p[1])
539 strcpy(p, &p[1]);
540 else
541 ++p;
543 while ('.' == *r) /* Scrunch leading ".\" */
545 if ('.' == r[1])
547 /* Ignore leading ".." */
548 for (p = (r += 2); *p && (*p != '\\'); ++p)
551 else
553 for (p = r + 1 ;*p && (*p != '\\'); ++p)
556 strcpy(r, p + ((*p) ? 1 : 0));
559 while ('\\' == path[strlen(path)-1]) /* Strip last '\\' */
561 dir_flag = 1;
562 path[strlen(path)-1] = '\0';
565 s = r;
567 /* Look for "\." in path */
569 while (NULL != (p = strstr(s, "\\.")))
571 if ('.' == p[2])
573 /* Execute this section if ".." found */
574 q = p - 1;
575 while (q > r) /* Backup one level */
577 if (*q == '\\')
578 break;
579 --q;
581 if (q > r)
583 strcpy(q, p + 3);
584 s = q;
586 else if ('.' != *q)
588 strcpy(q + ((*q == '\\') ? 1 : 0),
589 p + 3 + ((*(p + 3)) ? 1 : 0));
590 s = q;
592 else s = ++p;
594 else
596 /* Execute this section if "." found */
597 q = p + 2;
598 for ( ;*q && (*q != '\\'); ++q)
600 strcpy (p, q);
604 if (root_flag) /* Embedded ".." could have bubbled up to root */
606 for (p = r; *p && ('.' == *p || '\\' == *p); ++p)
608 if (r != p)
609 strcpy(r, p);
612 if (dir_flag)
613 strcat(path, "\\");
616 /*********************************************************************
617 * _fullpath (MSVCRT.@)
619 char *_fullpath(char * absPath, const char* relPath, unsigned int size)
621 char drive[5],dir[MAX_PATH],file[MAX_PATH],ext[MAX_PATH];
622 char res[MAX_PATH];
623 size_t len;
625 res[0] = '\0';
627 if (!relPath || !*relPath)
628 return _getcwd(absPath, size);
630 if (size < 4)
632 SET_THREAD_VAR(errno,MSVCRT_ERANGE);
633 return NULL;
636 TRACE(":resolving relative path '%s'\n",relPath);
638 _splitpath(relPath, drive, dir, file, ext);
640 /* Get Directory and drive into 'res' */
641 if (!dir[0] || (dir[0] != '/' && dir[0] != '\\'))
643 /* Relative or no directory given */
644 _getdcwd(drive[0] ? toupper(drive[0]) - 'A' + 1 : 0, res, MAX_PATH);
645 strcat(res,"\\");
646 if (dir[0])
647 strcat(res,dir);
648 if (drive[0])
649 res[0] = drive[0]; /* If given a drive, preserve the letter case */
651 else
653 strcpy(res,drive);
654 strcat(res,dir);
657 strcat(res,"\\");
658 strcat(res, file);
659 strcat(res, ext);
660 msvcrt_fln_fix(res);
662 len = strlen(res);
663 if (len >= MAX_PATH || len >= (size_t)size)
664 return NULL; /* FIXME: errno? */
666 if (!absPath)
667 return _strdup(res);
668 strcpy(absPath,res);
669 return absPath;
672 /*********************************************************************
673 * _makepath (MSVCRT.@)
675 VOID _makepath(char * path, const char * drive,
676 const char *directory, const char * filename,
677 const char * extension )
679 char ch;
680 TRACE("got %s %s %s %s\n", drive, directory,
681 filename, extension);
683 if ( !path )
684 return;
686 path[0] = 0;
687 if (drive && drive[0])
689 path[0] = drive[0];
690 path[1] = ':';
691 path[2] = 0;
693 if (directory && directory[0])
695 strcat(path, directory);
696 ch = path[strlen(path)-1];
697 if (ch != '/' && ch != '\\')
698 strcat(path,"\\");
700 if (filename && filename[0])
702 strcat(path, filename);
703 if (extension && extension[0])
705 if ( extension[0] != '.' )
706 strcat(path,".");
707 strcat(path,extension);
711 TRACE("returning %s\n",path);
714 /*********************************************************************
715 * _wmakepath (MSVCRT.@)
717 VOID _wmakepath(WCHAR *path, const WCHAR *drive, const WCHAR *directory,
718 const WCHAR *filename, const WCHAR *extension)
720 WCHAR ch;
721 TRACE("%s %s %s %s\n", debugstr_w(drive), debugstr_w(directory),
722 debugstr_w(filename), debugstr_w(extension));
724 if ( !path )
725 return;
727 path[0] = 0;
728 if (drive && drive[0])
730 path[0] = drive[0];
731 path[1] = ':';
732 path[2] = 0;
734 if (directory && directory[0])
736 strcatW(path, directory);
737 ch = path[strlenW(path) - 1];
738 if (ch != '/' && ch != '\\')
740 static const WCHAR backslashW[] = {'\\',0};
741 strcatW(path, backslashW);
744 if (filename && filename[0])
746 strcatW(path, filename);
747 if (extension && extension[0])
749 if ( extension[0] != '.' )
751 static const WCHAR dotW[] = {'.',0};
752 strcatW(path, dotW);
754 strcatW(path, extension);
758 TRACE("returning %s\n", debugstr_w(path));
761 /*********************************************************************
762 * _searchenv (MSVCRT.@)
764 void _searchenv(const char* file, const char* env, char *buf)
766 char*envVal, *penv;
767 char curPath[MAX_PATH];
769 *buf = '\0';
771 /* Try CWD first */
772 if (GetFileAttributesA( file ) != 0xFFFFFFFF)
774 GetFullPathNameA( file, MAX_PATH, buf, NULL );
775 /* Sigh. This error is *always* set, regardless of success */
776 MSVCRT__set_errno(ERROR_FILE_NOT_FOUND);
777 return;
780 /* Search given environment variable */
781 envVal = MSVCRT_getenv(env);
782 if (!envVal)
784 MSVCRT__set_errno(ERROR_FILE_NOT_FOUND);
785 return;
788 penv = envVal;
789 TRACE(":searching for %s in paths %s\n", file, envVal);
793 char *end = penv;
795 while(*end && *end != ';') end++; /* Find end of next path */
796 if (penv == end || !*penv)
798 MSVCRT__set_errno(ERROR_FILE_NOT_FOUND);
799 return;
801 strncpy(curPath, penv, end - penv);
802 if (curPath[end - penv] != '/' || curPath[end - penv] != '\\')
804 curPath[end - penv] = '\\';
805 curPath[end - penv + 1] = '\0';
807 else
808 curPath[end - penv] = '\0';
810 strcat(curPath, file);
811 TRACE("Checking for file %s\n", curPath);
812 if (GetFileAttributesA( curPath ) != 0xFFFFFFFF)
814 strcpy(buf, curPath);
815 MSVCRT__set_errno(ERROR_FILE_NOT_FOUND);
816 return; /* Found */
818 penv = *end ? end + 1 : end;
819 } while(1);