[utils] Move mutex and semaphore to mono_os_*
[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/utils/strenc.h>
46 #include <mono/utils/mono-once.h>
47
48 #if 0
49 #define DEBUG(...) g_message(__VA_ARGS__)
50 #define DEBUG_ENABLED 1
51 #else
52 #define DEBUG(...)
53 #endif
54
55 static void file_close (gpointer handle, gpointer data);
56 static WapiFileType file_getfiletype(void);
57 static gboolean file_read(gpointer handle, gpointer buffer,
58                           guint32 numbytes, guint32 *bytesread,
59                           WapiOverlapped *overlapped);
60 static gboolean file_write(gpointer handle, gconstpointer buffer,
61                            guint32 numbytes, guint32 *byteswritten,
62                            WapiOverlapped *overlapped);
63 static gboolean file_flush(gpointer handle);
64 static guint32 file_seek(gpointer handle, gint32 movedistance,
65                          gint32 *highmovedistance, WapiSeekMethod method);
66 static gboolean file_setendoffile(gpointer handle);
67 static guint32 file_getfilesize(gpointer handle, guint32 *highsize);
68 static gboolean file_getfiletime(gpointer handle, WapiFileTime *create_time,
69                                  WapiFileTime *last_access,
70                                  WapiFileTime *last_write);
71 static gboolean file_setfiletime(gpointer handle,
72                                  const WapiFileTime *create_time,
73                                  const WapiFileTime *last_access,
74                                  const WapiFileTime *last_write);
75 static guint32 GetDriveTypeFromPath (const gchar *utf8_root_path_name);
76
77 /* File handle is only signalled for overlapped IO */
78 struct _WapiHandleOps _wapi_file_ops = {
79         file_close,             /* close */
80         NULL,                   /* signal */
81         NULL,                   /* own */
82         NULL,                   /* is_owned */
83         NULL,                   /* special_wait */
84         NULL                    /* prewait */
85 };
86
87 void _wapi_file_details (gpointer handle_info)
88 {
89         struct _WapiHandle_file *file = (struct _WapiHandle_file *)handle_info;
90         
91         g_print ("[%20s] acc: %c%c%c, shr: %c%c%c, attrs: %5u",
92                  file->filename,
93                  file->fileaccess&GENERIC_READ?'R':'.',
94                  file->fileaccess&GENERIC_WRITE?'W':'.',
95                  file->fileaccess&GENERIC_EXECUTE?'X':'.',
96                  file->sharemode&FILE_SHARE_READ?'R':'.',
97                  file->sharemode&FILE_SHARE_WRITE?'W':'.',
98                  file->sharemode&FILE_SHARE_DELETE?'D':'.',
99                  file->attrs);
100 }
101
102 static void console_close (gpointer handle, gpointer data);
103 static WapiFileType console_getfiletype(void);
104 static gboolean console_read(gpointer handle, gpointer buffer,
105                              guint32 numbytes, guint32 *bytesread,
106                              WapiOverlapped *overlapped);
107 static gboolean console_write(gpointer handle, gconstpointer buffer,
108                               guint32 numbytes, guint32 *byteswritten,
109                               WapiOverlapped *overlapped);
110
111 /* Console is mostly the same as file, except it can block waiting for
112  * input or output
113  */
114 struct _WapiHandleOps _wapi_console_ops = {
115         console_close,          /* close */
116         NULL,                   /* signal */
117         NULL,                   /* own */
118         NULL,                   /* is_owned */
119         NULL,                   /* special_wait */
120         NULL                    /* prewait */
121 };
122
123 void _wapi_console_details (gpointer handle_info)
124 {
125         _wapi_file_details (handle_info);
126 }
127
128 /* Find handle has no ops.
129  */
130 struct _WapiHandleOps _wapi_find_ops = {
131         NULL,                   /* close */
132         NULL,                   /* signal */
133         NULL,                   /* own */
134         NULL,                   /* is_owned */
135         NULL,                   /* special_wait */
136         NULL                    /* prewait */
137 };
138
139 static void pipe_close (gpointer handle, gpointer data);
140 static WapiFileType pipe_getfiletype (void);
141 static gboolean pipe_read (gpointer handle, gpointer buffer, guint32 numbytes,
142                            guint32 *bytesread, WapiOverlapped *overlapped);
143 static gboolean pipe_write (gpointer handle, gconstpointer buffer,
144                             guint32 numbytes, guint32 *byteswritten,
145                             WapiOverlapped *overlapped);
146
147 /* Pipe handles
148  */
149 struct _WapiHandleOps _wapi_pipe_ops = {
150         pipe_close,             /* close */
151         NULL,                   /* signal */
152         NULL,                   /* own */
153         NULL,                   /* is_owned */
154         NULL,                   /* special_wait */
155         NULL                    /* prewait */
156 };
157
158 void _wapi_pipe_details (gpointer handle_info)
159 {
160         _wapi_file_details (handle_info);
161 }
162
163 static const struct {
164         /* File, console and pipe handles */
165         WapiFileType (*getfiletype)(void);
166         
167         /* File, console and pipe handles */
168         gboolean (*readfile)(gpointer handle, gpointer buffer,
169                              guint32 numbytes, guint32 *bytesread,
170                              WapiOverlapped *overlapped);
171         gboolean (*writefile)(gpointer handle, gconstpointer buffer,
172                               guint32 numbytes, guint32 *byteswritten,
173                               WapiOverlapped *overlapped);
174         gboolean (*flushfile)(gpointer handle);
175         
176         /* File handles */
177         guint32 (*seek)(gpointer handle, gint32 movedistance,
178                         gint32 *highmovedistance, WapiSeekMethod method);
179         gboolean (*setendoffile)(gpointer handle);
180         guint32 (*getfilesize)(gpointer handle, guint32 *highsize);
181         gboolean (*getfiletime)(gpointer handle, WapiFileTime *create_time,
182                                 WapiFileTime *last_access,
183                                 WapiFileTime *last_write);
184         gboolean (*setfiletime)(gpointer handle,
185                                 const WapiFileTime *create_time,
186                                 const WapiFileTime *last_access,
187                                 const WapiFileTime *last_write);
188 } io_ops[WAPI_HANDLE_COUNT]={
189         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
190         /* file */
191         {file_getfiletype,
192          file_read, file_write,
193          file_flush, file_seek,
194          file_setendoffile,
195          file_getfilesize,
196          file_getfiletime,
197          file_setfiletime},
198         /* console */
199         {console_getfiletype,
200          console_read,
201          console_write,
202          NULL, NULL, NULL, NULL, NULL, NULL},
203         /* thread */
204         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
205         /* sem */
206         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
207         /* mutex */
208         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
209         /* event */
210         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
211         /* socket (will need at least read and write) */
212         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
213         /* find */
214         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
215         /* process */
216         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
217         /* pipe */
218         {pipe_getfiletype,
219          pipe_read,
220          pipe_write,
221          NULL, NULL, NULL, NULL, NULL, NULL},
222 };
223
224 static mono_once_t io_ops_once=MONO_ONCE_INIT;
225 static gboolean lock_while_writing = FALSE;
226
227 static void io_ops_init (void)
228 {
229 /*      _wapi_handle_register_capabilities (WAPI_HANDLE_FILE, */
230 /*                                          WAPI_HANDLE_CAP_WAIT); */
231 /*      _wapi_handle_register_capabilities (WAPI_HANDLE_CONSOLE, */
232 /*                                          WAPI_HANDLE_CAP_WAIT); */
233
234         if (g_getenv ("MONO_STRICT_IO_EMULATION") != NULL) {
235                 lock_while_writing = TRUE;
236         }
237 }
238
239 /* Some utility functions.
240  */
241
242 /*
243  * Check if a file is writable by the current user.
244  *
245  * This is is a best effort kind of thing. It assumes a reasonable sane set
246  * of permissions by the underlying OS.
247  *
248  * We assume that basic unix permission bits are authoritative. Which might not
249  * be the case under systems with extended permissions systems (posix ACLs, SELinux, OSX/iOS sandboxing, etc)
250  *
251  * The choice of access as the fallback is due to the expected lower overhead compared to trying to open the file.
252  *
253  * The only expected problem with using access are for root, setuid or setgid programs as access is not consistent
254  * under those situations. It's to be expected that this should not happen in practice as those bits are very dangerous
255  * and should not be used with a dynamic runtime.
256  */
257 static gboolean
258 is_file_writable (struct stat *st, const char *path)
259 {
260         /* Is it globally writable? */
261         if (st->st_mode & S_IWOTH)
262                 return 1;
263
264         /* Am I the owner? */
265         if ((st->st_uid == geteuid ()) && (st->st_mode & S_IWUSR))
266                 return 1;
267
268         /* Am I in the same group? */
269         if ((st->st_gid == getegid ()) && (st->st_mode & S_IWGRP))
270                 return 1;
271
272         /* Fallback to using access(2). It's not ideal as it might not take into consideration euid/egid
273          * but it's the only sane option we have on unix.
274          */
275         return access (path, W_OK) == 0;
276 }
277
278
279 static guint32 _wapi_stat_to_file_attributes (const gchar *pathname,
280                                               struct stat *buf,
281                                               struct stat *lbuf)
282 {
283         guint32 attrs = 0;
284         gchar *filename;
285         
286         /* FIXME: this could definitely be better, but there seems to
287          * be no pattern to the attributes that are set
288          */
289
290         /* Sockets (0140000) != Directory (040000) + Regular file (0100000) */
291         if (S_ISSOCK (buf->st_mode))
292                 buf->st_mode &= ~S_IFSOCK; /* don't consider socket protection */
293
294         filename = _wapi_basename (pathname);
295
296         if (S_ISDIR (buf->st_mode)) {
297                 attrs = FILE_ATTRIBUTE_DIRECTORY;
298                 if (!is_file_writable (buf, pathname)) {
299                         attrs |= FILE_ATTRIBUTE_READONLY;
300                 }
301                 if (filename[0] == '.') {
302                         attrs |= FILE_ATTRIBUTE_HIDDEN;
303                 }
304         } else {
305                 if (!is_file_writable (buf, pathname)) {
306                         attrs = FILE_ATTRIBUTE_READONLY;
307
308                         if (filename[0] == '.') {
309                                 attrs |= FILE_ATTRIBUTE_HIDDEN;
310                         }
311                 } else if (filename[0] == '.') {
312                         attrs = FILE_ATTRIBUTE_HIDDEN;
313                 } else {
314                         attrs = FILE_ATTRIBUTE_NORMAL;
315                 }
316         }
317
318         if (lbuf != NULL) {
319                 if (S_ISLNK (lbuf->st_mode)) {
320                         attrs |= FILE_ATTRIBUTE_REPARSE_POINT;
321                 }
322         }
323         
324         g_free (filename);
325         
326         return attrs;
327 }
328
329 static void
330 _wapi_set_last_error_from_errno (void)
331 {
332         SetLastError (_wapi_get_win32_file_error (errno));
333 }
334
335 static void _wapi_set_last_path_error_from_errno (const gchar *dir,
336                                                   const gchar *path)
337 {
338         if (errno == ENOENT) {
339                 /* Check the path - if it's a missing directory then
340                  * we need to set PATH_NOT_FOUND not FILE_NOT_FOUND
341                  */
342                 gchar *dirname;
343
344
345                 if (dir == NULL) {
346                         dirname = _wapi_dirname (path);
347                 } else {
348                         dirname = g_strdup (dir);
349                 }
350                 
351                 if (_wapi_access (dirname, F_OK) == 0) {
352                         SetLastError (ERROR_FILE_NOT_FOUND);
353                 } else {
354                         SetLastError (ERROR_PATH_NOT_FOUND);
355                 }
356
357                 g_free (dirname);
358         } else {
359                 _wapi_set_last_error_from_errno ();
360         }
361 }
362
363 /* Handle ops.
364  */
365 static void file_close (gpointer handle, gpointer data)
366 {
367         struct _WapiHandle_file *file_handle = (struct _WapiHandle_file *)data;
368         int fd = file_handle->fd;
369         
370         DEBUG("%s: closing file handle %p [%s]", __func__, handle,
371                   file_handle->filename);
372
373         if (file_handle->attrs & FILE_FLAG_DELETE_ON_CLOSE)
374                 _wapi_unlink (file_handle->filename);
375         
376         g_free (file_handle->filename);
377         
378         if (file_handle->share_info)
379                 _wapi_handle_share_release (file_handle->share_info);
380         
381         close (fd);
382 }
383
384 static WapiFileType file_getfiletype(void)
385 {
386         return(FILE_TYPE_DISK);
387 }
388
389 static gboolean file_read(gpointer handle, gpointer buffer,
390                           guint32 numbytes, guint32 *bytesread,
391                           WapiOverlapped *overlapped)
392 {
393         struct _WapiHandle_file *file_handle;
394         gboolean ok;
395         int fd, ret;
396         
397         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
398                                 (gpointer *)&file_handle);
399         if(ok==FALSE) {
400                 g_warning ("%s: error looking up file handle %p", __func__,
401                            handle);
402                 SetLastError (ERROR_INVALID_HANDLE);
403                 return(FALSE);
404         }
405
406         fd = file_handle->fd;
407         if(bytesread!=NULL) {
408                 *bytesread=0;
409         }
410         
411         if(!(file_handle->fileaccess & GENERIC_READ) &&
412            !(file_handle->fileaccess & GENERIC_ALL)) {
413                 DEBUG("%s: handle %p doesn't have GENERIC_READ access: %u",
414                           __func__, handle, file_handle->fileaccess);
415
416                 SetLastError (ERROR_ACCESS_DENIED);
417                 return(FALSE);
418         }
419
420         do {
421                 ret = read (fd, buffer, numbytes);
422         } while (ret == -1 && errno == EINTR &&
423                  !_wapi_thread_cur_apc_pending());
424                         
425         if(ret==-1) {
426                 gint err = errno;
427
428                 DEBUG("%s: read of handle %p error: %s", __func__,
429                           handle, strerror(err));
430                 SetLastError (_wapi_get_win32_file_error (err));
431                 return(FALSE);
432         }
433                 
434         if (bytesread != NULL) {
435                 *bytesread = ret;
436         }
437                 
438         return(TRUE);
439 }
440
441 static gboolean file_write(gpointer handle, gconstpointer buffer,
442                            guint32 numbytes, guint32 *byteswritten,
443                            WapiOverlapped *overlapped G_GNUC_UNUSED)
444 {
445         struct _WapiHandle_file *file_handle;
446         gboolean ok;
447         int ret, fd;
448         off_t current_pos = 0;
449         
450         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
451                                 (gpointer *)&file_handle);
452         if(ok==FALSE) {
453                 g_warning ("%s: error looking up file handle %p", __func__,
454                            handle);
455                 SetLastError (ERROR_INVALID_HANDLE);
456                 return(FALSE);
457         }
458
459         fd = file_handle->fd;
460         
461         if(byteswritten!=NULL) {
462                 *byteswritten=0;
463         }
464         
465         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
466            !(file_handle->fileaccess & GENERIC_ALL)) {
467                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
468
469                 SetLastError (ERROR_ACCESS_DENIED);
470                 return(FALSE);
471         }
472         
473         if (lock_while_writing) {
474                 /* Need to lock the region we're about to write to,
475                  * because we only do advisory locking on POSIX
476                  * systems
477                  */
478                 current_pos = lseek (fd, (off_t)0, SEEK_CUR);
479                 if (current_pos == -1) {
480                         DEBUG ("%s: handle %p lseek failed: %s", __func__,
481                                    handle, strerror (errno));
482                         _wapi_set_last_error_from_errno ();
483                         return(FALSE);
484                 }
485                 
486                 if (_wapi_lock_file_region (fd, current_pos,
487                                             numbytes) == FALSE) {
488                         /* The error has already been set */
489                         return(FALSE);
490                 }
491         }
492                 
493         do {
494                 ret = write (fd, buffer, numbytes);
495         } while (ret == -1 && errno == EINTR &&
496                  !_wapi_thread_cur_apc_pending());
497         
498         if (lock_while_writing) {
499                 _wapi_unlock_file_region (fd, current_pos, numbytes);
500         }
501
502         if (ret == -1) {
503                 if (errno == EINTR) {
504                         ret = 0;
505                 } else {
506                         _wapi_set_last_error_from_errno ();
507                                 
508                         DEBUG("%s: write of handle %p error: %s",
509                                   __func__, handle, strerror(errno));
510
511                         return(FALSE);
512                 }
513         }
514         if (byteswritten != NULL) {
515                 *byteswritten = ret;
516         }
517         return(TRUE);
518 }
519
520 static gboolean file_flush(gpointer handle)
521 {
522         struct _WapiHandle_file *file_handle;
523         gboolean ok;
524         int ret, fd;
525         
526         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
527                                 (gpointer *)&file_handle);
528         if(ok==FALSE) {
529                 g_warning ("%s: error looking up file handle %p", __func__,
530                            handle);
531                 SetLastError (ERROR_INVALID_HANDLE);
532                 return(FALSE);
533         }
534
535         fd = file_handle->fd;
536
537         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
538            !(file_handle->fileaccess & GENERIC_ALL)) {
539                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
540
541                 SetLastError (ERROR_ACCESS_DENIED);
542                 return(FALSE);
543         }
544
545         ret=fsync(fd);
546         if (ret==-1) {
547                 DEBUG("%s: fsync of handle %p error: %s", __func__, handle,
548                           strerror(errno));
549
550                 _wapi_set_last_error_from_errno ();
551                 return(FALSE);
552         }
553         
554         return(TRUE);
555 }
556
557 static guint32 file_seek(gpointer handle, gint32 movedistance,
558                          gint32 *highmovedistance, WapiSeekMethod method)
559 {
560         struct _WapiHandle_file *file_handle;
561         gboolean ok;
562         gint64 offset, newpos;
563         int whence, fd;
564         guint32 ret;
565         
566         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
567                                 (gpointer *)&file_handle);
568         if(ok==FALSE) {
569                 g_warning ("%s: error looking up file handle %p", __func__,
570                            handle);
571                 SetLastError (ERROR_INVALID_HANDLE);
572                 return(INVALID_SET_FILE_POINTER);
573         }
574         
575         fd = file_handle->fd;
576
577         if(!(file_handle->fileaccess & GENERIC_READ) &&
578            !(file_handle->fileaccess & GENERIC_WRITE) &&
579            !(file_handle->fileaccess & GENERIC_ALL)) {
580                 DEBUG ("%s: handle %p doesn't have GENERIC_READ or GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
581
582                 SetLastError (ERROR_ACCESS_DENIED);
583                 return(INVALID_SET_FILE_POINTER);
584         }
585
586         switch(method) {
587         case FILE_BEGIN:
588                 whence=SEEK_SET;
589                 break;
590         case FILE_CURRENT:
591                 whence=SEEK_CUR;
592                 break;
593         case FILE_END:
594                 whence=SEEK_END;
595                 break;
596         default:
597                 DEBUG("%s: invalid seek type %d", __func__, method);
598
599                 SetLastError (ERROR_INVALID_PARAMETER);
600                 return(INVALID_SET_FILE_POINTER);
601         }
602
603 #ifdef HAVE_LARGE_FILE_SUPPORT
604         if(highmovedistance==NULL) {
605                 offset=movedistance;
606                 DEBUG("%s: setting offset to %lld (low %d)", __func__,
607                           offset, movedistance);
608         } else {
609                 offset=((gint64) *highmovedistance << 32) | (guint32)movedistance;
610                 
611                 DEBUG("%s: setting offset to %lld 0x%llx (high %d 0x%x, low %d 0x%x)", __func__, offset, offset, *highmovedistance, *highmovedistance, movedistance, movedistance);
612         }
613 #else
614         offset=movedistance;
615 #endif
616
617         DEBUG ("%s: moving handle %p by %lld bytes from %d", __func__,
618                    handle, (long long)offset, whence);
619
620 #ifdef PLATFORM_ANDROID
621         /* bionic doesn't support -D_FILE_OFFSET_BITS=64 */
622         newpos=lseek64(fd, offset, whence);
623 #else
624         newpos=lseek(fd, offset, whence);
625 #endif
626         if(newpos==-1) {
627                 DEBUG("%s: lseek on handle %p returned error %s",
628                           __func__, handle, strerror(errno));
629
630                 _wapi_set_last_error_from_errno ();
631                 return(INVALID_SET_FILE_POINTER);
632         }
633
634         DEBUG ("%s: lseek returns %lld", __func__, newpos);
635
636 #ifdef HAVE_LARGE_FILE_SUPPORT
637         ret=newpos & 0xFFFFFFFF;
638         if(highmovedistance!=NULL) {
639                 *highmovedistance=newpos>>32;
640         }
641 #else
642         ret=newpos;
643         if(highmovedistance!=NULL) {
644                 /* Accurate, but potentially dodgy :-) */
645                 *highmovedistance=0;
646         }
647 #endif
648
649         DEBUG ("%s: move of handle %p returning %d/%d", __func__,
650                    handle, ret, highmovedistance==NULL?0:*highmovedistance);
651
652         return(ret);
653 }
654
655 static gboolean file_setendoffile(gpointer handle)
656 {
657         struct _WapiHandle_file *file_handle;
658         gboolean ok;
659         struct stat statbuf;
660         off_t pos;
661         int ret, fd;
662         
663         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
664                                 (gpointer *)&file_handle);
665         if(ok==FALSE) {
666                 g_warning ("%s: error looking up file handle %p", __func__,
667                            handle);
668                 SetLastError (ERROR_INVALID_HANDLE);
669                 return(FALSE);
670         }
671         fd = file_handle->fd;
672         
673         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
674            !(file_handle->fileaccess & GENERIC_ALL)) {
675                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
676
677                 SetLastError (ERROR_ACCESS_DENIED);
678                 return(FALSE);
679         }
680
681         /* Find the current file position, and the file length.  If
682          * the file position is greater than the length, write to
683          * extend the file with a hole.  If the file position is less
684          * than the length, truncate the file.
685          */
686         
687         ret=fstat(fd, &statbuf);
688         if(ret==-1) {
689                 DEBUG ("%s: handle %p fstat failed: %s", __func__,
690                            handle, strerror(errno));
691
692                 _wapi_set_last_error_from_errno ();
693                 return(FALSE);
694         }
695
696         pos=lseek(fd, (off_t)0, SEEK_CUR);
697         if(pos==-1) {
698                 DEBUG("%s: handle %p lseek failed: %s", __func__,
699                           handle, strerror(errno));
700
701                 _wapi_set_last_error_from_errno ();
702                 return(FALSE);
703         }
704         
705 #ifdef FTRUNCATE_DOESNT_EXTEND
706         off_t size = statbuf.st_size;
707         /* I haven't bothered to write the configure.ac stuff for this
708          * because I don't know if any platform needs it.  I'm leaving
709          * this code just in case though
710          */
711         if(pos>size) {
712                 /* Extend the file.  Use write() here, because some
713                  * manuals say that ftruncate() behaviour is undefined
714                  * when the file needs extending.  The POSIX spec says
715                  * that on XSI-conformant systems it extends, so if
716                  * every system we care about conforms, then we can
717                  * drop this write.
718                  */
719                 do {
720                         ret = write (fd, "", 1);
721                 } while (ret == -1 && errno == EINTR &&
722                          !_wapi_thread_cur_apc_pending());
723
724                 if(ret==-1) {
725                         DEBUG("%s: handle %p extend write failed: %s", __func__, handle, strerror(errno));
726
727                         _wapi_set_last_error_from_errno ();
728                         return(FALSE);
729                 }
730
731                 /* And put the file position back after the write */
732                 ret = lseek (fd, pos, SEEK_SET);
733                 if (ret == -1) {
734                         DEBUG ("%s: handle %p second lseek failed: %s",
735                                    __func__, handle, strerror(errno));
736
737                         _wapi_set_last_error_from_errno ();
738                         return(FALSE);
739                 }
740         }
741 #endif
742
743 /* Native Client has no ftruncate function, even in standalone sel_ldr. */
744 #ifndef __native_client__
745         /* always truncate, because the extend write() adds an extra
746          * byte to the end of the file
747          */
748         do {
749                 ret=ftruncate(fd, pos);
750         }
751         while (ret==-1 && errno==EINTR && !_wapi_thread_cur_apc_pending()); 
752         if(ret==-1) {
753                 DEBUG("%s: handle %p ftruncate failed: %s", __func__,
754                           handle, strerror(errno));
755                 
756                 _wapi_set_last_error_from_errno ();
757                 return(FALSE);
758         }
759 #endif
760                 
761         return(TRUE);
762 }
763
764 static guint32 file_getfilesize(gpointer handle, guint32 *highsize)
765 {
766         struct _WapiHandle_file *file_handle;
767         gboolean ok;
768         struct stat statbuf;
769         guint32 size;
770         int ret;
771         int fd;
772         
773         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
774                                 (gpointer *)&file_handle);
775         if(ok==FALSE) {
776                 g_warning ("%s: error looking up file handle %p", __func__,
777                            handle);
778                 SetLastError (ERROR_INVALID_HANDLE);
779                 return(INVALID_FILE_SIZE);
780         }
781         fd = file_handle->fd;
782         
783         if(!(file_handle->fileaccess & GENERIC_READ) &&
784            !(file_handle->fileaccess & GENERIC_WRITE) &&
785            !(file_handle->fileaccess & GENERIC_ALL)) {
786                 DEBUG("%s: handle %p doesn't have GENERIC_READ or GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
787
788                 SetLastError (ERROR_ACCESS_DENIED);
789                 return(INVALID_FILE_SIZE);
790         }
791
792         /* If the file has a size with the low bits 0xFFFFFFFF the
793          * caller can't tell if this is an error, so clear the error
794          * value
795          */
796         SetLastError (ERROR_SUCCESS);
797         
798         ret = fstat(fd, &statbuf);
799         if (ret == -1) {
800                 DEBUG ("%s: handle %p fstat failed: %s", __func__,
801                            handle, strerror(errno));
802
803                 _wapi_set_last_error_from_errno ();
804                 return(INVALID_FILE_SIZE);
805         }
806         
807         /* fstat indicates block devices as zero-length, so go a different path */
808 #ifdef BLKGETSIZE64
809         if (S_ISBLK(statbuf.st_mode)) {
810                 guint64 bigsize;
811                 if (ioctl(fd, BLKGETSIZE64, &bigsize) < 0) {
812                         DEBUG ("%s: handle %p ioctl BLKGETSIZE64 failed: %s",
813                                    __func__, handle, strerror(errno));
814
815                         _wapi_set_last_error_from_errno ();
816                         return(INVALID_FILE_SIZE);
817                 }
818                 
819                 size = bigsize & 0xFFFFFFFF;
820                 if (highsize != NULL) {
821                         *highsize = bigsize>>32;
822                 }
823
824                 DEBUG ("%s: Returning block device size %d/%d",
825                            __func__, size, *highsize);
826         
827                 return(size);
828         }
829 #endif
830         
831 #ifdef HAVE_LARGE_FILE_SUPPORT
832         size = statbuf.st_size & 0xFFFFFFFF;
833         if (highsize != NULL) {
834                 *highsize = statbuf.st_size>>32;
835         }
836 #else
837         if (highsize != NULL) {
838                 /* Accurate, but potentially dodgy :-) */
839                 *highsize = 0;
840         }
841         size = statbuf.st_size;
842 #endif
843
844         DEBUG ("%s: Returning size %d/%d", __func__, size, *highsize);
845         
846         return(size);
847 }
848
849 static gboolean file_getfiletime(gpointer handle, WapiFileTime *create_time,
850                                  WapiFileTime *last_access,
851                                  WapiFileTime *last_write)
852 {
853         struct _WapiHandle_file *file_handle;
854         gboolean ok;
855         struct stat statbuf;
856         guint64 create_ticks, access_ticks, write_ticks;
857         int ret, fd;
858         
859         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
860                                 (gpointer *)&file_handle);
861         if(ok==FALSE) {
862                 g_warning ("%s: error looking up file handle %p", __func__,
863                            handle);
864                 SetLastError (ERROR_INVALID_HANDLE);
865                 return(FALSE);
866         }
867         fd = file_handle->fd;
868
869         if(!(file_handle->fileaccess & GENERIC_READ) &&
870            !(file_handle->fileaccess & GENERIC_ALL)) {
871                 DEBUG("%s: handle %p doesn't have GENERIC_READ access: %u",
872                           __func__, handle, file_handle->fileaccess);
873
874                 SetLastError (ERROR_ACCESS_DENIED);
875                 return(FALSE);
876         }
877         
878         ret=fstat(fd, &statbuf);
879         if(ret==-1) {
880                 DEBUG("%s: handle %p fstat failed: %s", __func__, handle,
881                           strerror(errno));
882
883                 _wapi_set_last_error_from_errno ();
884                 return(FALSE);
885         }
886
887         DEBUG("%s: atime: %ld ctime: %ld mtime: %ld", __func__,
888                   statbuf.st_atime, statbuf.st_ctime,
889                   statbuf.st_mtime);
890
891         /* Try and guess a meaningful create time by using the older
892          * of atime or ctime
893          */
894         /* The magic constant comes from msdn documentation
895          * "Converting a time_t Value to a File Time"
896          */
897         if(statbuf.st_atime < statbuf.st_ctime) {
898                 create_ticks=((guint64)statbuf.st_atime*10000000)
899                         + 116444736000000000ULL;
900         } else {
901                 create_ticks=((guint64)statbuf.st_ctime*10000000)
902                         + 116444736000000000ULL;
903         }
904         
905         access_ticks=((guint64)statbuf.st_atime*10000000)+116444736000000000ULL;
906         write_ticks=((guint64)statbuf.st_mtime*10000000)+116444736000000000ULL;
907         
908         DEBUG("%s: aticks: %llu cticks: %llu wticks: %llu", __func__,
909                   access_ticks, create_ticks, write_ticks);
910
911         if(create_time!=NULL) {
912                 create_time->dwLowDateTime = create_ticks & 0xFFFFFFFF;
913                 create_time->dwHighDateTime = create_ticks >> 32;
914         }
915         
916         if(last_access!=NULL) {
917                 last_access->dwLowDateTime = access_ticks & 0xFFFFFFFF;
918                 last_access->dwHighDateTime = access_ticks >> 32;
919         }
920         
921         if(last_write!=NULL) {
922                 last_write->dwLowDateTime = write_ticks & 0xFFFFFFFF;
923                 last_write->dwHighDateTime = write_ticks >> 32;
924         }
925
926         return(TRUE);
927 }
928
929 static gboolean file_setfiletime(gpointer handle,
930                                  const WapiFileTime *create_time G_GNUC_UNUSED,
931                                  const WapiFileTime *last_access,
932                                  const WapiFileTime *last_write)
933 {
934         struct _WapiHandle_file *file_handle;
935         gboolean ok;
936         struct utimbuf utbuf;
937         struct stat statbuf;
938         guint64 access_ticks, write_ticks;
939         int ret, fd;
940         
941         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
942                                 (gpointer *)&file_handle);
943         if(ok==FALSE) {
944                 g_warning ("%s: error looking up file handle %p", __func__,
945                            handle);
946                 SetLastError (ERROR_INVALID_HANDLE);
947                 return(FALSE);
948         }
949         fd = file_handle->fd;
950         
951         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
952            !(file_handle->fileaccess & GENERIC_ALL)) {
953                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
954
955                 SetLastError (ERROR_ACCESS_DENIED);
956                 return(FALSE);
957         }
958
959         if(file_handle->filename == NULL) {
960                 DEBUG("%s: handle %p unknown filename", __func__, handle);
961
962                 SetLastError (ERROR_INVALID_HANDLE);
963                 return(FALSE);
964         }
965         
966         /* Get the current times, so we can put the same times back in
967          * the event that one of the FileTime structs is NULL
968          */
969         ret=fstat (fd, &statbuf);
970         if(ret==-1) {
971                 DEBUG("%s: handle %p fstat failed: %s", __func__, handle,
972                           strerror(errno));
973
974                 SetLastError (ERROR_INVALID_PARAMETER);
975                 return(FALSE);
976         }
977
978         if(last_access!=NULL) {
979                 access_ticks=((guint64)last_access->dwHighDateTime << 32) +
980                         last_access->dwLowDateTime;
981                 /* This is (time_t)0.  We can actually go to INT_MIN,
982                  * but this will do for now.
983                  */
984                 if (access_ticks < 116444736000000000ULL) {
985                         DEBUG ("%s: attempt to set access time too early",
986                                    __func__);
987                         SetLastError (ERROR_INVALID_PARAMETER);
988                         return(FALSE);
989                 }
990                 
991                 utbuf.actime=(access_ticks - 116444736000000000ULL) / 10000000;
992         } else {
993                 utbuf.actime=statbuf.st_atime;
994         }
995
996         if(last_write!=NULL) {
997                 write_ticks=((guint64)last_write->dwHighDateTime << 32) +
998                         last_write->dwLowDateTime;
999                 /* This is (time_t)0.  We can actually go to INT_MIN,
1000                  * but this will do for now.
1001                  */
1002                 if (write_ticks < 116444736000000000ULL) {
1003                         DEBUG ("%s: attempt to set write time too early",
1004                                    __func__);
1005                         SetLastError (ERROR_INVALID_PARAMETER);
1006                         return(FALSE);
1007                 }
1008                 
1009                 utbuf.modtime=(write_ticks - 116444736000000000ULL) / 10000000;
1010         } else {
1011                 utbuf.modtime=statbuf.st_mtime;
1012         }
1013
1014         DEBUG ("%s: setting handle %p access %ld write %ld", __func__,
1015                    handle, utbuf.actime, utbuf.modtime);
1016
1017         ret = _wapi_utime (file_handle->filename, &utbuf);
1018         if (ret == -1) {
1019                 DEBUG ("%s: handle %p [%s] utime failed: %s", __func__,
1020                            handle, file_handle->filename, strerror(errno));
1021
1022                 SetLastError (ERROR_INVALID_PARAMETER);
1023                 return(FALSE);
1024         }
1025         
1026         return(TRUE);
1027 }
1028
1029 static void console_close (gpointer handle, gpointer data)
1030 {
1031         struct _WapiHandle_file *console_handle = (struct _WapiHandle_file *)data;
1032         int fd = console_handle->fd;
1033         
1034         DEBUG("%s: closing console handle %p", __func__, handle);
1035
1036         g_free (console_handle->filename);
1037
1038         if (fd > 2)
1039                 close (fd);
1040 }
1041
1042 static WapiFileType console_getfiletype(void)
1043 {
1044         return(FILE_TYPE_CHAR);
1045 }
1046
1047 static gboolean console_read(gpointer handle, gpointer buffer,
1048                              guint32 numbytes, guint32 *bytesread,
1049                              WapiOverlapped *overlapped G_GNUC_UNUSED)
1050 {
1051         struct _WapiHandle_file *console_handle;
1052         gboolean ok;
1053         int ret, fd;
1054
1055         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_CONSOLE,
1056                                 (gpointer *)&console_handle);
1057         if(ok==FALSE) {
1058                 g_warning ("%s: error looking up console handle %p", __func__,
1059                            handle);
1060                 SetLastError (ERROR_INVALID_HANDLE);
1061                 return(FALSE);
1062         }
1063         fd = console_handle->fd;
1064         
1065         if(bytesread!=NULL) {
1066                 *bytesread=0;
1067         }
1068         
1069         if(!(console_handle->fileaccess & GENERIC_READ) &&
1070            !(console_handle->fileaccess & GENERIC_ALL)) {
1071                 DEBUG ("%s: handle %p doesn't have GENERIC_READ access: %u",
1072                            __func__, handle, console_handle->fileaccess);
1073
1074                 SetLastError (ERROR_ACCESS_DENIED);
1075                 return(FALSE);
1076         }
1077         
1078         do {
1079                 ret=read(fd, buffer, numbytes);
1080         } while (ret==-1 && errno==EINTR && !_wapi_thread_cur_apc_pending());
1081
1082         if(ret==-1) {
1083                 DEBUG("%s: read of handle %p error: %s", __func__, handle,
1084                           strerror(errno));
1085
1086                 _wapi_set_last_error_from_errno ();
1087                 return(FALSE);
1088         }
1089         
1090         if(bytesread!=NULL) {
1091                 *bytesread=ret;
1092         }
1093         
1094         return(TRUE);
1095 }
1096
1097 static gboolean console_write(gpointer handle, gconstpointer buffer,
1098                               guint32 numbytes, guint32 *byteswritten,
1099                               WapiOverlapped *overlapped G_GNUC_UNUSED)
1100 {
1101         struct _WapiHandle_file *console_handle;
1102         gboolean ok;
1103         int ret, fd;
1104         
1105         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_CONSOLE,
1106                                 (gpointer *)&console_handle);
1107         if(ok==FALSE) {
1108                 g_warning ("%s: error looking up console handle %p", __func__,
1109                            handle);
1110                 SetLastError (ERROR_INVALID_HANDLE);
1111                 return(FALSE);
1112         }
1113         fd = console_handle->fd;
1114         
1115         if(byteswritten!=NULL) {
1116                 *byteswritten=0;
1117         }
1118         
1119         if(!(console_handle->fileaccess & GENERIC_WRITE) &&
1120            !(console_handle->fileaccess & GENERIC_ALL)) {
1121                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, console_handle->fileaccess);
1122
1123                 SetLastError (ERROR_ACCESS_DENIED);
1124                 return(FALSE);
1125         }
1126         
1127         do {
1128                 ret = write(fd, buffer, numbytes);
1129         } while (ret == -1 && errno == EINTR &&
1130                  !_wapi_thread_cur_apc_pending());
1131
1132         if (ret == -1) {
1133                 if (errno == EINTR) {
1134                         ret = 0;
1135                 } else {
1136                         _wapi_set_last_error_from_errno ();
1137                         
1138                         DEBUG ("%s: write of handle %p error: %s",
1139                                    __func__, handle, strerror(errno));
1140
1141                         return(FALSE);
1142                 }
1143         }
1144         if(byteswritten!=NULL) {
1145                 *byteswritten=ret;
1146         }
1147         
1148         return(TRUE);
1149 }
1150
1151 static void pipe_close (gpointer handle, gpointer data)
1152 {
1153         struct _WapiHandle_file *pipe_handle = (struct _WapiHandle_file*)data;
1154         int fd = pipe_handle->fd;
1155
1156         DEBUG("%s: closing pipe handle %p", __func__, handle);
1157
1158         /* No filename with pipe handles */
1159
1160         close (fd);
1161 }
1162
1163 static WapiFileType pipe_getfiletype(void)
1164 {
1165         return(FILE_TYPE_PIPE);
1166 }
1167
1168 static gboolean pipe_read (gpointer handle, gpointer buffer,
1169                            guint32 numbytes, guint32 *bytesread,
1170                            WapiOverlapped *overlapped G_GNUC_UNUSED)
1171 {
1172         struct _WapiHandle_file *pipe_handle;
1173         gboolean ok;
1174         int ret, fd;
1175
1176         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_PIPE,
1177                                 (gpointer *)&pipe_handle);
1178         if(ok==FALSE) {
1179                 g_warning ("%s: error looking up pipe handle %p", __func__,
1180                            handle);
1181                 SetLastError (ERROR_INVALID_HANDLE);
1182                 return(FALSE);
1183         }
1184         fd = pipe_handle->fd;
1185
1186         if(bytesread!=NULL) {
1187                 *bytesread=0;
1188         }
1189         
1190         if(!(pipe_handle->fileaccess & GENERIC_READ) &&
1191            !(pipe_handle->fileaccess & GENERIC_ALL)) {
1192                 DEBUG("%s: handle %p doesn't have GENERIC_READ access: %u",
1193                           __func__, handle, pipe_handle->fileaccess);
1194
1195                 SetLastError (ERROR_ACCESS_DENIED);
1196                 return(FALSE);
1197         }
1198         
1199         DEBUG ("%s: reading up to %d bytes from pipe %p", __func__,
1200                    numbytes, handle);
1201
1202         do {
1203                 ret=read(fd, buffer, numbytes);
1204         } while (ret==-1 && errno==EINTR && !_wapi_thread_cur_apc_pending());
1205                 
1206         if (ret == -1) {
1207                 if (errno == EINTR) {
1208                         ret = 0;
1209                 } else {
1210                         _wapi_set_last_error_from_errno ();
1211                         
1212                         DEBUG("%s: read of handle %p error: %s", __func__,
1213                                   handle, strerror(errno));
1214
1215                         return(FALSE);
1216                 }
1217         }
1218         
1219         DEBUG ("%s: read %d bytes from pipe", __func__, ret);
1220
1221         if(bytesread!=NULL) {
1222                 *bytesread=ret;
1223         }
1224         
1225         return(TRUE);
1226 }
1227
1228 static gboolean pipe_write(gpointer handle, gconstpointer buffer,
1229                            guint32 numbytes, guint32 *byteswritten,
1230                            WapiOverlapped *overlapped G_GNUC_UNUSED)
1231 {
1232         struct _WapiHandle_file *pipe_handle;
1233         gboolean ok;
1234         int ret, fd;
1235         
1236         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_PIPE,
1237                                 (gpointer *)&pipe_handle);
1238         if(ok==FALSE) {
1239                 g_warning ("%s: error looking up pipe handle %p", __func__,
1240                            handle);
1241                 SetLastError (ERROR_INVALID_HANDLE);
1242                 return(FALSE);
1243         }
1244         fd = pipe_handle->fd;
1245         
1246         if(byteswritten!=NULL) {
1247                 *byteswritten=0;
1248         }
1249         
1250         if(!(pipe_handle->fileaccess & GENERIC_WRITE) &&
1251            !(pipe_handle->fileaccess & GENERIC_ALL)) {
1252                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, pipe_handle->fileaccess);
1253
1254                 SetLastError (ERROR_ACCESS_DENIED);
1255                 return(FALSE);
1256         }
1257         
1258         DEBUG ("%s: writing up to %d bytes to pipe %p", __func__, numbytes,
1259                    handle);
1260
1261         do {
1262                 ret = write (fd, buffer, numbytes);
1263         } while (ret == -1 && errno == EINTR &&
1264                  !_wapi_thread_cur_apc_pending());
1265
1266         if (ret == -1) {
1267                 if (errno == EINTR) {
1268                         ret = 0;
1269                 } else {
1270                         _wapi_set_last_error_from_errno ();
1271                         
1272                         DEBUG("%s: write of handle %p error: %s", __func__,
1273                                   handle, strerror(errno));
1274
1275                         return(FALSE);
1276                 }
1277         }
1278         if(byteswritten!=NULL) {
1279                 *byteswritten=ret;
1280         }
1281         
1282         return(TRUE);
1283 }
1284
1285 static int convert_flags(guint32 fileaccess, guint32 createmode)
1286 {
1287         int flags=0;
1288         
1289         switch(fileaccess) {
1290         case GENERIC_READ:
1291                 flags=O_RDONLY;
1292                 break;
1293         case GENERIC_WRITE:
1294                 flags=O_WRONLY;
1295                 break;
1296         case GENERIC_READ|GENERIC_WRITE:
1297                 flags=O_RDWR;
1298                 break;
1299         default:
1300                 DEBUG("%s: Unknown access type 0x%x", __func__,
1301                           fileaccess);
1302                 break;
1303         }
1304
1305         switch(createmode) {
1306         case CREATE_NEW:
1307                 flags|=O_CREAT|O_EXCL;
1308                 break;
1309         case CREATE_ALWAYS:
1310                 flags|=O_CREAT|O_TRUNC;
1311                 break;
1312         case OPEN_EXISTING:
1313                 break;
1314         case OPEN_ALWAYS:
1315                 flags|=O_CREAT;
1316                 break;
1317         case TRUNCATE_EXISTING:
1318                 flags|=O_TRUNC;
1319                 break;
1320         default:
1321                 DEBUG("%s: Unknown create mode 0x%x", __func__,
1322                           createmode);
1323                 break;
1324         }
1325         
1326         return(flags);
1327 }
1328
1329 #if 0 /* unused */
1330 static mode_t convert_perms(guint32 sharemode)
1331 {
1332         mode_t perms=0600;
1333         
1334         if(sharemode&FILE_SHARE_READ) {
1335                 perms|=044;
1336         }
1337         if(sharemode&FILE_SHARE_WRITE) {
1338                 perms|=022;
1339         }
1340
1341         return(perms);
1342 }
1343 #endif
1344
1345 static gboolean share_allows_open (struct stat *statbuf, guint32 sharemode,
1346                                    guint32 fileaccess,
1347                                    struct _WapiFileShare **share_info)
1348 {
1349         gboolean file_already_shared;
1350         guint32 file_existing_share, file_existing_access;
1351
1352         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);
1353         
1354         if (file_already_shared) {
1355                 /* The reference to this share info was incremented
1356                  * when we looked it up, so be careful to put it back
1357                  * if we conclude we can't use this file.
1358                  */
1359                 if (file_existing_share == 0) {
1360                         /* Quick and easy, no possibility to share */
1361                         DEBUG ("%s: Share mode prevents open: requested access: 0x%x, file has sharing = NONE", __func__, fileaccess);
1362
1363                         _wapi_handle_share_release (*share_info);
1364                         
1365                         return(FALSE);
1366                 }
1367
1368                 if (((file_existing_share == FILE_SHARE_READ) &&
1369                      (fileaccess != GENERIC_READ)) ||
1370                     ((file_existing_share == FILE_SHARE_WRITE) &&
1371                      (fileaccess != GENERIC_WRITE))) {
1372                         /* New access mode doesn't match up */
1373                         DEBUG ("%s: Share mode prevents open: requested access: 0x%x, file has sharing: 0x%x", __func__, fileaccess, file_existing_share);
1374
1375                         _wapi_handle_share_release (*share_info);
1376                 
1377                         return(FALSE);
1378                 }
1379
1380                 if (((file_existing_access & GENERIC_READ) &&
1381                      !(sharemode & FILE_SHARE_READ)) ||
1382                     ((file_existing_access & GENERIC_WRITE) &&
1383                      !(sharemode & FILE_SHARE_WRITE))) {
1384                         /* New share mode doesn't match up */
1385                         DEBUG ("%s: Access mode prevents open: requested share: 0x%x, file has access: 0x%x", __func__, sharemode, file_existing_access);
1386
1387                         _wapi_handle_share_release (*share_info);
1388                 
1389                         return(FALSE);
1390                 }
1391         } else {
1392                 DEBUG ("%s: New file!", __func__);
1393         }
1394
1395         return(TRUE);
1396 }
1397
1398
1399 static gboolean
1400 share_allows_delete (struct stat *statbuf, struct _WapiFileShare **share_info)
1401 {
1402         gboolean file_already_shared;
1403         guint32 file_existing_share, file_existing_access;
1404
1405         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);
1406
1407         if (file_already_shared) {
1408                 /* The reference to this share info was incremented
1409                  * when we looked it up, so be careful to put it back
1410                  * if we conclude we can't use this file.
1411                  */
1412                 if (file_existing_share == 0) {
1413                         /* Quick and easy, no possibility to share */
1414                         DEBUG ("%s: Share mode prevents open: requested access: 0x%x, file has sharing = NONE", __func__, fileaccess);
1415
1416                         _wapi_handle_share_release (*share_info);
1417
1418                         return(FALSE);
1419                 }
1420
1421                 if (!(file_existing_share & FILE_SHARE_DELETE)) {
1422                         /* New access mode doesn't match up */
1423                         DEBUG ("%s: Share mode prevents open: requested access: 0x%x, file has sharing: 0x%x", __func__, fileaccess, file_existing_share);
1424
1425                         _wapi_handle_share_release (*share_info);
1426
1427                         return(FALSE);
1428                 }
1429         } else {
1430                 DEBUG ("%s: New file!", __func__);
1431         }
1432
1433         return(TRUE);
1434 }
1435 static gboolean share_check (struct stat *statbuf, guint32 sharemode,
1436                              guint32 fileaccess,
1437                              struct _WapiFileShare **share_info, int fd)
1438 {
1439         if (share_allows_open (statbuf, sharemode, fileaccess,
1440                                share_info) == TRUE) {
1441                 return (TRUE);
1442         }
1443         
1444         /* Got a share violation.  Double check that the file is still
1445          * open by someone, in case a process crashed while still
1446          * holding a file handle.  This will also cope with someone
1447          * using Mono.Posix to close the file.  This is cheaper and
1448          * less intrusive to other processes than initiating a handle
1449          * collection.
1450          */
1451
1452         _wapi_handle_check_share (*share_info, fd);
1453         if (share_allows_open (statbuf, sharemode, fileaccess,
1454                                share_info) == TRUE) {
1455                 return (TRUE);
1456         }
1457         
1458         /* Still violating.  It's possible that a process crashed
1459          * while still holding a file handle, and that a non-mono
1460          * process has the file open.  (For example, C-c mcs while
1461          * editing a source file.)  As a last resort, run a handle
1462          * collection, which will remove stale share entries.
1463          */
1464         _wapi_handle_collect ();
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         int 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                 DEBUG ("%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                 DEBUG("%s: unicode conversion returned NULL", __func__);
1534
1535                 SetLastError (ERROR_INVALID_NAME);
1536                 return(INVALID_HANDLE_VALUE);
1537         }
1538         
1539         DEBUG ("%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                 DEBUG("%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                 DEBUG ("%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                 DEBUG ("%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                 DEBUG ("%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         DEBUG("%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                 DEBUG("%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                 DEBUG("%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                 DEBUG ("%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                 DEBUG("%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                 DEBUG ("%s: unicode conversion returned NULL", __func__);
1771                 
1772                 SetLastError (ERROR_INVALID_NAME);
1773                 return FALSE;
1774         }
1775         
1776         if(dest_name==NULL) {
1777                 DEBUG("%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                 DEBUG ("%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                                 DEBUG ("%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                 DEBUG("%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                 DEBUG ("%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                 DEBUG("%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                 DEBUG ("%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                 DEBUG ("%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                 DEBUG ("%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                 DEBUG ("%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                 DEBUG("%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                 DEBUG("%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                 DEBUG("%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         DEBUG("%s: totaldays: %lld rem: %lld", __func__, totaldays, rem);
2583
2584         system_time->wHour=rem/TICKS_PER_HOUR;
2585         rem %= TICKS_PER_HOUR;
2586         DEBUG("%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         DEBUG("%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         DEBUG("%s: Second: %d rem: %lld", __func__, system_time->wSecond,
2596                   rem);
2597         
2598         system_time->wMilliseconds = rem / TICKS_PER_MILLISECOND;
2599         DEBUG("%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         DEBUG("%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                 DEBUG("%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                 DEBUG("%s: totaldays: %lld", __func__, totaldays);
2628                 y = yg;
2629                 DEBUG("%s: y: %lld", __func__, y);
2630         }
2631         
2632         system_time->wYear = y;
2633         DEBUG("%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         DEBUG("%s: totaldays: %lld", __func__, totaldays);
2642         
2643         system_time->wMonth = y + 1;
2644         DEBUG("%s: Month: %d", __func__, system_time->wMonth);
2645
2646         system_time->wDay = totaldays + 1;
2647         DEBUG("%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                 DEBUG ("%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                 DEBUG ("%s: unicode conversion returned NULL", __func__);
2669                 
2670                 SetLastError (ERROR_INVALID_NAME);
2671                 return(INVALID_HANDLE_VALUE);
2672         }
2673
2674         DEBUG ("%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 #ifdef DEBUG_ENABLED
2731                 gint errnum = errno;
2732 #endif
2733                 _wapi_set_last_path_error_from_errno (dir_part, NULL);
2734                 DEBUG ("%s: scandir error: %s", __func__,
2735                            g_strerror (errnum));
2736                 g_free (utf8_pattern);
2737                 g_free (entry_part);
2738                 g_free (dir_part);
2739                 return (INVALID_HANDLE_VALUE);
2740         }
2741
2742         g_free (utf8_pattern);
2743         g_free (entry_part);
2744         
2745         DEBUG ("%s: Got %d matches", __func__, result);
2746
2747         find_handle.dir_part = dir_part;
2748         find_handle.num = result;
2749         find_handle.count = 0;
2750         
2751         handle = _wapi_handle_new (WAPI_HANDLE_FIND, &find_handle);
2752         if (handle == _WAPI_HANDLE_INVALID) {
2753                 g_warning ("%s: error creating find handle", __func__);
2754                 g_free (dir_part);
2755                 g_free (entry_part);
2756                 g_free (utf8_pattern);
2757                 SetLastError (ERROR_GEN_FAILURE);
2758                 
2759                 return(INVALID_HANDLE_VALUE);
2760         }
2761
2762         if (handle != INVALID_HANDLE_VALUE &&
2763             !FindNextFile (handle, find_data)) {
2764                 FindClose (handle);
2765                 SetLastError (ERROR_NO_MORE_FILES);
2766                 handle = INVALID_HANDLE_VALUE;
2767         }
2768
2769         return (handle);
2770 }
2771
2772 gboolean FindNextFile (gpointer handle, WapiFindData *find_data)
2773 {
2774         struct _WapiHandle_find *find_handle;
2775         gboolean ok;
2776         struct stat buf, linkbuf;
2777         int result;
2778         gchar *filename;
2779         gchar *utf8_filename, *utf8_basename;
2780         gunichar2 *utf16_basename;
2781         time_t create_time;
2782         glong bytes;
2783         int thr_ret;
2784         gboolean ret = FALSE;
2785         
2786         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FIND,
2787                                 (gpointer *)&find_handle);
2788         if(ok==FALSE) {
2789                 g_warning ("%s: error looking up find handle %p", __func__,
2790                            handle);
2791                 SetLastError (ERROR_INVALID_HANDLE);
2792                 return(FALSE);
2793         }
2794
2795         thr_ret = _wapi_handle_lock_handle (handle);
2796         g_assert (thr_ret == 0);
2797         
2798 retry:
2799         if (find_handle->count >= find_handle->num) {
2800                 SetLastError (ERROR_NO_MORE_FILES);
2801                 goto cleanup;
2802         }
2803
2804         /* stat next match */
2805
2806         filename = g_build_filename (find_handle->dir_part, find_handle->namelist[find_handle->count ++], NULL);
2807
2808         result = _wapi_stat (filename, &buf);
2809         if (result == -1 && errno == ENOENT) {
2810                 /* Might be a dangling symlink */
2811                 result = _wapi_lstat (filename, &buf);
2812         }
2813         
2814         if (result != 0) {
2815                 DEBUG ("%s: stat failed: %s", __func__, filename);
2816
2817                 g_free (filename);
2818                 goto retry;
2819         }
2820
2821 #ifndef __native_client__
2822         result = _wapi_lstat (filename, &linkbuf);
2823         if (result != 0) {
2824                 DEBUG ("%s: lstat failed: %s", __func__, filename);
2825
2826                 g_free (filename);
2827                 goto retry;
2828         }
2829 #endif
2830
2831         utf8_filename = mono_utf8_from_external (filename);
2832         if (utf8_filename == NULL) {
2833                 /* We couldn't turn this filename into utf8 (eg the
2834                  * encoding of the name wasn't convertible), so just
2835                  * ignore it.
2836                  */
2837                 g_warning ("%s: Bad encoding for '%s'\nConsider using MONO_EXTERNAL_ENCODINGS\n", __func__, filename);
2838                 
2839                 g_free (filename);
2840                 goto retry;
2841         }
2842         g_free (filename);
2843         
2844         DEBUG ("%s: Found [%s]", __func__, utf8_filename);
2845         
2846         /* fill data block */
2847
2848         if (buf.st_mtime < buf.st_ctime)
2849                 create_time = buf.st_mtime;
2850         else
2851                 create_time = buf.st_ctime;
2852         
2853 #ifdef __native_client__
2854         find_data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_filename, &buf, NULL);
2855 #else
2856         find_data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_filename, &buf, &linkbuf);
2857 #endif
2858
2859         _wapi_time_t_to_filetime (create_time, &find_data->ftCreationTime);
2860         _wapi_time_t_to_filetime (buf.st_atime, &find_data->ftLastAccessTime);
2861         _wapi_time_t_to_filetime (buf.st_mtime, &find_data->ftLastWriteTime);
2862
2863         if (find_data->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
2864                 find_data->nFileSizeHigh = 0;
2865                 find_data->nFileSizeLow = 0;
2866         } else {
2867                 find_data->nFileSizeHigh = buf.st_size >> 32;
2868                 find_data->nFileSizeLow = buf.st_size & 0xFFFFFFFF;
2869         }
2870
2871         find_data->dwReserved0 = 0;
2872         find_data->dwReserved1 = 0;
2873
2874         utf8_basename = _wapi_basename (utf8_filename);
2875         utf16_basename = g_utf8_to_utf16 (utf8_basename, -1, NULL, &bytes,
2876                                           NULL);
2877         if(utf16_basename==NULL) {
2878                 g_free (utf8_basename);
2879                 g_free (utf8_filename);
2880                 goto retry;
2881         }
2882         ret = TRUE;
2883         
2884         /* utf16 is 2 * utf8 */
2885         bytes *= 2;
2886
2887         memset (find_data->cFileName, '\0', (MAX_PATH*2));
2888
2889         /* Truncating a utf16 string like this might leave the last
2890          * char incomplete
2891          */
2892         memcpy (find_data->cFileName, utf16_basename,
2893                 bytes<(MAX_PATH*2)-2?bytes:(MAX_PATH*2)-2);
2894
2895         find_data->cAlternateFileName [0] = 0;  /* not used */
2896
2897         g_free (utf8_basename);
2898         g_free (utf8_filename);
2899         g_free (utf16_basename);
2900
2901 cleanup:
2902         thr_ret = _wapi_handle_unlock_handle (handle);
2903         g_assert (thr_ret == 0);
2904         
2905         return(ret);
2906 }
2907
2908 /**
2909  * FindClose:
2910  * @wapi_handle: the find handle to close.
2911  *
2912  * Closes find handle @wapi_handle
2913  *
2914  * Return value: %TRUE on success, %FALSE otherwise.
2915  */
2916 gboolean FindClose (gpointer handle)
2917 {
2918         struct _WapiHandle_find *find_handle;
2919         gboolean ok;
2920         int thr_ret;
2921
2922         if (handle == NULL) {
2923                 SetLastError (ERROR_INVALID_HANDLE);
2924                 return(FALSE);
2925         }
2926         
2927         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FIND,
2928                                 (gpointer *)&find_handle);
2929         if(ok==FALSE) {
2930                 g_warning ("%s: error looking up find handle %p", __func__,
2931                            handle);
2932                 SetLastError (ERROR_INVALID_HANDLE);
2933                 return(FALSE);
2934         }
2935
2936         thr_ret = _wapi_handle_lock_handle (handle);
2937         g_assert (thr_ret == 0);
2938         
2939         g_strfreev (find_handle->namelist);
2940         g_free (find_handle->dir_part);
2941
2942         thr_ret = _wapi_handle_unlock_handle (handle);
2943         g_assert (thr_ret == 0);
2944         
2945         _wapi_handle_unref (handle);
2946         
2947         return(TRUE);
2948 }
2949
2950 /**
2951  * CreateDirectory:
2952  * @name: a pointer to a NULL-terminated unicode string, that names
2953  * the directory to be created.
2954  * @security: ignored for now
2955  *
2956  * Creates directory @name
2957  *
2958  * Return value: %TRUE on success, %FALSE otherwise.
2959  */
2960 gboolean CreateDirectory (const gunichar2 *name,
2961                           WapiSecurityAttributes *security)
2962 {
2963         gchar *utf8_name;
2964         int result;
2965         
2966         if (name == NULL) {
2967                 DEBUG("%s: name is NULL", __func__);
2968
2969                 SetLastError (ERROR_INVALID_NAME);
2970                 return(FALSE);
2971         }
2972         
2973         utf8_name = mono_unicode_to_external (name);
2974         if (utf8_name == NULL) {
2975                 DEBUG ("%s: unicode conversion returned NULL", __func__);
2976         
2977                 SetLastError (ERROR_INVALID_NAME);
2978                 return FALSE;
2979         }
2980
2981         result = _wapi_mkdir (utf8_name, 0777);
2982
2983         if (result == 0) {
2984                 g_free (utf8_name);
2985                 return TRUE;
2986         }
2987
2988         _wapi_set_last_path_error_from_errno (NULL, utf8_name);
2989         g_free (utf8_name);
2990         return FALSE;
2991 }
2992
2993 /**
2994  * RemoveDirectory:
2995  * @name: a pointer to a NULL-terminated unicode string, that names
2996  * the directory to be removed.
2997  *
2998  * Removes directory @name
2999  *
3000  * Return value: %TRUE on success, %FALSE otherwise.
3001  */
3002 gboolean RemoveDirectory (const gunichar2 *name)
3003 {
3004         gchar *utf8_name;
3005         int result;
3006         
3007         if (name == NULL) {
3008                 DEBUG("%s: name is NULL", __func__);
3009
3010                 SetLastError (ERROR_INVALID_NAME);
3011                 return(FALSE);
3012         }
3013
3014         utf8_name = mono_unicode_to_external (name);
3015         if (utf8_name == NULL) {
3016                 DEBUG ("%s: unicode conversion returned NULL", __func__);
3017                 
3018                 SetLastError (ERROR_INVALID_NAME);
3019                 return FALSE;
3020         }
3021
3022         result = _wapi_rmdir (utf8_name);
3023         if (result == -1) {
3024                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3025                 g_free (utf8_name);
3026                 
3027                 return(FALSE);
3028         }
3029         g_free (utf8_name);
3030
3031         return(TRUE);
3032 }
3033
3034 /**
3035  * GetFileAttributes:
3036  * @name: a pointer to a NULL-terminated unicode filename.
3037  *
3038  * Gets the attributes for @name;
3039  *
3040  * Return value: %INVALID_FILE_ATTRIBUTES on failure
3041  */
3042 guint32 GetFileAttributes (const gunichar2 *name)
3043 {
3044         gchar *utf8_name;
3045         struct stat buf, linkbuf;
3046         int result;
3047         guint32 ret;
3048         
3049         if (name == NULL) {
3050                 DEBUG("%s: name is NULL", __func__);
3051
3052                 SetLastError (ERROR_INVALID_NAME);
3053                 return(FALSE);
3054         }
3055         
3056         utf8_name = mono_unicode_to_external (name);
3057         if (utf8_name == NULL) {
3058                 DEBUG ("%s: unicode conversion returned NULL", __func__);
3059
3060                 SetLastError (ERROR_INVALID_PARAMETER);
3061                 return (INVALID_FILE_ATTRIBUTES);
3062         }
3063
3064         result = _wapi_stat (utf8_name, &buf);
3065         if (result == -1 && errno == ENOENT) {
3066                 /* Might be a dangling symlink... */
3067                 result = _wapi_lstat (utf8_name, &buf);
3068         }
3069
3070         if (result != 0) {
3071                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3072                 g_free (utf8_name);
3073                 return (INVALID_FILE_ATTRIBUTES);
3074         }
3075
3076 #ifndef __native_client__
3077         result = _wapi_lstat (utf8_name, &linkbuf);
3078         if (result != 0) {
3079                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3080                 g_free (utf8_name);
3081                 return (INVALID_FILE_ATTRIBUTES);
3082         }
3083 #endif
3084         
3085 #ifdef __native_client__
3086         ret = _wapi_stat_to_file_attributes (utf8_name, &buf, NULL);
3087 #else
3088         ret = _wapi_stat_to_file_attributes (utf8_name, &buf, &linkbuf);
3089 #endif
3090         
3091         g_free (utf8_name);
3092
3093         return(ret);
3094 }
3095
3096 /**
3097  * GetFileAttributesEx:
3098  * @name: a pointer to a NULL-terminated unicode filename.
3099  * @level: must be GetFileExInfoStandard
3100  * @info: pointer to a WapiFileAttributesData structure
3101  *
3102  * Gets attributes, size and filetimes for @name;
3103  *
3104  * Return value: %TRUE on success, %FALSE on failure
3105  */
3106 gboolean GetFileAttributesEx (const gunichar2 *name, WapiGetFileExInfoLevels level, gpointer info)
3107 {
3108         gchar *utf8_name;
3109         WapiFileAttributesData *data;
3110
3111         struct stat buf, linkbuf;
3112         time_t create_time;
3113         int result;
3114         
3115         if (level != GetFileExInfoStandard) {
3116                 DEBUG ("%s: info level %d not supported.", __func__,
3117                            level);
3118
3119                 SetLastError (ERROR_INVALID_PARAMETER);
3120                 return FALSE;
3121         }
3122         
3123         if (name == NULL) {
3124                 DEBUG("%s: name is NULL", __func__);
3125
3126                 SetLastError (ERROR_INVALID_NAME);
3127                 return(FALSE);
3128         }
3129
3130         utf8_name = mono_unicode_to_external (name);
3131         if (utf8_name == NULL) {
3132                 DEBUG ("%s: unicode conversion returned NULL", __func__);
3133
3134                 SetLastError (ERROR_INVALID_PARAMETER);
3135                 return FALSE;
3136         }
3137
3138         result = _wapi_stat (utf8_name, &buf);
3139         if (result == -1 && errno == ENOENT) {
3140                 /* Might be a dangling symlink... */
3141                 result = _wapi_lstat (utf8_name, &buf);
3142         }
3143         
3144         if (result != 0) {
3145                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3146                 g_free (utf8_name);
3147                 return FALSE;
3148         }
3149
3150         result = _wapi_lstat (utf8_name, &linkbuf);
3151         if (result != 0) {
3152                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3153                 g_free (utf8_name);
3154                 return(FALSE);
3155         }
3156
3157         /* fill data block */
3158
3159         data = (WapiFileAttributesData *)info;
3160
3161         if (buf.st_mtime < buf.st_ctime)
3162                 create_time = buf.st_mtime;
3163         else
3164                 create_time = buf.st_ctime;
3165         
3166         data->dwFileAttributes = _wapi_stat_to_file_attributes (utf8_name,
3167                                                                 &buf,
3168                                                                 &linkbuf);
3169
3170         g_free (utf8_name);
3171
3172         _wapi_time_t_to_filetime (create_time, &data->ftCreationTime);
3173         _wapi_time_t_to_filetime (buf.st_atime, &data->ftLastAccessTime);
3174         _wapi_time_t_to_filetime (buf.st_mtime, &data->ftLastWriteTime);
3175
3176         if (data->dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
3177                 data->nFileSizeHigh = 0;
3178                 data->nFileSizeLow = 0;
3179         }
3180         else {
3181                 data->nFileSizeHigh = buf.st_size >> 32;
3182                 data->nFileSizeLow = buf.st_size & 0xFFFFFFFF;
3183         }
3184
3185         return TRUE;
3186 }
3187
3188 /**
3189  * SetFileAttributes
3190  * @name: name of file
3191  * @attrs: attributes to set
3192  *
3193  * Changes the attributes on a named file.
3194  *
3195  * Return value: %TRUE on success, %FALSE on failure.
3196  */
3197 extern gboolean SetFileAttributes (const gunichar2 *name, guint32 attrs)
3198 {
3199         /* FIXME: think of something clever to do on unix */
3200         gchar *utf8_name;
3201         struct stat buf;
3202         int result;
3203
3204         /*
3205          * Currently we only handle one *internal* case, with a value that is
3206          * not standard: 0x80000000, which means `set executable bit'
3207          */
3208         
3209         if (name == NULL) {
3210                 DEBUG("%s: name is NULL", __func__);
3211
3212                 SetLastError (ERROR_INVALID_NAME);
3213                 return(FALSE);
3214         }
3215
3216         utf8_name = mono_unicode_to_external (name);
3217         if (utf8_name == NULL) {
3218                 DEBUG ("%s: unicode conversion returned NULL", __func__);
3219
3220                 SetLastError (ERROR_INVALID_NAME);
3221                 return FALSE;
3222         }
3223
3224         result = _wapi_stat (utf8_name, &buf);
3225         if (result == -1 && errno == ENOENT) {
3226                 /* Might be a dangling symlink... */
3227                 result = _wapi_lstat (utf8_name, &buf);
3228         }
3229
3230         if (result != 0) {
3231                 _wapi_set_last_path_error_from_errno (NULL, utf8_name);
3232                 g_free (utf8_name);
3233                 return FALSE;
3234         }
3235
3236         /* Contrary to the documentation, ms allows NORMAL to be
3237          * specified along with other attributes, so dont bother to
3238          * catch that case here.
3239          */
3240         if (attrs & FILE_ATTRIBUTE_READONLY) {
3241                 result = _wapi_chmod (utf8_name, buf.st_mode & ~(S_IWUSR | S_IWOTH | S_IWGRP));
3242         } else {
3243                 result = _wapi_chmod (utf8_name, buf.st_mode | S_IWUSR);
3244         }
3245
3246         /* Ignore the other attributes for now */
3247
3248         if (attrs & 0x80000000){
3249                 mode_t exec_mask = 0;
3250
3251                 if ((buf.st_mode & S_IRUSR) != 0)
3252                         exec_mask |= S_IXUSR;
3253
3254                 if ((buf.st_mode & S_IRGRP) != 0)
3255                         exec_mask |= S_IXGRP;
3256
3257                 if ((buf.st_mode & S_IROTH) != 0)
3258                         exec_mask |= S_IXOTH;
3259
3260                 result = chmod (utf8_name, buf.st_mode | exec_mask);
3261         }
3262         /* Don't bother to reset executable (might need to change this
3263          * policy)
3264          */
3265         
3266         g_free (utf8_name);
3267
3268         return(TRUE);
3269 }
3270
3271 /**
3272  * GetCurrentDirectory
3273  * @length: size of the buffer
3274  * @buffer: pointer to buffer that recieves path
3275  *
3276  * Retrieves the current directory for the current process.
3277  *
3278  * Return value: number of characters in buffer on success, zero on failure
3279  */
3280 extern guint32 GetCurrentDirectory (guint32 length, gunichar2 *buffer)
3281 {
3282         gunichar2 *utf16_path;
3283         glong count;
3284         gsize bytes;
3285
3286 #ifdef __native_client__
3287         gchar *path = g_get_current_dir ();
3288         if (length < strlen(path) + 1 || path == NULL)
3289                 return 0;
3290         memcpy (buffer, path, strlen(path) + 1);
3291 #else
3292         if (getcwd ((char*)buffer, length) == NULL) {
3293                 if (errno == ERANGE) { /*buffer length is not big enough */ 
3294                         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*/
3295                         if (path == NULL)
3296                                 return 0;
3297                         utf16_path = mono_unicode_from_external (path, &bytes);
3298                         g_free (utf16_path);
3299                         g_free (path);
3300                         return (bytes/2)+1;
3301                 }
3302                 _wapi_set_last_error_from_errno ();
3303                 return 0;
3304         }
3305 #endif
3306
3307         utf16_path = mono_unicode_from_external ((gchar*)buffer, &bytes);
3308         count = (bytes/2)+1;
3309         g_assert (count <= length); /*getcwd must have failed before with ERANGE*/
3310
3311         /* Add the terminator */
3312         memset (buffer, '\0', bytes+2);
3313         memcpy (buffer, utf16_path, bytes);
3314         
3315         g_free (utf16_path);
3316
3317         return count;
3318 }
3319
3320 /**
3321  * SetCurrentDirectory
3322  * @path: path to new directory
3323  *
3324  * Changes the directory path for the current process.
3325  *
3326  * Return value: %TRUE on success, %FALSE on failure.
3327  */
3328 extern gboolean SetCurrentDirectory (const gunichar2 *path)
3329 {
3330         gchar *utf8_path;
3331         gboolean result;
3332
3333         if (path == NULL) {
3334                 SetLastError (ERROR_INVALID_PARAMETER);
3335                 return(FALSE);
3336         }
3337         
3338         utf8_path = mono_unicode_to_external (path);
3339         if (_wapi_chdir (utf8_path) != 0) {
3340                 _wapi_set_last_error_from_errno ();
3341                 result = FALSE;
3342         }
3343         else
3344                 result = TRUE;
3345
3346         g_free (utf8_path);
3347         return result;
3348 }
3349
3350 gboolean CreatePipe (gpointer *readpipe, gpointer *writepipe,
3351                      WapiSecurityAttributes *security G_GNUC_UNUSED, guint32 size)
3352 {
3353         struct _WapiHandle_file pipe_read_handle = {0};
3354         struct _WapiHandle_file pipe_write_handle = {0};
3355         gpointer read_handle;
3356         gpointer write_handle;
3357         int filedes[2];
3358         int ret;
3359         
3360         mono_once (&io_ops_once, io_ops_init);
3361         
3362         DEBUG ("%s: Creating pipe", __func__);
3363
3364         ret=pipe (filedes);
3365         if(ret==-1) {
3366                 DEBUG ("%s: Error creating pipe: %s", __func__,
3367                            strerror (errno));
3368                 
3369                 _wapi_set_last_error_from_errno ();
3370                 return(FALSE);
3371         }
3372
3373         if (filedes[0] >= _wapi_fd_reserve ||
3374             filedes[1] >= _wapi_fd_reserve) {
3375                 DEBUG ("%s: File descriptor is too big", __func__);
3376
3377                 SetLastError (ERROR_TOO_MANY_OPEN_FILES);
3378                 
3379                 close (filedes[0]);
3380                 close (filedes[1]);
3381                 
3382                 return(FALSE);
3383         }
3384         
3385         /* filedes[0] is open for reading, filedes[1] for writing */
3386
3387         pipe_read_handle.fd = filedes [0];
3388         pipe_read_handle.fileaccess = GENERIC_READ;
3389         read_handle = _wapi_handle_new_fd (WAPI_HANDLE_PIPE, filedes[0],
3390                                            &pipe_read_handle);
3391         if (read_handle == _WAPI_HANDLE_INVALID) {
3392                 g_warning ("%s: error creating pipe read handle", __func__);
3393                 close (filedes[0]);
3394                 close (filedes[1]);
3395                 SetLastError (ERROR_GEN_FAILURE);
3396                 
3397                 return(FALSE);
3398         }
3399         
3400         pipe_write_handle.fd = filedes [1];
3401         pipe_write_handle.fileaccess = GENERIC_WRITE;
3402         write_handle = _wapi_handle_new_fd (WAPI_HANDLE_PIPE, filedes[1],
3403                                             &pipe_write_handle);
3404         if (write_handle == _WAPI_HANDLE_INVALID) {
3405                 g_warning ("%s: error creating pipe write handle", __func__);
3406                 _wapi_handle_unref (read_handle);
3407                 
3408                 close (filedes[0]);
3409                 close (filedes[1]);
3410                 SetLastError (ERROR_GEN_FAILURE);
3411                 
3412                 return(FALSE);
3413         }
3414         
3415         *readpipe = read_handle;
3416         *writepipe = write_handle;
3417
3418         DEBUG ("%s: Returning pipe: read handle %p, write handle %p",
3419                    __func__, read_handle, write_handle);
3420
3421         return(TRUE);
3422 }
3423
3424 #ifdef HAVE_GETFSSTAT
3425 /* Darwin has getfsstat */
3426 gint32 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3427 {
3428         struct statfs *stats;
3429         int size, n, i;
3430         gunichar2 *dir;
3431         glong length, total = 0;
3432         
3433         n = getfsstat (NULL, 0, MNT_NOWAIT);
3434         if (n == -1)
3435                 return 0;
3436         size = n * sizeof (struct statfs);
3437         stats = (struct statfs *) g_malloc (size);
3438         if (stats == NULL)
3439                 return 0;
3440         if (getfsstat (stats, size, MNT_NOWAIT) == -1){
3441                 g_free (stats);
3442                 return 0;
3443         }
3444         for (i = 0; i < n; i++){
3445                 dir = g_utf8_to_utf16 (stats [i].f_mntonname, -1, NULL, &length, NULL);
3446                 if (total + length < len){
3447                         memcpy (buf + total, dir, sizeof (gunichar2) * length);
3448                         buf [total+length] = 0;
3449                 } 
3450                 g_free (dir);
3451                 total += length + 1;
3452         }
3453         if (total < len)
3454                 buf [total] = 0;
3455         total++;
3456         g_free (stats);
3457         return total;
3458 }
3459 #else
3460 /* In-place octal sequence replacement */
3461 static void
3462 unescape_octal (gchar *str)
3463 {
3464         gchar *rptr;
3465         gchar *wptr;
3466
3467         if (str == NULL)
3468                 return;
3469
3470         rptr = wptr = str;
3471         while (*rptr != '\0') {
3472                 if (*rptr == '\\') {
3473                         char c;
3474                         rptr++;
3475                         c = (*(rptr++) - '0') << 6;
3476                         c += (*(rptr++) - '0') << 3;
3477                         c += *(rptr++) - '0';
3478                         *wptr++ = c;
3479                 } else if (wptr != rptr) {
3480                         *wptr++ = *rptr++;
3481                 } else {
3482                         rptr++; wptr++;
3483                 }
3484         }
3485         *wptr = '\0';
3486 }
3487 static gint32 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf);
3488
3489 #if __linux__
3490 #define GET_LOGICAL_DRIVE_STRINGS_BUFFER 512
3491 #define GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER 512
3492 #define GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER 64
3493
3494 typedef struct 
3495 {
3496         glong total;
3497         guint32 buffer_index;
3498         guint32 mountpoint_index;
3499         guint32 field_number;
3500         guint32 allocated_size;
3501         guint32 fsname_index;
3502         guint32 fstype_index;
3503         gchar mountpoint [GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER + 1];
3504         gchar *mountpoint_allocated;
3505         gchar buffer [GET_LOGICAL_DRIVE_STRINGS_BUFFER];
3506         gchar fsname [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
3507         gchar fstype [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
3508         ssize_t nbytes;
3509         gchar delimiter;
3510         gboolean check_mount_source;
3511 } LinuxMountInfoParseState;
3512
3513 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3514 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3515 static void append_to_mountpoint (LinuxMountInfoParseState *state);
3516 static gboolean add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3517
3518 gint32 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3519 {
3520         int fd;
3521         gint32 ret = 0;
3522         LinuxMountInfoParseState state;
3523         gboolean (*parser)(guint32, gunichar2*, LinuxMountInfoParseState*) = NULL;
3524
3525         memset (buf, 0, len * sizeof (gunichar2));
3526         fd = open ("/proc/self/mountinfo", O_RDONLY);
3527         if (fd != -1)
3528                 parser = GetLogicalDriveStrings_MountInfo;
3529         else {
3530                 fd = open ("/proc/mounts", O_RDONLY);
3531                 if (fd != -1)
3532                         parser = GetLogicalDriveStrings_Mounts;
3533         }
3534
3535         if (!parser) {
3536                 ret = GetLogicalDriveStrings_Mtab (len, buf);
3537                 goto done_and_out;
3538         }
3539
3540         memset (&state, 0, sizeof (LinuxMountInfoParseState));
3541         state.field_number = 1;
3542         state.delimiter = ' ';
3543
3544         while ((state.nbytes = read (fd, state.buffer, GET_LOGICAL_DRIVE_STRINGS_BUFFER)) > 0) {
3545                 state.buffer_index = 0;
3546
3547                 while ((*parser)(len, buf, &state)) {
3548                         if (state.buffer [state.buffer_index] == '\n') {
3549                                 gboolean quit = add_drive_string (len, buf, &state);
3550                                 state.field_number = 1;
3551                                 state.buffer_index++;
3552                                 if (state.mountpoint_allocated) {
3553                                         g_free (state.mountpoint_allocated);
3554                                         state.mountpoint_allocated = NULL;
3555                                 }
3556                                 if (quit) {
3557                                         ret = state.total;
3558                                         goto done_and_out;
3559                                 }
3560                         }
3561                 }
3562         };
3563         ret = state.total;
3564
3565   done_and_out:
3566         if (fd != -1)
3567                 close (fd);
3568         return ret;
3569 }
3570
3571 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3572 {
3573         gchar *ptr;
3574
3575         if (state->field_number == 1)
3576                 state->check_mount_source = TRUE;
3577
3578         while (state->buffer_index < (guint32)state->nbytes) {
3579                 if (state->buffer [state->buffer_index] == state->delimiter) {
3580                         state->field_number++;
3581                         switch (state->field_number) {
3582                                 case 2:
3583                                         state->mountpoint_index = 0;
3584                                         break;
3585
3586                                 case 3:
3587                                         if (state->mountpoint_allocated)
3588                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
3589                                         else
3590                                                 state->mountpoint [state->mountpoint_index] = 0;
3591                                         break;
3592
3593                                 default:
3594                                         ptr = (gchar*)memchr (state->buffer + state->buffer_index, '\n', GET_LOGICAL_DRIVE_STRINGS_BUFFER - state->buffer_index);
3595                                         if (ptr)
3596                                                 state->buffer_index = (ptr - (gchar*)state->buffer) - 1;
3597                                         else
3598                                                 state->buffer_index = state->nbytes;
3599                                         return TRUE;
3600                         }
3601                         state->buffer_index++;
3602                         continue;
3603                 } else if (state->buffer [state->buffer_index] == '\n')
3604                         return TRUE;
3605
3606                 switch (state->field_number) {
3607                         case 1:
3608                                 if (state->check_mount_source) {
3609                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
3610                                                 /* We can ignore the rest, it's a device
3611                                                  * path */
3612                                                 state->check_mount_source = FALSE;
3613                                                 state->fsname [state->fsname_index++] = '/';
3614                                                 break;
3615                                         }
3616                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3617                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
3618                                 }
3619                                 break;
3620
3621                         case 2:
3622                                 append_to_mountpoint (state);
3623                                 break;
3624
3625                         case 3:
3626                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3627                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
3628                                 break;
3629                 }
3630
3631                 state->buffer_index++;
3632         }
3633
3634         return FALSE;
3635 }
3636
3637 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3638 {
3639         while (state->buffer_index < (guint32)state->nbytes) {
3640                 if (state->buffer [state->buffer_index] == state->delimiter) {
3641                         state->field_number++;
3642                         switch (state->field_number) {
3643                                 case 5:
3644                                         state->mountpoint_index = 0;
3645                                         break;
3646
3647                                 case 6:
3648                                         if (state->mountpoint_allocated)
3649                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
3650                                         else
3651                                                 state->mountpoint [state->mountpoint_index] = 0;
3652                                         break;
3653
3654                                 case 7:
3655                                         state->delimiter = '-';
3656                                         break;
3657
3658                                 case 8:
3659                                         state->delimiter = ' ';
3660                                         break;
3661
3662                                 case 10:
3663                                         state->check_mount_source = TRUE;
3664                                         break;
3665                         }
3666                         state->buffer_index++;
3667                         continue;
3668                 } else if (state->buffer [state->buffer_index] == '\n')
3669                         return TRUE;
3670
3671                 switch (state->field_number) {
3672                         case 5:
3673                                 append_to_mountpoint (state);
3674                                 break;
3675
3676                         case 9:
3677                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3678                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
3679                                 break;
3680
3681                         case 10:
3682                                 if (state->check_mount_source) {
3683                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
3684                                                 /* We can ignore the rest, it's a device
3685                                                  * path */
3686                                                 state->check_mount_source = FALSE;
3687                                                 state->fsname [state->fsname_index++] = '/';
3688                                                 break;
3689                                         }
3690                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3691                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
3692                                 }
3693                                 break;
3694                 }
3695
3696                 state->buffer_index++;
3697         }
3698
3699         return FALSE;
3700 }
3701
3702 static void
3703 append_to_mountpoint (LinuxMountInfoParseState *state)
3704 {
3705         gchar ch = state->buffer [state->buffer_index];
3706         if (state->mountpoint_allocated) {
3707                 if (state->mountpoint_index >= state->allocated_size) {
3708                         guint32 newsize = (state->allocated_size << 1) + 1;
3709                         gchar *newbuf = g_malloc0 (newsize * sizeof (gchar));
3710
3711                         memcpy (newbuf, state->mountpoint_allocated, state->mountpoint_index);
3712                         g_free (state->mountpoint_allocated);
3713                         state->mountpoint_allocated = newbuf;
3714                         state->allocated_size = newsize;
3715                 }
3716                 state->mountpoint_allocated [state->mountpoint_index++] = ch;
3717         } else {
3718                 if (state->mountpoint_index >= GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER) {
3719                         state->allocated_size = (state->mountpoint_index << 1) + 1;
3720                         state->mountpoint_allocated = g_malloc0 (state->allocated_size * sizeof (gchar));
3721                         memcpy (state->mountpoint_allocated, state->mountpoint, state->mountpoint_index);
3722                         state->mountpoint_allocated [state->mountpoint_index++] = ch;
3723                 } else
3724                         state->mountpoint [state->mountpoint_index++] = ch;
3725         }
3726 }
3727
3728 static gboolean
3729 add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3730 {
3731         gboolean quit = FALSE;
3732         gboolean ignore_entry;
3733
3734         if (state->fsname_index == 1 && state->fsname [0] == '/')
3735                 ignore_entry = FALSE;
3736         else if (state->fsname_index == 0 || memcmp ("none", state->fsname, state->fsname_index) == 0)
3737                 ignore_entry = TRUE;
3738         else if (state->fstype_index >= 5 && memcmp ("fuse.", state->fstype, 5) == 0) {
3739                 /* Ignore GNOME's gvfs */
3740                 if (state->fstype_index == 21 && memcmp ("fuse.gvfs-fuse-daemon", state->fstype, state->fstype_index) == 0)
3741                         ignore_entry = TRUE;
3742                 else
3743                         ignore_entry = FALSE;
3744         } else if (state->fstype_index == 3 && memcmp ("nfs", state->fstype, state->fstype_index) == 0)
3745                 ignore_entry = FALSE;
3746         else
3747                 ignore_entry = TRUE;
3748
3749         if (!ignore_entry) {
3750                 gunichar2 *dir;
3751                 glong length;
3752                 gchar *mountpoint = state->mountpoint_allocated ? state->mountpoint_allocated : state->mountpoint;
3753
3754                 unescape_octal (mountpoint);
3755                 dir = g_utf8_to_utf16 (mountpoint, -1, NULL, &length, NULL);
3756                 if (state->total + length + 1 > len) {
3757                         quit = TRUE;
3758                         state->total = len * 2;
3759                 } else {
3760                         length++;
3761                         memcpy (buf + state->total, dir, sizeof (gunichar2) * length);
3762                         state->total += length;
3763                 }
3764                 g_free (dir);
3765         }
3766         state->fsname_index = 0;
3767         state->fstype_index = 0;
3768
3769         return quit;
3770 }
3771 #else
3772 gint32
3773 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3774 {
3775         return GetLogicalDriveStrings_Mtab (len, buf);
3776 }
3777 #endif
3778 static gint32
3779 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf)
3780 {
3781         FILE *fp;
3782         gunichar2 *ptr, *dir;
3783         glong length, total = 0;
3784         gchar buffer [512];
3785         gchar **splitted;
3786
3787         memset (buf, 0, sizeof (gunichar2) * (len + 1)); 
3788         buf [0] = '/';
3789         buf [1] = 0;
3790         buf [2] = 0;
3791
3792         /* Sigh, mntent and friends don't work well.
3793          * It stops on the first line that doesn't begin with a '/'.
3794          * (linux 2.6.5, libc 2.3.2.ds1-12) - Gonz */
3795         fp = fopen ("/etc/mtab", "rt");
3796         if (fp == NULL) {
3797                 fp = fopen ("/etc/mnttab", "rt");
3798                 if (fp == NULL)
3799                         return 1;
3800         }
3801
3802         ptr = buf;
3803         while (fgets (buffer, 512, fp) != NULL) {
3804                 if (*buffer != '/')
3805                         continue;
3806
3807                 splitted = g_strsplit (buffer, " ", 0);
3808                 if (!*splitted || !*(splitted + 1)) {
3809                         g_strfreev (splitted);
3810                         continue;
3811                 }
3812
3813                 unescape_octal (*(splitted + 1));
3814                 dir = g_utf8_to_utf16 (*(splitted + 1), -1, NULL, &length, NULL);
3815                 g_strfreev (splitted);
3816                 if (total + length + 1 > len) {
3817                         fclose (fp);
3818                         g_free (dir);
3819                         return len * 2; /* guess */
3820                 }
3821
3822                 memcpy (ptr + total, dir, sizeof (gunichar2) * length);
3823                 g_free (dir);
3824                 total += length + 1;
3825         }
3826
3827         fclose (fp);
3828         return total;
3829 /* Commented out, does not work with my mtab!!! - Gonz */
3830 #ifdef NOTENABLED /* HAVE_MNTENT_H */
3831 {
3832         FILE *fp;
3833         struct mntent *mnt;
3834         gunichar2 *ptr, *dir;
3835         glong len, total = 0;
3836         
3837
3838         fp = setmntent ("/etc/mtab", "rt");
3839         if (fp == NULL) {
3840                 fp = setmntent ("/etc/mnttab", "rt");
3841                 if (fp == NULL)
3842                         return;
3843         }
3844
3845         ptr = buf;
3846         while ((mnt = getmntent (fp)) != NULL) {
3847                 g_print ("GOT %s\n", mnt->mnt_dir);
3848                 dir = g_utf8_to_utf16 (mnt->mnt_dir, &len, NULL, NULL, NULL);
3849                 if (total + len + 1 > len) {
3850                         return len * 2; /* guess */
3851                 }
3852
3853                 memcpy (ptr + total, dir, sizeof (gunichar2) * len);
3854                 g_free (dir);
3855                 total += len + 1;
3856         }
3857
3858         endmntent (fp);
3859         return total;
3860 }
3861 #endif
3862 }
3863 #endif
3864
3865 #if defined(HAVE_STATVFS) || defined(HAVE_STATFS)
3866 gboolean GetDiskFreeSpaceEx(const gunichar2 *path_name, WapiULargeInteger *free_bytes_avail,
3867                             WapiULargeInteger *total_number_of_bytes,
3868                             WapiULargeInteger *total_number_of_free_bytes)
3869 {
3870 #ifdef HAVE_STATVFS
3871         struct statvfs fsstat;
3872 #elif defined(HAVE_STATFS)
3873         struct statfs fsstat;
3874 #endif
3875         gboolean isreadonly;
3876         gchar *utf8_path_name;
3877         int ret;
3878         unsigned long block_size;
3879
3880         if (path_name == NULL) {
3881                 utf8_path_name = g_strdup (g_get_current_dir());
3882                 if (utf8_path_name == NULL) {
3883                         SetLastError (ERROR_DIRECTORY);
3884                         return(FALSE);
3885                 }
3886         }
3887         else {
3888                 utf8_path_name = mono_unicode_to_external (path_name);
3889                 if (utf8_path_name == NULL) {
3890                         DEBUG("%s: unicode conversion returned NULL", __func__);
3891
3892                         SetLastError (ERROR_INVALID_NAME);
3893                         return(FALSE);
3894                 }
3895         }
3896
3897         do {
3898 #ifdef HAVE_STATVFS
3899                 ret = statvfs (utf8_path_name, &fsstat);
3900                 isreadonly = ((fsstat.f_flag & ST_RDONLY) == ST_RDONLY);
3901                 block_size = fsstat.f_frsize;
3902 #elif defined(HAVE_STATFS)
3903                 ret = statfs (utf8_path_name, &fsstat);
3904 #if defined (MNT_RDONLY)
3905                 isreadonly = ((fsstat.f_flags & MNT_RDONLY) == MNT_RDONLY);
3906 #elif defined (MS_RDONLY)
3907                 isreadonly = ((fsstat.f_flags & MS_RDONLY) == MS_RDONLY);
3908 #endif
3909                 block_size = fsstat.f_bsize;
3910 #endif
3911         } while(ret == -1 && errno == EINTR);
3912
3913         g_free(utf8_path_name);
3914
3915         if (ret == -1) {
3916                 _wapi_set_last_error_from_errno ();
3917                 DEBUG ("%s: statvfs failed: %s", __func__, strerror (errno));
3918                 return(FALSE);
3919         }
3920
3921         /* total number of free bytes for non-root */
3922         if (free_bytes_avail != NULL) {
3923                 if (isreadonly) {
3924                         free_bytes_avail->QuadPart = 0;
3925                 }
3926                 else {
3927                         free_bytes_avail->QuadPart = block_size * (guint64)fsstat.f_bavail;
3928                 }
3929         }
3930
3931         /* total number of bytes available for non-root */
3932         if (total_number_of_bytes != NULL) {
3933                 total_number_of_bytes->QuadPart = block_size * (guint64)fsstat.f_blocks;
3934         }
3935
3936         /* total number of bytes available for root */
3937         if (total_number_of_free_bytes != NULL) {
3938                 if (isreadonly) {
3939                         total_number_of_free_bytes->QuadPart = 0;
3940                 }
3941                 else {
3942                         total_number_of_free_bytes->QuadPart = block_size * (guint64)fsstat.f_bfree;
3943                 }
3944         }
3945         
3946         return(TRUE);
3947 }
3948 #else
3949 gboolean GetDiskFreeSpaceEx(const gunichar2 *path_name, WapiULargeInteger *free_bytes_avail,
3950                             WapiULargeInteger *total_number_of_bytes,
3951                             WapiULargeInteger *total_number_of_free_bytes)
3952 {
3953         if (free_bytes_avail != NULL) {
3954                 free_bytes_avail->QuadPart = (guint64) -1;
3955         }
3956
3957         if (total_number_of_bytes != NULL) {
3958                 total_number_of_bytes->QuadPart = (guint64) -1;
3959         }
3960
3961         if (total_number_of_free_bytes != NULL) {
3962                 total_number_of_free_bytes->QuadPart = (guint64) -1;
3963         }
3964
3965         return(TRUE);
3966 }
3967 #endif
3968
3969 /*
3970  * General Unix support
3971  */
3972 typedef struct {
3973         guint32 drive_type;
3974 #if __linux__
3975         const long fstypeid;
3976 #endif
3977         const gchar* fstype;
3978 } _wapi_drive_type;
3979
3980 static _wapi_drive_type _wapi_drive_types[] = {
3981 #if PLATFORM_MACOSX
3982         { DRIVE_REMOTE, "afp" },
3983         { DRIVE_REMOTE, "autofs" },
3984         { DRIVE_CDROM, "cddafs" },
3985         { DRIVE_CDROM, "cd9660" },
3986         { DRIVE_RAMDISK, "devfs" },
3987         { DRIVE_FIXED, "exfat" },
3988         { DRIVE_RAMDISK, "fdesc" },
3989         { DRIVE_REMOTE, "ftp" },
3990         { DRIVE_FIXED, "hfs" },
3991         { DRIVE_FIXED, "msdos" },
3992         { DRIVE_REMOTE, "nfs" },
3993         { DRIVE_FIXED, "ntfs" },
3994         { DRIVE_REMOTE, "smbfs" },
3995         { DRIVE_FIXED, "udf" },
3996         { DRIVE_REMOTE, "webdav" },
3997         { DRIVE_UNKNOWN, NULL }
3998 #elif __linux__
3999         { DRIVE_FIXED, ADFS_SUPER_MAGIC, "adfs"},
4000         { DRIVE_FIXED, AFFS_SUPER_MAGIC, "affs"},
4001         { DRIVE_REMOTE, AFS_SUPER_MAGIC, "afs"},
4002         { DRIVE_RAMDISK, AUTOFS_SUPER_MAGIC, "autofs"},
4003         { DRIVE_RAMDISK, AUTOFS_SBI_MAGIC, "autofs4"},
4004         { DRIVE_REMOTE, CODA_SUPER_MAGIC, "coda" },
4005         { DRIVE_RAMDISK, CRAMFS_MAGIC, "cramfs"},
4006         { DRIVE_RAMDISK, CRAMFS_MAGIC_WEND, "cramfs"},
4007         { DRIVE_REMOTE, CIFS_MAGIC_NUMBER, "cifs"},
4008         { DRIVE_RAMDISK, DEBUGFS_MAGIC, "debugfs"},
4009         { DRIVE_RAMDISK, SYSFS_MAGIC, "sysfs"},
4010         { DRIVE_RAMDISK, SECURITYFS_MAGIC, "securityfs"},
4011         { DRIVE_RAMDISK, SELINUX_MAGIC, "selinuxfs"},
4012         { DRIVE_RAMDISK, RAMFS_MAGIC, "ramfs"},
4013         { DRIVE_FIXED, SQUASHFS_MAGIC, "squashfs"},
4014         { DRIVE_FIXED, EFS_SUPER_MAGIC, "efs"},
4015         { DRIVE_FIXED, EXT2_SUPER_MAGIC, "ext"},
4016         { DRIVE_FIXED, EXT3_SUPER_MAGIC, "ext"},
4017         { DRIVE_FIXED, EXT4_SUPER_MAGIC, "ext"},
4018         { DRIVE_REMOTE, XENFS_SUPER_MAGIC, "xenfs"},
4019         { DRIVE_FIXED, BTRFS_SUPER_MAGIC, "btrfs"},
4020         { DRIVE_FIXED, HFS_SUPER_MAGIC, "hfs"},
4021         { DRIVE_FIXED, HFSPLUS_SUPER_MAGIC, "hfsplus"},
4022         { DRIVE_FIXED, HPFS_SUPER_MAGIC, "hpfs"},
4023         { DRIVE_RAMDISK, HUGETLBFS_MAGIC, "hugetlbfs"},
4024         { DRIVE_CDROM, ISOFS_SUPER_MAGIC, "iso"},
4025         { DRIVE_FIXED, JFFS2_SUPER_MAGIC, "jffs2"},
4026         { DRIVE_RAMDISK, ANON_INODE_FS_MAGIC, "anon_inode"},
4027         { DRIVE_FIXED, JFS_SUPER_MAGIC, "jfs"},
4028         { DRIVE_FIXED, MINIX_SUPER_MAGIC, "minix"},
4029         { DRIVE_FIXED, MINIX_SUPER_MAGIC2, "minix v2"},
4030         { DRIVE_FIXED, MINIX2_SUPER_MAGIC, "minix2"},
4031         { DRIVE_FIXED, MINIX2_SUPER_MAGIC2, "minix2 v2"},
4032         { DRIVE_FIXED, MINIX3_SUPER_MAGIC, "minix3"},
4033         { DRIVE_FIXED, MSDOS_SUPER_MAGIC, "msdos"},
4034         { DRIVE_REMOTE, NCP_SUPER_MAGIC, "ncp"},
4035         { DRIVE_REMOTE, NFS_SUPER_MAGIC, "nfs"},
4036         { DRIVE_FIXED, NTFS_SB_MAGIC, "ntfs"},
4037         { DRIVE_RAMDISK, OPENPROM_SUPER_MAGIC, "openpromfs"},
4038         { DRIVE_RAMDISK, PROC_SUPER_MAGIC, "proc"},
4039         { DRIVE_FIXED, QNX4_SUPER_MAGIC, "qnx4"},
4040         { DRIVE_FIXED, REISERFS_SUPER_MAGIC, "reiserfs"},
4041         { DRIVE_RAMDISK, ROMFS_MAGIC, "romfs"},
4042         { DRIVE_REMOTE, SMB_SUPER_MAGIC, "samba"},
4043         { DRIVE_RAMDISK, CGROUP_SUPER_MAGIC, "cgroupfs"},
4044         { DRIVE_RAMDISK, FUTEXFS_SUPER_MAGIC, "futexfs"},
4045         { DRIVE_FIXED, SYSV2_SUPER_MAGIC, "sysv2"},
4046         { DRIVE_FIXED, SYSV4_SUPER_MAGIC, "sysv4"},
4047         { DRIVE_RAMDISK, TMPFS_MAGIC, "tmpfs"},
4048         { DRIVE_RAMDISK, DEVPTS_SUPER_MAGIC, "devpts"},
4049         { DRIVE_CDROM, UDF_SUPER_MAGIC, "udf"},
4050         { DRIVE_FIXED, UFS_MAGIC, "ufs"},
4051         { DRIVE_FIXED, UFS_MAGIC_BW, "ufs"},
4052         { DRIVE_FIXED, UFS2_MAGIC, "ufs2"},
4053         { DRIVE_FIXED, UFS_CIGAM, "ufs"},
4054         { DRIVE_RAMDISK, USBDEVICE_SUPER_MAGIC, "usbdev"},
4055         { DRIVE_FIXED, XENIX_SUPER_MAGIC, "xenix"},
4056         { DRIVE_FIXED, XFS_SB_MAGIC, "xfs"},
4057         { DRIVE_RAMDISK, FUSE_SUPER_MAGIC, "fuse"},
4058         { DRIVE_FIXED, V9FS_MAGIC, "9p"},
4059         { DRIVE_REMOTE, CEPH_SUPER_MAGIC, "ceph"},
4060         { DRIVE_RAMDISK, CONFIGFS_MAGIC, "configfs"},
4061         { DRIVE_RAMDISK, ECRYPTFS_SUPER_MAGIC, "eCryptfs"},
4062         { DRIVE_FIXED, EXOFS_SUPER_MAGIC, "exofs"},
4063         { DRIVE_FIXED, VXFS_SUPER_MAGIC, "vxfs"},
4064         { DRIVE_FIXED, VXFS_OLT_MAGIC, "vxfs_olt"},
4065         { DRIVE_REMOTE, GFS2_MAGIC, "gfs2"},
4066         { DRIVE_FIXED, LOGFS_MAGIC_U32, "logfs"},
4067         { DRIVE_FIXED, OCFS2_SUPER_MAGIC, "ocfs2"},
4068         { DRIVE_FIXED, OMFS_MAGIC, "omfs"},
4069         { DRIVE_FIXED, UBIFS_SUPER_MAGIC, "ubifs"},
4070         { DRIVE_UNKNOWN, 0, NULL}
4071 #else
4072         { DRIVE_RAMDISK, "ramfs"      },
4073         { DRIVE_RAMDISK, "tmpfs"      },
4074         { DRIVE_RAMDISK, "proc"       },
4075         { DRIVE_RAMDISK, "sysfs"      },
4076         { DRIVE_RAMDISK, "debugfs"    },
4077         { DRIVE_RAMDISK, "devpts"     },
4078         { DRIVE_RAMDISK, "securityfs" },
4079         { DRIVE_CDROM,   "iso9660"    },
4080         { DRIVE_FIXED,   "ext2"       },
4081         { DRIVE_FIXED,   "ext3"       },
4082         { DRIVE_FIXED,   "ext4"       },
4083         { DRIVE_FIXED,   "sysv"       },
4084         { DRIVE_FIXED,   "reiserfs"   },
4085         { DRIVE_FIXED,   "ufs"        },
4086         { DRIVE_FIXED,   "vfat"       },
4087         { DRIVE_FIXED,   "msdos"      },
4088         { DRIVE_FIXED,   "udf"        },
4089         { DRIVE_FIXED,   "hfs"        },
4090         { DRIVE_FIXED,   "hpfs"       },
4091         { DRIVE_FIXED,   "qnx4"       },
4092         { DRIVE_FIXED,   "ntfs"       },
4093         { DRIVE_FIXED,   "ntfs-3g"    },
4094         { DRIVE_REMOTE,  "smbfs"      },
4095         { DRIVE_REMOTE,  "fuse"       },
4096         { DRIVE_REMOTE,  "nfs"        },
4097         { DRIVE_REMOTE,  "nfs4"       },
4098         { DRIVE_REMOTE,  "cifs"       },
4099         { DRIVE_REMOTE,  "ncpfs"      },
4100         { DRIVE_REMOTE,  "coda"       },
4101         { DRIVE_REMOTE,  "afs"        },
4102         { DRIVE_UNKNOWN, NULL         }
4103 #endif
4104 };
4105
4106 #if __linux__
4107 static guint32 _wapi_get_drive_type(long f_type)
4108 {
4109         _wapi_drive_type *current;
4110
4111         current = &_wapi_drive_types[0];
4112         while (current->drive_type != DRIVE_UNKNOWN) {
4113                 if (current->fstypeid == f_type)
4114                         return current->drive_type;
4115                 current++;
4116         }
4117
4118         return DRIVE_UNKNOWN;
4119 }
4120 #else
4121 static guint32 _wapi_get_drive_type(const gchar* fstype)
4122 {
4123         _wapi_drive_type *current;
4124
4125         current = &_wapi_drive_types[0];
4126         while (current->drive_type != DRIVE_UNKNOWN) {
4127                 if (strcmp (current->fstype, fstype) == 0)
4128                         break;
4129
4130                 current++;
4131         }
4132         
4133         return current->drive_type;
4134 }
4135 #endif
4136
4137 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4138 static guint32
4139 GetDriveTypeFromPath (const char *utf8_root_path_name)
4140 {
4141         struct statfs buf;
4142         
4143         if (statfs (utf8_root_path_name, &buf) == -1)
4144                 return DRIVE_UNKNOWN;
4145 #if PLATFORM_MACOSX
4146         return _wapi_get_drive_type (buf.f_fstypename);
4147 #else
4148         return _wapi_get_drive_type (buf.f_type);
4149 #endif
4150 }
4151 #else
4152 static guint32
4153 GetDriveTypeFromPath (const gchar *utf8_root_path_name)
4154 {
4155         guint32 drive_type;
4156         FILE *fp;
4157         gchar buffer [512];
4158         gchar **splitted;
4159
4160         fp = fopen ("/etc/mtab", "rt");
4161         if (fp == NULL) {
4162                 fp = fopen ("/etc/mnttab", "rt");
4163                 if (fp == NULL) 
4164                         return(DRIVE_UNKNOWN);
4165         }
4166
4167         drive_type = DRIVE_NO_ROOT_DIR;
4168         while (fgets (buffer, 512, fp) != NULL) {
4169                 splitted = g_strsplit (buffer, " ", 0);
4170                 if (!*splitted || !*(splitted + 1) || !*(splitted + 2)) {
4171                         g_strfreev (splitted);
4172                         continue;
4173                 }
4174
4175                 /* compare given root_path_name with the one from mtab, 
4176                   if length of utf8_root_path_name is zero it must be the root dir */
4177                 if (strcmp (*(splitted + 1), utf8_root_path_name) == 0 ||
4178                     (strcmp (*(splitted + 1), "/") == 0 && strlen (utf8_root_path_name) == 0)) {
4179                         drive_type = _wapi_get_drive_type (*(splitted + 2));
4180                         /* it is possible this path might be mounted again with
4181                            a known type...keep looking */
4182                         if (drive_type != DRIVE_UNKNOWN) {
4183                                 g_strfreev (splitted);
4184                                 break;
4185                         }
4186                 }
4187
4188                 g_strfreev (splitted);
4189         }
4190
4191         fclose (fp);
4192         return drive_type;
4193 }
4194 #endif
4195
4196 guint32 GetDriveType(const gunichar2 *root_path_name)
4197 {
4198         gchar *utf8_root_path_name;
4199         guint32 drive_type;
4200
4201         if (root_path_name == NULL) {
4202                 utf8_root_path_name = g_strdup (g_get_current_dir());
4203                 if (utf8_root_path_name == NULL) {
4204                         return(DRIVE_NO_ROOT_DIR);
4205                 }
4206         }
4207         else {
4208                 utf8_root_path_name = mono_unicode_to_external (root_path_name);
4209                 if (utf8_root_path_name == NULL) {
4210                         DEBUG("%s: unicode conversion returned NULL", __func__);
4211                         return(DRIVE_NO_ROOT_DIR);
4212                 }
4213                 
4214                 /* strip trailing slash for compare below */
4215                 if (g_str_has_suffix(utf8_root_path_name, "/") && utf8_root_path_name [1] != 0) {
4216                         utf8_root_path_name[strlen(utf8_root_path_name) - 1] = 0;
4217                 }
4218         }
4219         drive_type = GetDriveTypeFromPath (utf8_root_path_name);
4220         g_free (utf8_root_path_name);
4221
4222         return (drive_type);
4223 }
4224
4225 #if defined (PLATFORM_MACOSX) || defined (__linux__) || defined(PLATFORM_BSD) || defined(__native_client__) || defined(__FreeBSD_kernel__)
4226 static gchar*
4227 get_fstypename (gchar *utfpath)
4228 {
4229 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4230         struct statfs stat;
4231 #if __linux__
4232         _wapi_drive_type *current;
4233 #endif
4234         if (statfs (utfpath, &stat) == -1)
4235                 return NULL;
4236 #if PLATFORM_MACOSX
4237         return g_strdup (stat.f_fstypename);
4238 #else
4239         current = &_wapi_drive_types[0];
4240         while (current->drive_type != DRIVE_UNKNOWN) {
4241                 if (stat.f_type == current->fstypeid)
4242                         return g_strdup (current->fstype);
4243                 current++;
4244         }
4245         return NULL;
4246 #endif
4247 #else
4248         return NULL;
4249 #endif
4250 }
4251
4252 /* Linux has struct statfs which has a different layout */
4253 gboolean
4254 GetVolumeInformation (const gunichar2 *path, gunichar2 *volumename, int volumesize, int *outserial, int *maxcomp, int *fsflags, gunichar2 *fsbuffer, int fsbuffersize)
4255 {
4256         gchar *utfpath;
4257         gchar *fstypename;
4258         gboolean status = FALSE;
4259         glong len;
4260         
4261         // We only support getting the file system type
4262         if (fsbuffer == NULL)
4263                 return 0;
4264         
4265         utfpath = mono_unicode_to_external (path);
4266         if ((fstypename = get_fstypename (utfpath)) != NULL){
4267                 gunichar2 *ret = g_utf8_to_utf16 (fstypename, -1, NULL, &len, NULL);
4268                 if (ret != NULL && len < fsbuffersize){
4269                         memcpy (fsbuffer, ret, len * sizeof (gunichar2));
4270                         fsbuffer [len] = 0;
4271                         status = TRUE;
4272                 }
4273                 if (ret != NULL)
4274                         g_free (ret);
4275                 g_free (fstypename);
4276         }
4277         g_free (utfpath);
4278         return status;
4279 }
4280 #endif
4281
4282
4283 void
4284 _wapi_io_init (void)
4285 {
4286         mono_os_mutex_init (&stdhandle_mutex);
4287 }