[io] Release Pipe and Console shared handles
[mono.git] / mono / io-layer / io.c
1 /*
2  * io.c:  File, console and find handles
3  *
4  * Author:
5  *      Dick Porter (dick@ximian.com)
6  *
7  * (C) 2002 Ximian, Inc.
8  * Copyright (c) 2002-2006 Novell, Inc.
9  * Copyright 2011 Xamarin Inc (http://www.xamarin.com).
10  */
11
12 #include <config.h>
13 #include <glib.h>
14 #include <fcntl.h>
15 #include <unistd.h>
16 #include <errno.h>
17 #include <string.h>
18 #include <sys/stat.h>
19 #ifdef HAVE_SYS_STATVFS_H
20 #include <sys/statvfs.h>
21 #endif
22 #if defined(HAVE_SYS_STATFS_H)
23 #include <sys/statfs.h>
24 #endif
25 #if defined(HAVE_SYS_PARAM_H) && defined(HAVE_SYS_MOUNT_H)
26 #include <sys/param.h>
27 #include <sys/mount.h>
28 #endif
29 #include <sys/types.h>
30 #include <stdio.h>
31 #include <utime.h>
32 #ifdef __linux__
33 #include <sys/ioctl.h>
34 #include <linux/fs.h>
35 #include <mono/utils/linux_magic.h>
36 #endif
37
38 #include <mono/io-layer/wapi.h>
39 #include <mono/io-layer/wapi-private.h>
40 #include <mono/io-layer/handles-private.h>
41 #include <mono/io-layer/io-private.h>
42 #include <mono/io-layer/timefuncs-private.h>
43 #include <mono/io-layer/thread-private.h>
44 #include <mono/io-layer/io-portability.h>
45 #include <mono/io-layer/io-trace.h>
46 #include <mono/utils/strenc.h>
47 #include <mono/utils/mono-once.h>
48 #include <mono/utils/mono-logger-internals.h>
49
50 static void file_close (gpointer handle, gpointer data);
51 static WapiFileType file_getfiletype(void);
52 static gboolean file_read(gpointer handle, gpointer buffer,
53                           guint32 numbytes, guint32 *bytesread,
54                           WapiOverlapped *overlapped);
55 static gboolean file_write(gpointer handle, gconstpointer buffer,
56                            guint32 numbytes, guint32 *byteswritten,
57                            WapiOverlapped *overlapped);
58 static gboolean file_flush(gpointer handle);
59 static guint32 file_seek(gpointer handle, gint32 movedistance,
60                          gint32 *highmovedistance, WapiSeekMethod method);
61 static gboolean file_setendoffile(gpointer handle);
62 static guint32 file_getfilesize(gpointer handle, guint32 *highsize);
63 static gboolean file_getfiletime(gpointer handle, WapiFileTime *create_time,
64                                  WapiFileTime *last_access,
65                                  WapiFileTime *last_write);
66 static gboolean file_setfiletime(gpointer handle,
67                                  const WapiFileTime *create_time,
68                                  const WapiFileTime *last_access,
69                                  const WapiFileTime *last_write);
70 static guint32 GetDriveTypeFromPath (const gchar *utf8_root_path_name);
71
72 /* File handle is only signalled for overlapped IO */
73 struct _WapiHandleOps _wapi_file_ops = {
74         file_close,             /* close */
75         NULL,                   /* signal */
76         NULL,                   /* own */
77         NULL,                   /* is_owned */
78         NULL,                   /* special_wait */
79         NULL                    /* prewait */
80 };
81
82 void _wapi_file_details (gpointer handle_info)
83 {
84         struct _WapiHandle_file *file = (struct _WapiHandle_file *)handle_info;
85         
86         g_print ("[%20s] acc: %c%c%c, shr: %c%c%c, attrs: %5u",
87                  file->filename,
88                  file->fileaccess&GENERIC_READ?'R':'.',
89                  file->fileaccess&GENERIC_WRITE?'W':'.',
90                  file->fileaccess&GENERIC_EXECUTE?'X':'.',
91                  file->sharemode&FILE_SHARE_READ?'R':'.',
92                  file->sharemode&FILE_SHARE_WRITE?'W':'.',
93                  file->sharemode&FILE_SHARE_DELETE?'D':'.',
94                  file->attrs);
95 }
96
97 static void console_close (gpointer handle, gpointer data);
98 static WapiFileType console_getfiletype(void);
99 static gboolean console_read(gpointer handle, gpointer buffer,
100                              guint32 numbytes, guint32 *bytesread,
101                              WapiOverlapped *overlapped);
102 static gboolean console_write(gpointer handle, gconstpointer buffer,
103                               guint32 numbytes, guint32 *byteswritten,
104                               WapiOverlapped *overlapped);
105
106 /* Console is mostly the same as file, except it can block waiting for
107  * input or output
108  */
109 struct _WapiHandleOps _wapi_console_ops = {
110         console_close,          /* close */
111         NULL,                   /* signal */
112         NULL,                   /* own */
113         NULL,                   /* is_owned */
114         NULL,                   /* special_wait */
115         NULL                    /* prewait */
116 };
117
118 void _wapi_console_details (gpointer handle_info)
119 {
120         _wapi_file_details (handle_info);
121 }
122
123 /* Find handle has no ops.
124  */
125 struct _WapiHandleOps _wapi_find_ops = {
126         NULL,                   /* close */
127         NULL,                   /* signal */
128         NULL,                   /* own */
129         NULL,                   /* is_owned */
130         NULL,                   /* special_wait */
131         NULL                    /* prewait */
132 };
133
134 static void pipe_close (gpointer handle, gpointer data);
135 static WapiFileType pipe_getfiletype (void);
136 static gboolean pipe_read (gpointer handle, gpointer buffer, guint32 numbytes,
137                            guint32 *bytesread, WapiOverlapped *overlapped);
138 static gboolean pipe_write (gpointer handle, gconstpointer buffer,
139                             guint32 numbytes, guint32 *byteswritten,
140                             WapiOverlapped *overlapped);
141
142 /* Pipe handles
143  */
144 struct _WapiHandleOps _wapi_pipe_ops = {
145         pipe_close,             /* close */
146         NULL,                   /* signal */
147         NULL,                   /* own */
148         NULL,                   /* is_owned */
149         NULL,                   /* special_wait */
150         NULL                    /* prewait */
151 };
152
153 void _wapi_pipe_details (gpointer handle_info)
154 {
155         _wapi_file_details (handle_info);
156 }
157
158 static const struct {
159         /* File, console and pipe handles */
160         WapiFileType (*getfiletype)(void);
161         
162         /* File, console and pipe handles */
163         gboolean (*readfile)(gpointer handle, gpointer buffer,
164                              guint32 numbytes, guint32 *bytesread,
165                              WapiOverlapped *overlapped);
166         gboolean (*writefile)(gpointer handle, gconstpointer buffer,
167                               guint32 numbytes, guint32 *byteswritten,
168                               WapiOverlapped *overlapped);
169         gboolean (*flushfile)(gpointer handle);
170         
171         /* File handles */
172         guint32 (*seek)(gpointer handle, gint32 movedistance,
173                         gint32 *highmovedistance, WapiSeekMethod method);
174         gboolean (*setendoffile)(gpointer handle);
175         guint32 (*getfilesize)(gpointer handle, guint32 *highsize);
176         gboolean (*getfiletime)(gpointer handle, WapiFileTime *create_time,
177                                 WapiFileTime *last_access,
178                                 WapiFileTime *last_write);
179         gboolean (*setfiletime)(gpointer handle,
180                                 const WapiFileTime *create_time,
181                                 const WapiFileTime *last_access,
182                                 const WapiFileTime *last_write);
183 } io_ops[WAPI_HANDLE_COUNT]={
184         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
185         /* file */
186         {file_getfiletype,
187          file_read, file_write,
188          file_flush, file_seek,
189          file_setendoffile,
190          file_getfilesize,
191          file_getfiletime,
192          file_setfiletime},
193         /* console */
194         {console_getfiletype,
195          console_read,
196          console_write,
197          NULL, NULL, NULL, NULL, NULL, NULL},
198         /* thread */
199         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
200         /* sem */
201         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
202         /* mutex */
203         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
204         /* event */
205         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
206         /* socket (will need at least read and write) */
207         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
208         /* find */
209         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
210         /* process */
211         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
212         /* pipe */
213         {pipe_getfiletype,
214          pipe_read,
215          pipe_write,
216          NULL, NULL, NULL, NULL, NULL, NULL},
217 };
218
219 static mono_once_t io_ops_once=MONO_ONCE_INIT;
220 static gboolean lock_while_writing = FALSE;
221
222 static void io_ops_init (void)
223 {
224 /*      _wapi_handle_register_capabilities (WAPI_HANDLE_FILE, */
225 /*                                          WAPI_HANDLE_CAP_WAIT); */
226 /*      _wapi_handle_register_capabilities (WAPI_HANDLE_CONSOLE, */
227 /*                                          WAPI_HANDLE_CAP_WAIT); */
228
229         if (g_getenv ("MONO_STRICT_IO_EMULATION") != NULL) {
230                 lock_while_writing = TRUE;
231         }
232 }
233
234 /* Some utility functions.
235  */
236
237 /*
238  * Check if a file is writable by the current user.
239  *
240  * This is is a best effort kind of thing. It assumes a reasonable sane set
241  * of permissions by the underlying OS.
242  *
243  * We generally assume that basic unix permission bits are authoritative. Which might not
244  * be the case under systems with extended permissions systems (posix ACLs, SELinux, OSX/iOS sandboxing, etc)
245  *
246  * The choice of access as the fallback is due to the expected lower overhead compared to trying to open the file.
247  *
248  * The only expected problem with using access are for root, setuid or setgid programs as access is not consistent
249  * under those situations. It's to be expected that this should not happen in practice as those bits are very dangerous
250  * and should not be used with a dynamic runtime.
251  */
252 static gboolean
253 is_file_writable (struct stat *st, const char *path)
254 {
255 #if __APPLE__
256         // OS X Finder "locked" or `ls -lO` "uchg".
257         // This only covers one of several cases where an OS X file could be unwritable through special flags.
258         if (st->st_flags & (UF_IMMUTABLE|SF_IMMUTABLE))
259                 return 0;
260 #endif
261
262         /* Is it globally writable? */
263         if (st->st_mode & S_IWOTH)
264                 return 1;
265
266         /* Am I the owner? */
267         if ((st->st_uid == geteuid ()) && (st->st_mode & S_IWUSR))
268                 return 1;
269
270         /* Am I in the same group? */
271         if ((st->st_gid == getegid ()) && (st->st_mode & S_IWGRP))
272                 return 1;
273
274         /* Fallback to using access(2). It's not ideal as it might not take into consideration euid/egid
275          * but it's the only sane option we have on unix.
276          */
277         return access (path, W_OK) == 0;
278 }
279
280
281 static guint32 _wapi_stat_to_file_attributes (const gchar *pathname,
282                                               struct stat *buf,
283                                               struct stat *lbuf)
284 {
285         guint32 attrs = 0;
286         gchar *filename;
287         
288         /* FIXME: this could definitely be better, but there seems to
289          * be no pattern to the attributes that are set
290          */
291
292         /* Sockets (0140000) != Directory (040000) + Regular file (0100000) */
293         if (S_ISSOCK (buf->st_mode))
294                 buf->st_mode &= ~S_IFSOCK; /* don't consider socket protection */
295
296         filename = _wapi_basename (pathname);
297
298         if (S_ISDIR (buf->st_mode)) {
299                 attrs = FILE_ATTRIBUTE_DIRECTORY;
300                 if (!is_file_writable (buf, pathname)) {
301                         attrs |= FILE_ATTRIBUTE_READONLY;
302                 }
303                 if (filename[0] == '.') {
304                         attrs |= FILE_ATTRIBUTE_HIDDEN;
305                 }
306         } else {
307                 if (!is_file_writable (buf, pathname)) {
308                         attrs = FILE_ATTRIBUTE_READONLY;
309
310                         if (filename[0] == '.') {
311                                 attrs |= FILE_ATTRIBUTE_HIDDEN;
312                         }
313                 } else if (filename[0] == '.') {
314                         attrs = FILE_ATTRIBUTE_HIDDEN;
315                 } else {
316                         attrs = FILE_ATTRIBUTE_NORMAL;
317                 }
318         }
319
320         if (lbuf != NULL) {
321                 if (S_ISLNK (lbuf->st_mode)) {
322                         attrs |= FILE_ATTRIBUTE_REPARSE_POINT;
323                 }
324         }
325         
326         g_free (filename);
327         
328         return attrs;
329 }
330
331 static void
332 _wapi_set_last_error_from_errno (void)
333 {
334         SetLastError (_wapi_get_win32_file_error (errno));
335 }
336
337 static void _wapi_set_last_path_error_from_errno (const gchar *dir,
338                                                   const gchar *path)
339 {
340         if (errno == ENOENT) {
341                 /* Check the path - if it's a missing directory then
342                  * we need to set PATH_NOT_FOUND not FILE_NOT_FOUND
343                  */
344                 gchar *dirname;
345
346
347                 if (dir == NULL) {
348                         dirname = _wapi_dirname (path);
349                 } else {
350                         dirname = g_strdup (dir);
351                 }
352                 
353                 if (_wapi_access (dirname, F_OK) == 0) {
354                         SetLastError (ERROR_FILE_NOT_FOUND);
355                 } else {
356                         SetLastError (ERROR_PATH_NOT_FOUND);
357                 }
358
359                 g_free (dirname);
360         } else {
361                 _wapi_set_last_error_from_errno ();
362         }
363 }
364
365 /* Handle ops.
366  */
367 static void file_close (gpointer handle, gpointer data)
368 {
369         struct _WapiHandle_file *file_handle = (struct _WapiHandle_file *)data;
370         int fd = file_handle->fd;
371         
372         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: closing file handle %p [%s]", __func__, handle,
373                   file_handle->filename);
374
375         if (file_handle->attrs & FILE_FLAG_DELETE_ON_CLOSE)
376                 _wapi_unlink (file_handle->filename);
377         
378         g_free (file_handle->filename);
379         
380         if (file_handle->share_info)
381                 _wapi_handle_share_release (file_handle->share_info);
382         
383         close (fd);
384 }
385
386 static WapiFileType file_getfiletype(void)
387 {
388         return(FILE_TYPE_DISK);
389 }
390
391 static gboolean file_read(gpointer handle, gpointer buffer,
392                           guint32 numbytes, guint32 *bytesread,
393                           WapiOverlapped *overlapped)
394 {
395         struct _WapiHandle_file *file_handle;
396         gboolean ok;
397         int fd, ret;
398         
399         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
400                                 (gpointer *)&file_handle);
401         if(ok==FALSE) {
402                 g_warning ("%s: error looking up file handle %p", __func__,
403                            handle);
404                 SetLastError (ERROR_INVALID_HANDLE);
405                 return(FALSE);
406         }
407
408         fd = file_handle->fd;
409         if(bytesread!=NULL) {
410                 *bytesread=0;
411         }
412         
413         if(!(file_handle->fileaccess & GENERIC_READ) &&
414            !(file_handle->fileaccess & GENERIC_ALL)) {
415                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ access: %u",
416                           __func__, handle, file_handle->fileaccess);
417
418                 SetLastError (ERROR_ACCESS_DENIED);
419                 return(FALSE);
420         }
421
422         do {
423                 ret = read (fd, buffer, numbytes);
424         } while (ret == -1 && errno == EINTR &&
425                  !_wapi_thread_cur_apc_pending());
426                         
427         if(ret==-1) {
428                 gint err = errno;
429
430                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: read of handle %p error: %s", __func__,
431                           handle, strerror(err));
432                 SetLastError (_wapi_get_win32_file_error (err));
433                 return(FALSE);
434         }
435                 
436         if (bytesread != NULL) {
437                 *bytesread = ret;
438         }
439                 
440         return(TRUE);
441 }
442
443 static gboolean file_write(gpointer handle, gconstpointer buffer,
444                            guint32 numbytes, guint32 *byteswritten,
445                            WapiOverlapped *overlapped G_GNUC_UNUSED)
446 {
447         struct _WapiHandle_file *file_handle;
448         gboolean ok;
449         int ret, fd;
450         off_t current_pos = 0;
451         
452         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
453                                 (gpointer *)&file_handle);
454         if(ok==FALSE) {
455                 g_warning ("%s: error looking up file handle %p", __func__,
456                            handle);
457                 SetLastError (ERROR_INVALID_HANDLE);
458                 return(FALSE);
459         }
460
461         fd = file_handle->fd;
462         
463         if(byteswritten!=NULL) {
464                 *byteswritten=0;
465         }
466         
467         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
468            !(file_handle->fileaccess & GENERIC_ALL)) {
469                 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);
470
471                 SetLastError (ERROR_ACCESS_DENIED);
472                 return(FALSE);
473         }
474         
475         if (lock_while_writing) {
476                 /* Need to lock the region we're about to write to,
477                  * because we only do advisory locking on POSIX
478                  * systems
479                  */
480                 current_pos = lseek (fd, (off_t)0, SEEK_CUR);
481                 if (current_pos == -1) {
482                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p lseek failed: %s", __func__,
483                                    handle, strerror (errno));
484                         _wapi_set_last_error_from_errno ();
485                         return(FALSE);
486                 }
487                 
488                 if (_wapi_lock_file_region (fd, current_pos,
489                                             numbytes) == FALSE) {
490                         /* The error has already been set */
491                         return(FALSE);
492                 }
493         }
494                 
495         do {
496                 ret = write (fd, buffer, numbytes);
497         } while (ret == -1 && errno == EINTR &&
498                  !_wapi_thread_cur_apc_pending());
499         
500         if (lock_while_writing) {
501                 _wapi_unlock_file_region (fd, current_pos, numbytes);
502         }
503
504         if (ret == -1) {
505                 if (errno == EINTR) {
506                         ret = 0;
507                 } else {
508                         _wapi_set_last_error_from_errno ();
509                                 
510                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write of handle %p error: %s",
511                                   __func__, handle, strerror(errno));
512
513                         return(FALSE);
514                 }
515         }
516         if (byteswritten != NULL) {
517                 *byteswritten = ret;
518         }
519         return(TRUE);
520 }
521
522 static gboolean file_flush(gpointer handle)
523 {
524         struct _WapiHandle_file *file_handle;
525         gboolean ok;
526         int ret, fd;
527         
528         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
529                                 (gpointer *)&file_handle);
530         if(ok==FALSE) {
531                 g_warning ("%s: error looking up file handle %p", __func__,
532                            handle);
533                 SetLastError (ERROR_INVALID_HANDLE);
534                 return(FALSE);
535         }
536
537         fd = file_handle->fd;
538
539         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
540            !(file_handle->fileaccess & GENERIC_ALL)) {
541                 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);
542
543                 SetLastError (ERROR_ACCESS_DENIED);
544                 return(FALSE);
545         }
546
547         ret=fsync(fd);
548         if (ret==-1) {
549                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: fsync of handle %p error: %s", __func__, handle,
550                           strerror(errno));
551
552                 _wapi_set_last_error_from_errno ();
553                 return(FALSE);
554         }
555         
556         return(TRUE);
557 }
558
559 static guint32 file_seek(gpointer handle, gint32 movedistance,
560                          gint32 *highmovedistance, WapiSeekMethod method)
561 {
562         struct _WapiHandle_file *file_handle;
563         gboolean ok;
564         gint64 offset, newpos;
565         int whence, fd;
566         guint32 ret;
567         
568         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
569                                 (gpointer *)&file_handle);
570         if(ok==FALSE) {
571                 g_warning ("%s: error looking up file handle %p", __func__,
572                            handle);
573                 SetLastError (ERROR_INVALID_HANDLE);
574                 return(INVALID_SET_FILE_POINTER);
575         }
576         
577         fd = file_handle->fd;
578
579         if(!(file_handle->fileaccess & GENERIC_READ) &&
580            !(file_handle->fileaccess & GENERIC_WRITE) &&
581            !(file_handle->fileaccess & GENERIC_ALL)) {
582                 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);
583
584                 SetLastError (ERROR_ACCESS_DENIED);
585                 return(INVALID_SET_FILE_POINTER);
586         }
587
588         switch(method) {
589         case FILE_BEGIN:
590                 whence=SEEK_SET;
591                 break;
592         case FILE_CURRENT:
593                 whence=SEEK_CUR;
594                 break;
595         case FILE_END:
596                 whence=SEEK_END;
597                 break;
598         default:
599                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: invalid seek type %d", __func__, method);
600
601                 SetLastError (ERROR_INVALID_PARAMETER);
602                 return(INVALID_SET_FILE_POINTER);
603         }
604
605 #ifdef HAVE_LARGE_FILE_SUPPORT
606         if(highmovedistance==NULL) {
607                 offset=movedistance;
608                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: setting offset to %lld (low %d)", __func__,
609                           offset, movedistance);
610         } else {
611                 offset=((gint64) *highmovedistance << 32) | (guint32)movedistance;
612                 
613                 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);
614         }
615 #else
616         offset=movedistance;
617 #endif
618
619         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: moving handle %p by %lld bytes from %d", __func__,
620                    handle, (long long)offset, whence);
621
622 #ifdef PLATFORM_ANDROID
623         /* bionic doesn't support -D_FILE_OFFSET_BITS=64 */
624         newpos=lseek64(fd, offset, whence);
625 #else
626         newpos=lseek(fd, offset, whence);
627 #endif
628         if(newpos==-1) {
629                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: lseek on handle %p returned error %s",
630                           __func__, handle, strerror(errno));
631
632                 _wapi_set_last_error_from_errno ();
633                 return(INVALID_SET_FILE_POINTER);
634         }
635
636         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: lseek returns %lld", __func__, newpos);
637
638 #ifdef HAVE_LARGE_FILE_SUPPORT
639         ret=newpos & 0xFFFFFFFF;
640         if(highmovedistance!=NULL) {
641                 *highmovedistance=newpos>>32;
642         }
643 #else
644         ret=newpos;
645         if(highmovedistance!=NULL) {
646                 /* Accurate, but potentially dodgy :-) */
647                 *highmovedistance=0;
648         }
649 #endif
650
651         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: move of handle %p returning %d/%d", __func__,
652                    handle, ret, highmovedistance==NULL?0:*highmovedistance);
653
654         return(ret);
655 }
656
657 static gboolean file_setendoffile(gpointer handle)
658 {
659         struct _WapiHandle_file *file_handle;
660         gboolean ok;
661         struct stat statbuf;
662         off_t pos;
663         int ret, fd;
664         
665         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
666                                 (gpointer *)&file_handle);
667         if(ok==FALSE) {
668                 g_warning ("%s: error looking up file handle %p", __func__,
669                            handle);
670                 SetLastError (ERROR_INVALID_HANDLE);
671                 return(FALSE);
672         }
673         fd = file_handle->fd;
674         
675         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
676            !(file_handle->fileaccess & GENERIC_ALL)) {
677                 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);
678
679                 SetLastError (ERROR_ACCESS_DENIED);
680                 return(FALSE);
681         }
682
683         /* Find the current file position, and the file length.  If
684          * the file position is greater than the length, write to
685          * extend the file with a hole.  If the file position is less
686          * than the length, truncate the file.
687          */
688         
689         ret=fstat(fd, &statbuf);
690         if(ret==-1) {
691                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p fstat failed: %s", __func__,
692                            handle, strerror(errno));
693
694                 _wapi_set_last_error_from_errno ();
695                 return(FALSE);
696         }
697
698         pos=lseek(fd, (off_t)0, SEEK_CUR);
699         if(pos==-1) {
700                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p lseek failed: %s", __func__,
701                           handle, strerror(errno));
702
703                 _wapi_set_last_error_from_errno ();
704                 return(FALSE);
705         }
706         
707 #ifdef FTRUNCATE_DOESNT_EXTEND
708         off_t size = statbuf.st_size;
709         /* I haven't bothered to write the configure.ac stuff for this
710          * because I don't know if any platform needs it.  I'm leaving
711          * this code just in case though
712          */
713         if(pos>size) {
714                 /* Extend the file.  Use write() here, because some
715                  * manuals say that ftruncate() behaviour is undefined
716                  * when the file needs extending.  The POSIX spec says
717                  * that on XSI-conformant systems it extends, so if
718                  * every system we care about conforms, then we can
719                  * drop this write.
720                  */
721                 do {
722                         ret = write (fd, "", 1);
723                 } while (ret == -1 && errno == EINTR &&
724                          !_wapi_thread_cur_apc_pending());
725
726                 if(ret==-1) {
727                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p extend write failed: %s", __func__, handle, strerror(errno));
728
729                         _wapi_set_last_error_from_errno ();
730                         return(FALSE);
731                 }
732
733                 /* And put the file position back after the write */
734                 ret = lseek (fd, pos, SEEK_SET);
735                 if (ret == -1) {
736                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p second lseek failed: %s",
737                                    __func__, handle, strerror(errno));
738
739                         _wapi_set_last_error_from_errno ();
740                         return(FALSE);
741                 }
742         }
743 #endif
744
745 /* Native Client has no ftruncate function, even in standalone sel_ldr. */
746 #ifndef __native_client__
747         /* always truncate, because the extend write() adds an extra
748          * byte to the end of the file
749          */
750         do {
751                 ret=ftruncate(fd, pos);
752         }
753         while (ret==-1 && errno==EINTR && !_wapi_thread_cur_apc_pending()); 
754         if(ret==-1) {
755                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p ftruncate failed: %s", __func__,
756                           handle, strerror(errno));
757                 
758                 _wapi_set_last_error_from_errno ();
759                 return(FALSE);
760         }
761 #endif
762                 
763         return(TRUE);
764 }
765
766 static guint32 file_getfilesize(gpointer handle, guint32 *highsize)
767 {
768         struct _WapiHandle_file *file_handle;
769         gboolean ok;
770         struct stat statbuf;
771         guint32 size;
772         int ret;
773         int fd;
774         
775         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
776                                 (gpointer *)&file_handle);
777         if(ok==FALSE) {
778                 g_warning ("%s: error looking up file handle %p", __func__,
779                            handle);
780                 SetLastError (ERROR_INVALID_HANDLE);
781                 return(INVALID_FILE_SIZE);
782         }
783         fd = file_handle->fd;
784         
785         if(!(file_handle->fileaccess & GENERIC_READ) &&
786            !(file_handle->fileaccess & GENERIC_WRITE) &&
787            !(file_handle->fileaccess & GENERIC_ALL)) {
788                 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);
789
790                 SetLastError (ERROR_ACCESS_DENIED);
791                 return(INVALID_FILE_SIZE);
792         }
793
794         /* If the file has a size with the low bits 0xFFFFFFFF the
795          * caller can't tell if this is an error, so clear the error
796          * value
797          */
798         SetLastError (ERROR_SUCCESS);
799         
800         ret = fstat(fd, &statbuf);
801         if (ret == -1) {
802                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p fstat failed: %s", __func__,
803                            handle, strerror(errno));
804
805                 _wapi_set_last_error_from_errno ();
806                 return(INVALID_FILE_SIZE);
807         }
808         
809         /* fstat indicates block devices as zero-length, so go a different path */
810 #ifdef BLKGETSIZE64
811         if (S_ISBLK(statbuf.st_mode)) {
812                 guint64 bigsize;
813                 if (ioctl(fd, BLKGETSIZE64, &bigsize) < 0) {
814                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p ioctl BLKGETSIZE64 failed: %s",
815                                    __func__, handle, strerror(errno));
816
817                         _wapi_set_last_error_from_errno ();
818                         return(INVALID_FILE_SIZE);
819                 }
820                 
821                 size = bigsize & 0xFFFFFFFF;
822                 if (highsize != NULL) {
823                         *highsize = bigsize>>32;
824                 }
825
826                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Returning block device size %d/%d",
827                            __func__, size, *highsize);
828         
829                 return(size);
830         }
831 #endif
832         
833 #ifdef HAVE_LARGE_FILE_SUPPORT
834         size = statbuf.st_size & 0xFFFFFFFF;
835         if (highsize != NULL) {
836                 *highsize = statbuf.st_size>>32;
837         }
838 #else
839         if (highsize != NULL) {
840                 /* Accurate, but potentially dodgy :-) */
841                 *highsize = 0;
842         }
843         size = statbuf.st_size;
844 #endif
845
846         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Returning size %d/%d", __func__, size, *highsize);
847         
848         return(size);
849 }
850
851 static gboolean file_getfiletime(gpointer handle, WapiFileTime *create_time,
852                                  WapiFileTime *last_access,
853                                  WapiFileTime *last_write)
854 {
855         struct _WapiHandle_file *file_handle;
856         gboolean ok;
857         struct stat statbuf;
858         guint64 create_ticks, access_ticks, write_ticks;
859         int ret, fd;
860         
861         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
862                                 (gpointer *)&file_handle);
863         if(ok==FALSE) {
864                 g_warning ("%s: error looking up file handle %p", __func__,
865                            handle);
866                 SetLastError (ERROR_INVALID_HANDLE);
867                 return(FALSE);
868         }
869         fd = file_handle->fd;
870
871         if(!(file_handle->fileaccess & GENERIC_READ) &&
872            !(file_handle->fileaccess & GENERIC_ALL)) {
873                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ access: %u",
874                           __func__, handle, file_handle->fileaccess);
875
876                 SetLastError (ERROR_ACCESS_DENIED);
877                 return(FALSE);
878         }
879         
880         ret=fstat(fd, &statbuf);
881         if(ret==-1) {
882                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p fstat failed: %s", __func__, handle,
883                           strerror(errno));
884
885                 _wapi_set_last_error_from_errno ();
886                 return(FALSE);
887         }
888
889         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: atime: %ld ctime: %ld mtime: %ld", __func__,
890                   statbuf.st_atime, statbuf.st_ctime,
891                   statbuf.st_mtime);
892
893         /* Try and guess a meaningful create time by using the older
894          * of atime or ctime
895          */
896         /* The magic constant comes from msdn documentation
897          * "Converting a time_t Value to a File Time"
898          */
899         if(statbuf.st_atime < statbuf.st_ctime) {
900                 create_ticks=((guint64)statbuf.st_atime*10000000)
901                         + 116444736000000000ULL;
902         } else {
903                 create_ticks=((guint64)statbuf.st_ctime*10000000)
904                         + 116444736000000000ULL;
905         }
906         
907         access_ticks=((guint64)statbuf.st_atime*10000000)+116444736000000000ULL;
908         write_ticks=((guint64)statbuf.st_mtime*10000000)+116444736000000000ULL;
909         
910         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: aticks: %llu cticks: %llu wticks: %llu", __func__,
911                   access_ticks, create_ticks, write_ticks);
912
913         if(create_time!=NULL) {
914                 create_time->dwLowDateTime = create_ticks & 0xFFFFFFFF;
915                 create_time->dwHighDateTime = create_ticks >> 32;
916         }
917         
918         if(last_access!=NULL) {
919                 last_access->dwLowDateTime = access_ticks & 0xFFFFFFFF;
920                 last_access->dwHighDateTime = access_ticks >> 32;
921         }
922         
923         if(last_write!=NULL) {
924                 last_write->dwLowDateTime = write_ticks & 0xFFFFFFFF;
925                 last_write->dwHighDateTime = write_ticks >> 32;
926         }
927
928         return(TRUE);
929 }
930
931 static gboolean file_setfiletime(gpointer handle,
932                                  const WapiFileTime *create_time G_GNUC_UNUSED,
933                                  const WapiFileTime *last_access,
934                                  const WapiFileTime *last_write)
935 {
936         struct _WapiHandle_file *file_handle;
937         gboolean ok;
938         struct utimbuf utbuf;
939         struct stat statbuf;
940         guint64 access_ticks, write_ticks;
941         int ret, fd;
942         
943         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
944                                 (gpointer *)&file_handle);
945         if(ok==FALSE) {
946                 g_warning ("%s: error looking up file handle %p", __func__,
947                            handle);
948                 SetLastError (ERROR_INVALID_HANDLE);
949                 return(FALSE);
950         }
951         fd = file_handle->fd;
952         
953         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
954            !(file_handle->fileaccess & GENERIC_ALL)) {
955                 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);
956
957                 SetLastError (ERROR_ACCESS_DENIED);
958                 return(FALSE);
959         }
960
961         if(file_handle->filename == NULL) {
962                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p unknown filename", __func__, handle);
963
964                 SetLastError (ERROR_INVALID_HANDLE);
965                 return(FALSE);
966         }
967         
968         /* Get the current times, so we can put the same times back in
969          * the event that one of the FileTime structs is NULL
970          */
971         ret=fstat (fd, &statbuf);
972         if(ret==-1) {
973                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p fstat failed: %s", __func__, handle,
974                           strerror(errno));
975
976                 SetLastError (ERROR_INVALID_PARAMETER);
977                 return(FALSE);
978         }
979
980         if(last_access!=NULL) {
981                 access_ticks=((guint64)last_access->dwHighDateTime << 32) +
982                         last_access->dwLowDateTime;
983                 /* This is (time_t)0.  We can actually go to INT_MIN,
984                  * but this will do for now.
985                  */
986                 if (access_ticks < 116444736000000000ULL) {
987                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: attempt to set access time too early",
988                                    __func__);
989                         SetLastError (ERROR_INVALID_PARAMETER);
990                         return(FALSE);
991                 }
992                 
993                 utbuf.actime=(access_ticks - 116444736000000000ULL) / 10000000;
994         } else {
995                 utbuf.actime=statbuf.st_atime;
996         }
997
998         if(last_write!=NULL) {
999                 write_ticks=((guint64)last_write->dwHighDateTime << 32) +
1000                         last_write->dwLowDateTime;
1001                 /* This is (time_t)0.  We can actually go to INT_MIN,
1002                  * but this will do for now.
1003                  */
1004                 if (write_ticks < 116444736000000000ULL) {
1005                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: attempt to set write time too early",
1006                                    __func__);
1007                         SetLastError (ERROR_INVALID_PARAMETER);
1008                         return(FALSE);
1009                 }
1010                 
1011                 utbuf.modtime=(write_ticks - 116444736000000000ULL) / 10000000;
1012         } else {
1013                 utbuf.modtime=statbuf.st_mtime;
1014         }
1015
1016         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: setting handle %p access %ld write %ld", __func__,
1017                    handle, utbuf.actime, utbuf.modtime);
1018
1019         ret = _wapi_utime (file_handle->filename, &utbuf);
1020         if (ret == -1) {
1021                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p [%s] utime failed: %s", __func__,
1022                            handle, file_handle->filename, strerror(errno));
1023
1024                 SetLastError (ERROR_INVALID_PARAMETER);
1025                 return(FALSE);
1026         }
1027         
1028         return(TRUE);
1029 }
1030
1031 static void console_close (gpointer handle, gpointer data)
1032 {
1033         struct _WapiHandle_file *console_handle = (struct _WapiHandle_file *)data;
1034         int fd = console_handle->fd;
1035         
1036         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: closing console handle %p", __func__, handle);
1037
1038         g_free (console_handle->filename);
1039
1040         if (fd > 2) {
1041                 if (console_handle->share_info)
1042                         _wapi_handle_share_release (console_handle->share_info);
1043                 close (fd);
1044         }
1045 }
1046
1047 static WapiFileType console_getfiletype(void)
1048 {
1049         return(FILE_TYPE_CHAR);
1050 }
1051
1052 static gboolean console_read(gpointer handle, gpointer buffer,
1053                              guint32 numbytes, guint32 *bytesread,
1054                              WapiOverlapped *overlapped G_GNUC_UNUSED)
1055 {
1056         struct _WapiHandle_file *console_handle;
1057         gboolean ok;
1058         int ret, fd;
1059
1060         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_CONSOLE,
1061                                 (gpointer *)&console_handle);
1062         if(ok==FALSE) {
1063                 g_warning ("%s: error looking up console handle %p", __func__,
1064                            handle);
1065                 SetLastError (ERROR_INVALID_HANDLE);
1066                 return(FALSE);
1067         }
1068         fd = console_handle->fd;
1069         
1070         if(bytesread!=NULL) {
1071                 *bytesread=0;
1072         }
1073         
1074         if(!(console_handle->fileaccess & GENERIC_READ) &&
1075            !(console_handle->fileaccess & GENERIC_ALL)) {
1076                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ access: %u",
1077                            __func__, handle, console_handle->fileaccess);
1078
1079                 SetLastError (ERROR_ACCESS_DENIED);
1080                 return(FALSE);
1081         }
1082         
1083         do {
1084                 ret=read(fd, buffer, numbytes);
1085         } while (ret==-1 && errno==EINTR && !_wapi_thread_cur_apc_pending());
1086
1087         if(ret==-1) {
1088                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: read of handle %p error: %s", __func__, handle,
1089                           strerror(errno));
1090
1091                 _wapi_set_last_error_from_errno ();
1092                 return(FALSE);
1093         }
1094         
1095         if(bytesread!=NULL) {
1096                 *bytesread=ret;
1097         }
1098         
1099         return(TRUE);
1100 }
1101
1102 static gboolean console_write(gpointer handle, gconstpointer buffer,
1103                               guint32 numbytes, guint32 *byteswritten,
1104                               WapiOverlapped *overlapped G_GNUC_UNUSED)
1105 {
1106         struct _WapiHandle_file *console_handle;
1107         gboolean ok;
1108         int ret, fd;
1109         
1110         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_CONSOLE,
1111                                 (gpointer *)&console_handle);
1112         if(ok==FALSE) {
1113                 g_warning ("%s: error looking up console handle %p", __func__,
1114                            handle);
1115                 SetLastError (ERROR_INVALID_HANDLE);
1116                 return(FALSE);
1117         }
1118         fd = console_handle->fd;
1119         
1120         if(byteswritten!=NULL) {
1121                 *byteswritten=0;
1122         }
1123         
1124         if(!(console_handle->fileaccess & GENERIC_WRITE) &&
1125            !(console_handle->fileaccess & GENERIC_ALL)) {
1126                 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);
1127
1128                 SetLastError (ERROR_ACCESS_DENIED);
1129                 return(FALSE);
1130         }
1131         
1132         do {
1133                 ret = write(fd, buffer, numbytes);
1134         } while (ret == -1 && errno == EINTR &&
1135                  !_wapi_thread_cur_apc_pending());
1136
1137         if (ret == -1) {
1138                 if (errno == EINTR) {
1139                         ret = 0;
1140                 } else {
1141                         _wapi_set_last_error_from_errno ();
1142                         
1143                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write of handle %p error: %s",
1144                                    __func__, handle, strerror(errno));
1145
1146                         return(FALSE);
1147                 }
1148         }
1149         if(byteswritten!=NULL) {
1150                 *byteswritten=ret;
1151         }
1152         
1153         return(TRUE);
1154 }
1155
1156 static void pipe_close (gpointer handle, gpointer data)
1157 {
1158         struct _WapiHandle_file *pipe_handle = (struct _WapiHandle_file*)data;
1159         int fd = pipe_handle->fd;
1160
1161         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: closing pipe handle %p", __func__, handle);
1162
1163         /* No filename with pipe handles */
1164
1165         if (pipe_handle->share_info)
1166                 _wapi_handle_share_release (pipe_handle->share_info);
1167
1168         close (fd);
1169 }
1170
1171 static WapiFileType pipe_getfiletype(void)
1172 {
1173         return(FILE_TYPE_PIPE);
1174 }
1175
1176 static gboolean pipe_read (gpointer handle, gpointer buffer,
1177                            guint32 numbytes, guint32 *bytesread,
1178                            WapiOverlapped *overlapped G_GNUC_UNUSED)
1179 {
1180         struct _WapiHandle_file *pipe_handle;
1181         gboolean ok;
1182         int ret, fd;
1183
1184         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_PIPE,
1185                                 (gpointer *)&pipe_handle);
1186         if(ok==FALSE) {
1187                 g_warning ("%s: error looking up pipe handle %p", __func__,
1188                            handle);
1189                 SetLastError (ERROR_INVALID_HANDLE);
1190                 return(FALSE);
1191         }
1192         fd = pipe_handle->fd;
1193
1194         if(bytesread!=NULL) {
1195                 *bytesread=0;
1196         }
1197         
1198         if(!(pipe_handle->fileaccess & GENERIC_READ) &&
1199            !(pipe_handle->fileaccess & GENERIC_ALL)) {
1200                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: handle %p doesn't have GENERIC_READ access: %u",
1201                           __func__, handle, pipe_handle->fileaccess);
1202
1203                 SetLastError (ERROR_ACCESS_DENIED);
1204                 return(FALSE);
1205         }
1206         
1207         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: reading up to %d bytes from pipe %p", __func__,
1208                    numbytes, handle);
1209
1210         do {
1211                 ret=read(fd, buffer, numbytes);
1212         } while (ret==-1 && errno==EINTR && !_wapi_thread_cur_apc_pending());
1213                 
1214         if (ret == -1) {
1215                 if (errno == EINTR) {
1216                         ret = 0;
1217                 } else {
1218                         _wapi_set_last_error_from_errno ();
1219                         
1220                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: read of handle %p error: %s", __func__,
1221                                   handle, strerror(errno));
1222
1223                         return(FALSE);
1224                 }
1225         }
1226         
1227         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: read %d bytes from pipe %p", __func__, ret, handle);
1228
1229         if(bytesread!=NULL) {
1230                 *bytesread=ret;
1231         }
1232         
1233         return(TRUE);
1234 }
1235
1236 static gboolean pipe_write(gpointer handle, gconstpointer buffer,
1237                            guint32 numbytes, guint32 *byteswritten,
1238                            WapiOverlapped *overlapped G_GNUC_UNUSED)
1239 {
1240         struct _WapiHandle_file *pipe_handle;
1241         gboolean ok;
1242         int ret, fd;
1243         
1244         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_PIPE,
1245                                 (gpointer *)&pipe_handle);
1246         if(ok==FALSE) {
1247                 g_warning ("%s: error looking up pipe handle %p", __func__,
1248                            handle);
1249                 SetLastError (ERROR_INVALID_HANDLE);
1250                 return(FALSE);
1251         }
1252         fd = pipe_handle->fd;
1253         
1254         if(byteswritten!=NULL) {
1255                 *byteswritten=0;
1256         }
1257         
1258         if(!(pipe_handle->fileaccess & GENERIC_WRITE) &&
1259            !(pipe_handle->fileaccess & GENERIC_ALL)) {
1260                 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);
1261
1262                 SetLastError (ERROR_ACCESS_DENIED);
1263                 return(FALSE);
1264         }
1265         
1266         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: writing up to %d bytes to pipe %p", __func__, numbytes,
1267                    handle);
1268
1269         do {
1270                 ret = write (fd, buffer, numbytes);
1271         } while (ret == -1 && errno == EINTR &&
1272                  !_wapi_thread_cur_apc_pending());
1273
1274         if (ret == -1) {
1275                 if (errno == EINTR) {
1276                         ret = 0;
1277                 } else {
1278                         _wapi_set_last_error_from_errno ();
1279                         
1280                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write of handle %p error: %s", __func__,
1281                                   handle, strerror(errno));
1282
1283                         return(FALSE);
1284                 }
1285         }
1286         if(byteswritten!=NULL) {
1287                 *byteswritten=ret;
1288         }
1289         
1290         return(TRUE);
1291 }
1292
1293 static int convert_flags(guint32 fileaccess, guint32 createmode)
1294 {
1295         int flags=0;
1296         
1297         switch(fileaccess) {
1298         case GENERIC_READ:
1299                 flags=O_RDONLY;
1300                 break;
1301         case GENERIC_WRITE:
1302                 flags=O_WRONLY;
1303                 break;
1304         case GENERIC_READ|GENERIC_WRITE:
1305                 flags=O_RDWR;
1306                 break;
1307         default:
1308                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Unknown access type 0x%x", __func__,
1309                           fileaccess);
1310                 break;
1311         }
1312
1313         switch(createmode) {
1314         case CREATE_NEW:
1315                 flags|=O_CREAT|O_EXCL;
1316                 break;
1317         case CREATE_ALWAYS:
1318                 flags|=O_CREAT|O_TRUNC;
1319                 break;
1320         case OPEN_EXISTING:
1321                 break;
1322         case OPEN_ALWAYS:
1323                 flags|=O_CREAT;
1324                 break;
1325         case TRUNCATE_EXISTING:
1326                 flags|=O_TRUNC;
1327                 break;
1328         default:
1329                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Unknown create mode 0x%x", __func__,
1330                           createmode);
1331                 break;
1332         }
1333         
1334         return(flags);
1335 }
1336
1337 #if 0 /* unused */
1338 static mode_t convert_perms(guint32 sharemode)
1339 {
1340         mode_t perms=0600;
1341         
1342         if(sharemode&FILE_SHARE_READ) {
1343                 perms|=044;
1344         }
1345         if(sharemode&FILE_SHARE_WRITE) {
1346                 perms|=022;
1347         }
1348
1349         return(perms);
1350 }
1351 #endif
1352
1353 static gboolean share_allows_open (struct stat *statbuf, guint32 sharemode,
1354                                    guint32 fileaccess,
1355                                    struct _WapiFileShare **share_info)
1356 {
1357         gboolean file_already_shared;
1358         guint32 file_existing_share, file_existing_access;
1359
1360         file_already_shared = _wapi_handle_get_or_set_share (statbuf->st_dev, statbuf->st_ino, sharemode, fileaccess, &file_existing_share, &file_existing_access, share_info);
1361         
1362         if (file_already_shared) {
1363                 /* The reference to this share info was incremented
1364                  * when we looked it up, so be careful to put it back
1365                  * if we conclude we can't use this file.
1366                  */
1367                 if (file_existing_share == 0) {
1368                         /* Quick and easy, no possibility to share */
1369                         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);
1370
1371                         _wapi_handle_share_release (*share_info);
1372                         
1373                         return(FALSE);
1374                 }
1375
1376                 if (((file_existing_share == FILE_SHARE_READ) &&
1377                      (fileaccess != GENERIC_READ)) ||
1378                     ((file_existing_share == FILE_SHARE_WRITE) &&
1379                      (fileaccess != GENERIC_WRITE))) {
1380                         /* New access mode doesn't match up */
1381                         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);
1382
1383                         _wapi_handle_share_release (*share_info);
1384                 
1385                         return(FALSE);
1386                 }
1387
1388                 if (((file_existing_access & GENERIC_READ) &&
1389                      !(sharemode & FILE_SHARE_READ)) ||
1390                     ((file_existing_access & GENERIC_WRITE) &&
1391                      !(sharemode & FILE_SHARE_WRITE))) {
1392                         /* New share mode doesn't match up */
1393                         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);
1394
1395                         _wapi_handle_share_release (*share_info);
1396                 
1397                         return(FALSE);
1398                 }
1399         } else {
1400                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: New file!", __func__);
1401         }
1402
1403         return(TRUE);
1404 }
1405
1406
1407 static gboolean
1408 share_allows_delete (struct stat *statbuf, struct _WapiFileShare **share_info)
1409 {
1410         gboolean file_already_shared;
1411         guint32 file_existing_share, file_existing_access;
1412
1413         file_already_shared = _wapi_handle_get_or_set_share (statbuf->st_dev, statbuf->st_ino, FILE_SHARE_DELETE, GENERIC_READ, &file_existing_share, &file_existing_access, share_info);
1414
1415         if (file_already_shared) {
1416                 /* The reference to this share info was incremented
1417                  * when we looked it up, so be careful to put it back
1418                  * if we conclude we can't use this file.
1419                  */
1420                 if (file_existing_share == 0) {
1421                         /* Quick and easy, no possibility to share */
1422                         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);
1423
1424                         _wapi_handle_share_release (*share_info);
1425
1426                         return(FALSE);
1427                 }
1428
1429                 if (!(file_existing_share & FILE_SHARE_DELETE)) {
1430                         /* New access mode doesn't match up */
1431                         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);
1432
1433                         _wapi_handle_share_release (*share_info);
1434
1435                         return(FALSE);
1436                 }
1437         } else {
1438                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: New file!", __func__);
1439         }
1440
1441         return(TRUE);
1442 }
1443 static gboolean share_check (struct stat *statbuf, guint32 sharemode,
1444                              guint32 fileaccess,
1445                              struct _WapiFileShare **share_info, int fd)
1446 {
1447         if (share_allows_open (statbuf, sharemode, fileaccess,
1448                                share_info) == TRUE) {
1449                 return (TRUE);
1450         }
1451         
1452         /* Got a share violation.  Double check that the file is still
1453          * open by someone, in case a process crashed while still
1454          * holding a file handle.  This will also cope with someone
1455          * using Mono.Posix to close the file.  This is cheaper and
1456          * less intrusive to other processes than initiating a handle
1457          * collection.
1458          */
1459
1460         _wapi_handle_check_share (*share_info, fd);
1461         if (share_allows_open (statbuf, sharemode, fileaccess,
1462                                share_info) == TRUE) {
1463                 return (TRUE);
1464         }
1465
1466         return(share_allows_open (statbuf, sharemode, fileaccess, share_info));
1467 }
1468
1469 /**
1470  * CreateFile:
1471  * @name: a pointer to a NULL-terminated unicode string, that names
1472  * the file or other object to create.
1473  * @fileaccess: specifies the file access mode
1474  * @sharemode: whether the file should be shared.  This parameter is
1475  * currently ignored.
1476  * @security: Ignored for now.
1477  * @createmode: specifies whether to create a new file, whether to
1478  * overwrite an existing file, whether to truncate the file, etc.
1479  * @attrs: specifies file attributes and flags.  On win32 attributes
1480  * are characteristics of the file, not the handle, and are ignored
1481  * when an existing file is opened.  Flags give the library hints on
1482  * how to process a file to optimise performance.
1483  * @template: the handle of an open %GENERIC_READ file that specifies
1484  * attributes to apply to a newly created file, ignoring @attrs.
1485  * Normally this parameter is NULL.  This parameter is ignored when an
1486  * existing file is opened.
1487  *
1488  * Creates a new file handle.  This only applies to normal files:
1489  * pipes are handled by CreatePipe(), and console handles are created
1490  * with GetStdHandle().
1491  *
1492  * Return value: the new handle, or %INVALID_HANDLE_VALUE on error.
1493  */
1494 gpointer CreateFile(const gunichar2 *name, guint32 fileaccess,
1495                     guint32 sharemode, WapiSecurityAttributes *security,
1496                     guint32 createmode, guint32 attrs,
1497                     gpointer template_ G_GNUC_UNUSED)
1498 {
1499         struct _WapiHandle_file file_handle = {0};
1500         gpointer handle;
1501         int flags=convert_flags(fileaccess, createmode);
1502         /*mode_t perms=convert_perms(sharemode);*/
1503         /* we don't use sharemode, because that relates to sharing of
1504          * the file when the file is open and is already handled by
1505          * other code, perms instead are the on-disk permissions and
1506          * this is a sane default.
1507          */
1508         mode_t perms=0666;
1509         gchar *filename;
1510         int fd, ret;
1511         WapiHandleType handle_type;
1512         struct stat statbuf;
1513         
1514         mono_once (&io_ops_once, io_ops_init);
1515
1516         if (attrs & FILE_ATTRIBUTE_TEMPORARY)
1517                 perms = 0600;
1518         
1519         if (attrs & FILE_ATTRIBUTE_ENCRYPTED){
1520                 SetLastError (ERROR_ENCRYPTION_FAILED);
1521                 return INVALID_HANDLE_VALUE;
1522         }
1523         
1524         if (name == NULL) {
1525                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
1526
1527                 SetLastError (ERROR_INVALID_NAME);
1528                 return(INVALID_HANDLE_VALUE);
1529         }
1530
1531         filename = mono_unicode_to_external (name);
1532         if (filename == NULL) {
1533                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
1534
1535                 SetLastError (ERROR_INVALID_NAME);
1536                 return(INVALID_HANDLE_VALUE);
1537         }
1538         
1539         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Opening %s with share 0x%x and access 0x%x", __func__,
1540                    filename, sharemode, fileaccess);
1541         
1542         fd = _wapi_open (filename, flags, perms);
1543     
1544         /* If we were trying to open a directory with write permissions
1545          * (e.g. O_WRONLY or O_RDWR), this call will fail with
1546          * EISDIR. However, this is a bit bogus because calls to
1547          * manipulate the directory (e.g. SetFileTime) will still work on
1548          * the directory because they use other API calls
1549          * (e.g. utime()). Hence, if we failed with the EISDIR error, try
1550          * to open the directory again without write permission.
1551          */
1552         if (fd == -1 && errno == EISDIR)
1553         {
1554                 /* Try again but don't try to make it writable */
1555                 fd = _wapi_open (filename, flags & ~(O_RDWR|O_WRONLY), perms);
1556         }
1557         
1558         if (fd == -1) {
1559                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Error opening file %s: %s", __func__, filename,
1560                           strerror(errno));
1561                 _wapi_set_last_path_error_from_errno (NULL, filename);
1562                 g_free (filename);
1563
1564                 return(INVALID_HANDLE_VALUE);
1565         }
1566
1567         if (fd >= _wapi_fd_reserve) {
1568                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: File descriptor is too big", __func__);
1569
1570                 SetLastError (ERROR_TOO_MANY_OPEN_FILES);
1571                 
1572                 close (fd);
1573                 g_free (filename);
1574                 
1575                 return(INVALID_HANDLE_VALUE);
1576         }
1577
1578         ret = fstat (fd, &statbuf);
1579         if (ret == -1) {
1580                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: fstat error of file %s: %s", __func__,
1581                            filename, strerror (errno));
1582                 _wapi_set_last_error_from_errno ();
1583                 g_free (filename);
1584                 close (fd);
1585                 
1586                 return(INVALID_HANDLE_VALUE);
1587         }
1588 #ifdef __native_client__
1589         /* Workaround: Native Client currently returns the same fake inode
1590          * for all files, so do a simple hash on the filename so we don't
1591          * use the same share info for each file.
1592          */
1593         statbuf.st_ino = g_str_hash(filename);
1594 #endif
1595
1596         if (share_check (&statbuf, sharemode, fileaccess,
1597                          &file_handle.share_info, fd) == FALSE) {
1598                 SetLastError (ERROR_SHARING_VIOLATION);
1599                 g_free (filename);
1600                 close (fd);
1601                 
1602                 return (INVALID_HANDLE_VALUE);
1603         }
1604         if (file_handle.share_info == NULL) {
1605                 /* No space, so no more files can be opened */
1606                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: No space in the share table", __func__);
1607
1608                 SetLastError (ERROR_TOO_MANY_OPEN_FILES);
1609                 close (fd);
1610                 g_free (filename);
1611                 
1612                 return(INVALID_HANDLE_VALUE);
1613         }
1614         
1615         file_handle.filename = filename;
1616
1617         if(security!=NULL) {
1618                 //file_handle->security_attributes=_wapi_handle_scratch_store (
1619                 //security, sizeof(WapiSecurityAttributes));
1620         }
1621         
1622         file_handle.fd = fd;
1623         file_handle.fileaccess=fileaccess;
1624         file_handle.sharemode=sharemode;
1625         file_handle.attrs=attrs;
1626
1627 #ifdef HAVE_POSIX_FADVISE
1628         if (attrs & FILE_FLAG_SEQUENTIAL_SCAN)
1629                 posix_fadvise (fd, 0, 0, POSIX_FADV_SEQUENTIAL);
1630         if (attrs & FILE_FLAG_RANDOM_ACCESS)
1631                 posix_fadvise (fd, 0, 0, POSIX_FADV_RANDOM);
1632 #endif
1633         
1634 #ifndef S_ISFIFO
1635 #define S_ISFIFO(m) ((m & S_IFIFO) != 0)
1636 #endif
1637         if (S_ISFIFO (statbuf.st_mode)) {
1638                 handle_type = WAPI_HANDLE_PIPE;
1639         } else if (S_ISCHR (statbuf.st_mode)) {
1640                 handle_type = WAPI_HANDLE_CONSOLE;
1641         } else {
1642                 handle_type = WAPI_HANDLE_FILE;
1643         }
1644
1645         handle = _wapi_handle_new_fd (handle_type, fd, &file_handle);
1646         if (handle == _WAPI_HANDLE_INVALID) {
1647                 g_warning ("%s: error creating file handle", __func__);
1648                 g_free (filename);
1649                 close (fd);
1650                 
1651                 SetLastError (ERROR_GEN_FAILURE);
1652                 return(INVALID_HANDLE_VALUE);
1653         }
1654         
1655         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: returning handle %p", __func__, handle);
1656         
1657         return(handle);
1658 }
1659
1660 /**
1661  * DeleteFile:
1662  * @name: a pointer to a NULL-terminated unicode string, that names
1663  * the file to be deleted.
1664  *
1665  * Deletes file @name.
1666  *
1667  * Return value: %TRUE on success, %FALSE otherwise.
1668  */
1669 gboolean DeleteFile(const gunichar2 *name)
1670 {
1671         gchar *filename;
1672         int retval;
1673         gboolean ret = FALSE;
1674         guint32 attrs;
1675 #if 0
1676         struct stat statbuf;
1677         struct _WapiFileShare *shareinfo;
1678 #endif
1679         
1680         if(name==NULL) {
1681                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
1682
1683                 SetLastError (ERROR_INVALID_NAME);
1684                 return(FALSE);
1685         }
1686
1687         filename=mono_unicode_to_external(name);
1688         if(filename==NULL) {
1689                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
1690
1691                 SetLastError (ERROR_INVALID_NAME);
1692                 return(FALSE);
1693         }
1694
1695         attrs = GetFileAttributes (name);
1696         if (attrs == INVALID_FILE_ATTRIBUTES) {
1697                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: file attributes error", __func__);
1698                 /* Error set by GetFileAttributes() */
1699                 g_free (filename);
1700                 return(FALSE);
1701         }
1702
1703 #if 0
1704         /* Check to make sure sharing allows us to open the file for
1705          * writing.  See bug 323389.
1706          *
1707          * Do the checks that don't need an open file descriptor, for
1708          * simplicity's sake.  If we really have to do the full checks
1709          * then we can implement that later.
1710          */
1711         if (_wapi_stat (filename, &statbuf) < 0) {
1712                 _wapi_set_last_path_error_from_errno (NULL, filename);
1713                 g_free (filename);
1714                 return(FALSE);
1715         }
1716         
1717         if (share_allows_open (&statbuf, 0, GENERIC_WRITE,
1718                                &shareinfo) == FALSE) {
1719                 SetLastError (ERROR_SHARING_VIOLATION);
1720                 g_free (filename);
1721                 return FALSE;
1722         }
1723         if (shareinfo)
1724                 _wapi_handle_share_release (shareinfo);
1725 #endif
1726
1727         retval = _wapi_unlink (filename);
1728         
1729         if (retval == -1) {
1730                 _wapi_set_last_path_error_from_errno (NULL, filename);
1731         } else {
1732                 ret = TRUE;
1733         }
1734
1735         g_free(filename);
1736
1737         return(ret);
1738 }
1739
1740 /**
1741  * MoveFile:
1742  * @name: a pointer to a NULL-terminated unicode string, that names
1743  * the file to be moved.
1744  * @dest_name: a pointer to a NULL-terminated unicode string, that is the
1745  * new name for the file.
1746  *
1747  * Renames file @name to @dest_name.
1748  * MoveFile sets ERROR_ALREADY_EXISTS if the destination exists, except
1749  * when it is the same file as the source.  In that case it silently succeeds.
1750  *
1751  * Return value: %TRUE on success, %FALSE otherwise.
1752  */
1753 gboolean MoveFile (const gunichar2 *name, const gunichar2 *dest_name)
1754 {
1755         gchar *utf8_name, *utf8_dest_name;
1756         int result, errno_copy;
1757         struct stat stat_src, stat_dest;
1758         gboolean ret = FALSE;
1759         struct _WapiFileShare *shareinfo;
1760         
1761         if(name==NULL) {
1762                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
1763
1764                 SetLastError (ERROR_INVALID_NAME);
1765                 return(FALSE);
1766         }
1767
1768         utf8_name = mono_unicode_to_external (name);
1769         if (utf8_name == NULL) {
1770                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
1771                 
1772                 SetLastError (ERROR_INVALID_NAME);
1773                 return FALSE;
1774         }
1775         
1776         if(dest_name==NULL) {
1777                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
1778
1779                 g_free (utf8_name);
1780                 SetLastError (ERROR_INVALID_NAME);
1781                 return(FALSE);
1782         }
1783
1784         utf8_dest_name = mono_unicode_to_external (dest_name);
1785         if (utf8_dest_name == NULL) {
1786                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
1787
1788                 g_free (utf8_name);
1789                 SetLastError (ERROR_INVALID_NAME);
1790                 return FALSE;
1791         }
1792
1793         /*
1794          * In C# land we check for the existence of src, but not for dest.
1795          * We check it here and return the failure if dest exists and is not
1796          * the same file as src.
1797          */
1798         if (_wapi_stat (utf8_name, &stat_src) < 0) {
1799                 if (errno != ENOENT || _wapi_lstat (utf8_name, &stat_src) < 0) {
1800                         _wapi_set_last_path_error_from_errno (NULL, utf8_name);
1801                         g_free (utf8_name);
1802                         g_free (utf8_dest_name);
1803                         return FALSE;
1804                 }
1805         }
1806         
1807         if (!_wapi_stat (utf8_dest_name, &stat_dest)) {
1808                 if (stat_dest.st_dev != stat_src.st_dev ||
1809                     stat_dest.st_ino != stat_src.st_ino) {
1810                         g_free (utf8_name);
1811                         g_free (utf8_dest_name);
1812                         SetLastError (ERROR_ALREADY_EXISTS);
1813                         return FALSE;
1814                 }
1815         }
1816
1817         /* Check to make that we have delete sharing permission.
1818          * See https://bugzilla.xamarin.com/show_bug.cgi?id=17009
1819          *
1820          * Do the checks that don't need an open file descriptor, for
1821          * simplicity's sake.  If we really have to do the full checks
1822          * then we can implement that later.
1823          */
1824         if (share_allows_delete (&stat_src, &shareinfo) == FALSE) {
1825                 SetLastError (ERROR_SHARING_VIOLATION);
1826                 return FALSE;
1827         }
1828         if (shareinfo)
1829                 _wapi_handle_share_release (shareinfo);
1830
1831         result = _wapi_rename (utf8_name, utf8_dest_name);
1832         errno_copy = errno;
1833         
1834         if (result == -1) {
1835                 switch(errno_copy) {
1836                 case EEXIST:
1837                         SetLastError (ERROR_ALREADY_EXISTS);
1838                         break;
1839
1840                 case EXDEV:
1841                         /* Ignore here, it is dealt with below */
1842                         break;
1843                         
1844                 default:
1845                         _wapi_set_last_path_error_from_errno (NULL, utf8_name);
1846                 }
1847         }
1848         
1849         g_free (utf8_name);
1850         g_free (utf8_dest_name);
1851
1852         if (result != 0 && errno_copy == EXDEV) {
1853                 if (S_ISDIR (stat_src.st_mode)) {
1854                         SetLastError (ERROR_NOT_SAME_DEVICE);
1855                         return FALSE;
1856                 }
1857                 /* Try a copy to the new location, and delete the source */
1858                 if (CopyFile (name, dest_name, TRUE)==FALSE) {
1859                         /* CopyFile will set the error */
1860                         return(FALSE);
1861                 }
1862                 
1863                 return(DeleteFile (name));
1864         }
1865
1866         if (result == 0) {
1867                 ret = TRUE;
1868         }
1869
1870         return(ret);
1871 }
1872
1873 static gboolean
1874 write_file (int src_fd, int dest_fd, struct stat *st_src, gboolean report_errors)
1875 {
1876         int remain, n;
1877         char *buf, *wbuf;
1878         int buf_size = st_src->st_blksize;
1879
1880         buf_size = buf_size < 8192 ? 8192 : (buf_size > 65536 ? 65536 : buf_size);
1881         buf = (char *) malloc (buf_size);
1882
1883         for (;;) {
1884                 remain = read (src_fd, buf, buf_size);
1885                 if (remain < 0) {
1886                         if (errno == EINTR && !_wapi_thread_cur_apc_pending ())
1887                                 continue;
1888
1889                         if (report_errors)
1890                                 _wapi_set_last_error_from_errno ();
1891
1892                         free (buf);
1893                         return FALSE;
1894                 }
1895                 if (remain == 0) {
1896                         break;
1897                 }
1898
1899                 wbuf = buf;
1900                 while (remain > 0) {
1901                         if ((n = write (dest_fd, wbuf, remain)) < 0) {
1902                                 if (errno == EINTR && !_wapi_thread_cur_apc_pending ())
1903                                         continue;
1904
1905                                 if (report_errors)
1906                                         _wapi_set_last_error_from_errno ();
1907                                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: write failed.", __func__);
1908                                 free (buf);
1909                                 return FALSE;
1910                         }
1911
1912                         remain -= n;
1913                         wbuf += n;
1914                 }
1915         }
1916
1917         free (buf);
1918         return TRUE ;
1919 }
1920
1921 /**
1922  * CopyFile:
1923  * @name: a pointer to a NULL-terminated unicode string, that names
1924  * the file to be copied.
1925  * @dest_name: a pointer to a NULL-terminated unicode string, that is the
1926  * new name for the file.
1927  * @fail_if_exists: if TRUE and dest_name exists, the copy will fail.
1928  *
1929  * Copies file @name to @dest_name
1930  *
1931  * Return value: %TRUE on success, %FALSE otherwise.
1932  */
1933 gboolean CopyFile (const gunichar2 *name, const gunichar2 *dest_name,
1934                    gboolean fail_if_exists)
1935 {
1936         gchar *utf8_src, *utf8_dest;
1937         int src_fd, dest_fd;
1938         struct stat st, dest_st;
1939         struct utimbuf dest_time;
1940         gboolean ret = TRUE;
1941         int ret_utime;
1942         
1943         if(name==NULL) {
1944                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
1945
1946                 SetLastError (ERROR_INVALID_NAME);
1947                 return(FALSE);
1948         }
1949         
1950         utf8_src = mono_unicode_to_external (name);
1951         if (utf8_src == NULL) {
1952                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of source returned NULL",
1953                            __func__);
1954
1955                 SetLastError (ERROR_INVALID_PARAMETER);
1956                 return(FALSE);
1957         }
1958         
1959         if(dest_name==NULL) {
1960                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: dest is NULL", __func__);
1961
1962                 g_free (utf8_src);
1963                 SetLastError (ERROR_INVALID_NAME);
1964                 return(FALSE);
1965         }
1966         
1967         utf8_dest = mono_unicode_to_external (dest_name);
1968         if (utf8_dest == NULL) {
1969                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of dest returned NULL",
1970                            __func__);
1971
1972                 SetLastError (ERROR_INVALID_PARAMETER);
1973
1974                 g_free (utf8_src);
1975                 
1976                 return(FALSE);
1977         }
1978         
1979         src_fd = _wapi_open (utf8_src, O_RDONLY, 0);
1980         if (src_fd < 0) {
1981                 _wapi_set_last_path_error_from_errno (NULL, utf8_src);
1982                 
1983                 g_free (utf8_src);
1984                 g_free (utf8_dest);
1985                 
1986                 return(FALSE);
1987         }
1988
1989         if (fstat (src_fd, &st) < 0) {
1990                 _wapi_set_last_error_from_errno ();
1991
1992                 g_free (utf8_src);
1993                 g_free (utf8_dest);
1994                 close (src_fd);
1995                 
1996                 return(FALSE);
1997         }
1998
1999         /* Before trying to open/create the dest, we need to report a 'file busy'
2000          * error if src and dest are actually the same file. We do the check here to take
2001          * advantage of the IOMAP capability */
2002         if (!_wapi_stat (utf8_dest, &dest_st) && st.st_dev == dest_st.st_dev && 
2003                         st.st_ino == dest_st.st_ino) {
2004
2005                 g_free (utf8_src);
2006                 g_free (utf8_dest);
2007                 close (src_fd);
2008
2009                 SetLastError (ERROR_SHARING_VIOLATION);
2010                 return (FALSE);
2011         }
2012         
2013         if (fail_if_exists) {
2014                 dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_CREAT | O_EXCL, st.st_mode);
2015         } else {
2016                 /* FIXME: it kinda sucks that this code path potentially scans
2017                  * the directory twice due to the weird SetLastError()
2018                  * behavior. */
2019                 dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_TRUNC, st.st_mode);
2020                 if (dest_fd < 0) {
2021                         /* The file does not exist, try creating it */
2022                         dest_fd = _wapi_open (utf8_dest, O_WRONLY | O_CREAT | O_TRUNC, st.st_mode);
2023                 } else {
2024                         /* Apparently this error is set if we
2025                          * overwrite the dest file
2026                          */
2027                         SetLastError (ERROR_ALREADY_EXISTS);
2028                 }
2029         }
2030         if (dest_fd < 0) {
2031                 _wapi_set_last_error_from_errno ();
2032
2033                 g_free (utf8_src);
2034                 g_free (utf8_dest);
2035                 close (src_fd);
2036
2037                 return(FALSE);
2038         }
2039
2040         if (!write_file (src_fd, dest_fd, &st, TRUE))
2041                 ret = FALSE;
2042
2043         close (src_fd);
2044         close (dest_fd);
2045         
2046         dest_time.modtime = st.st_mtime;
2047         dest_time.actime = st.st_atime;
2048         ret_utime = utime (utf8_dest, &dest_time);
2049         if (ret_utime == -1)
2050                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: file [%s] utime failed: %s", __func__, utf8_dest, strerror(errno));
2051         
2052         g_free (utf8_src);
2053         g_free (utf8_dest);
2054
2055         return ret;
2056 }
2057
2058 static gchar*
2059 convert_arg_to_utf8 (const gunichar2 *arg, const gchar *arg_name)
2060 {
2061         gchar *utf8_ret;
2062
2063         if (arg == NULL) {
2064                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: %s is NULL", __func__, arg_name);
2065                 SetLastError (ERROR_INVALID_NAME);
2066                 return NULL;
2067         }
2068
2069         utf8_ret = mono_unicode_to_external (arg);
2070         if (utf8_ret == NULL) {
2071                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion of %s returned NULL",
2072                            __func__, arg_name);
2073                 SetLastError (ERROR_INVALID_PARAMETER);
2074                 return NULL;
2075         }
2076
2077         return utf8_ret;
2078 }
2079
2080 gboolean
2081 ReplaceFile (const gunichar2 *replacedFileName, const gunichar2 *replacementFileName,
2082                       const gunichar2 *backupFileName, guint32 replaceFlags, 
2083                       gpointer exclude, gpointer reserved)
2084 {
2085         int result, backup_fd = -1,replaced_fd = -1;
2086         gchar *utf8_replacedFileName, *utf8_replacementFileName = NULL, *utf8_backupFileName = NULL;
2087         struct stat stBackup;
2088         gboolean ret = FALSE;
2089
2090         if (!(utf8_replacedFileName = convert_arg_to_utf8 (replacedFileName, "replacedFileName")))
2091                 return FALSE;
2092         if (!(utf8_replacementFileName = convert_arg_to_utf8 (replacementFileName, "replacementFileName")))
2093                 goto replace_cleanup;
2094         if (backupFileName != NULL) {
2095                 if (!(utf8_backupFileName = convert_arg_to_utf8 (backupFileName, "backupFileName")))
2096                         goto replace_cleanup;
2097         }
2098
2099         if (utf8_backupFileName) {
2100                 // Open the backup file for read so we can restore the file if an error occurs.
2101                 backup_fd = _wapi_open (utf8_backupFileName, O_RDONLY, 0);
2102                 result = _wapi_rename (utf8_replacedFileName, utf8_backupFileName);
2103                 if (result == -1)
2104                         goto replace_cleanup;
2105         }
2106
2107         result = _wapi_rename (utf8_replacementFileName, utf8_replacedFileName);
2108         if (result == -1) {
2109                 _wapi_set_last_path_error_from_errno (NULL, utf8_replacementFileName);
2110                 _wapi_rename (utf8_backupFileName, utf8_replacedFileName);
2111                 if (backup_fd != -1 && !fstat (backup_fd, &stBackup)) {
2112                         replaced_fd = _wapi_open (utf8_backupFileName, O_WRONLY | O_CREAT | O_TRUNC,
2113                                                   stBackup.st_mode);
2114                         
2115                         if (replaced_fd == -1)
2116                                 goto replace_cleanup;
2117
2118                         write_file (backup_fd, replaced_fd, &stBackup, FALSE);
2119                 }
2120
2121                 goto replace_cleanup;
2122         }
2123
2124         ret = TRUE;
2125
2126 replace_cleanup:
2127         g_free (utf8_replacedFileName);
2128         g_free (utf8_replacementFileName);
2129         g_free (utf8_backupFileName);
2130         if (backup_fd != -1)
2131                 close (backup_fd);
2132         if (replaced_fd != -1)
2133                 close (replaced_fd);
2134         return ret;
2135 }
2136
2137 /**
2138  * GetStdHandle:
2139  * @stdhandle: specifies the file descriptor
2140  *
2141  * Returns a handle for stdin, stdout, or stderr.  Always returns the
2142  * same handle for the same @stdhandle.
2143  *
2144  * Return value: the handle, or %INVALID_HANDLE_VALUE on error
2145  */
2146
2147 static mono_mutex_t stdhandle_mutex;
2148
2149 gpointer GetStdHandle(WapiStdHandle stdhandle)
2150 {
2151         struct _WapiHandle_file *file_handle;
2152         gpointer handle;
2153         int thr_ret, fd;
2154         const gchar *name;
2155         gboolean ok;
2156         
2157         switch(stdhandle) {
2158         case STD_INPUT_HANDLE:
2159                 fd = 0;
2160                 name = "<stdin>";
2161                 break;
2162
2163         case STD_OUTPUT_HANDLE:
2164                 fd = 1;
2165                 name = "<stdout>";
2166                 break;
2167
2168         case STD_ERROR_HANDLE:
2169                 fd = 2;
2170                 name = "<stderr>";
2171                 break;
2172
2173         default:
2174                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unknown standard handle type", __func__);
2175
2176                 SetLastError (ERROR_INVALID_PARAMETER);
2177                 return(INVALID_HANDLE_VALUE);
2178         }
2179
2180         handle = GINT_TO_POINTER (fd);
2181
2182         thr_ret = mono_os_mutex_lock (&stdhandle_mutex);
2183         g_assert (thr_ret == 0);
2184
2185         ok = _wapi_lookup_handle (handle, WAPI_HANDLE_CONSOLE,
2186                                   (gpointer *)&file_handle);
2187         if (ok == FALSE) {
2188                 /* Need to create this console handle */
2189                 handle = _wapi_stdhandle_create (fd, name);
2190                 
2191                 if (handle == INVALID_HANDLE_VALUE) {
2192                         SetLastError (ERROR_NO_MORE_FILES);
2193                         goto done;
2194                 }
2195         } else {
2196                 /* Add a reference to this handle */
2197                 _wapi_handle_ref (handle);
2198         }
2199         
2200   done:
2201         thr_ret = mono_os_mutex_unlock (&stdhandle_mutex);
2202         g_assert (thr_ret == 0);
2203         
2204         return(handle);
2205 }
2206
2207 /**
2208  * ReadFile:
2209  * @handle: The file handle to read from.  The handle must have
2210  * %GENERIC_READ access.
2211  * @buffer: The buffer to store read data in
2212  * @numbytes: The maximum number of bytes to read
2213  * @bytesread: The actual number of bytes read is stored here.  This
2214  * value can be zero if the handle is positioned at the end of the
2215  * file.
2216  * @overlapped: points to a required %WapiOverlapped structure if
2217  * @handle has the %FILE_FLAG_OVERLAPPED option set, should be NULL
2218  * otherwise.
2219  *
2220  * If @handle does not have the %FILE_FLAG_OVERLAPPED option set, this
2221  * function reads up to @numbytes bytes from the file from the current
2222  * file position, and stores them in @buffer.  If there are not enough
2223  * bytes left in the file, just the amount available will be read.
2224  * The actual number of bytes read is stored in @bytesread.
2225
2226  * If @handle has the %FILE_FLAG_OVERLAPPED option set, the current
2227  * file position is ignored and the read position is taken from data
2228  * in the @overlapped structure.
2229  *
2230  * Return value: %TRUE if the read succeeds (even if no bytes were
2231  * read due to an attempt to read past the end of the file), %FALSE on
2232  * error.
2233  */
2234 gboolean ReadFile(gpointer handle, gpointer buffer, guint32 numbytes,
2235                   guint32 *bytesread, WapiOverlapped *overlapped)
2236 {
2237         WapiHandleType type;
2238
2239         type = _wapi_handle_type (handle);
2240         
2241         if(io_ops[type].readfile==NULL) {
2242                 SetLastError (ERROR_INVALID_HANDLE);
2243                 return(FALSE);
2244         }
2245         
2246         return(io_ops[type].readfile (handle, buffer, numbytes, bytesread,
2247                                       overlapped));
2248 }
2249
2250 /**
2251  * WriteFile:
2252  * @handle: The file handle to write to.  The handle must have
2253  * %GENERIC_WRITE access.
2254  * @buffer: The buffer to read data from.
2255  * @numbytes: The maximum number of bytes to write.
2256  * @byteswritten: The actual number of bytes written is stored here.
2257  * If the handle is positioned at the file end, the length of the file
2258  * is extended.  This parameter may be %NULL.
2259  * @overlapped: points to a required %WapiOverlapped structure if
2260  * @handle has the %FILE_FLAG_OVERLAPPED option set, should be NULL
2261  * otherwise.
2262  *
2263  * If @handle does not have the %FILE_FLAG_OVERLAPPED option set, this
2264  * function writes up to @numbytes bytes from @buffer to the file at
2265  * the current file position.  If @handle is positioned at the end of
2266  * the file, the file is extended.  The actual number of bytes written
2267  * is stored in @byteswritten.
2268  *
2269  * If @handle has the %FILE_FLAG_OVERLAPPED option set, the current
2270  * file position is ignored and the write position is taken from data
2271  * in the @overlapped structure.
2272  *
2273  * Return value: %TRUE if the write succeeds, %FALSE on error.
2274  */
2275 gboolean WriteFile(gpointer handle, gconstpointer buffer, guint32 numbytes,
2276                    guint32 *byteswritten, WapiOverlapped *overlapped)
2277 {
2278         WapiHandleType type;
2279
2280         type = _wapi_handle_type (handle);
2281         
2282         if(io_ops[type].writefile==NULL) {
2283                 SetLastError (ERROR_INVALID_HANDLE);
2284                 return(FALSE);
2285         }
2286         
2287         return(io_ops[type].writefile (handle, buffer, numbytes, byteswritten,
2288                                        overlapped));
2289 }
2290
2291 /**
2292  * FlushFileBuffers:
2293  * @handle: Handle to open file.  The handle must have
2294  * %GENERIC_WRITE access.
2295  *
2296  * Flushes buffers of the file and causes all unwritten data to
2297  * be written.
2298  *
2299  * Return value: %TRUE on success, %FALSE otherwise.
2300  */
2301 gboolean FlushFileBuffers(gpointer handle)
2302 {
2303         WapiHandleType type;
2304
2305         type = _wapi_handle_type (handle);
2306         
2307         if(io_ops[type].flushfile==NULL) {
2308                 SetLastError (ERROR_INVALID_HANDLE);
2309                 return(FALSE);
2310         }
2311         
2312         return(io_ops[type].flushfile (handle));
2313 }
2314
2315 /**
2316  * SetEndOfFile:
2317  * @handle: The file handle to set.  The handle must have
2318  * %GENERIC_WRITE access.
2319  *
2320  * Moves the end-of-file position to the current position of the file
2321  * pointer.  This function is used to truncate or extend a file.
2322  *
2323  * Return value: %TRUE on success, %FALSE otherwise.
2324  */
2325 gboolean SetEndOfFile(gpointer handle)
2326 {
2327         WapiHandleType type;
2328
2329         type = _wapi_handle_type (handle);
2330         
2331         if (io_ops[type].setendoffile == NULL) {
2332                 SetLastError (ERROR_INVALID_HANDLE);
2333                 return(FALSE);
2334         }
2335         
2336         return(io_ops[type].setendoffile (handle));
2337 }
2338
2339 /**
2340  * SetFilePointer:
2341  * @handle: The file handle to set.  The handle must have
2342  * %GENERIC_READ or %GENERIC_WRITE access.
2343  * @movedistance: Low 32 bits of a signed value that specifies the
2344  * number of bytes to move the file pointer.
2345  * @highmovedistance: Pointer to the high 32 bits of a signed value
2346  * that specifies the number of bytes to move the file pointer, or
2347  * %NULL.
2348  * @method: The starting point for the file pointer move.
2349  *
2350  * Sets the file pointer of an open file.
2351  *
2352  * The distance to move the file pointer is calculated from
2353  * @movedistance and @highmovedistance: If @highmovedistance is %NULL,
2354  * @movedistance is the 32-bit signed value; otherwise, @movedistance
2355  * is the low 32 bits and @highmovedistance a pointer to the high 32
2356  * bits of a 64 bit signed value.  A positive distance moves the file
2357  * pointer forward from the position specified by @method; a negative
2358  * distance moves the file pointer backward.
2359  *
2360  * If the library is compiled without large file support,
2361  * @highmovedistance is ignored and its value is set to zero on a
2362  * successful return.
2363  *
2364  * Return value: On success, the low 32 bits of the new file pointer.
2365  * If @highmovedistance is not %NULL, the high 32 bits of the new file
2366  * pointer are stored there.  On failure, %INVALID_SET_FILE_POINTER.
2367  */
2368 guint32 SetFilePointer(gpointer handle, gint32 movedistance,
2369                        gint32 *highmovedistance, WapiSeekMethod method)
2370 {
2371         WapiHandleType type;
2372
2373         type = _wapi_handle_type (handle);
2374         
2375         if (io_ops[type].seek == NULL) {
2376                 SetLastError (ERROR_INVALID_HANDLE);
2377                 return(INVALID_SET_FILE_POINTER);
2378         }
2379         
2380         return(io_ops[type].seek (handle, movedistance, highmovedistance,
2381                                   method));
2382 }
2383
2384 /**
2385  * GetFileType:
2386  * @handle: The file handle to test.
2387  *
2388  * Finds the type of file @handle.
2389  *
2390  * Return value: %FILE_TYPE_UNKNOWN - the type of the file @handle is
2391  * unknown.  %FILE_TYPE_DISK - @handle is a disk file.
2392  * %FILE_TYPE_CHAR - @handle is a character device, such as a console.
2393  * %FILE_TYPE_PIPE - @handle is a named or anonymous pipe.
2394  */
2395 WapiFileType GetFileType(gpointer handle)
2396 {
2397         WapiHandleType type;
2398
2399         if (!_WAPI_PRIVATE_HAVE_SLOT (handle)) {
2400                 SetLastError (ERROR_INVALID_HANDLE);
2401                 return(FILE_TYPE_UNKNOWN);
2402         }
2403
2404         type = _wapi_handle_type (handle);
2405         
2406         if (io_ops[type].getfiletype == NULL) {
2407                 SetLastError (ERROR_INVALID_HANDLE);
2408                 return(FILE_TYPE_UNKNOWN);
2409         }
2410         
2411         return(io_ops[type].getfiletype ());
2412 }
2413
2414 /**
2415  * GetFileSize:
2416  * @handle: The file handle to query.  The handle must have
2417  * %GENERIC_READ or %GENERIC_WRITE access.
2418  * @highsize: If non-%NULL, the high 32 bits of the file size are
2419  * stored here.
2420  *
2421  * Retrieves the size of the file @handle.
2422  *
2423  * If the library is compiled without large file support, @highsize
2424  * has its value set to zero on a successful return.
2425  *
2426  * Return value: On success, the low 32 bits of the file size.  If
2427  * @highsize is non-%NULL then the high 32 bits of the file size are
2428  * stored here.  On failure %INVALID_FILE_SIZE is returned.
2429  */
2430 guint32 GetFileSize(gpointer handle, guint32 *highsize)
2431 {
2432         WapiHandleType type;
2433
2434         type = _wapi_handle_type (handle);
2435         
2436         if (io_ops[type].getfilesize == NULL) {
2437                 SetLastError (ERROR_INVALID_HANDLE);
2438                 return(INVALID_FILE_SIZE);
2439         }
2440         
2441         return(io_ops[type].getfilesize (handle, highsize));
2442 }
2443
2444 /**
2445  * GetFileTime:
2446  * @handle: The file handle to query.  The handle must have
2447  * %GENERIC_READ access.
2448  * @create_time: Points to a %WapiFileTime structure to receive the
2449  * number of ticks since the epoch that file was created.  May be
2450  * %NULL.
2451  * @last_access: Points to a %WapiFileTime structure to receive the
2452  * number of ticks since the epoch when file was last accessed.  May be
2453  * %NULL.
2454  * @last_write: Points to a %WapiFileTime structure to receive the
2455  * number of ticks since the epoch when file was last written to.  May
2456  * be %NULL.
2457  *
2458  * Finds the number of ticks since the epoch that the file referenced
2459  * by @handle was created, last accessed and last modified.  A tick is
2460  * a 100 nanosecond interval.  The epoch is Midnight, January 1 1601
2461  * GMT.
2462  *
2463  * Create time isn't recorded on POSIX file systems or reported by
2464  * stat(2), so that time is guessed by returning the oldest of the
2465  * other times.
2466  *
2467  * Return value: %TRUE on success, %FALSE otherwise.
2468  */
2469 gboolean GetFileTime(gpointer handle, WapiFileTime *create_time,
2470                      WapiFileTime *last_access, WapiFileTime *last_write)
2471 {
2472         WapiHandleType type;
2473
2474         type = _wapi_handle_type (handle);
2475         
2476         if (io_ops[type].getfiletime == NULL) {
2477                 SetLastError (ERROR_INVALID_HANDLE);
2478                 return(FALSE);
2479         }
2480         
2481         return(io_ops[type].getfiletime (handle, create_time, last_access,
2482                                          last_write));
2483 }
2484
2485 /**
2486  * SetFileTime:
2487  * @handle: The file handle to set.  The handle must have
2488  * %GENERIC_WRITE access.
2489  * @create_time: Points to a %WapiFileTime structure that contains the
2490  * number of ticks since the epoch that the file was created.  May be
2491  * %NULL.
2492  * @last_access: Points to a %WapiFileTime structure that contains the
2493  * number of ticks since the epoch when the file was last accessed.
2494  * May be %NULL.
2495  * @last_write: Points to a %WapiFileTime structure that contains the
2496  * number of ticks since the epoch when the file was last written to.
2497  * May be %NULL.
2498  *
2499  * Sets the number of ticks since the epoch that the file referenced
2500  * by @handle was created, last accessed or last modified.  A tick is
2501  * a 100 nanosecond interval.  The epoch is Midnight, January 1 1601
2502  * GMT.
2503  *
2504  * Create time isn't recorded on POSIX file systems, and is ignored.
2505  *
2506  * Return value: %TRUE on success, %FALSE otherwise.
2507  */
2508 gboolean SetFileTime(gpointer handle, const WapiFileTime *create_time,
2509                      const WapiFileTime *last_access,
2510                      const WapiFileTime *last_write)
2511 {
2512         WapiHandleType type;
2513
2514         type = _wapi_handle_type (handle);
2515         
2516         if (io_ops[type].setfiletime == NULL) {
2517                 SetLastError (ERROR_INVALID_HANDLE);
2518                 return(FALSE);
2519         }
2520         
2521         return(io_ops[type].setfiletime (handle, create_time, last_access,
2522                                          last_write));
2523 }
2524
2525 /* A tick is a 100-nanosecond interval.  File time epoch is Midnight,
2526  * January 1 1601 GMT
2527  */
2528
2529 #define TICKS_PER_MILLISECOND 10000L
2530 #define TICKS_PER_SECOND 10000000L
2531 #define TICKS_PER_MINUTE 600000000L
2532 #define TICKS_PER_HOUR 36000000000LL
2533 #define TICKS_PER_DAY 864000000000LL
2534
2535 #define isleap(y) ((y) % 4 == 0 && ((y) % 100 != 0 || (y) % 400 == 0))
2536
2537 static const guint16 mon_yday[2][13]={
2538         {0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365},
2539         {0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366},
2540 };
2541
2542 /**
2543  * FileTimeToSystemTime:
2544  * @file_time: Points to a %WapiFileTime structure that contains the
2545  * number of ticks to convert.
2546  * @system_time: Points to a %WapiSystemTime structure to receive the
2547  * broken-out time.
2548  *
2549  * Converts a tick count into broken-out time values.
2550  *
2551  * Return value: %TRUE on success, %FALSE otherwise.
2552  */
2553 gboolean FileTimeToSystemTime(const WapiFileTime *file_time,
2554                               WapiSystemTime *system_time)
2555 {
2556         gint64 file_ticks, totaldays, rem, y;
2557         const guint16 *ip;
2558         
2559         if(system_time==NULL) {
2560                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: system_time NULL", __func__);
2561
2562                 SetLastError (ERROR_INVALID_PARAMETER);
2563                 return(FALSE);
2564         }
2565         
2566         file_ticks=((gint64)file_time->dwHighDateTime << 32) +
2567                 file_time->dwLowDateTime;
2568         
2569         /* Really compares if file_ticks>=0x8000000000000000
2570          * (LLONG_MAX+1) but we're working with a signed value for the
2571          * year and day calculation to work later
2572          */
2573         if(file_ticks<0) {
2574                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: file_time too big", __func__);
2575
2576                 SetLastError (ERROR_INVALID_PARAMETER);
2577                 return(FALSE);
2578         }
2579
2580         totaldays=(file_ticks / TICKS_PER_DAY);
2581         rem = file_ticks % TICKS_PER_DAY;
2582         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld rem: %lld", __func__, totaldays, rem);
2583
2584         system_time->wHour=rem/TICKS_PER_HOUR;
2585         rem %= TICKS_PER_HOUR;
2586         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Hour: %d rem: %lld", __func__, system_time->wHour, rem);
2587         
2588         system_time->wMinute = rem / TICKS_PER_MINUTE;
2589         rem %= TICKS_PER_MINUTE;
2590         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Minute: %d rem: %lld", __func__, system_time->wMinute,
2591                   rem);
2592         
2593         system_time->wSecond = rem / TICKS_PER_SECOND;
2594         rem %= TICKS_PER_SECOND;
2595         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Second: %d rem: %lld", __func__, system_time->wSecond,
2596                   rem);
2597         
2598         system_time->wMilliseconds = rem / TICKS_PER_MILLISECOND;
2599         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Milliseconds: %d", __func__,
2600                   system_time->wMilliseconds);
2601
2602         /* January 1, 1601 was a Monday, according to Emacs calendar */
2603         system_time->wDayOfWeek = ((1 + totaldays) % 7) + 1;
2604         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Day of week: %d", __func__, system_time->wDayOfWeek);
2605         
2606         /* This algorithm to find year and month given days from epoch
2607          * from glibc
2608          */
2609         y=1601;
2610         
2611 #define DIV(a, b) ((a) / (b) - ((a) % (b) < 0))
2612 #define LEAPS_THRU_END_OF(y) (DIV(y, 4) - DIV (y, 100) + DIV (y, 400))
2613
2614         while(totaldays < 0 || totaldays >= (isleap(y)?366:365)) {
2615                 /* Guess a corrected year, assuming 365 days per year */
2616                 gint64 yg = y + totaldays / 365 - (totaldays % 365 < 0);
2617                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld yg: %lld y: %lld", __func__,
2618                           totaldays, yg,
2619                           y);
2620                 g_message("%s: LEAPS(yg): %lld LEAPS(y): %lld", __func__,
2621                           LEAPS_THRU_END_OF(yg-1), LEAPS_THRU_END_OF(y-1));
2622                 
2623                 /* Adjust days and y to match the guessed year. */
2624                 totaldays -= ((yg - y) * 365
2625                               + LEAPS_THRU_END_OF (yg - 1)
2626                               - LEAPS_THRU_END_OF (y - 1));
2627                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld", __func__, totaldays);
2628                 y = yg;
2629                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: y: %lld", __func__, y);
2630         }
2631         
2632         system_time->wYear = y;
2633         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Year: %d", __func__, system_time->wYear);
2634
2635         ip = mon_yday[isleap(y)];
2636         
2637         for(y=11; totaldays < ip[y]; --y) {
2638                 continue;
2639         }
2640         totaldays-=ip[y];
2641         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: totaldays: %lld", __func__, totaldays);
2642         
2643         system_time->wMonth = y + 1;
2644         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Month: %d", __func__, system_time->wMonth);
2645
2646         system_time->wDay = totaldays + 1;
2647         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Day: %d", __func__, system_time->wDay);
2648         
2649         return(TRUE);
2650 }
2651
2652 gpointer FindFirstFile (const gunichar2 *pattern, WapiFindData *find_data)
2653 {
2654         struct _WapiHandle_find find_handle = {0};
2655         gpointer handle;
2656         gchar *utf8_pattern = NULL, *dir_part, *entry_part;
2657         int result;
2658         
2659         if (pattern == NULL) {
2660                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: pattern is NULL", __func__);
2661
2662                 SetLastError (ERROR_PATH_NOT_FOUND);
2663                 return(INVALID_HANDLE_VALUE);
2664         }
2665
2666         utf8_pattern = mono_unicode_to_external (pattern);
2667         if (utf8_pattern == NULL) {
2668                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2669                 
2670                 SetLastError (ERROR_INVALID_NAME);
2671                 return(INVALID_HANDLE_VALUE);
2672         }
2673
2674         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: looking for [%s]", __func__, utf8_pattern);
2675         
2676         /* Figure out which bit of the pattern is the directory */
2677         dir_part = _wapi_dirname (utf8_pattern);
2678         entry_part = _wapi_basename (utf8_pattern);
2679
2680 #if 0
2681         /* Don't do this check for now, it breaks if directories
2682          * really do have metachars in their names (see bug 58116).
2683          * FIXME: Figure out a better solution to keep some checks...
2684          */
2685         if (strchr (dir_part, '*') || strchr (dir_part, '?')) {
2686                 SetLastError (ERROR_INVALID_NAME);
2687                 g_free (dir_part);
2688                 g_free (entry_part);
2689                 g_free (utf8_pattern);
2690                 return(INVALID_HANDLE_VALUE);
2691         }
2692 #endif
2693
2694         /* The pattern can specify a directory or a set of files.
2695          *
2696          * The pattern can have wildcard characters ? and *, but only
2697          * in the section after the last directory delimiter.  (Return
2698          * ERROR_INVALID_NAME if there are wildcards in earlier path
2699          * sections.)  "*" has the usual 0-or-more chars meaning.  "?" 
2700          * means "match one character", "??" seems to mean "match one
2701          * or two characters", "???" seems to mean "match one, two or
2702          * three characters", etc.  Windows will also try and match
2703          * the mangled "short name" of files, so 8 character patterns
2704          * with wildcards will show some surprising results.
2705          *
2706          * All the written documentation I can find says that '?' 
2707          * should only match one character, and doesn't mention '??',
2708          * '???' etc.  I'm going to assume that the strict behaviour
2709          * (ie '???' means three and only three characters) is the
2710          * correct one, because that lets me use fnmatch(3) rather
2711          * than mess around with regexes.
2712          */
2713
2714         find_handle.namelist = NULL;
2715         result = _wapi_io_scandir (dir_part, entry_part,
2716                                    &find_handle.namelist);
2717         
2718         if (result == 0) {
2719                 /* No files, which windows seems to call
2720                  * FILE_NOT_FOUND
2721                  */
2722                 SetLastError (ERROR_FILE_NOT_FOUND);
2723                 g_free (utf8_pattern);
2724                 g_free (entry_part);
2725                 g_free (dir_part);
2726                 return (INVALID_HANDLE_VALUE);
2727         }
2728         
2729         if (result < 0) {
2730                 _wapi_set_last_path_error_from_errno (dir_part, NULL);
2731                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: scandir error: %s", __func__, g_strerror (errno));
2732                 g_free (utf8_pattern);
2733                 g_free (entry_part);
2734                 g_free (dir_part);
2735                 return (INVALID_HANDLE_VALUE);
2736         }
2737
2738         g_free (utf8_pattern);
2739         g_free (entry_part);
2740         
2741         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Got %d matches", __func__, result);
2742
2743         find_handle.dir_part = dir_part;
2744         find_handle.num = result;
2745         find_handle.count = 0;
2746         
2747         handle = _wapi_handle_new (WAPI_HANDLE_FIND, &find_handle);
2748         if (handle == _WAPI_HANDLE_INVALID) {
2749                 g_warning ("%s: error creating find handle", __func__);
2750                 g_free (dir_part);
2751                 g_free (entry_part);
2752                 g_free (utf8_pattern);
2753                 SetLastError (ERROR_GEN_FAILURE);
2754                 
2755                 return(INVALID_HANDLE_VALUE);
2756         }
2757
2758         if (handle != INVALID_HANDLE_VALUE &&
2759             !FindNextFile (handle, find_data)) {
2760                 FindClose (handle);
2761                 SetLastError (ERROR_NO_MORE_FILES);
2762                 handle = INVALID_HANDLE_VALUE;
2763         }
2764
2765         return (handle);
2766 }
2767
2768 gboolean FindNextFile (gpointer handle, WapiFindData *find_data)
2769 {
2770         struct _WapiHandle_find *find_handle;
2771         gboolean ok;
2772         struct stat buf, linkbuf;
2773         int result;
2774         gchar *filename;
2775         gchar *utf8_filename, *utf8_basename;
2776         gunichar2 *utf16_basename;
2777         time_t create_time;
2778         glong bytes;
2779         int thr_ret;
2780         gboolean ret = FALSE;
2781         
2782         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FIND,
2783                                 (gpointer *)&find_handle);
2784         if(ok==FALSE) {
2785                 g_warning ("%s: error looking up find handle %p", __func__,
2786                            handle);
2787                 SetLastError (ERROR_INVALID_HANDLE);
2788                 return(FALSE);
2789         }
2790
2791         thr_ret = _wapi_handle_lock_handle (handle);
2792         g_assert (thr_ret == 0);
2793         
2794 retry:
2795         if (find_handle->count >= find_handle->num) {
2796                 SetLastError (ERROR_NO_MORE_FILES);
2797                 goto cleanup;
2798         }
2799
2800         /* stat next match */
2801
2802         filename = g_build_filename (find_handle->dir_part, find_handle->namelist[find_handle->count ++], NULL);
2803
2804         result = _wapi_stat (filename, &buf);
2805         if (result == -1 && errno == ENOENT) {
2806                 /* Might be a dangling symlink */
2807                 result = _wapi_lstat (filename, &buf);
2808         }
2809         
2810         if (result != 0) {
2811                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: stat failed: %s", __func__, filename);
2812
2813                 g_free (filename);
2814                 goto retry;
2815         }
2816
2817 #ifndef __native_client__
2818         result = _wapi_lstat (filename, &linkbuf);
2819         if (result != 0) {
2820                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: lstat failed: %s", __func__, filename);
2821
2822                 g_free (filename);
2823                 goto retry;
2824         }
2825 #endif
2826
2827         utf8_filename = mono_utf8_from_external (filename);
2828         if (utf8_filename == NULL) {
2829                 /* We couldn't turn this filename into utf8 (eg the
2830                  * encoding of the name wasn't convertible), so just
2831                  * ignore it.
2832                  */
2833                 g_warning ("%s: Bad encoding for '%s'\nConsider using MONO_EXTERNAL_ENCODINGS\n", __func__, filename);
2834                 
2835                 g_free (filename);
2836                 goto retry;
2837         }
2838         g_free (filename);
2839         
2840         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Found [%s]", __func__, utf8_filename);
2841         
2842         /* fill data block */
2843
2844         if (buf.st_mtime < buf.st_ctime)
2845                 create_time = buf.st_mtime;
2846         else
2847                 create_time = buf.st_ctime;
2848         
2849 #ifdef __native_client__
2850         find_data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_filename, &buf, NULL);
2851 #else
2852         find_data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_filename, &buf, &linkbuf);
2853 #endif
2854
2855         _wapi_time_t_to_filetime (create_time, &find_data->ftCreationTime);
2856         _wapi_time_t_to_filetime (buf.st_atime, &find_data->ftLastAccessTime);
2857         _wapi_time_t_to_filetime (buf.st_mtime, &find_data->ftLastWriteTime);
2858
2859         if (find_data->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
2860                 find_data->nFileSizeHigh = 0;
2861                 find_data->nFileSizeLow = 0;
2862         } else {
2863                 find_data->nFileSizeHigh = buf.st_size >> 32;
2864                 find_data->nFileSizeLow = buf.st_size & 0xFFFFFFFF;
2865         }
2866
2867         find_data->dwReserved0 = 0;
2868         find_data->dwReserved1 = 0;
2869
2870         utf8_basename = _wapi_basename (utf8_filename);
2871         utf16_basename = g_utf8_to_utf16 (utf8_basename, -1, NULL, &bytes,
2872                                           NULL);
2873         if(utf16_basename==NULL) {
2874                 g_free (utf8_basename);
2875                 g_free (utf8_filename);
2876                 goto retry;
2877         }
2878         ret = TRUE;
2879         
2880         /* utf16 is 2 * utf8 */
2881         bytes *= 2;
2882
2883         memset (find_data->cFileName, '\0', (MAX_PATH*2));
2884
2885         /* Truncating a utf16 string like this might leave the last
2886          * char incomplete
2887          */
2888         memcpy (find_data->cFileName, utf16_basename,
2889                 bytes<(MAX_PATH*2)-2?bytes:(MAX_PATH*2)-2);
2890
2891         find_data->cAlternateFileName [0] = 0;  /* not used */
2892
2893         g_free (utf8_basename);
2894         g_free (utf8_filename);
2895         g_free (utf16_basename);
2896
2897 cleanup:
2898         thr_ret = _wapi_handle_unlock_handle (handle);
2899         g_assert (thr_ret == 0);
2900         
2901         return(ret);
2902 }
2903
2904 /**
2905  * FindClose:
2906  * @wapi_handle: the find handle to close.
2907  *
2908  * Closes find handle @wapi_handle
2909  *
2910  * Return value: %TRUE on success, %FALSE otherwise.
2911  */
2912 gboolean FindClose (gpointer handle)
2913 {
2914         struct _WapiHandle_find *find_handle;
2915         gboolean ok;
2916         int thr_ret;
2917
2918         if (handle == NULL) {
2919                 SetLastError (ERROR_INVALID_HANDLE);
2920                 return(FALSE);
2921         }
2922         
2923         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FIND,
2924                                 (gpointer *)&find_handle);
2925         if(ok==FALSE) {
2926                 g_warning ("%s: error looking up find handle %p", __func__,
2927                            handle);
2928                 SetLastError (ERROR_INVALID_HANDLE);
2929                 return(FALSE);
2930         }
2931
2932         thr_ret = _wapi_handle_lock_handle (handle);
2933         g_assert (thr_ret == 0);
2934         
2935         g_strfreev (find_handle->namelist);
2936         g_free (find_handle->dir_part);
2937
2938         thr_ret = _wapi_handle_unlock_handle (handle);
2939         g_assert (thr_ret == 0);
2940         
2941         _wapi_handle_unref (handle);
2942         
2943         return(TRUE);
2944 }
2945
2946 /**
2947  * CreateDirectory:
2948  * @name: a pointer to a NULL-terminated unicode string, that names
2949  * the directory to be created.
2950  * @security: ignored for now
2951  *
2952  * Creates directory @name
2953  *
2954  * Return value: %TRUE on success, %FALSE otherwise.
2955  */
2956 gboolean CreateDirectory (const gunichar2 *name,
2957                           WapiSecurityAttributes *security)
2958 {
2959         gchar *utf8_name;
2960         int result;
2961         
2962         if (name == NULL) {
2963                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
2964
2965                 SetLastError (ERROR_INVALID_NAME);
2966                 return(FALSE);
2967         }
2968         
2969         utf8_name = mono_unicode_to_external (name);
2970         if (utf8_name == NULL) {
2971                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
2972         
2973                 SetLastError (ERROR_INVALID_NAME);
2974                 return FALSE;
2975         }
2976
2977         result = _wapi_mkdir (utf8_name, 0777);
2978
2979         if (result == 0) {
2980                 g_free (utf8_name);
2981                 return TRUE;
2982         }
2983
2984         _wapi_set_last_path_error_from_errno (NULL, utf8_name);
2985         g_free (utf8_name);
2986         return FALSE;
2987 }
2988
2989 /**
2990  * RemoveDirectory:
2991  * @name: a pointer to a NULL-terminated unicode string, that names
2992  * the directory to be removed.
2993  *
2994  * Removes directory @name
2995  *
2996  * Return value: %TRUE on success, %FALSE otherwise.
2997  */
2998 gboolean RemoveDirectory (const gunichar2 *name)
2999 {
3000         gchar *utf8_name;
3001         int result;
3002         
3003         if (name == NULL) {
3004                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3005
3006                 SetLastError (ERROR_INVALID_NAME);
3007                 return(FALSE);
3008         }
3009
3010         utf8_name = mono_unicode_to_external (name);
3011         if (utf8_name == NULL) {
3012                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3013                 
3014                 SetLastError (ERROR_INVALID_NAME);
3015                 return FALSE;
3016         }
3017
3018         result = _wapi_rmdir (utf8_name);
3019         if (result == -1) {
3020                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3021                 g_free (utf8_name);
3022                 
3023                 return(FALSE);
3024         }
3025         g_free (utf8_name);
3026
3027         return(TRUE);
3028 }
3029
3030 /**
3031  * GetFileAttributes:
3032  * @name: a pointer to a NULL-terminated unicode filename.
3033  *
3034  * Gets the attributes for @name;
3035  *
3036  * Return value: %INVALID_FILE_ATTRIBUTES on failure
3037  */
3038 guint32 GetFileAttributes (const gunichar2 *name)
3039 {
3040         gchar *utf8_name;
3041         struct stat buf, linkbuf;
3042         int result;
3043         guint32 ret;
3044         
3045         if (name == NULL) {
3046                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3047
3048                 SetLastError (ERROR_INVALID_NAME);
3049                 return(FALSE);
3050         }
3051         
3052         utf8_name = mono_unicode_to_external (name);
3053         if (utf8_name == NULL) {
3054                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3055
3056                 SetLastError (ERROR_INVALID_PARAMETER);
3057                 return (INVALID_FILE_ATTRIBUTES);
3058         }
3059
3060         result = _wapi_stat (utf8_name, &buf);
3061         if (result == -1 && errno == ENOENT) {
3062                 /* Might be a dangling symlink... */
3063                 result = _wapi_lstat (utf8_name, &buf);
3064         }
3065
3066         if (result != 0) {
3067                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3068                 g_free (utf8_name);
3069                 return (INVALID_FILE_ATTRIBUTES);
3070         }
3071
3072 #ifndef __native_client__
3073         result = _wapi_lstat (utf8_name, &linkbuf);
3074         if (result != 0) {
3075                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3076                 g_free (utf8_name);
3077                 return (INVALID_FILE_ATTRIBUTES);
3078         }
3079 #endif
3080         
3081 #ifdef __native_client__
3082         ret = _wapi_stat_to_file_attributes (utf8_name, &buf, NULL);
3083 #else
3084         ret = _wapi_stat_to_file_attributes (utf8_name, &buf, &linkbuf);
3085 #endif
3086         
3087         g_free (utf8_name);
3088
3089         return(ret);
3090 }
3091
3092 /**
3093  * GetFileAttributesEx:
3094  * @name: a pointer to a NULL-terminated unicode filename.
3095  * @level: must be GetFileExInfoStandard
3096  * @info: pointer to a WapiFileAttributesData structure
3097  *
3098  * Gets attributes, size and filetimes for @name;
3099  *
3100  * Return value: %TRUE on success, %FALSE on failure
3101  */
3102 gboolean GetFileAttributesEx (const gunichar2 *name, WapiGetFileExInfoLevels level, gpointer info)
3103 {
3104         gchar *utf8_name;
3105         WapiFileAttributesData *data;
3106
3107         struct stat buf, linkbuf;
3108         time_t create_time;
3109         int result;
3110         
3111         if (level != GetFileExInfoStandard) {
3112                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: info level %d not supported.", __func__,
3113                            level);
3114
3115                 SetLastError (ERROR_INVALID_PARAMETER);
3116                 return FALSE;
3117         }
3118         
3119         if (name == NULL) {
3120                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3121
3122                 SetLastError (ERROR_INVALID_NAME);
3123                 return(FALSE);
3124         }
3125
3126         utf8_name = mono_unicode_to_external (name);
3127         if (utf8_name == NULL) {
3128                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3129
3130                 SetLastError (ERROR_INVALID_PARAMETER);
3131                 return FALSE;
3132         }
3133
3134         result = _wapi_stat (utf8_name, &buf);
3135         if (result == -1 && errno == ENOENT) {
3136                 /* Might be a dangling symlink... */
3137                 result = _wapi_lstat (utf8_name, &buf);
3138         }
3139         
3140         if (result != 0) {
3141                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3142                 g_free (utf8_name);
3143                 return FALSE;
3144         }
3145
3146         result = _wapi_lstat (utf8_name, &linkbuf);
3147         if (result != 0) {
3148                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3149                 g_free (utf8_name);
3150                 return(FALSE);
3151         }
3152
3153         /* fill data block */
3154
3155         data = (WapiFileAttributesData *)info;
3156
3157         if (buf.st_mtime < buf.st_ctime)
3158                 create_time = buf.st_mtime;
3159         else
3160                 create_time = buf.st_ctime;
3161         
3162         data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_name,
3163                                                                 &buf,
3164                                                                 &linkbuf);
3165
3166         g_free (utf8_name);
3167
3168         _wapi_time_t_to_filetime (create_time, &data->ftCreationTime);
3169         _wapi_time_t_to_filetime (buf.st_atime, &data->ftLastAccessTime);
3170         _wapi_time_t_to_filetime (buf.st_mtime, &data->ftLastWriteTime);
3171
3172         if (data->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
3173                 data->nFileSizeHigh = 0;
3174                 data->nFileSizeLow = 0;
3175         }
3176         else {
3177                 data->nFileSizeHigh = buf.st_size >> 32;
3178                 data->nFileSizeLow = buf.st_size & 0xFFFFFFFF;
3179         }
3180
3181         return TRUE;
3182 }
3183
3184 /**
3185  * SetFileAttributes
3186  * @name: name of file
3187  * @attrs: attributes to set
3188  *
3189  * Changes the attributes on a named file.
3190  *
3191  * Return value: %TRUE on success, %FALSE on failure.
3192  */
3193 extern gboolean SetFileAttributes (const gunichar2 *name, guint32 attrs)
3194 {
3195         /* FIXME: think of something clever to do on unix */
3196         gchar *utf8_name;
3197         struct stat buf;
3198         int result;
3199
3200         /*
3201          * Currently we only handle one *internal* case, with a value that is
3202          * not standard: 0x80000000, which means `set executable bit'
3203          */
3204         
3205         if (name == NULL) {
3206                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: name is NULL", __func__);
3207
3208                 SetLastError (ERROR_INVALID_NAME);
3209                 return(FALSE);
3210         }
3211
3212         utf8_name = mono_unicode_to_external (name);
3213         if (utf8_name == NULL) {
3214                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3215
3216                 SetLastError (ERROR_INVALID_NAME);
3217                 return FALSE;
3218         }
3219
3220         result = _wapi_stat (utf8_name, &buf);
3221         if (result == -1 && errno == ENOENT) {
3222                 /* Might be a dangling symlink... */
3223                 result = _wapi_lstat (utf8_name, &buf);
3224         }
3225
3226         if (result != 0) {
3227                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3228                 g_free (utf8_name);
3229                 return FALSE;
3230         }
3231
3232         /* Contrary to the documentation, ms allows NORMAL to be
3233          * specified along with other attributes, so dont bother to
3234          * catch that case here.
3235          */
3236         if (attrs & FILE_ATTRIBUTE_READONLY) {
3237                 result = _wapi_chmod (utf8_name, buf.st_mode & ~(S_IWUSR | S_IWOTH | S_IWGRP));
3238         } else {
3239                 result = _wapi_chmod (utf8_name, buf.st_mode | S_IWUSR);
3240         }
3241
3242         /* Ignore the other attributes for now */
3243
3244         if (attrs & 0x80000000){
3245                 mode_t exec_mask = 0;
3246
3247                 if ((buf.st_mode & S_IRUSR) != 0)
3248                         exec_mask |= S_IXUSR;
3249
3250                 if ((buf.st_mode & S_IRGRP) != 0)
3251                         exec_mask |= S_IXGRP;
3252
3253                 if ((buf.st_mode & S_IROTH) != 0)
3254                         exec_mask |= S_IXOTH;
3255
3256                 result = chmod (utf8_name, buf.st_mode | exec_mask);
3257         }
3258         /* Don't bother to reset executable (might need to change this
3259          * policy)
3260          */
3261         
3262         g_free (utf8_name);
3263
3264         return(TRUE);
3265 }
3266
3267 /**
3268  * GetCurrentDirectory
3269  * @length: size of the buffer
3270  * @buffer: pointer to buffer that recieves path
3271  *
3272  * Retrieves the current directory for the current process.
3273  *
3274  * Return value: number of characters in buffer on success, zero on failure
3275  */
3276 extern guint32 GetCurrentDirectory (guint32 length, gunichar2 *buffer)
3277 {
3278         gunichar2 *utf16_path;
3279         glong count;
3280         gsize bytes;
3281
3282 #ifdef __native_client__
3283         gchar *path = g_get_current_dir ();
3284         if (length < strlen(path) + 1 || path == NULL)
3285                 return 0;
3286         memcpy (buffer, path, strlen(path) + 1);
3287 #else
3288         if (getcwd ((char*)buffer, length) == NULL) {
3289                 if (errno == ERANGE) { /*buffer length is not big enough */ 
3290                         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*/
3291                         if (path == NULL)
3292                                 return 0;
3293                         utf16_path = mono_unicode_from_external (path, &bytes);
3294                         g_free (utf16_path);
3295                         g_free (path);
3296                         return (bytes/2)+1;
3297                 }
3298                 _wapi_set_last_error_from_errno ();
3299                 return 0;
3300         }
3301 #endif
3302
3303         utf16_path = mono_unicode_from_external ((gchar*)buffer, &bytes);
3304         count = (bytes/2)+1;
3305         g_assert (count <= length); /*getcwd must have failed before with ERANGE*/
3306
3307         /* Add the terminator */
3308         memset (buffer, '\0', bytes+2);
3309         memcpy (buffer, utf16_path, bytes);
3310         
3311         g_free (utf16_path);
3312
3313         return count;
3314 }
3315
3316 /**
3317  * SetCurrentDirectory
3318  * @path: path to new directory
3319  *
3320  * Changes the directory path for the current process.
3321  *
3322  * Return value: %TRUE on success, %FALSE on failure.
3323  */
3324 extern gboolean SetCurrentDirectory (const gunichar2 *path)
3325 {
3326         gchar *utf8_path;
3327         gboolean result;
3328
3329         if (path == NULL) {
3330                 SetLastError (ERROR_INVALID_PARAMETER);
3331                 return(FALSE);
3332         }
3333         
3334         utf8_path = mono_unicode_to_external (path);
3335         if (_wapi_chdir (utf8_path) != 0) {
3336                 _wapi_set_last_error_from_errno ();
3337                 result = FALSE;
3338         }
3339         else
3340                 result = TRUE;
3341
3342         g_free (utf8_path);
3343         return result;
3344 }
3345
3346 gboolean CreatePipe (gpointer *readpipe, gpointer *writepipe,
3347                      WapiSecurityAttributes *security G_GNUC_UNUSED, guint32 size)
3348 {
3349         struct _WapiHandle_file pipe_read_handle = {0};
3350         struct _WapiHandle_file pipe_write_handle = {0};
3351         gpointer read_handle;
3352         gpointer write_handle;
3353         int filedes[2];
3354         int ret;
3355         
3356         mono_once (&io_ops_once, io_ops_init);
3357         
3358         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Creating pipe", __func__);
3359
3360         ret=pipe (filedes);
3361         if(ret==-1) {
3362                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Error creating pipe: %s", __func__,
3363                            strerror (errno));
3364                 
3365                 _wapi_set_last_error_from_errno ();
3366                 return(FALSE);
3367         }
3368
3369         if (filedes[0] >= _wapi_fd_reserve ||
3370             filedes[1] >= _wapi_fd_reserve) {
3371                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: File descriptor is too big", __func__);
3372
3373                 SetLastError (ERROR_TOO_MANY_OPEN_FILES);
3374                 
3375                 close (filedes[0]);
3376                 close (filedes[1]);
3377                 
3378                 return(FALSE);
3379         }
3380         
3381         /* filedes[0] is open for reading, filedes[1] for writing */
3382
3383         pipe_read_handle.fd = filedes [0];
3384         pipe_read_handle.fileaccess = GENERIC_READ;
3385         read_handle = _wapi_handle_new_fd (WAPI_HANDLE_PIPE, filedes[0],
3386                                            &pipe_read_handle);
3387         if (read_handle == _WAPI_HANDLE_INVALID) {
3388                 g_warning ("%s: error creating pipe read handle", __func__);
3389                 close (filedes[0]);
3390                 close (filedes[1]);
3391                 SetLastError (ERROR_GEN_FAILURE);
3392                 
3393                 return(FALSE);
3394         }
3395         
3396         pipe_write_handle.fd = filedes [1];
3397         pipe_write_handle.fileaccess = GENERIC_WRITE;
3398         write_handle = _wapi_handle_new_fd (WAPI_HANDLE_PIPE, filedes[1],
3399                                             &pipe_write_handle);
3400         if (write_handle == _WAPI_HANDLE_INVALID) {
3401                 g_warning ("%s: error creating pipe write handle", __func__);
3402                 _wapi_handle_unref (read_handle);
3403                 
3404                 close (filedes[0]);
3405                 close (filedes[1]);
3406                 SetLastError (ERROR_GEN_FAILURE);
3407                 
3408                 return(FALSE);
3409         }
3410         
3411         *readpipe = read_handle;
3412         *writepipe = write_handle;
3413
3414         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: Returning pipe: read handle %p, write handle %p",
3415                    __func__, read_handle, write_handle);
3416
3417         return(TRUE);
3418 }
3419
3420 #ifdef HAVE_GETFSSTAT
3421 /* Darwin has getfsstat */
3422 gint32 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3423 {
3424         struct statfs *stats;
3425         int size, n, i;
3426         gunichar2 *dir;
3427         glong length, total = 0;
3428         
3429         n = getfsstat (NULL, 0, MNT_NOWAIT);
3430         if (n == -1)
3431                 return 0;
3432         size = n * sizeof (struct statfs);
3433         stats = (struct statfs *) g_malloc (size);
3434         if (stats == NULL)
3435                 return 0;
3436         if (getfsstat (stats, size, MNT_NOWAIT) == -1){
3437                 g_free (stats);
3438                 return 0;
3439         }
3440         for (i = 0; i < n; i++){
3441                 dir = g_utf8_to_utf16 (stats [i].f_mntonname, -1, NULL, &length, NULL);
3442                 if (total + length < len){
3443                         memcpy (buf + total, dir, sizeof (gunichar2) * length);
3444                         buf [total+length] = 0;
3445                 } 
3446                 g_free (dir);
3447                 total += length + 1;
3448         }
3449         if (total < len)
3450                 buf [total] = 0;
3451         total++;
3452         g_free (stats);
3453         return total;
3454 }
3455 #else
3456 /* In-place octal sequence replacement */
3457 static void
3458 unescape_octal (gchar *str)
3459 {
3460         gchar *rptr;
3461         gchar *wptr;
3462
3463         if (str == NULL)
3464                 return;
3465
3466         rptr = wptr = str;
3467         while (*rptr != '\0') {
3468                 if (*rptr == '\\') {
3469                         char c;
3470                         rptr++;
3471                         c = (*(rptr++) - '0') << 6;
3472                         c += (*(rptr++) - '0') << 3;
3473                         c += *(rptr++) - '0';
3474                         *wptr++ = c;
3475                 } else if (wptr != rptr) {
3476                         *wptr++ = *rptr++;
3477                 } else {
3478                         rptr++; wptr++;
3479                 }
3480         }
3481         *wptr = '\0';
3482 }
3483 static gint32 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf);
3484
3485 #if __linux__
3486 #define GET_LOGICAL_DRIVE_STRINGS_BUFFER 512
3487 #define GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER 512
3488 #define GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER 64
3489
3490 typedef struct 
3491 {
3492         glong total;
3493         guint32 buffer_index;
3494         guint32 mountpoint_index;
3495         guint32 field_number;
3496         guint32 allocated_size;
3497         guint32 fsname_index;
3498         guint32 fstype_index;
3499         gchar mountpoint [GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER + 1];
3500         gchar *mountpoint_allocated;
3501         gchar buffer [GET_LOGICAL_DRIVE_STRINGS_BUFFER];
3502         gchar fsname [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
3503         gchar fstype [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
3504         ssize_t nbytes;
3505         gchar delimiter;
3506         gboolean check_mount_source;
3507 } LinuxMountInfoParseState;
3508
3509 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3510 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3511 static void append_to_mountpoint (LinuxMountInfoParseState *state);
3512 static gboolean add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3513
3514 gint32 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3515 {
3516         int fd;
3517         gint32 ret = 0;
3518         LinuxMountInfoParseState state;
3519         gboolean (*parser)(guint32, gunichar2*, LinuxMountInfoParseState*) = NULL;
3520
3521         memset (buf, 0, len * sizeof (gunichar2));
3522         fd = open ("/proc/self/mountinfo", O_RDONLY);
3523         if (fd != -1)
3524                 parser = GetLogicalDriveStrings_MountInfo;
3525         else {
3526                 fd = open ("/proc/mounts", O_RDONLY);
3527                 if (fd != -1)
3528                         parser = GetLogicalDriveStrings_Mounts;
3529         }
3530
3531         if (!parser) {
3532                 ret = GetLogicalDriveStrings_Mtab (len, buf);
3533                 goto done_and_out;
3534         }
3535
3536         memset (&state, 0, sizeof (LinuxMountInfoParseState));
3537         state.field_number = 1;
3538         state.delimiter = ' ';
3539
3540         while ((state.nbytes = read (fd, state.buffer, GET_LOGICAL_DRIVE_STRINGS_BUFFER)) > 0) {
3541                 state.buffer_index = 0;
3542
3543                 while ((*parser)(len, buf, &state)) {
3544                         if (state.buffer [state.buffer_index] == '\n') {
3545                                 gboolean quit = add_drive_string (len, buf, &state);
3546                                 state.field_number = 1;
3547                                 state.buffer_index++;
3548                                 if (state.mountpoint_allocated) {
3549                                         g_free (state.mountpoint_allocated);
3550                                         state.mountpoint_allocated = NULL;
3551                                 }
3552                                 if (quit) {
3553                                         ret = state.total;
3554                                         goto done_and_out;
3555                                 }
3556                         }
3557                 }
3558         };
3559         ret = state.total;
3560
3561   done_and_out:
3562         if (fd != -1)
3563                 close (fd);
3564         return ret;
3565 }
3566
3567 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3568 {
3569         gchar *ptr;
3570
3571         if (state->field_number == 1)
3572                 state->check_mount_source = TRUE;
3573
3574         while (state->buffer_index < (guint32)state->nbytes) {
3575                 if (state->buffer [state->buffer_index] == state->delimiter) {
3576                         state->field_number++;
3577                         switch (state->field_number) {
3578                                 case 2:
3579                                         state->mountpoint_index = 0;
3580                                         break;
3581
3582                                 case 3:
3583                                         if (state->mountpoint_allocated)
3584                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
3585                                         else
3586                                                 state->mountpoint [state->mountpoint_index] = 0;
3587                                         break;
3588
3589                                 default:
3590                                         ptr = (gchar*)memchr (state->buffer + state->buffer_index, '\n', GET_LOGICAL_DRIVE_STRINGS_BUFFER - state->buffer_index);
3591                                         if (ptr)
3592                                                 state->buffer_index = (ptr - (gchar*)state->buffer) - 1;
3593                                         else
3594                                                 state->buffer_index = state->nbytes;
3595                                         return TRUE;
3596                         }
3597                         state->buffer_index++;
3598                         continue;
3599                 } else if (state->buffer [state->buffer_index] == '\n')
3600                         return TRUE;
3601
3602                 switch (state->field_number) {
3603                         case 1:
3604                                 if (state->check_mount_source) {
3605                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
3606                                                 /* We can ignore the rest, it's a device
3607                                                  * path */
3608                                                 state->check_mount_source = FALSE;
3609                                                 state->fsname [state->fsname_index++] = '/';
3610                                                 break;
3611                                         }
3612                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3613                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
3614                                 }
3615                                 break;
3616
3617                         case 2:
3618                                 append_to_mountpoint (state);
3619                                 break;
3620
3621                         case 3:
3622                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3623                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
3624                                 break;
3625                 }
3626
3627                 state->buffer_index++;
3628         }
3629
3630         return FALSE;
3631 }
3632
3633 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3634 {
3635         while (state->buffer_index < (guint32)state->nbytes) {
3636                 if (state->buffer [state->buffer_index] == state->delimiter) {
3637                         state->field_number++;
3638                         switch (state->field_number) {
3639                                 case 5:
3640                                         state->mountpoint_index = 0;
3641                                         break;
3642
3643                                 case 6:
3644                                         if (state->mountpoint_allocated)
3645                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
3646                                         else
3647                                                 state->mountpoint [state->mountpoint_index] = 0;
3648                                         break;
3649
3650                                 case 7:
3651                                         state->delimiter = '-';
3652                                         break;
3653
3654                                 case 8:
3655                                         state->delimiter = ' ';
3656                                         break;
3657
3658                                 case 10:
3659                                         state->check_mount_source = TRUE;
3660                                         break;
3661                         }
3662                         state->buffer_index++;
3663                         continue;
3664                 } else if (state->buffer [state->buffer_index] == '\n')
3665                         return TRUE;
3666
3667                 switch (state->field_number) {
3668                         case 5:
3669                                 append_to_mountpoint (state);
3670                                 break;
3671
3672                         case 9:
3673                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3674                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
3675                                 break;
3676
3677                         case 10:
3678                                 if (state->check_mount_source) {
3679                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
3680                                                 /* We can ignore the rest, it's a device
3681                                                  * path */
3682                                                 state->check_mount_source = FALSE;
3683                                                 state->fsname [state->fsname_index++] = '/';
3684                                                 break;
3685                                         }
3686                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3687                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
3688                                 }
3689                                 break;
3690                 }
3691
3692                 state->buffer_index++;
3693         }
3694
3695         return FALSE;
3696 }
3697
3698 static void
3699 append_to_mountpoint (LinuxMountInfoParseState *state)
3700 {
3701         gchar ch = state->buffer [state->buffer_index];
3702         if (state->mountpoint_allocated) {
3703                 if (state->mountpoint_index >= state->allocated_size) {
3704                         guint32 newsize = (state->allocated_size << 1) + 1;
3705                         gchar *newbuf = (gchar *)g_malloc0 (newsize * sizeof (gchar));
3706
3707                         memcpy (newbuf, state->mountpoint_allocated, state->mountpoint_index);
3708                         g_free (state->mountpoint_allocated);
3709                         state->mountpoint_allocated = newbuf;
3710                         state->allocated_size = newsize;
3711                 }
3712                 state->mountpoint_allocated [state->mountpoint_index++] = ch;
3713         } else {
3714                 if (state->mountpoint_index >= GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER) {
3715                         state->allocated_size = (state->mountpoint_index << 1) + 1;
3716                         state->mountpoint_allocated = (gchar *)g_malloc0 (state->allocated_size * sizeof (gchar));
3717                         memcpy (state->mountpoint_allocated, state->mountpoint, state->mountpoint_index);
3718                         state->mountpoint_allocated [state->mountpoint_index++] = ch;
3719                 } else
3720                         state->mountpoint [state->mountpoint_index++] = ch;
3721         }
3722 }
3723
3724 static gboolean
3725 add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3726 {
3727         gboolean quit = FALSE;
3728         gboolean ignore_entry;
3729
3730         if (state->fsname_index == 1 && state->fsname [0] == '/')
3731                 ignore_entry = FALSE;
3732         else if (state->fsname_index == 0 || memcmp ("none", state->fsname, state->fsname_index) == 0)
3733                 ignore_entry = TRUE;
3734         else if (state->fstype_index >= 5 && memcmp ("fuse.", state->fstype, 5) == 0) {
3735                 /* Ignore GNOME's gvfs */
3736                 if (state->fstype_index == 21 && memcmp ("fuse.gvfs-fuse-daemon", state->fstype, state->fstype_index) == 0)
3737                         ignore_entry = TRUE;
3738                 else
3739                         ignore_entry = FALSE;
3740         } else if (state->fstype_index == 3 && memcmp ("nfs", state->fstype, state->fstype_index) == 0)
3741                 ignore_entry = FALSE;
3742         else
3743                 ignore_entry = TRUE;
3744
3745         if (!ignore_entry) {
3746                 gunichar2 *dir;
3747                 glong length;
3748                 gchar *mountpoint = state->mountpoint_allocated ? state->mountpoint_allocated : state->mountpoint;
3749
3750                 unescape_octal (mountpoint);
3751                 dir = g_utf8_to_utf16 (mountpoint, -1, NULL, &length, NULL);
3752                 if (state->total + length + 1 > len) {
3753                         quit = TRUE;
3754                         state->total = len * 2;
3755                 } else {
3756                         length++;
3757                         memcpy (buf + state->total, dir, sizeof (gunichar2) * length);
3758                         state->total += length;
3759                 }
3760                 g_free (dir);
3761         }
3762         state->fsname_index = 0;
3763         state->fstype_index = 0;
3764
3765         return quit;
3766 }
3767 #else
3768 gint32
3769 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3770 {
3771         return GetLogicalDriveStrings_Mtab (len, buf);
3772 }
3773 #endif
3774 static gint32
3775 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf)
3776 {
3777         FILE *fp;
3778         gunichar2 *ptr, *dir;
3779         glong length, total = 0;
3780         gchar buffer [512];
3781         gchar **splitted;
3782
3783         memset (buf, 0, sizeof (gunichar2) * (len + 1)); 
3784         buf [0] = '/';
3785         buf [1] = 0;
3786         buf [2] = 0;
3787
3788         /* Sigh, mntent and friends don't work well.
3789          * It stops on the first line that doesn't begin with a '/'.
3790          * (linux 2.6.5, libc 2.3.2.ds1-12) - Gonz */
3791         fp = fopen ("/etc/mtab", "rt");
3792         if (fp == NULL) {
3793                 fp = fopen ("/etc/mnttab", "rt");
3794                 if (fp == NULL)
3795                         return 1;
3796         }
3797
3798         ptr = buf;
3799         while (fgets (buffer, 512, fp) != NULL) {
3800                 if (*buffer != '/')
3801                         continue;
3802
3803                 splitted = g_strsplit (buffer, " ", 0);
3804                 if (!*splitted || !*(splitted + 1)) {
3805                         g_strfreev (splitted);
3806                         continue;
3807                 }
3808
3809                 unescape_octal (*(splitted + 1));
3810                 dir = g_utf8_to_utf16 (*(splitted + 1), -1, NULL, &length, NULL);
3811                 g_strfreev (splitted);
3812                 if (total + length + 1 > len) {
3813                         fclose (fp);
3814                         g_free (dir);
3815                         return len * 2; /* guess */
3816                 }
3817
3818                 memcpy (ptr + total, dir, sizeof (gunichar2) * length);
3819                 g_free (dir);
3820                 total += length + 1;
3821         }
3822
3823         fclose (fp);
3824         return total;
3825 /* Commented out, does not work with my mtab!!! - Gonz */
3826 #ifdef NOTENABLED /* HAVE_MNTENT_H */
3827 {
3828         FILE *fp;
3829         struct mntent *mnt;
3830         gunichar2 *ptr, *dir;
3831         glong len, total = 0;
3832         
3833
3834         fp = setmntent ("/etc/mtab", "rt");
3835         if (fp == NULL) {
3836                 fp = setmntent ("/etc/mnttab", "rt");
3837                 if (fp == NULL)
3838                         return;
3839         }
3840
3841         ptr = buf;
3842         while ((mnt = getmntent (fp)) != NULL) {
3843                 g_print ("GOT %s\n", mnt->mnt_dir);
3844                 dir = g_utf8_to_utf16 (mnt->mnt_dir, &len, NULL, NULL, NULL);
3845                 if (total + len + 1 > len) {
3846                         return len * 2; /* guess */
3847                 }
3848
3849                 memcpy (ptr + total, dir, sizeof (gunichar2) * len);
3850                 g_free (dir);
3851                 total += len + 1;
3852         }
3853
3854         endmntent (fp);
3855         return total;
3856 }
3857 #endif
3858 }
3859 #endif
3860
3861 #if defined(HAVE_STATVFS) || defined(HAVE_STATFS)
3862 gboolean GetDiskFreeSpaceEx(const gunichar2 *path_name, WapiULargeInteger *free_bytes_avail,
3863                             WapiULargeInteger *total_number_of_bytes,
3864                             WapiULargeInteger *total_number_of_free_bytes)
3865 {
3866 #ifdef HAVE_STATVFS
3867         struct statvfs fsstat;
3868 #elif defined(HAVE_STATFS)
3869         struct statfs fsstat;
3870 #endif
3871         gboolean isreadonly;
3872         gchar *utf8_path_name;
3873         int ret;
3874         unsigned long block_size;
3875
3876         if (path_name == NULL) {
3877                 utf8_path_name = g_strdup (g_get_current_dir());
3878                 if (utf8_path_name == NULL) {
3879                         SetLastError (ERROR_DIRECTORY);
3880                         return(FALSE);
3881                 }
3882         }
3883         else {
3884                 utf8_path_name = mono_unicode_to_external (path_name);
3885                 if (utf8_path_name == NULL) {
3886                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
3887
3888                         SetLastError (ERROR_INVALID_NAME);
3889                         return(FALSE);
3890                 }
3891         }
3892
3893         do {
3894 #ifdef HAVE_STATVFS
3895                 ret = statvfs (utf8_path_name, &fsstat);
3896                 isreadonly = ((fsstat.f_flag & ST_RDONLY) == ST_RDONLY);
3897                 block_size = fsstat.f_frsize;
3898 #elif defined(HAVE_STATFS)
3899                 ret = statfs (utf8_path_name, &fsstat);
3900 #if defined (MNT_RDONLY)
3901                 isreadonly = ((fsstat.f_flags & MNT_RDONLY) == MNT_RDONLY);
3902 #elif defined (MS_RDONLY)
3903                 isreadonly = ((fsstat.f_flags & MS_RDONLY) == MS_RDONLY);
3904 #endif
3905                 block_size = fsstat.f_bsize;
3906 #endif
3907         } while(ret == -1 && errno == EINTR);
3908
3909         g_free(utf8_path_name);
3910
3911         if (ret == -1) {
3912                 _wapi_set_last_error_from_errno ();
3913                 MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: statvfs failed: %s", __func__, strerror (errno));
3914                 return(FALSE);
3915         }
3916
3917         /* total number of free bytes for non-root */
3918         if (free_bytes_avail != NULL) {
3919                 if (isreadonly) {
3920                         free_bytes_avail->QuadPart = 0;
3921                 }
3922                 else {
3923                         free_bytes_avail->QuadPart = block_size * (guint64)fsstat.f_bavail;
3924                 }
3925         }
3926
3927         /* total number of bytes available for non-root */
3928         if (total_number_of_bytes != NULL) {
3929                 total_number_of_bytes->QuadPart = block_size * (guint64)fsstat.f_blocks;
3930         }
3931
3932         /* total number of bytes available for root */
3933         if (total_number_of_free_bytes != NULL) {
3934                 if (isreadonly) {
3935                         total_number_of_free_bytes->QuadPart = 0;
3936                 }
3937                 else {
3938                         total_number_of_free_bytes->QuadPart = block_size * (guint64)fsstat.f_bfree;
3939                 }
3940         }
3941         
3942         return(TRUE);
3943 }
3944 #else
3945 gboolean GetDiskFreeSpaceEx(const gunichar2 *path_name, WapiULargeInteger *free_bytes_avail,
3946                             WapiULargeInteger *total_number_of_bytes,
3947                             WapiULargeInteger *total_number_of_free_bytes)
3948 {
3949         if (free_bytes_avail != NULL) {
3950                 free_bytes_avail->QuadPart = (guint64) -1;
3951         }
3952
3953         if (total_number_of_bytes != NULL) {
3954                 total_number_of_bytes->QuadPart = (guint64) -1;
3955         }
3956
3957         if (total_number_of_free_bytes != NULL) {
3958                 total_number_of_free_bytes->QuadPart = (guint64) -1;
3959         }
3960
3961         return(TRUE);
3962 }
3963 #endif
3964
3965 /*
3966  * General Unix support
3967  */
3968 typedef struct {
3969         guint32 drive_type;
3970 #if __linux__
3971         const long fstypeid;
3972 #endif
3973         const gchar* fstype;
3974 } _wapi_drive_type;
3975
3976 static _wapi_drive_type _wapi_drive_types[] = {
3977 #if PLATFORM_MACOSX
3978         { DRIVE_REMOTE, "afp" },
3979         { DRIVE_REMOTE, "autofs" },
3980         { DRIVE_CDROM, "cddafs" },
3981         { DRIVE_CDROM, "cd9660" },
3982         { DRIVE_RAMDISK, "devfs" },
3983         { DRIVE_FIXED, "exfat" },
3984         { DRIVE_RAMDISK, "fdesc" },
3985         { DRIVE_REMOTE, "ftp" },
3986         { DRIVE_FIXED, "hfs" },
3987         { DRIVE_FIXED, "msdos" },
3988         { DRIVE_REMOTE, "nfs" },
3989         { DRIVE_FIXED, "ntfs" },
3990         { DRIVE_REMOTE, "smbfs" },
3991         { DRIVE_FIXED, "udf" },
3992         { DRIVE_REMOTE, "webdav" },
3993         { DRIVE_UNKNOWN, NULL }
3994 #elif __linux__
3995         { DRIVE_FIXED, ADFS_SUPER_MAGIC, "adfs"},
3996         { DRIVE_FIXED, AFFS_SUPER_MAGIC, "affs"},
3997         { DRIVE_REMOTE, AFS_SUPER_MAGIC, "afs"},
3998         { DRIVE_RAMDISK, AUTOFS_SUPER_MAGIC, "autofs"},
3999         { DRIVE_RAMDISK, AUTOFS_SBI_MAGIC, "autofs4"},
4000         { DRIVE_REMOTE, CODA_SUPER_MAGIC, "coda" },
4001         { DRIVE_RAMDISK, CRAMFS_MAGIC, "cramfs"},
4002         { DRIVE_RAMDISK, CRAMFS_MAGIC_WEND, "cramfs"},
4003         { DRIVE_REMOTE, CIFS_MAGIC_NUMBER, "cifs"},
4004         { DRIVE_RAMDISK, DEBUGFS_MAGIC, "debugfs"},
4005         { DRIVE_RAMDISK, SYSFS_MAGIC, "sysfs"},
4006         { DRIVE_RAMDISK, SECURITYFS_MAGIC, "securityfs"},
4007         { DRIVE_RAMDISK, SELINUX_MAGIC, "selinuxfs"},
4008         { DRIVE_RAMDISK, RAMFS_MAGIC, "ramfs"},
4009         { DRIVE_FIXED, SQUASHFS_MAGIC, "squashfs"},
4010         { DRIVE_FIXED, EFS_SUPER_MAGIC, "efs"},
4011         { DRIVE_FIXED, EXT2_SUPER_MAGIC, "ext"},
4012         { DRIVE_FIXED, EXT3_SUPER_MAGIC, "ext"},
4013         { DRIVE_FIXED, EXT4_SUPER_MAGIC, "ext"},
4014         { DRIVE_REMOTE, XENFS_SUPER_MAGIC, "xenfs"},
4015         { DRIVE_FIXED, BTRFS_SUPER_MAGIC, "btrfs"},
4016         { DRIVE_FIXED, HFS_SUPER_MAGIC, "hfs"},
4017         { DRIVE_FIXED, HFSPLUS_SUPER_MAGIC, "hfsplus"},
4018         { DRIVE_FIXED, HPFS_SUPER_MAGIC, "hpfs"},
4019         { DRIVE_RAMDISK, HUGETLBFS_MAGIC, "hugetlbfs"},
4020         { DRIVE_CDROM, ISOFS_SUPER_MAGIC, "iso"},
4021         { DRIVE_FIXED, JFFS2_SUPER_MAGIC, "jffs2"},
4022         { DRIVE_RAMDISK, ANON_INODE_FS_MAGIC, "anon_inode"},
4023         { DRIVE_FIXED, JFS_SUPER_MAGIC, "jfs"},
4024         { DRIVE_FIXED, MINIX_SUPER_MAGIC, "minix"},
4025         { DRIVE_FIXED, MINIX_SUPER_MAGIC2, "minix v2"},
4026         { DRIVE_FIXED, MINIX2_SUPER_MAGIC, "minix2"},
4027         { DRIVE_FIXED, MINIX2_SUPER_MAGIC2, "minix2 v2"},
4028         { DRIVE_FIXED, MINIX3_SUPER_MAGIC, "minix3"},
4029         { DRIVE_FIXED, MSDOS_SUPER_MAGIC, "msdos"},
4030         { DRIVE_REMOTE, NCP_SUPER_MAGIC, "ncp"},
4031         { DRIVE_REMOTE, NFS_SUPER_MAGIC, "nfs"},
4032         { DRIVE_FIXED, NTFS_SB_MAGIC, "ntfs"},
4033         { DRIVE_RAMDISK, OPENPROM_SUPER_MAGIC, "openpromfs"},
4034         { DRIVE_RAMDISK, PROC_SUPER_MAGIC, "proc"},
4035         { DRIVE_FIXED, QNX4_SUPER_MAGIC, "qnx4"},
4036         { DRIVE_FIXED, REISERFS_SUPER_MAGIC, "reiserfs"},
4037         { DRIVE_RAMDISK, ROMFS_MAGIC, "romfs"},
4038         { DRIVE_REMOTE, SMB_SUPER_MAGIC, "samba"},
4039         { DRIVE_RAMDISK, CGROUP_SUPER_MAGIC, "cgroupfs"},
4040         { DRIVE_RAMDISK, FUTEXFS_SUPER_MAGIC, "futexfs"},
4041         { DRIVE_FIXED, SYSV2_SUPER_MAGIC, "sysv2"},
4042         { DRIVE_FIXED, SYSV4_SUPER_MAGIC, "sysv4"},
4043         { DRIVE_RAMDISK, TMPFS_MAGIC, "tmpfs"},
4044         { DRIVE_RAMDISK, DEVPTS_SUPER_MAGIC, "devpts"},
4045         { DRIVE_CDROM, UDF_SUPER_MAGIC, "udf"},
4046         { DRIVE_FIXED, UFS_MAGIC, "ufs"},
4047         { DRIVE_FIXED, UFS_MAGIC_BW, "ufs"},
4048         { DRIVE_FIXED, UFS2_MAGIC, "ufs2"},
4049         { DRIVE_FIXED, UFS_CIGAM, "ufs"},
4050         { DRIVE_RAMDISK, USBDEVICE_SUPER_MAGIC, "usbdev"},
4051         { DRIVE_FIXED, XENIX_SUPER_MAGIC, "xenix"},
4052         { DRIVE_FIXED, XFS_SB_MAGIC, "xfs"},
4053         { DRIVE_RAMDISK, FUSE_SUPER_MAGIC, "fuse"},
4054         { DRIVE_FIXED, V9FS_MAGIC, "9p"},
4055         { DRIVE_REMOTE, CEPH_SUPER_MAGIC, "ceph"},
4056         { DRIVE_RAMDISK, CONFIGFS_MAGIC, "configfs"},
4057         { DRIVE_RAMDISK, ECRYPTFS_SUPER_MAGIC, "eCryptfs"},
4058         { DRIVE_FIXED, EXOFS_SUPER_MAGIC, "exofs"},
4059         { DRIVE_FIXED, VXFS_SUPER_MAGIC, "vxfs"},
4060         { DRIVE_FIXED, VXFS_OLT_MAGIC, "vxfs_olt"},
4061         { DRIVE_REMOTE, GFS2_MAGIC, "gfs2"},
4062         { DRIVE_FIXED, LOGFS_MAGIC_U32, "logfs"},
4063         { DRIVE_FIXED, OCFS2_SUPER_MAGIC, "ocfs2"},
4064         { DRIVE_FIXED, OMFS_MAGIC, "omfs"},
4065         { DRIVE_FIXED, UBIFS_SUPER_MAGIC, "ubifs"},
4066         { DRIVE_UNKNOWN, 0, NULL}
4067 #else
4068         { DRIVE_RAMDISK, "ramfs"      },
4069         { DRIVE_RAMDISK, "tmpfs"      },
4070         { DRIVE_RAMDISK, "proc"       },
4071         { DRIVE_RAMDISK, "sysfs"      },
4072         { DRIVE_RAMDISK, "debugfs"    },
4073         { DRIVE_RAMDISK, "devpts"     },
4074         { DRIVE_RAMDISK, "securityfs" },
4075         { DRIVE_CDROM,   "iso9660"    },
4076         { DRIVE_FIXED,   "ext2"       },
4077         { DRIVE_FIXED,   "ext3"       },
4078         { DRIVE_FIXED,   "ext4"       },
4079         { DRIVE_FIXED,   "sysv"       },
4080         { DRIVE_FIXED,   "reiserfs"   },
4081         { DRIVE_FIXED,   "ufs"        },
4082         { DRIVE_FIXED,   "vfat"       },
4083         { DRIVE_FIXED,   "msdos"      },
4084         { DRIVE_FIXED,   "udf"        },
4085         { DRIVE_FIXED,   "hfs"        },
4086         { DRIVE_FIXED,   "hpfs"       },
4087         { DRIVE_FIXED,   "qnx4"       },
4088         { DRIVE_FIXED,   "ntfs"       },
4089         { DRIVE_FIXED,   "ntfs-3g"    },
4090         { DRIVE_REMOTE,  "smbfs"      },
4091         { DRIVE_REMOTE,  "fuse"       },
4092         { DRIVE_REMOTE,  "nfs"        },
4093         { DRIVE_REMOTE,  "nfs4"       },
4094         { DRIVE_REMOTE,  "cifs"       },
4095         { DRIVE_REMOTE,  "ncpfs"      },
4096         { DRIVE_REMOTE,  "coda"       },
4097         { DRIVE_REMOTE,  "afs"        },
4098         { DRIVE_UNKNOWN, NULL         }
4099 #endif
4100 };
4101
4102 #if __linux__
4103 static guint32 _wapi_get_drive_type(long f_type)
4104 {
4105         _wapi_drive_type *current;
4106
4107         current = &_wapi_drive_types[0];
4108         while (current->drive_type != DRIVE_UNKNOWN) {
4109                 if (current->fstypeid == f_type)
4110                         return current->drive_type;
4111                 current++;
4112         }
4113
4114         return DRIVE_UNKNOWN;
4115 }
4116 #else
4117 static guint32 _wapi_get_drive_type(const gchar* fstype)
4118 {
4119         _wapi_drive_type *current;
4120
4121         current = &_wapi_drive_types[0];
4122         while (current->drive_type != DRIVE_UNKNOWN) {
4123                 if (strcmp (current->fstype, fstype) == 0)
4124                         break;
4125
4126                 current++;
4127         }
4128         
4129         return current->drive_type;
4130 }
4131 #endif
4132
4133 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4134 static guint32
4135 GetDriveTypeFromPath (const char *utf8_root_path_name)
4136 {
4137         struct statfs buf;
4138         
4139         if (statfs (utf8_root_path_name, &buf) == -1)
4140                 return DRIVE_UNKNOWN;
4141 #if PLATFORM_MACOSX
4142         return _wapi_get_drive_type (buf.f_fstypename);
4143 #else
4144         return _wapi_get_drive_type (buf.f_type);
4145 #endif
4146 }
4147 #else
4148 static guint32
4149 GetDriveTypeFromPath (const gchar *utf8_root_path_name)
4150 {
4151         guint32 drive_type;
4152         FILE *fp;
4153         gchar buffer [512];
4154         gchar **splitted;
4155
4156         fp = fopen ("/etc/mtab", "rt");
4157         if (fp == NULL) {
4158                 fp = fopen ("/etc/mnttab", "rt");
4159                 if (fp == NULL) 
4160                         return(DRIVE_UNKNOWN);
4161         }
4162
4163         drive_type = DRIVE_NO_ROOT_DIR;
4164         while (fgets (buffer, 512, fp) != NULL) {
4165                 splitted = g_strsplit (buffer, " ", 0);
4166                 if (!*splitted || !*(splitted + 1) || !*(splitted + 2)) {
4167                         g_strfreev (splitted);
4168                         continue;
4169                 }
4170
4171                 /* compare given root_path_name with the one from mtab, 
4172                   if length of utf8_root_path_name is zero it must be the root dir */
4173                 if (strcmp (*(splitted + 1), utf8_root_path_name) == 0 ||
4174                     (strcmp (*(splitted + 1), "/") == 0 && strlen (utf8_root_path_name) == 0)) {
4175                         drive_type = _wapi_get_drive_type (*(splitted + 2));
4176                         /* it is possible this path might be mounted again with
4177                            a known type...keep looking */
4178                         if (drive_type != DRIVE_UNKNOWN) {
4179                                 g_strfreev (splitted);
4180                                 break;
4181                         }
4182                 }
4183
4184                 g_strfreev (splitted);
4185         }
4186
4187         fclose (fp);
4188         return drive_type;
4189 }
4190 #endif
4191
4192 guint32 GetDriveType(const gunichar2 *root_path_name)
4193 {
4194         gchar *utf8_root_path_name;
4195         guint32 drive_type;
4196
4197         if (root_path_name == NULL) {
4198                 utf8_root_path_name = g_strdup (g_get_current_dir());
4199                 if (utf8_root_path_name == NULL) {
4200                         return(DRIVE_NO_ROOT_DIR);
4201                 }
4202         }
4203         else {
4204                 utf8_root_path_name = mono_unicode_to_external (root_path_name);
4205                 if (utf8_root_path_name == NULL) {
4206                         MONO_TRACE (G_LOG_LEVEL_DEBUG, MONO_TRACE_IO_LAYER, "%s: unicode conversion returned NULL", __func__);
4207                         return(DRIVE_NO_ROOT_DIR);
4208                 }
4209                 
4210                 /* strip trailing slash for compare below */
4211                 if (g_str_has_suffix(utf8_root_path_name, "/") && utf8_root_path_name [1] != 0) {
4212                         utf8_root_path_name[strlen(utf8_root_path_name) - 1] = 0;
4213                 }
4214         }
4215         drive_type = GetDriveTypeFromPath (utf8_root_path_name);
4216         g_free (utf8_root_path_name);
4217
4218         return (drive_type);
4219 }
4220
4221 #if defined (PLATFORM_MACOSX) || defined (__linux__) || defined(PLATFORM_BSD) || defined(__native_client__) || defined(__FreeBSD_kernel__)
4222 static gchar*
4223 get_fstypename (gchar *utfpath)
4224 {
4225 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4226         struct statfs stat;
4227 #if __linux__
4228         _wapi_drive_type *current;
4229 #endif
4230         if (statfs (utfpath, &stat) == -1)
4231                 return NULL;
4232 #if PLATFORM_MACOSX
4233         return g_strdup (stat.f_fstypename);
4234 #else
4235         current = &_wapi_drive_types[0];
4236         while (current->drive_type != DRIVE_UNKNOWN) {
4237                 if (stat.f_type == current->fstypeid)
4238                         return g_strdup (current->fstype);
4239                 current++;
4240         }
4241         return NULL;
4242 #endif
4243 #else
4244         return NULL;
4245 #endif
4246 }
4247
4248 /* Linux has struct statfs which has a different layout */
4249 gboolean
4250 GetVolumeInformation (const gunichar2 *path, gunichar2 *volumename, int volumesize, int *outserial, int *maxcomp, int *fsflags, gunichar2 *fsbuffer, int fsbuffersize)
4251 {
4252         gchar *utfpath;
4253         gchar *fstypename;
4254         gboolean status = FALSE;
4255         glong len;
4256         
4257         // We only support getting the file system type
4258         if (fsbuffer == NULL)
4259                 return 0;
4260         
4261         utfpath = mono_unicode_to_external (path);
4262         if ((fstypename = get_fstypename (utfpath)) != NULL){
4263                 gunichar2 *ret = g_utf8_to_utf16 (fstypename, -1, NULL, &len, NULL);
4264                 if (ret != NULL && len < fsbuffersize){
4265                         memcpy (fsbuffer, ret, len * sizeof (gunichar2));
4266                         fsbuffer [len] = 0;
4267                         status = TRUE;
4268                 }
4269                 if (ret != NULL)
4270                         g_free (ret);
4271                 g_free (fstypename);
4272         }
4273         g_free (utfpath);
4274         return status;
4275 }
4276 #endif
4277
4278
4279 void
4280 _wapi_io_init (void)
4281 {
4282         mono_os_mutex_init (&stdhandle_mutex);
4283 }