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"
27 #include <sys/types.h>
41 #ifdef HAVE_SYS_STAT_H
42 # include <sys/stat.h>
44 #ifdef HAVE_SYS_SYSCALL_H
45 # include <sys/syscall.h>
47 #ifdef HAVE_SYS_ATTR_H
50 #ifdef HAVE_SYS_VNODE_H
51 #include <sys/vnode.h>
53 #ifdef HAVE_SYS_IOCTL_H
54 #include <sys/ioctl.h>
56 #ifdef HAVE_LINUX_IOCTL_H
57 #include <linux/ioctl.h>
59 #ifdef HAVE_LINUX_MAJOR_H
60 # include <linux/major.h>
62 #ifdef HAVE_SYS_PARAM_H
63 #include <sys/param.h>
65 #ifdef HAVE_SYS_MOUNT_H
66 #include <sys/mount.h>
68 #ifdef HAVE_SYS_STATFS_H
69 #include <sys/statfs.h>
77 #define WIN32_NO_STATUS
78 #define NONAMELESSUNION
83 #include "ntdll_misc.h"
84 #include "wine/unicode.h"
85 #include "wine/server.h"
86 #include "wine/list.h"
87 #include "wine/library.h"
88 #include "wine/debug.h"
90 WINE_DEFAULT_DEBUG_CHANNEL(file
);
93 #undef VFAT_IOCTL_READDIR_BOTH
98 /* We want the real kernel dirent structure, not the libc one */
103 unsigned short d_reclen
;
107 /* Define the VFAT ioctl to get both short and long file names */
108 #define VFAT_IOCTL_READDIR_BOTH _IOR('r', 1, KERNEL_DIRENT [2] )
111 # define O_DIRECTORY 0200000 /* must be directory */
114 #ifdef __NR_getdents64
119 unsigned short d_reclen
;
120 unsigned char d_type
;
125 static inline int getdents64( int fd
, char *de
, unsigned int size
)
127 return syscall( __NR_getdents64
, fd
, de
, size
);
134 #define IS_OPTION_TRUE(ch) ((ch) == 'y' || (ch) == 'Y' || (ch) == 't' || (ch) == 'T' || (ch) == '1')
135 #define IS_SEPARATOR(ch) ((ch) == '\\' || (ch) == '/')
137 #define INVALID_NT_CHARS '*','?','<','>','|','"'
138 #define INVALID_DOS_CHARS INVALID_NT_CHARS,'+','=',',',';','[',']',' ','\345'
140 #define MAX_DIR_ENTRY_LEN 255 /* max length of a directory entry in chars */
142 #define MAX_IGNORED_FILES 4
150 static struct file_identity ignored_files
[MAX_IGNORED_FILES
];
151 static unsigned int ignored_files_count
;
153 union file_directory_info
156 FILE_DIRECTORY_INFORMATION dir
;
157 FILE_BOTH_DIRECTORY_INFORMATION both
;
158 FILE_FULL_DIRECTORY_INFORMATION full
;
159 FILE_ID_BOTH_DIRECTORY_INFORMATION id_both
;
160 FILE_ID_FULL_DIRECTORY_INFORMATION id_full
;
163 static BOOL show_dot_files
;
164 static RTL_RUN_ONCE init_once
= RTL_RUN_ONCE_INIT
;
166 /* at some point we may want to allow Winelib apps to set this */
167 static const BOOL is_case_sensitive
= FALSE
;
169 UNICODE_STRING system_dir
= { 0, 0, NULL
}; /* system directory */
171 static struct file_identity curdir
;
172 static struct file_identity windir
;
174 static RTL_CRITICAL_SECTION dir_section
;
175 static RTL_CRITICAL_SECTION_DEBUG critsect_debug
=
178 { &critsect_debug
.ProcessLocksList
, &critsect_debug
.ProcessLocksList
},
179 0, 0, { (DWORD_PTR
)(__FILE__
": dir_section") }
181 static RTL_CRITICAL_SECTION dir_section
= { &critsect_debug
, -1, 0, 0, 0, 0 };
184 /* check if a given Unicode char is OK in a DOS short name */
185 static inline BOOL
is_invalid_dos_char( WCHAR ch
)
187 static const WCHAR invalid_chars
[] = { INVALID_DOS_CHARS
,'~','.',0 };
188 if (ch
> 0x7f) return TRUE
;
189 return strchrW( invalid_chars
, ch
) != NULL
;
192 /* check if the device can be a mounted volume */
193 static inline BOOL
is_valid_mounted_device( const struct stat
*st
)
195 #if defined(linux) || defined(__sun__)
196 return S_ISBLK( st
->st_mode
);
198 /* disks are char devices on *BSD */
199 return S_ISCHR( st
->st_mode
);
203 static inline void ignore_file( const char *name
)
206 assert( ignored_files_count
< MAX_IGNORED_FILES
);
207 if (!stat( name
, &st
))
209 ignored_files
[ignored_files_count
].dev
= st
.st_dev
;
210 ignored_files
[ignored_files_count
].ino
= st
.st_ino
;
211 ignored_files_count
++;
215 static inline BOOL
is_same_file( const struct file_identity
*file
, const struct stat
*st
)
217 return st
->st_dev
== file
->dev
&& st
->st_ino
== file
->ino
;
220 static inline BOOL
is_ignored_file( const struct stat
*st
)
224 for (i
= 0; i
< ignored_files_count
; i
++)
225 if (is_same_file( &ignored_files
[i
], st
)) return TRUE
;
229 static inline unsigned int dir_info_size( FILE_INFORMATION_CLASS
class, unsigned int len
)
233 case FileDirectoryInformation
:
234 return (FIELD_OFFSET( FILE_DIRECTORY_INFORMATION
, FileName
[len
] ) + 7) & ~7;
235 case FileBothDirectoryInformation
:
236 return (FIELD_OFFSET( FILE_BOTH_DIRECTORY_INFORMATION
, FileName
[len
] ) + 7) & ~7;
237 case FileFullDirectoryInformation
:
238 return (FIELD_OFFSET( FILE_FULL_DIRECTORY_INFORMATION
, FileName
[len
] ) + 7) & ~7;
239 case FileIdBothDirectoryInformation
:
240 return (FIELD_OFFSET( FILE_ID_BOTH_DIRECTORY_INFORMATION
, FileName
[len
] ) + 7) & ~7;
241 case FileIdFullDirectoryInformation
:
242 return (FIELD_OFFSET( FILE_ID_FULL_DIRECTORY_INFORMATION
, FileName
[len
] ) + 7) & ~7;
249 static inline unsigned int max_dir_info_size( FILE_INFORMATION_CLASS
class )
251 return dir_info_size( class, MAX_DIR_ENTRY_LEN
);
254 static inline BOOL
has_wildcard( const UNICODE_STRING
*mask
)
257 memchrW( mask
->Buffer
, '*', mask
->Length
/ sizeof(WCHAR
) ) ||
258 memchrW( mask
->Buffer
, '?', mask
->Length
/ sizeof(WCHAR
) ));
262 /* support for a directory queue for filesystem searches */
270 static struct list dir_queue
= LIST_INIT( dir_queue
);
272 static NTSTATUS
add_dir_to_queue( const char *name
)
274 int len
= strlen( name
) + 1;
275 struct dir_name
*dir
= RtlAllocateHeap( GetProcessHeap(), 0,
276 FIELD_OFFSET( struct dir_name
, name
[len
] ));
277 if (!dir
) return STATUS_NO_MEMORY
;
278 strcpy( dir
->name
, name
);
279 list_add_tail( &dir_queue
, &dir
->entry
);
280 return STATUS_SUCCESS
;
283 static NTSTATUS
next_dir_in_queue( char *name
)
285 struct list
*head
= list_head( &dir_queue
);
288 struct dir_name
*dir
= LIST_ENTRY( head
, struct dir_name
, entry
);
289 strcpy( name
, dir
->name
);
290 list_remove( &dir
->entry
);
291 RtlFreeHeap( GetProcessHeap(), 0, dir
);
292 return STATUS_SUCCESS
;
294 return STATUS_OBJECT_NAME_NOT_FOUND
;
297 static void flush_dir_queue(void)
301 while ((head
= list_head( &dir_queue
)))
303 struct dir_name
*dir
= LIST_ENTRY( head
, struct dir_name
, entry
);
304 list_remove( &dir
->entry
);
305 RtlFreeHeap( GetProcessHeap(), 0, dir
);
310 /***********************************************************************
311 * get_default_com_device
313 * Return the default device to use for serial ports.
315 static char *get_default_com_device( int num
)
319 if (!num
|| num
> 9) return ret
;
321 ret
= RtlAllocateHeap( GetProcessHeap(), 0, sizeof("/dev/ttyS0") );
324 strcpy( ret
, "/dev/ttyS0" );
325 ret
[strlen(ret
) - 1] = '0' + num
- 1;
327 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
328 ret
= RtlAllocateHeap( GetProcessHeap(), 0, sizeof("/dev/cuau0") );
331 strcpy( ret
, "/dev/cuau0" );
332 ret
[strlen(ret
) - 1] = '0' + num
- 1;
334 #elif defined(__DragonFly__)
335 ret
= RtlAllocateHeap( GetProcessHeap(), 0, sizeof("/dev/cuaa0") );
338 strcpy( ret
, "/dev/cuaa0" );
339 ret
[strlen(ret
) - 1] = '0' + num
- 1;
342 FIXME( "no known default for device com%d\n", num
);
348 /***********************************************************************
349 * get_default_lpt_device
351 * Return the default device to use for parallel ports.
353 static char *get_default_lpt_device( int num
)
357 if (!num
|| num
> 9) return ret
;
359 ret
= RtlAllocateHeap( GetProcessHeap(), 0, sizeof("/dev/lp0") );
362 strcpy( ret
, "/dev/lp0" );
363 ret
[strlen(ret
) - 1] = '0' + num
- 1;
366 FIXME( "no known default for device lpt%d\n", num
);
373 static char *unescape_field( char *str
)
377 for (in
= out
= str
; *in
; in
++, out
++)
387 else if (in
[1] == '0' && in
[2] == '4' && in
[3] == '0')
392 else if (in
[1] == '0' && in
[2] == '1' && in
[3] == '1')
397 else if (in
[1] == '0' && in
[2] == '1' && in
[3] == '2')
402 else if (in
[1] == '1' && in
[2] == '3' && in
[3] == '4')
414 static inline char *get_field( char **str
)
418 ret
= strsep( str
, " \t" );
419 if (*str
) *str
+= strspn( *str
, " \t" );
423 /************************************************************************
424 * getmntent_replacement
426 * getmntent replacement for Android.
428 * NB returned static buffer is not thread safe; protect with dir_section.
430 static struct mntent
*getmntent_replacement( FILE *f
)
432 static struct mntent entry
;
433 static char buf
[4096];
438 if (!fgets( buf
, sizeof(buf
), f
)) return NULL
;
439 p
= strchr( buf
, '\n' );
441 else /* Partially unread line, move file ptr to end */
444 while (fgets( tmp
, sizeof(tmp
), f
))
445 if (strchr( tmp
, '\n' )) break;
447 start
= buf
+ strspn( buf
, " \t" );
448 } while (start
[0] == '\0' || start
[0] == '#');
450 p
= get_field( &start
);
451 entry
.mnt_fsname
= p
? unescape_field( p
) : (char *)"";
453 p
= get_field( &start
);
454 entry
.mnt_dir
= p
? unescape_field( p
) : (char *)"";
456 p
= get_field( &start
);
457 entry
.mnt_type
= p
? unescape_field( p
) : (char *)"";
459 p
= get_field( &start
);
460 entry
.mnt_opts
= p
? unescape_field( p
) : (char *)"";
462 p
= get_field( &start
);
463 entry
.mnt_freq
= p
? atoi(p
) : 0;
465 p
= get_field( &start
);
466 entry
.mnt_passno
= p
? atoi(p
) : 0;
470 #define getmntent getmntent_replacement
473 /***********************************************************************
474 * DIR_get_drives_info
476 * Retrieve device/inode number for all the drives. Helper for find_drive_root.
478 unsigned int DIR_get_drives_info( struct drive_info info
[MAX_DOS_DRIVES
] )
480 static struct drive_info cache
[MAX_DOS_DRIVES
];
481 static time_t last_update
;
482 static unsigned int nb_drives
;
484 time_t now
= time(NULL
);
486 RtlEnterCriticalSection( &dir_section
);
487 if (now
!= last_update
)
489 const char *config_dir
= wine_get_config_dir();
494 if ((buffer
= RtlAllocateHeap( GetProcessHeap(), 0,
495 strlen(config_dir
) + sizeof("/dosdevices/a:") )))
497 strcpy( buffer
, config_dir
);
498 strcat( buffer
, "/dosdevices/a:" );
499 p
= buffer
+ strlen(buffer
) - 2;
501 for (i
= nb_drives
= 0; i
< MAX_DOS_DRIVES
; i
++)
504 if (!stat( buffer
, &st
))
506 cache
[i
].dev
= st
.st_dev
;
507 cache
[i
].ino
= st
.st_ino
;
516 RtlFreeHeap( GetProcessHeap(), 0, buffer
);
520 memcpy( info
, cache
, sizeof(cache
) );
522 RtlLeaveCriticalSection( &dir_section
);
527 /***********************************************************************
528 * parse_mount_entries
530 * Parse mount entries looking for a given device. Helper for get_default_drive_device.
534 #include <sys/vfstab.h>
535 static char *parse_vfstab_entries( FILE *f
, dev_t dev
, ino_t ino
)
541 while (! getvfsent( f
, &entry
))
543 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
544 if (!strcmp( entry
.vfs_fstype
, "nfs" ) ||
545 !strcmp( entry
.vfs_fstype
, "smbfs" ) ||
546 !strcmp( entry
.vfs_fstype
, "ncpfs" )) continue;
548 if (stat( entry
.vfs_mountp
, &st
) == -1) continue;
549 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
550 if (!strcmp( entry
.vfs_fstype
, "fd" ))
552 if ((device
= strstr( entry
.vfs_mntopts
, "dev=" )))
554 char *p
= strchr( device
+ 4, ',' );
560 return entry
.vfs_special
;
567 static char *parse_mount_entries( FILE *f
, dev_t dev
, ino_t ino
)
569 struct mntent
*entry
;
573 while ((entry
= getmntent( f
)))
575 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
576 if (!strcmp( entry
->mnt_type
, "nfs" ) ||
577 !strcmp( entry
->mnt_type
, "smbfs" ) ||
578 !strcmp( entry
->mnt_type
, "ncpfs" )) continue;
580 if (stat( entry
->mnt_dir
, &st
) == -1) continue;
581 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
582 if (!strcmp( entry
->mnt_type
, "supermount" ))
584 if ((device
= strstr( entry
->mnt_opts
, "dev=" )))
586 char *p
= strchr( device
+ 4, ',' );
591 else if (!stat( entry
->mnt_fsname
, &st
) && S_ISREG(st
.st_mode
))
593 /* if device is a regular file check for a loop mount */
594 if ((device
= strstr( entry
->mnt_opts
, "loop=" )))
596 char *p
= strchr( device
+ 5, ',' );
602 return entry
->mnt_fsname
;
608 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__DragonFly__)
610 static char *parse_mount_entries( FILE *f
, dev_t dev
, ino_t ino
)
615 while ((entry
= getfsent()))
617 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
618 if (!strcmp( entry
->fs_vfstype
, "nfs" ) ||
619 !strcmp( entry
->fs_vfstype
, "smbfs" ) ||
620 !strcmp( entry
->fs_vfstype
, "ncpfs" )) continue;
622 if (stat( entry
->fs_file
, &st
) == -1) continue;
623 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
624 return entry
->fs_spec
;
631 #include <sys/mnttab.h>
632 static char *parse_mount_entries( FILE *f
, dev_t dev
, ino_t ino
)
639 while (( ! getmntent( f
, &entry
) ))
641 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
642 if (!strcmp( entry
.mnt_fstype
, "nfs" ) ||
643 !strcmp( entry
.mnt_fstype
, "smbfs" ) ||
644 !strcmp( entry
.mnt_fstype
, "ncpfs" )) continue;
646 if (stat( entry
.mnt_mountp
, &st
) == -1) continue;
647 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
648 if (!strcmp( entry
.mnt_fstype
, "fd" ))
650 if ((device
= strstr( entry
.mnt_mntopts
, "dev=" )))
652 char *p
= strchr( device
+ 4, ',' );
658 return entry
.mnt_special
;
664 /***********************************************************************
665 * get_default_drive_device
667 * Return the default device to use for a given drive mount point.
669 static char *get_default_drive_device( const char *root
)
679 /* try to open it first to force it to get mounted */
680 if ((fd
= open( root
, O_RDONLY
| O_DIRECTORY
)) != -1)
682 res
= fstat( fd
, &st
);
685 /* now try normal stat just in case */
686 if (res
== -1) res
= stat( root
, &st
);
687 if (res
== -1) return NULL
;
689 RtlEnterCriticalSection( &dir_section
);
692 if ((f
= fopen( "/proc/mounts", "r" )))
694 device
= parse_mount_entries( f
, st
.st_dev
, st
.st_ino
);
698 if ((f
= fopen( "/etc/mtab", "r" )))
700 device
= parse_mount_entries( f
, st
.st_dev
, st
.st_ino
);
703 /* look through fstab too in case it's not mounted (for instance if it's an audio CD) */
704 if (!device
&& (f
= fopen( "/etc/fstab", "r" )))
706 device
= parse_mount_entries( f
, st
.st_dev
, st
.st_ino
);
712 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(device
) + 1 );
713 if (ret
) strcpy( ret
, device
);
715 RtlLeaveCriticalSection( &dir_section
);
717 #elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__ ) || defined(__DragonFly__)
722 /* try to open it first to force it to get mounted */
723 if ((fd
= open( root
, O_RDONLY
)) != -1)
725 res
= fstat( fd
, &st
);
728 /* now try normal stat just in case */
729 if (res
== -1) res
= stat( root
, &st
);
730 if (res
== -1) return NULL
;
732 RtlEnterCriticalSection( &dir_section
);
734 /* The FreeBSD parse_mount_entries doesn't require a file argument, so just
735 * pass NULL. Leave the argument in for symmetry.
737 device
= parse_mount_entries( NULL
, st
.st_dev
, st
.st_ino
);
740 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(device
) + 1 );
741 if (ret
) strcpy( ret
, device
);
743 RtlLeaveCriticalSection( &dir_section
);
751 /* try to open it first to force it to get mounted */
752 if ((fd
= open( root
, O_RDONLY
)) != -1)
754 res
= fstat( fd
, &st
);
757 /* now try normal stat just in case */
758 if (res
== -1) res
= stat( root
, &st
);
759 if (res
== -1) return NULL
;
761 RtlEnterCriticalSection( &dir_section
);
763 if ((f
= fopen( "/etc/mnttab", "r" )))
765 device
= parse_mount_entries( f
, st
.st_dev
, st
.st_ino
);
768 /* look through fstab too in case it's not mounted (for instance if it's an audio CD) */
769 if (!device
&& (f
= fopen( "/etc/vfstab", "r" )))
771 device
= parse_vfstab_entries( f
, st
.st_dev
, st
.st_ino
);
776 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(device
) + 1 );
777 if (ret
) strcpy( ret
, device
);
779 RtlLeaveCriticalSection( &dir_section
);
781 #elif defined(__APPLE__)
782 struct statfs
*mntStat
;
788 static const char path_bsd_device
[] = "/dev/disk";
791 res
= stat( root
, &st
);
792 if (res
== -1) return NULL
;
797 RtlEnterCriticalSection( &dir_section
);
799 mntSize
= getmntinfo(&mntStat
, MNT_NOWAIT
);
801 for (i
= 0; i
< mntSize
&& !ret
; i
++)
803 if (stat(mntStat
[i
].f_mntonname
, &st
) == -1) continue;
804 if (st
.st_dev
!= dev
|| st
.st_ino
!= ino
) continue;
806 /* FIXME add support for mounted network drive */
807 if ( strncmp(mntStat
[i
].f_mntfromname
, path_bsd_device
, strlen(path_bsd_device
)) == 0)
809 /* set return value to the corresponding raw BSD node */
810 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(mntStat
[i
].f_mntfromname
) + 2 /* 2 : r and \0 */ );
813 strcpy(ret
, "/dev/r");
814 strcat(ret
, mntStat
[i
].f_mntfromname
+sizeof("/dev/")-1);
818 RtlLeaveCriticalSection( &dir_section
);
821 if (!warned
++) FIXME( "auto detection of DOS devices not supported on this platform\n" );
827 /***********************************************************************
828 * get_device_mount_point
830 * Return the current mount point for a device.
832 static char *get_device_mount_point( dev_t dev
)
839 RtlEnterCriticalSection( &dir_section
);
842 if ((f
= fopen( "/proc/mounts", "r" )))
844 if ((f
= fopen( "/etc/mtab", "r" )))
847 struct mntent
*entry
;
851 while ((entry
= getmntent( f
)))
853 /* don't even bother stat'ing network mounts, there's no meaningful device anyway */
854 if (!strcmp( entry
->mnt_type
, "nfs" ) ||
855 !strcmp( entry
->mnt_type
, "smbfs" ) ||
856 !strcmp( entry
->mnt_type
, "ncpfs" )) continue;
858 if (!strcmp( entry
->mnt_type
, "supermount" ))
860 if ((device
= strstr( entry
->mnt_opts
, "dev=" )))
863 if ((p
= strchr( device
, ',' ))) *p
= 0;
866 else if (!stat( entry
->mnt_fsname
, &st
) && S_ISREG(st
.st_mode
))
868 /* if device is a regular file check for a loop mount */
869 if ((device
= strstr( entry
->mnt_opts
, "loop=" )))
872 if ((p
= strchr( device
, ',' ))) *p
= 0;
875 else device
= entry
->mnt_fsname
;
877 if (device
&& !stat( device
, &st
) && S_ISBLK(st
.st_mode
) && st
.st_rdev
== dev
)
879 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(entry
->mnt_dir
) + 1 );
880 if (ret
) strcpy( ret
, entry
->mnt_dir
);
886 RtlLeaveCriticalSection( &dir_section
);
887 #elif defined(__APPLE__)
888 struct statfs
*entry
;
892 RtlEnterCriticalSection( &dir_section
);
894 size
= getmntinfo( &entry
, MNT_NOWAIT
);
895 for (i
= 0; i
< size
; i
++)
897 if (stat( entry
[i
].f_mntfromname
, &st
) == -1) continue;
898 if (S_ISBLK(st
.st_mode
) && st
.st_rdev
== dev
)
900 ret
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(entry
[i
].f_mntonname
) + 1 );
901 if (ret
) strcpy( ret
, entry
[i
].f_mntonname
);
905 RtlLeaveCriticalSection( &dir_section
);
908 if (!warned
++) FIXME( "unmounting devices not supported on this platform\n" );
914 #if defined(HAVE_GETATTRLIST) && defined(ATTR_VOL_CAPABILITIES) && \
915 defined(VOL_CAPABILITIES_FORMAT) && defined(VOL_CAP_FMT_CASE_SENSITIVE)
928 BOOLEAN case_sensitive
;
934 vol_capabilities_attr_t caps
;
937 /***********************************************************************
940 * Checks if the specified file system is in the cache.
942 static struct fs_cache
*look_up_fs_cache( dev_t dev
)
945 for (i
= 0; i
< sizeof(fs_cache
)/sizeof(fs_cache
[0]); i
++)
946 if (fs_cache
[i
].dev
== dev
)
951 /***********************************************************************
954 * Adds the specified file system to the cache.
956 static void add_fs_cache( dev_t dev
, fsid_t fsid
, BOOLEAN case_sensitive
)
959 struct fs_cache
*entry
= look_up_fs_cache( dev
);
963 /* Update the cache */
965 entry
->case_sensitive
= case_sensitive
;
969 /* Add a new entry */
970 for (i
= 0; i
< sizeof(fs_cache
)/sizeof(fs_cache
[0]); i
++)
971 if (fs_cache
[i
].dev
== 0)
973 /* This entry is empty, use it */
974 fs_cache
[i
].dev
= dev
;
975 fs_cache
[i
].fsid
= fsid
;
976 fs_cache
[i
].case_sensitive
= case_sensitive
;
980 /* Cache is out of space, warn */
982 WARN( "FS cache is out of space, expect performance problems\n" );
985 /***********************************************************************
986 * get_dir_case_sensitivity_attr
988 * Checks if the volume containing the specified directory is case
989 * sensitive or not. Uses getattrlist(2).
991 static int get_dir_case_sensitivity_attr( const char *dir
)
993 char *mntpoint
= NULL
;
994 struct attrlist attr
;
995 struct vol_caps caps
;
996 struct get_fsid get_fsid
;
997 struct fs_cache
*entry
;
999 /* First get the FS ID of the volume */
1000 attr
.bitmapcount
= ATTR_BIT_MAP_COUNT
;
1002 attr
.commonattr
= ATTR_CMN_DEVID
|ATTR_CMN_FSID
;
1003 attr
.volattr
= attr
.dirattr
= attr
.fileattr
= attr
.forkattr
= 0;
1005 if (getattrlist( dir
, &attr
, &get_fsid
, sizeof(get_fsid
), 0 ) != 0 ||
1006 get_fsid
.size
!= sizeof(get_fsid
))
1008 /* Try to look it up in the cache */
1009 entry
= look_up_fs_cache( get_fsid
.dev
);
1010 if (entry
&& !memcmp( &entry
->fsid
, &get_fsid
.fsid
, sizeof(fsid_t
) ))
1011 /* Cache lookup succeeded */
1012 return entry
->case_sensitive
;
1013 /* Cache is stale at this point, we have to update it */
1015 mntpoint
= get_device_mount_point( get_fsid
.dev
);
1016 /* Now look up the case-sensitivity */
1017 attr
.commonattr
= 0;
1018 attr
.volattr
= ATTR_VOL_INFO
|ATTR_VOL_CAPABILITIES
;
1019 if (getattrlist( mntpoint
, &attr
, &caps
, sizeof(caps
), 0 ) < 0)
1021 RtlFreeHeap( GetProcessHeap(), 0, mntpoint
);
1022 add_fs_cache( get_fsid
.dev
, get_fsid
.fsid
, TRUE
);
1025 RtlFreeHeap( GetProcessHeap(), 0, mntpoint
);
1026 if (caps
.size
== sizeof(caps
) &&
1027 (caps
.caps
.valid
[VOL_CAPABILITIES_FORMAT
] &
1028 (VOL_CAP_FMT_CASE_SENSITIVE
| VOL_CAP_FMT_CASE_PRESERVING
)) ==
1029 (VOL_CAP_FMT_CASE_SENSITIVE
| VOL_CAP_FMT_CASE_PRESERVING
))
1033 if ((caps
.caps
.capabilities
[VOL_CAPABILITIES_FORMAT
] &
1034 VOL_CAP_FMT_CASE_SENSITIVE
) != VOL_CAP_FMT_CASE_SENSITIVE
)
1038 /* Update the cache */
1039 add_fs_cache( get_fsid
.dev
, get_fsid
.fsid
, ret
);
1046 /***********************************************************************
1047 * get_dir_case_sensitivity_stat
1049 * Checks if the volume containing the specified directory is case
1050 * sensitive or not. Uses statfs(2) or statvfs(2).
1052 static BOOLEAN
get_dir_case_sensitivity_stat( const char *dir
)
1054 #if defined(__APPLE__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
1057 if (statfs( dir
, &stfs
) == -1) return FALSE
;
1058 /* Assume these file systems are always case insensitive on Mac OS.
1059 * For FreeBSD, only assume CIOPFS is case insensitive (AFAIK, Mac OS
1060 * is the only UNIX that supports case-insensitive lookup).
1062 if (!strcmp( stfs
.f_fstypename
, "fusefs" ) &&
1063 !strncmp( stfs
.f_mntfromname
, "ciopfs", 5 ))
1066 if (!strcmp( stfs
.f_fstypename
, "msdos" ) ||
1067 !strcmp( stfs
.f_fstypename
, "cd9660" ) ||
1068 !strcmp( stfs
.f_fstypename
, "udf" ) ||
1069 !strcmp( stfs
.f_fstypename
, "ntfs" ) ||
1070 !strcmp( stfs
.f_fstypename
, "smbfs" ))
1072 #ifdef _DARWIN_FEATURE_64_BIT_INODE
1073 if (!strcmp( stfs
.f_fstypename
, "hfs" ) && (stfs
.f_fssubtype
== 0 ||
1074 stfs
.f_fssubtype
== 1 ||
1075 stfs
.f_fssubtype
== 128))
1078 /* The field says "reserved", but a quick look at the kernel source
1079 * tells us that this "reserved" field is really the same as the
1080 * "fssubtype" field from the inode64 structure (see munge_statfs()
1081 * in <xnu-source>/bsd/vfs/vfs_syscalls.c).
1083 if (!strcmp( stfs
.f_fstypename
, "hfs" ) && (stfs
.f_reserved1
== 0 ||
1084 stfs
.f_reserved1
== 1 ||
1085 stfs
.f_reserved1
== 128))
1091 #elif defined(__NetBSD__)
1092 struct statvfs stfs
;
1094 if (statvfs( dir
, &stfs
) == -1) return FALSE
;
1095 /* Only assume CIOPFS is case insensitive. */
1096 if (strcmp( stfs
.f_fstypename
, "fusefs" ) ||
1097 strncmp( stfs
.f_mntfromname
, "ciopfs", 5 ))
1101 #elif defined(__linux__)
1106 /* Only assume CIOPFS is case insensitive. */
1107 if (statfs( dir
, &stfs
) == -1) return FALSE
;
1108 if (stfs
.f_type
!= 0x65735546 /* FUSE_SUPER_MAGIC */)
1110 /* Normally, we'd have to parse the mtab to find out exactly what
1111 * kind of FUSE FS this is. But, someone on wine-devel suggested
1112 * a shortcut. We'll stat a special file in the directory. If it's
1113 * there, we'll assume it's a CIOPFS, else not.
1114 * This will break if somebody puts a file named ".ciopfs" in a non-
1117 cifile
= RtlAllocateHeap( GetProcessHeap(), 0, strlen( dir
)+sizeof("/.ciopfs") );
1118 if (!cifile
) return TRUE
;
1119 strcpy( cifile
, dir
);
1120 strcat( cifile
, "/.ciopfs" );
1121 if (stat( cifile
, &st
) == 0)
1123 RtlFreeHeap( GetProcessHeap(), 0, cifile
);
1126 RtlFreeHeap( GetProcessHeap(), 0, cifile
);
1134 /***********************************************************************
1135 * get_dir_case_sensitivity
1137 * Checks if the volume containing the specified directory is case
1138 * sensitive or not. Uses statfs(2) or statvfs(2).
1140 static BOOLEAN
get_dir_case_sensitivity( const char *dir
)
1142 #if defined(HAVE_GETATTRLIST) && defined(ATTR_VOL_CAPABILITIES) && \
1143 defined(VOL_CAPABILITIES_FORMAT) && defined(VOL_CAP_FMT_CASE_SENSITIVE)
1144 int case_sensitive
= get_dir_case_sensitivity_attr( dir
);
1145 if (case_sensitive
!= -1) return case_sensitive
;
1147 return get_dir_case_sensitivity_stat( dir
);
1151 /***********************************************************************
1154 * Initialize the show_dot_files options.
1156 static DWORD WINAPI
init_options( RTL_RUN_ONCE
*once
, void *param
, void **context
)
1158 static const WCHAR WineW
[] = {'S','o','f','t','w','a','r','e','\\','W','i','n','e',0};
1159 static const WCHAR ShowDotFilesW
[] = {'S','h','o','w','D','o','t','F','i','l','e','s',0};
1163 OBJECT_ATTRIBUTES attr
;
1164 UNICODE_STRING nameW
;
1166 RtlOpenCurrentUser( KEY_ALL_ACCESS
, &root
);
1167 attr
.Length
= sizeof(attr
);
1168 attr
.RootDirectory
= root
;
1169 attr
.ObjectName
= &nameW
;
1170 attr
.Attributes
= 0;
1171 attr
.SecurityDescriptor
= NULL
;
1172 attr
.SecurityQualityOfService
= NULL
;
1173 RtlInitUnicodeString( &nameW
, WineW
);
1175 /* @@ Wine registry key: HKCU\Software\Wine */
1176 if (!NtOpenKey( &hkey
, KEY_ALL_ACCESS
, &attr
))
1178 RtlInitUnicodeString( &nameW
, ShowDotFilesW
);
1179 if (!NtQueryValueKey( hkey
, &nameW
, KeyValuePartialInformation
, tmp
, sizeof(tmp
), &dummy
))
1181 WCHAR
*str
= (WCHAR
*)((KEY_VALUE_PARTIAL_INFORMATION
*)tmp
)->Data
;
1182 show_dot_files
= IS_OPTION_TRUE( str
[0] );
1188 /* a couple of directories that we don't want to return in directory searches */
1189 ignore_file( wine_get_config_dir() );
1190 ignore_file( "/dev" );
1191 ignore_file( "/proc" );
1193 ignore_file( "/sys" );
1199 /***********************************************************************
1200 * DIR_is_hidden_file
1202 * Check if the specified file should be hidden based on its name and the show dot files option.
1204 BOOL
DIR_is_hidden_file( const UNICODE_STRING
*name
)
1208 RtlRunOnceExecuteOnce( &init_once
, init_options
, NULL
, NULL
);
1210 if (show_dot_files
) return FALSE
;
1212 end
= p
= name
->Buffer
+ name
->Length
/sizeof(WCHAR
);
1213 while (p
> name
->Buffer
&& IS_SEPARATOR(p
[-1])) p
--;
1214 while (p
> name
->Buffer
&& !IS_SEPARATOR(p
[-1])) p
--;
1215 if (p
== end
|| *p
!= '.') return FALSE
;
1216 /* make sure it isn't '.' or '..' */
1217 if (p
+ 1 == end
) return FALSE
;
1218 if (p
[1] == '.' && p
+ 2 == end
) return FALSE
;
1223 /***********************************************************************
1224 * hash_short_file_name
1226 * Transform a Unix file name into a hashed DOS name. If the name is a valid
1227 * DOS name, it is converted to upper-case; otherwise it is replaced by a
1228 * hashed version that fits in 8.3 format.
1229 * 'buffer' must be at least 12 characters long.
1230 * Returns length of short name in bytes; short name is NOT null-terminated.
1232 static ULONG
hash_short_file_name( const UNICODE_STRING
*name
, LPWSTR buffer
)
1234 static const char hash_chars
[32] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ012345";
1236 LPCWSTR p
, ext
, end
= name
->Buffer
+ name
->Length
/ sizeof(WCHAR
);
1238 unsigned short hash
;
1241 /* Compute the hash code of the file name */
1242 /* If you know something about hash functions, feel free to */
1243 /* insert a better algorithm here... */
1244 if (!is_case_sensitive
)
1246 for (p
= name
->Buffer
, hash
= 0xbeef; p
< end
- 1; p
++)
1247 hash
= (hash
<<3) ^ (hash
>>5) ^ tolowerW(*p
) ^ (tolowerW(p
[1]) << 8);
1248 hash
= (hash
<<3) ^ (hash
>>5) ^ tolowerW(*p
); /* Last character */
1252 for (p
= name
->Buffer
, hash
= 0xbeef; p
< end
- 1; p
++)
1253 hash
= (hash
<< 3) ^ (hash
>> 5) ^ *p
^ (p
[1] << 8);
1254 hash
= (hash
<< 3) ^ (hash
>> 5) ^ *p
; /* Last character */
1257 /* Find last dot for start of the extension */
1258 for (p
= name
->Buffer
+ 1, ext
= NULL
; p
< end
- 1; p
++) if (*p
== '.') ext
= p
;
1260 /* Copy first 4 chars, replacing invalid chars with '_' */
1261 for (i
= 4, p
= name
->Buffer
, dst
= buffer
; i
> 0; i
--, p
++)
1263 if (p
== end
|| p
== ext
) break;
1264 *dst
++ = is_invalid_dos_char(*p
) ? '_' : toupperW(*p
);
1266 /* Pad to 5 chars with '~' */
1267 while (i
-- >= 0) *dst
++ = '~';
1269 /* Insert hash code converted to 3 ASCII chars */
1270 *dst
++ = hash_chars
[(hash
>> 10) & 0x1f];
1271 *dst
++ = hash_chars
[(hash
>> 5) & 0x1f];
1272 *dst
++ = hash_chars
[hash
& 0x1f];
1274 /* Copy the first 3 chars of the extension (if any) */
1278 for (i
= 3, ext
++; (i
> 0) && ext
< end
; i
--, ext
++)
1279 *dst
++ = is_invalid_dos_char(*ext
) ? '_' : toupperW(*ext
);
1281 return dst
- buffer
;
1285 /***********************************************************************
1288 * Check a long file name against a mask.
1290 * Tests (done in W95 DOS shell - case insensitive):
1291 * *.txt test1.test.txt *
1293 * *.t??????.t* test1.ta.tornado.txt *
1294 * *tornado* test1.ta.tornado.txt *
1295 * t*t test1.ta.tornado.txt *
1297 * ?est??? test1.txt -
1298 * *test1.txt* test1.txt *
1299 * h?l?o*t.dat hellothisisatest.dat *
1301 static BOOLEAN
match_filename( const UNICODE_STRING
*name_str
, const UNICODE_STRING
*mask_str
)
1304 const WCHAR
*name
= name_str
->Buffer
;
1305 const WCHAR
*mask
= mask_str
->Buffer
;
1306 const WCHAR
*name_end
= name
+ name_str
->Length
/ sizeof(WCHAR
);
1307 const WCHAR
*mask_end
= mask
+ mask_str
->Length
/ sizeof(WCHAR
);
1308 const WCHAR
*lastjoker
= NULL
;
1309 const WCHAR
*next_to_retry
= NULL
;
1311 TRACE("(%s, %s)\n", debugstr_us(name_str
), debugstr_us(mask_str
));
1313 while (name
< name_end
&& mask
< mask_end
)
1319 while (mask
< mask_end
&& *mask
== '*') mask
++; /* Skip consecutive '*' */
1320 if (mask
== mask_end
) return TRUE
; /* end of mask is all '*', so match */
1323 /* skip to the next match after the joker(s) */
1324 if (is_case_sensitive
)
1325 while (name
< name_end
&& (*name
!= *mask
)) name
++;
1327 while (name
< name_end
&& (toupperW(*name
) != toupperW(*mask
))) name
++;
1328 next_to_retry
= name
;
1335 if (is_case_sensitive
) mismatch
= (*mask
!= *name
);
1336 else mismatch
= (toupperW(*mask
) != toupperW(*name
));
1342 if (mask
== mask_end
)
1344 if (name
== name_end
) return TRUE
;
1345 if (lastjoker
) mask
= lastjoker
;
1348 else /* mismatch ! */
1350 if (lastjoker
) /* we had an '*', so we can try unlimitedly */
1354 /* this scan sequence was a mismatch, so restart
1355 * 1 char after the first char we checked last time */
1357 name
= next_to_retry
;
1359 else return FALSE
; /* bad luck */
1364 while (mask
< mask_end
&& ((*mask
== '.') || (*mask
== '*')))
1365 mask
++; /* Ignore trailing '.' or '*' in mask */
1366 return (name
== name_end
&& mask
== mask_end
);
1370 /***********************************************************************
1373 * helper for NtQueryDirectoryFile
1375 static union file_directory_info
*append_entry( void *info_ptr
, IO_STATUS_BLOCK
*io
, ULONG max_length
,
1376 const char *long_name
, const char *short_name
,
1377 const UNICODE_STRING
*mask
, FILE_INFORMATION_CLASS
class )
1379 union file_directory_info
*info
;
1380 int i
, long_len
, short_len
, total_len
;
1382 WCHAR long_nameW
[MAX_DIR_ENTRY_LEN
];
1383 WCHAR short_nameW
[12];
1388 io
->u
.Status
= STATUS_SUCCESS
;
1389 long_len
= ntdll_umbstowcs( 0, long_name
, strlen(long_name
), long_nameW
, MAX_DIR_ENTRY_LEN
);
1390 if (long_len
== -1) return NULL
;
1392 str
.Buffer
= long_nameW
;
1393 str
.Length
= long_len
* sizeof(WCHAR
);
1394 str
.MaximumLength
= sizeof(long_nameW
);
1398 short_len
= ntdll_umbstowcs( 0, short_name
, strlen(short_name
),
1399 short_nameW
, sizeof(short_nameW
) / sizeof(WCHAR
) );
1400 if (short_len
== -1) short_len
= sizeof(short_nameW
) / sizeof(WCHAR
);
1402 else /* generate a short name if necessary */
1407 if (!RtlIsNameLegalDOS8Dot3( &str
, NULL
, &spaces
) || spaces
)
1408 short_len
= hash_short_file_name( &str
, short_nameW
);
1411 TRACE( "long %s short %s mask %s\n",
1412 debugstr_us(&str
), debugstr_wn(short_nameW
, short_len
), debugstr_us(mask
) );
1414 if (mask
&& !match_filename( &str
, mask
))
1416 if (!short_len
) return NULL
; /* no short name to match */
1417 str
.Buffer
= short_nameW
;
1418 str
.Length
= short_len
* sizeof(WCHAR
);
1419 str
.MaximumLength
= sizeof(short_nameW
);
1420 if (!match_filename( &str
, mask
)) return NULL
;
1423 if (get_file_info( long_name
, &st
, &attributes
) == -1) return NULL
;
1424 if (is_ignored_file( &st
))
1426 TRACE( "ignoring file %s\n", long_name
);
1429 if (!show_dot_files
&& long_name
[0] == '.' && long_name
[1] && (long_name
[1] != '.' || long_name
[2]))
1430 attributes
|= FILE_ATTRIBUTE_HIDDEN
;
1432 total_len
= dir_info_size( class, long_len
);
1433 if (io
->Information
+ total_len
> max_length
)
1435 total_len
= max_length
- io
->Information
;
1436 io
->u
.Status
= STATUS_BUFFER_OVERFLOW
;
1438 info
= (union file_directory_info
*)((char *)info_ptr
+ io
->Information
);
1439 if (st
.st_dev
!= curdir
.dev
) st
.st_ino
= 0; /* ignore inode if on a different device */
1440 /* all the structures start with a FileDirectoryInformation layout */
1441 fill_file_info( &st
, attributes
, info
, class );
1442 info
->dir
.NextEntryOffset
= total_len
;
1443 info
->dir
.FileIndex
= 0; /* NTFS always has 0 here, so let's not bother with it */
1447 case FileDirectoryInformation
:
1448 info
->dir
.FileNameLength
= long_len
* sizeof(WCHAR
);
1449 filename
= info
->dir
.FileName
;
1452 case FileFullDirectoryInformation
:
1453 info
->full
.EaSize
= 0; /* FIXME */
1454 info
->full
.FileNameLength
= long_len
* sizeof(WCHAR
);
1455 filename
= info
->full
.FileName
;
1458 case FileIdFullDirectoryInformation
:
1459 info
->id_full
.EaSize
= 0; /* FIXME */
1460 info
->id_full
.FileNameLength
= long_len
* sizeof(WCHAR
);
1461 filename
= info
->id_full
.FileName
;
1464 case FileBothDirectoryInformation
:
1465 info
->both
.EaSize
= 0; /* FIXME */
1466 info
->both
.ShortNameLength
= short_len
* sizeof(WCHAR
);
1467 for (i
= 0; i
< short_len
; i
++) info
->both
.ShortName
[i
] = toupperW(short_nameW
[i
]);
1468 info
->both
.FileNameLength
= long_len
* sizeof(WCHAR
);
1469 filename
= info
->both
.FileName
;
1472 case FileIdBothDirectoryInformation
:
1473 info
->id_both
.EaSize
= 0; /* FIXME */
1474 info
->id_both
.ShortNameLength
= short_len
* sizeof(WCHAR
);
1475 for (i
= 0; i
< short_len
; i
++) info
->id_both
.ShortName
[i
] = toupperW(short_nameW
[i
]);
1476 info
->id_both
.FileNameLength
= long_len
* sizeof(WCHAR
);
1477 filename
= info
->id_both
.FileName
;
1484 memcpy( filename
, long_nameW
, long_len
* sizeof(WCHAR
) );
1485 io
->Information
+= total_len
;
1490 #ifdef VFAT_IOCTL_READDIR_BOTH
1492 /***********************************************************************
1495 * Wrapper for the VFAT ioctl to work around various kernel bugs.
1496 * dir_section must be held by caller.
1498 static KERNEL_DIRENT
*start_vfat_ioctl( int fd
)
1500 static KERNEL_DIRENT
*de
;
1505 SIZE_T size
= 2 * sizeof(*de
) + page_size
;
1508 if (NtAllocateVirtualMemory( GetCurrentProcess(), &addr
, 1, &size
, MEM_RESERVE
, PAGE_READWRITE
))
1510 /* commit only the size needed for the dir entries */
1511 /* this leaves an extra unaccessible page, which should make the kernel */
1512 /* fail with -EFAULT before it stomps all over our memory */
1514 size
= 2 * sizeof(*de
);
1515 NtAllocateVirtualMemory( GetCurrentProcess(), &addr
, 1, &size
, MEM_COMMIT
, PAGE_READWRITE
);
1518 /* set d_reclen to 65535 to work around an AFS kernel bug */
1519 de
[0].d_reclen
= 65535;
1520 res
= ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
);
1523 if (errno
!= ENOENT
) return NULL
; /* VFAT ioctl probably not supported */
1524 de
[0].d_reclen
= 0; /* eof */
1526 else if (!res
&& de
[0].d_reclen
== 65535) return NULL
; /* AFS bug */
1532 /***********************************************************************
1533 * read_directory_vfat
1535 * Read a directory using the VFAT ioctl; helper for NtQueryDirectoryFile.
1537 static int read_directory_vfat( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
1538 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
1539 BOOLEAN restart_scan
, FILE_INFORMATION_CLASS
class )
1544 union file_directory_info
*info
, *last_info
= NULL
;
1546 io
->u
.Status
= STATUS_SUCCESS
;
1548 if (restart_scan
) lseek( fd
, 0, SEEK_SET
);
1550 if (length
< max_dir_info_size(class)) /* we may have to return a partial entry here */
1552 off_t old_pos
= lseek( fd
, 0, SEEK_CUR
);
1554 if (!(de
= start_vfat_ioctl( fd
))) return -1; /* not supported */
1556 while (de
[0].d_reclen
)
1558 /* make sure names are null-terminated to work around an x86-64 kernel bug */
1559 len
= min(de
[0].d_reclen
, sizeof(de
[0].d_name
) - 1 );
1560 de
[0].d_name
[len
] = 0;
1561 len
= min(de
[1].d_reclen
, sizeof(de
[1].d_name
) - 1 );
1562 de
[1].d_name
[len
] = 0;
1564 if (de
[1].d_name
[0])
1565 info
= append_entry( buffer
, io
, length
, de
[1].d_name
, de
[0].d_name
, mask
, class );
1567 info
= append_entry( buffer
, io
, length
, de
[0].d_name
, NULL
, mask
, class );
1571 if (io
->u
.Status
== STATUS_BUFFER_OVERFLOW
)
1572 lseek( fd
, old_pos
, SEEK_SET
); /* restore pos to previous entry */
1575 old_pos
= lseek( fd
, 0, SEEK_CUR
);
1576 if (ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
) == -1) break;
1579 else /* we'll only return full entries, no need to worry about overflow */
1581 if (!(de
= start_vfat_ioctl( fd
))) return -1; /* not supported */
1583 while (de
[0].d_reclen
)
1585 /* make sure names are null-terminated to work around an x86-64 kernel bug */
1586 len
= min(de
[0].d_reclen
, sizeof(de
[0].d_name
) - 1 );
1587 de
[0].d_name
[len
] = 0;
1588 len
= min(de
[1].d_reclen
, sizeof(de
[1].d_name
) - 1 );
1589 de
[1].d_name
[len
] = 0;
1591 if (de
[1].d_name
[0])
1592 info
= append_entry( buffer
, io
, length
, de
[1].d_name
, de
[0].d_name
, mask
, class );
1594 info
= append_entry( buffer
, io
, length
, de
[0].d_name
, NULL
, mask
, class );
1598 if (single_entry
) break;
1599 /* check if we still have enough space for the largest possible entry */
1600 if (io
->Information
+ max_dir_info_size(class) > length
) break;
1602 if (ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)de
) == -1) break;
1606 if (last_info
) last_info
->next
= 0;
1607 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
1610 #endif /* VFAT_IOCTL_READDIR_BOTH */
1614 /***********************************************************************
1615 * read_first_dent_name
1617 * reads name of first or second dentry (if they have inodes).
1619 static char *read_first_dent_name( int which
, int fd
, off_t second_offs
, KERNEL_DIRENT64
*de_first_two
,
1620 char *buffer
, size_t size
, BOOL
*buffer_changed
)
1622 KERNEL_DIRENT64
*de
;
1629 de
= (KERNEL_DIRENT64
*)((char *)de
+ de
->d_reclen
);
1631 return de
->d_ino
? de
->d_name
: NULL
;
1634 *buffer_changed
= TRUE
;
1635 lseek( fd
, which
== 1 ? second_offs
: 0, SEEK_SET
);
1636 res
= getdents64( fd
, buffer
, size
);
1640 de
= (KERNEL_DIRENT64
*)buffer
;
1641 return de
->d_ino
? de
->d_name
: NULL
;
1644 /***********************************************************************
1645 * read_directory_getdents
1647 * Read a directory using the Linux getdents64 system call; helper for NtQueryDirectoryFile.
1649 static int read_directory_getdents( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
1650 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
1651 BOOLEAN restart_scan
, FILE_INFORMATION_CLASS
class )
1653 static off_t second_entry_pos
;
1654 static struct file_identity last_dir_id
;
1655 off_t old_pos
= 0, next_pos
;
1656 size_t size
= length
;
1657 char *data
, local_buffer
[8192];
1658 KERNEL_DIRENT64
*de
, *de_first_two
= NULL
;
1659 union file_directory_info
*info
, *last_info
= NULL
;
1660 const char *filename
;
1661 BOOL data_buffer_changed
;
1664 if (size
<= sizeof(local_buffer
) || !(data
= RtlAllocateHeap( GetProcessHeap(), 0, size
)))
1666 size
= sizeof(local_buffer
);
1667 data
= local_buffer
;
1670 if (restart_scan
) lseek( fd
, 0, SEEK_SET
);
1673 old_pos
= lseek( fd
, 0, SEEK_CUR
);
1676 io
->u
.Status
= (errno
== ENOENT
) ? STATUS_NO_MORE_FILES
: FILE_GetNtStatus();
1682 io
->u
.Status
= STATUS_SUCCESS
;
1683 de
= (KERNEL_DIRENT64
*)data
;
1685 /* if old_pos is not 0 we don't know how many entries have been returned already,
1686 * so maintain second_entry_pos to know when to return '..' */
1687 if (old_pos
!= 0 && (last_dir_id
.dev
!= curdir
.dev
|| last_dir_id
.ino
!= curdir
.ino
))
1689 lseek( fd
, 0, SEEK_SET
);
1690 res
= getdents64( fd
, data
, size
);
1693 second_entry_pos
= de
->d_off
;
1694 last_dir_id
= curdir
;
1696 lseek( fd
, old_pos
, SEEK_SET
);
1699 res
= getdents64( fd
, data
, size
);
1702 if (errno
!= ENOSYS
)
1704 io
->u
.Status
= FILE_GetNtStatus();
1710 if (old_pos
== 0 && res
> 0)
1712 second_entry_pos
= de
->d_off
;
1713 last_dir_id
= curdir
;
1714 if (res
> de
->d_reclen
)
1720 res
-= de
->d_reclen
;
1721 next_pos
= de
->d_off
;
1724 /* we must return first 2 entries as "." and "..", but getdents64()
1725 * can return them anywhere, so swap first entries with "." and ".." */
1728 else if (old_pos
== second_entry_pos
)
1730 else if (!strcmp( de
->d_name
, "." ) || !strcmp( de
->d_name
, ".." ))
1732 swap_to
= !strcmp( de
->d_name
, "." ) ? 0 : 1;
1733 data_buffer_changed
= FALSE
;
1735 filename
= read_first_dent_name( swap_to
, fd
, second_entry_pos
, de_first_two
,
1736 data
, size
, &data_buffer_changed
);
1737 if (filename
!= NULL
&& (!strcmp( filename
, "." ) || !strcmp( filename
, ".." )))
1738 filename
= read_first_dent_name( swap_to
^ 1, fd
, second_entry_pos
, NULL
,
1739 data
, size
, &data_buffer_changed
);
1740 if (data_buffer_changed
)
1742 lseek( fd
, next_pos
, SEEK_SET
);
1747 filename
= de
->d_name
;
1749 if (filename
&& (info
= append_entry( buffer
, io
, length
, filename
, NULL
, mask
, class )))
1752 if (io
->u
.Status
== STATUS_BUFFER_OVERFLOW
)
1754 lseek( fd
, old_pos
, SEEK_SET
); /* restore pos to previous entry */
1757 /* check if we still have enough space for the largest possible entry */
1758 if (single_entry
|| io
->Information
+ max_dir_info_size(class) > length
)
1760 if (res
> 0) lseek( fd
, next_pos
, SEEK_SET
); /* set pos to next entry */
1765 /* move on to the next entry */
1766 if (res
> 0) de
= (KERNEL_DIRENT64
*)((char *)de
+ de
->d_reclen
);
1769 res
= getdents64( fd
, data
, size
);
1770 de
= (KERNEL_DIRENT64
*)data
;
1771 de_first_two
= NULL
;
1775 if (last_info
) last_info
->next
= 0;
1776 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
1779 if (data
!= local_buffer
) RtlFreeHeap( GetProcessHeap(), 0, data
);
1783 #elif defined HAVE_GETDIRENTRIES
1785 #ifdef _DARWIN_FEATURE_64_BIT_INODE
1787 /* Darwin doesn't provide a version of getdirentries with support for 64-bit
1788 * inodes. When 64-bit inodes are enabled, the getdirentries symbol is mapped
1789 * to _getdirentries_is_not_available_when_64_bit_inodes_are_in_effect so that
1790 * we get link errors if we try to use it. We still need getdirentries, but we
1791 * don't need it to support 64-bit inodes. So, we use the legacy getdirentries
1792 * with 32-bit inodes. We have to be careful to use a corresponding dirent
1795 int darwin_legacy_getdirentries(int, char *, int, long *) __asm("_getdirentries");
1796 #define getdirentries darwin_legacy_getdirentries
1798 struct darwin_legacy_dirent
{
1800 __uint16_t d_reclen
;
1803 char d_name
[__DARWIN_MAXNAMLEN
+ 1];
1805 #define dirent darwin_legacy_dirent
1809 /***********************************************************************
1810 * wine_getdirentries
1812 * Wrapper for the BSD getdirentries system call to fix a bug in the
1813 * Mac OS X version. For some file systems (at least Apple Filing
1814 * Protocol a.k.a. AFP), getdirentries resets the file position to 0
1815 * when it's about to return 0 (no more entries). So, a subsequent
1816 * getdirentries call starts over at the beginning again, causing an
1819 static inline int wine_getdirentries(int fd
, char *buf
, int nbytes
, long *basep
)
1821 int res
= getdirentries(fd
, buf
, nbytes
, basep
);
1824 lseek(fd
, *basep
, SEEK_SET
);
1829 static inline int dir_reclen(struct dirent
*de
)
1831 #ifdef HAVE_STRUCT_DIRENT_D_RECLEN
1832 return de
->d_reclen
;
1834 return _DIRENT_RECLEN(de
->d_namlen
);
1838 /***********************************************************************
1839 * read_directory_getdirentries
1841 * Read a directory using the BSD getdirentries system call; helper for NtQueryDirectoryFile.
1843 static int read_directory_getdirentries( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
1844 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
1845 BOOLEAN restart_scan
, FILE_INFORMATION_CLASS
class )
1848 ULONG_PTR restart_info_pos
= 0;
1849 size_t size
, initial_size
= length
;
1850 int res
, fake_dot_dot
= 1;
1851 char *data
, local_buffer
[8192];
1853 union file_directory_info
*info
, *last_info
= NULL
, *restart_last_info
= NULL
;
1855 size
= initial_size
;
1856 data
= local_buffer
;
1857 if (size
> sizeof(local_buffer
) && !(data
= RtlAllocateHeap( GetProcessHeap(), 0, size
)))
1859 io
->u
.Status
= STATUS_NO_MEMORY
;
1860 return io
->u
.Status
;
1863 if (restart_scan
) lseek( fd
, 0, SEEK_SET
);
1865 io
->u
.Status
= STATUS_SUCCESS
;
1867 /* FIXME: should make sure size is larger than filesystem block size */
1868 res
= wine_getdirentries( fd
, data
, size
, &restart_pos
);
1871 io
->u
.Status
= FILE_GetNtStatus();
1876 de
= (struct dirent
*)data
;
1880 /* check if we got . and .. from getdirentries */
1883 if (!strcmp( de
->d_name
, "." ) && res
> dir_reclen(de
))
1885 struct dirent
*next_de
= (struct dirent
*)(data
+ dir_reclen(de
));
1886 if (!strcmp( next_de
->d_name
, ".." )) fake_dot_dot
= 0;
1889 /* make sure we have enough room for both entries */
1892 const ULONG min_info_size
= dir_info_size( class, 1 ) + dir_info_size( class, 2 );
1893 if (length
< min_info_size
|| single_entry
)
1895 FIXME( "not enough room %u/%u for fake . and .. entries\n", length
, single_entry
);
1902 if ((info
= append_entry( buffer
, io
, length
, ".", NULL
, mask
, class )))
1904 if ((info
= append_entry( buffer
, io
, length
, "..", NULL
, mask
, class )))
1907 restart_last_info
= last_info
;
1908 restart_info_pos
= io
->Information
;
1910 /* check if we still have enough space for the largest possible entry */
1911 if (last_info
&& io
->Information
+ max_dir_info_size(class) > length
)
1913 lseek( fd
, 0, SEEK_SET
); /* reset pos to first entry */
1921 res
-= dir_reclen(de
);
1923 !(fake_dot_dot
&& (!strcmp( de
->d_name
, "." ) || !strcmp( de
->d_name
, ".." ))) &&
1924 ((info
= append_entry( buffer
, io
, length
, de
->d_name
, NULL
, mask
, class ))))
1927 if (io
->u
.Status
== STATUS_BUFFER_OVERFLOW
)
1929 lseek( fd
, (unsigned long)restart_pos
, SEEK_SET
);
1930 if (restart_info_pos
) /* if we have a complete read already, return it */
1932 io
->u
.Status
= STATUS_SUCCESS
;
1933 io
->Information
= restart_info_pos
;
1934 last_info
= restart_last_info
;
1937 /* otherwise restart from the start with a smaller size */
1938 size
= (char *)de
- data
;
1940 io
->Information
= 0;
1944 if (!has_wildcard( mask
)) break;
1945 /* if we have to return but the buffer contains more data, restart with a smaller size */
1946 if (res
> 0 && (single_entry
|| io
->Information
+ max_dir_info_size(class) > length
))
1948 lseek( fd
, (unsigned long)restart_pos
, SEEK_SET
);
1949 size
= (char *)de
+ dir_reclen(de
) - data
;
1950 io
->Information
= restart_info_pos
;
1951 last_info
= restart_last_info
;
1955 /* move on to the next entry */
1958 de
= (struct dirent
*)((char *)de
+ dir_reclen(de
));
1961 if (size
< initial_size
) break; /* already restarted once, give up now */
1962 restart_last_info
= last_info
;
1963 restart_info_pos
= io
->Information
;
1965 res
= wine_getdirentries( fd
, data
, size
, &restart_pos
);
1966 de
= (struct dirent
*)data
;
1969 if (last_info
) last_info
->next
= 0;
1970 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
1973 if (data
!= local_buffer
) RtlFreeHeap( GetProcessHeap(), 0, data
);
1977 #ifdef _DARWIN_FEATURE_64_BIT_INODE
1978 #undef getdirentries
1982 #endif /* HAVE_GETDIRENTRIES */
1985 /***********************************************************************
1986 * read_directory_readdir
1988 * Read a directory using the POSIX readdir interface; helper for NtQueryDirectoryFile.
1990 static void read_directory_readdir( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
1991 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
1992 BOOLEAN restart_scan
, FILE_INFORMATION_CLASS
class )
1995 off_t i
, old_pos
= 0;
1997 union file_directory_info
*info
, *last_info
= NULL
;
1999 if (!(dir
= opendir( "." )))
2001 io
->u
.Status
= FILE_GetNtStatus();
2007 old_pos
= lseek( fd
, 0, SEEK_CUR
);
2008 /* skip the right number of entries */
2009 for (i
= 0; i
< old_pos
- 2; i
++)
2011 if (!readdir( dir
))
2014 io
->u
.Status
= STATUS_NO_MORE_FILES
;
2019 io
->u
.Status
= STATUS_SUCCESS
;
2024 info
= append_entry( buffer
, io
, length
, ".", NULL
, mask
, class );
2025 else if (old_pos
== 1)
2026 info
= append_entry( buffer
, io
, length
, "..", NULL
, mask
, class );
2027 else if ((de
= readdir( dir
)))
2029 if (strcmp( de
->d_name
, "." ) && strcmp( de
->d_name
, ".." ))
2030 info
= append_entry( buffer
, io
, length
, de
->d_name
, NULL
, mask
, class );
2040 if (io
->u
.Status
== STATUS_BUFFER_OVERFLOW
)
2042 old_pos
--; /* restore pos to previous entry */
2045 if (single_entry
) break;
2046 /* check if we still have enough space for the largest possible entry */
2047 if (io
->Information
+ max_dir_info_size(class) > length
) break;
2051 lseek( fd
, old_pos
, SEEK_SET
); /* store dir offset as filepos for fd */
2054 if (last_info
) last_info
->next
= 0;
2055 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
2058 /***********************************************************************
2059 * read_directory_stat
2061 * Read a single file from a directory by determining whether the file
2062 * identified by mask exists using stat.
2064 static int read_directory_stat( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
2065 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
2066 BOOLEAN restart_scan
, FILE_INFORMATION_CLASS
class )
2068 int unix_len
, ret
, used_default
;
2071 BOOL case_sensitive
= get_dir_case_sensitivity(".");
2073 TRACE("looking up file %s\n", debugstr_us( mask
));
2075 unix_len
= ntdll_wcstoumbs( 0, mask
->Buffer
, mask
->Length
/ sizeof(WCHAR
), NULL
, 0, NULL
, NULL
);
2076 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, unix_len
+ 1)))
2078 io
->u
.Status
= STATUS_NO_MEMORY
;
2081 ret
= ntdll_wcstoumbs( 0, mask
->Buffer
, mask
->Length
/ sizeof(WCHAR
), unix_name
, unix_len
,
2082 NULL
, &used_default
);
2083 if (ret
> 0 && !used_default
)
2088 lseek( fd
, 0, SEEK_SET
);
2090 else if (lseek( fd
, 0, SEEK_CUR
) != 0)
2092 io
->u
.Status
= STATUS_NO_MORE_FILES
;
2097 ret
= stat( unix_name
, &st
);
2098 if (case_sensitive
&& !ret
)
2100 union file_directory_info
*info
= append_entry( buffer
, io
, length
, unix_name
, NULL
, NULL
, class );
2104 if (io
->u
.Status
!= STATUS_BUFFER_OVERFLOW
) lseek( fd
, 1, SEEK_CUR
);
2106 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
2108 else if (!case_sensitive
&& ret
&& (errno
== ENOENT
|| errno
== ENOTDIR
))
2110 /* If the file does not exist, return that info.
2111 * If the file DOES exist, return failure and fallback to the next
2112 * read_directory_* function (we need to return the case-preserved
2113 * filename stored on the filesystem). */
2115 io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
2125 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
2127 TRACE("returning %d\n", ret
);
2132 #ifdef HAVE_GETATTRLIST
2133 /***********************************************************************
2134 * read_directory_getattrlist
2136 * Read a single file from a directory by determining whether the file
2137 * identified by mask exists using getattrlist.
2139 static int read_directory_getattrlist( int fd
, IO_STATUS_BLOCK
*io
, void *buffer
, ULONG length
,
2140 BOOLEAN single_entry
, const UNICODE_STRING
*mask
,
2141 BOOLEAN restart_scan
, FILE_INFORMATION_CLASS
class )
2143 int unix_len
, ret
, used_default
;
2145 struct attrlist attrlist
;
2146 #include "pshpack4.h"
2150 struct attrreference name_reference
;
2152 char name
[NAME_MAX
* 3 + 1];
2154 #include "poppack.h"
2156 TRACE("looking up file %s\n", debugstr_us( mask
));
2158 unix_len
= ntdll_wcstoumbs( 0, mask
->Buffer
, mask
->Length
/ sizeof(WCHAR
), NULL
, 0, NULL
, NULL
);
2159 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, unix_len
+ 1)))
2161 io
->u
.Status
= STATUS_NO_MEMORY
;
2164 ret
= ntdll_wcstoumbs( 0, mask
->Buffer
, mask
->Length
/ sizeof(WCHAR
), unix_name
, unix_len
,
2165 NULL
, &used_default
);
2166 if (ret
> 0 && !used_default
)
2171 lseek( fd
, 0, SEEK_SET
);
2173 else if (lseek( fd
, 0, SEEK_CUR
) != 0)
2175 io
->u
.Status
= STATUS_NO_MORE_FILES
;
2180 memset( &attrlist
, 0, sizeof(attrlist
) );
2181 attrlist
.bitmapcount
= ATTR_BIT_MAP_COUNT
;
2182 attrlist
.commonattr
= ATTR_CMN_NAME
| ATTR_CMN_OBJTYPE
;
2183 ret
= getattrlist( unix_name
, &attrlist
, &attrlist_buffer
, sizeof(attrlist_buffer
), FSOPT_NOFOLLOW
);
2184 /* If unix_name named a symlink, the above may have succeeded even if the symlink is broken.
2185 Check that with another call without FSOPT_NOFOLLOW. We don't ask for any attributes. */
2186 if (!ret
&& attrlist_buffer
.type
== VLNK
)
2189 attrlist
.commonattr
= 0;
2190 ret
= getattrlist( unix_name
, &attrlist
, &dummy
, sizeof(dummy
), 0 );
2194 union file_directory_info
*info
= append_entry( buffer
, io
, length
, attrlist_buffer
.name
, NULL
, NULL
, class );
2198 if (io
->u
.Status
!= STATUS_BUFFER_OVERFLOW
) lseek( fd
, 1, SEEK_CUR
);
2200 else io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
2202 else if ((errno
== ENOENT
|| errno
== ENOTDIR
) && !get_dir_case_sensitivity("."))
2204 io
->u
.Status
= restart_scan
? STATUS_NO_SUCH_FILE
: STATUS_NO_MORE_FILES
;
2211 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
2213 TRACE("returning %d\n", ret
);
2220 /******************************************************************************
2221 * NtQueryDirectoryFile [NTDLL.@]
2222 * ZwQueryDirectoryFile [NTDLL.@]
2224 NTSTATUS WINAPI
NtQueryDirectoryFile( HANDLE handle
, HANDLE event
,
2225 PIO_APC_ROUTINE apc_routine
, PVOID apc_context
,
2226 PIO_STATUS_BLOCK io
,
2227 PVOID buffer
, ULONG length
,
2228 FILE_INFORMATION_CLASS info_class
,
2229 BOOLEAN single_entry
,
2230 PUNICODE_STRING mask
,
2231 BOOLEAN restart_scan
)
2233 int cwd
, fd
, needs_close
;
2235 TRACE("(%p %p %p %p %p %p 0x%08x 0x%08x 0x%08x %s 0x%08x\n",
2236 handle
, event
, apc_routine
, apc_context
, io
, buffer
,
2237 length
, info_class
, single_entry
, debugstr_us(mask
),
2240 if (event
|| apc_routine
)
2242 FIXME( "Unsupported yet option\n" );
2243 return io
->u
.Status
= STATUS_NOT_IMPLEMENTED
;
2247 case FileDirectoryInformation
:
2248 case FileBothDirectoryInformation
:
2249 case FileFullDirectoryInformation
:
2250 case FileIdBothDirectoryInformation
:
2251 case FileIdFullDirectoryInformation
:
2252 if (length
< dir_info_size( info_class
, 1 )) return io
->u
.Status
= STATUS_INFO_LENGTH_MISMATCH
;
2253 if (!buffer
) return io
->u
.Status
= STATUS_ACCESS_VIOLATION
;
2256 FIXME( "Unsupported file info class %d\n", info_class
);
2257 return io
->u
.Status
= STATUS_NOT_IMPLEMENTED
;
2260 if ((io
->u
.Status
= server_get_unix_fd( handle
, FILE_LIST_DIRECTORY
, &fd
, &needs_close
, NULL
, NULL
)) != STATUS_SUCCESS
)
2261 return io
->u
.Status
;
2263 io
->Information
= 0;
2265 RtlRunOnceExecuteOnce( &init_once
, init_options
, NULL
, NULL
);
2267 RtlEnterCriticalSection( &dir_section
);
2269 cwd
= open( ".", O_RDONLY
);
2270 if (fchdir( fd
) != -1)
2274 curdir
.dev
= st
.st_dev
;
2275 curdir
.ino
= st
.st_ino
;
2276 #ifdef VFAT_IOCTL_READDIR_BOTH
2277 if ((read_directory_vfat( fd
, io
, buffer
, length
, single_entry
,
2278 mask
, restart_scan
, info_class
)) != -1) goto done
;
2280 if (!has_wildcard( mask
))
2282 #ifdef HAVE_GETATTRLIST
2283 if (read_directory_getattrlist( fd
, io
, buffer
, length
, single_entry
,
2284 mask
, restart_scan
, info_class
) != -1) goto done
;
2286 if (read_directory_stat( fd
, io
, buffer
, length
, single_entry
,
2287 mask
, restart_scan
, info_class
) != -1) goto done
;
2290 if ((read_directory_getdents( fd
, io
, buffer
, length
, single_entry
,
2291 mask
, restart_scan
, info_class
)) != -1) goto done
;
2292 #elif defined HAVE_GETDIRENTRIES
2293 if ((read_directory_getdirentries( fd
, io
, buffer
, length
, single_entry
,
2294 mask
, restart_scan
, info_class
)) != -1) goto done
;
2296 read_directory_readdir( fd
, io
, buffer
, length
, single_entry
, mask
, restart_scan
, info_class
);
2299 if (cwd
== -1 || fchdir( cwd
) == -1) chdir( "/" );
2301 else io
->u
.Status
= FILE_GetNtStatus();
2303 RtlLeaveCriticalSection( &dir_section
);
2305 if (needs_close
) close( fd
);
2306 if (cwd
!= -1) close( cwd
);
2307 TRACE( "=> %x (%ld)\n", io
->u
.Status
, io
->Information
);
2308 return io
->u
.Status
;
2312 /***********************************************************************
2315 * Find a file in a directory the hard way, by doing a case-insensitive search.
2316 * The file found is appended to unix_name at pos.
2317 * There must be at least MAX_DIR_ENTRY_LEN+2 chars available at pos.
2319 static NTSTATUS
find_file_in_dir( char *unix_name
, int pos
, const WCHAR
*name
, int length
,
2320 BOOLEAN check_case
, BOOLEAN
*is_win_dir
)
2322 WCHAR buffer
[MAX_DIR_ENTRY_LEN
];
2324 BOOLEAN spaces
, is_name_8_dot_3
;
2328 int ret
, used_default
;
2330 /* try a shortcut for this directory */
2332 unix_name
[pos
++] = '/';
2333 ret
= ntdll_wcstoumbs( 0, name
, length
, unix_name
+ pos
, MAX_DIR_ENTRY_LEN
,
2334 NULL
, &used_default
);
2335 /* if we used the default char, the Unix name won't round trip properly back to Unicode */
2336 /* so it cannot match the file we are looking for */
2337 if (ret
>= 0 && !used_default
)
2339 unix_name
[pos
+ ret
] = 0;
2340 if (!stat( unix_name
, &st
))
2342 if (is_win_dir
) *is_win_dir
= is_same_file( &windir
, &st
);
2343 return STATUS_SUCCESS
;
2346 if (check_case
) goto not_found
; /* we want an exact match */
2348 if (pos
> 1) unix_name
[pos
- 1] = 0;
2349 else unix_name
[1] = 0; /* keep the initial slash */
2351 /* check if it fits in 8.3 so that we don't look for short names if we won't need them */
2353 str
.Buffer
= (WCHAR
*)name
;
2354 str
.Length
= length
* sizeof(WCHAR
);
2355 str
.MaximumLength
= str
.Length
;
2356 is_name_8_dot_3
= RtlIsNameLegalDOS8Dot3( &str
, NULL
, &spaces
) && !spaces
;
2357 #ifndef VFAT_IOCTL_READDIR_BOTH
2358 is_name_8_dot_3
= is_name_8_dot_3
&& length
>= 8 && name
[4] == '~';
2361 if (!is_name_8_dot_3
&& !get_dir_case_sensitivity( unix_name
)) goto not_found
;
2363 /* now look for it through the directory */
2365 #ifdef VFAT_IOCTL_READDIR_BOTH
2366 if (is_name_8_dot_3
)
2368 int fd
= open( unix_name
, O_RDONLY
| O_DIRECTORY
);
2373 RtlEnterCriticalSection( &dir_section
);
2374 if ((kde
= start_vfat_ioctl( fd
)))
2376 unix_name
[pos
- 1] = '/';
2377 while (kde
[0].d_reclen
)
2379 /* make sure names are null-terminated to work around an x86-64 kernel bug */
2380 size_t len
= min(kde
[0].d_reclen
, sizeof(kde
[0].d_name
) - 1 );
2381 kde
[0].d_name
[len
] = 0;
2382 len
= min(kde
[1].d_reclen
, sizeof(kde
[1].d_name
) - 1 );
2383 kde
[1].d_name
[len
] = 0;
2385 if (kde
[1].d_name
[0])
2387 ret
= ntdll_umbstowcs( 0, kde
[1].d_name
, strlen(kde
[1].d_name
),
2388 buffer
, MAX_DIR_ENTRY_LEN
);
2389 if (ret
== length
&& !memicmpW( buffer
, name
, length
))
2391 strcpy( unix_name
+ pos
, kde
[1].d_name
);
2392 RtlLeaveCriticalSection( &dir_section
);
2397 ret
= ntdll_umbstowcs( 0, kde
[0].d_name
, strlen(kde
[0].d_name
),
2398 buffer
, MAX_DIR_ENTRY_LEN
);
2399 if (ret
== length
&& !memicmpW( buffer
, name
, length
))
2401 strcpy( unix_name
+ pos
,
2402 kde
[1].d_name
[0] ? kde
[1].d_name
: kde
[0].d_name
);
2403 RtlLeaveCriticalSection( &dir_section
);
2407 if (ioctl( fd
, VFAT_IOCTL_READDIR_BOTH
, (long)kde
) == -1)
2409 RtlLeaveCriticalSection( &dir_section
);
2415 RtlLeaveCriticalSection( &dir_section
);
2418 /* fall through to normal handling */
2420 #endif /* VFAT_IOCTL_READDIR_BOTH */
2422 if (!(dir
= opendir( unix_name
)))
2424 if (errno
== ENOENT
) return STATUS_OBJECT_PATH_NOT_FOUND
;
2425 else return FILE_GetNtStatus();
2427 unix_name
[pos
- 1] = '/';
2428 str
.Buffer
= buffer
;
2429 str
.MaximumLength
= sizeof(buffer
);
2430 while ((de
= readdir( dir
)))
2432 ret
= ntdll_umbstowcs( 0, de
->d_name
, strlen(de
->d_name
), buffer
, MAX_DIR_ENTRY_LEN
);
2433 if (ret
== length
&& !memicmpW( buffer
, name
, length
))
2435 strcpy( unix_name
+ pos
, de
->d_name
);
2440 if (!is_name_8_dot_3
) continue;
2442 str
.Length
= ret
* sizeof(WCHAR
);
2443 if (!RtlIsNameLegalDOS8Dot3( &str
, NULL
, &spaces
) || spaces
)
2445 WCHAR short_nameW
[12];
2446 ret
= hash_short_file_name( &str
, short_nameW
);
2447 if (ret
== length
&& !memicmpW( short_nameW
, name
, length
))
2449 strcpy( unix_name
+ pos
, de
->d_name
);
2458 unix_name
[pos
- 1] = 0;
2459 return STATUS_OBJECT_PATH_NOT_FOUND
;
2462 if (is_win_dir
&& !stat( unix_name
, &st
)) *is_win_dir
= is_same_file( &windir
, &st
);
2463 return STATUS_SUCCESS
;
2469 static const WCHAR catrootW
[] = {'s','y','s','t','e','m','3','2','\\','c','a','t','r','o','o','t',0};
2470 static const WCHAR catroot2W
[] = {'s','y','s','t','e','m','3','2','\\','c','a','t','r','o','o','t','2',0};
2471 static const WCHAR driversstoreW
[] = {'s','y','s','t','e','m','3','2','\\','d','r','i','v','e','r','s','s','t','o','r','e',0};
2472 static const WCHAR driversetcW
[] = {'s','y','s','t','e','m','3','2','\\','d','r','i','v','e','r','s','\\','e','t','c',0};
2473 static const WCHAR logfilesW
[] = {'s','y','s','t','e','m','3','2','\\','l','o','g','f','i','l','e','s',0};
2474 static const WCHAR spoolW
[] = {'s','y','s','t','e','m','3','2','\\','s','p','o','o','l',0};
2475 static const WCHAR system32W
[] = {'s','y','s','t','e','m','3','2',0};
2476 static const WCHAR syswow64W
[] = {'s','y','s','w','o','w','6','4',0};
2477 static const WCHAR sysnativeW
[] = {'s','y','s','n','a','t','i','v','e',0};
2478 static const WCHAR regeditW
[] = {'r','e','g','e','d','i','t','.','e','x','e',0};
2479 static const WCHAR wow_regeditW
[] = {'s','y','s','w','o','w','6','4','\\','r','e','g','e','d','i','t','.','e','x','e',0};
2483 const WCHAR
*source
;
2484 const WCHAR
*dos_target
;
2485 const char *unix_target
;
2488 { catrootW
, NULL
, NULL
},
2489 { catroot2W
, NULL
, NULL
},
2490 { driversstoreW
, NULL
, NULL
},
2491 { driversetcW
, NULL
, NULL
},
2492 { logfilesW
, NULL
, NULL
},
2493 { spoolW
, NULL
, NULL
},
2494 { system32W
, syswow64W
, NULL
},
2495 { sysnativeW
, system32W
, NULL
},
2496 { regeditW
, wow_regeditW
, NULL
}
2499 static unsigned int nb_redirects
;
2502 /***********************************************************************
2503 * get_redirect_target
2505 * Find the target unix name for a redirected dir.
2507 static const char *get_redirect_target( const char *windows_dir
, const WCHAR
*name
)
2509 int used_default
, len
, pos
, win_len
= strlen( windows_dir
);
2510 char *unix_name
, *unix_target
= NULL
;
2513 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, win_len
+ MAX_DIR_ENTRY_LEN
+ 2 )))
2515 memcpy( unix_name
, windows_dir
, win_len
);
2520 const WCHAR
*end
, *next
;
2522 for (end
= name
; *end
; end
++) if (IS_SEPARATOR(*end
)) break;
2523 for (next
= end
; *next
; next
++) if (!IS_SEPARATOR(*next
)) break;
2525 status
= find_file_in_dir( unix_name
, pos
, name
, end
- name
, FALSE
, NULL
);
2526 if (status
== STATUS_OBJECT_PATH_NOT_FOUND
&& !*next
) /* not finding last element is ok */
2528 len
= ntdll_wcstoumbs( 0, name
, end
- name
, unix_name
+ pos
+ 1,
2529 MAX_DIR_ENTRY_LEN
- (pos
- win_len
), NULL
, &used_default
);
2530 if (len
> 0 && !used_default
)
2532 unix_name
[pos
] = '/';
2538 if (status
) goto done
;
2539 pos
+= strlen( unix_name
+ pos
);
2543 if ((unix_target
= RtlAllocateHeap( GetProcessHeap(), 0, pos
- win_len
)))
2544 memcpy( unix_target
, unix_name
+ win_len
+ 1, pos
- win_len
);
2547 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
2552 /***********************************************************************
2555 static void init_redirects(void)
2557 UNICODE_STRING nt_name
;
2558 ANSI_STRING unix_name
;
2563 if (!RtlDosPathNameToNtPathName_U( user_shared_data
->NtSystemRoot
, &nt_name
, NULL
, NULL
))
2565 ERR( "can't convert %s\n", debugstr_w(user_shared_data
->NtSystemRoot
) );
2568 status
= wine_nt_to_unix_file_name( &nt_name
, &unix_name
, FILE_OPEN_IF
, FALSE
);
2569 RtlFreeUnicodeString( &nt_name
);
2572 ERR( "cannot open %s (%x)\n", debugstr_w(user_shared_data
->NtSystemRoot
), status
);
2575 if (!stat( unix_name
.Buffer
, &st
))
2577 windir
.dev
= st
.st_dev
;
2578 windir
.ino
= st
.st_ino
;
2579 nb_redirects
= sizeof(redirects
) / sizeof(redirects
[0]);
2580 for (i
= 0; i
< nb_redirects
; i
++)
2582 if (!redirects
[i
].dos_target
) continue;
2583 redirects
[i
].unix_target
= get_redirect_target( unix_name
.Buffer
, redirects
[i
].dos_target
);
2584 TRACE( "%s -> %s\n", debugstr_w(redirects
[i
].source
), redirects
[i
].unix_target
);
2587 RtlFreeAnsiString( &unix_name
);
2592 /***********************************************************************
2595 * Check if path matches a redirect name. If yes, return matched length.
2597 static int match_redirect( const WCHAR
*path
, int len
, const WCHAR
*redir
, BOOLEAN check_case
)
2601 while (i
< len
&& *redir
)
2603 if (IS_SEPARATOR(path
[i
]))
2605 if (*redir
++ != '\\') return 0;
2606 while (i
< len
&& IS_SEPARATOR(path
[i
])) i
++;
2607 continue; /* move on to next path component */
2609 else if (check_case
)
2611 if (path
[i
] != *redir
) return 0;
2615 if (tolowerW(path
[i
]) != tolowerW(*redir
)) return 0;
2620 if (*redir
) return 0;
2621 if (i
< len
&& !IS_SEPARATOR(path
[i
])) return 0;
2622 while (i
< len
&& IS_SEPARATOR(path
[i
])) i
++;
2627 /***********************************************************************
2630 * Retrieve the Unix path corresponding to a redirected path if any.
2632 static int get_redirect_path( char *unix_name
, int pos
, const WCHAR
*name
, int length
, BOOLEAN check_case
)
2637 for (i
= 0; i
< nb_redirects
; i
++)
2639 if ((len
= match_redirect( name
, length
, redirects
[i
].source
, check_case
)))
2641 if (!redirects
[i
].unix_target
) break;
2642 unix_name
[pos
++] = '/';
2643 strcpy( unix_name
+ pos
, redirects
[i
].unix_target
);
2652 /* there are no redirects on 64-bit */
2654 static const unsigned int nb_redirects
= 0;
2656 static int get_redirect_path( char *unix_name
, int pos
, const WCHAR
*name
, int length
, BOOLEAN check_case
)
2663 /***********************************************************************
2664 * DIR_init_windows_dir
2666 void DIR_init_windows_dir( const WCHAR
*win
, const WCHAR
*sys
)
2668 /* FIXME: should probably store paths as NT file names */
2670 RtlCreateUnicodeString( &system_dir
, sys
);
2673 if (is_wow64
) init_redirects();
2678 /******************************************************************************
2681 * Get the Unix path of a DOS device.
2683 static NTSTATUS
get_dos_device( const WCHAR
*name
, UINT name_len
, ANSI_STRING
*unix_name_ret
)
2685 const char *config_dir
= wine_get_config_dir();
2687 char *unix_name
, *new_name
, *dev
;
2691 /* make sure the device name is ASCII */
2692 for (i
= 0; i
< name_len
; i
++)
2693 if (name
[i
] <= 32 || name
[i
] >= 127) return STATUS_BAD_DEVICE_TYPE
;
2695 unix_len
= strlen(config_dir
) + sizeof("/dosdevices/") + name_len
+ 1;
2697 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, unix_len
)))
2698 return STATUS_NO_MEMORY
;
2700 strcpy( unix_name
, config_dir
);
2701 strcat( unix_name
, "/dosdevices/" );
2702 dev
= unix_name
+ strlen(unix_name
);
2704 for (i
= 0; i
< name_len
; i
++) dev
[i
] = (char)tolowerW(name
[i
]);
2707 /* special case for drive devices */
2708 if (name_len
== 2 && dev
[1] == ':')
2716 if (!stat( unix_name
, &st
))
2718 TRACE( "%s -> %s\n", debugstr_wn(name
,name_len
), debugstr_a(unix_name
) );
2719 unix_name_ret
->Buffer
= unix_name
;
2720 unix_name_ret
->Length
= strlen(unix_name
);
2721 unix_name_ret
->MaximumLength
= unix_len
;
2722 return STATUS_SUCCESS
;
2726 /* now try some defaults for it */
2727 if (!strcmp( dev
, "aux" ))
2729 strcpy( dev
, "com1" );
2732 if (!strcmp( dev
, "prn" ))
2734 strcpy( dev
, "lpt1" );
2739 if (dev
[1] == ':' && dev
[2] == ':') /* drive device */
2741 dev
[2] = 0; /* remove last ':' to get the drive mount point symlink */
2742 new_name
= get_default_drive_device( unix_name
);
2744 else if (!strncmp( dev
, "com", 3 )) new_name
= get_default_com_device( atoi(dev
+ 3 ));
2745 else if (!strncmp( dev
, "lpt", 3 )) new_name
= get_default_lpt_device( atoi(dev
+ 3 ));
2747 if (!new_name
) break;
2749 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
2750 unix_name
= new_name
;
2751 unix_len
= strlen(unix_name
) + 1;
2752 dev
= NULL
; /* last try */
2754 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
2755 return STATUS_BAD_DEVICE_TYPE
;
2759 /* return the length of the DOS namespace prefix if any */
2760 static inline int get_dos_prefix_len( const UNICODE_STRING
*name
)
2762 static const WCHAR nt_prefixW
[] = {'\\','?','?','\\'};
2763 static const WCHAR dosdev_prefixW
[] = {'\\','D','o','s','D','e','v','i','c','e','s','\\'};
2765 if (name
->Length
> sizeof(nt_prefixW
) &&
2766 !memcmp( name
->Buffer
, nt_prefixW
, sizeof(nt_prefixW
) ))
2767 return sizeof(nt_prefixW
) / sizeof(WCHAR
);
2769 if (name
->Length
> sizeof(dosdev_prefixW
) &&
2770 !memicmpW( name
->Buffer
, dosdev_prefixW
, sizeof(dosdev_prefixW
)/sizeof(WCHAR
) ))
2771 return sizeof(dosdev_prefixW
) / sizeof(WCHAR
);
2777 /******************************************************************************
2780 * Recursively search directories from the dir queue for a given inode.
2782 static NTSTATUS
find_file_id( ANSI_STRING
*unix_name
, ULONGLONG file_id
, dev_t dev
)
2790 while (!(status
= next_dir_in_queue( unix_name
->Buffer
)))
2792 if (!(dir
= opendir( unix_name
->Buffer
))) continue;
2793 TRACE( "searching %s for %s\n", unix_name
->Buffer
, wine_dbgstr_longlong(file_id
) );
2794 pos
= strlen( unix_name
->Buffer
);
2795 if (pos
+ MAX_DIR_ENTRY_LEN
>= unix_name
->MaximumLength
/sizeof(WCHAR
))
2797 char *new = RtlReAllocateHeap( GetProcessHeap(), 0, unix_name
->Buffer
,
2798 unix_name
->MaximumLength
* 2 );
2802 return STATUS_NO_MEMORY
;
2804 unix_name
->MaximumLength
*= 2;
2805 unix_name
->Buffer
= new;
2807 unix_name
->Buffer
[pos
++] = '/';
2808 while ((de
= readdir( dir
)))
2810 if (!strcmp( de
->d_name
, "." ) || !strcmp( de
->d_name
, ".." )) continue;
2811 strcpy( unix_name
->Buffer
+ pos
, de
->d_name
);
2812 if (lstat( unix_name
->Buffer
, &st
) == -1) continue;
2813 if (st
.st_dev
!= dev
) continue;
2814 if (st
.st_ino
== file_id
)
2817 return STATUS_SUCCESS
;
2819 if (!S_ISDIR( st
.st_mode
)) continue;
2820 if ((status
= add_dir_to_queue( unix_name
->Buffer
)) != STATUS_SUCCESS
)
2832 /******************************************************************************
2833 * file_id_to_unix_file_name
2835 * Lookup a file from its file id instead of its name.
2837 NTSTATUS
file_id_to_unix_file_name( const OBJECT_ATTRIBUTES
*attr
, ANSI_STRING
*unix_name
)
2839 enum server_fd_type type
;
2840 int old_cwd
, root_fd
, needs_close
;
2843 struct stat st
, root_st
;
2845 if (attr
->ObjectName
->Length
!= sizeof(ULONGLONG
)) return STATUS_OBJECT_PATH_SYNTAX_BAD
;
2846 if (!attr
->RootDirectory
) return STATUS_INVALID_PARAMETER
;
2847 memcpy( &file_id
, attr
->ObjectName
->Buffer
, sizeof(file_id
) );
2849 unix_name
->MaximumLength
= 2 * MAX_DIR_ENTRY_LEN
+ 4;
2850 if (!(unix_name
->Buffer
= RtlAllocateHeap( GetProcessHeap(), 0, unix_name
->MaximumLength
)))
2851 return STATUS_NO_MEMORY
;
2852 strcpy( unix_name
->Buffer
, "." );
2854 if ((status
= server_get_unix_fd( attr
->RootDirectory
, 0, &root_fd
, &needs_close
, &type
, NULL
)))
2857 if (type
!= FD_TYPE_DIR
)
2859 status
= STATUS_OBJECT_TYPE_MISMATCH
;
2863 fstat( root_fd
, &root_st
);
2864 if (root_st
.st_ino
== file_id
) /* shortcut for "." */
2866 status
= STATUS_SUCCESS
;
2870 RtlEnterCriticalSection( &dir_section
);
2871 if ((old_cwd
= open( ".", O_RDONLY
)) != -1 && fchdir( root_fd
) != -1)
2873 /* shortcut for ".." */
2874 if (!stat( "..", &st
) && st
.st_dev
== root_st
.st_dev
&& st
.st_ino
== file_id
)
2876 strcpy( unix_name
->Buffer
, ".." );
2877 status
= STATUS_SUCCESS
;
2881 status
= add_dir_to_queue( "." );
2883 status
= find_file_id( unix_name
, file_id
, root_st
.st_dev
);
2884 if (!status
) /* get rid of "./" prefix */
2885 memmove( unix_name
->Buffer
, unix_name
->Buffer
+ 2, strlen(unix_name
->Buffer
) - 1 );
2888 if (fchdir( old_cwd
) == -1) chdir( "/" );
2890 else status
= FILE_GetNtStatus();
2891 RtlLeaveCriticalSection( &dir_section
);
2892 if (old_cwd
!= -1) close( old_cwd
);
2895 if (status
== STATUS_SUCCESS
)
2897 TRACE( "%s -> %s\n", wine_dbgstr_longlong(file_id
), debugstr_a(unix_name
->Buffer
) );
2898 unix_name
->Length
= strlen( unix_name
->Buffer
);
2902 TRACE( "%s not found in dir %p\n", wine_dbgstr_longlong(file_id
), attr
->RootDirectory
);
2903 RtlFreeHeap( GetProcessHeap(), 0, unix_name
->Buffer
);
2905 if (needs_close
) close( root_fd
);
2910 /******************************************************************************
2913 * Helper for nt_to_unix_file_name
2915 static NTSTATUS
lookup_unix_name( const WCHAR
*name
, int name_len
, char **buffer
, int unix_len
, int pos
,
2916 UINT disposition
, BOOLEAN check_case
)
2919 int ret
, used_default
, len
;
2921 char *unix_name
= *buffer
;
2922 const BOOL redirect
= nb_redirects
&& ntdll_get_thread_data()->wow64_redir
;
2924 /* try a shortcut first */
2926 ret
= ntdll_wcstoumbs( 0, name
, name_len
, unix_name
+ pos
, unix_len
- pos
- 1,
2927 NULL
, &used_default
);
2929 while (name_len
&& IS_SEPARATOR(*name
))
2935 if (ret
>= 0 && !used_default
) /* if we used the default char the name didn't convert properly */
2938 unix_name
[pos
+ ret
] = 0;
2939 for (p
= unix_name
+ pos
; *p
; p
++) if (*p
== '\\') *p
= '/';
2940 if (!redirect
|| (!strstr( unix_name
, "/windows/") && strncmp( unix_name
, "windows/", 8 )))
2942 if (!stat( unix_name
, &st
))
2944 /* creation fails with STATUS_ACCESS_DENIED for the root of the drive */
2945 if (disposition
== FILE_CREATE
)
2946 return name_len
? STATUS_OBJECT_NAME_COLLISION
: STATUS_ACCESS_DENIED
;
2947 return STATUS_SUCCESS
;
2952 if (!name_len
) /* empty name -> drive root doesn't exist */
2953 return STATUS_OBJECT_PATH_NOT_FOUND
;
2954 if (check_case
&& !redirect
&& (disposition
== FILE_OPEN
|| disposition
== FILE_OVERWRITE
))
2955 return STATUS_OBJECT_NAME_NOT_FOUND
;
2957 /* now do it component by component */
2961 const WCHAR
*end
, *next
;
2962 BOOLEAN is_win_dir
= FALSE
;
2965 while (end
< name
+ name_len
&& !IS_SEPARATOR(*end
)) end
++;
2967 while (next
< name
+ name_len
&& IS_SEPARATOR(*next
)) next
++;
2968 name_len
-= next
- name
;
2970 /* grow the buffer if needed */
2972 if (unix_len
- pos
< MAX_DIR_ENTRY_LEN
+ 2)
2975 unix_len
+= 2 * MAX_DIR_ENTRY_LEN
;
2976 if (!(new_name
= RtlReAllocateHeap( GetProcessHeap(), 0, unix_name
, unix_len
)))
2977 return STATUS_NO_MEMORY
;
2978 unix_name
= *buffer
= new_name
;
2981 status
= find_file_in_dir( unix_name
, pos
, name
, end
- name
,
2982 check_case
, redirect
? &is_win_dir
: NULL
);
2984 /* if this is the last element, not finding it is not necessarily fatal */
2987 if (status
== STATUS_OBJECT_PATH_NOT_FOUND
)
2989 status
= STATUS_OBJECT_NAME_NOT_FOUND
;
2990 if (disposition
!= FILE_OPEN
&& disposition
!= FILE_OVERWRITE
)
2992 ret
= ntdll_wcstoumbs( 0, name
, end
- name
, unix_name
+ pos
+ 1,
2993 MAX_DIR_ENTRY_LEN
, NULL
, &used_default
);
2994 if (ret
> 0 && !used_default
)
2996 unix_name
[pos
] = '/';
2997 unix_name
[pos
+ 1 + ret
] = 0;
2998 status
= STATUS_NO_SUCH_FILE
;
3003 else if (status
== STATUS_SUCCESS
&& disposition
== FILE_CREATE
)
3005 status
= STATUS_OBJECT_NAME_COLLISION
;
3009 if (status
!= STATUS_SUCCESS
) break;
3011 pos
+= strlen( unix_name
+ pos
);
3014 if (is_win_dir
&& (len
= get_redirect_path( unix_name
, pos
, name
, name_len
, check_case
)))
3018 pos
+= strlen( unix_name
+ pos
);
3019 TRACE( "redirecting -> %s + %s\n", debugstr_a(unix_name
), debugstr_w(name
) );
3027 /******************************************************************************
3028 * nt_to_unix_file_name_attr
3030 NTSTATUS
nt_to_unix_file_name_attr( const OBJECT_ATTRIBUTES
*attr
, ANSI_STRING
*unix_name_ret
,
3033 static const WCHAR invalid_charsW
[] = { INVALID_NT_CHARS
, 0 };
3034 enum server_fd_type type
;
3035 int old_cwd
, root_fd
, needs_close
;
3036 const WCHAR
*name
, *p
;
3038 int name_len
, unix_len
;
3040 BOOLEAN check_case
= !(attr
->Attributes
& OBJ_CASE_INSENSITIVE
);
3042 if (!attr
->RootDirectory
) /* without root dir fall back to normal lookup */
3043 return wine_nt_to_unix_file_name( attr
->ObjectName
, unix_name_ret
, disposition
, check_case
);
3045 name
= attr
->ObjectName
->Buffer
;
3046 name_len
= attr
->ObjectName
->Length
/ sizeof(WCHAR
);
3048 if (name_len
&& IS_SEPARATOR(name
[0])) return STATUS_INVALID_PARAMETER
;
3050 /* check for invalid characters */
3051 for (p
= name
; p
< name
+ name_len
; p
++)
3052 if (*p
< 32 || strchrW( invalid_charsW
, *p
)) return STATUS_OBJECT_NAME_INVALID
;
3054 unix_len
= ntdll_wcstoumbs( 0, name
, name_len
, NULL
, 0, NULL
, NULL
);
3055 unix_len
+= MAX_DIR_ENTRY_LEN
+ 3;
3056 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, unix_len
)))
3057 return STATUS_NO_MEMORY
;
3060 if (!(status
= server_get_unix_fd( attr
->RootDirectory
, 0, &root_fd
, &needs_close
, &type
, NULL
)))
3062 if (type
!= FD_TYPE_DIR
)
3064 if (needs_close
) close( root_fd
);
3065 status
= STATUS_BAD_DEVICE_TYPE
;
3069 RtlEnterCriticalSection( &dir_section
);
3070 if ((old_cwd
= open( ".", O_RDONLY
)) != -1 && fchdir( root_fd
) != -1)
3072 status
= lookup_unix_name( name
, name_len
, &unix_name
, unix_len
, 1,
3073 disposition
, check_case
);
3074 if (fchdir( old_cwd
) == -1) chdir( "/" );
3076 else status
= FILE_GetNtStatus();
3077 RtlLeaveCriticalSection( &dir_section
);
3078 if (old_cwd
!= -1) close( old_cwd
);
3079 if (needs_close
) close( root_fd
);
3082 else if (status
== STATUS_OBJECT_TYPE_MISMATCH
) status
= STATUS_BAD_DEVICE_TYPE
;
3084 if (status
== STATUS_SUCCESS
|| status
== STATUS_NO_SUCH_FILE
)
3086 TRACE( "%s -> %s\n", debugstr_us(attr
->ObjectName
), debugstr_a(unix_name
) );
3087 unix_name_ret
->Buffer
= unix_name
;
3088 unix_name_ret
->Length
= strlen(unix_name
);
3089 unix_name_ret
->MaximumLength
= unix_len
;
3093 TRACE( "%s not found in %s\n", debugstr_w(name
), unix_name
);
3094 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
3100 /******************************************************************************
3101 * wine_nt_to_unix_file_name (NTDLL.@) Not a Windows API
3103 * Convert a file name from NT namespace to Unix namespace.
3105 * If disposition is not FILE_OPEN or FILE_OVERWRITE, the last path
3106 * element doesn't have to exist; in that case STATUS_NO_SUCH_FILE is
3107 * returned, but the unix name is still filled in properly.
3109 NTSTATUS CDECL
wine_nt_to_unix_file_name( const UNICODE_STRING
*nameW
, ANSI_STRING
*unix_name_ret
,
3110 UINT disposition
, BOOLEAN check_case
)
3112 static const WCHAR unixW
[] = {'u','n','i','x'};
3113 static const WCHAR invalid_charsW
[] = { INVALID_NT_CHARS
, 0 };
3115 NTSTATUS status
= STATUS_SUCCESS
;
3116 const char *config_dir
= wine_get_config_dir();
3117 const WCHAR
*name
, *p
;
3120 int pos
, ret
, name_len
, unix_len
, prefix_len
, used_default
;
3121 WCHAR prefix
[MAX_DIR_ENTRY_LEN
];
3122 BOOLEAN is_unix
= FALSE
;
3124 name
= nameW
->Buffer
;
3125 name_len
= nameW
->Length
/ sizeof(WCHAR
);
3127 if (!name_len
|| !IS_SEPARATOR(name
[0])) return STATUS_OBJECT_PATH_SYNTAX_BAD
;
3129 if (!(pos
= get_dos_prefix_len( nameW
)))
3130 return STATUS_BAD_DEVICE_TYPE
; /* no DOS prefix, assume NT native name */
3135 /* check for sub-directory */
3136 for (pos
= 0; pos
< name_len
; pos
++)
3138 if (IS_SEPARATOR(name
[pos
])) break;
3139 if (name
[pos
] < 32 || strchrW( invalid_charsW
, name
[pos
] ))
3140 return STATUS_OBJECT_NAME_INVALID
;
3142 if (pos
> MAX_DIR_ENTRY_LEN
)
3143 return STATUS_OBJECT_NAME_INVALID
;
3145 if (pos
== name_len
) /* no subdir, plain DOS device */
3146 return get_dos_device( name
, name_len
, unix_name_ret
);
3148 for (prefix_len
= 0; prefix_len
< pos
; prefix_len
++)
3149 prefix
[prefix_len
] = tolowerW(name
[prefix_len
]);
3152 name_len
-= prefix_len
;
3154 /* check for invalid characters (all chars except 0 are valid for unix) */
3155 is_unix
= (prefix_len
== 4 && !memcmp( prefix
, unixW
, sizeof(unixW
) ));
3158 for (p
= name
; p
< name
+ name_len
; p
++)
3159 if (!*p
) return STATUS_OBJECT_NAME_INVALID
;
3164 for (p
= name
; p
< name
+ name_len
; p
++)
3165 if (*p
< 32 || strchrW( invalid_charsW
, *p
)) return STATUS_OBJECT_NAME_INVALID
;
3168 unix_len
= ntdll_wcstoumbs( 0, prefix
, prefix_len
, NULL
, 0, NULL
, NULL
);
3169 unix_len
+= ntdll_wcstoumbs( 0, name
, name_len
, NULL
, 0, NULL
, NULL
);
3170 unix_len
+= MAX_DIR_ENTRY_LEN
+ 3;
3171 unix_len
+= strlen(config_dir
) + sizeof("/dosdevices/");
3172 if (!(unix_name
= RtlAllocateHeap( GetProcessHeap(), 0, unix_len
)))
3173 return STATUS_NO_MEMORY
;
3174 strcpy( unix_name
, config_dir
);
3175 strcat( unix_name
, "/dosdevices/" );
3176 pos
= strlen(unix_name
);
3178 ret
= ntdll_wcstoumbs( 0, prefix
, prefix_len
, unix_name
+ pos
, unix_len
- pos
- 1,
3179 NULL
, &used_default
);
3180 if (!ret
|| used_default
)
3182 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
3183 return STATUS_OBJECT_NAME_INVALID
;
3187 /* check if prefix exists (except for DOS drives to avoid extra stat calls) */
3189 if (prefix_len
!= 2 || prefix
[1] != ':')
3192 if (lstat( unix_name
, &st
) == -1 && errno
== ENOENT
)
3196 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
3197 return STATUS_BAD_DEVICE_TYPE
;
3199 pos
= 0; /* fall back to unix root */
3203 status
= lookup_unix_name( name
, name_len
, &unix_name
, unix_len
, pos
, disposition
, check_case
);
3204 if (status
== STATUS_SUCCESS
|| status
== STATUS_NO_SUCH_FILE
)
3206 TRACE( "%s -> %s\n", debugstr_us(nameW
), debugstr_a(unix_name
) );
3207 unix_name_ret
->Buffer
= unix_name
;
3208 unix_name_ret
->Length
= strlen(unix_name
);
3209 unix_name_ret
->MaximumLength
= unix_len
;
3213 TRACE( "%s not found in %s\n", debugstr_w(name
), unix_name
);
3214 RtlFreeHeap( GetProcessHeap(), 0, unix_name
);
3220 /******************************************************************
3221 * RtlWow64EnableFsRedirection (NTDLL.@)
3223 NTSTATUS WINAPI
RtlWow64EnableFsRedirection( BOOLEAN enable
)
3225 if (!is_wow64
) return STATUS_NOT_IMPLEMENTED
;
3226 ntdll_get_thread_data()->wow64_redir
= enable
;
3227 return STATUS_SUCCESS
;
3231 /******************************************************************
3232 * RtlWow64EnableFsRedirectionEx (NTDLL.@)
3234 NTSTATUS WINAPI
RtlWow64EnableFsRedirectionEx( ULONG disable
, ULONG
*old_value
)
3236 if (!is_wow64
) return STATUS_NOT_IMPLEMENTED
;
3237 if (((ULONG_PTR
)old_value
>> 16) == 0) return STATUS_ACCESS_VIOLATION
;
3239 *old_value
= !ntdll_get_thread_data()->wow64_redir
;
3240 ntdll_get_thread_data()->wow64_redir
= !disable
;
3241 return STATUS_SUCCESS
;
3245 /******************************************************************
3246 * RtlDoesFileExists_U (NTDLL.@)
3248 BOOLEAN WINAPI
RtlDoesFileExists_U(LPCWSTR file_name
)
3250 UNICODE_STRING nt_name
;
3251 FILE_BASIC_INFORMATION basic_info
;
3252 OBJECT_ATTRIBUTES attr
;
3255 if (!RtlDosPathNameToNtPathName_U( file_name
, &nt_name
, NULL
, NULL
)) return FALSE
;
3257 attr
.Length
= sizeof(attr
);
3258 attr
.RootDirectory
= 0;
3259 attr
.ObjectName
= &nt_name
;
3260 attr
.Attributes
= OBJ_CASE_INSENSITIVE
;
3261 attr
.SecurityDescriptor
= NULL
;
3262 attr
.SecurityQualityOfService
= NULL
;
3264 ret
= NtQueryAttributesFile(&attr
, &basic_info
) == STATUS_SUCCESS
;
3266 RtlFreeUnicodeString( &nt_name
);
3271 /***********************************************************************
3272 * DIR_unmount_device
3274 * Unmount the specified device.
3276 NTSTATUS
DIR_unmount_device( HANDLE handle
)
3279 int unix_fd
, needs_close
;
3281 if (!(status
= server_get_unix_fd( handle
, 0, &unix_fd
, &needs_close
, NULL
, NULL
)))
3284 char *mount_point
= NULL
;
3286 if (fstat( unix_fd
, &st
) == -1 || !is_valid_mounted_device( &st
))
3287 status
= STATUS_INVALID_PARAMETER
;
3290 if ((mount_point
= get_device_mount_point( st
.st_rdev
)))
3293 static const char umount
[] = "diskutil unmount >/dev/null 2>&1 ";
3295 static const char umount
[] = "umount >/dev/null 2>&1 ";
3297 char *cmd
= RtlAllocateHeap( GetProcessHeap(), 0, strlen(mount_point
)+sizeof(umount
));
3300 strcpy( cmd
, umount
);
3301 strcat( cmd
, mount_point
);
3303 RtlFreeHeap( GetProcessHeap(), 0, cmd
);
3305 /* umount will fail to release the loop device since we still have
3306 a handle to it, so we release it here */
3307 if (major(st
.st_rdev
) == LOOP_MAJOR
) ioctl( unix_fd
, 0x4c01 /*LOOP_CLR_FD*/, 0 );
3310 RtlFreeHeap( GetProcessHeap(), 0, mount_point
);
3313 if (needs_close
) close( unix_fd
);
3319 /******************************************************************************
3322 * Retrieve the Unix name of the current directory; helper for wine_unix_to_nt_file_name.
3323 * Returned value must be freed by caller.
3325 NTSTATUS
DIR_get_unix_cwd( char **cwd
)
3327 int old_cwd
, unix_fd
, needs_close
;
3332 RtlAcquirePebLock();
3334 if (NtCurrentTeb()->Tib
.SubSystemTib
) /* FIXME: hack */
3335 curdir
= &((WIN16_SUBSYSTEM_TIB
*)NtCurrentTeb()->Tib
.SubSystemTib
)->curdir
;
3337 curdir
= &NtCurrentTeb()->Peb
->ProcessParameters
->CurrentDirectory
;
3339 if (!(handle
= curdir
->Handle
))
3341 UNICODE_STRING dirW
;
3342 OBJECT_ATTRIBUTES attr
;
3345 if (!RtlDosPathNameToNtPathName_U( curdir
->DosPath
.Buffer
, &dirW
, NULL
, NULL
))
3347 status
= STATUS_OBJECT_NAME_INVALID
;
3350 attr
.Length
= sizeof(attr
);
3351 attr
.RootDirectory
= 0;
3352 attr
.Attributes
= OBJ_CASE_INSENSITIVE
;
3353 attr
.ObjectName
= &dirW
;
3354 attr
.SecurityDescriptor
= NULL
;
3355 attr
.SecurityQualityOfService
= NULL
;
3357 status
= NtOpenFile( &handle
, 0, &attr
, &io
, 0,
3358 FILE_DIRECTORY_FILE
| FILE_SYNCHRONOUS_IO_NONALERT
);
3359 RtlFreeUnicodeString( &dirW
);
3360 if (status
!= STATUS_SUCCESS
) goto done
;
3363 if ((status
= server_get_unix_fd( handle
, 0, &unix_fd
, &needs_close
, NULL
, NULL
)) == STATUS_SUCCESS
)
3365 RtlEnterCriticalSection( &dir_section
);
3367 if ((old_cwd
= open(".", O_RDONLY
)) != -1 && fchdir( unix_fd
) != -1)
3369 unsigned int size
= 512;
3373 if (!(*cwd
= RtlAllocateHeap( GetProcessHeap(), 0, size
)))
3375 status
= STATUS_NO_MEMORY
;
3378 if (getcwd( *cwd
, size
)) break;
3379 RtlFreeHeap( GetProcessHeap(), 0, *cwd
);
3380 if (errno
!= ERANGE
)
3382 status
= STATUS_OBJECT_PATH_INVALID
;
3387 if (fchdir( old_cwd
) == -1) chdir( "/" );
3389 else status
= FILE_GetNtStatus();
3391 RtlLeaveCriticalSection( &dir_section
);
3392 if (old_cwd
!= -1) close( old_cwd
);
3393 if (needs_close
) close( unix_fd
);
3395 if (!curdir
->Handle
) NtClose( handle
);
3398 RtlReleasePebLock();