[runtime] Fix multiple issues around symlink handling.
[mono.git] / mono / metadata / w32file-unix.c
1 /**
2  * \file
3  */
4
5 #include <config.h>
6 #include <glib.h>
7
8 #include <stdlib.h>
9 #include <fcntl.h>
10 #include <unistd.h>
11 #include <errno.h>
12 #include <string.h>
13 #include <sys/stat.h>
14 #ifdef HAVE_SYS_STATVFS_H
15 #include <sys/statvfs.h>
16 #endif
17 #if defined(HAVE_SYS_STATFS_H)
18 #include <sys/statfs.h>
19 #endif
20 #if defined(HAVE_SYS_PARAM_H) && defined(HAVE_SYS_MOUNT_H)
21 #include <sys/param.h>
22 #include <sys/mount.h>
23 #endif
24 #include <sys/types.h>
25 #include <stdio.h>
26 #include <utime.h>
27 #ifdef __linux__
28 #include <sys/ioctl.h>
29 #include <linux/fs.h>
30 #include <mono/utils/linux_magic.h>
31 #endif
32 #include <sys/time.h>
33 #ifdef HAVE_DIRENT_H
34 # include <dirent.h>
35 #endif
36
37 #include "w32file.h"
38 #include "w32file-internals.h"
39
40 #include "w32file-unix-glob.h"
41 #include "w32handle.h"
42 #include "w32error.h"
43 #include "utils/mono-io-portability.h"
44 #include "utils/mono-logger-internals.h"
45 #include "utils/mono-os-mutex.h"
46 #include "utils/mono-threads.h"
47 #include "utils/mono-threads-api.h"
48 #include "utils/strenc.h"
49
50 typedef struct {
51         guint64 device;
52         guint64 inode;
53         guint32 sharemode;
54         guint32 access;
55         guint32 handle_refs;
56         guint32 timestamp;
57 } FileShare;
58
59 /* Currently used for both FILE, CONSOLE and PIPE handle types.
60  * This may have to change in future. */
61 typedef struct {
62         gchar *filename;
63         FileShare *share_info;  /* Pointer into shared mem */
64         gint fd;
65         guint32 security_attributes;
66         guint32 fileaccess;
67         guint32 sharemode;
68         guint32 attrs;
69 } MonoW32HandleFile;
70
71 typedef struct {
72         gchar **namelist;
73         gchar *dir_part;
74         gint num;
75         gsize count;
76 } MonoW32HandleFind;
77
78 /*
79  * If SHM is disabled, this will point to a hash of FileShare structures, otherwise
80  * it will be NULL. We use this instead of _wapi_fileshare_layout to avoid allocating a
81  * 4MB array.
82  */
83 static GHashTable *file_share_table;
84 static MonoCoopMutex file_share_mutex;
85
86 static void
87 time_t_to_filetime (time_t timeval, FILETIME *filetime)
88 {
89         guint64 ticks;
90         
91         ticks = ((guint64)timeval * 10000000) + 116444736000000000ULL;
92         filetime->dwLowDateTime = ticks & 0xFFFFFFFF;
93         filetime->dwHighDateTime = ticks >> 32;
94 }
95
96 static void
97 file_share_release (FileShare *share_info)
98 {
99         /* Prevent new entries racing with us */
100         mono_coop_mutex_lock (&file_share_mutex);
101
102         g_assert (share_info->handle_refs > 0);
103         share_info->handle_refs -= 1;
104
105         if (share_info->handle_refs == 0)
106                 g_hash_table_remove (file_share_table, share_info);
107
108         mono_coop_mutex_unlock (&file_share_mutex);
109 }
110
111 static gint
112 file_share_equal (gconstpointer ka, gconstpointer kb)
113 {
114         const FileShare *s1 = (const FileShare *)ka;
115         const FileShare *s2 = (const FileShare *)kb;
116
117         return (s1->device == s2->device && s1->inode == s2->inode) ? 1 : 0;
118 }
119
120 static guint
121 file_share_hash (gconstpointer data)
122 {
123         const FileShare *s = (const FileShare *)data;
124
125         return s->inode;
126 }
127
128 static gboolean
129 file_share_get (guint64 device, guint64 inode, guint32 new_sharemode, guint32 new_access,
130         guint32 *old_sharemode, guint32 *old_access, FileShare **share_info)
131 {
132         FileShare *file_share;
133         gboolean exists = FALSE;
134
135         /* Prevent new entries racing with us */
136         mono_coop_mutex_lock (&file_share_mutex);
137
138         FileShare tmp;
139
140         /*
141          * Instead of allocating a 4MB array, we use a hash table to keep track of this
142          * info. This is needed even if SHM is disabled, to track sharing inside
143          * the current process.
144          */
145         if (!file_share_table)
146                 file_share_table = g_hash_table_new_full (file_share_hash, file_share_equal, NULL, g_free);
147
148         tmp.device = device;
149         tmp.inode = inode;
150
151         file_share = (FileShare *)g_hash_table_lookup (file_share_table, &tmp);
152         if (file_share) {
153                 *old_sharemode = file_share->sharemode;
154                 *old_access = file_share->access;
155                 *share_info = file_share;
156
157                 g_assert (file_share->handle_refs > 0);
158                 file_share->handle_refs += 1;
159
160                 exists = TRUE;
161         } else {
162                 file_share = g_new0 (FileShare, 1);
163
164                 file_share->device = device;
165                 file_share->inode = inode;
166                 file_share->sharemode = new_sharemode;
167                 file_share->access = new_access;
168                 file_share->handle_refs = 1;
169                 *share_info = file_share;
170
171                 g_hash_table_insert (file_share_table, file_share, file_share);
172         }
173
174         mono_coop_mutex_unlock (&file_share_mutex);
175
176         return(exists);
177 }
178
179 static gint
180 _wapi_open (const gchar *pathname, gint flags, mode_t mode)
181 {
182         gint fd;
183         gchar *located_filename;
184
185         if (flags & O_CREAT) {
186                 located_filename = mono_portability_find_file (pathname, FALSE);
187                 if (located_filename == NULL) {
188                         MONO_ENTER_GC_SAFE;
189                         fd = open (pathname, flags, mode);
190                         MONO_EXIT_GC_SAFE;
191                 } else {
192                         MONO_ENTER_GC_SAFE;
193                         fd = open (located_filename, flags, mode);
194                         MONO_EXIT_GC_SAFE;
195                         g_free (located_filename);
196                 }
197         } else {
198                 MONO_ENTER_GC_SAFE;
199                 fd = open (pathname, flags, mode);
200                 MONO_EXIT_GC_SAFE;
201                 if (fd == -1 && (errno == ENOENT || errno == ENOTDIR) && IS_PORTABILITY_SET) {
202                         gint saved_errno = errno;
203                         located_filename = mono_portability_find_file (pathname, TRUE);
204
205                         if (located_filename == NULL) {
206                                 errno = saved_errno;
207                                 return -1;
208                         }
209
210                         MONO_ENTER_GC_SAFE;
211                         fd = open (located_filename, flags, mode);
212                         MONO_EXIT_GC_SAFE;
213                         g_free (located_filename);
214                 }
215         }
216
217         return(fd);
218 }
219
220 static gint
221 _wapi_access (const gchar *pathname, gint mode)
222 {
223         gint ret;
224
225         MONO_ENTER_GC_SAFE;
226         ret = access (pathname, mode);
227         MONO_EXIT_GC_SAFE;
228         if (ret == -1 && (errno == ENOENT || errno == ENOTDIR) && IS_PORTABILITY_SET) {
229                 gint saved_errno = errno;
230                 gchar *located_filename = mono_portability_find_file (pathname, TRUE);
231
232                 if (located_filename == NULL) {
233                         errno = saved_errno;
234                         return -1;
235                 }
236
237                 MONO_ENTER_GC_SAFE;
238                 ret = access (located_filename, mode);
239                 MONO_EXIT_GC_SAFE;
240                 g_free (located_filename);
241         }
242
243         return ret;
244 }
245
246 static gint
247 _wapi_chmod (const gchar *pathname, mode_t mode)
248 {
249         gint ret;
250
251         MONO_ENTER_GC_SAFE;
252         ret = chmod (pathname, mode);
253         MONO_EXIT_GC_SAFE;
254         if (ret == -1 && (errno == ENOENT || errno == ENOTDIR) && IS_PORTABILITY_SET) {
255                 gint saved_errno = errno;
256                 gchar *located_filename = mono_portability_find_file (pathname, TRUE);
257
258                 if (located_filename == NULL) {
259                         errno = saved_errno;
260                         return -1;
261                 }
262
263                 MONO_ENTER_GC_SAFE;
264                 ret = chmod (located_filename, mode);
265                 MONO_EXIT_GC_SAFE;
266                 g_free (located_filename);
267         }
268
269         return ret;
270 }
271
272 static gint
273 _wapi_utime (const gchar *filename, const struct utimbuf *buf)
274 {
275         gint ret;
276
277         MONO_ENTER_GC_SAFE;
278         ret = utime (filename, buf);
279         MONO_EXIT_GC_SAFE;
280         if (ret == -1 && errno == ENOENT && IS_PORTABILITY_SET) {
281                 gint saved_errno = errno;
282                 gchar *located_filename = mono_portability_find_file (filename, TRUE);
283
284                 if (located_filename == NULL) {
285                         errno = saved_errno;
286                         return -1;
287                 }
288
289                 MONO_ENTER_GC_SAFE;
290                 ret = utime (located_filename, buf);
291                 MONO_EXIT_GC_SAFE;
292                 g_free (located_filename);
293         }
294
295         return ret;
296 }
297
298 static gint
299 _wapi_unlink (const gchar *pathname)
300 {
301         gint ret;
302
303         MONO_ENTER_GC_SAFE;
304         ret = unlink (pathname);
305         MONO_EXIT_GC_SAFE;
306         if (ret == -1 && (errno == ENOENT || errno == ENOTDIR || errno == EISDIR) && IS_PORTABILITY_SET) {
307                 gint saved_errno = errno;
308                 gchar *located_filename = mono_portability_find_file (pathname, TRUE);
309
310                 if (located_filename == NULL) {
311                         errno = saved_errno;
312                         return -1;
313                 }
314
315                 MONO_ENTER_GC_SAFE;
316                 ret = unlink (located_filename);
317                 MONO_EXIT_GC_SAFE;
318                 g_free (located_filename);
319         }
320
321         return ret;
322 }
323
324 static gint
325 _wapi_rename (const gchar *oldpath, const gchar *newpath)
326 {
327         gint ret;
328         gchar *located_newpath = mono_portability_find_file (newpath, FALSE);
329
330         if (located_newpath == NULL) {
331                 MONO_ENTER_GC_SAFE;
332                 ret = rename (oldpath, newpath);
333                 MONO_EXIT_GC_SAFE;
334         } else {
335                 MONO_ENTER_GC_SAFE;
336                 ret = rename (oldpath, located_newpath);
337                 MONO_EXIT_GC_SAFE;
338
339                 if (ret == -1 && (errno == EISDIR || errno == ENAMETOOLONG || errno == ENOENT || errno == ENOTDIR || errno == EXDEV) && IS_PORTABILITY_SET) {
340                         gint saved_errno = errno;
341                         gchar *located_oldpath = mono_portability_find_file (oldpath, TRUE);
342
343                         if (located_oldpath == NULL) {
344                                 g_free (located_oldpath);
345                                 g_free (located_newpath);
346
347                                 errno = saved_errno;
348                                 return -1;
349                         }
350
351                         MONO_ENTER_GC_SAFE;
352                         ret = rename (located_oldpath, located_newpath);
353                         MONO_EXIT_GC_SAFE;
354                         g_free (located_oldpath);
355                 }
356                 g_free (located_newpath);
357         }
358
359         return ret;
360 }
361
362 static gint
363 _wapi_stat (const gchar *path, struct stat *buf)
364 {
365         gint ret;
366
367         MONO_ENTER_GC_SAFE;
368         ret = stat (path, buf);
369         MONO_EXIT_GC_SAFE;
370         if (ret == -1 && (errno == ENOENT || errno == ENOTDIR) && IS_PORTABILITY_SET) {
371                 gint saved_errno = errno;
372                 gchar *located_filename = mono_portability_find_file (path, TRUE);
373
374                 if (located_filename == NULL) {
375                         errno = saved_errno;
376                         return -1;
377                 }
378
379                 MONO_ENTER_GC_SAFE;
380                 ret = stat (located_filename, buf);
381                 MONO_EXIT_GC_SAFE;
382                 g_free (located_filename);
383         }
384
385         return ret;
386 }
387
388 static gint
389 _wapi_lstat (const gchar *path, struct stat *buf)
390 {
391         gint ret;
392
393         MONO_ENTER_GC_SAFE;
394         ret = lstat (path, buf);
395         MONO_EXIT_GC_SAFE;
396         if (ret == -1 && (errno == ENOENT || errno == ENOTDIR) && IS_PORTABILITY_SET) {
397                 gint saved_errno = errno;
398                 gchar *located_filename = mono_portability_find_file (path, TRUE);
399
400                 if (located_filename == NULL) {
401                         errno = saved_errno;
402                         return -1;
403                 }
404
405                 ret = lstat (located_filename, buf);
406                 g_free (located_filename);
407         }
408
409         return ret;
410 }
411
412 static gint
413 _wapi_mkdir (const gchar *pathname, mode_t mode)
414 {
415         gint ret;
416         gchar *located_filename = mono_portability_find_file (pathname, FALSE);
417
418         if (located_filename == NULL) {
419                 MONO_ENTER_GC_SAFE;
420                 ret = mkdir (pathname, mode);
421                 MONO_EXIT_GC_SAFE;
422         } else {
423                 MONO_ENTER_GC_SAFE;
424                 ret = mkdir (located_filename, mode);
425                 MONO_EXIT_GC_SAFE;
426                 g_free (located_filename);
427         }
428
429         return ret;
430 }
431
432 static gint
433 _wapi_rmdir (const gchar *pathname)
434 {
435         gint ret;
436
437         MONO_ENTER_GC_SAFE;
438         ret = rmdir (pathname);
439         MONO_EXIT_GC_SAFE;
440         if (ret == -1 && (errno == ENOENT || errno == ENOTDIR || errno == ENAMETOOLONG) && IS_PORTABILITY_SET) {
441                 gint saved_errno = errno;
442                 gchar *located_filename = mono_portability_find_file (pathname, TRUE);
443
444                 if (located_filename == NULL) {
445                         errno = saved_errno;
446                         return -1;
447                 }
448
449                 MONO_ENTER_GC_SAFE;
450                 ret = rmdir (located_filename);
451                 MONO_EXIT_GC_SAFE;
452                 g_free (located_filename);
453         }
454
455         return ret;
456 }
457
458 static gint
459 _wapi_chdir (const gchar *path)
460 {
461         gint ret;
462
463         MONO_ENTER_GC_SAFE;
464         ret = chdir (path);
465         MONO_EXIT_GC_SAFE;
466         if (ret == -1 && (errno == ENOENT || errno == ENOTDIR || errno == ENAMETOOLONG) && IS_PORTABILITY_SET) {
467                 gint saved_errno = errno;
468                 gchar *located_filename = mono_portability_find_file (path, TRUE);
469
470                 if (located_filename == NULL) {
471                         errno = saved_errno;
472                         return -1;
473                 }
474
475                 MONO_ENTER_GC_SAFE;
476                 ret = chdir (located_filename);
477                 MONO_EXIT_GC_SAFE;
478                 g_free (located_filename);
479         }
480
481         return ret;
482 }
483
484 static gchar*
485 _wapi_basename (const gchar *filename)
486 {
487         gchar *new_filename = g_strdup (filename), *ret;
488
489         if (IS_PORTABILITY_SET) {
490                 g_strdelimit (new_filename, "\\", '/');
491         }
492
493         if (IS_PORTABILITY_DRIVE && g_ascii_isalpha (new_filename[0]) && (new_filename[1] == ':')) {
494                 gint len = strlen (new_filename);
495
496                 g_memmove (new_filename, new_filename + 2, len - 2);
497                 new_filename[len - 2] = '\0';
498         }
499
500         ret = g_path_get_basename (new_filename);
501         g_free (new_filename);
502
503         return ret;
504 }
505
506 static gchar*
507 _wapi_dirname (const gchar *filename)
508 {
509         gchar *new_filename = g_strdup (filename), *ret;
510
511         if (IS_PORTABILITY_SET) {
512                 g_strdelimit (new_filename, "\\", '/');
513         }
514
515         if (IS_PORTABILITY_DRIVE && g_ascii_isalpha (new_filename[0]) && (new_filename[1] == ':')) {
516                 gint len = strlen (new_filename);
517
518                 g_memmove (new_filename, new_filename + 2, len - 2);
519                 new_filename[len - 2] = '\0';
520         }
521
522         ret = g_path_get_dirname (new_filename);
523         g_free (new_filename);
524
525         return ret;
526 }
527
528 static GDir*
529 _wapi_g_dir_open (const gchar *path, guint flags, GError **error)
530 {
531         GDir *ret;
532
533         MONO_ENTER_GC_SAFE;
534         ret = g_dir_open (path, flags, error);
535         MONO_EXIT_GC_SAFE;
536         if (ret == NULL && ((*error)->code == G_FILE_ERROR_NOENT || (*error)->code == G_FILE_ERROR_NOTDIR || (*error)->code == G_FILE_ERROR_NAMETOOLONG) && IS_PORTABILITY_SET) {
537                 gchar *located_filename = mono_portability_find_file (path, TRUE);
538                 GError *tmp_error = NULL;
539
540                 if (located_filename == NULL) {
541                         return(NULL);
542                 }
543
544                 MONO_ENTER_GC_SAFE;
545                 ret = g_dir_open (located_filename, flags, &tmp_error);
546                 MONO_EXIT_GC_SAFE;
547                 g_free (located_filename);
548                 if (tmp_error == NULL) {
549                         g_clear_error (error);
550                 }
551         }
552
553         return ret;
554 }
555
556 static gint
557 get_errno_from_g_file_error (gint error)
558 {
559         switch (error) {
560 #ifdef EACCES
561         case G_FILE_ERROR_ACCES: return EACCES;
562 #endif
563 #ifdef ENAMETOOLONG
564         case G_FILE_ERROR_NAMETOOLONG: return ENAMETOOLONG;
565 #endif
566 #ifdef ENOENT
567         case G_FILE_ERROR_NOENT: return ENOENT;
568 #endif
569 #ifdef ENOTDIR
570         case G_FILE_ERROR_NOTDIR: return ENOTDIR;
571 #endif
572 #ifdef ENXIO
573         case G_FILE_ERROR_NXIO: return ENXIO;
574 #endif
575 #ifdef ENODEV
576         case G_FILE_ERROR_NODEV: return ENODEV;
577 #endif
578 #ifdef EROFS
579         case G_FILE_ERROR_ROFS: return EROFS;
580 #endif
581 #ifdef ETXTBSY
582         case G_FILE_ERROR_TXTBSY: return ETXTBSY;
583 #endif
584 #ifdef EFAULT
585         case G_FILE_ERROR_FAULT: return EFAULT;
586 #endif
587 #ifdef ELOOP
588         case G_FILE_ERROR_LOOP: return ELOOP;
589 #endif
590 #ifdef ENOSPC
591         case G_FILE_ERROR_NOSPC: return ENOSPC;
592 #endif
593 #ifdef ENOMEM
594         case G_FILE_ERROR_NOMEM: return ENOMEM;
595 #endif
596 #ifdef EMFILE
597         case G_FILE_ERROR_MFILE: return EMFILE;
598 #endif
599 #ifdef ENFILE
600         case G_FILE_ERROR_NFILE: return ENFILE;
601 #endif
602 #ifdef EBADF
603         case G_FILE_ERROR_BADF: return EBADF;
604 #endif
605 #ifdef EINVAL
606         case G_FILE_ERROR_INVAL: return EINVAL;
607 #endif
608 #ifdef EPIPE
609         case G_FILE_ERROR_PIPE: return EPIPE;
610 #endif
611 #ifdef EAGAIN
612         case G_FILE_ERROR_AGAIN: return EAGAIN;
613 #endif
614 #ifdef EINTR
615         case G_FILE_ERROR_INTR: return EINTR;
616 #endif
617 #ifdef EIO
618         case G_FILE_ERROR_IO: return EIO;
619 #endif
620 #ifdef EPERM
621         case G_FILE_ERROR_PERM: return EPERM;
622 #endif
623         case G_FILE_ERROR_FAILED: return ERROR_INVALID_PARAMETER;
624         default:
625                 g_assert_not_reached ();
626         }
627 }
628
629 static gint
630 file_compare (gconstpointer a, gconstpointer b)
631 {
632         gchar *astr = *(gchar **) a;
633         gchar *bstr = *(gchar **) b;
634
635         return strcmp (astr, bstr);
636 }
637
638 /* scandir using glib */
639 static gint
640 _wapi_io_scandir (const gchar *dirname, const gchar *pattern, gchar ***namelist)
641 {
642         GError *error = NULL;
643         GDir *dir;
644         GPtrArray *names;
645         gint result;
646         mono_w32file_unix_glob_t glob_buf;
647         gint flags = 0, i;
648
649         dir = _wapi_g_dir_open (dirname, 0, &error);
650         if (dir == NULL) {
651                 /* g_dir_open returns ENOENT on directories on which we don't
652                  * have read/x permission */
653                 gint errnum = get_errno_from_g_file_error (error->code);
654                 g_error_free (error);
655                 if (errnum == ENOENT &&
656                     !_wapi_access (dirname, F_OK) &&
657                     _wapi_access (dirname, R_OK|X_OK)) {
658                         errnum = EACCES;
659                 }
660
661                 errno = errnum;
662                 return -1;
663         }
664
665         if (IS_PORTABILITY_CASE) {
666                 flags = W32FILE_UNIX_GLOB_IGNORECASE;
667         }
668
669         result = mono_w32file_unix_glob (dir, pattern, flags, &glob_buf);
670         if (g_str_has_suffix (pattern, ".*")) {
671                 /* Special-case the patterns ending in '.*', as
672                  * windows also matches entries with no extension with
673                  * this pattern.
674                  *
675                  * TODO: should this be a MONO_IOMAP option?
676                  */
677                 gchar *pattern2 = g_strndup (pattern, strlen (pattern) - 2);
678                 gint result2;
679
680                 MONO_ENTER_GC_SAFE;
681                 g_dir_rewind (dir);
682                 MONO_EXIT_GC_SAFE;
683                 result2 = mono_w32file_unix_glob (dir, pattern2, flags | W32FILE_UNIX_GLOB_APPEND | W32FILE_UNIX_GLOB_UNIQUE, &glob_buf);
684
685                 g_free (pattern2);
686
687                 if (result != 0) {
688                         result = result2;
689                 }
690         }
691
692         MONO_ENTER_GC_SAFE;
693         g_dir_close (dir);
694         MONO_EXIT_GC_SAFE;
695         if (glob_buf.gl_pathc == 0) {
696                 return(0);
697         } else if (result != 0) {
698                 return -1;
699         }
700
701         names = g_ptr_array_new ();
702         for (i = 0; i < glob_buf.gl_pathc; i++) {
703                 g_ptr_array_add (names, g_strdup (glob_buf.gl_pathv[i]));
704         }
705
706         mono_w32file_unix_globfree (&glob_buf);
707
708         result = names->len;
709         if (result > 0) {
710                 g_ptr_array_sort (names, file_compare);
711                 g_ptr_array_set_size (names, result + 1);
712
713                 *namelist = (gchar **) g_ptr_array_free (names, FALSE);
714         } else {
715                 g_ptr_array_free (names, TRUE);
716         }
717
718         return result;
719 }
720
721 static gboolean
722 _wapi_lock_file_region (gint fd, off_t offset, off_t length)
723 {
724 #if defined(__native_client__)
725         printf("WARNING: %s: fcntl() not available on Native Client!\n", __func__);
726         // behave as below -- locks are not available
727         return TRUE;
728 #else
729         struct flock lock_data;
730         gint ret;
731
732         if (offset < 0 || length < 0) {
733                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
734                 return FALSE;
735         }
736
737         lock_data.l_type = F_WRLCK;
738         lock_data.l_whence = SEEK_SET;
739         lock_data.l_start = offset;
740         lock_data.l_len = length;
741
742         do {
743                 ret = fcntl (fd, F_SETLK, &lock_data);
744         } while(ret == -1 && errno == EINTR);
745
746         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: fcntl returns %d", __func__, ret);
747
748         if (ret == -1) {
749                 /*
750                  * if locks are not available (NFS for example),
751                  * ignore the error
752                  */
753                 if (errno == ENOLCK
754 #ifdef EOPNOTSUPP
755                     || errno == EOPNOTSUPP
756 #endif
757 #ifdef ENOTSUP
758                     || errno == ENOTSUP
759 #endif
760                    ) {
761                         return TRUE;
762                 }
763
764                 mono_w32error_set_last (ERROR_LOCK_VIOLATION);
765                 return FALSE;
766         }
767
768         return TRUE;
769 #endif /* __native_client__ */
770 }
771
772 static gboolean
773 _wapi_unlock_file_region (gint fd, off_t offset, off_t length)
774 {
775 #if defined(__native_client__)
776         printf("WARNING: %s: fcntl() not available on Native Client!\n", __func__);
777         return TRUE;
778 #else
779         struct flock lock_data;
780         gint ret;
781
782         lock_data.l_type = F_UNLCK;
783         lock_data.l_whence = SEEK_SET;
784         lock_data.l_start = offset;
785         lock_data.l_len = length;
786
787         do {
788                 ret = fcntl (fd, F_SETLK, &lock_data);
789         } while(ret == -1 && errno == EINTR);
790
791         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: fcntl returns %d", __func__, ret);
792
793         if (ret == -1) {
794                 /*
795                  * if locks are not available (NFS for example),
796                  * ignore the error
797                  */
798                 if (errno == ENOLCK
799 #ifdef EOPNOTSUPP
800                     || errno == EOPNOTSUPP
801 #endif
802 #ifdef ENOTSUP
803                     || errno == ENOTSUP
804 #endif
805                    ) {
806                         return TRUE;
807                 }
808
809                 mono_w32error_set_last (ERROR_LOCK_VIOLATION);
810                 return FALSE;
811         }
812
813         return TRUE;
814 #endif /* __native_client__ */
815 }
816
817 static void file_close (gpointer handle, gpointer data);
818 static void file_details (gpointer data);
819 static const gchar* file_typename (void);
820 static gsize file_typesize (void);
821 static gint file_getfiletype(void);
822 static gboolean file_read(gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread);
823 static gboolean file_write(gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten);
824 static gboolean file_flush(gpointer handle);
825 static guint32 file_seek(gpointer handle, gint32 movedistance,
826                          gint32 *highmovedistance, gint method);
827 static gboolean file_setendoffile(gpointer handle);
828 static guint32 file_getfilesize(gpointer handle, guint32 *highsize);
829 static gboolean file_getfiletime(gpointer handle, FILETIME *create_time,
830                                  FILETIME *access_time,
831                                  FILETIME *write_time);
832 static gboolean file_setfiletime(gpointer handle,
833                                  const FILETIME *create_time,
834                                  const FILETIME *access_time,
835                                  const FILETIME *write_time);
836 static guint32 GetDriveTypeFromPath (const gchar *utf8_root_path_name);
837
838 /* File handle is only signalled for overlapped IO */
839 static MonoW32HandleOps _wapi_file_ops = {
840         file_close,             /* close */
841         NULL,                   /* signal */
842         NULL,                   /* own */
843         NULL,                   /* is_owned */
844         NULL,                   /* special_wait */
845         NULL,                   /* prewait */
846         file_details,   /* details */
847         file_typename,  /* typename */
848         file_typesize,  /* typesize */
849 };
850
851 static void console_close (gpointer handle, gpointer data);
852 static void console_details (gpointer data);
853 static const gchar* console_typename (void);
854 static gsize console_typesize (void);
855 static gint console_getfiletype(void);
856 static gboolean console_read(gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread);
857 static gboolean console_write(gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten);
858
859 /* Console is mostly the same as file, except it can block waiting for
860  * input or output
861  */
862 static MonoW32HandleOps _wapi_console_ops = {
863         console_close,          /* close */
864         NULL,                   /* signal */
865         NULL,                   /* own */
866         NULL,                   /* is_owned */
867         NULL,                   /* special_wait */
868         NULL,                   /* prewait */
869         console_details,        /* details */
870         console_typename,       /* typename */
871         console_typesize,       /* typesize */
872 };
873
874 static const gchar* find_typename (void);
875 static gsize find_typesize (void);
876
877 static MonoW32HandleOps _wapi_find_ops = {
878         NULL,                   /* close */
879         NULL,                   /* signal */
880         NULL,                   /* own */
881         NULL,                   /* is_owned */
882         NULL,                   /* special_wait */
883         NULL,                   /* prewait */
884         NULL,                   /* details */
885         find_typename,  /* typename */
886         find_typesize,  /* typesize */
887 };
888
889 static void pipe_close (gpointer handle, gpointer data);
890 static void pipe_details (gpointer data);
891 static const gchar* pipe_typename (void);
892 static gsize pipe_typesize (void);
893 static gint pipe_getfiletype (void);
894 static gboolean pipe_read (gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread);
895 static gboolean pipe_write (gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten);
896
897 /* Pipe handles
898  */
899 static MonoW32HandleOps _wapi_pipe_ops = {
900         pipe_close,             /* close */
901         NULL,                   /* signal */
902         NULL,                   /* own */
903         NULL,                   /* is_owned */
904         NULL,                   /* special_wait */
905         NULL,                   /* prewait */
906         pipe_details,   /* details */
907         pipe_typename,  /* typename */
908         pipe_typesize,  /* typesize */
909 };
910
911 static const struct {
912         /* File, console and pipe handles */
913         gint (*getfiletype)(void);
914         
915         /* File, console and pipe handles */
916         gboolean (*readfile)(gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread);
917         gboolean (*writefile)(gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten);
918         gboolean (*flushfile)(gpointer handle);
919         
920         /* File handles */
921         guint32 (*seek)(gpointer handle, gint32 movedistance,
922                         gint32 *highmovedistance, gint method);
923         gboolean (*setendoffile)(gpointer handle);
924         guint32 (*getfilesize)(gpointer handle, guint32 *highsize);
925         gboolean (*getfiletime)(gpointer handle, FILETIME *create_time,
926                                 FILETIME *access_time,
927                                 FILETIME *write_time);
928         gboolean (*setfiletime)(gpointer handle,
929                                 const FILETIME *create_time,
930                                 const FILETIME *access_time,
931                                 const FILETIME *write_time);
932 } io_ops[MONO_W32HANDLE_COUNT]={
933         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
934         /* file */
935         {file_getfiletype,
936          file_read, file_write,
937          file_flush, file_seek,
938          file_setendoffile,
939          file_getfilesize,
940          file_getfiletime,
941          file_setfiletime},
942         /* console */
943         {console_getfiletype,
944          console_read,
945          console_write,
946          NULL, NULL, NULL, NULL, NULL, NULL},
947         /* thread */
948         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
949         /* sem */
950         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
951         /* mutex */
952         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
953         /* event */
954         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
955         /* socket (will need at least read and write) */
956         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
957         /* find */
958         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
959         /* process */
960         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
961         /* pipe */
962         {pipe_getfiletype,
963          pipe_read,
964          pipe_write,
965          NULL, NULL, NULL, NULL, NULL, NULL},
966 };
967
968 static gboolean lock_while_writing = FALSE;
969
970 /* Some utility functions.
971  */
972
973 /*
974  * Check if a file is writable by the current user.
975  *
976  * This is is a best effort kind of thing. It assumes a reasonable sane set
977  * of permissions by the underlying OS.
978  *
979  * We generally assume that basic unix permission bits are authoritative. Which might not
980  * be the case under systems with extended permissions systems (posix ACLs, SELinux, OSX/iOS sandboxing, etc)
981  *
982  * The choice of access as the fallback is due to the expected lower overhead compared to trying to open the file.
983  *
984  * The only expected problem with using access are for root, setuid or setgid programs as access is not consistent
985  * under those situations. It's to be expected that this should not happen in practice as those bits are very dangerous
986  * and should not be used with a dynamic runtime.
987  */
988 static gboolean
989 is_file_writable (struct stat *st, const gchar *path)
990 {
991 #if __APPLE__
992         // OS X Finder "locked" or `ls -lO` "uchg".
993         // This only covers one of several cases where an OS X file could be unwritable through special flags.
994         if (st->st_flags & (UF_IMMUTABLE|SF_IMMUTABLE))
995                 return 0;
996 #endif
997
998         /* Is it globally writable? */
999         if (st->st_mode & S_IWOTH)
1000                 return 1;
1001
1002         /* Am I the owner? */
1003         if ((st->st_uid == geteuid ()) && (st->st_mode & S_IWUSR))
1004                 return 1;
1005
1006         /* Am I in the same group? */
1007         if ((st->st_gid == getegid ()) && (st->st_mode & S_IWGRP))
1008                 return 1;
1009
1010         /* Fallback to using access(2). It's not ideal as it might not take into consideration euid/egid
1011          * but it's the only sane option we have on unix.
1012          */
1013         return access (path, W_OK) == 0;
1014 }
1015
1016
1017 static guint32 _wapi_stat_to_file_attributes (const gchar *pathname,
1018                                               struct stat *buf,
1019                                               struct stat *lbuf)
1020 {
1021         guint32 attrs = 0;
1022         gchar *filename;
1023         
1024         /* FIXME: this could definitely be better, but there seems to
1025          * be no pattern to the attributes that are set
1026          */
1027
1028         /* Sockets (0140000) != Directory (040000) + Regular file (0100000) */
1029         if (S_ISSOCK (buf->st_mode))
1030                 buf->st_mode &= ~S_IFSOCK; /* don't consider socket protection */
1031
1032         filename = _wapi_basename (pathname);
1033
1034         if (S_ISDIR (buf->st_mode)) {
1035                 attrs = FILE_ATTRIBUTE_DIRECTORY;
1036                 if (!is_file_writable (buf, pathname)) {
1037                         attrs |= FILE_ATTRIBUTE_READONLY;
1038                 }
1039                 if (filename[0] == '.') {
1040                         attrs |= FILE_ATTRIBUTE_HIDDEN;
1041                 }
1042         } else {
1043                 if (!is_file_writable (buf, pathname)) {
1044                         attrs = FILE_ATTRIBUTE_READONLY;
1045
1046                         if (filename[0] == '.') {
1047                                 attrs |= FILE_ATTRIBUTE_HIDDEN;
1048                         }
1049                 } else if (filename[0] == '.') {
1050                         attrs = FILE_ATTRIBUTE_HIDDEN;
1051                 } else {
1052                         attrs = FILE_ATTRIBUTE_NORMAL;
1053                 }
1054         }
1055
1056         if (lbuf != NULL) {
1057                 if (S_ISLNK (lbuf->st_mode)) {
1058                         attrs |= FILE_ATTRIBUTE_REPARSE_POINT;
1059                 }
1060         }
1061         
1062         g_free (filename);
1063         
1064         return attrs;
1065 }
1066
1067 static void
1068 _wapi_set_last_error_from_errno (void)
1069 {
1070         mono_w32error_set_last (mono_w32error_unix_to_win32 (errno));
1071 }
1072
1073 static void _wapi_set_last_path_error_from_errno (const gchar *dir,
1074                                                   const gchar *path)
1075 {
1076         if (errno == ENOENT) {
1077                 /* Check the path - if it's a missing directory then
1078                  * we need to set PATH_NOT_FOUND not FILE_NOT_FOUND
1079                  */
1080                 gchar *dirname;
1081
1082
1083                 if (dir == NULL) {
1084                         dirname = _wapi_dirname (path);
1085                 } else {
1086                         dirname = g_strdup (dir);
1087                 }
1088                 
1089                 if (_wapi_access (dirname, F_OK) == 0) {
1090                         mono_w32error_set_last (ERROR_FILE_NOT_FOUND);
1091                 } else {
1092                         mono_w32error_set_last (ERROR_PATH_NOT_FOUND);
1093                 }
1094
1095                 g_free (dirname);
1096         } else {
1097                 _wapi_set_last_error_from_errno ();
1098         }
1099 }
1100
1101 /* Handle ops.
1102  */
1103 static void file_close (gpointer handle, gpointer data)
1104 {
1105         /* FIXME: after mono_w32handle_close is coop-aware, change this to MONO_REQ_GC_UNSAFE_MODE and leave just the switch to SAFE around close() below */
1106         MONO_ENTER_GC_UNSAFE;
1107         MonoW32HandleFile *file_handle = (MonoW32HandleFile *)data;
1108         gint fd = file_handle->fd;
1109         
1110         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: closing file handle %p [%s]", __func__, handle,
1111                   file_handle->filename);
1112
1113         if (file_handle->attrs & FILE_FLAG_DELETE_ON_CLOSE)
1114                 _wapi_unlink (file_handle->filename);
1115         
1116         g_free (file_handle->filename);
1117         
1118         if (file_handle->share_info)
1119                 file_share_release (file_handle->share_info);
1120         
1121         MONO_ENTER_GC_SAFE;
1122         close (fd);
1123         MONO_EXIT_GC_SAFE;
1124         MONO_EXIT_GC_UNSAFE;
1125 }
1126
1127 static void file_details (gpointer data)
1128 {
1129         MonoW32HandleFile *file = (MonoW32HandleFile *)data;
1130         
1131         g_print ("[%20s] acc: %c%c%c, shr: %c%c%c, attrs: %5u",
1132                  file->filename,
1133                  file->fileaccess&GENERIC_READ?'R':'.',
1134                  file->fileaccess&GENERIC_WRITE?'W':'.',
1135                  file->fileaccess&GENERIC_EXECUTE?'X':'.',
1136                  file->sharemode&FILE_SHARE_READ?'R':'.',
1137                  file->sharemode&FILE_SHARE_WRITE?'W':'.',
1138                  file->sharemode&FILE_SHARE_DELETE?'D':'.',
1139                  file->attrs);
1140 }
1141
1142 static const gchar* file_typename (void)
1143 {
1144         return "File";
1145 }
1146
1147 static gsize file_typesize (void)
1148 {
1149         return sizeof (MonoW32HandleFile);
1150 }
1151
1152 static gint file_getfiletype(void)
1153 {
1154         return(FILE_TYPE_DISK);
1155 }
1156
1157 static gboolean
1158 file_read(gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread)
1159 {
1160         MonoW32HandleFile *file_handle;
1161         gboolean ok;
1162         gint fd, ret;
1163         MonoThreadInfo *info = mono_thread_info_current ();
1164         
1165         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE,
1166                                 (gpointer *)&file_handle);
1167         if(ok==FALSE) {
1168                 g_warning ("%s: error looking up file handle %p", __func__,
1169                            handle);
1170                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1171                 return(FALSE);
1172         }
1173
1174         fd = file_handle->fd;
1175         if(bytesread!=NULL) {
1176                 *bytesread=0;
1177         }
1178         
1179         if(!(file_handle->fileaccess & GENERIC_READ) &&
1180            !(file_handle->fileaccess & GENERIC_ALL)) {
1181                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ access: %u",
1182                           __func__, handle, file_handle->fileaccess);
1183
1184                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1185                 return(FALSE);
1186         }
1187
1188         do {
1189                 MONO_ENTER_GC_SAFE;
1190                 ret = read (fd, buffer, numbytes);
1191                 MONO_EXIT_GC_SAFE;
1192         } while (ret == -1 && errno == EINTR &&
1193                  !mono_thread_info_is_interrupt_state (info));
1194                         
1195         if(ret==-1) {
1196                 gint err = errno;
1197
1198                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: read of handle %p error: %s", __func__,
1199                           handle, strerror(err));
1200                 mono_w32error_set_last (mono_w32error_unix_to_win32 (err));
1201                 return(FALSE);
1202         }
1203                 
1204         if (bytesread != NULL) {
1205                 *bytesread = ret;
1206         }
1207                 
1208         return(TRUE);
1209 }
1210
1211 static gboolean
1212 file_write(gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten)
1213 {
1214         MonoW32HandleFile *file_handle;
1215         gboolean ok;
1216         gint ret, fd;
1217         off_t current_pos = 0;
1218         MonoThreadInfo *info = mono_thread_info_current ();
1219         
1220         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE,
1221                                 (gpointer *)&file_handle);
1222         if(ok==FALSE) {
1223                 g_warning ("%s: error looking up file handle %p", __func__,
1224                            handle);
1225                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1226                 return(FALSE);
1227         }
1228
1229         fd = file_handle->fd;
1230         
1231         if(byteswritten!=NULL) {
1232                 *byteswritten=0;
1233         }
1234         
1235         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
1236            !(file_handle->fileaccess & GENERIC_ALL)) {
1237                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
1238
1239                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1240                 return(FALSE);
1241         }
1242         
1243         if (lock_while_writing) {
1244                 /* Need to lock the region we're about to write to,
1245                  * because we only do advisory locking on POSIX
1246                  * systems
1247                  */
1248                 MONO_ENTER_GC_SAFE;
1249                 current_pos = lseek (fd, (off_t)0, SEEK_CUR);
1250                 MONO_EXIT_GC_SAFE;
1251                 if (current_pos == -1) {
1252                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p lseek failed: %s", __func__,
1253                                    handle, strerror (errno));
1254                         _wapi_set_last_error_from_errno ();
1255                         return(FALSE);
1256                 }
1257                 
1258                 if (_wapi_lock_file_region (fd, current_pos,
1259                                             numbytes) == FALSE) {
1260                         /* The error has already been set */
1261                         return(FALSE);
1262                 }
1263         }
1264                 
1265         do {
1266                 MONO_ENTER_GC_SAFE;
1267                 ret = write (fd, buffer, numbytes);
1268                 MONO_EXIT_GC_SAFE;
1269         } while (ret == -1 && errno == EINTR &&
1270                  !mono_thread_info_is_interrupt_state (info));
1271         
1272         if (lock_while_writing) {
1273                 _wapi_unlock_file_region (fd, current_pos, numbytes);
1274         }
1275
1276         if (ret == -1) {
1277                 if (errno == EINTR) {
1278                         ret = 0;
1279                 } else {
1280                         _wapi_set_last_error_from_errno ();
1281                                 
1282                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write of handle %p error: %s",
1283                                   __func__, handle, strerror(errno));
1284
1285                         return(FALSE);
1286                 }
1287         }
1288         if (byteswritten != NULL) {
1289                 *byteswritten = ret;
1290         }
1291         return(TRUE);
1292 }
1293
1294 static gboolean file_flush(gpointer handle)
1295 {
1296         MonoW32HandleFile *file_handle;
1297         gboolean ok;
1298         gint ret, fd;
1299         
1300         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE,
1301                                 (gpointer *)&file_handle);
1302         if(ok==FALSE) {
1303                 g_warning ("%s: error looking up file handle %p", __func__,
1304                            handle);
1305                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1306                 return(FALSE);
1307         }
1308
1309         fd = file_handle->fd;
1310
1311         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
1312            !(file_handle->fileaccess & GENERIC_ALL)) {
1313                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
1314
1315                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1316                 return(FALSE);
1317         }
1318
1319         MONO_ENTER_GC_SAFE;
1320         ret=fsync(fd);
1321         MONO_EXIT_GC_SAFE;
1322         if (ret==-1) {
1323                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: fsync of handle %p error: %s", __func__, handle,
1324                           strerror(errno));
1325
1326                 _wapi_set_last_error_from_errno ();
1327                 return(FALSE);
1328         }
1329         
1330         return(TRUE);
1331 }
1332
1333 static guint32 file_seek(gpointer handle, gint32 movedistance,
1334                          gint32 *highmovedistance, gint method)
1335 {
1336         MonoW32HandleFile *file_handle;
1337         gboolean ok;
1338         gint64 offset, newpos;
1339         gint whence, fd;
1340         guint32 ret;
1341         
1342         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE,
1343                                 (gpointer *)&file_handle);
1344         if(ok==FALSE) {
1345                 g_warning ("%s: error looking up file handle %p", __func__,
1346                            handle);
1347                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1348                 return(INVALID_SET_FILE_POINTER);
1349         }
1350         
1351         fd = file_handle->fd;
1352
1353         if(!(file_handle->fileaccess & GENERIC_READ) &&
1354            !(file_handle->fileaccess & GENERIC_WRITE) &&
1355            !(file_handle->fileaccess & GENERIC_ALL)) {
1356                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ or GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
1357
1358                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1359                 return(INVALID_SET_FILE_POINTER);
1360         }
1361
1362         switch(method) {
1363         case FILE_BEGIN:
1364                 whence=SEEK_SET;
1365                 break;
1366         case FILE_CURRENT:
1367                 whence=SEEK_CUR;
1368                 break;
1369         case FILE_END:
1370                 whence=SEEK_END;
1371                 break;
1372         default:
1373                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: invalid seek type %d", __func__, method);
1374
1375                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
1376                 return(INVALID_SET_FILE_POINTER);
1377         }
1378
1379 #ifdef HAVE_LARGE_FILE_SUPPORT
1380         if(highmovedistance==NULL) {
1381                 offset=movedistance;
1382                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: setting offset to %lld (low %d)", __func__,
1383                           offset, movedistance);
1384         } else {
1385                 offset=((gint64) *highmovedistance << 32) | (guint32)movedistance;
1386                 
1387                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: setting offset to %lld 0x%llx (high %d 0x%x, low %d 0x%x)", __func__, offset, offset, *highmovedistance, *highmovedistance, movedistance, movedistance);
1388         }
1389 #else
1390         offset=movedistance;
1391 #endif
1392
1393         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: moving handle %p by %lld bytes from %d", __func__,
1394                    handle, (long long)offset, whence);
1395
1396 #ifdef PLATFORM_ANDROID
1397         /* bionic doesn't support -D_FILE_OFFSET_BITS=64 */
1398         MONO_ENTER_GC_SAFE;
1399         newpos=lseek64(fd, offset, whence);
1400         MONO_EXIT_GC_SAFE;
1401 #else
1402         MONO_ENTER_GC_SAFE;
1403         newpos=lseek(fd, offset, whence);
1404         MONO_EXIT_GC_SAFE;
1405 #endif
1406         if(newpos==-1) {
1407                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: lseek on handle %p returned error %s",
1408                           __func__, handle, strerror(errno));
1409
1410                 _wapi_set_last_error_from_errno ();
1411                 return(INVALID_SET_FILE_POINTER);
1412         }
1413
1414         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: lseek returns %lld", __func__, newpos);
1415
1416 #ifdef HAVE_LARGE_FILE_SUPPORT
1417         ret=newpos & 0xFFFFFFFF;
1418         if(highmovedistance!=NULL) {
1419                 *highmovedistance=newpos>>32;
1420         }
1421 #else
1422         ret=newpos;
1423         if(highmovedistance!=NULL) {
1424                 /* Accurate, but potentially dodgy :-) */
1425                 *highmovedistance=0;
1426         }
1427 #endif
1428
1429         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: move of handle %p returning %d/%d", __func__,
1430                    handle, ret, highmovedistance==NULL?0:*highmovedistance);
1431
1432         return(ret);
1433 }
1434
1435 static gboolean file_setendoffile(gpointer handle)
1436 {
1437         MonoW32HandleFile *file_handle;
1438         gboolean ok;
1439         struct stat statbuf;
1440         off_t pos;
1441         gint ret, fd;
1442         MonoThreadInfo *info = mono_thread_info_current ();
1443         
1444         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE,
1445                                 (gpointer *)&file_handle);
1446         if(ok==FALSE) {
1447                 g_warning ("%s: error looking up file handle %p", __func__,
1448                            handle);
1449                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1450                 return(FALSE);
1451         }
1452         fd = file_handle->fd;
1453         
1454         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
1455            !(file_handle->fileaccess & GENERIC_ALL)) {
1456                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
1457
1458                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1459                 return(FALSE);
1460         }
1461
1462         /* Find the current file position, and the file length.  If
1463          * the file position is greater than the length, write to
1464          * extend the file with a hole.  If the file position is less
1465          * than the length, truncate the file.
1466          */
1467         
1468         MONO_ENTER_GC_SAFE;
1469         ret=fstat(fd, &statbuf);
1470         MONO_EXIT_GC_SAFE;
1471         if(ret==-1) {
1472                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p fstat failed: %s", __func__,
1473                            handle, strerror(errno));
1474
1475                 _wapi_set_last_error_from_errno ();
1476                 return(FALSE);
1477         }
1478
1479         MONO_ENTER_GC_SAFE;
1480         pos=lseek(fd, (off_t)0, SEEK_CUR);
1481         MONO_EXIT_GC_SAFE;
1482         if(pos==-1) {
1483                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p lseek failed: %s", __func__,
1484                           handle, strerror(errno));
1485
1486                 _wapi_set_last_error_from_errno ();
1487                 return(FALSE);
1488         }
1489         
1490 #ifdef FTRUNCATE_DOESNT_EXTEND
1491         off_t size = statbuf.st_size;
1492         /* I haven't bothered to write the configure.ac stuff for this
1493          * because I don't know if any platform needs it.  I'm leaving
1494          * this code just in case though
1495          */
1496         if(pos>size) {
1497                 /* Extend the file.  Use write() here, because some
1498                  * manuals say that ftruncate() behaviour is undefined
1499                  * when the file needs extending.  The POSIX spec says
1500                  * that on XSI-conformant systems it extends, so if
1501                  * every system we care about conforms, then we can
1502                  * drop this write.
1503                  */
1504                 do {
1505                         MONO_ENTER_GC_SAFE;
1506                         ret = write (fd, "", 1);
1507                         MONO_EXIT_GC_SAFE;
1508                 } while (ret == -1 && errno == EINTR &&
1509                          !mono_thread_info_is_interrupt_state (info));
1510
1511                 if(ret==-1) {
1512                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p extend write failed: %s", __func__, handle, strerror(errno));
1513
1514                         _wapi_set_last_error_from_errno ();
1515                         return(FALSE);
1516                 }
1517
1518                 /* And put the file position back after the write */
1519                 MONO_ENTER_GC_SAFE;
1520                 ret = lseek (fd, pos, SEEK_SET);
1521                 MONO_EXIT_GC_SAFE;
1522                 if (ret == -1) {
1523                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p second lseek failed: %s",
1524                                    __func__, handle, strerror(errno));
1525
1526                         _wapi_set_last_error_from_errno ();
1527                         return(FALSE);
1528                 }
1529         }
1530 #endif
1531
1532 /* Native Client has no ftruncate function, even in standalone sel_ldr. */
1533 #ifndef __native_client__
1534         /* always truncate, because the extend write() adds an extra
1535          * byte to the end of the file
1536          */
1537         do {
1538                 MONO_ENTER_GC_SAFE;
1539                 ret=ftruncate(fd, pos);
1540                 MONO_EXIT_GC_SAFE;
1541         }
1542         while (ret==-1 && errno==EINTR && !mono_thread_info_is_interrupt_state (info)); 
1543         if(ret==-1) {
1544                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p ftruncate failed: %s", __func__,
1545                           handle, strerror(errno));
1546                 
1547                 _wapi_set_last_error_from_errno ();
1548                 return(FALSE);
1549         }
1550 #endif
1551                 
1552         return(TRUE);
1553 }
1554
1555 static guint32 file_getfilesize(gpointer handle, guint32 *highsize)
1556 {
1557         MonoW32HandleFile *file_handle;
1558         gboolean ok;
1559         struct stat statbuf;
1560         guint32 size;
1561         gint ret;
1562         gint fd;
1563         
1564         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE,
1565                                 (gpointer *)&file_handle);
1566         if(ok==FALSE) {
1567                 g_warning ("%s: error looking up file handle %p", __func__,
1568                            handle);
1569                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1570                 return(INVALID_FILE_SIZE);
1571         }
1572         fd = file_handle->fd;
1573         
1574         if(!(file_handle->fileaccess & GENERIC_READ) &&
1575            !(file_handle->fileaccess & GENERIC_WRITE) &&
1576            !(file_handle->fileaccess & GENERIC_ALL)) {
1577                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ or GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
1578
1579                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1580                 return(INVALID_FILE_SIZE);
1581         }
1582
1583         /* If the file has a size with the low bits 0xFFFFFFFF the
1584          * caller can't tell if this is an error, so clear the error
1585          * value
1586          */
1587         mono_w32error_set_last (ERROR_SUCCESS);
1588         
1589         MONO_ENTER_GC_SAFE;
1590         ret = fstat(fd, &statbuf);
1591         MONO_EXIT_GC_SAFE;
1592         if (ret == -1) {
1593                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p fstat failed: %s", __func__,
1594                            handle, strerror(errno));
1595
1596                 _wapi_set_last_error_from_errno ();
1597                 return(INVALID_FILE_SIZE);
1598         }
1599         
1600         /* fstat indicates block devices as zero-length, so go a different path */
1601 #ifdef BLKGETSIZE64
1602         if (S_ISBLK(statbuf.st_mode)) {
1603                 guint64 bigsize;
1604                 gint res;
1605                 MONO_ENTER_GC_SAFE;
1606                 res = ioctl (fd, BLKGETSIZE64, &bigsize);
1607                 MONO_EXIT_GC_SAFE;
1608                 if (res < 0) {
1609                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p ioctl BLKGETSIZE64 failed: %s",
1610                                    __func__, handle, strerror(errno));
1611
1612                         _wapi_set_last_error_from_errno ();
1613                         return(INVALID_FILE_SIZE);
1614                 }
1615                 
1616                 size = bigsize & 0xFFFFFFFF;
1617                 if (highsize != NULL) {
1618                         *highsize = bigsize>>32;
1619                 }
1620
1621                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Returning block device size %d/%d",
1622                            __func__, size, *highsize);
1623         
1624                 return(size);
1625         }
1626 #endif
1627         
1628 #ifdef HAVE_LARGE_FILE_SUPPORT
1629         size = statbuf.st_size & 0xFFFFFFFF;
1630         if (highsize != NULL) {
1631                 *highsize = statbuf.st_size>>32;
1632         }
1633 #else
1634         if (highsize != NULL) {
1635                 /* Accurate, but potentially dodgy :-) */
1636                 *highsize = 0;
1637         }
1638         size = statbuf.st_size;
1639 #endif
1640
1641         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Returning size %d/%d", __func__, size, *highsize);
1642         
1643         return(size);
1644 }
1645
1646 static gboolean file_getfiletime(gpointer handle, FILETIME *create_time,
1647                                  FILETIME *access_time,
1648                                  FILETIME *write_time)
1649 {
1650         MonoW32HandleFile *file_handle;
1651         gboolean ok;
1652         struct stat statbuf;
1653         guint64 create_ticks, access_ticks, write_ticks;
1654         gint ret, fd;
1655         
1656         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE,
1657                                 (gpointer *)&file_handle);
1658         if(ok==FALSE) {
1659                 g_warning ("%s: error looking up file handle %p", __func__,
1660                            handle);
1661                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1662                 return(FALSE);
1663         }
1664         fd = file_handle->fd;
1665
1666         if(!(file_handle->fileaccess & GENERIC_READ) &&
1667            !(file_handle->fileaccess & GENERIC_ALL)) {
1668                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ access: %u",
1669                           __func__, handle, file_handle->fileaccess);
1670
1671                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1672                 return(FALSE);
1673         }
1674         
1675         MONO_ENTER_GC_SAFE;
1676         ret=fstat(fd, &statbuf);
1677         MONO_EXIT_GC_SAFE;
1678         if(ret==-1) {
1679                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p fstat failed: %s", __func__, handle,
1680                           strerror(errno));
1681
1682                 _wapi_set_last_error_from_errno ();
1683                 return(FALSE);
1684         }
1685
1686         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: atime: %ld ctime: %ld mtime: %ld", __func__,
1687                   statbuf.st_atime, statbuf.st_ctime,
1688                   statbuf.st_mtime);
1689
1690         /* Try and guess a meaningful create time by using the older
1691          * of atime or ctime
1692          */
1693         /* The magic constant comes from msdn documentation
1694          * "Converting a time_t Value to a File Time"
1695          */
1696         if(statbuf.st_atime < statbuf.st_ctime) {
1697                 create_ticks=((guint64)statbuf.st_atime*10000000)
1698                         + 116444736000000000ULL;
1699         } else {
1700                 create_ticks=((guint64)statbuf.st_ctime*10000000)
1701                         + 116444736000000000ULL;
1702         }
1703         
1704         access_ticks=((guint64)statbuf.st_atime*10000000)+116444736000000000ULL;
1705         write_ticks=((guint64)statbuf.st_mtime*10000000)+116444736000000000ULL;
1706         
1707         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: aticks: %llu cticks: %llu wticks: %llu", __func__,
1708                   access_ticks, create_ticks, write_ticks);
1709
1710         if(create_time!=NULL) {
1711                 create_time->dwLowDateTime = create_ticks & 0xFFFFFFFF;
1712                 create_time->dwHighDateTime = create_ticks >> 32;
1713         }
1714         
1715         if(access_time!=NULL) {
1716                 access_time->dwLowDateTime = access_ticks & 0xFFFFFFFF;
1717                 access_time->dwHighDateTime = access_ticks >> 32;
1718         }
1719         
1720         if(write_time!=NULL) {
1721                 write_time->dwLowDateTime = write_ticks & 0xFFFFFFFF;
1722                 write_time->dwHighDateTime = write_ticks >> 32;
1723         }
1724
1725         return(TRUE);
1726 }
1727
1728 static gboolean file_setfiletime(gpointer handle,
1729                                  const FILETIME *create_time G_GNUC_UNUSED,
1730                                  const FILETIME *access_time,
1731                                  const FILETIME *write_time)
1732 {
1733         MonoW32HandleFile *file_handle;
1734         gboolean ok;
1735         struct utimbuf utbuf;
1736         struct stat statbuf;
1737         guint64 access_ticks, write_ticks;
1738         gint ret, fd;
1739         
1740         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE,
1741                                 (gpointer *)&file_handle);
1742         if(ok==FALSE) {
1743                 g_warning ("%s: error looking up file handle %p", __func__,
1744                            handle);
1745                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1746                 return(FALSE);
1747         }
1748         fd = file_handle->fd;
1749         
1750         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
1751            !(file_handle->fileaccess & GENERIC_ALL)) {
1752                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
1753
1754                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1755                 return(FALSE);
1756         }
1757
1758         if(file_handle->filename == NULL) {
1759                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p unknown filename", __func__, handle);
1760
1761                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1762                 return(FALSE);
1763         }
1764         
1765         /* Get the current times, so we can put the same times back in
1766          * the event that one of the FileTime structs is NULL
1767          */
1768         MONO_ENTER_GC_SAFE;
1769         ret=fstat (fd, &statbuf);
1770         MONO_EXIT_GC_SAFE;
1771         if(ret==-1) {
1772                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p fstat failed: %s", __func__, handle,
1773                           strerror(errno));
1774
1775                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
1776                 return(FALSE);
1777         }
1778
1779         if(access_time!=NULL) {
1780                 access_ticks=((guint64)access_time->dwHighDateTime << 32) +
1781                         access_time->dwLowDateTime;
1782                 /* This is (time_t)0.  We can actually go to INT_MIN,
1783                  * but this will do for now.
1784                  */
1785                 if (access_ticks < 116444736000000000ULL) {
1786                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: attempt to set access time too early",
1787                                    __func__);
1788                         mono_w32error_set_last (ERROR_INVALID_PARAMETER);
1789                         return(FALSE);
1790                 }
1791
1792                 if (sizeof (utbuf.actime) == 4 && ((access_ticks - 116444736000000000ULL) / 10000000) > INT_MAX) {
1793                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: attempt to set write time that is too big for a 32bits time_t",
1794                                    __func__);
1795                         mono_w32error_set_last (ERROR_INVALID_PARAMETER);
1796                         return(FALSE);
1797                 }
1798
1799                 utbuf.actime=(access_ticks - 116444736000000000ULL) / 10000000;
1800         } else {
1801                 utbuf.actime=statbuf.st_atime;
1802         }
1803
1804         if(write_time!=NULL) {
1805                 write_ticks=((guint64)write_time->dwHighDateTime << 32) +
1806                         write_time->dwLowDateTime;
1807                 /* This is (time_t)0.  We can actually go to INT_MIN,
1808                  * but this will do for now.
1809                  */
1810                 if (write_ticks < 116444736000000000ULL) {
1811                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: attempt to set write time too early",
1812                                    __func__);
1813                         mono_w32error_set_last (ERROR_INVALID_PARAMETER);
1814                         return(FALSE);
1815                 }
1816                 if (sizeof (utbuf.modtime) == 4 && ((write_ticks - 116444736000000000ULL) / 10000000) > INT_MAX) {
1817                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: attempt to set write time that is too big for a 32bits time_t",
1818                                    __func__);
1819                         mono_w32error_set_last (ERROR_INVALID_PARAMETER);
1820                         return(FALSE);
1821                 }
1822                 
1823                 utbuf.modtime=(write_ticks - 116444736000000000ULL) / 10000000;
1824         } else {
1825                 utbuf.modtime=statbuf.st_mtime;
1826         }
1827
1828         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: setting handle %p access %ld write %ld", __func__,
1829                    handle, utbuf.actime, utbuf.modtime);
1830
1831         ret = _wapi_utime (file_handle->filename, &utbuf);
1832         if (ret == -1) {
1833                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p [%s] utime failed: %s", __func__,
1834                            handle, file_handle->filename, strerror(errno));
1835
1836                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
1837                 return(FALSE);
1838         }
1839         
1840         return(TRUE);
1841 }
1842
1843 static void console_close (gpointer handle, gpointer data)
1844 {
1845         /* FIXME: after mono_w32handle_close is coop-aware, change this to MONO_REQ_GC_UNSAFE_MODE and leave just the switch to SAFE around close() below */
1846         MONO_ENTER_GC_UNSAFE;
1847         MonoW32HandleFile *console_handle = (MonoW32HandleFile *)data;
1848         gint fd = console_handle->fd;
1849         
1850         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: closing console handle %p", __func__, handle);
1851
1852         g_free (console_handle->filename);
1853
1854         if (fd > 2) {
1855                 if (console_handle->share_info)
1856                         file_share_release (console_handle->share_info);
1857                 MONO_ENTER_GC_SAFE;
1858                 close (fd);
1859                 MONO_EXIT_GC_SAFE;
1860         }
1861         MONO_EXIT_GC_UNSAFE;
1862 }
1863
1864 static void console_details (gpointer data)
1865 {
1866         file_details (data);
1867 }
1868
1869 static const gchar* console_typename (void)
1870 {
1871         return "Console";
1872 }
1873
1874 static gsize console_typesize (void)
1875 {
1876         return sizeof (MonoW32HandleFile);
1877 }
1878
1879 static gint console_getfiletype(void)
1880 {
1881         return(FILE_TYPE_CHAR);
1882 }
1883
1884 static gboolean
1885 console_read(gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread)
1886 {
1887         MonoW32HandleFile *console_handle;
1888         gboolean ok;
1889         gint ret, fd;
1890         MonoThreadInfo *info = mono_thread_info_current ();
1891
1892         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_CONSOLE,
1893                                 (gpointer *)&console_handle);
1894         if(ok==FALSE) {
1895                 g_warning ("%s: error looking up console handle %p", __func__,
1896                            handle);
1897                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1898                 return(FALSE);
1899         }
1900         fd = console_handle->fd;
1901         
1902         if(bytesread!=NULL) {
1903                 *bytesread=0;
1904         }
1905         
1906         if(!(console_handle->fileaccess & GENERIC_READ) &&
1907            !(console_handle->fileaccess & GENERIC_ALL)) {
1908                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ access: %u",
1909                            __func__, handle, console_handle->fileaccess);
1910
1911                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1912                 return(FALSE);
1913         }
1914         
1915         do {
1916                 MONO_ENTER_GC_SAFE;
1917                 ret=read(fd, buffer, numbytes);
1918                 MONO_EXIT_GC_SAFE;
1919         } while (ret==-1 && errno==EINTR && !mono_thread_info_is_interrupt_state (info));
1920
1921         if(ret==-1) {
1922                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: read of handle %p error: %s", __func__, handle,
1923                           strerror(errno));
1924
1925                 _wapi_set_last_error_from_errno ();
1926                 return(FALSE);
1927         }
1928         
1929         if(bytesread!=NULL) {
1930                 *bytesread=ret;
1931         }
1932         
1933         return(TRUE);
1934 }
1935
1936 static gboolean
1937 console_write(gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten)
1938 {
1939         MonoW32HandleFile *console_handle;
1940         gboolean ok;
1941         gint ret, fd;
1942         MonoThreadInfo *info = mono_thread_info_current ();
1943         
1944         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_CONSOLE,
1945                                 (gpointer *)&console_handle);
1946         if(ok==FALSE) {
1947                 g_warning ("%s: error looking up console handle %p", __func__,
1948                            handle);
1949                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
1950                 return(FALSE);
1951         }
1952         fd = console_handle->fd;
1953         
1954         if(byteswritten!=NULL) {
1955                 *byteswritten=0;
1956         }
1957         
1958         if(!(console_handle->fileaccess & GENERIC_WRITE) &&
1959            !(console_handle->fileaccess & GENERIC_ALL)) {
1960                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, console_handle->fileaccess);
1961
1962                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
1963                 return(FALSE);
1964         }
1965         
1966         do {
1967                 MONO_ENTER_GC_SAFE;
1968                 ret = write(fd, buffer, numbytes);
1969                 MONO_EXIT_GC_SAFE;
1970         } while (ret == -1 && errno == EINTR &&
1971                  !mono_thread_info_is_interrupt_state (info));
1972
1973         if (ret == -1) {
1974                 if (errno == EINTR) {
1975                         ret = 0;
1976                 } else {
1977                         _wapi_set_last_error_from_errno ();
1978                         
1979                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write of handle %p error: %s",
1980                                    __func__, handle, strerror(errno));
1981
1982                         return(FALSE);
1983                 }
1984         }
1985         if(byteswritten!=NULL) {
1986                 *byteswritten=ret;
1987         }
1988         
1989         return(TRUE);
1990 }
1991
1992 static const gchar* find_typename (void)
1993 {
1994         return "Find";
1995 }
1996
1997 static gsize find_typesize (void)
1998 {
1999         return sizeof (MonoW32HandleFind);
2000 }
2001
2002 static void pipe_close (gpointer handle, gpointer data)
2003 {
2004         /* FIXME: after mono_w32handle_close is coop-aware, change this to MONO_REQ_GC_UNSAFE_MODE and leave just the switch to SAFE around close() below */
2005         MONO_ENTER_GC_UNSAFE;
2006         MonoW32HandleFile *pipe_handle = (MonoW32HandleFile*)data;
2007         gint fd = pipe_handle->fd;
2008
2009         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: closing pipe handle %p fd %d", __func__, handle, fd);
2010
2011         /* No filename with pipe handles */
2012
2013         if (pipe_handle->share_info)
2014                 file_share_release (pipe_handle->share_info);
2015
2016         MONO_ENTER_GC_SAFE;
2017         close (fd);
2018         MONO_EXIT_GC_SAFE;
2019         MONO_EXIT_GC_UNSAFE;
2020 }
2021
2022 static void pipe_details (gpointer data)
2023 {
2024         file_details (data);
2025 }
2026
2027 static const gchar* pipe_typename (void)
2028 {
2029         return "Pipe";
2030 }
2031
2032 static gsize pipe_typesize (void)
2033 {
2034         return sizeof (MonoW32HandleFile);
2035 }
2036
2037 static gint pipe_getfiletype(void)
2038 {
2039         return(FILE_TYPE_PIPE);
2040 }
2041
2042 static gboolean
2043 pipe_read (gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread)
2044 {
2045         MonoW32HandleFile *pipe_handle;
2046         gboolean ok;
2047         gint ret, fd;
2048         MonoThreadInfo *info = mono_thread_info_current ();
2049
2050         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_PIPE,
2051                                 (gpointer *)&pipe_handle);
2052         if(ok==FALSE) {
2053                 g_warning ("%s: error looking up pipe handle %p", __func__,
2054                            handle);
2055                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
2056                 return(FALSE);
2057         }
2058         fd = pipe_handle->fd;
2059
2060         if(bytesread!=NULL) {
2061                 *bytesread=0;
2062         }
2063         
2064         if(!(pipe_handle->fileaccess & GENERIC_READ) &&
2065            !(pipe_handle->fileaccess & GENERIC_ALL)) {
2066                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ access: %u",
2067                           __func__, handle, pipe_handle->fileaccess);
2068
2069                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
2070                 return(FALSE);
2071         }
2072         
2073         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: reading up to %d bytes from pipe %p", __func__,
2074                    numbytes, handle);
2075
2076         do {
2077                 MONO_ENTER_GC_SAFE;
2078                 ret=read(fd, buffer, numbytes);
2079                 MONO_EXIT_GC_SAFE;
2080         } while (ret==-1 && errno==EINTR && !mono_thread_info_is_interrupt_state (info));
2081                 
2082         if (ret == -1) {
2083                 if (errno == EINTR) {
2084                         ret = 0;
2085                 } else {
2086                         _wapi_set_last_error_from_errno ();
2087                         
2088                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: read of handle %p error: %s", __func__,
2089                                   handle, strerror(errno));
2090
2091                         return(FALSE);
2092                 }
2093         }
2094         
2095         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: read %d bytes from pipe %p", __func__, ret, handle);
2096
2097         if(bytesread!=NULL) {
2098                 *bytesread=ret;
2099         }
2100         
2101         return(TRUE);
2102 }
2103
2104 static gboolean
2105 pipe_write(gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten)
2106 {
2107         MonoW32HandleFile *pipe_handle;
2108         gboolean ok;
2109         gint ret, fd;
2110         MonoThreadInfo *info = mono_thread_info_current ();
2111         
2112         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_PIPE,
2113                                 (gpointer *)&pipe_handle);
2114         if(ok==FALSE) {
2115                 g_warning ("%s: error looking up pipe handle %p", __func__,
2116                            handle);
2117                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
2118                 return(FALSE);
2119         }
2120         fd = pipe_handle->fd;
2121         
2122         if(byteswritten!=NULL) {
2123                 *byteswritten=0;
2124         }
2125         
2126         if(!(pipe_handle->fileaccess & GENERIC_WRITE) &&
2127            !(pipe_handle->fileaccess & GENERIC_ALL)) {
2128                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, pipe_handle->fileaccess);
2129
2130                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
2131                 return(FALSE);
2132         }
2133         
2134         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: writing up to %d bytes to pipe %p", __func__, numbytes,
2135                    handle);
2136
2137         do {
2138                 MONO_ENTER_GC_SAFE;
2139                 ret = write (fd, buffer, numbytes);
2140                 MONO_EXIT_GC_SAFE;
2141         } while (ret == -1 && errno == EINTR &&
2142                  !mono_thread_info_is_interrupt_state (info));
2143
2144         if (ret == -1) {
2145                 if (errno == EINTR) {
2146                         ret = 0;
2147                 } else {
2148                         _wapi_set_last_error_from_errno ();
2149                         
2150                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write of handle %p error: %s", __func__,
2151                                   handle, strerror(errno));
2152
2153                         return(FALSE);
2154                 }
2155         }
2156         if(byteswritten!=NULL) {
2157                 *byteswritten=ret;
2158         }
2159         
2160         return(TRUE);
2161 }
2162
2163 static gint convert_flags(guint32 fileaccess, guint32 createmode)
2164 {
2165         gint flags=0;
2166         
2167         switch(fileaccess) {
2168         case GENERIC_READ:
2169                 flags=O_RDONLY;
2170                 break;
2171         case GENERIC_WRITE:
2172                 flags=O_WRONLY;
2173                 break;
2174         case GENERIC_READ|GENERIC_WRITE:
2175                 flags=O_RDWR;
2176                 break;
2177         default:
2178                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Unknown access type 0x%x", __func__,
2179                           fileaccess);
2180                 break;
2181         }
2182
2183         switch(createmode) {
2184         case CREATE_NEW:
2185                 flags|=O_CREAT|O_EXCL;
2186                 break;
2187         case CREATE_ALWAYS:
2188                 flags|=O_CREAT|O_TRUNC;
2189                 break;
2190         case OPEN_EXISTING:
2191                 break;
2192         case OPEN_ALWAYS:
2193                 flags|=O_CREAT;
2194                 break;
2195         case TRUNCATE_EXISTING:
2196                 flags|=O_TRUNC;
2197                 break;
2198         default:
2199                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Unknown create mode 0x%x", __func__,
2200                           createmode);
2201                 break;
2202         }
2203         
2204         return(flags);
2205 }
2206
2207 #if 0 /* unused */
2208 static mode_t convert_perms(guint32 sharemode)
2209 {
2210         mode_t perms=0600;
2211         
2212         if(sharemode&FILE_SHARE_READ) {
2213                 perms|=044;
2214         }
2215         if(sharemode&FILE_SHARE_WRITE) {
2216                 perms|=022;
2217         }
2218
2219         return(perms);
2220 }
2221 #endif
2222
2223 static gboolean share_allows_open (struct stat *statbuf, guint32 sharemode,
2224                                    guint32 fileaccess,
2225                                    FileShare **share_info)
2226 {
2227         gboolean file_already_shared;
2228         guint32 file_existing_share, file_existing_access;
2229
2230         file_already_shared = file_share_get (statbuf->st_dev, statbuf->st_ino, sharemode, fileaccess, &file_existing_share, &file_existing_access, share_info);
2231         
2232         if (file_already_shared) {
2233                 /* The reference to this share info was incremented
2234                  * when we looked it up, so be careful to put it back
2235                  * if we conclude we can't use this file.
2236                  */
2237                 if (file_existing_share == 0) {
2238                         /* Quick and easy, no possibility to share */
2239                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Share mode prevents open: requested access: 0x%x, file has sharing = NONE", __func__, fileaccess);
2240
2241                         file_share_release (*share_info);
2242                         
2243                         return(FALSE);
2244                 }
2245
2246                 if (((file_existing_share == FILE_SHARE_READ) &&
2247                      (fileaccess != GENERIC_READ)) ||
2248                     ((file_existing_share == FILE_SHARE_WRITE) &&
2249                      (fileaccess != GENERIC_WRITE))) {
2250                         /* New access mode doesn't match up */
2251                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Share mode prevents open: requested access: 0x%x, file has sharing: 0x%x", __func__, fileaccess, file_existing_share);
2252
2253                         file_share_release (*share_info);
2254                 
2255                         return(FALSE);
2256                 }
2257
2258                 if (((file_existing_access & GENERIC_READ) &&
2259                      !(sharemode & FILE_SHARE_READ)) ||
2260                     ((file_existing_access & GENERIC_WRITE) &&
2261                      !(sharemode & FILE_SHARE_WRITE))) {
2262                         /* New share mode doesn't match up */
2263                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Access mode prevents open: requested share: 0x%x, file has access: 0x%x", __func__, sharemode, file_existing_access);
2264
2265                         file_share_release (*share_info);
2266                 
2267                         return(FALSE);
2268                 }
2269         } else {
2270                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: New file!", __func__);
2271         }
2272
2273         return(TRUE);
2274 }
2275
2276
2277 static gboolean
2278 share_allows_delete (struct stat *statbuf, FileShare **share_info)
2279 {
2280         gboolean file_already_shared;
2281         guint32 file_existing_share, file_existing_access;
2282
2283         file_already_shared = file_share_get (statbuf->st_dev, statbuf->st_ino, FILE_SHARE_DELETE, GENERIC_READ, &file_existing_share, &file_existing_access, share_info);
2284
2285         if (file_already_shared) {
2286                 /* The reference to this share info was incremented
2287                  * when we looked it up, so be careful to put it back
2288                  * if we conclude we can't use this file.
2289                  */
2290                 if (file_existing_share == 0) {
2291                         /* Quick and easy, no possibility to share */
2292                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Share mode prevents open: requested access: 0x%x, file has sharing = NONE", __func__, (*share_info)->access);
2293
2294                         file_share_release (*share_info);
2295
2296                         return(FALSE);
2297                 }
2298
2299                 if (!(file_existing_share & FILE_SHARE_DELETE)) {
2300                         /* New access mode doesn't match up */
2301                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Share mode prevents open: requested access: 0x%x, file has sharing: 0x%x", __func__, (*share_info)->access, file_existing_share);
2302
2303                         file_share_release (*share_info);
2304
2305                         return(FALSE);
2306                 }
2307         } else {
2308                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: New file!", __func__);
2309         }
2310
2311         return(TRUE);
2312 }
2313
2314 gpointer
2315 mono_w32file_create(const gunichar2 *name, guint32 fileaccess, guint32 sharemode, guint32 createmode, guint32 attrs)
2316 {
2317         MonoW32HandleFile file_handle = {0};
2318         gpointer handle;
2319         gint flags=convert_flags(fileaccess, createmode);
2320         /*mode_t perms=convert_perms(sharemode);*/
2321         /* we don't use sharemode, because that relates to sharing of
2322          * the file when the file is open and is already handled by
2323          * other code, perms instead are the on-disk permissions and
2324          * this is a sane default.
2325          */
2326         mode_t perms=0666;
2327         gchar *filename;
2328         gint fd, ret;
2329         MonoW32HandleType handle_type;
2330         struct stat statbuf;
2331
2332         if (attrs & FILE_ATTRIBUTE_TEMPORARY)
2333                 perms = 0600;
2334         
2335         if (attrs & FILE_ATTRIBUTE_ENCRYPTED){
2336                 mono_w32error_set_last (ERROR_ENCRYPTION_FAILED);
2337                 return INVALID_HANDLE_VALUE;
2338         }
2339         
2340         if (name == NULL) {
2341                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2342
2343                 mono_w32error_set_last (ERROR_INVALID_NAME);
2344                 return(INVALID_HANDLE_VALUE);
2345         }
2346
2347         filename = mono_unicode_to_external (name);
2348         if (filename == NULL) {
2349                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2350
2351                 mono_w32error_set_last (ERROR_INVALID_NAME);
2352                 return(INVALID_HANDLE_VALUE);
2353         }
2354         
2355         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Opening %s with share 0x%x and access 0x%x", __func__,
2356                    filename, sharemode, fileaccess);
2357         
2358         fd = _wapi_open (filename, flags, perms);
2359     
2360         /* If we were trying to open a directory with write permissions
2361          * (e.g. O_WRONLY or O_RDWR), this call will fail with
2362          * EISDIR. However, this is a bit bogus because calls to
2363          * manipulate the directory (e.g. mono_w32file_set_times) will still work on
2364          * the directory because they use other API calls
2365          * (e.g. utime()). Hence, if we failed with the EISDIR error, try
2366          * to open the directory again without write permission.
2367          */
2368         if (fd == -1 && errno == EISDIR)
2369         {
2370                 /* Try again but don't try to make it writable */
2371                 fd = _wapi_open (filename, flags & ~(O_RDWR|O_WRONLY), perms);
2372         }
2373         
2374         if (fd == -1) {
2375                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Error opening file %s: %s", __func__, filename,
2376                           strerror(errno));
2377                 _wapi_set_last_path_error_from_errno (NULL, filename);
2378                 g_free (filename);
2379
2380                 return(INVALID_HANDLE_VALUE);
2381         }
2382
2383         if (fd >= mono_w32handle_fd_reserve) {
2384                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: File descriptor is too big", __func__);
2385
2386                 mono_w32error_set_last (ERROR_TOO_MANY_OPEN_FILES);
2387                 
2388                 MONO_ENTER_GC_SAFE;
2389                 close (fd);
2390                 MONO_EXIT_GC_SAFE;
2391                 g_free (filename);
2392                 
2393                 return(INVALID_HANDLE_VALUE);
2394         }
2395
2396         MONO_ENTER_GC_SAFE;
2397         ret = fstat (fd, &statbuf);
2398         MONO_EXIT_GC_SAFE;
2399         if (ret == -1) {
2400                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: fstat error of file %s: %s", __func__,
2401                            filename, strerror (errno));
2402                 _wapi_set_last_error_from_errno ();
2403                 g_free (filename);
2404                 MONO_ENTER_GC_SAFE;
2405                 close (fd);
2406                 MONO_EXIT_GC_SAFE;
2407                 
2408                 return(INVALID_HANDLE_VALUE);
2409         }
2410 #ifdef __native_client__
2411         /* Workaround: Native Client currently returns the same fake inode
2412          * for all files, so do a simple hash on the filename so we don't
2413          * use the same share info for each file.
2414          */
2415         statbuf.st_ino = g_str_hash(filename);
2416 #endif
2417
2418         if (share_allows_open (&statbuf, sharemode, fileaccess,
2419                          &file_handle.share_info) == FALSE) {
2420                 mono_w32error_set_last (ERROR_SHARING_VIOLATION);
2421                 g_free (filename);
2422                 MONO_ENTER_GC_SAFE;
2423                 close (fd);
2424                 MONO_EXIT_GC_SAFE;
2425                 
2426                 return (INVALID_HANDLE_VALUE);
2427         }
2428         if (file_handle.share_info == NULL) {
2429                 /* No space, so no more files can be opened */
2430                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: No space in the share table", __func__);
2431
2432                 mono_w32error_set_last (ERROR_TOO_MANY_OPEN_FILES);
2433                 MONO_ENTER_GC_SAFE;
2434                 close (fd);
2435                 MONO_EXIT_GC_SAFE;
2436                 g_free (filename);
2437                 
2438                 return(INVALID_HANDLE_VALUE);
2439         }
2440         
2441         file_handle.filename = filename;
2442         
2443         file_handle.fd = fd;
2444         file_handle.fileaccess=fileaccess;
2445         file_handle.sharemode=sharemode;
2446         file_handle.attrs=attrs;
2447
2448 #ifdef HAVE_POSIX_FADVISE
2449         if (attrs & FILE_FLAG_SEQUENTIAL_SCAN) {
2450                 MONO_ENTER_GC_SAFE;
2451                 posix_fadvise (fd, 0, 0, POSIX_FADV_SEQUENTIAL);
2452                 MONO_EXIT_GC_SAFE;
2453         }
2454         if (attrs & FILE_FLAG_RANDOM_ACCESS) {
2455                 MONO_ENTER_GC_SAFE;
2456                 posix_fadvise (fd, 0, 0, POSIX_FADV_RANDOM);
2457                 MONO_EXIT_GC_SAFE;
2458         }
2459 #endif
2460
2461 #ifdef F_RDAHEAD
2462         if (attrs & FILE_FLAG_SEQUENTIAL_SCAN) {
2463                 MONO_ENTER_GC_SAFE;
2464                 fcntl(fd, F_RDAHEAD, 1);
2465                 MONO_EXIT_GC_SAFE;
2466         }
2467 #endif
2468
2469 #ifndef S_ISFIFO
2470 #define S_ISFIFO(m) ((m & S_IFIFO) != 0)
2471 #endif
2472         if (S_ISFIFO (statbuf.st_mode)) {
2473                 handle_type = MONO_W32HANDLE_PIPE;
2474                 /* maintain invariant that pipes have no filename */
2475                 file_handle.filename = NULL;
2476                 g_free (filename);
2477                 filename = NULL;
2478         } else if (S_ISCHR (statbuf.st_mode)) {
2479                 handle_type = MONO_W32HANDLE_CONSOLE;
2480         } else {
2481                 handle_type = MONO_W32HANDLE_FILE;
2482         }
2483
2484         MONO_ENTER_GC_SAFE; /* FIXME: mono_w32handle_new_fd should be updated with coop transitions */
2485         handle = mono_w32handle_new_fd (handle_type, fd, &file_handle);
2486         MONO_EXIT_GC_SAFE;
2487         if (handle == INVALID_HANDLE_VALUE) {
2488                 g_warning ("%s: error creating file handle", __func__);
2489                 g_free (filename);
2490                 MONO_ENTER_GC_SAFE;
2491                 close (fd);
2492                 MONO_EXIT_GC_SAFE;
2493                 
2494                 mono_w32error_set_last (ERROR_GEN_FAILURE);
2495                 return(INVALID_HANDLE_VALUE);
2496         }
2497         
2498         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: returning handle %p", __func__, handle);
2499         
2500         return(handle);
2501 }
2502
2503 gboolean
2504 mono_w32file_close (gpointer handle)
2505 {
2506         gboolean res;
2507         MONO_ENTER_GC_SAFE;
2508         /* FIXME: we transition here and not in file_close, pipe_close,
2509          * console_close because w32handle_close is not coop aware yet, but it
2510          * calls back into w32file. */
2511         res = mono_w32handle_close (handle);
2512         MONO_EXIT_GC_SAFE;
2513         return res;
2514 }
2515
2516 gboolean mono_w32file_delete(const gunichar2 *name)
2517 {
2518         gchar *filename;
2519         gint retval;
2520         gboolean ret = FALSE;
2521 #if 0
2522         struct stat statbuf;
2523         FileShare *shareinfo;
2524 #endif
2525         
2526         if(name==NULL) {
2527                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2528
2529                 mono_w32error_set_last (ERROR_INVALID_NAME);
2530                 return(FALSE);
2531         }
2532
2533         filename=mono_unicode_to_external(name);
2534         if(filename==NULL) {
2535                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2536
2537                 mono_w32error_set_last (ERROR_INVALID_NAME);
2538                 return(FALSE);
2539         }
2540
2541 #if 0
2542         /* Check to make sure sharing allows us to open the file for
2543          * writing.  See bug 323389.
2544          *
2545          * Do the checks that don't need an open file descriptor, for
2546          * simplicity's sake.  If we really have to do the full checks
2547          * then we can implement that later.
2548          */
2549         if (_wapi_stat (filename, &statbuf) < 0) {
2550                 _wapi_set_last_path_error_from_errno (NULL, filename);
2551                 g_free (filename);
2552                 return(FALSE);
2553         }
2554         
2555         if (share_allows_open (&statbuf, 0, GENERIC_WRITE,
2556                                &shareinfo) == FALSE) {
2557                 mono_w32error_set_last (ERROR_SHARING_VIOLATION);
2558                 g_free (filename);
2559                 return FALSE;
2560         }
2561         if (shareinfo)
2562                 file_share_release (shareinfo);
2563 #endif
2564
2565         retval = _wapi_unlink (filename);
2566         
2567         if (retval == -1) {
2568                 _wapi_set_last_path_error_from_errno (NULL, filename);
2569         } else {
2570                 ret = TRUE;
2571         }
2572
2573         g_free(filename);
2574
2575         return(ret);
2576 }
2577
2578 static gboolean
2579 MoveFile (gunichar2 *name, gunichar2 *dest_name)
2580 {
2581         gchar *utf8_name, *utf8_dest_name;
2582         gint result, errno_copy;
2583         struct stat stat_src, stat_dest;
2584         gboolean ret = FALSE;
2585         FileShare *shareinfo;
2586         
2587         if(name==NULL) {
2588                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2589
2590                 mono_w32error_set_last (ERROR_INVALID_NAME);
2591                 return(FALSE);
2592         }
2593
2594         utf8_name = mono_unicode_to_external (name);
2595         if (utf8_name == NULL) {
2596                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2597                 
2598                 mono_w32error_set_last (ERROR_INVALID_NAME);
2599                 return FALSE;
2600         }
2601         
2602         if(dest_name==NULL) {
2603                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2604
2605                 g_free (utf8_name);
2606                 mono_w32error_set_last (ERROR_INVALID_NAME);
2607                 return(FALSE);
2608         }
2609
2610         utf8_dest_name = mono_unicode_to_external (dest_name);
2611         if (utf8_dest_name == NULL) {
2612                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2613
2614                 g_free (utf8_name);
2615                 mono_w32error_set_last (ERROR_INVALID_NAME);
2616                 return FALSE;
2617         }
2618
2619         /*
2620          * In C# land we check for the existence of src, but not for dest.
2621          * We check it here and return the failure if dest exists and is not
2622          * the same file as src.
2623          */
2624         if (_wapi_stat (utf8_name, &stat_src) < 0) {
2625                 if (errno != ENOENT || _wapi_lstat (utf8_name, &stat_src) < 0) {
2626                         _wapi_set_last_path_error_from_errno (NULL, utf8_name);
2627                         g_free (utf8_name);
2628                         g_free (utf8_dest_name);
2629                         return FALSE;
2630                 }
2631         }
2632         
2633         if (!_wapi_stat (utf8_dest_name, &stat_dest)) {
2634                 if (stat_dest.st_dev != stat_src.st_dev ||
2635                     stat_dest.st_ino != stat_src.st_ino) {
2636                         g_free (utf8_name);
2637                         g_free (utf8_dest_name);
2638                         mono_w32error_set_last (ERROR_ALREADY_EXISTS);
2639                         return FALSE;
2640                 }
2641         }
2642
2643         /* Check to make that we have delete sharing permission.
2644          * See https://bugzilla.xamarin.com/show_bug.cgi?id=17009
2645          *
2646          * Do the checks that don't need an open file descriptor, for
2647          * simplicity's sake.  If we really have to do the full checks
2648          * then we can implement that later.
2649          */
2650         if (share_allows_delete (&stat_src, &shareinfo) == FALSE) {
2651                 mono_w32error_set_last (ERROR_SHARING_VIOLATION);
2652                 return FALSE;
2653         }
2654         if (shareinfo)
2655                 file_share_release (shareinfo);
2656
2657         result = _wapi_rename (utf8_name, utf8_dest_name);
2658         errno_copy = errno;
2659         
2660         if (result == -1) {
2661                 switch(errno_copy) {
2662                 case EEXIST:
2663                         mono_w32error_set_last (ERROR_ALREADY_EXISTS);
2664                         break;
2665
2666                 case EXDEV:
2667                         /* Ignore here, it is dealt with below */
2668                         break;
2669
2670                 case ENOENT:
2671                         /* We already know src exists. Must be dest that doesn't exist. */
2672                         _wapi_set_last_path_error_from_errno (NULL, utf8_dest_name);
2673                         break;
2674
2675                 default:
2676                         _wapi_set_last_error_from_errno ();
2677                 }
2678         }
2679         
2680         g_free (utf8_name);
2681         g_free (utf8_dest_name);
2682
2683         if (result != 0 && errno_copy == EXDEV) {
2684                 gint32 copy_error;
2685
2686                 if (S_ISDIR (stat_src.st_mode)) {
2687                         mono_w32error_set_last (ERROR_NOT_SAME_DEVICE);
2688                         return FALSE;
2689                 }
2690                 /* Try a copy to the new location, and delete the source */
2691                 if (!mono_w32file_copy (name, dest_name, FALSE, &copy_error)) {
2692                         /* mono_w32file_copy will set the error */
2693                         return(FALSE);
2694                 }
2695                 
2696                 return(mono_w32file_delete (name));
2697         }
2698
2699         if (result == 0) {
2700                 ret = TRUE;
2701         }
2702
2703         return(ret);
2704 }
2705
2706 static gboolean
2707 write_file (gint src_fd, gint dest_fd, struct stat *st_src, gboolean report_errors)
2708 {
2709         gint remain, n;
2710         gchar *buf, *wbuf;
2711         gint buf_size = st_src->st_blksize;
2712         MonoThreadInfo *info = mono_thread_info_current ();
2713
2714         buf_size = buf_size < 8192 ? 8192 : (buf_size > 65536 ? 65536 : buf_size);
2715         buf = (gchar *) g_malloc (buf_size);
2716
2717         for (;;) {
2718                 MONO_ENTER_GC_SAFE;
2719                 remain = read (src_fd, buf, buf_size);
2720                 MONO_EXIT_GC_SAFE;
2721                 if (remain < 0) {
2722                         if (errno == EINTR && !mono_thread_info_is_interrupt_state (info))
2723                                 continue;
2724
2725                         if (report_errors)
2726                                 _wapi_set_last_error_from_errno ();
2727
2728                         g_free (buf);
2729                         return FALSE;
2730                 }
2731                 if (remain == 0) {
2732                         break;
2733                 }
2734
2735                 wbuf = buf;
2736                 while (remain > 0) {
2737                         MONO_ENTER_GC_SAFE;
2738                         n = write (dest_fd, wbuf, remain);
2739                         MONO_EXIT_GC_SAFE;
2740                         if (n < 0) {
2741                                 if (errno == EINTR && !mono_thread_info_is_interrupt_state (info))
2742                                         continue;
2743
2744                                 if (report_errors)
2745                                         _wapi_set_last_error_from_errno ();
2746                                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write failed.", __func__);
2747                                 g_free (buf);
2748                                 return FALSE;
2749                         }
2750
2751                         remain -= n;
2752                         wbuf += n;
2753                 }
2754         }
2755
2756         g_free (buf);
2757         return TRUE ;
2758 }
2759
2760 static gboolean
2761 CopyFile (const gunichar2 *name, const gunichar2 *dest_name, gboolean fail_if_exists)
2762 {
2763         gchar *utf8_src, *utf8_dest;
2764         gint src_fd, dest_fd;
2765         struct stat st, dest_st;
2766         struct utimbuf dest_time;
2767         gboolean ret = TRUE;
2768         gint ret_utime;
2769         gint syscall_res;
2770         
2771         if(name==NULL) {
2772                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2773
2774                 mono_w32error_set_last (ERROR_INVALID_NAME);
2775                 return(FALSE);
2776         }
2777         
2778         utf8_src = mono_unicode_to_external (name);
2779         if (utf8_src == NULL) {
2780                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of source returned NULL",
2781                            __func__);
2782
2783                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
2784                 return(FALSE);
2785         }
2786         
2787         if(dest_name==NULL) {
2788                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: dest is NULL", __func__);
2789
2790                 g_free (utf8_src);
2791                 mono_w32error_set_last (ERROR_INVALID_NAME);
2792                 return(FALSE);
2793         }
2794         
2795         utf8_dest = mono_unicode_to_external (dest_name);
2796         if (utf8_dest == NULL) {
2797                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of dest returned NULL",
2798                            __func__);
2799
2800                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
2801
2802                 g_free (utf8_src);
2803                 
2804                 return(FALSE);
2805         }
2806         
2807         src_fd = _wapi_open (utf8_src, O_RDONLY, 0);
2808         if (src_fd < 0) {
2809                 _wapi_set_last_path_error_from_errno (NULL, utf8_src);
2810                 
2811                 g_free (utf8_src);
2812                 g_free (utf8_dest);
2813                 
2814                 return(FALSE);
2815         }
2816
2817         MONO_ENTER_GC_SAFE;
2818         syscall_res = fstat (src_fd, &st);
2819         MONO_EXIT_GC_SAFE;
2820         if (syscall_res < 0) {
2821                 _wapi_set_last_error_from_errno ();
2822
2823                 g_free (utf8_src);
2824                 g_free (utf8_dest);
2825                 MONO_ENTER_GC_SAFE;
2826                 close (src_fd);
2827                 MONO_EXIT_GC_SAFE;
2828                 
2829                 return(FALSE);
2830         }
2831
2832         /* Before trying to open/create the dest, we need to report a 'file busy'
2833          * error if src and dest are actually the same file. We do the check here to take
2834          * advantage of the IOMAP capability */
2835         if (!_wapi_stat (utf8_dest, &dest_st) && st.st_dev == dest_st.st_dev && 
2836                         st.st_ino == dest_st.st_ino) {
2837
2838                 g_free (utf8_src);
2839                 g_free (utf8_dest);
2840                 MONO_ENTER_GC_SAFE;
2841                 close (src_fd);
2842                 MONO_EXIT_GC_SAFE;
2843
2844                 mono_w32error_set_last (ERROR_SHARING_VIOLATION);
2845                 return (FALSE);
2846         }
2847         
2848         if (fail_if_exists) {
2849                 dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_CREAT | O_EXCL, st.st_mode);
2850         } else {
2851                 /* FIXME: it kinda sucks that this code path potentially scans
2852                  * the directory twice due to the weird mono_w32error_set_last()
2853                  * behavior. */
2854                 dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_TRUNC, st.st_mode);
2855                 if (dest_fd < 0) {
2856                         /* The file does not exist, try creating it */
2857                         dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_CREAT | O_TRUNC, st.st_mode);
2858                 } else {
2859                         /* Apparently this error is set if we
2860                          * overwrite the dest file
2861                          */
2862                         mono_w32error_set_last (ERROR_ALREADY_EXISTS);
2863                 }
2864         }
2865         if (dest_fd < 0) {
2866                 _wapi_set_last_error_from_errno ();
2867
2868                 g_free (utf8_src);
2869                 g_free (utf8_dest);
2870                 MONO_ENTER_GC_SAFE;
2871                 close (src_fd);
2872                 MONO_EXIT_GC_SAFE;
2873
2874                 return(FALSE);
2875         }
2876
2877         if (!write_file (src_fd, dest_fd, &st, TRUE))
2878                 ret = FALSE;
2879
2880         close (src_fd);
2881         close (dest_fd);
2882         
2883         dest_time.modtime = st.st_mtime;
2884         dest_time.actime = st.st_atime;
2885         MONO_ENTER_GC_SAFE;
2886         ret_utime = utime (utf8_dest, &dest_time);
2887         MONO_EXIT_GC_SAFE;
2888         if (ret_utime == -1)
2889                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: file [%s] utime failed: %s", __func__, utf8_dest, strerror(errno));
2890         
2891         g_free (utf8_src);
2892         g_free (utf8_dest);
2893
2894         return ret;
2895 }
2896
2897 static gchar*
2898 convert_arg_to_utf8 (const gunichar2 *arg, const gchar *arg_name)
2899 {
2900         gchar *utf8_ret;
2901
2902         if (arg == NULL) {
2903                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: %s is NULL", __func__, arg_name);
2904                 mono_w32error_set_last (ERROR_INVALID_NAME);
2905                 return NULL;
2906         }
2907
2908         utf8_ret = mono_unicode_to_external (arg);
2909         if (utf8_ret == NULL) {
2910                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of %s returned NULL",
2911                            __func__, arg_name);
2912                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
2913                 return NULL;
2914         }
2915
2916         return utf8_ret;
2917 }
2918
2919 static gboolean
2920 ReplaceFile (const gunichar2 *replacedFileName, const gunichar2 *replacementFileName, const gunichar2 *backupFileName, guint32 replaceFlags, gpointer exclude, gpointer reserved)
2921 {
2922         gint result, backup_fd = -1,replaced_fd = -1;
2923         gchar *utf8_replacedFileName, *utf8_replacementFileName = NULL, *utf8_backupFileName = NULL;
2924         struct stat stBackup;
2925         gboolean ret = FALSE;
2926
2927         if (!(utf8_replacedFileName = convert_arg_to_utf8 (replacedFileName, "replacedFileName")))
2928                 return FALSE;
2929         if (!(utf8_replacementFileName = convert_arg_to_utf8 (replacementFileName, "replacementFileName")))
2930                 goto replace_cleanup;
2931         if (backupFileName != NULL) {
2932                 if (!(utf8_backupFileName = convert_arg_to_utf8 (backupFileName, "backupFileName")))
2933                         goto replace_cleanup;
2934         }
2935
2936         if (utf8_backupFileName) {
2937                 // Open the backup file for read so we can restore the file if an error occurs.
2938                 backup_fd = _wapi_open (utf8_backupFileName, O_RDONLY, 0);
2939                 result = _wapi_rename (utf8_replacedFileName, utf8_backupFileName);
2940                 if (result == -1)
2941                         goto replace_cleanup;
2942         }
2943
2944         result = _wapi_rename (utf8_replacementFileName, utf8_replacedFileName);
2945         if (result == -1) {
2946                 _wapi_set_last_path_error_from_errno (NULL, utf8_replacementFileName);
2947                 _wapi_rename (utf8_backupFileName, utf8_replacedFileName);
2948                 if (backup_fd != -1 && !fstat (backup_fd, &stBackup)) {
2949                         replaced_fd = _wapi_open (utf8_backupFileName, O_WRONLY | O_CREAT | O_TRUNC,
2950                                                   stBackup.st_mode);
2951                         
2952                         if (replaced_fd == -1)
2953                                 goto replace_cleanup;
2954
2955                         write_file (backup_fd, replaced_fd, &stBackup, FALSE);
2956                 }
2957
2958                 goto replace_cleanup;
2959         }
2960
2961         ret = TRUE;
2962
2963 replace_cleanup:
2964         g_free (utf8_replacedFileName);
2965         g_free (utf8_replacementFileName);
2966         g_free (utf8_backupFileName);
2967         if (backup_fd != -1) {
2968                 MONO_ENTER_GC_SAFE;
2969                 close (backup_fd);
2970                 MONO_EXIT_GC_SAFE;
2971         }
2972         if (replaced_fd != -1) {
2973                 MONO_ENTER_GC_SAFE;
2974                 close (replaced_fd);
2975                 MONO_EXIT_GC_SAFE;
2976         }
2977         return ret;
2978 }
2979
2980 static MonoCoopMutex stdhandle_mutex;
2981
2982 static gpointer
2983 _wapi_stdhandle_create (gint fd, const gchar *name)
2984 {
2985         gpointer handle;
2986         gint flags;
2987         MonoW32HandleFile file_handle = {0};
2988
2989         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: creating standard handle type %s, fd %d", __func__, name, fd);
2990
2991 #if !defined(__native_client__)
2992         /* Check if fd is valid */
2993         do {
2994                 flags = fcntl(fd, F_GETFL);
2995         } while (flags == -1 && errno == EINTR);
2996
2997         if (flags == -1) {
2998                 /* Invalid fd.  Not really much point checking for EBADF
2999                  * specifically
3000                  */
3001                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: fcntl error on fd %d: %s", __func__, fd, strerror(errno));
3002
3003                 mono_w32error_set_last (mono_w32error_unix_to_win32 (errno));
3004                 return INVALID_HANDLE_VALUE;
3005         }
3006
3007         switch (flags & (O_RDONLY|O_WRONLY|O_RDWR)) {
3008         case O_RDONLY:
3009                 file_handle.fileaccess = GENERIC_READ;
3010                 break;
3011         case O_WRONLY:
3012                 file_handle.fileaccess = GENERIC_WRITE;
3013                 break;
3014         case O_RDWR:
3015                 file_handle.fileaccess = GENERIC_READ | GENERIC_WRITE;
3016                 break;
3017         default:
3018                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Can't figure out flags 0x%x", __func__, flags);
3019                 file_handle.fileaccess = 0;
3020                 break;
3021         }
3022 #else
3023         /*
3024          * fcntl will return -1 in nacl, as there is no real file system API.
3025          * Yet, standard streams are available.
3026          */
3027         file_handle.fileaccess = (fd == STDIN_FILENO) ? GENERIC_READ : GENERIC_WRITE;
3028 #endif
3029
3030         file_handle.fd = fd;
3031         file_handle.filename = g_strdup(name);
3032         /* some default security attributes might be needed */
3033         file_handle.security_attributes = 0;
3034
3035         /* Apparently input handles can't be written to.  (I don't
3036          * know if output or error handles can't be read from.)
3037          */
3038         if (fd == 0)
3039                 file_handle.fileaccess &= ~GENERIC_WRITE;
3040
3041         file_handle.sharemode = 0;
3042         file_handle.attrs = 0;
3043
3044         handle = mono_w32handle_new_fd (MONO_W32HANDLE_CONSOLE, fd, &file_handle);
3045         if (handle == INVALID_HANDLE_VALUE) {
3046                 g_warning ("%s: error creating file handle", __func__);
3047                 mono_w32error_set_last (ERROR_GEN_FAILURE);
3048                 return INVALID_HANDLE_VALUE;
3049         }
3050
3051         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: returning handle %p", __func__, handle);
3052
3053         return handle;
3054 }
3055
3056 enum {
3057         STD_INPUT_HANDLE  = -10,
3058         STD_OUTPUT_HANDLE = -11,
3059         STD_ERROR_HANDLE  = -12,
3060 };
3061
3062 static gpointer
3063 mono_w32file_get_std_handle (gint stdhandle)
3064 {
3065         MonoW32HandleFile *file_handle;
3066         gpointer handle;
3067         gint fd;
3068         const gchar *name;
3069         gboolean ok;
3070         
3071         switch(stdhandle) {
3072         case STD_INPUT_HANDLE:
3073                 fd = 0;
3074                 name = "<stdin>";
3075                 break;
3076
3077         case STD_OUTPUT_HANDLE:
3078                 fd = 1;
3079                 name = "<stdout>";
3080                 break;
3081
3082         case STD_ERROR_HANDLE:
3083                 fd = 2;
3084                 name = "<stderr>";
3085                 break;
3086
3087         default:
3088                 g_assert_not_reached ();
3089         }
3090
3091         handle = GINT_TO_POINTER (fd);
3092
3093         mono_coop_mutex_lock (&stdhandle_mutex);
3094
3095         ok = mono_w32handle_lookup (handle, MONO_W32HANDLE_CONSOLE,
3096                                   (gpointer *)&file_handle);
3097         if (ok == FALSE) {
3098                 /* Need to create this console handle */
3099                 handle = _wapi_stdhandle_create (fd, name);
3100                 
3101                 if (handle == INVALID_HANDLE_VALUE) {
3102                         mono_w32error_set_last (ERROR_NO_MORE_FILES);
3103                         goto done;
3104                 }
3105         }
3106         
3107   done:
3108         mono_coop_mutex_unlock (&stdhandle_mutex);
3109
3110         return(handle);
3111 }
3112
3113 gboolean
3114 mono_w32file_read (gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread)
3115 {
3116         MonoW32HandleType type;
3117
3118         type = mono_w32handle_get_type (handle);
3119         
3120         if(io_ops[type].readfile==NULL) {
3121                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3122                 return(FALSE);
3123         }
3124         
3125         return(io_ops[type].readfile (handle, buffer, numbytes, bytesread));
3126 }
3127
3128 gboolean
3129 mono_w32file_write (gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten)
3130 {
3131         MonoW32HandleType type;
3132
3133         type = mono_w32handle_get_type (handle);
3134         
3135         if(io_ops[type].writefile==NULL) {
3136                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3137                 return(FALSE);
3138         }
3139         
3140         return(io_ops[type].writefile (handle, buffer, numbytes, byteswritten));
3141 }
3142
3143 gboolean
3144 mono_w32file_flush (gpointer handle)
3145 {
3146         MonoW32HandleType type;
3147
3148         type = mono_w32handle_get_type (handle);
3149         
3150         if(io_ops[type].flushfile==NULL) {
3151                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3152                 return(FALSE);
3153         }
3154         
3155         return(io_ops[type].flushfile (handle));
3156 }
3157
3158 gboolean
3159 mono_w32file_truncate (gpointer handle)
3160 {
3161         MonoW32HandleType type;
3162
3163         type = mono_w32handle_get_type (handle);
3164         
3165         if (io_ops[type].setendoffile == NULL) {
3166                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3167                 return(FALSE);
3168         }
3169         
3170         return(io_ops[type].setendoffile (handle));
3171 }
3172
3173 guint32
3174 mono_w32file_seek (gpointer handle, gint32 movedistance, gint32 *highmovedistance, guint32 method)
3175 {
3176         MonoW32HandleType type;
3177
3178         type = mono_w32handle_get_type (handle);
3179         
3180         if (io_ops[type].seek == NULL) {
3181                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3182                 return(INVALID_SET_FILE_POINTER);
3183         }
3184         
3185         return(io_ops[type].seek (handle, movedistance, highmovedistance,
3186                                   method));
3187 }
3188
3189 gint
3190 mono_w32file_get_type(gpointer handle)
3191 {
3192         MonoW32HandleType type;
3193
3194         type = mono_w32handle_get_type (handle);
3195         
3196         if (io_ops[type].getfiletype == NULL) {
3197                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3198                 return(FILE_TYPE_UNKNOWN);
3199         }
3200         
3201         return(io_ops[type].getfiletype ());
3202 }
3203
3204 static guint32
3205 GetFileSize(gpointer handle, guint32 *highsize)
3206 {
3207         MonoW32HandleType type;
3208
3209         type = mono_w32handle_get_type (handle);
3210         
3211         if (io_ops[type].getfilesize == NULL) {
3212                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3213                 return(INVALID_FILE_SIZE);
3214         }
3215         
3216         return(io_ops[type].getfilesize (handle, highsize));
3217 }
3218
3219 gboolean
3220 mono_w32file_get_times(gpointer handle, FILETIME *create_time, FILETIME *access_time, FILETIME *write_time)
3221 {
3222         MonoW32HandleType type;
3223
3224         type = mono_w32handle_get_type (handle);
3225         
3226         if (io_ops[type].getfiletime == NULL) {
3227                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3228                 return(FALSE);
3229         }
3230         
3231         return(io_ops[type].getfiletime (handle, create_time, access_time,
3232                                          write_time));
3233 }
3234
3235 gboolean
3236 mono_w32file_set_times(gpointer handle, const FILETIME *create_time, const FILETIME *access_time, const FILETIME *write_time)
3237 {
3238         MonoW32HandleType type;
3239
3240         type = mono_w32handle_get_type (handle);
3241         
3242         if (io_ops[type].setfiletime == NULL) {
3243                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3244                 return(FALSE);
3245         }
3246         
3247         return(io_ops[type].setfiletime (handle, create_time, access_time,
3248                                          write_time));
3249 }
3250
3251 /* A tick is a 100-nanosecond interval.  File time epoch is Midnight,
3252  * January 1 1601 GMT
3253  */
3254
3255 #define TICKS_PER_MILLISECOND 10000L
3256 #define TICKS_PER_SECOND 10000000L
3257 #define TICKS_PER_MINUTE 600000000L
3258 #define TICKS_PER_HOUR 36000000000LL
3259 #define TICKS_PER_DAY 864000000000LL
3260
3261 #define isleap(y) ((y) % 4 == 0 && ((y) % 100 != 0 || (y) % 400 == 0))
3262
3263 static const guint16 mon_yday[2][13]={
3264         {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365},
3265         {0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366},
3266 };
3267
3268 gboolean
3269 mono_w32file_filetime_to_systemtime(const FILETIME *file_time, SYSTEMTIME *system_time)
3270 {
3271         gint64 file_ticks, totaldays, rem, y;
3272         const guint16 *ip;
3273         
3274         if(system_time==NULL) {
3275                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: system_time NULL", __func__);
3276
3277                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3278                 return(FALSE);
3279         }
3280         
3281         file_ticks=((gint64)file_time->dwHighDateTime << 32) +
3282                 file_time->dwLowDateTime;
3283         
3284         /* Really compares if file_ticks>=0x8000000000000000
3285          * (LLONG_MAX+1) but we're working with a signed value for the
3286          * year and day calculation to work later
3287          */
3288         if(file_ticks<0) {
3289                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: file_time too big", __func__);
3290
3291                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3292                 return(FALSE);
3293         }
3294
3295         totaldays=(file_ticks / TICKS_PER_DAY);
3296         rem = file_ticks % TICKS_PER_DAY;
3297         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld rem: %lld", __func__, totaldays, rem);
3298
3299         system_time->wHour=rem/TICKS_PER_HOUR;
3300         rem %= TICKS_PER_HOUR;
3301         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Hour: %d rem: %lld", __func__, system_time->wHour, rem);
3302         
3303         system_time->wMinute = rem / TICKS_PER_MINUTE;
3304         rem %= TICKS_PER_MINUTE;
3305         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Minute: %d rem: %lld", __func__, system_time->wMinute,
3306                   rem);
3307         
3308         system_time->wSecond = rem / TICKS_PER_SECOND;
3309         rem %= TICKS_PER_SECOND;
3310         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Second: %d rem: %lld", __func__, system_time->wSecond,
3311                   rem);
3312         
3313         system_time->wMilliseconds = rem / TICKS_PER_MILLISECOND;
3314         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Milliseconds: %d", __func__,
3315                   system_time->wMilliseconds);
3316
3317         /* January 1, 1601 was a Monday, according to Emacs calendar */
3318         system_time->wDayOfWeek = ((1 + totaldays) % 7) + 1;
3319         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Day of week: %d", __func__, system_time->wDayOfWeek);
3320         
3321         /* This algorithm to find year and month given days from epoch
3322          * from glibc
3323          */
3324         y=1601;
3325         
3326 #define DIV(a, b) ((a) / (b) - ((a) % (b) < 0))
3327 #define LEAPS_THRU_END_OF(y) (DIV(y, 4) - DIV (y, 100) + DIV (y, 400))
3328
3329         while(totaldays < 0 || totaldays >= (isleap(y)?366:365)) {
3330                 /* Guess a corrected year, assuming 365 days per year */
3331                 gint64 yg = y + totaldays / 365 - (totaldays % 365 < 0);
3332                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld yg: %lld y: %lld", __func__,
3333                           totaldays, yg,
3334                           y);
3335                 g_message("%s: LEAPS(yg): %lld LEAPS(y): %lld", __func__,
3336                           LEAPS_THRU_END_OF(yg-1), LEAPS_THRU_END_OF(y-1));
3337                 
3338                 /* Adjust days and y to match the guessed year. */
3339                 totaldays -= ((yg - y) * 365
3340                               + LEAPS_THRU_END_OF (yg - 1)
3341                               - LEAPS_THRU_END_OF (y - 1));
3342                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld", __func__, totaldays);
3343                 y = yg;
3344                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: y: %lld", __func__, y);
3345         }
3346         
3347         system_time->wYear = y;
3348         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Year: %d", __func__, system_time->wYear);
3349
3350         ip = mon_yday[isleap(y)];
3351         
3352         for(y=11; totaldays < ip[y]; --y) {
3353                 continue;
3354         }
3355         totaldays-=ip[y];
3356         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld", __func__, totaldays);
3357         
3358         system_time->wMonth = y + 1;
3359         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Month: %d", __func__, system_time->wMonth);
3360
3361         system_time->wDay = totaldays + 1;
3362         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Day: %d", __func__, system_time->wDay);
3363         
3364         return(TRUE);
3365 }
3366
3367 gpointer
3368 mono_w32file_find_first (const gunichar2 *pattern, WIN32_FIND_DATA *find_data)
3369 {
3370         MonoW32HandleFind find_handle = {0};
3371         gpointer handle;
3372         gchar *utf8_pattern = NULL, *dir_part, *entry_part;
3373         gint result;
3374         
3375         if (pattern == NULL) {
3376                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: pattern is NULL", __func__);
3377
3378                 mono_w32error_set_last (ERROR_PATH_NOT_FOUND);
3379                 return(INVALID_HANDLE_VALUE);
3380         }
3381
3382         utf8_pattern = mono_unicode_to_external (pattern);
3383         if (utf8_pattern == NULL) {
3384                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3385                 
3386                 mono_w32error_set_last (ERROR_INVALID_NAME);
3387                 return(INVALID_HANDLE_VALUE);
3388         }
3389
3390         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: looking for [%s]", __func__, utf8_pattern);
3391         
3392         /* Figure out which bit of the pattern is the directory */
3393         dir_part = _wapi_dirname (utf8_pattern);
3394         entry_part = _wapi_basename (utf8_pattern);
3395
3396 #if 0
3397         /* Don't do this check for now, it breaks if directories
3398          * really do have metachars in their names (see bug 58116).
3399          * FIXME: Figure out a better solution to keep some checks...
3400          */
3401         if (strchr (dir_part, '*') || strchr (dir_part, '?')) {
3402                 mono_w32error_set_last (ERROR_INVALID_NAME);
3403                 g_free (dir_part);
3404                 g_free (entry_part);
3405                 g_free (utf8_pattern);
3406                 return(INVALID_HANDLE_VALUE);
3407         }
3408 #endif
3409
3410         /* The pattern can specify a directory or a set of files.
3411          *
3412          * The pattern can have wildcard characters ? and *, but only
3413          * in the section after the last directory delimiter.  (Return
3414          * ERROR_INVALID_NAME if there are wildcards in earlier path
3415          * sections.)  "*" has the usual 0-or-more chars meaning.  "?" 
3416          * means "match one character", "??" seems to mean "match one
3417          * or two characters", "???" seems to mean "match one, two or
3418          * three characters", etc.  Windows will also try and match
3419          * the mangled "short name" of files, so 8 character patterns
3420          * with wildcards will show some surprising results.
3421          *
3422          * All the written documentation I can find says that '?' 
3423          * should only match one character, and doesn't mention '??',
3424          * '???' etc.  I'm going to assume that the strict behaviour
3425          * (ie '???' means three and only three characters) is the
3426          * correct one, because that lets me use fnmatch(3) rather
3427          * than mess around with regexes.
3428          */
3429
3430         find_handle.namelist = NULL;
3431         result = _wapi_io_scandir (dir_part, entry_part,
3432                                    &find_handle.namelist);
3433         
3434         if (result == 0) {
3435                 /* No files, which windows seems to call
3436                  * FILE_NOT_FOUND
3437                  */
3438                 mono_w32error_set_last (ERROR_FILE_NOT_FOUND);
3439                 g_free (utf8_pattern);
3440                 g_free (entry_part);
3441                 g_free (dir_part);
3442                 return (INVALID_HANDLE_VALUE);
3443         }
3444         
3445         if (result < 0) {
3446                 _wapi_set_last_path_error_from_errno (dir_part, NULL);
3447                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: scandir error: %s", __func__, g_strerror (errno));
3448                 g_free (utf8_pattern);
3449                 g_free (entry_part);
3450                 g_free (dir_part);
3451                 return (INVALID_HANDLE_VALUE);
3452         }
3453
3454         g_free (utf8_pattern);
3455         g_free (entry_part);
3456         
3457         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Got %d matches", __func__, result);
3458
3459         find_handle.dir_part = dir_part;
3460         find_handle.num = result;
3461         find_handle.count = 0;
3462         
3463         handle = mono_w32handle_new (MONO_W32HANDLE_FIND, &find_handle);
3464         if (handle == INVALID_HANDLE_VALUE) {
3465                 g_warning ("%s: error creating find handle", __func__);
3466                 g_free (dir_part);
3467                 g_free (entry_part);
3468                 g_free (utf8_pattern);
3469                 mono_w32error_set_last (ERROR_GEN_FAILURE);
3470                 
3471                 return(INVALID_HANDLE_VALUE);
3472         }
3473
3474         if (handle != INVALID_HANDLE_VALUE &&
3475             !mono_w32file_find_next (handle, find_data)) {
3476                 mono_w32file_find_close (handle);
3477                 mono_w32error_set_last (ERROR_NO_MORE_FILES);
3478                 handle = INVALID_HANDLE_VALUE;
3479         }
3480
3481         return (handle);
3482 }
3483
3484 gboolean
3485 mono_w32file_find_next (gpointer handle, WIN32_FIND_DATA *find_data)
3486 {
3487         MonoW32HandleFind *find_handle;
3488         gboolean ok;
3489         struct stat buf, linkbuf;
3490         gint result;
3491         gchar *filename;
3492         gchar *utf8_filename, *utf8_basename;
3493         gunichar2 *utf16_basename;
3494         time_t create_time;
3495         glong bytes;
3496         gboolean ret = FALSE;
3497         
3498         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FIND,
3499                                 (gpointer *)&find_handle);
3500         if(ok==FALSE) {
3501                 g_warning ("%s: error looking up find handle %p", __func__,
3502                            handle);
3503                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3504                 return(FALSE);
3505         }
3506
3507         mono_w32handle_lock_handle (handle);
3508         
3509 retry:
3510         if (find_handle->count >= find_handle->num) {
3511                 mono_w32error_set_last (ERROR_NO_MORE_FILES);
3512                 goto cleanup;
3513         }
3514
3515         /* stat next match */
3516
3517         filename = g_build_filename (find_handle->dir_part, find_handle->namelist[find_handle->count ++], NULL);
3518
3519         result = _wapi_stat (filename, &buf);
3520         if (result == -1 && errno == ENOENT) {
3521                 /* Might be a dangling symlink */
3522                 result = _wapi_lstat (filename, &buf);
3523         }
3524         
3525         if (result != 0) {
3526                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: stat failed: %s", __func__, filename);
3527
3528                 g_free (filename);
3529                 goto retry;
3530         }
3531
3532 #ifndef __native_client__
3533         result = _wapi_lstat (filename, &linkbuf);
3534         if (result != 0) {
3535                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: lstat failed: %s", __func__, filename);
3536
3537                 g_free (filename);
3538                 goto retry;
3539         }
3540 #endif
3541
3542         utf8_filename = mono_utf8_from_external (filename);
3543         if (utf8_filename == NULL) {
3544                 /* We couldn't turn this filename into utf8 (eg the
3545                  * encoding of the name wasn't convertible), so just
3546                  * ignore it.
3547                  */
3548                 g_warning ("%s: Bad encoding for '%s'\nConsider using MONO_EXTERNAL_ENCODINGS\n", __func__, filename);
3549                 
3550                 g_free (filename);
3551                 goto retry;
3552         }
3553         g_free (filename);
3554         
3555         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Found [%s]", __func__, utf8_filename);
3556         
3557         /* fill data block */
3558
3559         if (buf.st_mtime < buf.st_ctime)
3560                 create_time = buf.st_mtime;
3561         else
3562                 create_time = buf.st_ctime;
3563         
3564 #ifdef __native_client__
3565         find_data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_filename, &buf, NULL);
3566 #else
3567         find_data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_filename, &buf, &linkbuf);
3568 #endif
3569
3570         time_t_to_filetime (create_time, &find_data->ftCreationTime);
3571         time_t_to_filetime (buf.st_atime, &find_data->ftLastAccessTime);
3572         time_t_to_filetime (buf.st_mtime, &find_data->ftLastWriteTime);
3573
3574         if (find_data->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
3575                 find_data->nFileSizeHigh = 0;
3576                 find_data->nFileSizeLow = 0;
3577         } else {
3578                 find_data->nFileSizeHigh = buf.st_size >> 32;
3579                 find_data->nFileSizeLow = buf.st_size & 0xFFFFFFFF;
3580         }
3581
3582         find_data->dwReserved0 = 0;
3583         find_data->dwReserved1 = 0;
3584
3585         utf8_basename = _wapi_basename (utf8_filename);
3586         utf16_basename = g_utf8_to_utf16 (utf8_basename, -1, NULL, &bytes,
3587                                           NULL);
3588         if(utf16_basename==NULL) {
3589                 g_free (utf8_basename);
3590                 g_free (utf8_filename);
3591                 goto retry;
3592         }
3593         ret = TRUE;
3594         
3595         /* utf16 is 2 * utf8 */
3596         bytes *= 2;
3597
3598         memset (find_data->cFileName, '\0', (MAX_PATH*2));
3599
3600         /* Truncating a utf16 string like this might leave the last
3601          * gchar incomplete
3602          */
3603         memcpy (find_data->cFileName, utf16_basename,
3604                 bytes<(MAX_PATH*2)-2?bytes:(MAX_PATH*2)-2);
3605
3606         find_data->cAlternateFileName [0] = 0;  /* not used */
3607
3608         g_free (utf8_basename);
3609         g_free (utf8_filename);
3610         g_free (utf16_basename);
3611
3612 cleanup:
3613         mono_w32handle_unlock_handle (handle);
3614         
3615         return(ret);
3616 }
3617
3618 gboolean
3619 mono_w32file_find_close (gpointer handle)
3620 {
3621         MonoW32HandleFind *find_handle;
3622         gboolean ok;
3623
3624         if (handle == NULL) {
3625                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3626                 return(FALSE);
3627         }
3628         
3629         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FIND,
3630                                 (gpointer *)&find_handle);
3631         if(ok==FALSE) {
3632                 g_warning ("%s: error looking up find handle %p", __func__,
3633                            handle);
3634                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3635                 return(FALSE);
3636         }
3637
3638         mono_w32handle_lock_handle (handle);
3639         
3640         g_strfreev (find_handle->namelist);
3641         g_free (find_handle->dir_part);
3642
3643         mono_w32handle_unlock_handle (handle);
3644         
3645         MONO_ENTER_GC_SAFE;
3646         mono_w32handle_unref (handle);
3647         MONO_EXIT_GC_SAFE;
3648         
3649         return(TRUE);
3650 }
3651
3652 gboolean
3653 mono_w32file_create_directory (const gunichar2 *name)
3654 {
3655         gchar *utf8_name;
3656         gint result;
3657         
3658         if (name == NULL) {
3659                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3660
3661                 mono_w32error_set_last (ERROR_INVALID_NAME);
3662                 return(FALSE);
3663         }
3664         
3665         utf8_name = mono_unicode_to_external (name);
3666         if (utf8_name == NULL) {
3667                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3668         
3669                 mono_w32error_set_last (ERROR_INVALID_NAME);
3670                 return FALSE;
3671         }
3672
3673         result = _wapi_mkdir (utf8_name, 0777);
3674
3675         if (result == 0) {
3676                 g_free (utf8_name);
3677                 return TRUE;
3678         }
3679
3680         _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3681         g_free (utf8_name);
3682         return FALSE;
3683 }
3684
3685 gboolean
3686 mono_w32file_remove_directory (const gunichar2 *name)
3687 {
3688         gchar *utf8_name;
3689         gint result;
3690         
3691         if (name == NULL) {
3692                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3693
3694                 mono_w32error_set_last (ERROR_INVALID_NAME);
3695                 return(FALSE);
3696         }
3697
3698         utf8_name = mono_unicode_to_external (name);
3699         if (utf8_name == NULL) {
3700                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3701                 
3702                 mono_w32error_set_last (ERROR_INVALID_NAME);
3703                 return FALSE;
3704         }
3705
3706         result = _wapi_rmdir (utf8_name);
3707         if (result == -1) {
3708                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3709                 g_free (utf8_name);
3710                 
3711                 return(FALSE);
3712         }
3713         g_free (utf8_name);
3714
3715         return(TRUE);
3716 }
3717
3718 guint32
3719 mono_w32file_get_attributes (const gunichar2 *name)
3720 {
3721         gchar *utf8_name;
3722         struct stat buf, linkbuf;
3723         gint result;
3724         guint32 ret;
3725         
3726         if (name == NULL) {
3727                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3728
3729                 mono_w32error_set_last (ERROR_INVALID_NAME);
3730                 return(FALSE);
3731         }
3732         
3733         utf8_name = mono_unicode_to_external (name);
3734         if (utf8_name == NULL) {
3735                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3736
3737                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3738                 return (INVALID_FILE_ATTRIBUTES);
3739         }
3740
3741         result = _wapi_stat (utf8_name, &buf);
3742         if (result == -1 && (errno == ENOENT || errno == ELOOP)) {
3743                 /* Might be a dangling symlink... */
3744                 result = _wapi_lstat (utf8_name, &buf);
3745         }
3746
3747         if (result != 0) {
3748                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3749                 g_free (utf8_name);
3750                 return (INVALID_FILE_ATTRIBUTES);
3751         }
3752
3753 #ifndef __native_client__
3754         result = _wapi_lstat (utf8_name, &linkbuf);
3755         if (result != 0) {
3756                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3757                 g_free (utf8_name);
3758                 return (INVALID_FILE_ATTRIBUTES);
3759         }
3760 #endif
3761         
3762 #ifdef __native_client__
3763         ret = _wapi_stat_to_file_attributes (utf8_name, &buf, NULL);
3764 #else
3765         ret = _wapi_stat_to_file_attributes (utf8_name, &buf, &linkbuf);
3766 #endif
3767         
3768         g_free (utf8_name);
3769
3770         return(ret);
3771 }
3772
3773 gboolean
3774 mono_w32file_get_attributes_ex (const gunichar2 *name, MonoIOStat *stat)
3775 {
3776         gchar *utf8_name;
3777
3778         struct stat buf, linkbuf;
3779         gint result;
3780         
3781         if (name == NULL) {
3782                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3783
3784                 mono_w32error_set_last (ERROR_INVALID_NAME);
3785                 return(FALSE);
3786         }
3787
3788         utf8_name = mono_unicode_to_external (name);
3789         if (utf8_name == NULL) {
3790                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3791
3792                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3793                 return FALSE;
3794         }
3795
3796         result = _wapi_stat (utf8_name, &buf);
3797         if (result == -1 && errno == ENOENT) {
3798                 /* Might be a dangling symlink... */
3799                 result = _wapi_lstat (utf8_name, &buf);
3800         }
3801         
3802         if (result != 0) {
3803                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3804                 g_free (utf8_name);
3805                 return FALSE;
3806         }
3807
3808         result = _wapi_lstat (utf8_name, &linkbuf);
3809         if (result != 0) {
3810                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3811                 g_free (utf8_name);
3812                 return(FALSE);
3813         }
3814
3815         /* fill stat block */
3816
3817         stat->attributes = _wapi_stat_to_file_attributes (utf8_name, &buf, &linkbuf);
3818         stat->creation_time = (((guint64) (buf.st_mtime < buf.st_ctime ? buf.st_mtime : buf.st_ctime)) * 10 * 1000 * 1000) + 116444736000000000ULL;
3819         stat->last_access_time = (((guint64) (buf.st_atime)) * 10 * 1000 * 1000) + 116444736000000000ULL;
3820         stat->last_write_time = (((guint64) (buf.st_mtime)) * 10 * 1000 * 1000) + 116444736000000000ULL;
3821         stat->length = (stat->attributes & FILE_ATTRIBUTE_DIRECTORY) ? 0 : buf.st_size;
3822
3823         g_free (utf8_name);
3824         return TRUE;
3825 }
3826
3827 gboolean
3828 mono_w32file_set_attributes (const gunichar2 *name, guint32 attrs)
3829 {
3830         /* FIXME: think of something clever to do on unix */
3831         gchar *utf8_name;
3832         struct stat buf;
3833         gint result;
3834
3835         /*
3836          * Currently we only handle one *internal* case, with a value that is
3837          * not standard: 0x80000000, which means `set executable bit'
3838          */
3839         
3840         if (name == NULL) {
3841                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3842
3843                 mono_w32error_set_last (ERROR_INVALID_NAME);
3844                 return(FALSE);
3845         }
3846
3847         utf8_name = mono_unicode_to_external (name);
3848         if (utf8_name == NULL) {
3849                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3850
3851                 mono_w32error_set_last (ERROR_INVALID_NAME);
3852                 return FALSE;
3853         }
3854
3855         result = _wapi_stat (utf8_name, &buf);
3856         if (result == -1 && errno == ENOENT) {
3857                 /* Might be a dangling symlink... */
3858                 result = _wapi_lstat (utf8_name, &buf);
3859         }
3860
3861         if (result != 0) {
3862                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3863                 g_free (utf8_name);
3864                 return FALSE;
3865         }
3866
3867         /* Contrary to the documentation, ms allows NORMAL to be
3868          * specified along with other attributes, so dont bother to
3869          * catch that case here.
3870          */
3871         if (attrs & FILE_ATTRIBUTE_READONLY) {
3872                 result = _wapi_chmod (utf8_name, buf.st_mode & ~(S_IWUSR | S_IWOTH | S_IWGRP));
3873         } else {
3874                 result = _wapi_chmod (utf8_name, buf.st_mode | S_IWUSR);
3875         }
3876
3877         /* Ignore the other attributes for now */
3878
3879         if (attrs & 0x80000000){
3880                 mode_t exec_mask = 0;
3881
3882                 if ((buf.st_mode & S_IRUSR) != 0)
3883                         exec_mask |= S_IXUSR;
3884
3885                 if ((buf.st_mode & S_IRGRP) != 0)
3886                         exec_mask |= S_IXGRP;
3887
3888                 if ((buf.st_mode & S_IROTH) != 0)
3889                         exec_mask |= S_IXOTH;
3890
3891                 MONO_ENTER_GC_SAFE;
3892                 result = chmod (utf8_name, buf.st_mode | exec_mask);
3893                 MONO_EXIT_GC_SAFE;
3894         }
3895         /* Don't bother to reset executable (might need to change this
3896          * policy)
3897          */
3898         
3899         g_free (utf8_name);
3900
3901         return(TRUE);
3902 }
3903
3904 guint32
3905 mono_w32file_get_cwd (guint32 length, gunichar2 *buffer)
3906 {
3907         gunichar2 *utf16_path;
3908         glong count;
3909         gsize bytes;
3910
3911 #ifdef __native_client__
3912         gchar *path = g_get_current_dir ();
3913         if (length < strlen(path) + 1 || path == NULL)
3914                 return 0;
3915         memcpy (buffer, path, strlen(path) + 1);
3916 #else
3917         if (getcwd ((gchar*)buffer, length) == NULL) {
3918                 if (errno == ERANGE) { /*buffer length is not big enough */ 
3919                         gchar *path = g_get_current_dir (); /*FIXME g_get_current_dir doesn't work with broken paths and calling it just to know the path length is silly*/
3920                         if (path == NULL)
3921                                 return 0;
3922                         utf16_path = mono_unicode_from_external (path, &bytes);
3923                         g_free (utf16_path);
3924                         g_free (path);
3925                         return (bytes/2)+1;
3926                 }
3927                 _wapi_set_last_error_from_errno ();
3928                 return 0;
3929         }
3930 #endif
3931
3932         utf16_path = mono_unicode_from_external ((gchar*)buffer, &bytes);
3933         count = (bytes/2)+1;
3934         g_assert (count <= length); /*getcwd must have failed before with ERANGE*/
3935
3936         /* Add the terminator */
3937         memset (buffer, '\0', bytes+2);
3938         memcpy (buffer, utf16_path, bytes);
3939         
3940         g_free (utf16_path);
3941
3942         return count;
3943 }
3944
3945 gboolean
3946 mono_w32file_set_cwd (const gunichar2 *path)
3947 {
3948         gchar *utf8_path;
3949         gboolean result;
3950
3951         if (path == NULL) {
3952                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3953                 return(FALSE);
3954         }
3955         
3956         utf8_path = mono_unicode_to_external (path);
3957         if (_wapi_chdir (utf8_path) != 0) {
3958                 _wapi_set_last_error_from_errno ();
3959                 result = FALSE;
3960         }
3961         else
3962                 result = TRUE;
3963
3964         g_free (utf8_path);
3965         return result;
3966 }
3967
3968 gboolean
3969 mono_w32file_create_pipe (gpointer *readpipe, gpointer *writepipe, guint32 size)
3970 {
3971         MonoW32HandleFile pipe_read_handle = {0};
3972         MonoW32HandleFile pipe_write_handle = {0};
3973         gpointer read_handle;
3974         gpointer write_handle;
3975         gint filedes[2];
3976         gint ret;
3977         
3978         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Creating pipe", __func__);
3979
3980         MONO_ENTER_GC_SAFE;
3981         ret=pipe (filedes);
3982         MONO_EXIT_GC_SAFE;
3983         if(ret==-1) {
3984                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Error creating pipe: %s", __func__,
3985                            strerror (errno));
3986                 
3987                 _wapi_set_last_error_from_errno ();
3988                 return(FALSE);
3989         }
3990
3991         if (filedes[0] >= mono_w32handle_fd_reserve ||
3992             filedes[1] >= mono_w32handle_fd_reserve) {
3993                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: File descriptor is too big", __func__);
3994
3995                 mono_w32error_set_last (ERROR_TOO_MANY_OPEN_FILES);
3996                 
3997                 MONO_ENTER_GC_SAFE;
3998                 close (filedes[0]);
3999                 close (filedes[1]);
4000                 MONO_EXIT_GC_SAFE;
4001                 
4002                 return(FALSE);
4003         }
4004         
4005         /* filedes[0] is open for reading, filedes[1] for writing */
4006
4007         pipe_read_handle.fd = filedes [0];
4008         pipe_read_handle.fileaccess = GENERIC_READ;
4009         read_handle = mono_w32handle_new_fd (MONO_W32HANDLE_PIPE, filedes[0],
4010                                            &pipe_read_handle);
4011         if (read_handle == INVALID_HANDLE_VALUE) {
4012                 g_warning ("%s: error creating pipe read handle", __func__);
4013                 MONO_ENTER_GC_SAFE;
4014                 close (filedes[0]);
4015                 close (filedes[1]);
4016                 MONO_EXIT_GC_SAFE;
4017                 mono_w32error_set_last (ERROR_GEN_FAILURE);
4018                 
4019                 return(FALSE);
4020         }
4021         
4022         pipe_write_handle.fd = filedes [1];
4023         pipe_write_handle.fileaccess = GENERIC_WRITE;
4024         write_handle = mono_w32handle_new_fd (MONO_W32HANDLE_PIPE, filedes[1],
4025                                             &pipe_write_handle);
4026         if (write_handle == INVALID_HANDLE_VALUE) {
4027                 g_warning ("%s: error creating pipe write handle", __func__);
4028
4029                 MONO_ENTER_GC_SAFE;
4030                 mono_w32handle_unref (read_handle);
4031                 
4032                 close (filedes[0]);
4033                 close (filedes[1]);
4034                 MONO_EXIT_GC_SAFE;
4035                 mono_w32error_set_last (ERROR_GEN_FAILURE);
4036                 
4037                 return(FALSE);
4038         }
4039         
4040         *readpipe = read_handle;
4041         *writepipe = write_handle;
4042
4043         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Returning pipe: read handle %p, write handle %p",
4044                    __func__, read_handle, write_handle);
4045
4046         return(TRUE);
4047 }
4048
4049 #ifdef HAVE_GETFSSTAT
4050 /* Darwin has getfsstat */
4051 gint32
4052 mono_w32file_get_logical_drive (guint32 len, gunichar2 *buf)
4053 {
4054         struct statfs *stats;
4055         gint size, n, i;
4056         gunichar2 *dir;
4057         glong length, total = 0;
4058         gint syscall_res;
4059
4060         MONO_ENTER_GC_SAFE;
4061         n = getfsstat (NULL, 0, MNT_NOWAIT);
4062         MONO_EXIT_GC_SAFE;
4063         if (n == -1)
4064                 return 0;
4065         size = n * sizeof (struct statfs);
4066         stats = (struct statfs *) g_malloc (size);
4067         if (stats == NULL)
4068                 return 0;
4069         MONO_ENTER_GC_SAFE;
4070         syscall_res = getfsstat (stats, size, MNT_NOWAIT);
4071         MONO_EXIT_GC_SAFE;
4072         if (syscall_res == -1){
4073                 g_free (stats);
4074                 return 0;
4075         }
4076         for (i = 0; i < n; i++){
4077                 dir = g_utf8_to_utf16 (stats [i].f_mntonname, -1, NULL, &length, NULL);
4078                 if (total + length < len){
4079                         memcpy (buf + total, dir, sizeof (gunichar2) * length);
4080                         buf [total+length] = 0;
4081                 } 
4082                 g_free (dir);
4083                 total += length + 1;
4084         }
4085         if (total < len)
4086                 buf [total] = 0;
4087         total++;
4088         g_free (stats);
4089         return total;
4090 }
4091 #else
4092 /* In-place octal sequence replacement */
4093 static void
4094 unescape_octal (gchar *str)
4095 {
4096         gchar *rptr;
4097         gchar *wptr;
4098
4099         if (str == NULL)
4100                 return;
4101
4102         rptr = wptr = str;
4103         while (*rptr != '\0') {
4104                 if (*rptr == '\\') {
4105                         gchar c;
4106                         rptr++;
4107                         c = (*(rptr++) - '0') << 6;
4108                         c += (*(rptr++) - '0') << 3;
4109                         c += *(rptr++) - '0';
4110                         *wptr++ = c;
4111                 } else if (wptr != rptr) {
4112                         *wptr++ = *rptr++;
4113                 } else {
4114                         rptr++; wptr++;
4115                 }
4116         }
4117         *wptr = '\0';
4118 }
4119 static gint32 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf);
4120
4121 #if __linux__
4122 #define GET_LOGICAL_DRIVE_STRINGS_BUFFER 512
4123 #define GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER 512
4124 #define GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER 64
4125
4126 typedef struct 
4127 {
4128         glong total;
4129         guint32 buffer_index;
4130         guint32 mountpoint_index;
4131         guint32 field_number;
4132         guint32 allocated_size;
4133         guint32 fsname_index;
4134         guint32 fstype_index;
4135         gchar mountpoint [GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER + 1];
4136         gchar *mountpoint_allocated;
4137         gchar buffer [GET_LOGICAL_DRIVE_STRINGS_BUFFER];
4138         gchar fsname [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
4139         gchar fstype [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
4140         ssize_t nbytes;
4141         gchar delimiter;
4142         gboolean check_mount_source;
4143 } LinuxMountInfoParseState;
4144
4145 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
4146 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
4147 static void append_to_mountpoint (LinuxMountInfoParseState *state);
4148 static gboolean add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
4149
4150 gint32
4151 mono_w32file_get_logical_drive (guint32 len, gunichar2 *buf)
4152 {
4153         gint fd;
4154         gint32 ret = 0;
4155         LinuxMountInfoParseState state;
4156         gboolean (*parser)(guint32, gunichar2*, LinuxMountInfoParseState*) = NULL;
4157
4158         memset (buf, 0, len * sizeof (gunichar2));
4159         MONO_ENTER_GC_SAFE;
4160         fd = open ("/proc/self/mountinfo", O_RDONLY);
4161         MONO_EXIT_GC_SAFE;
4162         if (fd != -1)
4163                 parser = GetLogicalDriveStrings_MountInfo;
4164         else {
4165                 MONO_ENTER_GC_SAFE;
4166                 fd = open ("/proc/mounts", O_RDONLY);
4167                 MONO_EXIT_GC_SAFE;
4168                 if (fd != -1)
4169                         parser = GetLogicalDriveStrings_Mounts;
4170         }
4171
4172         if (!parser) {
4173                 ret = GetLogicalDriveStrings_Mtab (len, buf);
4174                 goto done_and_out;
4175         }
4176
4177         memset (&state, 0, sizeof (LinuxMountInfoParseState));
4178         state.field_number = 1;
4179         state.delimiter = ' ';
4180
4181         while (1) {
4182                 MONO_ENTER_GC_SAFE;
4183                 state.nbytes = read (fd, state.buffer, GET_LOGICAL_DRIVE_STRINGS_BUFFER);
4184                 MONO_EXIT_GC_SAFE;
4185                 if (!(state.nbytes > 0))
4186                         break;
4187                 state.buffer_index = 0;
4188
4189                 while ((*parser)(len, buf, &state)) {
4190                         if (state.buffer [state.buffer_index] == '\n') {
4191                                 gboolean quit = add_drive_string (len, buf, &state);
4192                                 state.field_number = 1;
4193                                 state.buffer_index++;
4194                                 if (state.mountpoint_allocated) {
4195                                         g_free (state.mountpoint_allocated);
4196                                         state.mountpoint_allocated = NULL;
4197                                 }
4198                                 if (quit) {
4199                                         ret = state.total;
4200                                         goto done_and_out;
4201                                 }
4202                         }
4203                 }
4204         };
4205         ret = state.total;
4206
4207   done_and_out:
4208         if (fd != -1) {
4209                 MONO_ENTER_GC_SAFE;
4210                 close (fd);
4211                 MONO_EXIT_GC_SAFE;
4212         }
4213         return ret;
4214 }
4215
4216 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
4217 {
4218         gchar *ptr;
4219
4220         if (state->field_number == 1)
4221                 state->check_mount_source = TRUE;
4222
4223         while (state->buffer_index < (guint32)state->nbytes) {
4224                 if (state->buffer [state->buffer_index] == state->delimiter) {
4225                         state->field_number++;
4226                         switch (state->field_number) {
4227                                 case 2:
4228                                         state->mountpoint_index = 0;
4229                                         break;
4230
4231                                 case 3:
4232                                         if (state->mountpoint_allocated)
4233                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
4234                                         else
4235                                                 state->mountpoint [state->mountpoint_index] = 0;
4236                                         break;
4237
4238                                 default:
4239                                         ptr = (gchar*)memchr (state->buffer + state->buffer_index, '\n', GET_LOGICAL_DRIVE_STRINGS_BUFFER - state->buffer_index);
4240                                         if (ptr)
4241                                                 state->buffer_index = (ptr - (gchar*)state->buffer) - 1;
4242                                         else
4243                                                 state->buffer_index = state->nbytes;
4244                                         return TRUE;
4245                         }
4246                         state->buffer_index++;
4247                         continue;
4248                 } else if (state->buffer [state->buffer_index] == '\n')
4249                         return TRUE;
4250
4251                 switch (state->field_number) {
4252                         case 1:
4253                                 if (state->check_mount_source) {
4254                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
4255                                                 /* We can ignore the rest, it's a device
4256                                                  * path */
4257                                                 state->check_mount_source = FALSE;
4258                                                 state->fsname [state->fsname_index++] = '/';
4259                                                 break;
4260                                         }
4261                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
4262                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
4263                                 }
4264                                 break;
4265
4266                         case 2:
4267                                 append_to_mountpoint (state);
4268                                 break;
4269
4270                         case 3:
4271                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
4272                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
4273                                 break;
4274                 }
4275
4276                 state->buffer_index++;
4277         }
4278
4279         return FALSE;
4280 }
4281
4282 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
4283 {
4284         while (state->buffer_index < (guint32)state->nbytes) {
4285                 if (state->buffer [state->buffer_index] == state->delimiter) {
4286                         state->field_number++;
4287                         switch (state->field_number) {
4288                                 case 5:
4289                                         state->mountpoint_index = 0;
4290                                         break;
4291
4292                                 case 6:
4293                                         if (state->mountpoint_allocated)
4294                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
4295                                         else
4296                                                 state->mountpoint [state->mountpoint_index] = 0;
4297                                         break;
4298
4299                                 case 7:
4300                                         state->delimiter = '-';
4301                                         break;
4302
4303                                 case 8:
4304                                         state->delimiter = ' ';
4305                                         break;
4306
4307                                 case 10:
4308                                         state->check_mount_source = TRUE;
4309                                         break;
4310                         }
4311                         state->buffer_index++;
4312                         continue;
4313                 } else if (state->buffer [state->buffer_index] == '\n')
4314                         return TRUE;
4315
4316                 switch (state->field_number) {
4317                         case 5:
4318                                 append_to_mountpoint (state);
4319                                 break;
4320
4321                         case 9:
4322                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
4323                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
4324                                 break;
4325
4326                         case 10:
4327                                 if (state->check_mount_source) {
4328                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
4329                                                 /* We can ignore the rest, it's a device
4330                                                  * path */
4331                                                 state->check_mount_source = FALSE;
4332                                                 state->fsname [state->fsname_index++] = '/';
4333                                                 break;
4334                                         }
4335                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
4336                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
4337                                 }
4338                                 break;
4339                 }
4340
4341                 state->buffer_index++;
4342         }
4343
4344         return FALSE;
4345 }
4346
4347 static void
4348 append_to_mountpoint (LinuxMountInfoParseState *state)
4349 {
4350         gchar ch = state->buffer [state->buffer_index];
4351         if (state->mountpoint_allocated) {
4352                 if (state->mountpoint_index >= state->allocated_size) {
4353                         guint32 newsize = (state->allocated_size << 1) + 1;
4354                         gchar *newbuf = (gchar *)g_malloc0 (newsize * sizeof (gchar));
4355
4356                         memcpy (newbuf, state->mountpoint_allocated, state->mountpoint_index);
4357                         g_free (state->mountpoint_allocated);
4358                         state->mountpoint_allocated = newbuf;
4359                         state->allocated_size = newsize;
4360                 }
4361                 state->mountpoint_allocated [state->mountpoint_index++] = ch;
4362         } else {
4363                 if (state->mountpoint_index >= GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER) {
4364                         state->allocated_size = (state->mountpoint_index << 1) + 1;
4365                         state->mountpoint_allocated = (gchar *)g_malloc0 (state->allocated_size * sizeof (gchar));
4366                         memcpy (state->mountpoint_allocated, state->mountpoint, state->mountpoint_index);
4367                         state->mountpoint_allocated [state->mountpoint_index++] = ch;
4368                 } else
4369                         state->mountpoint [state->mountpoint_index++] = ch;
4370         }
4371 }
4372
4373 static gboolean
4374 add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
4375 {
4376         gboolean quit = FALSE;
4377         gboolean ignore_entry;
4378
4379         if (state->fsname_index == 1 && state->fsname [0] == '/')
4380                 ignore_entry = FALSE;
4381         else if (memcmp ("overlay", state->fsname, state->fsname_index) == 0 ||
4382                 memcmp ("aufs", state->fstype, state->fstype_index) == 0) {
4383                 /* Don't ignore overlayfs and aufs - these might be used on Docker
4384                  * (https://bugzilla.xamarin.com/show_bug.cgi?id=31021) */
4385                 ignore_entry = FALSE;
4386         } else if (state->fsname_index == 0 || memcmp ("none", state->fsname, state->fsname_index) == 0) {
4387                 ignore_entry = TRUE;
4388         } else if (state->fstype_index >= 5 && memcmp ("fuse.", state->fstype, 5) == 0) {
4389                 /* Ignore GNOME's gvfs */
4390                 if (state->fstype_index == 21 && memcmp ("fuse.gvfs-fuse-daemon", state->fstype, state->fstype_index) == 0)
4391                         ignore_entry = TRUE;
4392                 else
4393                         ignore_entry = FALSE;
4394         } else if (state->fstype_index == 3 && memcmp ("nfs", state->fstype, state->fstype_index) == 0)
4395                 ignore_entry = FALSE;
4396         else
4397                 ignore_entry = TRUE;
4398
4399         if (!ignore_entry) {
4400                 gunichar2 *dir;
4401                 glong length;
4402                 gchar *mountpoint = state->mountpoint_allocated ? state->mountpoint_allocated : state->mountpoint;
4403
4404                 unescape_octal (mountpoint);
4405                 dir = g_utf8_to_utf16 (mountpoint, -1, NULL, &length, NULL);
4406                 if (state->total + length + 1 > len) {
4407                         quit = TRUE;
4408                         state->total = len * 2;
4409                 } else {
4410                         length++;
4411                         memcpy (buf + state->total, dir, sizeof (gunichar2) * length);
4412                         state->total += length;
4413                 }
4414                 g_free (dir);
4415         }
4416         state->fsname_index = 0;
4417         state->fstype_index = 0;
4418
4419         return quit;
4420 }
4421 #else
4422 gint32
4423 mono_w32file_get_logical_drive (guint32 len, gunichar2 *buf)
4424 {
4425         return GetLogicalDriveStrings_Mtab (len, buf);
4426 }
4427 #endif
4428 static gint32
4429 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf)
4430 {
4431         FILE *fp;
4432         gunichar2 *ptr, *dir;
4433         glong length, total = 0;
4434         gchar buffer [512];
4435         gchar **splitted;
4436
4437         memset (buf, 0, sizeof (gunichar2) * (len + 1)); 
4438         buf [0] = '/';
4439         buf [1] = 0;
4440         buf [2] = 0;
4441
4442         /* Sigh, mntent and friends don't work well.
4443          * It stops on the first line that doesn't begin with a '/'.
4444          * (linux 2.6.5, libc 2.3.2.ds1-12) - Gonz */
4445         MONO_ENTER_GC_SAFE;
4446         fp = fopen ("/etc/mtab", "rt");
4447         MONO_EXIT_GC_SAFE;
4448         if (fp == NULL) {
4449                 MONO_ENTER_GC_SAFE;
4450                 fp = fopen ("/etc/mnttab", "rt");
4451                 MONO_EXIT_GC_SAFE;
4452                 if (fp == NULL)
4453                         return 1;
4454         }
4455
4456         ptr = buf;
4457         while (1) {
4458                 gchar *fgets_res;
4459                 MONO_ENTER_GC_SAFE;
4460                 fgets_res = fgets (buffer, 512, fp);
4461                 MONO_EXIT_GC_SAFE;
4462                 if (!fgets_res)
4463                         break;
4464                 if (*buffer != '/')
4465                         continue;
4466
4467                 splitted = g_strsplit (buffer, " ", 0);
4468                 if (!*splitted || !*(splitted + 1)) {
4469                         g_strfreev (splitted);
4470                         continue;
4471                 }
4472
4473                 unescape_octal (*(splitted + 1));
4474                 dir = g_utf8_to_utf16 (*(splitted + 1), -1, NULL, &length, NULL);
4475                 g_strfreev (splitted);
4476                 if (total + length + 1 > len) {
4477                         MONO_ENTER_GC_SAFE;
4478                         fclose (fp);
4479                         MONO_EXIT_GC_SAFE;
4480                         g_free (dir);
4481                         return len * 2; /* guess */
4482                 }
4483
4484                 memcpy (ptr + total, dir, sizeof (gunichar2) * length);
4485                 g_free (dir);
4486                 total += length + 1;
4487         }
4488
4489         MONO_ENTER_GC_SAFE;
4490         fclose (fp);
4491         MONO_EXIT_GC_SAFE;
4492         return total;
4493 /* Commented out, does not work with my mtab!!! - Gonz */
4494 #ifdef NOTENABLED /* HAVE_MNTENT_H */
4495 {
4496         FILE *fp;
4497         struct mntent *mnt;
4498         gunichar2 *ptr, *dir;
4499         glong len, total = 0;
4500         
4501
4502         MONO_ENTER_GC_SAFE;
4503         fp = setmntent ("/etc/mtab", "rt");
4504         MONO_EXIT_GC_SAFE;
4505         if (fp == NULL) {
4506                 MONO_ENTER_GC_SAFE;
4507                 fp = setmntent ("/etc/mnttab", "rt");
4508                 MONO_EXIT_GC_SAFE;
4509                 if (fp == NULL)
4510                         return;
4511         }
4512
4513         ptr = buf;
4514         while (1) {
4515                 MONO_ENTER_GC_SAFE;
4516                 mnt = getmntent (fp);
4517                 MONO_EXIT_GC_SAFE;
4518                 if (mnt == NULL)
4519                         break;
4520                 g_print ("GOT %s\n", mnt->mnt_dir);
4521                 dir = g_utf8_to_utf16 (mnt->mnt_dir, &len, NULL, NULL, NULL);
4522                 if (total + len + 1 > len) {
4523                         MONO_ENTER_GC_SAFE;
4524                         endmntent (fp);
4525                         MONO_EXIT_GC_SAFE;
4526                         return len * 2; /* guess */
4527                 }
4528
4529                 memcpy (ptr + total, dir, sizeof (gunichar2) * len);
4530                 g_free (dir);
4531                 total += len + 1;
4532         }
4533
4534         MONO_ENTER_GC_SAFE;
4535         endmntent (fp);
4536         MONO_EXIT_GC_SAFE;
4537         return total;
4538 }
4539 #endif
4540 }
4541 #endif
4542
4543 #if defined(HAVE_STATVFS) || defined(HAVE_STATFS)
4544 gboolean
4545 mono_w32file_get_disk_free_space (const gunichar2 *path_name, guint64 *free_bytes_avail, guint64 *total_number_of_bytes, guint64 *total_number_of_free_bytes)
4546 {
4547 #ifdef HAVE_STATVFS
4548         struct statvfs fsstat;
4549 #elif defined(HAVE_STATFS)
4550         struct statfs fsstat;
4551 #endif
4552         gboolean isreadonly;
4553         gchar *utf8_path_name;
4554         gint ret;
4555         unsigned long block_size;
4556
4557         if (path_name == NULL) {
4558                 utf8_path_name = g_strdup (g_get_current_dir());
4559                 if (utf8_path_name == NULL) {
4560                         mono_w32error_set_last (ERROR_DIRECTORY);
4561                         return(FALSE);
4562                 }
4563         }
4564         else {
4565                 utf8_path_name = mono_unicode_to_external (path_name);
4566                 if (utf8_path_name == NULL) {
4567                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
4568
4569                         mono_w32error_set_last (ERROR_INVALID_NAME);
4570                         return(FALSE);
4571                 }
4572         }
4573
4574         do {
4575 #ifdef HAVE_STATVFS
4576                 MONO_ENTER_GC_SAFE;
4577                 ret = statvfs (utf8_path_name, &fsstat);
4578                 MONO_EXIT_GC_SAFE;
4579                 isreadonly = ((fsstat.f_flag & ST_RDONLY) == ST_RDONLY);
4580                 block_size = fsstat.f_frsize;
4581 #elif defined(HAVE_STATFS)
4582                 MONO_ENTER_GC_SAFE;
4583                 ret = statfs (utf8_path_name, &fsstat);
4584                 MONO_EXIT_GC_SAFE;
4585 #if defined (MNT_RDONLY)
4586                 isreadonly = ((fsstat.f_flags & MNT_RDONLY) == MNT_RDONLY);
4587 #elif defined (MS_RDONLY)
4588                 isreadonly = ((fsstat.f_flags & MS_RDONLY) == MS_RDONLY);
4589 #endif
4590                 block_size = fsstat.f_bsize;
4591 #endif
4592         } while(ret == -1 && errno == EINTR);
4593
4594         g_free(utf8_path_name);
4595
4596         if (ret == -1) {
4597                 _wapi_set_last_error_from_errno ();
4598                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: statvfs failed: %s", __func__, strerror (errno));
4599                 return(FALSE);
4600         }
4601
4602         /* total number of free bytes for non-root */
4603         if (free_bytes_avail != NULL) {
4604                 if (isreadonly) {
4605                         *free_bytes_avail = 0;
4606                 }
4607                 else {
4608                         *free_bytes_avail = block_size * (guint64)fsstat.f_bavail;
4609                 }
4610         }
4611
4612         /* total number of bytes available for non-root */
4613         if (total_number_of_bytes != NULL) {
4614                 *total_number_of_bytes = block_size * (guint64)fsstat.f_blocks;
4615         }
4616
4617         /* total number of bytes available for root */
4618         if (total_number_of_free_bytes != NULL) {
4619                 if (isreadonly) {
4620                         *total_number_of_free_bytes = 0;
4621                 }
4622                 else {
4623                         *total_number_of_free_bytes = block_size * (guint64)fsstat.f_bfree;
4624                 }
4625         }
4626         
4627         return(TRUE);
4628 }
4629 #else
4630 gboolean
4631 mono_w32file_get_disk_free_space (const gunichar2 *path_name, guint64 *free_bytes_avail, guint64 *total_number_of_bytes, guint64 *total_number_of_free_bytes)
4632 {
4633         if (free_bytes_avail != NULL) {
4634                 *free_bytes_avail = (guint64) -1;
4635         }
4636
4637         if (total_number_of_bytes != NULL) {
4638                 *total_number_of_bytes = (guint64) -1;
4639         }
4640
4641         if (total_number_of_free_bytes != NULL) {
4642                 *total_number_of_free_bytes = (guint64) -1;
4643         }
4644
4645         return(TRUE);
4646 }
4647 #endif
4648
4649 /*
4650  * General Unix support
4651  */
4652 typedef struct {
4653         guint32 drive_type;
4654 #if __linux__
4655         const long fstypeid;
4656 #endif
4657         const gchar* fstype;
4658 } _wapi_drive_type;
4659
4660 static _wapi_drive_type _wapi_drive_types[] = {
4661 #if PLATFORM_MACOSX
4662         { DRIVE_REMOTE, "afp" },
4663         { DRIVE_REMOTE, "autofs" },
4664         { DRIVE_CDROM, "cddafs" },
4665         { DRIVE_CDROM, "cd9660" },
4666         { DRIVE_RAMDISK, "devfs" },
4667         { DRIVE_FIXED, "exfat" },
4668         { DRIVE_RAMDISK, "fdesc" },
4669         { DRIVE_REMOTE, "ftp" },
4670         { DRIVE_FIXED, "hfs" },
4671         { DRIVE_FIXED, "msdos" },
4672         { DRIVE_REMOTE, "nfs" },
4673         { DRIVE_FIXED, "ntfs" },
4674         { DRIVE_REMOTE, "smbfs" },
4675         { DRIVE_FIXED, "udf" },
4676         { DRIVE_REMOTE, "webdav" },
4677         { DRIVE_UNKNOWN, NULL }
4678 #elif __linux__
4679         { DRIVE_FIXED, ADFS_SUPER_MAGIC, "adfs"},
4680         { DRIVE_FIXED, AFFS_SUPER_MAGIC, "affs"},
4681         { DRIVE_REMOTE, AFS_SUPER_MAGIC, "afs"},
4682         { DRIVE_RAMDISK, AUTOFS_SUPER_MAGIC, "autofs"},
4683         { DRIVE_RAMDISK, AUTOFS_SBI_MAGIC, "autofs4"},
4684         { DRIVE_REMOTE, CODA_SUPER_MAGIC, "coda" },
4685         { DRIVE_RAMDISK, CRAMFS_MAGIC, "cramfs"},
4686         { DRIVE_RAMDISK, CRAMFS_MAGIC_WEND, "cramfs"},
4687         { DRIVE_REMOTE, CIFS_MAGIC_NUMBER, "cifs"},
4688         { DRIVE_RAMDISK, DEBUGFS_MAGIC, "debugfs"},
4689         { DRIVE_RAMDISK, SYSFS_MAGIC, "sysfs"},
4690         { DRIVE_RAMDISK, SECURITYFS_MAGIC, "securityfs"},
4691         { DRIVE_RAMDISK, SELINUX_MAGIC, "selinuxfs"},
4692         { DRIVE_RAMDISK, RAMFS_MAGIC, "ramfs"},
4693         { DRIVE_FIXED, SQUASHFS_MAGIC, "squashfs"},
4694         { DRIVE_FIXED, EFS_SUPER_MAGIC, "efs"},
4695         { DRIVE_FIXED, EXT2_SUPER_MAGIC, "ext"},
4696         { DRIVE_FIXED, EXT3_SUPER_MAGIC, "ext"},
4697         { DRIVE_FIXED, EXT4_SUPER_MAGIC, "ext"},
4698         { DRIVE_REMOTE, XENFS_SUPER_MAGIC, "xenfs"},
4699         { DRIVE_FIXED, BTRFS_SUPER_MAGIC, "btrfs"},
4700         { DRIVE_FIXED, HFS_SUPER_MAGIC, "hfs"},
4701         { DRIVE_FIXED, HFSPLUS_SUPER_MAGIC, "hfsplus"},
4702         { DRIVE_FIXED, HPFS_SUPER_MAGIC, "hpfs"},
4703         { DRIVE_RAMDISK, HUGETLBFS_MAGIC, "hugetlbfs"},
4704         { DRIVE_CDROM, ISOFS_SUPER_MAGIC, "iso"},
4705         { DRIVE_FIXED, JFFS2_SUPER_MAGIC, "jffs2"},
4706         { DRIVE_RAMDISK, ANON_INODE_FS_MAGIC, "anon_inode"},
4707         { DRIVE_FIXED, JFS_SUPER_MAGIC, "jfs"},
4708         { DRIVE_FIXED, MINIX_SUPER_MAGIC, "minix"},
4709         { DRIVE_FIXED, MINIX_SUPER_MAGIC2, "minix v2"},
4710         { DRIVE_FIXED, MINIX2_SUPER_MAGIC, "minix2"},
4711         { DRIVE_FIXED, MINIX2_SUPER_MAGIC2, "minix2 v2"},
4712         { DRIVE_FIXED, MINIX3_SUPER_MAGIC, "minix3"},
4713         { DRIVE_FIXED, MSDOS_SUPER_MAGIC, "msdos"},
4714         { DRIVE_REMOTE, NCP_SUPER_MAGIC, "ncp"},
4715         { DRIVE_REMOTE, NFS_SUPER_MAGIC, "nfs"},
4716         { DRIVE_FIXED, NTFS_SB_MAGIC, "ntfs"},
4717         { DRIVE_RAMDISK, OPENPROM_SUPER_MAGIC, "openpromfs"},
4718         { DRIVE_RAMDISK, PROC_SUPER_MAGIC, "proc"},
4719         { DRIVE_FIXED, QNX4_SUPER_MAGIC, "qnx4"},
4720         { DRIVE_FIXED, REISERFS_SUPER_MAGIC, "reiserfs"},
4721         { DRIVE_RAMDISK, ROMFS_MAGIC, "romfs"},
4722         { DRIVE_REMOTE, SMB_SUPER_MAGIC, "samba"},
4723         { DRIVE_RAMDISK, CGROUP_SUPER_MAGIC, "cgroupfs"},
4724         { DRIVE_RAMDISK, FUTEXFS_SUPER_MAGIC, "futexfs"},
4725         { DRIVE_FIXED, SYSV2_SUPER_MAGIC, "sysv2"},
4726         { DRIVE_FIXED, SYSV4_SUPER_MAGIC, "sysv4"},
4727         { DRIVE_RAMDISK, TMPFS_MAGIC, "tmpfs"},
4728         { DRIVE_RAMDISK, DEVPTS_SUPER_MAGIC, "devpts"},
4729         { DRIVE_CDROM, UDF_SUPER_MAGIC, "udf"},
4730         { DRIVE_FIXED, UFS_MAGIC, "ufs"},
4731         { DRIVE_FIXED, UFS_MAGIC_BW, "ufs"},
4732         { DRIVE_FIXED, UFS2_MAGIC, "ufs2"},
4733         { DRIVE_FIXED, UFS_CIGAM, "ufs"},
4734         { DRIVE_RAMDISK, USBDEVICE_SUPER_MAGIC, "usbdev"},
4735         { DRIVE_FIXED, XENIX_SUPER_MAGIC, "xenix"},
4736         { DRIVE_FIXED, XFS_SB_MAGIC, "xfs"},
4737         { DRIVE_RAMDISK, FUSE_SUPER_MAGIC, "fuse"},
4738         { DRIVE_FIXED, V9FS_MAGIC, "9p"},
4739         { DRIVE_REMOTE, CEPH_SUPER_MAGIC, "ceph"},
4740         { DRIVE_RAMDISK, CONFIGFS_MAGIC, "configfs"},
4741         { DRIVE_RAMDISK, ECRYPTFS_SUPER_MAGIC, "eCryptfs"},
4742         { DRIVE_FIXED, EXOFS_SUPER_MAGIC, "exofs"},
4743         { DRIVE_FIXED, VXFS_SUPER_MAGIC, "vxfs"},
4744         { DRIVE_FIXED, VXFS_OLT_MAGIC, "vxfs_olt"},
4745         { DRIVE_REMOTE, GFS2_MAGIC, "gfs2"},
4746         { DRIVE_FIXED, LOGFS_MAGIC_U32, "logfs"},
4747         { DRIVE_FIXED, OCFS2_SUPER_MAGIC, "ocfs2"},
4748         { DRIVE_FIXED, OMFS_MAGIC, "omfs"},
4749         { DRIVE_FIXED, UBIFS_SUPER_MAGIC, "ubifs"},
4750         { DRIVE_UNKNOWN, 0, NULL}
4751 #else
4752         { DRIVE_RAMDISK, "ramfs"      },
4753         { DRIVE_RAMDISK, "tmpfs"      },
4754         { DRIVE_RAMDISK, "proc"       },
4755         { DRIVE_RAMDISK, "sysfs"      },
4756         { DRIVE_RAMDISK, "debugfs"    },
4757         { DRIVE_RAMDISK, "devpts"     },
4758         { DRIVE_RAMDISK, "securityfs" },
4759         { DRIVE_CDROM,   "iso9660"    },
4760         { DRIVE_FIXED,   "ext2"       },
4761         { DRIVE_FIXED,   "ext3"       },
4762         { DRIVE_FIXED,   "ext4"       },
4763         { DRIVE_FIXED,   "sysv"       },
4764         { DRIVE_FIXED,   "reiserfs"   },
4765         { DRIVE_FIXED,   "ufs"        },
4766         { DRIVE_FIXED,   "vfat"       },
4767         { DRIVE_FIXED,   "msdos"      },
4768         { DRIVE_FIXED,   "udf"        },
4769         { DRIVE_FIXED,   "hfs"        },
4770         { DRIVE_FIXED,   "hpfs"       },
4771         { DRIVE_FIXED,   "qnx4"       },
4772         { DRIVE_FIXED,   "ntfs"       },
4773         { DRIVE_FIXED,   "ntfs-3g"    },
4774         { DRIVE_REMOTE,  "smbfs"      },
4775         { DRIVE_REMOTE,  "fuse"       },
4776         { DRIVE_REMOTE,  "nfs"        },
4777         { DRIVE_REMOTE,  "nfs4"       },
4778         { DRIVE_REMOTE,  "cifs"       },
4779         { DRIVE_REMOTE,  "ncpfs"      },
4780         { DRIVE_REMOTE,  "coda"       },
4781         { DRIVE_REMOTE,  "afs"        },
4782         { DRIVE_UNKNOWN, NULL         }
4783 #endif
4784 };
4785
4786 #if __linux__
4787 static guint32 _wapi_get_drive_type(long f_type)
4788 {
4789         _wapi_drive_type *current;
4790
4791         current = &_wapi_drive_types[0];
4792         while (current->drive_type != DRIVE_UNKNOWN) {
4793                 if (current->fstypeid == f_type)
4794                         return current->drive_type;
4795                 current++;
4796         }
4797
4798         return DRIVE_UNKNOWN;
4799 }
4800 #else
4801 static guint32 _wapi_get_drive_type(const gchar* fstype)
4802 {
4803         _wapi_drive_type *current;
4804
4805         current = &_wapi_drive_types[0];
4806         while (current->drive_type != DRIVE_UNKNOWN) {
4807                 if (strcmp (current->fstype, fstype) == 0)
4808                         break;
4809
4810                 current++;
4811         }
4812         
4813         return current->drive_type;
4814 }
4815 #endif
4816
4817 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4818 static guint32
4819 GetDriveTypeFromPath (const gchar *utf8_root_path_name)
4820 {
4821         struct statfs buf;
4822         gint res;
4823
4824         MONO_ENTER_GC_SAFE;
4825         res = statfs (utf8_root_path_name, &buf);
4826         MONO_EXIT_GC_SAFE;
4827         if (res == -1)
4828                 return DRIVE_UNKNOWN;
4829 #if PLATFORM_MACOSX
4830         return _wapi_get_drive_type (buf.f_fstypename);
4831 #else
4832         return _wapi_get_drive_type (buf.f_type);
4833 #endif
4834 }
4835 #else
4836 static guint32
4837 GetDriveTypeFromPath (const gchar *utf8_root_path_name)
4838 {
4839         guint32 drive_type;
4840         FILE *fp;
4841         gchar buffer [512];
4842         gchar **splitted;
4843
4844         MONO_ENTER_GC_SAFE;
4845         fp = fopen ("/etc/mtab", "rt");
4846         MONO_EXIT_GC_SAFE;
4847         if (fp == NULL) {
4848                 MONO_ENTER_GC_SAFE;
4849                 fp = fopen ("/etc/mnttab", "rt");
4850                 MONO_EXIT_GC_SAFE;
4851                 if (fp == NULL) 
4852                         return(DRIVE_UNKNOWN);
4853         }
4854
4855         drive_type = DRIVE_NO_ROOT_DIR;
4856         while (1) {
4857                 gchar *fgets_res;
4858                 MONO_ENTER_GC_SAFE;
4859                 fgets_res = fgets (buffer, 512, fp);
4860                 MONO_EXIT_GC_SAFE;
4861                 if (fgets_res == NULL)
4862                         break;
4863                 splitted = g_strsplit (buffer, " ", 0);
4864                 if (!*splitted || !*(splitted + 1) || !*(splitted + 2)) {
4865                         g_strfreev (splitted);
4866                         continue;
4867                 }
4868
4869                 /* compare given root_path_name with the one from mtab, 
4870                   if length of utf8_root_path_name is zero it must be the root dir */
4871                 if (strcmp (*(splitted + 1), utf8_root_path_name) == 0 ||
4872                     (strcmp (*(splitted + 1), "/") == 0 && strlen (utf8_root_path_name) == 0)) {
4873                         drive_type = _wapi_get_drive_type (*(splitted + 2));
4874                         /* it is possible this path might be mounted again with
4875                            a known type...keep looking */
4876                         if (drive_type != DRIVE_UNKNOWN) {
4877                                 g_strfreev (splitted);
4878                                 break;
4879                         }
4880                 }
4881
4882                 g_strfreev (splitted);
4883         }
4884
4885         MONO_ENTER_GC_SAFE;
4886         fclose (fp);
4887         MONO_EXIT_GC_SAFE;
4888         return drive_type;
4889 }
4890 #endif
4891
4892 guint32
4893 mono_w32file_get_drive_type(const gunichar2 *root_path_name)
4894 {
4895         gchar *utf8_root_path_name;
4896         guint32 drive_type;
4897
4898         if (root_path_name == NULL) {
4899                 utf8_root_path_name = g_strdup (g_get_current_dir());
4900                 if (utf8_root_path_name == NULL) {
4901                         return(DRIVE_NO_ROOT_DIR);
4902                 }
4903         }
4904         else {
4905                 utf8_root_path_name = mono_unicode_to_external (root_path_name);
4906                 if (utf8_root_path_name == NULL) {
4907                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
4908                         return(DRIVE_NO_ROOT_DIR);
4909                 }
4910                 
4911                 /* strip trailing slash for compare below */
4912                 if (g_str_has_suffix(utf8_root_path_name, "/") && utf8_root_path_name [1] != 0) {
4913                         utf8_root_path_name[strlen(utf8_root_path_name) - 1] = 0;
4914                 }
4915         }
4916         drive_type = GetDriveTypeFromPath (utf8_root_path_name);
4917         g_free (utf8_root_path_name);
4918
4919         return (drive_type);
4920 }
4921
4922 #if defined (PLATFORM_MACOSX) || defined (__linux__) || defined(PLATFORM_BSD) || defined(__native_client__) || defined(__FreeBSD_kernel__) || defined(__HAIKU__)
4923 static gchar*
4924 get_fstypename (gchar *utfpath)
4925 {
4926 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4927         struct statfs stat;
4928 #if __linux__
4929         _wapi_drive_type *current;
4930 #endif
4931         gint statfs_res;
4932         MONO_ENTER_GC_SAFE;
4933         statfs_res = statfs (utfpath, &stat);
4934         MONO_EXIT_GC_SAFE;
4935         if (statfs_res == -1)
4936                 return NULL;
4937 #if PLATFORM_MACOSX
4938         return g_strdup (stat.f_fstypename);
4939 #else
4940         current = &_wapi_drive_types[0];
4941         while (current->drive_type != DRIVE_UNKNOWN) {
4942                 if (stat.f_type == current->fstypeid)
4943                         return g_strdup (current->fstype);
4944                 current++;
4945         }
4946         return NULL;
4947 #endif
4948 #else
4949         return NULL;
4950 #endif
4951 }
4952
4953 /* Linux has struct statfs which has a different layout */
4954 gboolean
4955 mono_w32file_get_volume_information (const gunichar2 *path, gunichar2 *volumename, gint volumesize, gint *outserial, gint *maxcomp, gint *fsflags, gunichar2 *fsbuffer, gint fsbuffersize)
4956 {
4957         gchar *utfpath;
4958         gchar *fstypename;
4959         gboolean status = FALSE;
4960         glong len;
4961         
4962         // We only support getting the file system type
4963         if (fsbuffer == NULL)
4964                 return 0;
4965         
4966         utfpath = mono_unicode_to_external (path);
4967         if ((fstypename = get_fstypename (utfpath)) != NULL){
4968                 gunichar2 *ret = g_utf8_to_utf16 (fstypename, -1, NULL, &len, NULL);
4969                 if (ret != NULL && len < fsbuffersize){
4970                         memcpy (fsbuffer, ret, len * sizeof (gunichar2));
4971                         fsbuffer [len] = 0;
4972                         status = TRUE;
4973                 }
4974                 if (ret != NULL)
4975                         g_free (ret);
4976                 g_free (fstypename);
4977         }
4978         g_free (utfpath);
4979         return status;
4980 }
4981 #endif
4982
4983 static gboolean
4984 LockFile (gpointer handle, guint32 offset_low, guint32 offset_high, guint32 length_low, guint32 length_high)
4985 {
4986         MonoW32HandleFile *file_handle;
4987         off_t offset, length;
4988
4989         if (!mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE, (gpointer *)&file_handle)) {
4990                 g_warning ("%s: error looking up file handle %p", __func__, handle);
4991                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
4992                 return FALSE;
4993         }
4994
4995         if (!(file_handle->fileaccess & GENERIC_READ) && !(file_handle->fileaccess & GENERIC_WRITE) && !(file_handle->fileaccess & GENERIC_ALL)) {
4996                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ or GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
4997                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
4998                 return FALSE;
4999         }
5000
5001 #ifdef HAVE_LARGE_FILE_SUPPORT
5002         offset = ((gint64)offset_high << 32) | offset_low;
5003         length = ((gint64)length_high << 32) | length_low;
5004
5005         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Locking handle %p, offset %lld, length %lld", __func__, handle, offset, length);
5006 #else
5007         if (offset_high > 0 || length_high > 0) {
5008                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
5009                 return FALSE;
5010         }
5011         offset = offset_low;
5012         length = length_low;
5013
5014         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Locking handle %p, offset %ld, length %ld", __func__, handle, offset, length);
5015 #endif
5016
5017         return _wapi_lock_file_region (GPOINTER_TO_UINT(handle), offset, length);
5018 }
5019
5020 static gboolean
5021 UnlockFile (gpointer handle, guint32 offset_low, guint32 offset_high, guint32 length_low, guint32 length_high)
5022 {
5023         MonoW32HandleFile *file_handle;
5024         off_t offset, length;
5025
5026         if (!mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE, (gpointer *)&file_handle)) {
5027                 g_warning ("%s: error looking up file handle %p", __func__, handle);
5028                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
5029                 return FALSE;
5030         }
5031
5032         if (!(file_handle->fileaccess & GENERIC_READ) && !(file_handle->fileaccess & GENERIC_WRITE) && !(file_handle->fileaccess & GENERIC_ALL)) {
5033                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ or GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
5034                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
5035                 return FALSE;
5036         }
5037
5038 #ifdef HAVE_LARGE_FILE_SUPPORT
5039         offset = ((gint64)offset_high << 32) | offset_low;
5040         length = ((gint64)length_high << 32) | length_low;
5041
5042         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Unlocking handle %p, offset %lld, length %lld", __func__, handle, offset, length);
5043 #else
5044         offset = offset_low;
5045         length = length_low;
5046
5047         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Unlocking handle %p, offset %ld, length %ld", __func__, handle, offset, length);
5048 #endif
5049
5050         return _wapi_unlock_file_region (GPOINTER_TO_UINT(handle), offset, length);
5051 }
5052
5053 void
5054 mono_w32file_init (void)
5055 {
5056         mono_coop_mutex_init (&stdhandle_mutex);
5057         mono_coop_mutex_init (&file_share_mutex);
5058
5059         mono_w32handle_register_ops (MONO_W32HANDLE_FILE,    &_wapi_file_ops);
5060         mono_w32handle_register_ops (MONO_W32HANDLE_CONSOLE, &_wapi_console_ops);
5061         mono_w32handle_register_ops (MONO_W32HANDLE_FIND,    &_wapi_find_ops);
5062         mono_w32handle_register_ops (MONO_W32HANDLE_PIPE,    &_wapi_pipe_ops);
5063
5064 /*      mono_w32handle_register_capabilities (MONO_W32HANDLE_FILE, */
5065 /*                                          MONO_W32HANDLE_CAP_WAIT); */
5066 /*      mono_w32handle_register_capabilities (MONO_W32HANDLE_CONSOLE, */
5067 /*                                          MONO_W32HANDLE_CAP_WAIT); */
5068
5069         if (g_hasenv ("MONO_STRICT_IO_EMULATION"))
5070                 lock_while_writing = TRUE;
5071 }
5072
5073 void
5074 mono_w32file_cleanup (void)
5075 {
5076         mono_coop_mutex_destroy (&file_share_mutex);
5077
5078         if (file_share_table)
5079                 g_hash_table_destroy (file_share_table);
5080 }
5081
5082 gboolean
5083 mono_w32file_move (gunichar2 *path, gunichar2 *dest, gint32 *error)
5084 {
5085         gboolean result;
5086
5087         result = MoveFile (path, dest);
5088         if (!result)
5089                 *error = mono_w32error_get_last ();
5090         return result;
5091 }
5092
5093 gboolean
5094 mono_w32file_copy (gunichar2 *path, gunichar2 *dest, gboolean overwrite, gint32 *error)
5095 {
5096         gboolean result;
5097
5098         result = CopyFile (path, dest, !overwrite);
5099         if (!result)
5100                 *error = mono_w32error_get_last ();
5101
5102         return result;
5103 }
5104
5105 gboolean
5106 mono_w32file_replace (gunichar2 *destinationFileName, gunichar2 *sourceFileName, gunichar2 *destinationBackupFileName, guint32 flags, gint32 *error)
5107 {
5108         gboolean result;
5109
5110         result = ReplaceFile (destinationFileName, sourceFileName, destinationBackupFileName, flags, NULL, NULL);
5111         if (!result)
5112                 *error = mono_w32error_get_last ();
5113         return result;
5114 }
5115
5116 gint64
5117 mono_w32file_get_file_size (gpointer handle, gint32 *error)
5118 {
5119         gint64 length;
5120         guint32 length_hi;
5121
5122         length = GetFileSize (handle, &length_hi);
5123         if(length==INVALID_FILE_SIZE) {
5124                 *error=mono_w32error_get_last ();
5125         }
5126
5127         return length | ((gint64)length_hi << 32);
5128 }
5129
5130 gboolean
5131 mono_w32file_lock (gpointer handle, gint64 position, gint64 length, gint32 *error)
5132 {
5133         gboolean result;
5134
5135         result = LockFile (handle, position & 0xFFFFFFFF, position >> 32, length & 0xFFFFFFFF, length >> 32);
5136         if (!result)
5137                 *error = mono_w32error_get_last ();
5138         return result;
5139 }
5140
5141 gboolean
5142 mono_w32file_unlock (gpointer handle, gint64 position, gint64 length, gint32 *error)
5143 {
5144         gboolean result;
5145
5146         result = UnlockFile (handle, position & 0xFFFFFFFF, position >> 32, length & 0xFFFFFFFF, length >> 32);
5147         if (!result)
5148                 *error = mono_w32error_get_last ();
5149         return result;
5150 }
5151
5152 gpointer
5153 mono_w32file_get_console_input (void)
5154 {
5155         return mono_w32file_get_std_handle (STD_INPUT_HANDLE);
5156 }
5157
5158 gpointer
5159 mono_w32file_get_console_output (void)
5160 {
5161         return mono_w32file_get_std_handle (STD_OUTPUT_HANDLE);
5162 }
5163
5164 gpointer
5165 mono_w32file_get_console_error (void)
5166 {
5167         return mono_w32file_get_std_handle (STD_ERROR_HANDLE);
5168 }