Merge pull request #4327 from vkargov/vk-abcremedy
[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         guint32 attrs;
2522 #if 0
2523         struct stat statbuf;
2524         FileShare *shareinfo;
2525 #endif
2526         
2527         if(name==NULL) {
2528                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2529
2530                 mono_w32error_set_last (ERROR_INVALID_NAME);
2531                 return(FALSE);
2532         }
2533
2534         filename=mono_unicode_to_external(name);
2535         if(filename==NULL) {
2536                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2537
2538                 mono_w32error_set_last (ERROR_INVALID_NAME);
2539                 return(FALSE);
2540         }
2541
2542         attrs = mono_w32file_get_attributes (name);
2543         if (attrs == INVALID_FILE_ATTRIBUTES) {
2544                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: file attributes error", __func__);
2545                 /* Error set by mono_w32file_get_attributes() */
2546                 g_free (filename);
2547                 return(FALSE);
2548         }
2549
2550 #if 0
2551         /* Check to make sure sharing allows us to open the file for
2552          * writing.  See bug 323389.
2553          *
2554          * Do the checks that don't need an open file descriptor, for
2555          * simplicity's sake.  If we really have to do the full checks
2556          * then we can implement that later.
2557          */
2558         if (_wapi_stat (filename, &statbuf) < 0) {
2559                 _wapi_set_last_path_error_from_errno (NULL, filename);
2560                 g_free (filename);
2561                 return(FALSE);
2562         }
2563         
2564         if (share_allows_open (&statbuf, 0, GENERIC_WRITE,
2565                                &shareinfo) == FALSE) {
2566                 mono_w32error_set_last (ERROR_SHARING_VIOLATION);
2567                 g_free (filename);
2568                 return FALSE;
2569         }
2570         if (shareinfo)
2571                 file_share_release (shareinfo);
2572 #endif
2573
2574         retval = _wapi_unlink (filename);
2575         
2576         if (retval == -1) {
2577                 _wapi_set_last_path_error_from_errno (NULL, filename);
2578         } else {
2579                 ret = TRUE;
2580         }
2581
2582         g_free(filename);
2583
2584         return(ret);
2585 }
2586
2587 static gboolean
2588 MoveFile (gunichar2 *name, gunichar2 *dest_name)
2589 {
2590         gchar *utf8_name, *utf8_dest_name;
2591         gint result, errno_copy;
2592         struct stat stat_src, stat_dest;
2593         gboolean ret = FALSE;
2594         FileShare *shareinfo;
2595         
2596         if(name==NULL) {
2597                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2598
2599                 mono_w32error_set_last (ERROR_INVALID_NAME);
2600                 return(FALSE);
2601         }
2602
2603         utf8_name = mono_unicode_to_external (name);
2604         if (utf8_name == NULL) {
2605                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2606                 
2607                 mono_w32error_set_last (ERROR_INVALID_NAME);
2608                 return FALSE;
2609         }
2610         
2611         if(dest_name==NULL) {
2612                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2613
2614                 g_free (utf8_name);
2615                 mono_w32error_set_last (ERROR_INVALID_NAME);
2616                 return(FALSE);
2617         }
2618
2619         utf8_dest_name = mono_unicode_to_external (dest_name);
2620         if (utf8_dest_name == NULL) {
2621                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2622
2623                 g_free (utf8_name);
2624                 mono_w32error_set_last (ERROR_INVALID_NAME);
2625                 return FALSE;
2626         }
2627
2628         /*
2629          * In C# land we check for the existence of src, but not for dest.
2630          * We check it here and return the failure if dest exists and is not
2631          * the same file as src.
2632          */
2633         if (_wapi_stat (utf8_name, &stat_src) < 0) {
2634                 if (errno != ENOENT || _wapi_lstat (utf8_name, &stat_src) < 0) {
2635                         _wapi_set_last_path_error_from_errno (NULL, utf8_name);
2636                         g_free (utf8_name);
2637                         g_free (utf8_dest_name);
2638                         return FALSE;
2639                 }
2640         }
2641         
2642         if (!_wapi_stat (utf8_dest_name, &stat_dest)) {
2643                 if (stat_dest.st_dev != stat_src.st_dev ||
2644                     stat_dest.st_ino != stat_src.st_ino) {
2645                         g_free (utf8_name);
2646                         g_free (utf8_dest_name);
2647                         mono_w32error_set_last (ERROR_ALREADY_EXISTS);
2648                         return FALSE;
2649                 }
2650         }
2651
2652         /* Check to make that we have delete sharing permission.
2653          * See https://bugzilla.xamarin.com/show_bug.cgi?id=17009
2654          *
2655          * Do the checks that don't need an open file descriptor, for
2656          * simplicity's sake.  If we really have to do the full checks
2657          * then we can implement that later.
2658          */
2659         if (share_allows_delete (&stat_src, &shareinfo) == FALSE) {
2660                 mono_w32error_set_last (ERROR_SHARING_VIOLATION);
2661                 return FALSE;
2662         }
2663         if (shareinfo)
2664                 file_share_release (shareinfo);
2665
2666         result = _wapi_rename (utf8_name, utf8_dest_name);
2667         errno_copy = errno;
2668         
2669         if (result == -1) {
2670                 switch(errno_copy) {
2671                 case EEXIST:
2672                         mono_w32error_set_last (ERROR_ALREADY_EXISTS);
2673                         break;
2674
2675                 case EXDEV:
2676                         /* Ignore here, it is dealt with below */
2677                         break;
2678
2679                 case ENOENT:
2680                         /* We already know src exists. Must be dest that doesn't exist. */
2681                         _wapi_set_last_path_error_from_errno (NULL, utf8_dest_name);
2682                         break;
2683
2684                 default:
2685                         _wapi_set_last_error_from_errno ();
2686                 }
2687         }
2688         
2689         g_free (utf8_name);
2690         g_free (utf8_dest_name);
2691
2692         if (result != 0 && errno_copy == EXDEV) {
2693                 gint32 copy_error;
2694
2695                 if (S_ISDIR (stat_src.st_mode)) {
2696                         mono_w32error_set_last (ERROR_NOT_SAME_DEVICE);
2697                         return FALSE;
2698                 }
2699                 /* Try a copy to the new location, and delete the source */
2700                 if (!mono_w32file_copy (name, dest_name, FALSE, &copy_error)) {
2701                         /* mono_w32file_copy will set the error */
2702                         return(FALSE);
2703                 }
2704                 
2705                 return(mono_w32file_delete (name));
2706         }
2707
2708         if (result == 0) {
2709                 ret = TRUE;
2710         }
2711
2712         return(ret);
2713 }
2714
2715 static gboolean
2716 write_file (gint src_fd, gint dest_fd, struct stat *st_src, gboolean report_errors)
2717 {
2718         gint remain, n;
2719         gchar *buf, *wbuf;
2720         gint buf_size = st_src->st_blksize;
2721         MonoThreadInfo *info = mono_thread_info_current ();
2722
2723         buf_size = buf_size < 8192 ? 8192 : (buf_size > 65536 ? 65536 : buf_size);
2724         buf = (gchar *) g_malloc (buf_size);
2725
2726         for (;;) {
2727                 MONO_ENTER_GC_SAFE;
2728                 remain = read (src_fd, buf, buf_size);
2729                 MONO_EXIT_GC_SAFE;
2730                 if (remain < 0) {
2731                         if (errno == EINTR && !mono_thread_info_is_interrupt_state (info))
2732                                 continue;
2733
2734                         if (report_errors)
2735                                 _wapi_set_last_error_from_errno ();
2736
2737                         g_free (buf);
2738                         return FALSE;
2739                 }
2740                 if (remain == 0) {
2741                         break;
2742                 }
2743
2744                 wbuf = buf;
2745                 while (remain > 0) {
2746                         MONO_ENTER_GC_SAFE;
2747                         n = write (dest_fd, wbuf, remain);
2748                         MONO_EXIT_GC_SAFE;
2749                         if (n < 0) {
2750                                 if (errno == EINTR && !mono_thread_info_is_interrupt_state (info))
2751                                         continue;
2752
2753                                 if (report_errors)
2754                                         _wapi_set_last_error_from_errno ();
2755                                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write failed.", __func__);
2756                                 g_free (buf);
2757                                 return FALSE;
2758                         }
2759
2760                         remain -= n;
2761                         wbuf += n;
2762                 }
2763         }
2764
2765         g_free (buf);
2766         return TRUE ;
2767 }
2768
2769 static gboolean
2770 CopyFile (const gunichar2 *name, const gunichar2 *dest_name, gboolean fail_if_exists)
2771 {
2772         gchar *utf8_src, *utf8_dest;
2773         gint src_fd, dest_fd;
2774         struct stat st, dest_st;
2775         struct utimbuf dest_time;
2776         gboolean ret = TRUE;
2777         gint ret_utime;
2778         gint syscall_res;
2779         
2780         if(name==NULL) {
2781                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2782
2783                 mono_w32error_set_last (ERROR_INVALID_NAME);
2784                 return(FALSE);
2785         }
2786         
2787         utf8_src = mono_unicode_to_external (name);
2788         if (utf8_src == NULL) {
2789                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of source returned NULL",
2790                            __func__);
2791
2792                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
2793                 return(FALSE);
2794         }
2795         
2796         if(dest_name==NULL) {
2797                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: dest is NULL", __func__);
2798
2799                 g_free (utf8_src);
2800                 mono_w32error_set_last (ERROR_INVALID_NAME);
2801                 return(FALSE);
2802         }
2803         
2804         utf8_dest = mono_unicode_to_external (dest_name);
2805         if (utf8_dest == NULL) {
2806                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of dest returned NULL",
2807                            __func__);
2808
2809                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
2810
2811                 g_free (utf8_src);
2812                 
2813                 return(FALSE);
2814         }
2815         
2816         src_fd = _wapi_open (utf8_src, O_RDONLY, 0);
2817         if (src_fd < 0) {
2818                 _wapi_set_last_path_error_from_errno (NULL, utf8_src);
2819                 
2820                 g_free (utf8_src);
2821                 g_free (utf8_dest);
2822                 
2823                 return(FALSE);
2824         }
2825
2826         MONO_ENTER_GC_SAFE;
2827         syscall_res = fstat (src_fd, &st);
2828         MONO_EXIT_GC_SAFE;
2829         if (syscall_res < 0) {
2830                 _wapi_set_last_error_from_errno ();
2831
2832                 g_free (utf8_src);
2833                 g_free (utf8_dest);
2834                 MONO_ENTER_GC_SAFE;
2835                 close (src_fd);
2836                 MONO_EXIT_GC_SAFE;
2837                 
2838                 return(FALSE);
2839         }
2840
2841         /* Before trying to open/create the dest, we need to report a 'file busy'
2842          * error if src and dest are actually the same file. We do the check here to take
2843          * advantage of the IOMAP capability */
2844         if (!_wapi_stat (utf8_dest, &dest_st) && st.st_dev == dest_st.st_dev && 
2845                         st.st_ino == dest_st.st_ino) {
2846
2847                 g_free (utf8_src);
2848                 g_free (utf8_dest);
2849                 MONO_ENTER_GC_SAFE;
2850                 close (src_fd);
2851                 MONO_EXIT_GC_SAFE;
2852
2853                 mono_w32error_set_last (ERROR_SHARING_VIOLATION);
2854                 return (FALSE);
2855         }
2856         
2857         if (fail_if_exists) {
2858                 dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_CREAT | O_EXCL, st.st_mode);
2859         } else {
2860                 /* FIXME: it kinda sucks that this code path potentially scans
2861                  * the directory twice due to the weird mono_w32error_set_last()
2862                  * behavior. */
2863                 dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_TRUNC, st.st_mode);
2864                 if (dest_fd < 0) {
2865                         /* The file does not exist, try creating it */
2866                         dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_CREAT | O_TRUNC, st.st_mode);
2867                 } else {
2868                         /* Apparently this error is set if we
2869                          * overwrite the dest file
2870                          */
2871                         mono_w32error_set_last (ERROR_ALREADY_EXISTS);
2872                 }
2873         }
2874         if (dest_fd < 0) {
2875                 _wapi_set_last_error_from_errno ();
2876
2877                 g_free (utf8_src);
2878                 g_free (utf8_dest);
2879                 MONO_ENTER_GC_SAFE;
2880                 close (src_fd);
2881                 MONO_EXIT_GC_SAFE;
2882
2883                 return(FALSE);
2884         }
2885
2886         if (!write_file (src_fd, dest_fd, &st, TRUE))
2887                 ret = FALSE;
2888
2889         close (src_fd);
2890         close (dest_fd);
2891         
2892         dest_time.modtime = st.st_mtime;
2893         dest_time.actime = st.st_atime;
2894         MONO_ENTER_GC_SAFE;
2895         ret_utime = utime (utf8_dest, &dest_time);
2896         MONO_EXIT_GC_SAFE;
2897         if (ret_utime == -1)
2898                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: file [%s] utime failed: %s", __func__, utf8_dest, strerror(errno));
2899         
2900         g_free (utf8_src);
2901         g_free (utf8_dest);
2902
2903         return ret;
2904 }
2905
2906 static gchar*
2907 convert_arg_to_utf8 (const gunichar2 *arg, const gchar *arg_name)
2908 {
2909         gchar *utf8_ret;
2910
2911         if (arg == NULL) {
2912                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: %s is NULL", __func__, arg_name);
2913                 mono_w32error_set_last (ERROR_INVALID_NAME);
2914                 return NULL;
2915         }
2916
2917         utf8_ret = mono_unicode_to_external (arg);
2918         if (utf8_ret == NULL) {
2919                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of %s returned NULL",
2920                            __func__, arg_name);
2921                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
2922                 return NULL;
2923         }
2924
2925         return utf8_ret;
2926 }
2927
2928 static gboolean
2929 ReplaceFile (const gunichar2 *replacedFileName, const gunichar2 *replacementFileName, const gunichar2 *backupFileName, guint32 replaceFlags, gpointer exclude, gpointer reserved)
2930 {
2931         gint result, backup_fd = -1,replaced_fd = -1;
2932         gchar *utf8_replacedFileName, *utf8_replacementFileName = NULL, *utf8_backupFileName = NULL;
2933         struct stat stBackup;
2934         gboolean ret = FALSE;
2935
2936         if (!(utf8_replacedFileName = convert_arg_to_utf8 (replacedFileName, "replacedFileName")))
2937                 return FALSE;
2938         if (!(utf8_replacementFileName = convert_arg_to_utf8 (replacementFileName, "replacementFileName")))
2939                 goto replace_cleanup;
2940         if (backupFileName != NULL) {
2941                 if (!(utf8_backupFileName = convert_arg_to_utf8 (backupFileName, "backupFileName")))
2942                         goto replace_cleanup;
2943         }
2944
2945         if (utf8_backupFileName) {
2946                 // Open the backup file for read so we can restore the file if an error occurs.
2947                 backup_fd = _wapi_open (utf8_backupFileName, O_RDONLY, 0);
2948                 result = _wapi_rename (utf8_replacedFileName, utf8_backupFileName);
2949                 if (result == -1)
2950                         goto replace_cleanup;
2951         }
2952
2953         result = _wapi_rename (utf8_replacementFileName, utf8_replacedFileName);
2954         if (result == -1) {
2955                 _wapi_set_last_path_error_from_errno (NULL, utf8_replacementFileName);
2956                 _wapi_rename (utf8_backupFileName, utf8_replacedFileName);
2957                 if (backup_fd != -1 && !fstat (backup_fd, &stBackup)) {
2958                         replaced_fd = _wapi_open (utf8_backupFileName, O_WRONLY | O_CREAT | O_TRUNC,
2959                                                   stBackup.st_mode);
2960                         
2961                         if (replaced_fd == -1)
2962                                 goto replace_cleanup;
2963
2964                         write_file (backup_fd, replaced_fd, &stBackup, FALSE);
2965                 }
2966
2967                 goto replace_cleanup;
2968         }
2969
2970         ret = TRUE;
2971
2972 replace_cleanup:
2973         g_free (utf8_replacedFileName);
2974         g_free (utf8_replacementFileName);
2975         g_free (utf8_backupFileName);
2976         if (backup_fd != -1) {
2977                 MONO_ENTER_GC_SAFE;
2978                 close (backup_fd);
2979                 MONO_EXIT_GC_SAFE;
2980         }
2981         if (replaced_fd != -1) {
2982                 MONO_ENTER_GC_SAFE;
2983                 close (replaced_fd);
2984                 MONO_EXIT_GC_SAFE;
2985         }
2986         return ret;
2987 }
2988
2989 static MonoCoopMutex stdhandle_mutex;
2990
2991 static gpointer
2992 _wapi_stdhandle_create (gint fd, const gchar *name)
2993 {
2994         gpointer handle;
2995         gint flags;
2996         MonoW32HandleFile file_handle = {0};
2997
2998         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: creating standard handle type %s, fd %d", __func__, name, fd);
2999
3000 #if !defined(__native_client__)
3001         /* Check if fd is valid */
3002         do {
3003                 flags = fcntl(fd, F_GETFL);
3004         } while (flags == -1 && errno == EINTR);
3005
3006         if (flags == -1) {
3007                 /* Invalid fd.  Not really much point checking for EBADF
3008                  * specifically
3009                  */
3010                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: fcntl error on fd %d: %s", __func__, fd, strerror(errno));
3011
3012                 mono_w32error_set_last (mono_w32error_unix_to_win32 (errno));
3013                 return INVALID_HANDLE_VALUE;
3014         }
3015
3016         switch (flags & (O_RDONLY|O_WRONLY|O_RDWR)) {
3017         case O_RDONLY:
3018                 file_handle.fileaccess = GENERIC_READ;
3019                 break;
3020         case O_WRONLY:
3021                 file_handle.fileaccess = GENERIC_WRITE;
3022                 break;
3023         case O_RDWR:
3024                 file_handle.fileaccess = GENERIC_READ | GENERIC_WRITE;
3025                 break;
3026         default:
3027                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Can't figure out flags 0x%x", __func__, flags);
3028                 file_handle.fileaccess = 0;
3029                 break;
3030         }
3031 #else
3032         /*
3033          * fcntl will return -1 in nacl, as there is no real file system API.
3034          * Yet, standard streams are available.
3035          */
3036         file_handle.fileaccess = (fd == STDIN_FILENO) ? GENERIC_READ : GENERIC_WRITE;
3037 #endif
3038
3039         file_handle.fd = fd;
3040         file_handle.filename = g_strdup(name);
3041         /* some default security attributes might be needed */
3042         file_handle.security_attributes = 0;
3043
3044         /* Apparently input handles can't be written to.  (I don't
3045          * know if output or error handles can't be read from.)
3046          */
3047         if (fd == 0)
3048                 file_handle.fileaccess &= ~GENERIC_WRITE;
3049
3050         file_handle.sharemode = 0;
3051         file_handle.attrs = 0;
3052
3053         handle = mono_w32handle_new_fd (MONO_W32HANDLE_CONSOLE, fd, &file_handle);
3054         if (handle == INVALID_HANDLE_VALUE) {
3055                 g_warning ("%s: error creating file handle", __func__);
3056                 mono_w32error_set_last (ERROR_GEN_FAILURE);
3057                 return INVALID_HANDLE_VALUE;
3058         }
3059
3060         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: returning handle %p", __func__, handle);
3061
3062         return handle;
3063 }
3064
3065 enum {
3066         STD_INPUT_HANDLE  = -10,
3067         STD_OUTPUT_HANDLE = -11,
3068         STD_ERROR_HANDLE  = -12,
3069 };
3070
3071 static gpointer
3072 mono_w32file_get_std_handle (gint stdhandle)
3073 {
3074         MonoW32HandleFile *file_handle;
3075         gpointer handle;
3076         gint fd;
3077         const gchar *name;
3078         gboolean ok;
3079         
3080         switch(stdhandle) {
3081         case STD_INPUT_HANDLE:
3082                 fd = 0;
3083                 name = "<stdin>";
3084                 break;
3085
3086         case STD_OUTPUT_HANDLE:
3087                 fd = 1;
3088                 name = "<stdout>";
3089                 break;
3090
3091         case STD_ERROR_HANDLE:
3092                 fd = 2;
3093                 name = "<stderr>";
3094                 break;
3095
3096         default:
3097                 g_assert_not_reached ();
3098         }
3099
3100         handle = GINT_TO_POINTER (fd);
3101
3102         mono_coop_mutex_lock (&stdhandle_mutex);
3103
3104         ok = mono_w32handle_lookup (handle, MONO_W32HANDLE_CONSOLE,
3105                                   (gpointer *)&file_handle);
3106         if (ok == FALSE) {
3107                 /* Need to create this console handle */
3108                 handle = _wapi_stdhandle_create (fd, name);
3109                 
3110                 if (handle == INVALID_HANDLE_VALUE) {
3111                         mono_w32error_set_last (ERROR_NO_MORE_FILES);
3112                         goto done;
3113                 }
3114         }
3115         
3116   done:
3117         mono_coop_mutex_unlock (&stdhandle_mutex);
3118
3119         return(handle);
3120 }
3121
3122 gboolean
3123 mono_w32file_read (gpointer handle, gpointer buffer, guint32 numbytes, guint32 *bytesread)
3124 {
3125         MonoW32HandleType type;
3126
3127         type = mono_w32handle_get_type (handle);
3128         
3129         if(io_ops[type].readfile==NULL) {
3130                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3131                 return(FALSE);
3132         }
3133         
3134         return(io_ops[type].readfile (handle, buffer, numbytes, bytesread));
3135 }
3136
3137 gboolean
3138 mono_w32file_write (gpointer handle, gconstpointer buffer, guint32 numbytes, guint32 *byteswritten)
3139 {
3140         MonoW32HandleType type;
3141
3142         type = mono_w32handle_get_type (handle);
3143         
3144         if(io_ops[type].writefile==NULL) {
3145                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3146                 return(FALSE);
3147         }
3148         
3149         return(io_ops[type].writefile (handle, buffer, numbytes, byteswritten));
3150 }
3151
3152 gboolean
3153 mono_w32file_flush (gpointer handle)
3154 {
3155         MonoW32HandleType type;
3156
3157         type = mono_w32handle_get_type (handle);
3158         
3159         if(io_ops[type].flushfile==NULL) {
3160                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3161                 return(FALSE);
3162         }
3163         
3164         return(io_ops[type].flushfile (handle));
3165 }
3166
3167 gboolean
3168 mono_w32file_truncate (gpointer handle)
3169 {
3170         MonoW32HandleType type;
3171
3172         type = mono_w32handle_get_type (handle);
3173         
3174         if (io_ops[type].setendoffile == NULL) {
3175                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3176                 return(FALSE);
3177         }
3178         
3179         return(io_ops[type].setendoffile (handle));
3180 }
3181
3182 guint32
3183 mono_w32file_seek (gpointer handle, gint32 movedistance, gint32 *highmovedistance, guint32 method)
3184 {
3185         MonoW32HandleType type;
3186
3187         type = mono_w32handle_get_type (handle);
3188         
3189         if (io_ops[type].seek == NULL) {
3190                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3191                 return(INVALID_SET_FILE_POINTER);
3192         }
3193         
3194         return(io_ops[type].seek (handle, movedistance, highmovedistance,
3195                                   method));
3196 }
3197
3198 gint
3199 mono_w32file_get_type(gpointer handle)
3200 {
3201         MonoW32HandleType type;
3202
3203         type = mono_w32handle_get_type (handle);
3204         
3205         if (io_ops[type].getfiletype == NULL) {
3206                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3207                 return(FILE_TYPE_UNKNOWN);
3208         }
3209         
3210         return(io_ops[type].getfiletype ());
3211 }
3212
3213 static guint32
3214 GetFileSize(gpointer handle, guint32 *highsize)
3215 {
3216         MonoW32HandleType type;
3217
3218         type = mono_w32handle_get_type (handle);
3219         
3220         if (io_ops[type].getfilesize == NULL) {
3221                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3222                 return(INVALID_FILE_SIZE);
3223         }
3224         
3225         return(io_ops[type].getfilesize (handle, highsize));
3226 }
3227
3228 gboolean
3229 mono_w32file_get_times(gpointer handle, FILETIME *create_time, FILETIME *access_time, FILETIME *write_time)
3230 {
3231         MonoW32HandleType type;
3232
3233         type = mono_w32handle_get_type (handle);
3234         
3235         if (io_ops[type].getfiletime == NULL) {
3236                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3237                 return(FALSE);
3238         }
3239         
3240         return(io_ops[type].getfiletime (handle, create_time, access_time,
3241                                          write_time));
3242 }
3243
3244 gboolean
3245 mono_w32file_set_times(gpointer handle, const FILETIME *create_time, const FILETIME *access_time, const FILETIME *write_time)
3246 {
3247         MonoW32HandleType type;
3248
3249         type = mono_w32handle_get_type (handle);
3250         
3251         if (io_ops[type].setfiletime == NULL) {
3252                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3253                 return(FALSE);
3254         }
3255         
3256         return(io_ops[type].setfiletime (handle, create_time, access_time,
3257                                          write_time));
3258 }
3259
3260 /* A tick is a 100-nanosecond interval.  File time epoch is Midnight,
3261  * January 1 1601 GMT
3262  */
3263
3264 #define TICKS_PER_MILLISECOND 10000L
3265 #define TICKS_PER_SECOND 10000000L
3266 #define TICKS_PER_MINUTE 600000000L
3267 #define TICKS_PER_HOUR 36000000000LL
3268 #define TICKS_PER_DAY 864000000000LL
3269
3270 #define isleap(y) ((y) % 4 == 0 && ((y) % 100 != 0 || (y) % 400 == 0))
3271
3272 static const guint16 mon_yday[2][13]={
3273         {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365},
3274         {0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366},
3275 };
3276
3277 gboolean
3278 mono_w32file_filetime_to_systemtime(const FILETIME *file_time, SYSTEMTIME *system_time)
3279 {
3280         gint64 file_ticks, totaldays, rem, y;
3281         const guint16 *ip;
3282         
3283         if(system_time==NULL) {
3284                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: system_time NULL", __func__);
3285
3286                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3287                 return(FALSE);
3288         }
3289         
3290         file_ticks=((gint64)file_time->dwHighDateTime << 32) +
3291                 file_time->dwLowDateTime;
3292         
3293         /* Really compares if file_ticks>=0x8000000000000000
3294          * (LLONG_MAX+1) but we're working with a signed value for the
3295          * year and day calculation to work later
3296          */
3297         if(file_ticks<0) {
3298                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: file_time too big", __func__);
3299
3300                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3301                 return(FALSE);
3302         }
3303
3304         totaldays=(file_ticks / TICKS_PER_DAY);
3305         rem = file_ticks % TICKS_PER_DAY;
3306         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld rem: %lld", __func__, totaldays, rem);
3307
3308         system_time->wHour=rem/TICKS_PER_HOUR;
3309         rem %= TICKS_PER_HOUR;
3310         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Hour: %d rem: %lld", __func__, system_time->wHour, rem);
3311         
3312         system_time->wMinute = rem / TICKS_PER_MINUTE;
3313         rem %= TICKS_PER_MINUTE;
3314         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Minute: %d rem: %lld", __func__, system_time->wMinute,
3315                   rem);
3316         
3317         system_time->wSecond = rem / TICKS_PER_SECOND;
3318         rem %= TICKS_PER_SECOND;
3319         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Second: %d rem: %lld", __func__, system_time->wSecond,
3320                   rem);
3321         
3322         system_time->wMilliseconds = rem / TICKS_PER_MILLISECOND;
3323         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Milliseconds: %d", __func__,
3324                   system_time->wMilliseconds);
3325
3326         /* January 1, 1601 was a Monday, according to Emacs calendar */
3327         system_time->wDayOfWeek = ((1 + totaldays) % 7) + 1;
3328         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Day of week: %d", __func__, system_time->wDayOfWeek);
3329         
3330         /* This algorithm to find year and month given days from epoch
3331          * from glibc
3332          */
3333         y=1601;
3334         
3335 #define DIV(a, b) ((a) / (b) - ((a) % (b) < 0))
3336 #define LEAPS_THRU_END_OF(y) (DIV(y, 4) - DIV (y, 100) + DIV (y, 400))
3337
3338         while(totaldays < 0 || totaldays >= (isleap(y)?366:365)) {
3339                 /* Guess a corrected year, assuming 365 days per year */
3340                 gint64 yg = y + totaldays / 365 - (totaldays % 365 < 0);
3341                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld yg: %lld y: %lld", __func__,
3342                           totaldays, yg,
3343                           y);
3344                 g_message("%s: LEAPS(yg): %lld LEAPS(y): %lld", __func__,
3345                           LEAPS_THRU_END_OF(yg-1), LEAPS_THRU_END_OF(y-1));
3346                 
3347                 /* Adjust days and y to match the guessed year. */
3348                 totaldays -= ((yg - y) * 365
3349                               + LEAPS_THRU_END_OF (yg - 1)
3350                               - LEAPS_THRU_END_OF (y - 1));
3351                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld", __func__, totaldays);
3352                 y = yg;
3353                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: y: %lld", __func__, y);
3354         }
3355         
3356         system_time->wYear = y;
3357         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Year: %d", __func__, system_time->wYear);
3358
3359         ip = mon_yday[isleap(y)];
3360         
3361         for(y=11; totaldays < ip[y]; --y) {
3362                 continue;
3363         }
3364         totaldays-=ip[y];
3365         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld", __func__, totaldays);
3366         
3367         system_time->wMonth = y + 1;
3368         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Month: %d", __func__, system_time->wMonth);
3369
3370         system_time->wDay = totaldays + 1;
3371         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Day: %d", __func__, system_time->wDay);
3372         
3373         return(TRUE);
3374 }
3375
3376 gpointer
3377 mono_w32file_find_first (const gunichar2 *pattern, WIN32_FIND_DATA *find_data)
3378 {
3379         MonoW32HandleFind find_handle = {0};
3380         gpointer handle;
3381         gchar *utf8_pattern = NULL, *dir_part, *entry_part;
3382         gint result;
3383         
3384         if (pattern == NULL) {
3385                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: pattern is NULL", __func__);
3386
3387                 mono_w32error_set_last (ERROR_PATH_NOT_FOUND);
3388                 return(INVALID_HANDLE_VALUE);
3389         }
3390
3391         utf8_pattern = mono_unicode_to_external (pattern);
3392         if (utf8_pattern == NULL) {
3393                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3394                 
3395                 mono_w32error_set_last (ERROR_INVALID_NAME);
3396                 return(INVALID_HANDLE_VALUE);
3397         }
3398
3399         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: looking for [%s]", __func__, utf8_pattern);
3400         
3401         /* Figure out which bit of the pattern is the directory */
3402         dir_part = _wapi_dirname (utf8_pattern);
3403         entry_part = _wapi_basename (utf8_pattern);
3404
3405 #if 0
3406         /* Don't do this check for now, it breaks if directories
3407          * really do have metachars in their names (see bug 58116).
3408          * FIXME: Figure out a better solution to keep some checks...
3409          */
3410         if (strchr (dir_part, '*') || strchr (dir_part, '?')) {
3411                 mono_w32error_set_last (ERROR_INVALID_NAME);
3412                 g_free (dir_part);
3413                 g_free (entry_part);
3414                 g_free (utf8_pattern);
3415                 return(INVALID_HANDLE_VALUE);
3416         }
3417 #endif
3418
3419         /* The pattern can specify a directory or a set of files.
3420          *
3421          * The pattern can have wildcard characters ? and *, but only
3422          * in the section after the last directory delimiter.  (Return
3423          * ERROR_INVALID_NAME if there are wildcards in earlier path
3424          * sections.)  "*" has the usual 0-or-more chars meaning.  "?" 
3425          * means "match one character", "??" seems to mean "match one
3426          * or two characters", "???" seems to mean "match one, two or
3427          * three characters", etc.  Windows will also try and match
3428          * the mangled "short name" of files, so 8 character patterns
3429          * with wildcards will show some surprising results.
3430          *
3431          * All the written documentation I can find says that '?' 
3432          * should only match one character, and doesn't mention '??',
3433          * '???' etc.  I'm going to assume that the strict behaviour
3434          * (ie '???' means three and only three characters) is the
3435          * correct one, because that lets me use fnmatch(3) rather
3436          * than mess around with regexes.
3437          */
3438
3439         find_handle.namelist = NULL;
3440         result = _wapi_io_scandir (dir_part, entry_part,
3441                                    &find_handle.namelist);
3442         
3443         if (result == 0) {
3444                 /* No files, which windows seems to call
3445                  * FILE_NOT_FOUND
3446                  */
3447                 mono_w32error_set_last (ERROR_FILE_NOT_FOUND);
3448                 g_free (utf8_pattern);
3449                 g_free (entry_part);
3450                 g_free (dir_part);
3451                 return (INVALID_HANDLE_VALUE);
3452         }
3453         
3454         if (result < 0) {
3455                 _wapi_set_last_path_error_from_errno (dir_part, NULL);
3456                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: scandir error: %s", __func__, g_strerror (errno));
3457                 g_free (utf8_pattern);
3458                 g_free (entry_part);
3459                 g_free (dir_part);
3460                 return (INVALID_HANDLE_VALUE);
3461         }
3462
3463         g_free (utf8_pattern);
3464         g_free (entry_part);
3465         
3466         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Got %d matches", __func__, result);
3467
3468         find_handle.dir_part = dir_part;
3469         find_handle.num = result;
3470         find_handle.count = 0;
3471         
3472         handle = mono_w32handle_new (MONO_W32HANDLE_FIND, &find_handle);
3473         if (handle == INVALID_HANDLE_VALUE) {
3474                 g_warning ("%s: error creating find handle", __func__);
3475                 g_free (dir_part);
3476                 g_free (entry_part);
3477                 g_free (utf8_pattern);
3478                 mono_w32error_set_last (ERROR_GEN_FAILURE);
3479                 
3480                 return(INVALID_HANDLE_VALUE);
3481         }
3482
3483         if (handle != INVALID_HANDLE_VALUE &&
3484             !mono_w32file_find_next (handle, find_data)) {
3485                 mono_w32file_find_close (handle);
3486                 mono_w32error_set_last (ERROR_NO_MORE_FILES);
3487                 handle = INVALID_HANDLE_VALUE;
3488         }
3489
3490         return (handle);
3491 }
3492
3493 gboolean
3494 mono_w32file_find_next (gpointer handle, WIN32_FIND_DATA *find_data)
3495 {
3496         MonoW32HandleFind *find_handle;
3497         gboolean ok;
3498         struct stat buf, linkbuf;
3499         gint result;
3500         gchar *filename;
3501         gchar *utf8_filename, *utf8_basename;
3502         gunichar2 *utf16_basename;
3503         time_t create_time;
3504         glong bytes;
3505         gboolean ret = FALSE;
3506         
3507         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FIND,
3508                                 (gpointer *)&find_handle);
3509         if(ok==FALSE) {
3510                 g_warning ("%s: error looking up find handle %p", __func__,
3511                            handle);
3512                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3513                 return(FALSE);
3514         }
3515
3516         mono_w32handle_lock_handle (handle);
3517         
3518 retry:
3519         if (find_handle->count >= find_handle->num) {
3520                 mono_w32error_set_last (ERROR_NO_MORE_FILES);
3521                 goto cleanup;
3522         }
3523
3524         /* stat next match */
3525
3526         filename = g_build_filename (find_handle->dir_part, find_handle->namelist[find_handle->count ++], NULL);
3527
3528         result = _wapi_stat (filename, &buf);
3529         if (result == -1 && errno == ENOENT) {
3530                 /* Might be a dangling symlink */
3531                 result = _wapi_lstat (filename, &buf);
3532         }
3533         
3534         if (result != 0) {
3535                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: stat failed: %s", __func__, filename);
3536
3537                 g_free (filename);
3538                 goto retry;
3539         }
3540
3541 #ifndef __native_client__
3542         result = _wapi_lstat (filename, &linkbuf);
3543         if (result != 0) {
3544                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: lstat failed: %s", __func__, filename);
3545
3546                 g_free (filename);
3547                 goto retry;
3548         }
3549 #endif
3550
3551         utf8_filename = mono_utf8_from_external (filename);
3552         if (utf8_filename == NULL) {
3553                 /* We couldn't turn this filename into utf8 (eg the
3554                  * encoding of the name wasn't convertible), so just
3555                  * ignore it.
3556                  */
3557                 g_warning ("%s: Bad encoding for '%s'\nConsider using MONO_EXTERNAL_ENCODINGS\n", __func__, filename);
3558                 
3559                 g_free (filename);
3560                 goto retry;
3561         }
3562         g_free (filename);
3563         
3564         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Found [%s]", __func__, utf8_filename);
3565         
3566         /* fill data block */
3567
3568         if (buf.st_mtime < buf.st_ctime)
3569                 create_time = buf.st_mtime;
3570         else
3571                 create_time = buf.st_ctime;
3572         
3573 #ifdef __native_client__
3574         find_data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_filename, &buf, NULL);
3575 #else
3576         find_data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_filename, &buf, &linkbuf);
3577 #endif
3578
3579         time_t_to_filetime (create_time, &find_data->ftCreationTime);
3580         time_t_to_filetime (buf.st_atime, &find_data->ftLastAccessTime);
3581         time_t_to_filetime (buf.st_mtime, &find_data->ftLastWriteTime);
3582
3583         if (find_data->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
3584                 find_data->nFileSizeHigh = 0;
3585                 find_data->nFileSizeLow = 0;
3586         } else {
3587                 find_data->nFileSizeHigh = buf.st_size >> 32;
3588                 find_data->nFileSizeLow = buf.st_size & 0xFFFFFFFF;
3589         }
3590
3591         find_data->dwReserved0 = 0;
3592         find_data->dwReserved1 = 0;
3593
3594         utf8_basename = _wapi_basename (utf8_filename);
3595         utf16_basename = g_utf8_to_utf16 (utf8_basename, -1, NULL, &bytes,
3596                                           NULL);
3597         if(utf16_basename==NULL) {
3598                 g_free (utf8_basename);
3599                 g_free (utf8_filename);
3600                 goto retry;
3601         }
3602         ret = TRUE;
3603         
3604         /* utf16 is 2 * utf8 */
3605         bytes *= 2;
3606
3607         memset (find_data->cFileName, '\0', (MAX_PATH*2));
3608
3609         /* Truncating a utf16 string like this might leave the last
3610          * gchar incomplete
3611          */
3612         memcpy (find_data->cFileName, utf16_basename,
3613                 bytes<(MAX_PATH*2)-2?bytes:(MAX_PATH*2)-2);
3614
3615         find_data->cAlternateFileName [0] = 0;  /* not used */
3616
3617         g_free (utf8_basename);
3618         g_free (utf8_filename);
3619         g_free (utf16_basename);
3620
3621 cleanup:
3622         mono_w32handle_unlock_handle (handle);
3623         
3624         return(ret);
3625 }
3626
3627 gboolean
3628 mono_w32file_find_close (gpointer handle)
3629 {
3630         MonoW32HandleFind *find_handle;
3631         gboolean ok;
3632
3633         if (handle == NULL) {
3634                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3635                 return(FALSE);
3636         }
3637         
3638         ok=mono_w32handle_lookup (handle, MONO_W32HANDLE_FIND,
3639                                 (gpointer *)&find_handle);
3640         if(ok==FALSE) {
3641                 g_warning ("%s: error looking up find handle %p", __func__,
3642                            handle);
3643                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
3644                 return(FALSE);
3645         }
3646
3647         mono_w32handle_lock_handle (handle);
3648         
3649         g_strfreev (find_handle->namelist);
3650         g_free (find_handle->dir_part);
3651
3652         mono_w32handle_unlock_handle (handle);
3653         
3654         MONO_ENTER_GC_SAFE;
3655         mono_w32handle_unref (handle);
3656         MONO_EXIT_GC_SAFE;
3657         
3658         return(TRUE);
3659 }
3660
3661 gboolean
3662 mono_w32file_create_directory (const gunichar2 *name)
3663 {
3664         gchar *utf8_name;
3665         gint result;
3666         
3667         if (name == NULL) {
3668                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3669
3670                 mono_w32error_set_last (ERROR_INVALID_NAME);
3671                 return(FALSE);
3672         }
3673         
3674         utf8_name = mono_unicode_to_external (name);
3675         if (utf8_name == NULL) {
3676                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3677         
3678                 mono_w32error_set_last (ERROR_INVALID_NAME);
3679                 return FALSE;
3680         }
3681
3682         result = _wapi_mkdir (utf8_name, 0777);
3683
3684         if (result == 0) {
3685                 g_free (utf8_name);
3686                 return TRUE;
3687         }
3688
3689         _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3690         g_free (utf8_name);
3691         return FALSE;
3692 }
3693
3694 gboolean
3695 mono_w32file_remove_directory (const gunichar2 *name)
3696 {
3697         gchar *utf8_name;
3698         gint result;
3699         
3700         if (name == NULL) {
3701                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3702
3703                 mono_w32error_set_last (ERROR_INVALID_NAME);
3704                 return(FALSE);
3705         }
3706
3707         utf8_name = mono_unicode_to_external (name);
3708         if (utf8_name == NULL) {
3709                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3710                 
3711                 mono_w32error_set_last (ERROR_INVALID_NAME);
3712                 return FALSE;
3713         }
3714
3715         result = _wapi_rmdir (utf8_name);
3716         if (result == -1) {
3717                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3718                 g_free (utf8_name);
3719                 
3720                 return(FALSE);
3721         }
3722         g_free (utf8_name);
3723
3724         return(TRUE);
3725 }
3726
3727 guint32
3728 mono_w32file_get_attributes (const gunichar2 *name)
3729 {
3730         gchar *utf8_name;
3731         struct stat buf, linkbuf;
3732         gint result;
3733         guint32 ret;
3734         
3735         if (name == NULL) {
3736                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3737
3738                 mono_w32error_set_last (ERROR_INVALID_NAME);
3739                 return(FALSE);
3740         }
3741         
3742         utf8_name = mono_unicode_to_external (name);
3743         if (utf8_name == NULL) {
3744                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3745
3746                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3747                 return (INVALID_FILE_ATTRIBUTES);
3748         }
3749
3750         result = _wapi_stat (utf8_name, &buf);
3751         if (result == -1 && errno == ENOENT) {
3752                 /* Might be a dangling symlink... */
3753                 result = _wapi_lstat (utf8_name, &buf);
3754         }
3755
3756         if (result != 0) {
3757                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3758                 g_free (utf8_name);
3759                 return (INVALID_FILE_ATTRIBUTES);
3760         }
3761
3762 #ifndef __native_client__
3763         result = _wapi_lstat (utf8_name, &linkbuf);
3764         if (result != 0) {
3765                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3766                 g_free (utf8_name);
3767                 return (INVALID_FILE_ATTRIBUTES);
3768         }
3769 #endif
3770         
3771 #ifdef __native_client__
3772         ret = _wapi_stat_to_file_attributes (utf8_name, &buf, NULL);
3773 #else
3774         ret = _wapi_stat_to_file_attributes (utf8_name, &buf, &linkbuf);
3775 #endif
3776         
3777         g_free (utf8_name);
3778
3779         return(ret);
3780 }
3781
3782 gboolean
3783 mono_w32file_get_attributes_ex (const gunichar2 *name, MonoIOStat *stat)
3784 {
3785         gchar *utf8_name;
3786
3787         struct stat buf, linkbuf;
3788         gint result;
3789         
3790         if (name == NULL) {
3791                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3792
3793                 mono_w32error_set_last (ERROR_INVALID_NAME);
3794                 return(FALSE);
3795         }
3796
3797         utf8_name = mono_unicode_to_external (name);
3798         if (utf8_name == NULL) {
3799                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3800
3801                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3802                 return FALSE;
3803         }
3804
3805         result = _wapi_stat (utf8_name, &buf);
3806         if (result == -1 && errno == ENOENT) {
3807                 /* Might be a dangling symlink... */
3808                 result = _wapi_lstat (utf8_name, &buf);
3809         }
3810         
3811         if (result != 0) {
3812                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3813                 g_free (utf8_name);
3814                 return FALSE;
3815         }
3816
3817         result = _wapi_lstat (utf8_name, &linkbuf);
3818         if (result != 0) {
3819                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3820                 g_free (utf8_name);
3821                 return(FALSE);
3822         }
3823
3824         /* fill stat block */
3825
3826         stat->attributes = _wapi_stat_to_file_attributes (utf8_name, &buf, &linkbuf);
3827         stat->creation_time = (((guint64) (buf.st_mtime < buf.st_ctime ? buf.st_mtime : buf.st_ctime)) * 10 * 1000 * 1000) + 116444736000000000ULL;
3828         stat->last_access_time = (((guint64) (buf.st_atime)) * 10 * 1000 * 1000) + 116444736000000000ULL;
3829         stat->last_write_time = (((guint64) (buf.st_mtime)) * 10 * 1000 * 1000) + 116444736000000000ULL;
3830         stat->length = (stat->attributes & FILE_ATTRIBUTE_DIRECTORY) ? 0 : buf.st_size;
3831
3832         g_free (utf8_name);
3833         return TRUE;
3834 }
3835
3836 gboolean
3837 mono_w32file_set_attributes (const gunichar2 *name, guint32 attrs)
3838 {
3839         /* FIXME: think of something clever to do on unix */
3840         gchar *utf8_name;
3841         struct stat buf;
3842         gint result;
3843
3844         /*
3845          * Currently we only handle one *internal* case, with a value that is
3846          * not standard: 0x80000000, which means `set executable bit'
3847          */
3848         
3849         if (name == NULL) {
3850                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3851
3852                 mono_w32error_set_last (ERROR_INVALID_NAME);
3853                 return(FALSE);
3854         }
3855
3856         utf8_name = mono_unicode_to_external (name);
3857         if (utf8_name == NULL) {
3858                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3859
3860                 mono_w32error_set_last (ERROR_INVALID_NAME);
3861                 return FALSE;
3862         }
3863
3864         result = _wapi_stat (utf8_name, &buf);
3865         if (result == -1 && errno == ENOENT) {
3866                 /* Might be a dangling symlink... */
3867                 result = _wapi_lstat (utf8_name, &buf);
3868         }
3869
3870         if (result != 0) {
3871                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3872                 g_free (utf8_name);
3873                 return FALSE;
3874         }
3875
3876         /* Contrary to the documentation, ms allows NORMAL to be
3877          * specified along with other attributes, so dont bother to
3878          * catch that case here.
3879          */
3880         if (attrs & FILE_ATTRIBUTE_READONLY) {
3881                 result = _wapi_chmod (utf8_name, buf.st_mode & ~(S_IWUSR | S_IWOTH | S_IWGRP));
3882         } else {
3883                 result = _wapi_chmod (utf8_name, buf.st_mode | S_IWUSR);
3884         }
3885
3886         /* Ignore the other attributes for now */
3887
3888         if (attrs & 0x80000000){
3889                 mode_t exec_mask = 0;
3890
3891                 if ((buf.st_mode & S_IRUSR) != 0)
3892                         exec_mask |= S_IXUSR;
3893
3894                 if ((buf.st_mode & S_IRGRP) != 0)
3895                         exec_mask |= S_IXGRP;
3896
3897                 if ((buf.st_mode & S_IROTH) != 0)
3898                         exec_mask |= S_IXOTH;
3899
3900                 MONO_ENTER_GC_SAFE;
3901                 result = chmod (utf8_name, buf.st_mode | exec_mask);
3902                 MONO_EXIT_GC_SAFE;
3903         }
3904         /* Don't bother to reset executable (might need to change this
3905          * policy)
3906          */
3907         
3908         g_free (utf8_name);
3909
3910         return(TRUE);
3911 }
3912
3913 guint32
3914 mono_w32file_get_cwd (guint32 length, gunichar2 *buffer)
3915 {
3916         gunichar2 *utf16_path;
3917         glong count;
3918         gsize bytes;
3919
3920 #ifdef __native_client__
3921         gchar *path = g_get_current_dir ();
3922         if (length < strlen(path) + 1 || path == NULL)
3923                 return 0;
3924         memcpy (buffer, path, strlen(path) + 1);
3925 #else
3926         if (getcwd ((gchar*)buffer, length) == NULL) {
3927                 if (errno == ERANGE) { /*buffer length is not big enough */ 
3928                         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*/
3929                         if (path == NULL)
3930                                 return 0;
3931                         utf16_path = mono_unicode_from_external (path, &bytes);
3932                         g_free (utf16_path);
3933                         g_free (path);
3934                         return (bytes/2)+1;
3935                 }
3936                 _wapi_set_last_error_from_errno ();
3937                 return 0;
3938         }
3939 #endif
3940
3941         utf16_path = mono_unicode_from_external ((gchar*)buffer, &bytes);
3942         count = (bytes/2)+1;
3943         g_assert (count <= length); /*getcwd must have failed before with ERANGE*/
3944
3945         /* Add the terminator */
3946         memset (buffer, '\0', bytes+2);
3947         memcpy (buffer, utf16_path, bytes);
3948         
3949         g_free (utf16_path);
3950
3951         return count;
3952 }
3953
3954 gboolean
3955 mono_w32file_set_cwd (const gunichar2 *path)
3956 {
3957         gchar *utf8_path;
3958         gboolean result;
3959
3960         if (path == NULL) {
3961                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
3962                 return(FALSE);
3963         }
3964         
3965         utf8_path = mono_unicode_to_external (path);
3966         if (_wapi_chdir (utf8_path) != 0) {
3967                 _wapi_set_last_error_from_errno ();
3968                 result = FALSE;
3969         }
3970         else
3971                 result = TRUE;
3972
3973         g_free (utf8_path);
3974         return result;
3975 }
3976
3977 gboolean
3978 mono_w32file_create_pipe (gpointer *readpipe, gpointer *writepipe, guint32 size)
3979 {
3980         MonoW32HandleFile pipe_read_handle = {0};
3981         MonoW32HandleFile pipe_write_handle = {0};
3982         gpointer read_handle;
3983         gpointer write_handle;
3984         gint filedes[2];
3985         gint ret;
3986         
3987         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Creating pipe", __func__);
3988
3989         MONO_ENTER_GC_SAFE;
3990         ret=pipe (filedes);
3991         MONO_EXIT_GC_SAFE;
3992         if(ret==-1) {
3993                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Error creating pipe: %s", __func__,
3994                            strerror (errno));
3995                 
3996                 _wapi_set_last_error_from_errno ();
3997                 return(FALSE);
3998         }
3999
4000         if (filedes[0] >= mono_w32handle_fd_reserve ||
4001             filedes[1] >= mono_w32handle_fd_reserve) {
4002                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: File descriptor is too big", __func__);
4003
4004                 mono_w32error_set_last (ERROR_TOO_MANY_OPEN_FILES);
4005                 
4006                 MONO_ENTER_GC_SAFE;
4007                 close (filedes[0]);
4008                 close (filedes[1]);
4009                 MONO_EXIT_GC_SAFE;
4010                 
4011                 return(FALSE);
4012         }
4013         
4014         /* filedes[0] is open for reading, filedes[1] for writing */
4015
4016         pipe_read_handle.fd = filedes [0];
4017         pipe_read_handle.fileaccess = GENERIC_READ;
4018         read_handle = mono_w32handle_new_fd (MONO_W32HANDLE_PIPE, filedes[0],
4019                                            &pipe_read_handle);
4020         if (read_handle == INVALID_HANDLE_VALUE) {
4021                 g_warning ("%s: error creating pipe read handle", __func__);
4022                 MONO_ENTER_GC_SAFE;
4023                 close (filedes[0]);
4024                 close (filedes[1]);
4025                 MONO_EXIT_GC_SAFE;
4026                 mono_w32error_set_last (ERROR_GEN_FAILURE);
4027                 
4028                 return(FALSE);
4029         }
4030         
4031         pipe_write_handle.fd = filedes [1];
4032         pipe_write_handle.fileaccess = GENERIC_WRITE;
4033         write_handle = mono_w32handle_new_fd (MONO_W32HANDLE_PIPE, filedes[1],
4034                                             &pipe_write_handle);
4035         if (write_handle == INVALID_HANDLE_VALUE) {
4036                 g_warning ("%s: error creating pipe write handle", __func__);
4037
4038                 MONO_ENTER_GC_SAFE;
4039                 mono_w32handle_unref (read_handle);
4040                 
4041                 close (filedes[0]);
4042                 close (filedes[1]);
4043                 MONO_EXIT_GC_SAFE;
4044                 mono_w32error_set_last (ERROR_GEN_FAILURE);
4045                 
4046                 return(FALSE);
4047         }
4048         
4049         *readpipe = read_handle;
4050         *writepipe = write_handle;
4051
4052         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Returning pipe: read handle %p, write handle %p",
4053                    __func__, read_handle, write_handle);
4054
4055         return(TRUE);
4056 }
4057
4058 #ifdef HAVE_GETFSSTAT
4059 /* Darwin has getfsstat */
4060 gint32
4061 mono_w32file_get_logical_drive (guint32 len, gunichar2 *buf)
4062 {
4063         struct statfs *stats;
4064         gint size, n, i;
4065         gunichar2 *dir;
4066         glong length, total = 0;
4067         gint syscall_res;
4068
4069         MONO_ENTER_GC_SAFE;
4070         n = getfsstat (NULL, 0, MNT_NOWAIT);
4071         MONO_EXIT_GC_SAFE;
4072         if (n == -1)
4073                 return 0;
4074         size = n * sizeof (struct statfs);
4075         stats = (struct statfs *) g_malloc (size);
4076         if (stats == NULL)
4077                 return 0;
4078         MONO_ENTER_GC_SAFE;
4079         syscall_res = getfsstat (stats, size, MNT_NOWAIT);
4080         MONO_EXIT_GC_SAFE;
4081         if (syscall_res == -1){
4082                 g_free (stats);
4083                 return 0;
4084         }
4085         for (i = 0; i < n; i++){
4086                 dir = g_utf8_to_utf16 (stats [i].f_mntonname, -1, NULL, &length, NULL);
4087                 if (total + length < len){
4088                         memcpy (buf + total, dir, sizeof (gunichar2) * length);
4089                         buf [total+length] = 0;
4090                 } 
4091                 g_free (dir);
4092                 total += length + 1;
4093         }
4094         if (total < len)
4095                 buf [total] = 0;
4096         total++;
4097         g_free (stats);
4098         return total;
4099 }
4100 #else
4101 /* In-place octal sequence replacement */
4102 static void
4103 unescape_octal (gchar *str)
4104 {
4105         gchar *rptr;
4106         gchar *wptr;
4107
4108         if (str == NULL)
4109                 return;
4110
4111         rptr = wptr = str;
4112         while (*rptr != '\0') {
4113                 if (*rptr == '\\') {
4114                         gchar c;
4115                         rptr++;
4116                         c = (*(rptr++) - '0') << 6;
4117                         c += (*(rptr++) - '0') << 3;
4118                         c += *(rptr++) - '0';
4119                         *wptr++ = c;
4120                 } else if (wptr != rptr) {
4121                         *wptr++ = *rptr++;
4122                 } else {
4123                         rptr++; wptr++;
4124                 }
4125         }
4126         *wptr = '\0';
4127 }
4128 static gint32 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf);
4129
4130 #if __linux__
4131 #define GET_LOGICAL_DRIVE_STRINGS_BUFFER 512
4132 #define GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER 512
4133 #define GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER 64
4134
4135 typedef struct 
4136 {
4137         glong total;
4138         guint32 buffer_index;
4139         guint32 mountpoint_index;
4140         guint32 field_number;
4141         guint32 allocated_size;
4142         guint32 fsname_index;
4143         guint32 fstype_index;
4144         gchar mountpoint [GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER + 1];
4145         gchar *mountpoint_allocated;
4146         gchar buffer [GET_LOGICAL_DRIVE_STRINGS_BUFFER];
4147         gchar fsname [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
4148         gchar fstype [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
4149         ssize_t nbytes;
4150         gchar delimiter;
4151         gboolean check_mount_source;
4152 } LinuxMountInfoParseState;
4153
4154 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
4155 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
4156 static void append_to_mountpoint (LinuxMountInfoParseState *state);
4157 static gboolean add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
4158
4159 gint32
4160 mono_w32file_get_logical_drive (guint32 len, gunichar2 *buf)
4161 {
4162         gint fd;
4163         gint32 ret = 0;
4164         LinuxMountInfoParseState state;
4165         gboolean (*parser)(guint32, gunichar2*, LinuxMountInfoParseState*) = NULL;
4166
4167         memset (buf, 0, len * sizeof (gunichar2));
4168         MONO_ENTER_GC_SAFE;
4169         fd = open ("/proc/self/mountinfo", O_RDONLY);
4170         MONO_EXIT_GC_SAFE;
4171         if (fd != -1)
4172                 parser = GetLogicalDriveStrings_MountInfo;
4173         else {
4174                 MONO_ENTER_GC_SAFE;
4175                 fd = open ("/proc/mounts", O_RDONLY);
4176                 MONO_EXIT_GC_SAFE;
4177                 if (fd != -1)
4178                         parser = GetLogicalDriveStrings_Mounts;
4179         }
4180
4181         if (!parser) {
4182                 ret = GetLogicalDriveStrings_Mtab (len, buf);
4183                 goto done_and_out;
4184         }
4185
4186         memset (&state, 0, sizeof (LinuxMountInfoParseState));
4187         state.field_number = 1;
4188         state.delimiter = ' ';
4189
4190         while (1) {
4191                 MONO_ENTER_GC_SAFE;
4192                 state.nbytes = read (fd, state.buffer, GET_LOGICAL_DRIVE_STRINGS_BUFFER);
4193                 MONO_EXIT_GC_SAFE;
4194                 if (!(state.nbytes > 0))
4195                         break;
4196                 state.buffer_index = 0;
4197
4198                 while ((*parser)(len, buf, &state)) {
4199                         if (state.buffer [state.buffer_index] == '\n') {
4200                                 gboolean quit = add_drive_string (len, buf, &state);
4201                                 state.field_number = 1;
4202                                 state.buffer_index++;
4203                                 if (state.mountpoint_allocated) {
4204                                         g_free (state.mountpoint_allocated);
4205                                         state.mountpoint_allocated = NULL;
4206                                 }
4207                                 if (quit) {
4208                                         ret = state.total;
4209                                         goto done_and_out;
4210                                 }
4211                         }
4212                 }
4213         };
4214         ret = state.total;
4215
4216   done_and_out:
4217         if (fd != -1) {
4218                 MONO_ENTER_GC_SAFE;
4219                 close (fd);
4220                 MONO_EXIT_GC_SAFE;
4221         }
4222         return ret;
4223 }
4224
4225 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
4226 {
4227         gchar *ptr;
4228
4229         if (state->field_number == 1)
4230                 state->check_mount_source = TRUE;
4231
4232         while (state->buffer_index < (guint32)state->nbytes) {
4233                 if (state->buffer [state->buffer_index] == state->delimiter) {
4234                         state->field_number++;
4235                         switch (state->field_number) {
4236                                 case 2:
4237                                         state->mountpoint_index = 0;
4238                                         break;
4239
4240                                 case 3:
4241                                         if (state->mountpoint_allocated)
4242                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
4243                                         else
4244                                                 state->mountpoint [state->mountpoint_index] = 0;
4245                                         break;
4246
4247                                 default:
4248                                         ptr = (gchar*)memchr (state->buffer + state->buffer_index, '\n', GET_LOGICAL_DRIVE_STRINGS_BUFFER - state->buffer_index);
4249                                         if (ptr)
4250                                                 state->buffer_index = (ptr - (gchar*)state->buffer) - 1;
4251                                         else
4252                                                 state->buffer_index = state->nbytes;
4253                                         return TRUE;
4254                         }
4255                         state->buffer_index++;
4256                         continue;
4257                 } else if (state->buffer [state->buffer_index] == '\n')
4258                         return TRUE;
4259
4260                 switch (state->field_number) {
4261                         case 1:
4262                                 if (state->check_mount_source) {
4263                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
4264                                                 /* We can ignore the rest, it's a device
4265                                                  * path */
4266                                                 state->check_mount_source = FALSE;
4267                                                 state->fsname [state->fsname_index++] = '/';
4268                                                 break;
4269                                         }
4270                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
4271                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
4272                                 }
4273                                 break;
4274
4275                         case 2:
4276                                 append_to_mountpoint (state);
4277                                 break;
4278
4279                         case 3:
4280                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
4281                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
4282                                 break;
4283                 }
4284
4285                 state->buffer_index++;
4286         }
4287
4288         return FALSE;
4289 }
4290
4291 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
4292 {
4293         while (state->buffer_index < (guint32)state->nbytes) {
4294                 if (state->buffer [state->buffer_index] == state->delimiter) {
4295                         state->field_number++;
4296                         switch (state->field_number) {
4297                                 case 5:
4298                                         state->mountpoint_index = 0;
4299                                         break;
4300
4301                                 case 6:
4302                                         if (state->mountpoint_allocated)
4303                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
4304                                         else
4305                                                 state->mountpoint [state->mountpoint_index] = 0;
4306                                         break;
4307
4308                                 case 7:
4309                                         state->delimiter = '-';
4310                                         break;
4311
4312                                 case 8:
4313                                         state->delimiter = ' ';
4314                                         break;
4315
4316                                 case 10:
4317                                         state->check_mount_source = TRUE;
4318                                         break;
4319                         }
4320                         state->buffer_index++;
4321                         continue;
4322                 } else if (state->buffer [state->buffer_index] == '\n')
4323                         return TRUE;
4324
4325                 switch (state->field_number) {
4326                         case 5:
4327                                 append_to_mountpoint (state);
4328                                 break;
4329
4330                         case 9:
4331                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
4332                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
4333                                 break;
4334
4335                         case 10:
4336                                 if (state->check_mount_source) {
4337                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
4338                                                 /* We can ignore the rest, it's a device
4339                                                  * path */
4340                                                 state->check_mount_source = FALSE;
4341                                                 state->fsname [state->fsname_index++] = '/';
4342                                                 break;
4343                                         }
4344                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
4345                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
4346                                 }
4347                                 break;
4348                 }
4349
4350                 state->buffer_index++;
4351         }
4352
4353         return FALSE;
4354 }
4355
4356 static void
4357 append_to_mountpoint (LinuxMountInfoParseState *state)
4358 {
4359         gchar ch = state->buffer [state->buffer_index];
4360         if (state->mountpoint_allocated) {
4361                 if (state->mountpoint_index >= state->allocated_size) {
4362                         guint32 newsize = (state->allocated_size << 1) + 1;
4363                         gchar *newbuf = (gchar *)g_malloc0 (newsize * sizeof (gchar));
4364
4365                         memcpy (newbuf, state->mountpoint_allocated, state->mountpoint_index);
4366                         g_free (state->mountpoint_allocated);
4367                         state->mountpoint_allocated = newbuf;
4368                         state->allocated_size = newsize;
4369                 }
4370                 state->mountpoint_allocated [state->mountpoint_index++] = ch;
4371         } else {
4372                 if (state->mountpoint_index >= GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER) {
4373                         state->allocated_size = (state->mountpoint_index << 1) + 1;
4374                         state->mountpoint_allocated = (gchar *)g_malloc0 (state->allocated_size * sizeof (gchar));
4375                         memcpy (state->mountpoint_allocated, state->mountpoint, state->mountpoint_index);
4376                         state->mountpoint_allocated [state->mountpoint_index++] = ch;
4377                 } else
4378                         state->mountpoint [state->mountpoint_index++] = ch;
4379         }
4380 }
4381
4382 static gboolean
4383 add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
4384 {
4385         gboolean quit = FALSE;
4386         gboolean ignore_entry;
4387
4388         if (state->fsname_index == 1 && state->fsname [0] == '/')
4389                 ignore_entry = FALSE;
4390         else if (memcmp ("overlay", state->fsname, state->fsname_index) == 0 ||
4391                 memcmp ("aufs", state->fstype, state->fstype_index) == 0) {
4392                 /* Don't ignore overlayfs and aufs - these might be used on Docker
4393                  * (https://bugzilla.xamarin.com/show_bug.cgi?id=31021) */
4394                 ignore_entry = FALSE;
4395         } else if (state->fsname_index == 0 || memcmp ("none", state->fsname, state->fsname_index) == 0) {
4396                 ignore_entry = TRUE;
4397         } else if (state->fstype_index >= 5 && memcmp ("fuse.", state->fstype, 5) == 0) {
4398                 /* Ignore GNOME's gvfs */
4399                 if (state->fstype_index == 21 && memcmp ("fuse.gvfs-fuse-daemon", state->fstype, state->fstype_index) == 0)
4400                         ignore_entry = TRUE;
4401                 else
4402                         ignore_entry = FALSE;
4403         } else if (state->fstype_index == 3 && memcmp ("nfs", state->fstype, state->fstype_index) == 0)
4404                 ignore_entry = FALSE;
4405         else
4406                 ignore_entry = TRUE;
4407
4408         if (!ignore_entry) {
4409                 gunichar2 *dir;
4410                 glong length;
4411                 gchar *mountpoint = state->mountpoint_allocated ? state->mountpoint_allocated : state->mountpoint;
4412
4413                 unescape_octal (mountpoint);
4414                 dir = g_utf8_to_utf16 (mountpoint, -1, NULL, &length, NULL);
4415                 if (state->total + length + 1 > len) {
4416                         quit = TRUE;
4417                         state->total = len * 2;
4418                 } else {
4419                         length++;
4420                         memcpy (buf + state->total, dir, sizeof (gunichar2) * length);
4421                         state->total += length;
4422                 }
4423                 g_free (dir);
4424         }
4425         state->fsname_index = 0;
4426         state->fstype_index = 0;
4427
4428         return quit;
4429 }
4430 #else
4431 gint32
4432 mono_w32file_get_logical_drive (guint32 len, gunichar2 *buf)
4433 {
4434         return GetLogicalDriveStrings_Mtab (len, buf);
4435 }
4436 #endif
4437 static gint32
4438 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf)
4439 {
4440         FILE *fp;
4441         gunichar2 *ptr, *dir;
4442         glong length, total = 0;
4443         gchar buffer [512];
4444         gchar **splitted;
4445
4446         memset (buf, 0, sizeof (gunichar2) * (len + 1)); 
4447         buf [0] = '/';
4448         buf [1] = 0;
4449         buf [2] = 0;
4450
4451         /* Sigh, mntent and friends don't work well.
4452          * It stops on the first line that doesn't begin with a '/'.
4453          * (linux 2.6.5, libc 2.3.2.ds1-12) - Gonz */
4454         MONO_ENTER_GC_SAFE;
4455         fp = fopen ("/etc/mtab", "rt");
4456         MONO_EXIT_GC_SAFE;
4457         if (fp == NULL) {
4458                 MONO_ENTER_GC_SAFE;
4459                 fp = fopen ("/etc/mnttab", "rt");
4460                 MONO_EXIT_GC_SAFE;
4461                 if (fp == NULL)
4462                         return 1;
4463         }
4464
4465         ptr = buf;
4466         while (1) {
4467                 gchar *fgets_res;
4468                 MONO_ENTER_GC_SAFE;
4469                 fgets_res = fgets (buffer, 512, fp);
4470                 MONO_EXIT_GC_SAFE;
4471                 if (!fgets_res)
4472                         break;
4473                 if (*buffer != '/')
4474                         continue;
4475
4476                 splitted = g_strsplit (buffer, " ", 0);
4477                 if (!*splitted || !*(splitted + 1)) {
4478                         g_strfreev (splitted);
4479                         continue;
4480                 }
4481
4482                 unescape_octal (*(splitted + 1));
4483                 dir = g_utf8_to_utf16 (*(splitted + 1), -1, NULL, &length, NULL);
4484                 g_strfreev (splitted);
4485                 if (total + length + 1 > len) {
4486                         MONO_ENTER_GC_SAFE;
4487                         fclose (fp);
4488                         MONO_EXIT_GC_SAFE;
4489                         g_free (dir);
4490                         return len * 2; /* guess */
4491                 }
4492
4493                 memcpy (ptr + total, dir, sizeof (gunichar2) * length);
4494                 g_free (dir);
4495                 total += length + 1;
4496         }
4497
4498         MONO_ENTER_GC_SAFE;
4499         fclose (fp);
4500         MONO_EXIT_GC_SAFE;
4501         return total;
4502 /* Commented out, does not work with my mtab!!! - Gonz */
4503 #ifdef NOTENABLED /* HAVE_MNTENT_H */
4504 {
4505         FILE *fp;
4506         struct mntent *mnt;
4507         gunichar2 *ptr, *dir;
4508         glong len, total = 0;
4509         
4510
4511         MONO_ENTER_GC_SAFE;
4512         fp = setmntent ("/etc/mtab", "rt");
4513         MONO_EXIT_GC_SAFE;
4514         if (fp == NULL) {
4515                 MONO_ENTER_GC_SAFE;
4516                 fp = setmntent ("/etc/mnttab", "rt");
4517                 MONO_EXIT_GC_SAFE;
4518                 if (fp == NULL)
4519                         return;
4520         }
4521
4522         ptr = buf;
4523         while (1) {
4524                 MONO_ENTER_GC_SAFE;
4525                 mnt = getmntent (fp);
4526                 MONO_EXIT_GC_SAFE;
4527                 if (mnt == NULL)
4528                         break;
4529                 g_print ("GOT %s\n", mnt->mnt_dir);
4530                 dir = g_utf8_to_utf16 (mnt->mnt_dir, &len, NULL, NULL, NULL);
4531                 if (total + len + 1 > len) {
4532                         MONO_ENTER_GC_SAFE;
4533                         endmntent (fp);
4534                         MONO_EXIT_GC_SAFE;
4535                         return len * 2; /* guess */
4536                 }
4537
4538                 memcpy (ptr + total, dir, sizeof (gunichar2) * len);
4539                 g_free (dir);
4540                 total += len + 1;
4541         }
4542
4543         MONO_ENTER_GC_SAFE;
4544         endmntent (fp);
4545         MONO_EXIT_GC_SAFE;
4546         return total;
4547 }
4548 #endif
4549 }
4550 #endif
4551
4552 #if defined(HAVE_STATVFS) || defined(HAVE_STATFS)
4553 gboolean
4554 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)
4555 {
4556 #ifdef HAVE_STATVFS
4557         struct statvfs fsstat;
4558 #elif defined(HAVE_STATFS)
4559         struct statfs fsstat;
4560 #endif
4561         gboolean isreadonly;
4562         gchar *utf8_path_name;
4563         gint ret;
4564         unsigned long block_size;
4565
4566         if (path_name == NULL) {
4567                 utf8_path_name = g_strdup (g_get_current_dir());
4568                 if (utf8_path_name == NULL) {
4569                         mono_w32error_set_last (ERROR_DIRECTORY);
4570                         return(FALSE);
4571                 }
4572         }
4573         else {
4574                 utf8_path_name = mono_unicode_to_external (path_name);
4575                 if (utf8_path_name == NULL) {
4576                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
4577
4578                         mono_w32error_set_last (ERROR_INVALID_NAME);
4579                         return(FALSE);
4580                 }
4581         }
4582
4583         do {
4584 #ifdef HAVE_STATVFS
4585                 MONO_ENTER_GC_SAFE;
4586                 ret = statvfs (utf8_path_name, &fsstat);
4587                 MONO_EXIT_GC_SAFE;
4588                 isreadonly = ((fsstat.f_flag & ST_RDONLY) == ST_RDONLY);
4589                 block_size = fsstat.f_frsize;
4590 #elif defined(HAVE_STATFS)
4591                 MONO_ENTER_GC_SAFE;
4592                 ret = statfs (utf8_path_name, &fsstat);
4593                 MONO_EXIT_GC_SAFE;
4594 #if defined (MNT_RDONLY)
4595                 isreadonly = ((fsstat.f_flags & MNT_RDONLY) == MNT_RDONLY);
4596 #elif defined (MS_RDONLY)
4597                 isreadonly = ((fsstat.f_flags & MS_RDONLY) == MS_RDONLY);
4598 #endif
4599                 block_size = fsstat.f_bsize;
4600 #endif
4601         } while(ret == -1 && errno == EINTR);
4602
4603         g_free(utf8_path_name);
4604
4605         if (ret == -1) {
4606                 _wapi_set_last_error_from_errno ();
4607                 mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: statvfs failed: %s", __func__, strerror (errno));
4608                 return(FALSE);
4609         }
4610
4611         /* total number of free bytes for non-root */
4612         if (free_bytes_avail != NULL) {
4613                 if (isreadonly) {
4614                         *free_bytes_avail = 0;
4615                 }
4616                 else {
4617                         *free_bytes_avail = block_size * (guint64)fsstat.f_bavail;
4618                 }
4619         }
4620
4621         /* total number of bytes available for non-root */
4622         if (total_number_of_bytes != NULL) {
4623                 *total_number_of_bytes = block_size * (guint64)fsstat.f_blocks;
4624         }
4625
4626         /* total number of bytes available for root */
4627         if (total_number_of_free_bytes != NULL) {
4628                 if (isreadonly) {
4629                         *total_number_of_free_bytes = 0;
4630                 }
4631                 else {
4632                         *total_number_of_free_bytes = block_size * (guint64)fsstat.f_bfree;
4633                 }
4634         }
4635         
4636         return(TRUE);
4637 }
4638 #else
4639 gboolean
4640 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)
4641 {
4642         if (free_bytes_avail != NULL) {
4643                 *free_bytes_avail = (guint64) -1;
4644         }
4645
4646         if (total_number_of_bytes != NULL) {
4647                 *total_number_of_bytes = (guint64) -1;
4648         }
4649
4650         if (total_number_of_free_bytes != NULL) {
4651                 *total_number_of_free_bytes = (guint64) -1;
4652         }
4653
4654         return(TRUE);
4655 }
4656 #endif
4657
4658 /*
4659  * General Unix support
4660  */
4661 typedef struct {
4662         guint32 drive_type;
4663 #if __linux__
4664         const long fstypeid;
4665 #endif
4666         const gchar* fstype;
4667 } _wapi_drive_type;
4668
4669 static _wapi_drive_type _wapi_drive_types[] = {
4670 #if PLATFORM_MACOSX
4671         { DRIVE_REMOTE, "afp" },
4672         { DRIVE_REMOTE, "autofs" },
4673         { DRIVE_CDROM, "cddafs" },
4674         { DRIVE_CDROM, "cd9660" },
4675         { DRIVE_RAMDISK, "devfs" },
4676         { DRIVE_FIXED, "exfat" },
4677         { DRIVE_RAMDISK, "fdesc" },
4678         { DRIVE_REMOTE, "ftp" },
4679         { DRIVE_FIXED, "hfs" },
4680         { DRIVE_FIXED, "msdos" },
4681         { DRIVE_REMOTE, "nfs" },
4682         { DRIVE_FIXED, "ntfs" },
4683         { DRIVE_REMOTE, "smbfs" },
4684         { DRIVE_FIXED, "udf" },
4685         { DRIVE_REMOTE, "webdav" },
4686         { DRIVE_UNKNOWN, NULL }
4687 #elif __linux__
4688         { DRIVE_FIXED, ADFS_SUPER_MAGIC, "adfs"},
4689         { DRIVE_FIXED, AFFS_SUPER_MAGIC, "affs"},
4690         { DRIVE_REMOTE, AFS_SUPER_MAGIC, "afs"},
4691         { DRIVE_RAMDISK, AUTOFS_SUPER_MAGIC, "autofs"},
4692         { DRIVE_RAMDISK, AUTOFS_SBI_MAGIC, "autofs4"},
4693         { DRIVE_REMOTE, CODA_SUPER_MAGIC, "coda" },
4694         { DRIVE_RAMDISK, CRAMFS_MAGIC, "cramfs"},
4695         { DRIVE_RAMDISK, CRAMFS_MAGIC_WEND, "cramfs"},
4696         { DRIVE_REMOTE, CIFS_MAGIC_NUMBER, "cifs"},
4697         { DRIVE_RAMDISK, DEBUGFS_MAGIC, "debugfs"},
4698         { DRIVE_RAMDISK, SYSFS_MAGIC, "sysfs"},
4699         { DRIVE_RAMDISK, SECURITYFS_MAGIC, "securityfs"},
4700         { DRIVE_RAMDISK, SELINUX_MAGIC, "selinuxfs"},
4701         { DRIVE_RAMDISK, RAMFS_MAGIC, "ramfs"},
4702         { DRIVE_FIXED, SQUASHFS_MAGIC, "squashfs"},
4703         { DRIVE_FIXED, EFS_SUPER_MAGIC, "efs"},
4704         { DRIVE_FIXED, EXT2_SUPER_MAGIC, "ext"},
4705         { DRIVE_FIXED, EXT3_SUPER_MAGIC, "ext"},
4706         { DRIVE_FIXED, EXT4_SUPER_MAGIC, "ext"},
4707         { DRIVE_REMOTE, XENFS_SUPER_MAGIC, "xenfs"},
4708         { DRIVE_FIXED, BTRFS_SUPER_MAGIC, "btrfs"},
4709         { DRIVE_FIXED, HFS_SUPER_MAGIC, "hfs"},
4710         { DRIVE_FIXED, HFSPLUS_SUPER_MAGIC, "hfsplus"},
4711         { DRIVE_FIXED, HPFS_SUPER_MAGIC, "hpfs"},
4712         { DRIVE_RAMDISK, HUGETLBFS_MAGIC, "hugetlbfs"},
4713         { DRIVE_CDROM, ISOFS_SUPER_MAGIC, "iso"},
4714         { DRIVE_FIXED, JFFS2_SUPER_MAGIC, "jffs2"},
4715         { DRIVE_RAMDISK, ANON_INODE_FS_MAGIC, "anon_inode"},
4716         { DRIVE_FIXED, JFS_SUPER_MAGIC, "jfs"},
4717         { DRIVE_FIXED, MINIX_SUPER_MAGIC, "minix"},
4718         { DRIVE_FIXED, MINIX_SUPER_MAGIC2, "minix v2"},
4719         { DRIVE_FIXED, MINIX2_SUPER_MAGIC, "minix2"},
4720         { DRIVE_FIXED, MINIX2_SUPER_MAGIC2, "minix2 v2"},
4721         { DRIVE_FIXED, MINIX3_SUPER_MAGIC, "minix3"},
4722         { DRIVE_FIXED, MSDOS_SUPER_MAGIC, "msdos"},
4723         { DRIVE_REMOTE, NCP_SUPER_MAGIC, "ncp"},
4724         { DRIVE_REMOTE, NFS_SUPER_MAGIC, "nfs"},
4725         { DRIVE_FIXED, NTFS_SB_MAGIC, "ntfs"},
4726         { DRIVE_RAMDISK, OPENPROM_SUPER_MAGIC, "openpromfs"},
4727         { DRIVE_RAMDISK, PROC_SUPER_MAGIC, "proc"},
4728         { DRIVE_FIXED, QNX4_SUPER_MAGIC, "qnx4"},
4729         { DRIVE_FIXED, REISERFS_SUPER_MAGIC, "reiserfs"},
4730         { DRIVE_RAMDISK, ROMFS_MAGIC, "romfs"},
4731         { DRIVE_REMOTE, SMB_SUPER_MAGIC, "samba"},
4732         { DRIVE_RAMDISK, CGROUP_SUPER_MAGIC, "cgroupfs"},
4733         { DRIVE_RAMDISK, FUTEXFS_SUPER_MAGIC, "futexfs"},
4734         { DRIVE_FIXED, SYSV2_SUPER_MAGIC, "sysv2"},
4735         { DRIVE_FIXED, SYSV4_SUPER_MAGIC, "sysv4"},
4736         { DRIVE_RAMDISK, TMPFS_MAGIC, "tmpfs"},
4737         { DRIVE_RAMDISK, DEVPTS_SUPER_MAGIC, "devpts"},
4738         { DRIVE_CDROM, UDF_SUPER_MAGIC, "udf"},
4739         { DRIVE_FIXED, UFS_MAGIC, "ufs"},
4740         { DRIVE_FIXED, UFS_MAGIC_BW, "ufs"},
4741         { DRIVE_FIXED, UFS2_MAGIC, "ufs2"},
4742         { DRIVE_FIXED, UFS_CIGAM, "ufs"},
4743         { DRIVE_RAMDISK, USBDEVICE_SUPER_MAGIC, "usbdev"},
4744         { DRIVE_FIXED, XENIX_SUPER_MAGIC, "xenix"},
4745         { DRIVE_FIXED, XFS_SB_MAGIC, "xfs"},
4746         { DRIVE_RAMDISK, FUSE_SUPER_MAGIC, "fuse"},
4747         { DRIVE_FIXED, V9FS_MAGIC, "9p"},
4748         { DRIVE_REMOTE, CEPH_SUPER_MAGIC, "ceph"},
4749         { DRIVE_RAMDISK, CONFIGFS_MAGIC, "configfs"},
4750         { DRIVE_RAMDISK, ECRYPTFS_SUPER_MAGIC, "eCryptfs"},
4751         { DRIVE_FIXED, EXOFS_SUPER_MAGIC, "exofs"},
4752         { DRIVE_FIXED, VXFS_SUPER_MAGIC, "vxfs"},
4753         { DRIVE_FIXED, VXFS_OLT_MAGIC, "vxfs_olt"},
4754         { DRIVE_REMOTE, GFS2_MAGIC, "gfs2"},
4755         { DRIVE_FIXED, LOGFS_MAGIC_U32, "logfs"},
4756         { DRIVE_FIXED, OCFS2_SUPER_MAGIC, "ocfs2"},
4757         { DRIVE_FIXED, OMFS_MAGIC, "omfs"},
4758         { DRIVE_FIXED, UBIFS_SUPER_MAGIC, "ubifs"},
4759         { DRIVE_UNKNOWN, 0, NULL}
4760 #else
4761         { DRIVE_RAMDISK, "ramfs"      },
4762         { DRIVE_RAMDISK, "tmpfs"      },
4763         { DRIVE_RAMDISK, "proc"       },
4764         { DRIVE_RAMDISK, "sysfs"      },
4765         { DRIVE_RAMDISK, "debugfs"    },
4766         { DRIVE_RAMDISK, "devpts"     },
4767         { DRIVE_RAMDISK, "securityfs" },
4768         { DRIVE_CDROM,   "iso9660"    },
4769         { DRIVE_FIXED,   "ext2"       },
4770         { DRIVE_FIXED,   "ext3"       },
4771         { DRIVE_FIXED,   "ext4"       },
4772         { DRIVE_FIXED,   "sysv"       },
4773         { DRIVE_FIXED,   "reiserfs"   },
4774         { DRIVE_FIXED,   "ufs"        },
4775         { DRIVE_FIXED,   "vfat"       },
4776         { DRIVE_FIXED,   "msdos"      },
4777         { DRIVE_FIXED,   "udf"        },
4778         { DRIVE_FIXED,   "hfs"        },
4779         { DRIVE_FIXED,   "hpfs"       },
4780         { DRIVE_FIXED,   "qnx4"       },
4781         { DRIVE_FIXED,   "ntfs"       },
4782         { DRIVE_FIXED,   "ntfs-3g"    },
4783         { DRIVE_REMOTE,  "smbfs"      },
4784         { DRIVE_REMOTE,  "fuse"       },
4785         { DRIVE_REMOTE,  "nfs"        },
4786         { DRIVE_REMOTE,  "nfs4"       },
4787         { DRIVE_REMOTE,  "cifs"       },
4788         { DRIVE_REMOTE,  "ncpfs"      },
4789         { DRIVE_REMOTE,  "coda"       },
4790         { DRIVE_REMOTE,  "afs"        },
4791         { DRIVE_UNKNOWN, NULL         }
4792 #endif
4793 };
4794
4795 #if __linux__
4796 static guint32 _wapi_get_drive_type(long f_type)
4797 {
4798         _wapi_drive_type *current;
4799
4800         current = &_wapi_drive_types[0];
4801         while (current->drive_type != DRIVE_UNKNOWN) {
4802                 if (current->fstypeid == f_type)
4803                         return current->drive_type;
4804                 current++;
4805         }
4806
4807         return DRIVE_UNKNOWN;
4808 }
4809 #else
4810 static guint32 _wapi_get_drive_type(const gchar* fstype)
4811 {
4812         _wapi_drive_type *current;
4813
4814         current = &_wapi_drive_types[0];
4815         while (current->drive_type != DRIVE_UNKNOWN) {
4816                 if (strcmp (current->fstype, fstype) == 0)
4817                         break;
4818
4819                 current++;
4820         }
4821         
4822         return current->drive_type;
4823 }
4824 #endif
4825
4826 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4827 static guint32
4828 GetDriveTypeFromPath (const gchar *utf8_root_path_name)
4829 {
4830         struct statfs buf;
4831         gint res;
4832
4833         MONO_ENTER_GC_SAFE;
4834         res = statfs (utf8_root_path_name, &buf);
4835         MONO_EXIT_GC_SAFE;
4836         if (res == -1)
4837                 return DRIVE_UNKNOWN;
4838 #if PLATFORM_MACOSX
4839         return _wapi_get_drive_type (buf.f_fstypename);
4840 #else
4841         return _wapi_get_drive_type (buf.f_type);
4842 #endif
4843 }
4844 #else
4845 static guint32
4846 GetDriveTypeFromPath (const gchar *utf8_root_path_name)
4847 {
4848         guint32 drive_type;
4849         FILE *fp;
4850         gchar buffer [512];
4851         gchar **splitted;
4852
4853         MONO_ENTER_GC_SAFE;
4854         fp = fopen ("/etc/mtab", "rt");
4855         MONO_EXIT_GC_SAFE;
4856         if (fp == NULL) {
4857                 MONO_ENTER_GC_SAFE;
4858                 fp = fopen ("/etc/mnttab", "rt");
4859                 MONO_EXIT_GC_SAFE;
4860                 if (fp == NULL) 
4861                         return(DRIVE_UNKNOWN);
4862         }
4863
4864         drive_type = DRIVE_NO_ROOT_DIR;
4865         while (1) {
4866                 gchar *fgets_res;
4867                 MONO_ENTER_GC_SAFE;
4868                 fgets_res = fgets (buffer, 512, fp);
4869                 MONO_EXIT_GC_SAFE;
4870                 if (fgets_res == NULL)
4871                         break;
4872                 splitted = g_strsplit (buffer, " ", 0);
4873                 if (!*splitted || !*(splitted + 1) || !*(splitted + 2)) {
4874                         g_strfreev (splitted);
4875                         continue;
4876                 }
4877
4878                 /* compare given root_path_name with the one from mtab, 
4879                   if length of utf8_root_path_name is zero it must be the root dir */
4880                 if (strcmp (*(splitted + 1), utf8_root_path_name) == 0 ||
4881                     (strcmp (*(splitted + 1), "/") == 0 && strlen (utf8_root_path_name) == 0)) {
4882                         drive_type = _wapi_get_drive_type (*(splitted + 2));
4883                         /* it is possible this path might be mounted again with
4884                            a known type...keep looking */
4885                         if (drive_type != DRIVE_UNKNOWN) {
4886                                 g_strfreev (splitted);
4887                                 break;
4888                         }
4889                 }
4890
4891                 g_strfreev (splitted);
4892         }
4893
4894         MONO_ENTER_GC_SAFE;
4895         fclose (fp);
4896         MONO_EXIT_GC_SAFE;
4897         return drive_type;
4898 }
4899 #endif
4900
4901 guint32
4902 mono_w32file_get_drive_type(const gunichar2 *root_path_name)
4903 {
4904         gchar *utf8_root_path_name;
4905         guint32 drive_type;
4906
4907         if (root_path_name == NULL) {
4908                 utf8_root_path_name = g_strdup (g_get_current_dir());
4909                 if (utf8_root_path_name == NULL) {
4910                         return(DRIVE_NO_ROOT_DIR);
4911                 }
4912         }
4913         else {
4914                 utf8_root_path_name = mono_unicode_to_external (root_path_name);
4915                 if (utf8_root_path_name == NULL) {
4916                         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
4917                         return(DRIVE_NO_ROOT_DIR);
4918                 }
4919                 
4920                 /* strip trailing slash for compare below */
4921                 if (g_str_has_suffix(utf8_root_path_name, "/") && utf8_root_path_name [1] != 0) {
4922                         utf8_root_path_name[strlen(utf8_root_path_name) - 1] = 0;
4923                 }
4924         }
4925         drive_type = GetDriveTypeFromPath (utf8_root_path_name);
4926         g_free (utf8_root_path_name);
4927
4928         return (drive_type);
4929 }
4930
4931 #if defined (PLATFORM_MACOSX) || defined (__linux__) || defined(PLATFORM_BSD) || defined(__native_client__) || defined(__FreeBSD_kernel__) || defined(__HAIKU__)
4932 static gchar*
4933 get_fstypename (gchar *utfpath)
4934 {
4935 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4936         struct statfs stat;
4937 #if __linux__
4938         _wapi_drive_type *current;
4939 #endif
4940         gint statfs_res;
4941         MONO_ENTER_GC_SAFE;
4942         statfs_res = statfs (utfpath, &stat);
4943         MONO_EXIT_GC_SAFE;
4944         if (statfs_res == -1)
4945                 return NULL;
4946 #if PLATFORM_MACOSX
4947         return g_strdup (stat.f_fstypename);
4948 #else
4949         current = &_wapi_drive_types[0];
4950         while (current->drive_type != DRIVE_UNKNOWN) {
4951                 if (stat.f_type == current->fstypeid)
4952                         return g_strdup (current->fstype);
4953                 current++;
4954         }
4955         return NULL;
4956 #endif
4957 #else
4958         return NULL;
4959 #endif
4960 }
4961
4962 /* Linux has struct statfs which has a different layout */
4963 gboolean
4964 mono_w32file_get_volume_information (const gunichar2 *path, gunichar2 *volumename, gint volumesize, gint *outserial, gint *maxcomp, gint *fsflags, gunichar2 *fsbuffer, gint fsbuffersize)
4965 {
4966         gchar *utfpath;
4967         gchar *fstypename;
4968         gboolean status = FALSE;
4969         glong len;
4970         
4971         // We only support getting the file system type
4972         if (fsbuffer == NULL)
4973                 return 0;
4974         
4975         utfpath = mono_unicode_to_external (path);
4976         if ((fstypename = get_fstypename (utfpath)) != NULL){
4977                 gunichar2 *ret = g_utf8_to_utf16 (fstypename, -1, NULL, &len, NULL);
4978                 if (ret != NULL && len < fsbuffersize){
4979                         memcpy (fsbuffer, ret, len * sizeof (gunichar2));
4980                         fsbuffer [len] = 0;
4981                         status = TRUE;
4982                 }
4983                 if (ret != NULL)
4984                         g_free (ret);
4985                 g_free (fstypename);
4986         }
4987         g_free (utfpath);
4988         return status;
4989 }
4990 #endif
4991
4992 static gboolean
4993 LockFile (gpointer handle, guint32 offset_low, guint32 offset_high, guint32 length_low, guint32 length_high)
4994 {
4995         MonoW32HandleFile *file_handle;
4996         off_t offset, length;
4997
4998         if (!mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE, (gpointer *)&file_handle)) {
4999                 g_warning ("%s: error looking up file handle %p", __func__, handle);
5000                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
5001                 return FALSE;
5002         }
5003
5004         if (!(file_handle->fileaccess & GENERIC_READ) && !(file_handle->fileaccess & GENERIC_WRITE) && !(file_handle->fileaccess & GENERIC_ALL)) {
5005                 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);
5006                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
5007                 return FALSE;
5008         }
5009
5010 #ifdef HAVE_LARGE_FILE_SUPPORT
5011         offset = ((gint64)offset_high << 32) | offset_low;
5012         length = ((gint64)length_high << 32) | length_low;
5013
5014         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Locking handle %p, offset %lld, length %lld", __func__, handle, offset, length);
5015 #else
5016         if (offset_high > 0 || length_high > 0) {
5017                 mono_w32error_set_last (ERROR_INVALID_PARAMETER);
5018                 return FALSE;
5019         }
5020         offset = offset_low;
5021         length = length_low;
5022
5023         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Locking handle %p, offset %ld, length %ld", __func__, handle, offset, length);
5024 #endif
5025
5026         return _wapi_lock_file_region (GPOINTER_TO_UINT(handle), offset, length);
5027 }
5028
5029 static gboolean
5030 UnlockFile (gpointer handle, guint32 offset_low, guint32 offset_high, guint32 length_low, guint32 length_high)
5031 {
5032         MonoW32HandleFile *file_handle;
5033         off_t offset, length;
5034
5035         if (!mono_w32handle_lookup (handle, MONO_W32HANDLE_FILE, (gpointer *)&file_handle)) {
5036                 g_warning ("%s: error looking up file handle %p", __func__, handle);
5037                 mono_w32error_set_last (ERROR_INVALID_HANDLE);
5038                 return FALSE;
5039         }
5040
5041         if (!(file_handle->fileaccess & GENERIC_READ) && !(file_handle->fileaccess & GENERIC_WRITE) && !(file_handle->fileaccess & GENERIC_ALL)) {
5042                 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);
5043                 mono_w32error_set_last (ERROR_ACCESS_DENIED);
5044                 return FALSE;
5045         }
5046
5047 #ifdef HAVE_LARGE_FILE_SUPPORT
5048         offset = ((gint64)offset_high << 32) | offset_low;
5049         length = ((gint64)length_high << 32) | length_low;
5050
5051         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Unlocking handle %p, offset %lld, length %lld", __func__, handle, offset, length);
5052 #else
5053         offset = offset_low;
5054         length = length_low;
5055
5056         mono_trace (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Unlocking handle %p, offset %ld, length %ld", __func__, handle, offset, length);
5057 #endif
5058
5059         return _wapi_unlock_file_region (GPOINTER_TO_UINT(handle), offset, length);
5060 }
5061
5062 void
5063 mono_w32file_init (void)
5064 {
5065         mono_coop_mutex_init (&stdhandle_mutex);
5066         mono_coop_mutex_init (&file_share_mutex);
5067
5068         mono_w32handle_register_ops (MONO_W32HANDLE_FILE,    &_wapi_file_ops);
5069         mono_w32handle_register_ops (MONO_W32HANDLE_CONSOLE, &_wapi_console_ops);
5070         mono_w32handle_register_ops (MONO_W32HANDLE_FIND,    &_wapi_find_ops);
5071         mono_w32handle_register_ops (MONO_W32HANDLE_PIPE,    &_wapi_pipe_ops);
5072
5073 /*      mono_w32handle_register_capabilities (MONO_W32HANDLE_FILE, */
5074 /*                                          MONO_W32HANDLE_CAP_WAIT); */
5075 /*      mono_w32handle_register_capabilities (MONO_W32HANDLE_CONSOLE, */
5076 /*                                          MONO_W32HANDLE_CAP_WAIT); */
5077
5078         if (g_hasenv ("MONO_STRICT_IO_EMULATION"))
5079                 lock_while_writing = TRUE;
5080 }
5081
5082 void
5083 mono_w32file_cleanup (void)
5084 {
5085         mono_coop_mutex_destroy (&file_share_mutex);
5086
5087         if (file_share_table)
5088                 g_hash_table_destroy (file_share_table);
5089 }
5090
5091 gboolean
5092 mono_w32file_move (gunichar2 *path, gunichar2 *dest, gint32 *error)
5093 {
5094         gboolean result;
5095
5096         result = MoveFile (path, dest);
5097         if (!result)
5098                 *error = mono_w32error_get_last ();
5099         return result;
5100 }
5101
5102 gboolean
5103 mono_w32file_copy (gunichar2 *path, gunichar2 *dest, gboolean overwrite, gint32 *error)
5104 {
5105         gboolean result;
5106
5107         result = CopyFile (path, dest, !overwrite);
5108         if (!result)
5109                 *error = mono_w32error_get_last ();
5110
5111         return result;
5112 }
5113
5114 gboolean
5115 mono_w32file_replace (gunichar2 *destinationFileName, gunichar2 *sourceFileName, gunichar2 *destinationBackupFileName, guint32 flags, gint32 *error)
5116 {
5117         gboolean result;
5118
5119         result = ReplaceFile (destinationFileName, sourceFileName, destinationBackupFileName, flags, NULL, NULL);
5120         if (!result)
5121                 *error = mono_w32error_get_last ();
5122         return result;
5123 }
5124
5125 gint64
5126 mono_w32file_get_file_size (gpointer handle, gint32 *error)
5127 {
5128         gint64 length;
5129         guint32 length_hi;
5130
5131         length = GetFileSize (handle, &length_hi);
5132         if(length==INVALID_FILE_SIZE) {
5133                 *error=mono_w32error_get_last ();
5134         }
5135
5136         return length | ((gint64)length_hi << 32);
5137 }
5138
5139 gboolean
5140 mono_w32file_lock (gpointer handle, gint64 position, gint64 length, gint32 *error)
5141 {
5142         gboolean result;
5143
5144         result = LockFile (handle, position & 0xFFFFFFFF, position >> 32, length & 0xFFFFFFFF, length >> 32);
5145         if (!result)
5146                 *error = mono_w32error_get_last ();
5147         return result;
5148 }
5149
5150 gboolean
5151 mono_w32file_unlock (gpointer handle, gint64 position, gint64 length, gint32 *error)
5152 {
5153         gboolean result;
5154
5155         result = UnlockFile (handle, position & 0xFFFFFFFF, position >> 32, length & 0xFFFFFFFF, length >> 32);
5156         if (!result)
5157                 *error = mono_w32error_get_last ();
5158         return result;
5159 }
5160
5161 gpointer
5162 mono_w32file_get_console_input (void)
5163 {
5164         return mono_w32file_get_std_handle (STD_INPUT_HANDLE);
5165 }
5166
5167 gpointer
5168 mono_w32file_get_console_output (void)
5169 {
5170         return mono_w32file_get_std_handle (STD_OUTPUT_HANDLE);
5171 }
5172
5173 gpointer
5174 mono_w32file_get_console_error (void)
5175 {
5176         return mono_w32file_get_std_handle (STD_ERROR_HANDLE);
5177 }