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