2 * NTDLL directory functions
4 * Copyright 1993 Erik Bos
5 * Copyright 2003 Eric Pouech
6 * Copyright 1996, 2004 Alexandre Julliard
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
26 #include <sys/types.h>
38 #ifdef HAVE_SYS_STAT_H
39 # include <sys/stat.h>
41 #ifdef HAVE_SYS_IOCTL_H
42 #include <sys/ioctl.h>
44 #ifdef HAVE_LINUX_IOCTL_H
45 #include <linux/ioctl.h>
47 #ifdef HAVE_LINUX_MAJOR_H
48 # include <linux/major.h>
50 #ifdef HAVE_SYS_PARAM_H
51 #include <sys/param.h>
53 #ifdef HAVE_SYS_MOUNT_H
54 #include <sys/mount.h>
61 #define NONAMELESSUNION
62 #define NONAMELESSSTRUCT
64 #define WIN32_NO_STATUS
69 #include "ntdll_misc.h"
70 #include "wine/unicode.h"
71 #include "wine/server.h"
72 #include "wine/library.h"
73 #include "wine/debug.h"
75 WINE_DEFAULT_DEBUG_CHANNEL(file
);
78 #undef VFAT_IOCTL_READDIR_BOTH
83 /* We want the real kernel dirent structure, not the libc one */
88 unsigned short d_reclen
;
92 /* Define the VFAT ioctl to get both short and long file names */
93 #define VFAT_IOCTL_READDIR_BOTH _IOR('r', 1, KERNEL_DIRENT [2] )
96 # define O_DIRECTORY 0200000 /* must be directory */
105 unsigned short d_reclen
;
106 unsigned char d_type
;
110 static inline int getdents64( int fd
, KERNEL_DIRENT64
*de
, unsigned int size
)
113 __asm__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
115 : "0" (220 /*NR_getdents64*/), "r" (fd
), "c" (de
), "d" (size
)
130 #define IS_OPTION_TRUE(ch) ((ch) == 'y' || (ch) == 'Y' || (ch) == 't' || (ch) == 'T' || (ch) == '1')
131 #define IS_SEPARATOR(ch) ((ch) == '\\' || (ch) == '/')
133 #define INVALID_NT_CHARS '*','?','<','>','|','"'
134 #define INVALID_DOS_CHARS INVALID_NT_CHARS,'+','=',',',';','[',']',' ','\345'
136 #define MAX_DIR_ENTRY_LEN 255 /* max length of a directory entry in chars */
138 static int show_dot_files
= -1;
140 /* at some point we may want to allow Winelib apps to set this */
141 static const int is_case_sensitive
= FALSE
;
143 static RTL_CRITICAL_SECTION dir_section
;
144 static RTL_CRITICAL_SECTION_DEBUG critsect_debug
=
147 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
148 0, 0, { (DWORD_PTR
)(__FILE__
": dir_section") }
150 static RTL_CRITICAL_SECTION dir_section
= { &critsect_debug
, -1, 0, 0, 0, 0 };
153 /* check if a given Unicode char is OK in a DOS short name */
154 static inline BOOL
is_invalid_dos_char( WCHAR ch
)
156 static const WCHAR invalid_chars
[] = { INVALID_DOS_CHARS
,'~','.',0 };
157 if (ch
> 0x7f) return TRUE
;
158 return strchrW( invalid_chars
, ch
) != NULL
;
161 /***********************************************************************
162 * get_default_com_device
164 * Return the default device to use for serial ports.
166 static char *get_default_com_device( int num
)
170 if (!num
|| num
> 9) return ret
;
172 ret
= RtlAllocateHeap( GetProcessHeap(), 0, sizeof("/dev/ttyS0") );
175 strcpy( ret
, "/dev/ttyS0" );
176 ret
[strlen(ret
) - 1] = '0' + num
- 1;
179 FIXME( "no known default for device com%d\n", num
);
185 /***********************************************************************
186 * get_default_lpt_device
188 * Return the default device to use for parallel ports.
190 static char *get_default_lpt_device( int num
)
194 if (!num
|| num
> 9) return ret
;
196 ret
= RtlAllocateHeap( GetProcessHeap(), 0, sizeof("/dev/lp0") );
199 strcpy( ret
, "/dev/lp0" );
200 ret
[strlen(ret
) - 1] = '0' + num
- 1;
203 FIXME( "no known default for device lpt%d\n", num
);
209 /***********************************************************************
210 * parse_mount_entries
212 * Parse mount entries looking for a given device. Helper for get_default_drive_device.
216 #include <sys/vfstab.h>
217 static char *parse_vfstab_entries( FILE *f
, dev_t dev
, ino_t ino
)
220 struct vfstab vfs_entry
;
221 struct vfstab
*entry
=&vfs_entry
;
225 while (! getvfsent( f
, entry
))
227 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
228 if (!strcmp( entry
->vfs_fstype
, "nfs" ) ||
229 !strcmp( entry
->vfs_fstype
, "smbfs" ) ||
230 !strcmp( entry
->vfs_fstype
, "ncpfs" )) continue;
232 if (stat( entry
->vfs_mountp
, &st
) == -1) continue;
233 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
234 if (!strcmp( entry
->vfs_fstype
, "fd" ))
236 if ((device
= strstr( entry
->vfs_mntopts
, "dev=" )))
238 char *p
= strchr( device
+ 4, ',' );
244 return entry
->vfs_special
;
251 static char *parse_mount_entries( FILE *f
, dev_t dev
, ino_t ino
)
253 struct mntent
*entry
;
257 while ((entry
= getmntent( f
)))
259 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
260 if (!strcmp( entry
->mnt_type
, "nfs" ) ||
261 !strcmp( entry
->mnt_type
, "smbfs" ) ||
262 !strcmp( entry
->mnt_type
, "ncpfs" )) continue;
264 if (stat( entry
->mnt_dir
, &st
) == -1) continue;
265 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
266 if (!strcmp( entry
->mnt_type
, "supermount" ))
268 if ((device
= strstr( entry
->mnt_opts
, "dev=" )))
270 char *p
= strchr( device
+ 4, ',' );
275 else if (!stat( entry
->mnt_fsname
, &st
) && S_ISREG(st
.st_mode
))
277 /* if device is a regular file check for a loop mount */
278 if ((device
= strstr( entry
->mnt_opts
, "loop=" )))
280 char *p
= strchr( device
+ 5, ',' );
286 return entry
->mnt_fsname
;
292 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
294 static char *parse_mount_entries( FILE *f
, dev_t dev
, ino_t ino
)
299 while ((entry
= getfsent()))
301 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
302 if (!strcmp( entry
->fs_vfstype
, "nfs" ) ||
303 !strcmp( entry
->fs_vfstype
, "smbfs" ) ||
304 !strcmp( entry
->fs_vfstype
, "ncpfs" )) continue;
306 if (stat( entry
->fs_file
, &st
) == -1) continue;
307 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
308 return entry
->fs_spec
;
315 #include <sys/mnttab.h>
316 static char *parse_mount_entries( FILE *f
, dev_t dev
, ino_t ino
)
319 volatile struct mnttab mntentry
;
320 struct mnttab
*entry
=&mntentry
;
325 while (( ! getmntent( f
, entry
) ))
327 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
328 if (!strcmp( entry
->mnt_fstype
, "nfs" ) ||
329 !strcmp( entry
->mnt_fstype
, "smbfs" ) ||
330 !strcmp( entry
->mnt_fstype
, "ncpfs" )) continue;
332 if (stat( entry
->mnt_mountp
, &st
) == -1) continue;
333 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
334 if (!strcmp( entry
->mnt_fstype
, "fd" ))
336 if ((device
= strstr( entry
->mnt_mntopts
, "dev=" )))
338 char *p
= strchr( device
+ 4, ',' );
344 return entry
->mnt_special
;
350 /***********************************************************************
351 * get_default_drive_device
353 * Return the default device to use for a given drive mount point.
355 static char *get_default_drive_device( const char *root
)
365 /* try to open it first to force it to get mounted */
366 if ((fd
= open( root
, O_RDONLY
| O_DIRECTORY
)) != -1)
368 res
= fstat( fd
, &st
);
371 /* now try normal stat just in case */
372 if (res
== -1) res
= stat( root
, &st
);
373 if (res
== -1) return NULL
;
375 RtlEnterCriticalSection( &dir_section
);
377 if ((f
= fopen( "/etc/mtab", "r" )))
379 device
= parse_mount_entries( f
, st
.st_dev
, st
.st_ino
);
382 /* look through fstab too in case it's not mounted (for instance if it's an audio CD) */
383 if (!device
&& (f
= fopen( "/etc/fstab", "r" )))
385 device
= parse_mount_entries( f
, st
.st_dev
, st
.st_ino
);
390 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(device
) + 1 );
391 if (ret
) strcpy( ret
, device
);
393 RtlLeaveCriticalSection( &dir_section
);
395 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__ )
400 /* try to open it first to force it to get mounted */
401 if ((fd
= open( root
, O_RDONLY
)) != -1)
403 res
= fstat( fd
, &st
);
406 /* now try normal stat just in case */
407 if (res
== -1) res
= stat( root
, &st
);
408 if (res
== -1) return NULL
;
410 RtlEnterCriticalSection( &dir_section
);
412 /* The FreeBSD parse_mount_entries doesn't require a file argument, so just
413 * pass NULL. Leave the argument in for symmetry.
415 device
= parse_mount_entries( NULL
, st
.st_dev
, st
.st_ino
);
418 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(device
) + 1 );
419 if (ret
) strcpy( ret
, device
);
421 RtlLeaveCriticalSection( &dir_section
);
429 /* try to open it first to force it to get mounted */
430 if ((fd
= open( root
, O_RDONLY
)) != -1)
432 res
= fstat( fd
, &st
);
435 /* now try normal stat just in case */
436 if (res
== -1) res
= stat( root
, &st
);
437 if (res
== -1) return NULL
;
439 RtlEnterCriticalSection( &dir_section
);
441 if ((f
= fopen( "/etc/mnttab", "r" )))
443 device
= parse_mount_entries( f
, st
.st_dev
, st
.st_ino
);
446 /* look through fstab too in case it's not mounted (for instance if it's an audio CD) */
447 if (!device
&& (f
= fopen( "/etc/vfstab", "r" )))
449 device
= parse_vfstab_entries( f
, st
.st_dev
, st
.st_ino
);
454 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(device
) + 1 );
455 if (ret
) strcpy( ret
, device
);
457 RtlLeaveCriticalSection( &dir_section
);
459 #elif defined(__APPLE__)
460 struct statfs
*mntStat
;
466 static const char path_bsd_device
[] = "/dev/disk";
469 res
= stat( root
, &st
);
470 if (res
== -1) return NULL
;
475 RtlEnterCriticalSection( &dir_section
);
477 mntSize
= getmntinfo(&mntStat
, MNT_NOWAIT
);
479 for (i
= 0; i
< mntSize
&& !ret
; i
++)
481 if (stat(mntStat
[i
].f_mntonname
, &st
) == -1) continue;
482 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
484 /* FIXME add support for mounted network drive */
485 if ( strncmp(mntStat
[i
].f_mntfromname
, path_bsd_device
, strlen(path_bsd_device
)) == 0)
487 /* set return value to the corresponding raw BSD node */
488 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(mntStat
[i
].f_mntfromname
) + 2 /* 2 : r and \0 */ );
491 strcpy(ret
, "/dev/r");
492 strcat(ret
, mntStat
[i
].f_mntfromname
+sizeof("/dev/")-1);
496 RtlLeaveCriticalSection( &dir_section
);
499 if (!warned
++) FIXME( "auto detection of DOS devices not supported on this platform\n" );
505 /***********************************************************************
506 * get_device_mount_point
508 * Return the current mount point for a device.
510 static char *get_device_mount_point( dev_t dev
)
517 RtlEnterCriticalSection( &dir_section
);
519 if ((f
= fopen( "/etc/mtab", "r" )))
521 struct mntent
*entry
;
525 while ((entry
= getmntent( f
)))
527 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
528 if (!strcmp( entry
->mnt_type
, "nfs" ) ||
529 !strcmp( entry
->mnt_type
, "smbfs" ) ||
530 !strcmp( entry
->mnt_type
, "ncpfs" )) continue;
532 if (!strcmp( entry
->mnt_type
, "supermount" ))
534 if ((device
= strstr( entry
->mnt_opts
, "dev=" )))
537 if ((p
= strchr( device
, ',' ))) *p
= 0;
540 else if (!stat( entry
->mnt_fsname
, &st
) && S_ISREG(st
.st_mode
))
542 /* if device is a regular file check for a loop mount */
543 if ((device
= strstr( entry
->mnt_opts
, "loop=" )))
546 if ((p
= strchr( device
, ',' ))) *p
= 0;
549 else device
= entry
->mnt_fsname
;
551 if (device
&& !stat( device
, &st
) && S_ISBLK(st
.st_mode
) && st
.st_rdev
== dev
)
553 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(entry
->mnt_dir
) + 1 );
554 if (ret
) strcpy( ret
, entry
->mnt_dir
);
560 RtlLeaveCriticalSection( &dir_section
);
563 if (!warned
++) FIXME( "unmounting devices not supported on this platform\n" );
569 /***********************************************************************
572 * Initialize the show_dot_files options.
574 static void init_options(void)
576 static const WCHAR WineW
[] = {'S','o','f','t','w','a','r','e','\\','W','i','n','e',0};
577 static const WCHAR ShowDotFilesW
[] = {'S','h','o','w','D','o','t','F','i','l','e','s',0};
581 OBJECT_ATTRIBUTES attr
;
582 UNICODE_STRING nameW
;
586 RtlOpenCurrentUser( KEY_ALL_ACCESS
, &root
);
587 attr
.Length
= sizeof(attr
);
588 attr
.RootDirectory
= root
;
589 attr
.ObjectName
= &nameW
;
591 attr
.SecurityDescriptor
= NULL
;
592 attr
.SecurityQualityOfService
= NULL
;
593 RtlInitUnicodeString( &nameW
, WineW
);
595 /* @@ Wine registry key: HKCU\Software\Wine */
596 if (!NtOpenKey( &hkey
, KEY_ALL_ACCESS
, &attr
))
598 RtlInitUnicodeString( &nameW
, ShowDotFilesW
);
599 if (!NtQueryValueKey( hkey
, &nameW
, KeyValuePartialInformation
, tmp
, sizeof(tmp
), &dummy
))
601 WCHAR
*str
= (WCHAR
*)((KEY_VALUE_PARTIAL_INFORMATION
*)tmp
)->Data
;
602 show_dot_files
= IS_OPTION_TRUE( str
[0] );
610 /***********************************************************************
613 * Check if the specified file should be hidden based on its name and the show dot files option.
615 BOOL
DIR_is_hidden_file( const UNICODE_STRING
*name
)
619 if (show_dot_files
== -1) init_options();
620 if (show_dot_files
) return FALSE
;
622 end
= p
= name
->Buffer
+ name
->Length
/sizeof(WCHAR
);
623 while (p
> name
->Buffer
&& IS_SEPARATOR(p
[-1])) p
--;
624 while (p
> name
->Buffer
&& !IS_SEPARATOR(p
[-1])) p
--;
625 if (p
== end
|| *p
!= '.') return FALSE
;
626 /* make sure it isn't '.' or '..' */
627 if (p
+ 1 == end
) return FALSE
;
628 if (p
[1] == '.' && p
+ 2 == end
) return FALSE
;
633 /***********************************************************************
634 * hash_short_file_name
636 * Transform a Unix file name into a hashed DOS name. If the name is a valid
637 * DOS name, it is converted to upper-case; otherwise it is replaced by a
638 * hashed version that fits in 8.3 format.
639 * 'buffer' must be at least 12 characters long.
640 * Returns length of short name in bytes; short name is NOT null-terminated.
642 static ULONG
hash_short_file_name( const UNICODE_STRING
*name
, LPWSTR buffer
)
644 static const char hash_chars
[32] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ012345";
646 LPCWSTR p
, ext
, end
= name
->Buffer
+ name
->Length
/ sizeof(WCHAR
);
651 /* Compute the hash code of the file name */
652 /* If you know something about hash functions, feel free to */
653 /* insert a better algorithm here... */
654 if (!is_case_sensitive
)
656 for (p
= name
->Buffer
, hash
= 0xbeef; p
< end
- 1; p
++)
657 hash
= (hash
<<3) ^ (hash
>>5) ^ tolowerW(*p
) ^ (tolowerW(p
[1]) << 8);
658 hash
= (hash
<<3) ^ (hash
>>5) ^ tolowerW(*p
); /* Last character */
662 for (p
= name
->Buffer
, hash
= 0xbeef; p
< end
- 1; p
++)
663 hash
= (hash
<< 3) ^ (hash
>> 5) ^ *p
^ (p
[1] << 8);
664 hash
= (hash
<< 3) ^ (hash
>> 5) ^ *p
; /* Last character */
667 /* Find last dot for start of the extension */
668 for (p
= name
->Buffer
+ 1, ext
= NULL
; p
< end
- 1; p
++) if (*p
== '.') ext
= p
;
670 /* Copy first 4 chars, replacing invalid chars with '_' */
671 for (i
= 4, p
= name
->Buffer
, dst
= buffer
; i
> 0; i
--, p
++)
673 if (p
== end
|| p
== ext
) break;
674 *dst
++ = is_invalid_dos_char(*p
) ? '_' : toupperW(*p
);
676 /* Pad to 5 chars with '~' */
677 while (i
-- >= 0) *dst
++ = '~';
679 /* Insert hash code converted to 3 ASCII chars */
680 *dst
++ = hash_chars
[(hash
>> 10) & 0x1f];
681 *dst
++ = hash_chars
[(hash
>> 5) & 0x1f];
682 *dst
++ = hash_chars
[hash
& 0x1f];
684 /* Copy the first 3 chars of the extension (if any) */
688 for (i
= 3, ext
++; (i
> 0) && ext
< end
; i
--, ext
++)
689 *dst
++ = is_invalid_dos_char(*ext
) ? '_' : toupperW(*ext
);
695 /***********************************************************************
698 * Check a long file name against a mask.
700 * Tests (done in W95 DOS shell - case insensitive):
701 * *.txt test1.test.txt *
703 * *.t??????.t* test1.ta.tornado.txt *
704 * *tornado* test1.ta.tornado.txt *
705 * t*t test1.ta.tornado.txt *
707 * ?est??? test1.txt -
708 * *test1.txt* test1.txt *
709 * h?l?o*t.dat hellothisisatest.dat *
711 static BOOLEAN
match_filename( const UNICODE_STRING
*name_str
, const UNICODE_STRING
*mask_str
)
714 const WCHAR
*name
= name_str
->Buffer
;
715 const WCHAR
*mask
= mask_str
->Buffer
;
716 const WCHAR
*name_end
= name
+ name_str
->Length
/ sizeof(WCHAR
);
717 const WCHAR
*mask_end
= mask
+ mask_str
->Length
/ sizeof(WCHAR
);
718 const WCHAR
*lastjoker
= NULL
;
719 const WCHAR
*next_to_retry
= NULL
;
721 TRACE("(%s, %s)\n", debugstr_us(name_str
), debugstr_us(mask_str
));
723 while (name
< name_end
&& mask
< mask_end
)
729 while (mask
< mask_end
&& *mask
== '*') mask
++; /* Skip consecutive '*' */
730 if (mask
== mask_end
) return TRUE
; /* end of mask is all '*', so match */
733 /* skip to the next match after the joker(s) */
734 if (is_case_sensitive
)
735 while (name
< name_end
&& (*name
!= *mask
)) name
++;
737 while (name
< name_end
&& (toupperW(*name
) != toupperW(*mask
))) name
++;
738 next_to_retry
= name
;
745 if (is_case_sensitive
) mismatch
= (*mask
!= *name
);
746 else mismatch
= (toupperW(*mask
) != toupperW(*name
));
752 if (mask
== mask_end
)
754 if (name
== name_end
) return TRUE
;
755 if (lastjoker
) mask
= lastjoker
;
758 else /* mismatch ! */
760 if (lastjoker
) /* we had an '*', so we can try unlimitedly */
764 /* this scan sequence was a mismatch, so restart
765 * 1 char after the first char we checked last time */
767 name
= next_to_retry
;
769 else return FALSE
; /* bad luck */
774 while (mask
< mask_end
&& ((*mask
== '.') || (*mask
== '*')))
775 mask
++; /* Ignore trailing '.' or '*' in mask */
776 return (name
== name_end
&& mask
== mask_end
);
780 /***********************************************************************
783 * helper for NtQueryDirectoryFile
785 static FILE_BOTH_DIR_INFORMATION
*append_entry( void *info_ptr
, ULONG_PTR
*pos
, ULONG max_length
,
786 const char *long_name
, const char *short_name
,
787 const UNICODE_STRING
*mask
)
789 FILE_BOTH_DIR_INFORMATION
*info
;
790 int i
, long_len
, short_len
, total_len
;
792 WCHAR long_nameW
[MAX_DIR_ENTRY_LEN
];
793 WCHAR short_nameW
[12];
796 long_len
= ntdll_umbstowcs( 0, long_name
, strlen(long_name
), long_nameW
, MAX_DIR_ENTRY_LEN
);
797 if (long_len
== -1) return NULL
;
799 str
.Buffer
= long_nameW
;
800 str
.Length
= long_len
* sizeof(WCHAR
);
801 str
.MaximumLength
= sizeof(long_nameW
);
805 short_len
= ntdll_umbstowcs( 0, short_name
, strlen(short_name
),
806 short_nameW
, sizeof(short_nameW
) / sizeof(WCHAR
) );
807 if (short_len
== -1) short_len
= sizeof(short_nameW
) / sizeof(WCHAR
);
809 else /* generate a short name if necessary */
814 if (!RtlIsNameLegalDOS8Dot3( &str
, NULL
, &spaces
) || spaces
)
815 short_len
= hash_short_file_name( &str
, short_nameW
);
818 TRACE( "long %s short %s mask %s\n",
819 debugstr_us(&str
), debugstr_wn(short_nameW
, short_len
), debugstr_us(mask
) );
821 if (mask
&& !match_filename( &str
, mask
))
823 if (!short_len
) return NULL
; /* no short name to match */
824 str
.Buffer
= short_nameW
;
825 str
.Length
= short_len
* sizeof(WCHAR
);
826 str
.MaximumLength
= sizeof(short_nameW
);
827 if (!match_filename( &str
, mask
)) return NULL
;
830 total_len
= (sizeof(*info
) - sizeof(info
->FileName
) + long_len
*sizeof(WCHAR
) + 3) & ~3;
831 info
= (FILE_BOTH_DIR_INFORMATION
*)((char *)info_ptr
+ *pos
);
833 if (*pos
+ total_len
> max_length
) total_len
= max_length
- *pos
;
835 info
->FileAttributes
= 0;
836 if (lstat( long_name
, &st
) == -1) return NULL
;
837 if (S_ISLNK( st
.st_mode
))
839 if (stat( long_name
, &st
) == -1) return NULL
;
840 if (S_ISDIR( st
.st_mode
)) info
->FileAttributes
|= FILE_ATTRIBUTE_REPARSE_POINT
;
843 info
->NextEntryOffset
= total_len
;
844 info
->FileIndex
= 0; /* NTFS always has 0 here, so let's not bother with it */
846 RtlSecondsSince1970ToTime( st
.st_mtime
, &info
->CreationTime
);
847 RtlSecondsSince1970ToTime( st
.st_mtime
, &info
->LastWriteTime
);
848 RtlSecondsSince1970ToTime( st
.st_atime
, &info
->LastAccessTime
);
849 RtlSecondsSince1970ToTime( st
.st_ctime
, &info
->ChangeTime
);
851 if (S_ISDIR(st
.st_mode
))
853 info
->EndOfFile
.QuadPart
= info
->AllocationSize
.QuadPart
= 0;
854 info
->FileAttributes
|= FILE_ATTRIBUTE_DIRECTORY
;
858 info
->EndOfFile
.QuadPart
= st
.st_size
;
859 info
->AllocationSize
.QuadPart
= (ULONGLONG
)st
.st_blocks
* 512;
860 info
->FileAttributes
|= FILE_ATTRIBUTE_ARCHIVE
;
863 if (!(st
.st_mode
& (S_IWUSR
| S_IWGRP
| S_IWOTH
)))
864 info
->FileAttributes
|= FILE_ATTRIBUTE_READONLY
;
866 if (!show_dot_files
&& long_name
[0] == '.' && long_name
[1] && (long_name
[1] != '.' || long_name
[2]))
867 info
->FileAttributes
|= FILE_ATTRIBUTE_HIDDEN
;
869 info
->EaSize
= 0; /* FIXME */
870 info
->ShortNameLength
= short_len
* sizeof(WCHAR
);
871 for (i
= 0; i
< short_len
; i
++) info
->ShortName
[i
] = toupperW(short_nameW
[i
]);
872 info
->FileNameLength
= long_len
* sizeof(WCHAR
);
873 memcpy( info
->FileName
, long_nameW
,
874 min( info
->FileNameLength
, total_len
-sizeof(*info
)+sizeof(info
->FileName
) ));
881 /***********************************************************************
882 * read_directory_vfat
884 * Read a directory using the VFAT ioctl; helper for NtQueryDirectoryFile.
886 #ifdef VFAT_IOCTL_READDIR_BOTH
887 static int read_directory_vfat( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
888 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
889 BOOLEAN restart_scan
)
894 FILE_BOTH_DIR_INFORMATION
*info
, *last_info
= NULL
;
895 static const unsigned int max_dir_info_size
= sizeof(*info
) + (MAX_DIR_ENTRY_LEN
-1) * sizeof(WCHAR
);
897 io
->u
.Status
= STATUS_SUCCESS
;
899 if (restart_scan
) lseek( fd
, 0, SEEK_SET
);
901 if (length
< max_dir_info_size
) /* we may have to return a partial entry here */
903 off_t old_pos
= lseek( fd
, 0, SEEK_CUR
);
905 /* Set d_reclen to 65535 to work around an AFS kernel bug */
906 de
[0].d_reclen
= 65535;
907 res
= ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
);
908 if (res
== -1 && errno
!= ENOENT
) return -1; /* VFAT ioctl probably not supported */
909 if (!res
&& de
[0].d_reclen
== 65535) return -1; /* AFS bug */
913 if (!de
[0].d_reclen
) break;
914 /* make sure names are null-terminated to work around an x86-64 kernel bug */
915 if (de
[0].d_reclen
< sizeof(de
[0].d_name
)) de
[0].d_name
[de
[0].d_reclen
] = 0;
916 if (de
[1].d_reclen
< sizeof(de
[1].d_name
)) de
[1].d_name
[de
[1].d_reclen
] = 0;
918 info
= append_entry( buffer
, &io
->Information
, length
,
919 de
[1].d_name
, de
[0].d_name
, mask
);
921 info
= append_entry( buffer
, &io
->Information
, length
,
922 de
[0].d_name
, NULL
, mask
);
926 if ((char *)info
->FileName
+ info
->FileNameLength
> (char *)buffer
+ length
)
928 io
->u
.Status
= STATUS_BUFFER_OVERFLOW
;
929 lseek( fd
, old_pos
, SEEK_SET
); /* restore pos to previous entry */
933 old_pos
= lseek( fd
, 0, SEEK_CUR
);
934 res
= ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
);
937 else /* we'll only return full entries, no need to worry about overflow */
939 /* Set d_reclen to 65535 to work around an AFS kernel bug */
940 de
[0].d_reclen
= 65535;
941 res
= ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
);
942 if (res
== -1 && errno
!= ENOENT
) return -1; /* VFAT ioctl probably not supported */
943 if (!res
&& de
[0].d_reclen
== 65535) return -1; /* AFS bug */
947 if (!de
[0].d_reclen
) break;
948 /* make sure names are null-terminated to work around an x86-64 kernel bug */
949 if (de
[0].d_reclen
< sizeof(de
[0].d_name
)) de
[0].d_name
[de
[0].d_reclen
] = 0;
950 if (de
[1].d_reclen
< sizeof(de
[1].d_name
)) de
[1].d_name
[de
[1].d_reclen
] = 0;
952 info
= append_entry( buffer
, &io
->Information
, length
,
953 de
[1].d_name
, de
[0].d_name
, mask
);
955 info
= append_entry( buffer
, &io
->Information
, length
,
956 de
[0].d_name
, NULL
, mask
);
960 if (single_entry
) break;
961 /* check if we still have enough space for the largest possible entry */
962 if (io
->Information
+ max_dir_info_size
> length
) break;
964 res
= ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
);
968 if (last_info
) last_info
->NextEntryOffset
= 0;
969 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
972 #endif /* VFAT_IOCTL_READDIR_BOTH */
975 /***********************************************************************
976 * read_directory_getdents
978 * Read a directory using the Linux getdents64 system call; helper for NtQueryDirectoryFile.
981 static int read_directory_getdents( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
982 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
983 BOOLEAN restart_scan
)
986 size_t size
= length
;
988 char local_buffer
[8192];
989 KERNEL_DIRENT64
*data
, *de
;
990 FILE_BOTH_DIR_INFORMATION
*info
, *last_info
= NULL
;
991 static const unsigned int max_dir_info_size
= sizeof(*info
) + (MAX_DIR_ENTRY_LEN
-1) * sizeof(WCHAR
);
993 if (size
<= sizeof(local_buffer
) || !(data
= RtlAllocateHeap( GetProcessHeap(), 0, size
)))
995 size
= sizeof(local_buffer
);
996 data
= (KERNEL_DIRENT64
*)local_buffer
;
999 if (restart_scan
) lseek( fd
, 0, SEEK_SET
);
1000 else if (length
< max_dir_info_size
) /* we may have to return a partial entry here */
1002 old_pos
= lseek( fd
, 0, SEEK_CUR
);
1003 if (old_pos
== -1 && errno
== ENOENT
)
1005 io
->u
.Status
= STATUS_NO_MORE_FILES
;
1011 io
->u
.Status
= STATUS_SUCCESS
;
1013 res
= getdents64( fd
, data
, size
);
1016 if (errno
!= ENOSYS
)
1018 io
->u
.Status
= FILE_GetNtStatus();
1028 res
-= de
->d_reclen
;
1029 info
= append_entry( buffer
, &io
->Information
, length
, de
->d_name
, NULL
, mask
);
1033 if ((char *)info
->FileName
+ info
->FileNameLength
> (char *)buffer
+ length
)
1035 io
->u
.Status
= STATUS_BUFFER_OVERFLOW
;
1036 lseek( fd
, old_pos
, SEEK_SET
); /* restore pos to previous entry */
1039 /* check if we still have enough space for the largest possible entry */
1040 if (single_entry
|| io
->Information
+ max_dir_info_size
> length
)
1042 if (res
> 0) lseek( fd
, de
->d_off
, SEEK_SET
); /* set pos to next entry */
1046 old_pos
= de
->d_off
;
1047 /* move on to the next entry */
1048 if (res
> 0) de
= (KERNEL_DIRENT64
*)((char *)de
+ de
->d_reclen
);
1051 res
= getdents64( fd
, data
, size
);
1056 if (last_info
) last_info
->NextEntryOffset
= 0;
1057 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
1060 if ((char *)data
!= local_buffer
) RtlFreeHeap( GetProcessHeap(), 0, data
);
1063 #endif /* USE_GETDENTS */
1066 /***********************************************************************
1067 * read_directory_readdir
1069 * Read a directory using the POSIX readdir interface; helper for NtQueryDirectoryFile.
1071 static void read_directory_readdir( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
1072 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
1073 BOOLEAN restart_scan
)
1076 off_t i
, old_pos
= 0;
1078 FILE_BOTH_DIR_INFORMATION
*info
, *last_info
= NULL
;
1079 static const unsigned int max_dir_info_size
= sizeof(*info
) + (MAX_DIR_ENTRY_LEN
-1) * sizeof(WCHAR
);
1081 if (!(dir
= opendir( "." )))
1083 io
->u
.Status
= FILE_GetNtStatus();
1089 old_pos
= lseek( fd
, 0, SEEK_CUR
);
1090 /* skip the right number of entries */
1091 for (i
= 0; i
< old_pos
; i
++)
1093 if (!readdir( dir
))
1096 io
->u
.Status
= STATUS_NO_MORE_FILES
;
1101 io
->u
.Status
= STATUS_SUCCESS
;
1103 while ((de
= readdir( dir
)))
1106 info
= append_entry( buffer
, &io
->Information
, length
, de
->d_name
, NULL
, mask
);
1110 if ((char *)info
->FileName
+ info
->FileNameLength
> (char *)buffer
+ length
)
1112 io
->u
.Status
= STATUS_BUFFER_OVERFLOW
;
1113 old_pos
--; /* restore pos to previous entry */
1116 if (single_entry
) break;
1117 /* check if we still have enough space for the largest possible entry */
1118 if (io
->Information
+ max_dir_info_size
> length
) break;
1122 lseek( fd
, old_pos
, SEEK_SET
); /* store dir offset as filepos for fd */
1125 if (last_info
) last_info
->NextEntryOffset
= 0;
1126 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
1130 /******************************************************************************
1131 * NtQueryDirectoryFile [NTDLL.@]
1132 * ZwQueryDirectoryFile [NTDLL.@]
1134 NTSTATUS WINAPI
NtQueryDirectoryFile( HANDLE handle
, HANDLE event
,
1135 PIO_APC_ROUTINE apc_routine
, PVOID apc_context
,
1136 PIO_STATUS_BLOCK io
,
1137 PVOID buffer
, ULONG length
,
1138 FILE_INFORMATION_CLASS info_class
,
1139 BOOLEAN single_entry
,
1140 PUNICODE_STRING mask
,
1141 BOOLEAN restart_scan
)
1145 TRACE("(%p %p %p %p %p %p 0x%08lx 0x%08x 0x%08x %s 0x%08x\n",
1146 handle
, event
, apc_routine
, apc_context
, io
, buffer
,
1147 length
, info_class
, single_entry
, debugstr_us(mask
),
1150 if (length
< sizeof(FILE_BOTH_DIR_INFORMATION
)) return STATUS_INFO_LENGTH_MISMATCH
;
1152 if (event
|| apc_routine
)
1154 FIXME( "Unsupported yet option\n" );
1155 return io
->u
.Status
= STATUS_NOT_IMPLEMENTED
;
1157 if (info_class
!= FileBothDirectoryInformation
)
1159 FIXME( "Unsupported file info class %d\n", info_class
);
1160 return io
->u
.Status
= STATUS_NOT_IMPLEMENTED
;
1163 if ((io
->u
.Status
= wine_server_handle_to_fd( handle
, FILE_LIST_DIRECTORY
, &fd
, NULL
)) != STATUS_SUCCESS
)
1164 return io
->u
.Status
;
1166 io
->Information
= 0;
1168 RtlEnterCriticalSection( &dir_section
);
1170 if (show_dot_files
== -1) init_options();
1172 if ((cwd
= open(".", O_RDONLY
)) != -1 && fchdir( fd
) != -1)
1174 #ifdef VFAT_IOCTL_READDIR_BOTH
1175 if ((read_directory_vfat( fd
, io
, buffer
, length
, single_entry
, mask
, restart_scan
)) == -1)
1178 if ((read_directory_getdents( fd
, io
, buffer
, length
, single_entry
, mask
, restart_scan
)) == -1)
1180 read_directory_readdir( fd
, io
, buffer
, length
, single_entry
, mask
, restart_scan
);
1182 if (fchdir( cwd
) == -1) chdir( "/" );
1184 else io
->u
.Status
= FILE_GetNtStatus();
1186 RtlLeaveCriticalSection( &dir_section
);
1188 wine_server_release_fd( handle
, fd
);
1189 if (cwd
!= -1) close( cwd
);
1190 TRACE( "=> %lx (%ld)\n", io
->u
.Status
, io
->Information
);
1191 return io
->u
.Status
;
1195 /***********************************************************************
1198 * Find a file in a directory the hard way, by doing a case-insensitive search.
1199 * The file found is appended to unix_name at pos.
1200 * There must be at least MAX_DIR_ENTRY_LEN+2 chars available at pos.
1202 static NTSTATUS
find_file_in_dir( char *unix_name
, int pos
, const WCHAR
*name
, int length
,
1205 WCHAR buffer
[MAX_DIR_ENTRY_LEN
];
1211 int ret
, used_default
, is_name_8_dot_3
;
1213 /* try a shortcut for this directory */
1215 unix_name
[pos
++] = '/';
1216 ret
= ntdll_wcstoumbs( 0, name
, length
, unix_name
+ pos
, MAX_DIR_ENTRY_LEN
,
1217 NULL
, &used_default
);
1218 /* if we used the default char, the Unix name won't round trip properly back to Unicode */
1219 /* so it cannot match the file we are looking for */
1220 if (ret
>= 0 && !used_default
)
1222 unix_name
[pos
+ ret
] = 0;
1223 if (!stat( unix_name
, &st
)) return STATUS_SUCCESS
;
1225 if (check_case
) goto not_found
; /* we want an exact match */
1227 if (pos
> 1) unix_name
[pos
- 1] = 0;
1228 else unix_name
[1] = 0; /* keep the initial slash */
1230 /* check if it fits in 8.3 so that we don't look for short names if we won't need them */
1232 str
.Buffer
= (WCHAR
*)name
;
1233 str
.Length
= length
* sizeof(WCHAR
);
1234 str
.MaximumLength
= str
.Length
;
1235 is_name_8_dot_3
= RtlIsNameLegalDOS8Dot3( &str
, NULL
, &spaces
) && !spaces
;
1237 /* now look for it through the directory */
1239 #ifdef VFAT_IOCTL_READDIR_BOTH
1240 if (is_name_8_dot_3
)
1242 int fd
= open( unix_name
, O_RDONLY
| O_DIRECTORY
);
1245 KERNEL_DIRENT de
[2];
1247 /* Set d_reclen to 65535 to work around an AFS kernel bug */
1248 de
[0].d_reclen
= 65535;
1249 if (ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
) != -1 &&
1250 de
[0].d_reclen
!= 65535)
1252 unix_name
[pos
- 1] = '/';
1255 if (!de
[0].d_reclen
) break;
1256 /* make sure names are null-terminated to work around an x86-64 kernel bug */
1257 if (de
[0].d_reclen
< sizeof(de
[0].d_name
)) de
[0].d_name
[de
[0].d_reclen
] = 0;
1258 if (de
[1].d_reclen
< sizeof(de
[1].d_name
)) de
[1].d_name
[de
[1].d_reclen
] = 0;
1260 if (de
[1].d_name
[0])
1262 ret
= ntdll_umbstowcs( 0, de
[1].d_name
, strlen(de
[1].d_name
),
1263 buffer
, MAX_DIR_ENTRY_LEN
);
1264 if (ret
== length
&& !memicmpW( buffer
, name
, length
))
1266 strcpy( unix_name
+ pos
, de
[1].d_name
);
1268 return STATUS_SUCCESS
;
1271 ret
= ntdll_umbstowcs( 0, de
[0].d_name
, strlen(de
[0].d_name
),
1272 buffer
, MAX_DIR_ENTRY_LEN
);
1273 if (ret
== length
&& !memicmpW( buffer
, name
, length
))
1275 strcpy( unix_name
+ pos
,
1276 de
[1].d_name
[0] ? de
[1].d_name
: de
[0].d_name
);
1278 return STATUS_SUCCESS
;
1280 if (ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
) == -1)
1289 /* fall through to normal handling */
1291 #endif /* VFAT_IOCTL_READDIR_BOTH */
1293 if (!(dir
= opendir( unix_name
)))
1295 if (errno
== ENOENT
) return STATUS_OBJECT_PATH_NOT_FOUND
;
1296 else return FILE_GetNtStatus();
1298 unix_name
[pos
- 1] = '/';
1299 str
.Buffer
= buffer
;
1300 str
.MaximumLength
= sizeof(buffer
);
1301 while ((de
= readdir( dir
)))
1303 ret
= ntdll_umbstowcs( 0, de
->d_name
, strlen(de
->d_name
), buffer
, MAX_DIR_ENTRY_LEN
);
1304 if (ret
== length
&& !memicmpW( buffer
, name
, length
))
1306 strcpy( unix_name
+ pos
, de
->d_name
);
1308 return STATUS_SUCCESS
;
1311 if (!is_name_8_dot_3
) continue;
1313 str
.Length
= ret
* sizeof(WCHAR
);
1314 if (!RtlIsNameLegalDOS8Dot3( &str
, NULL
, &spaces
) || spaces
)
1316 WCHAR short_nameW
[12];
1317 ret
= hash_short_file_name( &str
, short_nameW
);
1318 if (ret
== length
&& !memicmpW( short_nameW
, name
, length
))
1320 strcpy( unix_name
+ pos
, de
->d_name
);
1322 return STATUS_SUCCESS
;
1327 goto not_found
; /* avoid warning */
1330 unix_name
[pos
- 1] = 0;
1331 return STATUS_OBJECT_PATH_NOT_FOUND
;
1335 /******************************************************************************
1338 * Get the Unix path of a DOS device.
1340 static NTSTATUS
get_dos_device( const WCHAR
*name
, UINT name_len
, ANSI_STRING
*unix_name_ret
)
1342 const char *config_dir
= wine_get_config_dir();
1344 char *unix_name
, *new_name
, *dev
;
1348 /* make sure the device name is ASCII */
1349 for (i
= 0; i
< name_len
; i
++)
1350 if (name
[i
] <= 32 || name
[i
] >= 127) return STATUS_BAD_DEVICE_TYPE
;
1352 unix_len
= strlen(config_dir
) + sizeof("/dosdevices/") + name_len
+ 1;
1354 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, unix_len
)))
1355 return STATUS_NO_MEMORY
;
1357 strcpy( unix_name
, config_dir
);
1358 strcat( unix_name
, "/dosdevices/" );
1359 dev
= unix_name
+ strlen(unix_name
);
1361 for (i
= 0; i
< name_len
; i
++) dev
[i
] = (char)tolowerW(name
[i
]);
1364 /* special case for drive devices */
1365 if (name_len
== 2 && dev
[1] == ':')
1373 if (!stat( unix_name
, &st
))
1375 TRACE( "%s -> %s\n", debugstr_wn(name
,name_len
), debugstr_a(unix_name
) );
1376 unix_name_ret
->Buffer
= unix_name
;
1377 unix_name_ret
->Length
= strlen(unix_name
);
1378 unix_name_ret
->MaximumLength
= unix_len
;
1379 return STATUS_SUCCESS
;
1383 /* now try some defaults for it */
1384 if (!strcmp( dev
, "aux" ))
1386 strcpy( dev
, "com1" );
1389 if (!strcmp( dev
, "prn" ))
1391 strcpy( dev
, "lpt1" );
1394 if (!strcmp( dev
, "nul" ))
1396 strcpy( unix_name
, "/dev/null" );
1397 dev
= NULL
; /* last try */
1402 if (dev
[1] == ':' && dev
[2] == ':') /* drive device */
1404 dev
[2] = 0; /* remove last ':' to get the drive mount point symlink */
1405 new_name
= get_default_drive_device( unix_name
);
1407 else if (!strncmp( dev
, "com", 3 )) new_name
= get_default_com_device( dev
[3] - '0' );
1408 else if (!strncmp( dev
, "lpt", 3 )) new_name
= get_default_lpt_device( dev
[3] - '0' );
1410 if (!new_name
) break;
1412 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
1413 unix_name
= new_name
;
1414 unix_len
= strlen(unix_name
) + 1;
1415 dev
= NULL
; /* last try */
1417 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
1418 return STATUS_BAD_DEVICE_TYPE
;
1422 /* return the length of the DOS namespace prefix if any */
1423 static inline int get_dos_prefix_len( const UNICODE_STRING
*name
)
1425 static const WCHAR nt_prefixW
[] = {'\\','?','?','\\'};
1426 static const WCHAR dosdev_prefixW
[] = {'\\','D','o','s','D','e','v','i','c','e','s','\\'};
1428 if (name
->Length
> sizeof(nt_prefixW
) &&
1429 !memcmp( name
->Buffer
, nt_prefixW
, sizeof(nt_prefixW
) ))
1430 return sizeof(nt_prefixW
) / sizeof(WCHAR
);
1432 if (name
->Length
> sizeof(dosdev_prefixW
) &&
1433 !memicmpW( name
->Buffer
, dosdev_prefixW
, sizeof(dosdev_prefixW
)/sizeof(WCHAR
) ))
1434 return sizeof(dosdev_prefixW
) / sizeof(WCHAR
);
1440 /******************************************************************************
1441 * wine_nt_to_unix_file_name (NTDLL.@) Not a Windows API
1443 * Convert a file name from NT namespace to Unix namespace.
1445 * If disposition is not FILE_OPEN or FILE_OVERWRITTE, the last path
1446 * element doesn't have to exist; in that case STATUS_NO_SUCH_FILE is
1447 * returned, but the unix name is still filled in properly.
1449 NTSTATUS
wine_nt_to_unix_file_name( const UNICODE_STRING
*nameW
, ANSI_STRING
*unix_name_ret
,
1450 UINT disposition
, BOOLEAN check_case
)
1452 static const WCHAR uncW
[] = {'U','N','C','\\'};
1453 static const WCHAR invalid_charsW
[] = { INVALID_NT_CHARS
, 0 };
1455 NTSTATUS status
= STATUS_SUCCESS
;
1456 const char *config_dir
= wine_get_config_dir();
1457 const WCHAR
*name
, *p
;
1460 int pos
, ret
, name_len
, unix_len
, used_default
;
1462 name
= nameW
->Buffer
;
1463 name_len
= nameW
->Length
/ sizeof(WCHAR
);
1465 if (!name_len
|| !IS_SEPARATOR(name
[0])) return STATUS_OBJECT_PATH_SYNTAX_BAD
;
1467 if ((pos
= get_dos_prefix_len( nameW
)))
1469 BOOLEAN is_unc
= FALSE
;
1474 /* check for UNC prefix */
1475 if (name_len
> 4 && !memicmpW( name
, uncW
, 4 ))
1483 /* check for a drive letter with path */
1484 if (name_len
< 3 || !isalphaW(name
[0]) || name
[1] != ':' || !IS_SEPARATOR(name
[2]))
1486 /* not a drive with path, try other DOS devices */
1487 return get_dos_device( name
, name_len
, unix_name_ret
);
1489 name
+= 2; /* skip drive letter */
1493 /* check for invalid characters */
1494 for (p
= name
; p
< name
+ name_len
; p
++)
1495 if (*p
< 32 || strchrW( invalid_charsW
, *p
)) return STATUS_OBJECT_NAME_INVALID
;
1497 unix_len
= ntdll_wcstoumbs( 0, name
, name_len
, NULL
, 0, NULL
, NULL
);
1498 unix_len
+= MAX_DIR_ENTRY_LEN
+ 3;
1499 unix_len
+= strlen(config_dir
) + sizeof("/dosdevices/") + 3;
1500 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, unix_len
)))
1501 return STATUS_NO_MEMORY
;
1502 strcpy( unix_name
, config_dir
);
1503 strcat( unix_name
, "/dosdevices/" );
1504 pos
= strlen(unix_name
);
1507 strcpy( unix_name
+ pos
, "unc" );
1512 unix_name
[pos
++] = tolowerW( name
[-2] );
1513 unix_name
[pos
++] = ':';
1517 else /* no DOS prefix, assume NT native name, map directly to Unix */
1519 if (!name_len
|| !IS_SEPARATOR(name
[0])) return STATUS_OBJECT_NAME_INVALID
;
1520 unix_len
= ntdll_wcstoumbs( 0, name
, name_len
, NULL
, 0, NULL
, NULL
);
1521 unix_len
+= MAX_DIR_ENTRY_LEN
+ 3;
1522 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, unix_len
)))
1523 return STATUS_NO_MEMORY
;
1527 /* try a shortcut first */
1529 ret
= ntdll_wcstoumbs( 0, name
, name_len
, unix_name
+ pos
, unix_len
- pos
- 1,
1530 NULL
, &used_default
);
1532 while (name_len
&& IS_SEPARATOR(*name
))
1538 if (ret
> 0 && !used_default
) /* if we used the default char the name didn't convert properly */
1541 unix_name
[pos
+ ret
] = 0;
1542 for (p
= unix_name
+ pos
; *p
; p
++) if (*p
== '\\') *p
= '/';
1543 if (!stat( unix_name
, &st
))
1545 /* creation fails with STATUS_ACCESS_DENIED for the root of the drive */
1546 if (disposition
== FILE_CREATE
)
1547 return name_len
? STATUS_OBJECT_NAME_COLLISION
: STATUS_ACCESS_DENIED
;
1552 if (!name_len
) /* empty name -> drive root doesn't exist */
1554 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
1555 return STATUS_OBJECT_PATH_NOT_FOUND
;
1557 if (check_case
&& (disposition
== FILE_OPEN
|| disposition
== FILE_OVERWRITE
))
1559 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
1560 return STATUS_OBJECT_NAME_NOT_FOUND
;
1563 /* now do it component by component */
1567 const WCHAR
*end
, *next
;
1570 while (end
< name
+ name_len
&& !IS_SEPARATOR(*end
)) end
++;
1572 while (next
< name
+ name_len
&& IS_SEPARATOR(*next
)) next
++;
1573 name_len
-= next
- name
;
1575 /* grow the buffer if needed */
1577 if (unix_len
- pos
< MAX_DIR_ENTRY_LEN
+ 2)
1580 unix_len
+= 2 * MAX_DIR_ENTRY_LEN
;
1581 if (!(new_name
= RtlReAllocateHeap( GetProcessHeap(), 0, unix_name
, unix_len
)))
1583 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
1584 return STATUS_NO_MEMORY
;
1586 unix_name
= new_name
;
1589 status
= find_file_in_dir( unix_name
, pos
, name
, end
- name
, check_case
);
1591 /* if this is the last element, not finding it is not necessarily fatal */
1594 if (status
== STATUS_OBJECT_PATH_NOT_FOUND
)
1596 status
= STATUS_OBJECT_NAME_NOT_FOUND
;
1597 if (disposition
!= FILE_OPEN
&& disposition
!= FILE_OVERWRITE
)
1599 ret
= ntdll_wcstoumbs( 0, name
, end
- name
, unix_name
+ pos
+ 1,
1600 MAX_DIR_ENTRY_LEN
, NULL
, &used_default
);
1601 if (ret
> 0 && !used_default
)
1603 unix_name
[pos
] = '/';
1604 unix_name
[pos
+ 1 + ret
] = 0;
1605 status
= STATUS_NO_SUCH_FILE
;
1610 else if (status
== STATUS_SUCCESS
&& disposition
== FILE_CREATE
)
1612 status
= STATUS_OBJECT_NAME_COLLISION
;
1616 if (status
!= STATUS_SUCCESS
)
1618 /* couldn't find it at all, fail */
1619 WARN( "%s not found in %s\n", debugstr_w(name
), unix_name
);
1620 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
1624 pos
+= strlen( unix_name
+ pos
);
1628 WARN( "%s -> %s required a case-insensitive search\n",
1629 debugstr_us(nameW
), debugstr_a(unix_name
) );
1632 TRACE( "%s -> %s\n", debugstr_us(nameW
), debugstr_a(unix_name
) );
1633 unix_name_ret
->Buffer
= unix_name
;
1634 unix_name_ret
->Length
= strlen(unix_name
);
1635 unix_name_ret
->MaximumLength
= unix_len
;
1640 /******************************************************************
1641 * RtlDoesFileExists_U (NTDLL.@)
1643 BOOLEAN WINAPI
RtlDoesFileExists_U(LPCWSTR file_name
)
1645 UNICODE_STRING nt_name
;
1646 ANSI_STRING unix_name
;
1649 if (!RtlDosPathNameToNtPathName_U( file_name
, &nt_name
, NULL
, NULL
)) return FALSE
;
1650 ret
= (wine_nt_to_unix_file_name( &nt_name
, &unix_name
, FILE_OPEN
, FALSE
) == STATUS_SUCCESS
);
1651 if (ret
) RtlFreeAnsiString( &unix_name
);
1652 RtlFreeUnicodeString( &nt_name
);
1657 /***********************************************************************
1658 * DIR_unmount_device
1660 * Unmount the specified device.
1662 NTSTATUS
DIR_unmount_device( HANDLE handle
)
1667 SERVER_START_REQ( unmount_device
)
1669 req
->handle
= handle
;
1670 status
= wine_server_call( req
);
1673 if (status
) return status
;
1675 if (!(status
= wine_server_handle_to_fd( handle
, 0, &unix_fd
, NULL
)))
1678 char *mount_point
= NULL
;
1680 if (fstat( unix_fd
, &st
) == -1 || !S_ISBLK(st
.st_mode
))
1681 status
= STATUS_INVALID_PARAMETER
;
1684 if ((mount_point
= get_device_mount_point( st
.st_rdev
)))
1686 static const char umount
[] = "umount >/dev/null 2>&1 ";
1687 char *cmd
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(mount_point
)+sizeof(umount
));
1690 strcpy( cmd
, umount
);
1691 strcat( cmd
, mount_point
);
1693 RtlFreeHeap( GetProcessHeap(), 0, cmd
);
1695 /* umount will fail to release the loop device since we still have
1696 a handle to it, so we release it here */
1697 if (major(st
.st_rdev
) == LOOP_MAJOR
) ioctl( unix_fd
, 0x4c01 /*LOOP_CLR_FD*/, 0 );
1700 RtlFreeHeap( GetProcessHeap(), 0, mount_point
);
1703 wine_server_release_fd( handle
, unix_fd
);
1709 /******************************************************************************
1712 * Retrieve the Unix name of the current directory; helper for wine_unix_to_nt_file_name.
1713 * Returned value must be freed by caller.
1715 NTSTATUS
DIR_get_unix_cwd( char **cwd
)
1717 int old_cwd
, unix_fd
;
1722 RtlAcquirePebLock();
1724 if (NtCurrentTeb()->Tib
.SubSystemTib
) /* FIXME: hack */
1725 curdir
= &((WIN16_SUBSYSTEM_TIB
*)NtCurrentTeb()->Tib
.SubSystemTib
)->curdir
;
1727 curdir
= &NtCurrentTeb()->Peb
->ProcessParameters
->CurrentDirectory
;
1729 if (!(handle
= curdir
->Handle
))
1731 UNICODE_STRING dirW
;
1732 OBJECT_ATTRIBUTES attr
;
1735 if (!RtlDosPathNameToNtPathName_U( curdir
->DosPath
.Buffer
, &dirW
, NULL
, NULL
))
1737 status
= STATUS_OBJECT_NAME_INVALID
;
1740 attr
.Length
= sizeof(attr
);
1741 attr
.RootDirectory
= 0;
1742 attr
.Attributes
= OBJ_CASE_INSENSITIVE
;
1743 attr
.ObjectName
= &dirW
;
1744 attr
.SecurityDescriptor
= NULL
;
1745 attr
.SecurityQualityOfService
= NULL
;
1747 status
= NtOpenFile( &handle
, 0, &attr
, &io
, 0,
1748 FILE_DIRECTORY_FILE
| FILE_SYNCHRONOUS_IO_NONALERT
);
1749 RtlFreeUnicodeString( &dirW
);
1750 if (status
!= STATUS_SUCCESS
) goto done
;
1753 if ((status
= wine_server_handle_to_fd( handle
, 0, &unix_fd
, NULL
)) == STATUS_SUCCESS
)
1755 RtlEnterCriticalSection( &dir_section
);
1757 if ((old_cwd
= open(".", O_RDONLY
)) != -1 && fchdir( unix_fd
) != -1)
1759 unsigned int size
= 512;
1763 if (!(*cwd
= RtlAllocateHeap( GetProcessHeap(), 0, size
)))
1765 status
= STATUS_NO_MEMORY
;
1768 if (getcwd( *cwd
, size
)) break;
1769 RtlFreeHeap( GetProcessHeap(), 0, *cwd
);
1770 if (errno
!= ERANGE
)
1772 status
= STATUS_OBJECT_PATH_INVALID
;
1777 if (fchdir( old_cwd
) == -1) chdir( "/" );
1779 else status
= FILE_GetNtStatus();
1781 RtlLeaveCriticalSection( &dir_section
);
1782 wine_server_release_fd( handle
, unix_fd
);
1784 if (!curdir
->Handle
) NtClose( handle
);
1787 RtlReleasePebLock();
1791 struct read_changes_info
1795 PIO_APC_ROUTINE ApcRoutine
;
1801 static void WINAPI
read_changes_apc( void *user
, PIO_STATUS_BLOCK iosb
, ULONG status
)
1803 struct read_changes_info
*info
= user
;
1804 char path
[PATH_MAX
];
1805 NTSTATUS ret
= STATUS_SUCCESS
;
1808 TRACE("%p %p %p %08lx\n", info
, info
->ApcContext
, iosb
, status
);
1813 * hEvent/hDir is set before the output buffer and iosb is updated.
1814 * Since the thread that called NtNotifyChangeDirectoryFile is usually
1815 * waiting, we'll be safe since we're called in that thread's context.
1816 * If a different thread is waiting on our hEvent/hDir we're going to be
1819 SERVER_START_REQ( read_change
)
1821 req
->handle
= info
->FileHandle
;
1822 wine_server_set_reply( req
, path
, PATH_MAX
);
1823 ret
= wine_server_call( req
);
1824 action
= reply
->action
;
1825 len
= wine_server_reply_size( reply
);
1829 if (ret
== STATUS_SUCCESS
&& info
->Buffer
&&
1830 (info
->BufferSize
> (sizeof (FILE_NOTIFY_INFORMATION
) + len
*sizeof(WCHAR
))))
1832 PFILE_NOTIFY_INFORMATION pfni
;
1834 pfni
= (PFILE_NOTIFY_INFORMATION
) info
->Buffer
;
1836 /* convert to an NT style path */
1837 for (i
=0; i
<len
; i
++)
1841 len
= ntdll_umbstowcs( 0, path
, len
, pfni
->FileName
,
1842 info
->BufferSize
- sizeof (*pfni
) );
1844 pfni
->NextEntryOffset
= 0;
1845 pfni
->Action
= action
;
1846 pfni
->FileNameLength
= len
* sizeof (WCHAR
);
1847 pfni
->FileName
[len
] = 0;
1849 TRACE("action = %ld name = %s\n", pfni
->Action
,
1850 debugstr_w(pfni
->FileName
) );
1851 len
= sizeof (*pfni
) - sizeof (DWORD
) + pfni
->FileNameLength
;
1855 ret
= STATUS_NOTIFY_ENUM_DIR
;
1859 iosb
->u
.Status
= ret
;
1860 iosb
->Information
= len
;
1862 RtlFreeHeap( GetProcessHeap(), 0, info
);
1865 #define FILE_NOTIFY_ALL ( \
1866 FILE_NOTIFY_CHANGE_FILE_NAME | \
1867 FILE_NOTIFY_CHANGE_DIR_NAME | \
1868 FILE_NOTIFY_CHANGE_ATTRIBUTES | \
1869 FILE_NOTIFY_CHANGE_SIZE | \
1870 FILE_NOTIFY_CHANGE_LAST_WRITE | \
1871 FILE_NOTIFY_CHANGE_LAST_ACCESS | \
1872 FILE_NOTIFY_CHANGE_CREATION | \
1873 FILE_NOTIFY_CHANGE_SECURITY )
1875 /******************************************************************************
1876 * NtNotifyChangeDirectoryFile [NTDLL.@]
1879 NtNotifyChangeDirectoryFile( HANDLE FileHandle
, HANDLE Event
,
1880 PIO_APC_ROUTINE ApcRoutine
, PVOID ApcContext
,
1881 PIO_STATUS_BLOCK IoStatusBlock
, PVOID Buffer
,
1882 ULONG BufferSize
, ULONG CompletionFilter
, BOOLEAN WatchTree
)
1884 struct read_changes_info
*info
;
1887 TRACE("%p %p %p %p %p %p %lu %lu %d\n",
1888 FileHandle
, Event
, ApcRoutine
, ApcContext
, IoStatusBlock
,
1889 Buffer
, BufferSize
, CompletionFilter
, WatchTree
);
1892 return STATUS_ACCESS_VIOLATION
;
1894 if (CompletionFilter
== 0 || (CompletionFilter
& ~FILE_NOTIFY_ALL
))
1895 return STATUS_INVALID_PARAMETER
;
1898 FIXME("parameters ignored %p %p\n", ApcRoutine
, ApcContext
);
1900 info
= RtlAllocateHeap( GetProcessHeap(), 0, sizeof *info
);
1902 return STATUS_NO_MEMORY
;
1904 info
->FileHandle
= FileHandle
;
1905 info
->Event
= Event
;
1906 info
->Buffer
= Buffer
;
1907 info
->BufferSize
= BufferSize
;
1908 info
->ApcRoutine
= ApcRoutine
;
1909 info
->ApcContext
= ApcContext
;
1911 SERVER_START_REQ( read_directory_changes
)
1913 req
->handle
= FileHandle
;
1915 req
->filter
= CompletionFilter
;
1916 req
->want_data
= (Buffer
!= NULL
);
1917 req
->subtree
= WatchTree
;
1918 req
->io_apc
= read_changes_apc
;
1919 req
->io_sb
= IoStatusBlock
;
1920 req
->io_user
= info
;
1921 status
= wine_server_call( req
);
1925 if (status
!= STATUS_PENDING
)
1926 RtlFreeHeap( GetProcessHeap(), 0, info
);