Rename configure.in -> configure.ac. Based on PR #976.
[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 <dirent.h>
31 #include <fnmatch.h>
32 #include <stdio.h>
33 #include <utime.h>
34 #ifdef __linux__
35 #include <sys/ioctl.h>
36 #include <linux/fs.h>
37 #include <mono/utils/linux_magic.h>
38 #endif
39
40 #include <mono/io-layer/wapi.h>
41 #include <mono/io-layer/wapi-private.h>
42 #include <mono/io-layer/handles-private.h>
43 #include <mono/io-layer/io-private.h>
44 #include <mono/io-layer/timefuncs-private.h>
45 #include <mono/io-layer/thread-private.h>
46 #include <mono/io-layer/io-portability.h>
47 #include <mono/utils/strenc.h>
48
49 #if 0
50 #define DEBUG(...) g_message(__VA_ARGS__)
51 #define DEBUG_ENABLED 1
52 #else
53 #define DEBUG(...)
54 #endif
55
56 static void file_close (gpointer handle, gpointer data);
57 static WapiFileType file_getfiletype(void);
58 static gboolean file_read(gpointer handle, gpointer buffer,
59                           guint32 numbytes, guint32 *bytesread,
60                           WapiOverlapped *overlapped);
61 static gboolean file_write(gpointer handle, gconstpointer buffer,
62                            guint32 numbytes, guint32 *byteswritten,
63                            WapiOverlapped *overlapped);
64 static gboolean file_flush(gpointer handle);
65 static guint32 file_seek(gpointer handle, gint32 movedistance,
66                          gint32 *highmovedistance, WapiSeekMethod method);
67 static gboolean file_setendoffile(gpointer handle);
68 static guint32 file_getfilesize(gpointer handle, guint32 *highsize);
69 static gboolean file_getfiletime(gpointer handle, WapiFileTime *create_time,
70                                  WapiFileTime *last_access,
71                                  WapiFileTime *last_write);
72 static gboolean file_setfiletime(gpointer handle,
73                                  const WapiFileTime *create_time,
74                                  const WapiFileTime *last_access,
75                                  const WapiFileTime *last_write);
76 static guint32 GetDriveTypeFromPath (const gchar *utf8_root_path_name);
77
78 /* File handle is only signalled for overlapped IO */
79 struct _WapiHandleOps _wapi_file_ops = {
80         file_close,             /* close */
81         NULL,                   /* signal */
82         NULL,                   /* own */
83         NULL,                   /* is_owned */
84         NULL,                   /* special_wait */
85         NULL                    /* prewait */
86 };
87
88 void _wapi_file_details (gpointer handle_info)
89 {
90         struct _WapiHandle_file *file = (struct _WapiHandle_file *)handle_info;
91         
92         g_print ("[%20s] acc: %c%c%c, shr: %c%c%c, attrs: %5u",
93                  file->filename,
94                  file->fileaccess&GENERIC_READ?'R':'.',
95                  file->fileaccess&GENERIC_WRITE?'W':'.',
96                  file->fileaccess&GENERIC_EXECUTE?'X':'.',
97                  file->sharemode&FILE_SHARE_READ?'R':'.',
98                  file->sharemode&FILE_SHARE_WRITE?'W':'.',
99                  file->sharemode&FILE_SHARE_DELETE?'D':'.',
100                  file->attrs);
101 }
102
103 static void console_close (gpointer handle, gpointer data);
104 static WapiFileType console_getfiletype(void);
105 static gboolean console_read(gpointer handle, gpointer buffer,
106                              guint32 numbytes, guint32 *bytesread,
107                              WapiOverlapped *overlapped);
108 static gboolean console_write(gpointer handle, gconstpointer buffer,
109                               guint32 numbytes, guint32 *byteswritten,
110                               WapiOverlapped *overlapped);
111
112 /* Console is mostly the same as file, except it can block waiting for
113  * input or output
114  */
115 struct _WapiHandleOps _wapi_console_ops = {
116         console_close,          /* close */
117         NULL,                   /* signal */
118         NULL,                   /* own */
119         NULL,                   /* is_owned */
120         NULL,                   /* special_wait */
121         NULL                    /* prewait */
122 };
123
124 void _wapi_console_details (gpointer handle_info)
125 {
126         _wapi_file_details (handle_info);
127 }
128
129 /* Find handle has no ops.
130  */
131 struct _WapiHandleOps _wapi_find_ops = {
132         NULL,                   /* close */
133         NULL,                   /* signal */
134         NULL,                   /* own */
135         NULL,                   /* is_owned */
136         NULL,                   /* special_wait */
137         NULL                    /* prewait */
138 };
139
140 static void pipe_close (gpointer handle, gpointer data);
141 static WapiFileType pipe_getfiletype (void);
142 static gboolean pipe_read (gpointer handle, gpointer buffer, guint32 numbytes,
143                            guint32 *bytesread, WapiOverlapped *overlapped);
144 static gboolean pipe_write (gpointer handle, gconstpointer buffer,
145                             guint32 numbytes, guint32 *byteswritten,
146                             WapiOverlapped *overlapped);
147
148 /* Pipe handles
149  */
150 struct _WapiHandleOps _wapi_pipe_ops = {
151         pipe_close,             /* close */
152         NULL,                   /* signal */
153         NULL,                   /* own */
154         NULL,                   /* is_owned */
155         NULL,                   /* special_wait */
156         NULL                    /* prewait */
157 };
158
159 void _wapi_pipe_details (gpointer handle_info)
160 {
161         _wapi_file_details (handle_info);
162 }
163
164 static const struct {
165         /* File, console and pipe handles */
166         WapiFileType (*getfiletype)(void);
167         
168         /* File, console and pipe handles */
169         gboolean (*readfile)(gpointer handle, gpointer buffer,
170                              guint32 numbytes, guint32 *bytesread,
171                              WapiOverlapped *overlapped);
172         gboolean (*writefile)(gpointer handle, gconstpointer buffer,
173                               guint32 numbytes, guint32 *byteswritten,
174                               WapiOverlapped *overlapped);
175         gboolean (*flushfile)(gpointer handle);
176         
177         /* File handles */
178         guint32 (*seek)(gpointer handle, gint32 movedistance,
179                         gint32 *highmovedistance, WapiSeekMethod method);
180         gboolean (*setendoffile)(gpointer handle);
181         guint32 (*getfilesize)(gpointer handle, guint32 *highsize);
182         gboolean (*getfiletime)(gpointer handle, WapiFileTime *create_time,
183                                 WapiFileTime *last_access,
184                                 WapiFileTime *last_write);
185         gboolean (*setfiletime)(gpointer handle,
186                                 const WapiFileTime *create_time,
187                                 const WapiFileTime *last_access,
188                                 const WapiFileTime *last_write);
189 } io_ops[WAPI_HANDLE_COUNT]={
190         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
191         /* file */
192         {file_getfiletype,
193          file_read, file_write,
194          file_flush, file_seek,
195          file_setendoffile,
196          file_getfilesize,
197          file_getfiletime,
198          file_setfiletime},
199         /* console */
200         {console_getfiletype,
201          console_read,
202          console_write,
203          NULL, NULL, NULL, NULL, NULL, NULL},
204         /* thread */
205         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
206         /* sem */
207         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
208         /* mutex */
209         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
210         /* event */
211         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
212         /* socket (will need at least read and write) */
213         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
214         /* find */
215         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
216         /* process */
217         {NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL},
218         /* pipe */
219         {pipe_getfiletype,
220          pipe_read,
221          pipe_write,
222          NULL, NULL, NULL, NULL, NULL, NULL},
223 };
224
225 static mono_once_t io_ops_once=MONO_ONCE_INIT;
226 static gboolean lock_while_writing = FALSE;
227
228 static void io_ops_init (void)
229 {
230 /*      _wapi_handle_register_capabilities (WAPI_HANDLE_FILE, */
231 /*                                          WAPI_HANDLE_CAP_WAIT); */
232 /*      _wapi_handle_register_capabilities (WAPI_HANDLE_CONSOLE, */
233 /*                                          WAPI_HANDLE_CAP_WAIT); */
234
235         if (g_getenv ("MONO_STRICT_IO_EMULATION") != NULL) {
236                 lock_while_writing = TRUE;
237         }
238 }
239
240 /* Some utility functions.
241  */
242
243 /*
244  * Check if a file is writable by the current user.
245  *
246  * This is is a best effort kind of thing. It assumes a reasonable sane set
247  * of permissions by the underlying OS.
248  *
249  * We assume that basic unix permission bits are authoritative. Which might not
250  * be the case under systems with extended permissions systems (posix ACLs, SELinux, OSX/iOS sandboxing, etc)
251  *
252  * The choice of access as the fallback is due to the expected lower overhead compared to trying to open the file.
253  *
254  * The only expected problem with using access are for root, setuid or setgid programs as access is not consistent
255  * under those situations. It's to be expected that this should not happen in practice as those bits are very dangerous
256  * and should not be used with a dynamic runtime.
257  */
258 static gboolean
259 is_file_writable (struct stat *st, const char *path)
260 {
261         /* Is it globally writable? */
262         if (st->st_mode & S_IWOTH)
263                 return 1;
264
265         /* Am I the owner? */
266         if ((st->st_uid == geteuid ()) && (st->st_mode & S_IWUSR))
267                 return 1;
268
269         /* Am I in the same group? */
270         if ((st->st_gid == getegid ()) && (st->st_mode & S_IWGRP))
271                 return 1;
272
273         /* Fallback to using access(2). It's not ideal as it might not take into consideration euid/egid
274          * but it's the only sane option we have on unix.
275          */
276         return access (path, W_OK) == 0;
277 }
278
279
280 static guint32 _wapi_stat_to_file_attributes (const gchar *pathname,
281                                               struct stat *buf,
282                                               struct stat *lbuf)
283 {
284         guint32 attrs = 0;
285         gchar *filename;
286         
287         /* FIXME: this could definitely be better, but there seems to
288          * be no pattern to the attributes that are set
289          */
290
291         /* Sockets (0140000) != Directory (040000) + Regular file (0100000) */
292         if (S_ISSOCK (buf->st_mode))
293                 buf->st_mode &= ~S_IFSOCK; /* don't consider socket protection */
294
295         filename = _wapi_basename (pathname);
296
297         if (S_ISDIR (buf->st_mode)) {
298                 attrs = FILE_ATTRIBUTE_DIRECTORY;
299                 if (!is_file_writable (buf, pathname)) {
300                         attrs |= FILE_ATTRIBUTE_READONLY;
301                 }
302                 if (filename[0] == '.') {
303                         attrs |= FILE_ATTRIBUTE_HIDDEN;
304                 }
305         } else {
306                 if (!is_file_writable (buf, pathname)) {
307                         attrs = FILE_ATTRIBUTE_READONLY;
308
309                         if (filename[0] == '.') {
310                                 attrs |= FILE_ATTRIBUTE_HIDDEN;
311                         }
312                 } else if (filename[0] == '.') {
313                         attrs = FILE_ATTRIBUTE_HIDDEN;
314                 } else {
315                         attrs = FILE_ATTRIBUTE_NORMAL;
316                 }
317         }
318
319         if (lbuf != NULL) {
320                 if (S_ISLNK (lbuf->st_mode)) {
321                         attrs |= FILE_ATTRIBUTE_REPARSE_POINT;
322                 }
323         }
324         
325         g_free (filename);
326         
327         return attrs;
328 }
329
330 static void
331 _wapi_set_last_error_from_errno (void)
332 {
333         SetLastError (_wapi_get_win32_file_error (errno));
334 }
335
336 static void _wapi_set_last_path_error_from_errno (const gchar *dir,
337                                                   const gchar *path)
338 {
339         if (errno == ENOENT) {
340                 /* Check the path - if it's a missing directory then
341                  * we need to set PATH_NOT_FOUND not FILE_NOT_FOUND
342                  */
343                 gchar *dirname;
344
345
346                 if (dir == NULL) {
347                         dirname = _wapi_dirname (path);
348                 } else {
349                         dirname = g_strdup (dir);
350                 }
351                 
352                 if (_wapi_access (dirname, F_OK) == 0) {
353                         SetLastError (ERROR_FILE_NOT_FOUND);
354                 } else {
355                         SetLastError (ERROR_PATH_NOT_FOUND);
356                 }
357
358                 g_free (dirname);
359         } else {
360                 _wapi_set_last_error_from_errno ();
361         }
362 }
363
364 /* Handle ops.
365  */
366 static void file_close (gpointer handle, gpointer data)
367 {
368         struct _WapiHandle_file *file_handle = (struct _WapiHandle_file *)data;
369         int fd = file_handle->fd;
370         
371         DEBUG("%s: closing file handle %p [%s]", __func__, handle,
372                   file_handle->filename);
373
374         if (file_handle->attrs & FILE_FLAG_DELETE_ON_CLOSE)
375                 _wapi_unlink (file_handle->filename);
376         
377         g_free (file_handle->filename);
378         
379         if (file_handle->share_info)
380                 _wapi_handle_share_release (file_handle->share_info);
381         
382         close (fd);
383 }
384
385 static WapiFileType file_getfiletype(void)
386 {
387         return(FILE_TYPE_DISK);
388 }
389
390 static gboolean file_read(gpointer handle, gpointer buffer,
391                           guint32 numbytes, guint32 *bytesread,
392                           WapiOverlapped *overlapped)
393 {
394         struct _WapiHandle_file *file_handle;
395         gboolean ok;
396         int fd, ret;
397         
398         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
399                                 (gpointer *)&file_handle);
400         if(ok==FALSE) {
401                 g_warning ("%s: error looking up file handle %p", __func__,
402                            handle);
403                 SetLastError (ERROR_INVALID_HANDLE);
404                 return(FALSE);
405         }
406
407         fd = file_handle->fd;
408         if(bytesread!=NULL) {
409                 *bytesread=0;
410         }
411         
412         if(!(file_handle->fileaccess & GENERIC_READ) &&
413            !(file_handle->fileaccess & GENERIC_ALL)) {
414                 DEBUG("%s: handle %p doesn't have GENERIC_READ access: %u",
415                           __func__, handle, file_handle->fileaccess);
416
417                 SetLastError (ERROR_ACCESS_DENIED);
418                 return(FALSE);
419         }
420
421         do {
422                 ret = read (fd, buffer, numbytes);
423         } while (ret == -1 && errno == EINTR &&
424                  !_wapi_thread_cur_apc_pending());
425                         
426         if(ret==-1) {
427                 gint err = errno;
428
429                 DEBUG("%s: read of handle %p error: %s", __func__,
430                           handle, strerror(err));
431                 SetLastError (_wapi_get_win32_file_error (err));
432                 return(FALSE);
433         }
434                 
435         if (bytesread != NULL) {
436                 *bytesread = ret;
437         }
438                 
439         return(TRUE);
440 }
441
442 static gboolean file_write(gpointer handle, gconstpointer buffer,
443                            guint32 numbytes, guint32 *byteswritten,
444                            WapiOverlapped *overlapped G_GNUC_UNUSED)
445 {
446         struct _WapiHandle_file *file_handle;
447         gboolean ok;
448         int ret, fd;
449         off_t current_pos = 0;
450         
451         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
452                                 (gpointer *)&file_handle);
453         if(ok==FALSE) {
454                 g_warning ("%s: error looking up file handle %p", __func__,
455                            handle);
456                 SetLastError (ERROR_INVALID_HANDLE);
457                 return(FALSE);
458         }
459
460         fd = file_handle->fd;
461         
462         if(byteswritten!=NULL) {
463                 *byteswritten=0;
464         }
465         
466         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
467            !(file_handle->fileaccess & GENERIC_ALL)) {
468                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
469
470                 SetLastError (ERROR_ACCESS_DENIED);
471                 return(FALSE);
472         }
473         
474         if (lock_while_writing) {
475                 /* Need to lock the region we're about to write to,
476                  * because we only do advisory locking on POSIX
477                  * systems
478                  */
479                 current_pos = lseek (fd, (off_t)0, SEEK_CUR);
480                 if (current_pos == -1) {
481                         DEBUG ("%s: handle %p lseek failed: %s", __func__,
482                                    handle, strerror (errno));
483                         _wapi_set_last_error_from_errno ();
484                         return(FALSE);
485                 }
486                 
487                 if (_wapi_lock_file_region (fd, current_pos,
488                                             numbytes) == FALSE) {
489                         /* The error has already been set */
490                         return(FALSE);
491                 }
492         }
493                 
494         do {
495                 ret = write (fd, buffer, numbytes);
496         } while (ret == -1 && errno == EINTR &&
497                  !_wapi_thread_cur_apc_pending());
498         
499         if (lock_while_writing) {
500                 _wapi_unlock_file_region (fd, current_pos, numbytes);
501         }
502
503         if (ret == -1) {
504                 if (errno == EINTR) {
505                         ret = 0;
506                 } else {
507                         _wapi_set_last_error_from_errno ();
508                                 
509                         DEBUG("%s: write of handle %p error: %s",
510                                   __func__, handle, strerror(errno));
511
512                         return(FALSE);
513                 }
514         }
515         if (byteswritten != NULL) {
516                 *byteswritten = ret;
517         }
518         return(TRUE);
519 }
520
521 static gboolean file_flush(gpointer handle)
522 {
523         struct _WapiHandle_file *file_handle;
524         gboolean ok;
525         int ret, fd;
526         
527         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
528                                 (gpointer *)&file_handle);
529         if(ok==FALSE) {
530                 g_warning ("%s: error looking up file handle %p", __func__,
531                            handle);
532                 SetLastError (ERROR_INVALID_HANDLE);
533                 return(FALSE);
534         }
535
536         fd = file_handle->fd;
537
538         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
539            !(file_handle->fileaccess & GENERIC_ALL)) {
540                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
541
542                 SetLastError (ERROR_ACCESS_DENIED);
543                 return(FALSE);
544         }
545
546         ret=fsync(fd);
547         if (ret==-1) {
548                 DEBUG("%s: fsync of handle %p error: %s", __func__, handle,
549                           strerror(errno));
550
551                 _wapi_set_last_error_from_errno ();
552                 return(FALSE);
553         }
554         
555         return(TRUE);
556 }
557
558 static guint32 file_seek(gpointer handle, gint32 movedistance,
559                          gint32 *highmovedistance, WapiSeekMethod method)
560 {
561         struct _WapiHandle_file *file_handle;
562         gboolean ok;
563         gint64 offset, newpos;
564         int whence, fd;
565         guint32 ret;
566         
567         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
568                                 (gpointer *)&file_handle);
569         if(ok==FALSE) {
570                 g_warning ("%s: error looking up file handle %p", __func__,
571                            handle);
572                 SetLastError (ERROR_INVALID_HANDLE);
573                 return(INVALID_SET_FILE_POINTER);
574         }
575         
576         fd = file_handle->fd;
577
578         if(!(file_handle->fileaccess & GENERIC_READ) &&
579            !(file_handle->fileaccess & GENERIC_WRITE) &&
580            !(file_handle->fileaccess & GENERIC_ALL)) {
581                 DEBUG ("%s: handle %p doesn't have GENERIC_READ or GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
582
583                 SetLastError (ERROR_ACCESS_DENIED);
584                 return(INVALID_SET_FILE_POINTER);
585         }
586
587         switch(method) {
588         case FILE_BEGIN:
589                 whence=SEEK_SET;
590                 break;
591         case FILE_CURRENT:
592                 whence=SEEK_CUR;
593                 break;
594         case FILE_END:
595                 whence=SEEK_END;
596                 break;
597         default:
598                 DEBUG("%s: invalid seek type %d", __func__, method);
599
600                 SetLastError (ERROR_INVALID_PARAMETER);
601                 return(INVALID_SET_FILE_POINTER);
602         }
603
604 #ifdef HAVE_LARGE_FILE_SUPPORT
605         if(highmovedistance==NULL) {
606                 offset=movedistance;
607                 DEBUG("%s: setting offset to %lld (low %d)", __func__,
608                           offset, movedistance);
609         } else {
610                 offset=((gint64) *highmovedistance << 32) | (guint32)movedistance;
611                 
612                 DEBUG("%s: setting offset to %lld 0x%llx (high %d 0x%x, low %d 0x%x)", __func__, offset, offset, *highmovedistance, *highmovedistance, movedistance, movedistance);
613         }
614 #else
615         offset=movedistance;
616 #endif
617
618         DEBUG ("%s: moving handle %p by %lld bytes from %d", __func__,
619                    handle, (long long)offset, whence);
620
621 #ifdef PLATFORM_ANDROID
622         /* bionic doesn't support -D_FILE_OFFSET_BITS=64 */
623         newpos=lseek64(fd, offset, whence);
624 #else
625         newpos=lseek(fd, offset, whence);
626 #endif
627         if(newpos==-1) {
628                 DEBUG("%s: lseek on handle %p returned error %s",
629                           __func__, handle, strerror(errno));
630
631                 _wapi_set_last_error_from_errno ();
632                 return(INVALID_SET_FILE_POINTER);
633         }
634
635         DEBUG ("%s: lseek returns %lld", __func__, newpos);
636
637 #ifdef HAVE_LARGE_FILE_SUPPORT
638         ret=newpos & 0xFFFFFFFF;
639         if(highmovedistance!=NULL) {
640                 *highmovedistance=newpos>>32;
641         }
642 #else
643         ret=newpos;
644         if(highmovedistance!=NULL) {
645                 /* Accurate, but potentially dodgy :-) */
646                 *highmovedistance=0;
647         }
648 #endif
649
650         DEBUG ("%s: move of handle %p returning %d/%d", __func__,
651                    handle, ret, highmovedistance==NULL?0:*highmovedistance);
652
653         return(ret);
654 }
655
656 static gboolean file_setendoffile(gpointer handle)
657 {
658         struct _WapiHandle_file *file_handle;
659         gboolean ok;
660         struct stat statbuf;
661         off_t size, pos;
662         int ret, fd;
663         
664         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
665                                 (gpointer *)&file_handle);
666         if(ok==FALSE) {
667                 g_warning ("%s: error looking up file handle %p", __func__,
668                            handle);
669                 SetLastError (ERROR_INVALID_HANDLE);
670                 return(FALSE);
671         }
672         fd = file_handle->fd;
673         
674         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
675            !(file_handle->fileaccess & GENERIC_ALL)) {
676                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
677
678                 SetLastError (ERROR_ACCESS_DENIED);
679                 return(FALSE);
680         }
681
682         /* Find the current file position, and the file length.  If
683          * the file position is greater than the length, write to
684          * extend the file with a hole.  If the file position is less
685          * than the length, truncate the file.
686          */
687         
688         ret=fstat(fd, &statbuf);
689         if(ret==-1) {
690                 DEBUG ("%s: handle %p fstat failed: %s", __func__,
691                            handle, strerror(errno));
692
693                 _wapi_set_last_error_from_errno ();
694                 return(FALSE);
695         }
696         size=statbuf.st_size;
697
698         pos=lseek(fd, (off_t)0, SEEK_CUR);
699         if(pos==-1) {
700                 DEBUG("%s: handle %p lseek failed: %s", __func__,
701                           handle, strerror(errno));
702
703                 _wapi_set_last_error_from_errno ();
704                 return(FALSE);
705         }
706         
707 #ifdef FTRUNCATE_DOESNT_EXTEND
708         /* I haven't bothered to write the configure.ac stuff for this
709          * because I don't know if any platform needs it.  I'm leaving
710          * this code just in case though
711          */
712         if(pos>size) {
713                 /* Extend the file.  Use write() here, because some
714                  * manuals say that ftruncate() behaviour is undefined
715                  * when the file needs extending.  The POSIX spec says
716                  * that on XSI-conformant systems it extends, so if
717                  * every system we care about conforms, then we can
718                  * drop this write.
719                  */
720                 do {
721                         ret = write (fd, "", 1);
722                 } while (ret == -1 && errno == EINTR &&
723                          !_wapi_thread_cur_apc_pending());
724
725                 if(ret==-1) {
726                         DEBUG("%s: handle %p extend write failed: %s", __func__, handle, strerror(errno));
727
728                         _wapi_set_last_error_from_errno ();
729                         return(FALSE);
730                 }
731
732                 /* And put the file position back after the write */
733                 ret = lseek (fd, pos, SEEK_SET);
734                 if (ret == -1) {
735                         DEBUG ("%s: handle %p second lseek failed: %s",
736                                    __func__, handle, strerror(errno));
737
738                         _wapi_set_last_error_from_errno ();
739                         return(FALSE);
740                 }
741         }
742 #endif
743
744 /* Native Client has no ftruncate function, even in standalone sel_ldr. */
745 #ifndef __native_client__
746         /* always truncate, because the extend write() adds an extra
747          * byte to the end of the file
748          */
749         do {
750                 ret=ftruncate(fd, pos);
751         }
752         while (ret==-1 && errno==EINTR && !_wapi_thread_cur_apc_pending()); 
753         if(ret==-1) {
754                 DEBUG("%s: handle %p ftruncate failed: %s", __func__,
755                           handle, strerror(errno));
756                 
757                 _wapi_set_last_error_from_errno ();
758                 return(FALSE);
759         }
760 #endif
761                 
762         return(TRUE);
763 }
764
765 static guint32 file_getfilesize(gpointer handle, guint32 *highsize)
766 {
767         struct _WapiHandle_file *file_handle;
768         gboolean ok;
769         struct stat statbuf;
770         guint32 size;
771         int ret;
772         int fd;
773         
774         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
775                                 (gpointer *)&file_handle);
776         if(ok==FALSE) {
777                 g_warning ("%s: error looking up file handle %p", __func__,
778                            handle);
779                 SetLastError (ERROR_INVALID_HANDLE);
780                 return(INVALID_FILE_SIZE);
781         }
782         fd = file_handle->fd;
783         
784         if(!(file_handle->fileaccess & GENERIC_READ) &&
785            !(file_handle->fileaccess & GENERIC_WRITE) &&
786            !(file_handle->fileaccess & GENERIC_ALL)) {
787                 DEBUG("%s: handle %p doesn't have GENERIC_READ or GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
788
789                 SetLastError (ERROR_ACCESS_DENIED);
790                 return(INVALID_FILE_SIZE);
791         }
792
793         /* If the file has a size with the low bits 0xFFFFFFFF the
794          * caller can't tell if this is an error, so clear the error
795          * value
796          */
797         SetLastError (ERROR_SUCCESS);
798         
799         ret = fstat(fd, &statbuf);
800         if (ret == -1) {
801                 DEBUG ("%s: handle %p fstat failed: %s", __func__,
802                            handle, strerror(errno));
803
804                 _wapi_set_last_error_from_errno ();
805                 return(INVALID_FILE_SIZE);
806         }
807         
808         /* fstat indicates block devices as zero-length, so go a different path */
809 #ifdef BLKGETSIZE64
810         if (S_ISBLK(statbuf.st_mode)) {
811                 guint64 bigsize;
812                 if (ioctl(fd, BLKGETSIZE64, &bigsize) < 0) {
813                         DEBUG ("%s: handle %p ioctl BLKGETSIZE64 failed: %s",
814                                    __func__, handle, strerror(errno));
815
816                         _wapi_set_last_error_from_errno ();
817                         return(INVALID_FILE_SIZE);
818                 }
819                 
820                 size = bigsize & 0xFFFFFFFF;
821                 if (highsize != NULL) {
822                         *highsize = bigsize>>32;
823                 }
824
825                 DEBUG ("%s: Returning block device size %d/%d",
826                            __func__, size, *highsize);
827         
828                 return(size);
829         }
830 #endif
831         
832 #ifdef HAVE_LARGE_FILE_SUPPORT
833         size = statbuf.st_size & 0xFFFFFFFF;
834         if (highsize != NULL) {
835                 *highsize = statbuf.st_size>>32;
836         }
837 #else
838         if (highsize != NULL) {
839                 /* Accurate, but potentially dodgy :-) */
840                 *highsize = 0;
841         }
842         size = statbuf.st_size;
843 #endif
844
845         DEBUG ("%s: Returning size %d/%d", __func__, size, *highsize);
846         
847         return(size);
848 }
849
850 static gboolean file_getfiletime(gpointer handle, WapiFileTime *create_time,
851                                  WapiFileTime *last_access,
852                                  WapiFileTime *last_write)
853 {
854         struct _WapiHandle_file *file_handle;
855         gboolean ok;
856         struct stat statbuf;
857         guint64 create_ticks, access_ticks, write_ticks;
858         int ret, fd;
859         
860         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
861                                 (gpointer *)&file_handle);
862         if(ok==FALSE) {
863                 g_warning ("%s: error looking up file handle %p", __func__,
864                            handle);
865                 SetLastError (ERROR_INVALID_HANDLE);
866                 return(FALSE);
867         }
868         fd = file_handle->fd;
869
870         if(!(file_handle->fileaccess & GENERIC_READ) &&
871            !(file_handle->fileaccess & GENERIC_ALL)) {
872                 DEBUG("%s: handle %p doesn't have GENERIC_READ access: %u",
873                           __func__, handle, file_handle->fileaccess);
874
875                 SetLastError (ERROR_ACCESS_DENIED);
876                 return(FALSE);
877         }
878         
879         ret=fstat(fd, &statbuf);
880         if(ret==-1) {
881                 DEBUG("%s: handle %p fstat failed: %s", __func__, handle,
882                           strerror(errno));
883
884                 _wapi_set_last_error_from_errno ();
885                 return(FALSE);
886         }
887
888         DEBUG("%s: atime: %ld ctime: %ld mtime: %ld", __func__,
889                   statbuf.st_atime, statbuf.st_ctime,
890                   statbuf.st_mtime);
891
892         /* Try and guess a meaningful create time by using the older
893          * of atime or ctime
894          */
895         /* The magic constant comes from msdn documentation
896          * "Converting a time_t Value to a File Time"
897          */
898         if(statbuf.st_atime < statbuf.st_ctime) {
899                 create_ticks=((guint64)statbuf.st_atime*10000000)
900                         + 116444736000000000ULL;
901         } else {
902                 create_ticks=((guint64)statbuf.st_ctime*10000000)
903                         + 116444736000000000ULL;
904         }
905         
906         access_ticks=((guint64)statbuf.st_atime*10000000)+116444736000000000ULL;
907         write_ticks=((guint64)statbuf.st_mtime*10000000)+116444736000000000ULL;
908         
909         DEBUG("%s: aticks: %llu cticks: %llu wticks: %llu", __func__,
910                   access_ticks, create_ticks, write_ticks);
911
912         if(create_time!=NULL) {
913                 create_time->dwLowDateTime = create_ticks & 0xFFFFFFFF;
914                 create_time->dwHighDateTime = create_ticks >> 32;
915         }
916         
917         if(last_access!=NULL) {
918                 last_access->dwLowDateTime = access_ticks & 0xFFFFFFFF;
919                 last_access->dwHighDateTime = access_ticks >> 32;
920         }
921         
922         if(last_write!=NULL) {
923                 last_write->dwLowDateTime = write_ticks & 0xFFFFFFFF;
924                 last_write->dwHighDateTime = write_ticks >> 32;
925         }
926
927         return(TRUE);
928 }
929
930 static gboolean file_setfiletime(gpointer handle,
931                                  const WapiFileTime *create_time G_GNUC_UNUSED,
932                                  const WapiFileTime *last_access,
933                                  const WapiFileTime *last_write)
934 {
935         struct _WapiHandle_file *file_handle;
936         gboolean ok;
937         struct utimbuf utbuf;
938         struct stat statbuf;
939         guint64 access_ticks, write_ticks;
940         int ret, fd;
941         
942         ok=_wapi_lookup_handle (handle, WAPI_HANDLE_FILE,
943                                 (gpointer *)&file_handle);
944         if(ok==FALSE) {
945                 g_warning ("%s: error looking up file handle %p", __func__,
946                            handle);
947                 SetLastError (ERROR_INVALID_HANDLE);
948                 return(FALSE);
949         }
950         fd = file_handle->fd;
951         
952         if(!(file_handle->fileaccess & GENERIC_WRITE) &&
953            !(file_handle->fileaccess & GENERIC_ALL)) {
954                 DEBUG("%s: handle %p doesn't have GENERIC_WRITE access: %u", __func__, handle, file_handle->fileaccess);
955
956                 SetLastError (ERROR_ACCESS_DENIED);
957                 return(FALSE);
958         }
959
960         if(file_handle->filename == NULL) {
961                 DEBUG("%s: handle %p unknown filename", __func__, handle);
962
963                 SetLastError (ERROR_INVALID_HANDLE);
964                 return(FALSE);
965         }
966         
967         /* Get the current times, so we can put the same times back in
968          * the event that one of the FileTime structs is NULL
969          */
970         ret=fstat (fd, &statbuf);
971         if(ret==-1) {
972                 DEBUG("%s: handle %p fstat failed: %s", __func__, handle,
973                           strerror(errno));
974
975                 SetLastError (ERROR_INVALID_PARAMETER);
976                 return(FALSE);
977         }
978
979         if(last_access!=NULL) {
980                 access_ticks=((guint64)last_access->dwHighDateTime << 32) +
981                         last_access->dwLowDateTime;
982                 /* This is (time_t)0.  We can actually go to INT_MIN,
983                  * but this will do for now.
984                  */
985                 if (access_ticks < 116444736000000000ULL) {
986                         DEBUG ("%s: attempt to set access time too early",
987                                    __func__);
988                         SetLastError (ERROR_INVALID_PARAMETER);
989                         return(FALSE);
990                 }
991                 
992                 utbuf.actime=(access_ticks - 116444736000000000ULL) / 10000000;
993         } else {
994                 utbuf.actime=statbuf.st_atime;
995         }
996
997         if(last_write!=NULL) {
998                 write_ticks=((guint64)last_write->dwHighDateTime << 32) +
999                         last_write->dwLowDateTime;
1000                 /* This is (time_t)0.  We can actually go to INT_MIN,
1001                  * but this will do for now.
1002                  */
1003                 if (write_ticks < 116444736000000000ULL) {
1004                         DEBUG ("%s: attempt to set write time too early",
1005                                    __func__);
1006                         SetLastError (ERROR_INVALID_PARAMETER);
1007                         return(FALSE);
1008                 }
1009                 
1010                 utbuf.modtime=(write_ticks - 116444736000000000ULL) / 10000000;
1011         } else {
1012                 utbuf.modtime=statbuf.st_mtime;
1013         }
1014
1015         DEBUG ("%s: setting handle %p access %ld write %ld", __func__,
1016                    handle, utbuf.actime, utbuf.modtime);
1017
1018         ret = _wapi_utime (file_handle->filename, &utbuf);
1019         if (ret == -1) {
1020                 DEBUG ("%s: handle %p [%s] utime failed: %s", __func__,
1021                            handle, file_handle->filename, strerror(errno));
1022
1023                 SetLastError (ERROR_INVALID_PARAMETER);
1024                 return(FALSE);
1025         }
1026         
1027         return(TRUE);
1028 }
1029
1030 static void console_close (gpointer handle, gpointer data)
1031 {
1032         struct _WapiHandle_file *console_handle = (struct _WapiHandle_file *)data;
1033         int fd = console_handle->fd;
1034         
1035         DEBUG("%s: closing console handle %p", __func__, handle);
1036
1037         g_free (console_handle->filename);
1038         
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_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_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_IWRITE | S_IWOTH | S_IWGRP));
3242         } else {
3243                 result = _wapi_chmod (utf8_name, buf.st_mode | S_IWRITE);
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 guint32 GetTempPath (guint32 len, gunichar2 *buf)
3425 {
3426         gchar *tmpdir=g_strdup (g_get_tmp_dir ());
3427         gunichar2 *tmpdir16=NULL;
3428         glong dirlen;
3429         gsize bytes;
3430         guint32 ret;
3431         
3432         if(tmpdir[strlen (tmpdir)]!='/') {
3433                 g_free (tmpdir);
3434                 tmpdir=g_strdup_printf ("%s/", g_get_tmp_dir ());
3435         }
3436         
3437         tmpdir16=mono_unicode_from_external (tmpdir, &bytes);
3438         if(tmpdir16==NULL) {
3439                 g_free (tmpdir);
3440                 return(0);
3441         } else {
3442                 dirlen=(bytes/2);
3443                 
3444                 if(dirlen+1>len) {
3445                         DEBUG ("%s: Size %d smaller than needed (%ld)",
3446                                    __func__, len, dirlen+1);
3447                 
3448                         ret=dirlen+1;
3449                 } else {
3450                         /* Add the terminator */
3451                         memset (buf, '\0', bytes+2);
3452                         memcpy (buf, tmpdir16, bytes);
3453                 
3454                         ret=dirlen;
3455                 }
3456         }
3457
3458         if(tmpdir16!=NULL) {
3459                 g_free (tmpdir16);
3460         }
3461         g_free (tmpdir);
3462         
3463         return(ret);
3464 }
3465
3466 #ifdef HAVE_GETFSSTAT
3467 /* Darwin has getfsstat */
3468 gint32 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3469 {
3470         struct statfs *stats;
3471         int size, n, i;
3472         gunichar2 *dir;
3473         glong length, total = 0;
3474         
3475         n = getfsstat (NULL, 0, MNT_NOWAIT);
3476         if (n == -1)
3477                 return 0;
3478         size = n * sizeof (struct statfs);
3479         stats = (struct statfs *) g_malloc (size);
3480         if (stats == NULL)
3481                 return 0;
3482         if (getfsstat (stats, size, MNT_NOWAIT) == -1){
3483                 g_free (stats);
3484                 return 0;
3485         }
3486         for (i = 0; i < n; i++){
3487                 dir = g_utf8_to_utf16 (stats [i].f_mntonname, -1, NULL, &length, NULL);
3488                 if (total + length < len){
3489                         memcpy (buf + total, dir, sizeof (gunichar2) * length);
3490                         buf [total+length] = 0;
3491                 } 
3492                 g_free (dir);
3493                 total += length + 1;
3494         }
3495         if (total < len)
3496                 buf [total] = 0;
3497         total++;
3498         g_free (stats);
3499         return total;
3500 }
3501 #else
3502 /* In-place octal sequence replacement */
3503 static void
3504 unescape_octal (gchar *str)
3505 {
3506         gchar *rptr;
3507         gchar *wptr;
3508
3509         if (str == NULL)
3510                 return;
3511
3512         rptr = wptr = str;
3513         while (*rptr != '\0') {
3514                 if (*rptr == '\\') {
3515                         char c;
3516                         rptr++;
3517                         c = (*(rptr++) - '0') << 6;
3518                         c += (*(rptr++) - '0') << 3;
3519                         c += *(rptr++) - '0';
3520                         *wptr++ = c;
3521                 } else if (wptr != rptr) {
3522                         *wptr++ = *rptr++;
3523                 } else {
3524                         rptr++; wptr++;
3525                 }
3526         }
3527         *wptr = '\0';
3528 }
3529 static gint32 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf);
3530
3531 #if __linux__
3532 #define GET_LOGICAL_DRIVE_STRINGS_BUFFER 512
3533 #define GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER 512
3534 #define GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER 64
3535
3536 typedef struct 
3537 {
3538         glong total;
3539         guint32 buffer_index;
3540         guint32 mountpoint_index;
3541         guint32 field_number;
3542         guint32 allocated_size;
3543         guint32 fsname_index;
3544         guint32 fstype_index;
3545         gchar mountpoint [GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER + 1];
3546         gchar *mountpoint_allocated;
3547         gchar buffer [GET_LOGICAL_DRIVE_STRINGS_BUFFER];
3548         gchar fsname [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
3549         gchar fstype [GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER + 1];
3550         ssize_t nbytes;
3551         gchar delimiter;
3552         gboolean check_mount_source;
3553 } LinuxMountInfoParseState;
3554
3555 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3556 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3557 static void append_to_mountpoint (LinuxMountInfoParseState *state);
3558 static gboolean add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state);
3559
3560 gint32 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3561 {
3562         int fd;
3563         gint32 ret = 0;
3564         LinuxMountInfoParseState state;
3565         gboolean (*parser)(guint32, gunichar2*, LinuxMountInfoParseState*) = NULL;
3566
3567         memset (buf, 0, len * sizeof (gunichar2));
3568         fd = open ("/proc/self/mountinfo", O_RDONLY);
3569         if (fd != -1)
3570                 parser = GetLogicalDriveStrings_MountInfo;
3571         else {
3572                 fd = open ("/proc/mounts", O_RDONLY);
3573                 if (fd != -1)
3574                         parser = GetLogicalDriveStrings_Mounts;
3575         }
3576
3577         if (!parser) {
3578                 ret = GetLogicalDriveStrings_Mtab (len, buf);
3579                 goto done_and_out;
3580         }
3581
3582         memset (&state, 0, sizeof (LinuxMountInfoParseState));
3583         state.field_number = 1;
3584         state.delimiter = ' ';
3585
3586         while ((state.nbytes = read (fd, state.buffer, GET_LOGICAL_DRIVE_STRINGS_BUFFER)) > 0) {
3587                 state.buffer_index = 0;
3588
3589                 while ((*parser)(len, buf, &state)) {
3590                         if (state.buffer [state.buffer_index] == '\n') {
3591                                 gboolean quit = add_drive_string (len, buf, &state);
3592                                 state.field_number = 1;
3593                                 state.buffer_index++;
3594                                 if (state.mountpoint_allocated) {
3595                                         g_free (state.mountpoint_allocated);
3596                                         state.mountpoint_allocated = NULL;
3597                                 }
3598                                 if (quit) {
3599                                         ret = state.total;
3600                                         goto done_and_out;
3601                                 }
3602                         }
3603                 }
3604         };
3605         ret = state.total;
3606
3607   done_and_out:
3608         if (fd != -1)
3609                 close (fd);
3610         return ret;
3611 }
3612
3613 static gboolean GetLogicalDriveStrings_Mounts (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3614 {
3615         gchar *ptr;
3616
3617         if (state->field_number == 1)
3618                 state->check_mount_source = TRUE;
3619
3620         while (state->buffer_index < (guint32)state->nbytes) {
3621                 if (state->buffer [state->buffer_index] == state->delimiter) {
3622                         state->field_number++;
3623                         switch (state->field_number) {
3624                                 case 2:
3625                                         state->mountpoint_index = 0;
3626                                         break;
3627
3628                                 case 3:
3629                                         if (state->mountpoint_allocated)
3630                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
3631                                         else
3632                                                 state->mountpoint [state->mountpoint_index] = 0;
3633                                         break;
3634
3635                                 default:
3636                                         ptr = (gchar*)memchr (state->buffer + state->buffer_index, '\n', GET_LOGICAL_DRIVE_STRINGS_BUFFER - state->buffer_index);
3637                                         if (ptr)
3638                                                 state->buffer_index = (ptr - (gchar*)state->buffer) - 1;
3639                                         else
3640                                                 state->buffer_index = state->nbytes;
3641                                         return TRUE;
3642                         }
3643                         state->buffer_index++;
3644                         continue;
3645                 } else if (state->buffer [state->buffer_index] == '\n')
3646                         return TRUE;
3647
3648                 switch (state->field_number) {
3649                         case 1:
3650                                 if (state->check_mount_source) {
3651                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
3652                                                 /* We can ignore the rest, it's a device
3653                                                  * path */
3654                                                 state->check_mount_source = FALSE;
3655                                                 state->fsname [state->fsname_index++] = '/';
3656                                                 break;
3657                                         }
3658                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3659                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
3660                                 }
3661                                 break;
3662
3663                         case 2:
3664                                 append_to_mountpoint (state);
3665                                 break;
3666
3667                         case 3:
3668                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3669                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
3670                                 break;
3671                 }
3672
3673                 state->buffer_index++;
3674         }
3675
3676         return FALSE;
3677 }
3678
3679 static gboolean GetLogicalDriveStrings_MountInfo (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3680 {
3681         while (state->buffer_index < (guint32)state->nbytes) {
3682                 if (state->buffer [state->buffer_index] == state->delimiter) {
3683                         state->field_number++;
3684                         switch (state->field_number) {
3685                                 case 5:
3686                                         state->mountpoint_index = 0;
3687                                         break;
3688
3689                                 case 6:
3690                                         if (state->mountpoint_allocated)
3691                                                 state->mountpoint_allocated [state->mountpoint_index] = 0;
3692                                         else
3693                                                 state->mountpoint [state->mountpoint_index] = 0;
3694                                         break;
3695
3696                                 case 7:
3697                                         state->delimiter = '-';
3698                                         break;
3699
3700                                 case 8:
3701                                         state->delimiter = ' ';
3702                                         break;
3703
3704                                 case 10:
3705                                         state->check_mount_source = TRUE;
3706                                         break;
3707                         }
3708                         state->buffer_index++;
3709                         continue;
3710                 } else if (state->buffer [state->buffer_index] == '\n')
3711                         return TRUE;
3712
3713                 switch (state->field_number) {
3714                         case 5:
3715                                 append_to_mountpoint (state);
3716                                 break;
3717
3718                         case 9:
3719                                 if (state->fstype_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3720                                         state->fstype [state->fstype_index++] = state->buffer [state->buffer_index];
3721                                 break;
3722
3723                         case 10:
3724                                 if (state->check_mount_source) {
3725                                         if (state->fsname_index == 0 && state->buffer [state->buffer_index] == '/') {
3726                                                 /* We can ignore the rest, it's a device
3727                                                  * path */
3728                                                 state->check_mount_source = FALSE;
3729                                                 state->fsname [state->fsname_index++] = '/';
3730                                                 break;
3731                                         }
3732                                         if (state->fsname_index < GET_LOGICAL_DRIVE_STRINGS_FSNAME_BUFFER)
3733                                                 state->fsname [state->fsname_index++] = state->buffer [state->buffer_index];
3734                                 }
3735                                 break;
3736                 }
3737
3738                 state->buffer_index++;
3739         }
3740
3741         return FALSE;
3742 }
3743
3744 static void
3745 append_to_mountpoint (LinuxMountInfoParseState *state)
3746 {
3747         gchar ch = state->buffer [state->buffer_index];
3748         if (state->mountpoint_allocated) {
3749                 if (state->mountpoint_index >= state->allocated_size) {
3750                         guint32 newsize = (state->allocated_size << 1) + 1;
3751                         gchar *newbuf = g_malloc0 (newsize * sizeof (gchar));
3752
3753                         memcpy (newbuf, state->mountpoint_allocated, state->mountpoint_index);
3754                         g_free (state->mountpoint_allocated);
3755                         state->mountpoint_allocated = newbuf;
3756                         state->allocated_size = newsize;
3757                 }
3758                 state->mountpoint_allocated [state->mountpoint_index++] = ch;
3759         } else {
3760                 if (state->mountpoint_index >= GET_LOGICAL_DRIVE_STRINGS_MOUNTPOINT_BUFFER) {
3761                         state->allocated_size = (state->mountpoint_index << 1) + 1;
3762                         state->mountpoint_allocated = g_malloc0 (state->allocated_size * sizeof (gchar));
3763                         memcpy (state->mountpoint_allocated, state->mountpoint, state->mountpoint_index);
3764                         state->mountpoint_allocated [state->mountpoint_index++] = ch;
3765                 } else
3766                         state->mountpoint [state->mountpoint_index++] = ch;
3767         }
3768 }
3769
3770 static gboolean
3771 add_drive_string (guint32 len, gunichar2 *buf, LinuxMountInfoParseState *state)
3772 {
3773         gboolean quit = FALSE;
3774         gboolean ignore_entry;
3775
3776         if (state->fsname_index == 1 && state->fsname [0] == '/')
3777                 ignore_entry = FALSE;
3778         else if (state->fsname_index == 0 || memcmp ("none", state->fsname, state->fsname_index) == 0)
3779                 ignore_entry = TRUE;
3780         else if (state->fstype_index >= 5 && memcmp ("fuse.", state->fstype, 5) == 0) {
3781                 /* Ignore GNOME's gvfs */
3782                 if (state->fstype_index == 21 && memcmp ("fuse.gvfs-fuse-daemon", state->fstype, state->fstype_index) == 0)
3783                         ignore_entry = TRUE;
3784                 else
3785                         ignore_entry = FALSE;
3786         } else if (state->fstype_index == 3 && memcmp ("nfs", state->fstype, state->fstype_index) == 0)
3787                 ignore_entry = FALSE;
3788         else
3789                 ignore_entry = TRUE;
3790
3791         if (!ignore_entry) {
3792                 gunichar2 *dir;
3793                 glong length;
3794                 gchar *mountpoint = state->mountpoint_allocated ? state->mountpoint_allocated : state->mountpoint;
3795
3796                 unescape_octal (mountpoint);
3797                 dir = g_utf8_to_utf16 (mountpoint, -1, NULL, &length, NULL);
3798                 if (state->total + length + 1 > len) {
3799                         quit = TRUE;
3800                         state->total = len * 2;
3801                 } else {
3802                         length++;
3803                         memcpy (buf + state->total, dir, sizeof (gunichar2) * length);
3804                         state->total += length;
3805                 }
3806                 g_free (dir);
3807         }
3808         state->fsname_index = 0;
3809         state->fstype_index = 0;
3810
3811         return quit;
3812 }
3813 #else
3814 gint32
3815 GetLogicalDriveStrings (guint32 len, gunichar2 *buf)
3816 {
3817         return GetLogicalDriveStrings_Mtab (len, buf);
3818 }
3819 #endif
3820 static gint32
3821 GetLogicalDriveStrings_Mtab (guint32 len, gunichar2 *buf)
3822 {
3823         FILE *fp;
3824         gunichar2 *ptr, *dir;
3825         glong length, total = 0;
3826         gchar buffer [512];
3827         gchar **splitted;
3828
3829         memset (buf, 0, sizeof (gunichar2) * (len + 1)); 
3830         buf [0] = '/';
3831         buf [1] = 0;
3832         buf [2] = 0;
3833
3834         /* Sigh, mntent and friends don't work well.
3835          * It stops on the first line that doesn't begin with a '/'.
3836          * (linux 2.6.5, libc 2.3.2.ds1-12) - Gonz */
3837         fp = fopen ("/etc/mtab", "rt");
3838         if (fp == NULL) {
3839                 fp = fopen ("/etc/mnttab", "rt");
3840                 if (fp == NULL)
3841                         return 1;
3842         }
3843
3844         ptr = buf;
3845         while (fgets (buffer, 512, fp) != NULL) {
3846                 if (*buffer != '/')
3847                         continue;
3848
3849                 splitted = g_strsplit (buffer, " ", 0);
3850                 if (!*splitted || !*(splitted + 1)) {
3851                         g_strfreev (splitted);
3852                         continue;
3853                 }
3854
3855                 unescape_octal (*(splitted + 1));
3856                 dir = g_utf8_to_utf16 (*(splitted + 1), -1, NULL, &length, NULL);
3857                 g_strfreev (splitted);
3858                 if (total + length + 1 > len) {
3859                         fclose (fp);
3860                         g_free (dir);
3861                         return len * 2; /* guess */
3862                 }
3863
3864                 memcpy (ptr + total, dir, sizeof (gunichar2) * length);
3865                 g_free (dir);
3866                 total += length + 1;
3867         }
3868
3869         fclose (fp);
3870         return total;
3871 /* Commented out, does not work with my mtab!!! - Gonz */
3872 #ifdef NOTENABLED /* HAVE_MNTENT_H */
3873 {
3874         FILE *fp;
3875         struct mntent *mnt;
3876         gunichar2 *ptr, *dir;
3877         glong len, total = 0;
3878         
3879
3880         fp = setmntent ("/etc/mtab", "rt");
3881         if (fp == NULL) {
3882                 fp = setmntent ("/etc/mnttab", "rt");
3883                 if (fp == NULL)
3884                         return;
3885         }
3886
3887         ptr = buf;
3888         while ((mnt = getmntent (fp)) != NULL) {
3889                 g_print ("GOT %s\n", mnt->mnt_dir);
3890                 dir = g_utf8_to_utf16 (mnt->mnt_dir, &len, NULL, NULL, NULL);
3891                 if (total + len + 1 > len) {
3892                         return len * 2; /* guess */
3893                 }
3894
3895                 memcpy (ptr + total, dir, sizeof (gunichar2) * len);
3896                 g_free (dir);
3897                 total += len + 1;
3898         }
3899
3900         endmntent (fp);
3901         return total;
3902 }
3903 #endif
3904 }
3905 #endif
3906
3907 #if (defined(HAVE_STATVFS) || defined(HAVE_STATFS)) && !defined(PLATFORM_ANDROID)
3908 gboolean GetDiskFreeSpaceEx(const gunichar2 *path_name, WapiULargeInteger *free_bytes_avail,
3909                             WapiULargeInteger *total_number_of_bytes,
3910                             WapiULargeInteger *total_number_of_free_bytes)
3911 {
3912 #ifdef HAVE_STATVFS
3913         struct statvfs fsstat;
3914 #elif defined(HAVE_STATFS)
3915         struct statfs fsstat;
3916 #endif
3917         gboolean isreadonly;
3918         gchar *utf8_path_name;
3919         int ret;
3920         unsigned long block_size;
3921
3922         if (path_name == NULL) {
3923                 utf8_path_name = g_strdup (g_get_current_dir());
3924                 if (utf8_path_name == NULL) {
3925                         SetLastError (ERROR_DIRECTORY);
3926                         return(FALSE);
3927                 }
3928         }
3929         else {
3930                 utf8_path_name = mono_unicode_to_external (path_name);
3931                 if (utf8_path_name == NULL) {
3932                         DEBUG("%s: unicode conversion returned NULL", __func__);
3933
3934                         SetLastError (ERROR_INVALID_NAME);
3935                         return(FALSE);
3936                 }
3937         }
3938
3939         do {
3940 #ifdef HAVE_STATVFS
3941                 ret = statvfs (utf8_path_name, &fsstat);
3942                 isreadonly = ((fsstat.f_flag & ST_RDONLY) == ST_RDONLY);
3943                 block_size = fsstat.f_frsize;
3944 #elif defined(HAVE_STATFS)
3945                 ret = statfs (utf8_path_name, &fsstat);
3946                 isreadonly = ((fsstat.f_flags & MNT_RDONLY) == MNT_RDONLY);
3947                 block_size = fsstat.f_bsize;
3948 #endif
3949         } while(ret == -1 && errno == EINTR);
3950
3951         g_free(utf8_path_name);
3952
3953         if (ret == -1) {
3954                 _wapi_set_last_error_from_errno ();
3955                 DEBUG ("%s: statvfs failed: %s", __func__, strerror (errno));
3956                 return(FALSE);
3957         }
3958
3959         /* total number of free bytes for non-root */
3960         if (free_bytes_avail != NULL) {
3961                 if (isreadonly) {
3962                         free_bytes_avail->QuadPart = 0;
3963                 }
3964                 else {
3965                         free_bytes_avail->QuadPart = block_size * (guint64)fsstat.f_bavail;
3966                 }
3967         }
3968
3969         /* total number of bytes available for non-root */
3970         if (total_number_of_bytes != NULL) {
3971                 total_number_of_bytes->QuadPart = block_size * (guint64)fsstat.f_blocks;
3972         }
3973
3974         /* total number of bytes available for root */
3975         if (total_number_of_free_bytes != NULL) {
3976                 if (isreadonly) {
3977                         total_number_of_free_bytes->QuadPart = 0;
3978                 }
3979                 else {
3980                         total_number_of_free_bytes->QuadPart = block_size * (guint64)fsstat.f_bfree;
3981                 }
3982         }
3983         
3984         return(TRUE);
3985 }
3986 #else
3987 gboolean GetDiskFreeSpaceEx(const gunichar2 *path_name, WapiULargeInteger *free_bytes_avail,
3988                             WapiULargeInteger *total_number_of_bytes,
3989                             WapiULargeInteger *total_number_of_free_bytes)
3990 {
3991         if (free_bytes_avail != NULL) {
3992                 free_bytes_avail->QuadPart = (guint64) -1;
3993         }
3994
3995         if (total_number_of_bytes != NULL) {
3996                 total_number_of_bytes->QuadPart = (guint64) -1;
3997         }
3998
3999         if (total_number_of_free_bytes != NULL) {
4000                 total_number_of_free_bytes->QuadPart = (guint64) -1;
4001         }
4002
4003         return(TRUE);
4004 }
4005 #endif
4006
4007 /*
4008  * General Unix support
4009  */
4010 typedef struct {
4011         guint32 drive_type;
4012 #if __linux__
4013         const long fstypeid;
4014 #endif
4015         const gchar* fstype;
4016 } _wapi_drive_type;
4017
4018 static _wapi_drive_type _wapi_drive_types[] = {
4019 #if PLATFORM_MACOSX
4020         { DRIVE_REMOTE, "afp" },
4021         { DRIVE_REMOTE, "autofs" },
4022         { DRIVE_CDROM, "cddafs" },
4023         { DRIVE_CDROM, "cd9660" },
4024         { DRIVE_RAMDISK, "devfs" },
4025         { DRIVE_FIXED, "exfat" },
4026         { DRIVE_RAMDISK, "fdesc" },
4027         { DRIVE_REMOTE, "ftp" },
4028         { DRIVE_FIXED, "hfs" },
4029         { DRIVE_FIXED, "msdos" },
4030         { DRIVE_REMOTE, "nfs" },
4031         { DRIVE_FIXED, "ntfs" },
4032         { DRIVE_REMOTE, "smbfs" },
4033         { DRIVE_FIXED, "udf" },
4034         { DRIVE_REMOTE, "webdav" },
4035         { DRIVE_UNKNOWN, NULL }
4036 #elif __linux__
4037         { DRIVE_FIXED, ADFS_SUPER_MAGIC, "adfs"},
4038         { DRIVE_FIXED, AFFS_SUPER_MAGIC, "affs"},
4039         { DRIVE_REMOTE, AFS_SUPER_MAGIC, "afs"},
4040         { DRIVE_RAMDISK, AUTOFS_SUPER_MAGIC, "autofs"},
4041         { DRIVE_RAMDISK, AUTOFS_SBI_MAGIC, "autofs4"},
4042         { DRIVE_REMOTE, CODA_SUPER_MAGIC, "coda" },
4043         { DRIVE_RAMDISK, CRAMFS_MAGIC, "cramfs"},
4044         { DRIVE_RAMDISK, CRAMFS_MAGIC_WEND, "cramfs"},
4045         { DRIVE_REMOTE, CIFS_MAGIC_NUMBER, "cifs"},
4046         { DRIVE_RAMDISK, DEBUGFS_MAGIC, "debugfs"},
4047         { DRIVE_RAMDISK, SYSFS_MAGIC, "sysfs"},
4048         { DRIVE_RAMDISK, SECURITYFS_MAGIC, "securityfs"},
4049         { DRIVE_RAMDISK, SELINUX_MAGIC, "selinuxfs"},
4050         { DRIVE_RAMDISK, RAMFS_MAGIC, "ramfs"},
4051         { DRIVE_FIXED, SQUASHFS_MAGIC, "squashfs"},
4052         { DRIVE_FIXED, EFS_SUPER_MAGIC, "efs"},
4053         { DRIVE_FIXED, EXT2_SUPER_MAGIC, "ext"},
4054         { DRIVE_FIXED, EXT3_SUPER_MAGIC, "ext"},
4055         { DRIVE_FIXED, EXT4_SUPER_MAGIC, "ext"},
4056         { DRIVE_REMOTE, XENFS_SUPER_MAGIC, "xenfs"},
4057         { DRIVE_FIXED, BTRFS_SUPER_MAGIC, "btrfs"},
4058         { DRIVE_FIXED, HFS_SUPER_MAGIC, "hfs"},
4059         { DRIVE_FIXED, HFSPLUS_SUPER_MAGIC, "hfsplus"},
4060         { DRIVE_FIXED, HPFS_SUPER_MAGIC, "hpfs"},
4061         { DRIVE_RAMDISK, HUGETLBFS_MAGIC, "hugetlbfs"},
4062         { DRIVE_CDROM, ISOFS_SUPER_MAGIC, "iso"},
4063         { DRIVE_FIXED, JFFS2_SUPER_MAGIC, "jffs2"},
4064         { DRIVE_RAMDISK, ANON_INODE_FS_MAGIC, "anon_inode"},
4065         { DRIVE_FIXED, JFS_SUPER_MAGIC, "jfs"},
4066         { DRIVE_FIXED, MINIX_SUPER_MAGIC, "minix"},
4067         { DRIVE_FIXED, MINIX_SUPER_MAGIC2, "minix v2"},
4068         { DRIVE_FIXED, MINIX2_SUPER_MAGIC, "minix2"},
4069         { DRIVE_FIXED, MINIX2_SUPER_MAGIC2, "minix2 v2"},
4070         { DRIVE_FIXED, MINIX3_SUPER_MAGIC, "minix3"},
4071         { DRIVE_FIXED, MSDOS_SUPER_MAGIC, "msdos"},
4072         { DRIVE_REMOTE, NCP_SUPER_MAGIC, "ncp"},
4073         { DRIVE_REMOTE, NFS_SUPER_MAGIC, "nfs"},
4074         { DRIVE_FIXED, NTFS_SB_MAGIC, "ntfs"},
4075         { DRIVE_RAMDISK, OPENPROM_SUPER_MAGIC, "openpromfs"},
4076         { DRIVE_RAMDISK, PROC_SUPER_MAGIC, "proc"},
4077         { DRIVE_FIXED, QNX4_SUPER_MAGIC, "qnx4"},
4078         { DRIVE_FIXED, REISERFS_SUPER_MAGIC, "reiserfs"},
4079         { DRIVE_RAMDISK, ROMFS_MAGIC, "romfs"},
4080         { DRIVE_REMOTE, SMB_SUPER_MAGIC, "samba"},
4081         { DRIVE_RAMDISK, CGROUP_SUPER_MAGIC, "cgroupfs"},
4082         { DRIVE_RAMDISK, FUTEXFS_SUPER_MAGIC, "futexfs"},
4083         { DRIVE_FIXED, SYSV2_SUPER_MAGIC, "sysv2"},
4084         { DRIVE_FIXED, SYSV4_SUPER_MAGIC, "sysv4"},
4085         { DRIVE_RAMDISK, TMPFS_MAGIC, "tmpfs"},
4086         { DRIVE_RAMDISK, DEVPTS_SUPER_MAGIC, "devpts"},
4087         { DRIVE_CDROM, UDF_SUPER_MAGIC, "udf"},
4088         { DRIVE_FIXED, UFS_MAGIC, "ufs"},
4089         { DRIVE_FIXED, UFS_MAGIC_BW, "ufs"},
4090         { DRIVE_FIXED, UFS2_MAGIC, "ufs2"},
4091         { DRIVE_FIXED, UFS_CIGAM, "ufs"},
4092         { DRIVE_RAMDISK, USBDEVICE_SUPER_MAGIC, "usbdev"},
4093         { DRIVE_FIXED, XENIX_SUPER_MAGIC, "xenix"},
4094         { DRIVE_FIXED, XFS_SB_MAGIC, "xfs"},
4095         { DRIVE_RAMDISK, FUSE_SUPER_MAGIC, "fuse"},
4096         { DRIVE_FIXED, V9FS_MAGIC, "9p"},
4097         { DRIVE_REMOTE, CEPH_SUPER_MAGIC, "ceph"},
4098         { DRIVE_RAMDISK, CONFIGFS_MAGIC, "configfs"},
4099         { DRIVE_RAMDISK, ECRYPTFS_SUPER_MAGIC, "eCryptfs"},
4100         { DRIVE_FIXED, EXOFS_SUPER_MAGIC, "exofs"},
4101         { DRIVE_FIXED, VXFS_SUPER_MAGIC, "vxfs"},
4102         { DRIVE_FIXED, VXFS_OLT_MAGIC, "vxfs_olt"},
4103         { DRIVE_REMOTE, GFS2_MAGIC, "gfs2"},
4104         { DRIVE_FIXED, LOGFS_MAGIC_U32, "logfs"},
4105         { DRIVE_FIXED, OCFS2_SUPER_MAGIC, "ocfs2"},
4106         { DRIVE_FIXED, OMFS_MAGIC, "omfs"},
4107         { DRIVE_FIXED, UBIFS_SUPER_MAGIC, "ubifs"},
4108         { DRIVE_UNKNOWN, 0, NULL}
4109 #else
4110         { DRIVE_RAMDISK, "ramfs"      },
4111         { DRIVE_RAMDISK, "tmpfs"      },
4112         { DRIVE_RAMDISK, "proc"       },
4113         { DRIVE_RAMDISK, "sysfs"      },
4114         { DRIVE_RAMDISK, "debugfs"    },
4115         { DRIVE_RAMDISK, "devpts"     },
4116         { DRIVE_RAMDISK, "securityfs" },
4117         { DRIVE_CDROM,   "iso9660"    },
4118         { DRIVE_FIXED,   "ext2"       },
4119         { DRIVE_FIXED,   "ext3"       },
4120         { DRIVE_FIXED,   "ext4"       },
4121         { DRIVE_FIXED,   "sysv"       },
4122         { DRIVE_FIXED,   "reiserfs"   },
4123         { DRIVE_FIXED,   "ufs"        },
4124         { DRIVE_FIXED,   "vfat"       },
4125         { DRIVE_FIXED,   "msdos"      },
4126         { DRIVE_FIXED,   "udf"        },
4127         { DRIVE_FIXED,   "hfs"        },
4128         { DRIVE_FIXED,   "hpfs"       },
4129         { DRIVE_FIXED,   "qnx4"       },
4130         { DRIVE_FIXED,   "ntfs"       },
4131         { DRIVE_FIXED,   "ntfs-3g"    },
4132         { DRIVE_REMOTE,  "smbfs"      },
4133         { DRIVE_REMOTE,  "fuse"       },
4134         { DRIVE_REMOTE,  "nfs"        },
4135         { DRIVE_REMOTE,  "nfs4"       },
4136         { DRIVE_REMOTE,  "cifs"       },
4137         { DRIVE_REMOTE,  "ncpfs"      },
4138         { DRIVE_REMOTE,  "coda"       },
4139         { DRIVE_REMOTE,  "afs"        },
4140         { DRIVE_UNKNOWN, NULL         }
4141 #endif
4142 };
4143
4144 #if __linux__
4145 static guint32 _wapi_get_drive_type(long f_type)
4146 {
4147         _wapi_drive_type *current;
4148
4149         current = &_wapi_drive_types[0];
4150         while (current->drive_type != DRIVE_UNKNOWN) {
4151                 if (current->fstypeid == f_type)
4152                         return current->drive_type;
4153                 current++;
4154         }
4155
4156         return DRIVE_UNKNOWN;
4157 }
4158 #else
4159 static guint32 _wapi_get_drive_type(const gchar* fstype)
4160 {
4161         _wapi_drive_type *current;
4162
4163         current = &_wapi_drive_types[0];
4164         while (current->drive_type != DRIVE_UNKNOWN) {
4165                 if (strcmp (current->fstype, fstype) == 0)
4166                         break;
4167
4168                 current++;
4169         }
4170         
4171         return current->drive_type;
4172 }
4173 #endif
4174
4175 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4176 static guint32
4177 GetDriveTypeFromPath (const char *utf8_root_path_name)
4178 {
4179         struct statfs buf;
4180         
4181         if (statfs (utf8_root_path_name, &buf) == -1)
4182                 return DRIVE_UNKNOWN;
4183 #if PLATFORM_MACOSX
4184         return _wapi_get_drive_type (buf.f_fstypename);
4185 #else
4186         return _wapi_get_drive_type (buf.f_type);
4187 #endif
4188 }
4189 #else
4190 static guint32
4191 GetDriveTypeFromPath (const gchar *utf8_root_path_name)
4192 {
4193         guint32 drive_type;
4194         FILE *fp;
4195         gchar buffer [512];
4196         gchar **splitted;
4197
4198         fp = fopen ("/etc/mtab", "rt");
4199         if (fp == NULL) {
4200                 fp = fopen ("/etc/mnttab", "rt");
4201                 if (fp == NULL) 
4202                         return(DRIVE_UNKNOWN);
4203         }
4204
4205         drive_type = DRIVE_NO_ROOT_DIR;
4206         while (fgets (buffer, 512, fp) != NULL) {
4207                 splitted = g_strsplit (buffer, " ", 0);
4208                 if (!*splitted || !*(splitted + 1) || !*(splitted + 2)) {
4209                         g_strfreev (splitted);
4210                         continue;
4211                 }
4212
4213                 /* compare given root_path_name with the one from mtab, 
4214                   if length of utf8_root_path_name is zero it must be the root dir */
4215                 if (strcmp (*(splitted + 1), utf8_root_path_name) == 0 ||
4216                     (strcmp (*(splitted + 1), "/") == 0 && strlen (utf8_root_path_name) == 0)) {
4217                         drive_type = _wapi_get_drive_type (*(splitted + 2));
4218                         /* it is possible this path might be mounted again with
4219                            a known type...keep looking */
4220                         if (drive_type != DRIVE_UNKNOWN) {
4221                                 g_strfreev (splitted);
4222                                 break;
4223                         }
4224                 }
4225
4226                 g_strfreev (splitted);
4227         }
4228
4229         fclose (fp);
4230         return drive_type;
4231 }
4232 #endif
4233
4234 guint32 GetDriveType(const gunichar2 *root_path_name)
4235 {
4236         gchar *utf8_root_path_name;
4237         guint32 drive_type;
4238
4239         if (root_path_name == NULL) {
4240                 utf8_root_path_name = g_strdup (g_get_current_dir());
4241                 if (utf8_root_path_name == NULL) {
4242                         return(DRIVE_NO_ROOT_DIR);
4243                 }
4244         }
4245         else {
4246                 utf8_root_path_name = mono_unicode_to_external (root_path_name);
4247                 if (utf8_root_path_name == NULL) {
4248                         DEBUG("%s: unicode conversion returned NULL", __func__);
4249                         return(DRIVE_NO_ROOT_DIR);
4250                 }
4251                 
4252                 /* strip trailing slash for compare below */
4253                 if (g_str_has_suffix(utf8_root_path_name, "/") && utf8_root_path_name [1] != 0) {
4254                         utf8_root_path_name[strlen(utf8_root_path_name) - 1] = 0;
4255                 }
4256         }
4257         drive_type = GetDriveTypeFromPath (utf8_root_path_name);
4258         g_free (utf8_root_path_name);
4259
4260         return (drive_type);
4261 }
4262
4263 static gchar*
4264 get_fstypename (gchar *utfpath)
4265 {
4266 #if defined (PLATFORM_MACOSX) || defined (__linux__)
4267         struct statfs stat;
4268 #if __linux__
4269         _wapi_drive_type *current;
4270 #endif
4271         if (statfs (utfpath, &stat) == -1)
4272                 return NULL;
4273 #if PLATFORM_MACOSX
4274         return g_strdup (stat.f_fstypename);
4275 #else
4276         current = &_wapi_drive_types[0];
4277         while (current->drive_type != DRIVE_UNKNOWN) {
4278                 if (stat.f_type == current->fstypeid)
4279                         return g_strdup (current->fstype);
4280                 current++;
4281         }
4282         return NULL;
4283 #endif
4284 #else
4285         return NULL;
4286 #endif
4287 }
4288
4289 /* Linux has struct statfs which has a different layout */
4290 #if defined (PLATFORM_MACOSX) || defined (__linux__) || defined(PLATFORM_BSD) || defined(__native_client__)
4291 gboolean
4292 GetVolumeInformation (const gunichar2 *path, gunichar2 *volumename, int volumesize, int *outserial, int *maxcomp, int *fsflags, gunichar2 *fsbuffer, int fsbuffersize)
4293 {
4294         gchar *utfpath;
4295         gchar *fstypename;
4296         gboolean status = FALSE;
4297         glong len;
4298         
4299         // We only support getting the file system type
4300         if (fsbuffer == NULL)
4301                 return 0;
4302         
4303         utfpath = mono_unicode_to_external (path);
4304         if ((fstypename = get_fstypename (utfpath)) != NULL){
4305                 gunichar2 *ret = g_utf8_to_utf16 (fstypename, -1, NULL, &len, NULL);
4306                 if (ret != NULL && len < fsbuffersize){
4307                         memcpy (fsbuffer, ret, len * sizeof (gunichar2));
4308                         fsbuffer [len] = 0;
4309                         status = TRUE;
4310                 }
4311                 if (ret != NULL)
4312                         g_free (ret);
4313                 g_free (fstypename);
4314         }
4315         g_free (utfpath);
4316         return status;
4317 }
4318 #endif
4319
4320
4321 void
4322 _wapi_io_init (void)
4323 {
4324         mono_mutex_init (&stdhandle_mutex);
4325 }