glocalfile: Fix the grammar
[platform/upstream/glib.git] / gio / glocalfile.c
1 /* GIO - GLib Input, Output and Streaming Library
2  * 
3  * Copyright (C) 2006-2007 Red Hat, Inc.
4  *
5  * This library is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU Lesser General Public
7  * License as published by the Free Software Foundation; either
8  * version 2 of the License, or (at your option) any later version.
9  *
10  * This library is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * Lesser General Public License for more details.
14  *
15  * You should have received a copy of the GNU Lesser General
16  * Public License along with this library; if not, write to the
17  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18  * Boston, MA 02111-1307, USA.
19  *
20  * Author: Alexander Larsson <alexl@redhat.com>
21  */
22
23 #include "config.h"
24
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <string.h>
28 #include <errno.h>
29 #include <fcntl.h>
30 #ifdef HAVE_UNISTD_H
31 #include <unistd.h>
32 #endif
33
34 #if HAVE_SYS_STATFS_H
35 #include <sys/statfs.h>
36 #endif
37 #if HAVE_SYS_STATVFS_H
38 #include <sys/statvfs.h>
39 #endif
40 #if HAVE_SYS_VFS_H
41 #include <sys/vfs.h>
42 #elif HAVE_SYS_MOUNT_H
43 #if HAVE_SYS_PARAM_H
44 #include <sys/param.h>
45 #endif
46 #include <sys/mount.h>
47 #endif
48
49 #ifndef O_BINARY
50 #define O_BINARY 0
51 #endif
52
53 #include "gfileattribute.h"
54 #include "glocalfile.h"
55 #include "glocalfileinfo.h"
56 #include "glocalfileenumerator.h"
57 #include "glocalfileinputstream.h"
58 #include "glocalfileoutputstream.h"
59 #include "glocalfileiostream.h"
60 #include "glocaldirectorymonitor.h"
61 #include "glocalfilemonitor.h"
62 #include "gmountprivate.h"
63 #include "gunixmounts.h"
64 #include "gioerror.h"
65 #include <glib/gstdio.h>
66 #include "glibintl.h"
67
68 #ifdef G_OS_WIN32
69 #define _WIN32_WINNT 0x0500
70 #include <windows.h>
71 #include <io.h>
72 #include <direct.h>
73
74 #ifndef FILE_READ_ONLY_VOLUME
75 #define FILE_READ_ONLY_VOLUME           0x00080000
76 #endif
77
78 #ifndef S_ISDIR
79 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
80 #endif
81 #ifndef S_ISLNK
82 #define S_ISLNK(m) (0)
83 #endif
84 #endif
85
86
87 static void g_local_file_file_iface_init (GFileIface *iface);
88
89 static GFileAttributeInfoList *local_writable_attributes = NULL;
90 static /* GFileAttributeInfoList * */ gsize local_writable_namespaces = 0;
91
92 struct _GLocalFile
93 {
94   GObject parent_instance;
95
96   char *filename;
97 };
98
99 #define g_local_file_get_type _g_local_file_get_type
100 G_DEFINE_TYPE_WITH_CODE (GLocalFile, g_local_file, G_TYPE_OBJECT,
101                          G_IMPLEMENT_INTERFACE (G_TYPE_FILE,
102                                                 g_local_file_file_iface_init))
103
104 static char *find_mountpoint_for (const char *file, dev_t dev);
105
106 static void
107 g_local_file_finalize (GObject *object)
108 {
109   GLocalFile *local;
110
111   local = G_LOCAL_FILE (object);
112
113   g_free (local->filename);
114
115   G_OBJECT_CLASS (g_local_file_parent_class)->finalize (object);
116 }
117
118 static void
119 g_local_file_class_init (GLocalFileClass *klass)
120 {
121   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
122   GFileAttributeInfoList *list;
123
124   gobject_class->finalize = g_local_file_finalize;
125
126   /* Set up attribute lists */
127
128   /* Writable attributes: */
129
130   list = g_file_attribute_info_list_new ();
131
132   g_file_attribute_info_list_add (list,
133                                   G_FILE_ATTRIBUTE_UNIX_MODE,
134                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
135                                   G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
136                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
137   
138 #ifdef HAVE_CHOWN
139   g_file_attribute_info_list_add (list,
140                                   G_FILE_ATTRIBUTE_UNIX_UID,
141                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
142                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
143   g_file_attribute_info_list_add (list,
144                                   G_FILE_ATTRIBUTE_UNIX_GID,
145                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
146                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
147 #endif
148   
149 #ifdef HAVE_SYMLINK
150   g_file_attribute_info_list_add (list,
151                                   G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET,
152                                   G_FILE_ATTRIBUTE_TYPE_BYTE_STRING,
153                                   0);
154 #endif
155   
156 #ifdef HAVE_UTIMES
157   g_file_attribute_info_list_add (list,
158                                   G_FILE_ATTRIBUTE_TIME_MODIFIED,
159                                   G_FILE_ATTRIBUTE_TYPE_UINT64,
160                                   G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
161                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
162   g_file_attribute_info_list_add (list,
163                                   G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC,
164                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
165                                   G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
166                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
167   /* When copying, the target file is accessed. Replicating
168    * the source access time does not make sense in this case.
169    */
170   g_file_attribute_info_list_add (list,
171                                   G_FILE_ATTRIBUTE_TIME_ACCESS,
172                                   G_FILE_ATTRIBUTE_TYPE_UINT64,
173                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
174   g_file_attribute_info_list_add (list,
175                                   G_FILE_ATTRIBUTE_TIME_ACCESS_USEC,
176                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
177                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
178 #endif
179
180   local_writable_attributes = list;
181 }
182
183 static void
184 g_local_file_init (GLocalFile *local)
185 {
186 }
187
188
189 static char *
190 canonicalize_filename (const char *filename)
191 {
192   char *canon, *start, *p, *q;
193   char *cwd;
194   int i;
195   
196   if (!g_path_is_absolute (filename))
197     {
198       cwd = g_get_current_dir ();
199       canon = g_build_filename (cwd, filename, NULL);
200       g_free (cwd);
201     }
202   else
203     canon = g_strdup (filename);
204
205   start = (char *)g_path_skip_root (canon);
206
207   if (start == NULL)
208     {
209       /* This shouldn't really happen, as g_get_current_dir() should
210          return an absolute pathname, but bug 573843 shows this is
211          not always happening */
212       g_free (canon);
213       return g_build_filename (G_DIR_SEPARATOR_S, filename, NULL);
214     }
215   
216   /* POSIX allows double slashes at the start to
217    * mean something special (as does windows too).
218    * So, "//" != "/", but more than two slashes
219    * is treated as "/".
220    */
221   i = 0;
222   for (p = start - 1;
223        (p >= canon) &&
224          G_IS_DIR_SEPARATOR (*p);
225        p--)
226     i++;
227   if (i > 2)
228     {
229       i -= 1;
230       start -= i;
231       memmove (start, start+i, strlen (start+i)+1);
232     }
233   
234   p = start;
235   while (*p != 0)
236     {
237       if (p[0] == '.' && (p[1] == 0 || G_IS_DIR_SEPARATOR (p[1])))
238         {
239           memmove (p, p+1, strlen (p+1)+1);
240         }
241       else if (p[0] == '.' && p[1] == '.' && (p[2] == 0 || G_IS_DIR_SEPARATOR (p[2])))
242         {
243           q = p + 2;
244           /* Skip previous separator */
245           p = p - 2;
246           if (p < start)
247             p = start;
248           while (p > start && !G_IS_DIR_SEPARATOR (*p))
249             p--;
250           if (G_IS_DIR_SEPARATOR (*p))
251             *p++ = G_DIR_SEPARATOR;
252           memmove (p, q, strlen (q)+1);
253         }
254       else
255         {
256           /* Skip until next separator */
257           while (*p != 0 && !G_IS_DIR_SEPARATOR (*p))
258             p++;
259           
260           if (*p != 0)
261             {
262               /* Canonicalize one separator */
263               *p++ = G_DIR_SEPARATOR;
264             }
265         }
266
267       /* Remove additional separators */
268       q = p;
269       while (*q && G_IS_DIR_SEPARATOR (*q))
270         q++;
271
272       if (p != q)
273         memmove (p, q, strlen (q)+1);
274     }
275
276   /* Remove trailing slashes */
277   if (p > start && G_IS_DIR_SEPARATOR (*(p-1)))
278     *(p-1) = 0;
279   
280   return canon;
281 }
282
283 GFile *
284 _g_local_file_new (const char *filename)
285 {
286   GLocalFile *local;
287
288   local = g_object_new (G_TYPE_LOCAL_FILE, NULL);
289   local->filename = canonicalize_filename (filename);
290   
291   return G_FILE (local);
292 }
293
294 static gboolean
295 g_local_file_is_native (GFile *file)
296 {
297   return TRUE;
298 }
299
300 static gboolean
301 g_local_file_has_uri_scheme (GFile      *file,
302                              const char *uri_scheme)
303 {
304   return g_ascii_strcasecmp (uri_scheme, "file") == 0;
305 }
306
307 static char *
308 g_local_file_get_uri_scheme (GFile *file)
309 {
310   return g_strdup ("file");
311 }
312
313 static char *
314 g_local_file_get_basename (GFile *file)
315 {
316   return g_path_get_basename (G_LOCAL_FILE (file)->filename);
317 }
318
319 static char *
320 g_local_file_get_path (GFile *file)
321 {
322   return g_strdup (G_LOCAL_FILE (file)->filename);
323 }
324
325 static char *
326 g_local_file_get_uri (GFile *file)
327 {
328   return g_filename_to_uri (G_LOCAL_FILE (file)->filename, NULL, NULL);
329 }
330
331 static gboolean
332 get_filename_charset (const gchar **filename_charset)
333 {
334   const gchar **charsets;
335   gboolean is_utf8;
336   
337   is_utf8 = g_get_filename_charsets (&charsets);
338
339   if (filename_charset)
340     *filename_charset = charsets[0];
341   
342   return is_utf8;
343 }
344
345 static gboolean
346 name_is_valid_for_display (const char *string,
347                            gboolean    is_valid_utf8)
348 {
349   char c;
350
351   if (!is_valid_utf8 &&
352       !g_utf8_validate (string, -1, NULL))
353     return FALSE;
354
355   while ((c = *string++) != 0)
356     {
357       if (g_ascii_iscntrl (c))
358         return FALSE;
359     }
360
361   return TRUE;
362 }
363
364 static char *
365 g_local_file_get_parse_name (GFile *file)
366 {
367   const char *filename;
368   char *parse_name;
369   const gchar *charset;
370   char *utf8_filename;
371   char *roundtripped_filename;
372   gboolean free_utf8_filename;
373   gboolean is_valid_utf8;
374   char *escaped_path;
375   
376   filename = G_LOCAL_FILE (file)->filename;
377   if (get_filename_charset (&charset))
378     {
379       utf8_filename = (char *)filename;
380       free_utf8_filename = FALSE;
381       is_valid_utf8 = FALSE; /* Can't guarantee this */
382     }
383   else
384     {
385       utf8_filename = g_convert (filename, -1, 
386                                  "UTF-8", charset, NULL, NULL, NULL);
387       free_utf8_filename = TRUE;
388       is_valid_utf8 = TRUE;
389
390       if (utf8_filename != NULL)
391         {
392           /* Make sure we can roundtrip: */
393           roundtripped_filename = g_convert (utf8_filename, -1,
394                                              charset, "UTF-8", NULL, NULL, NULL);
395           
396           if (roundtripped_filename == NULL ||
397               strcmp (filename, roundtripped_filename) != 0)
398             {
399               g_free (utf8_filename);
400               utf8_filename = NULL;
401             }
402
403           g_free (roundtripped_filename);
404         }
405     }
406
407   if (utf8_filename != NULL &&
408       name_is_valid_for_display (utf8_filename, is_valid_utf8))
409     {
410       if (free_utf8_filename)
411         parse_name = utf8_filename;
412       else
413         parse_name = g_strdup (utf8_filename);
414     }
415   else
416     {
417       escaped_path = g_uri_escape_string (filename,
418                                           G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT "/",
419                                           TRUE);
420       parse_name = g_strconcat ("file://",
421                                 (*escaped_path != '/') ? "/" : "",
422                                 escaped_path,
423                                 NULL);
424       
425       g_free (escaped_path);
426
427       if (free_utf8_filename)
428         g_free (utf8_filename);
429     }
430   
431   return parse_name;
432 }
433
434 static GFile *
435 g_local_file_get_parent (GFile *file)
436 {
437   GLocalFile *local = G_LOCAL_FILE (file);
438   const char *non_root;
439   char *dirname;
440   GFile *parent;
441
442   /* Check for root */
443   non_root = g_path_skip_root (local->filename);
444   if (*non_root == 0)
445     return NULL;
446
447   dirname = g_path_get_dirname (local->filename);
448   parent = _g_local_file_new (dirname);
449   g_free (dirname);
450   return parent;
451 }
452
453 static GFile *
454 g_local_file_dup (GFile *file)
455 {
456   GLocalFile *local = G_LOCAL_FILE (file);
457
458   return _g_local_file_new (local->filename);
459 }
460
461 static guint
462 g_local_file_hash (GFile *file)
463 {
464   GLocalFile *local = G_LOCAL_FILE (file);
465   
466   return g_str_hash (local->filename);
467 }
468
469 static gboolean
470 g_local_file_equal (GFile *file1,
471                     GFile *file2)
472 {
473   GLocalFile *local1 = G_LOCAL_FILE (file1);
474   GLocalFile *local2 = G_LOCAL_FILE (file2);
475
476   return g_str_equal (local1->filename, local2->filename);
477 }
478
479 static const char *
480 match_prefix (const char *path, 
481               const char *prefix)
482 {
483   int prefix_len;
484
485   prefix_len = strlen (prefix);
486   if (strncmp (path, prefix, prefix_len) != 0)
487     return NULL;
488   
489   /* Handle the case where prefix is the root, so that
490    * the IS_DIR_SEPRARATOR check below works */
491   if (prefix_len > 0 &&
492       G_IS_DIR_SEPARATOR (prefix[prefix_len-1]))
493     prefix_len--;
494   
495   return path + prefix_len;
496 }
497
498 static gboolean
499 g_local_file_prefix_matches (GFile *parent,
500                              GFile *descendant)
501 {
502   GLocalFile *parent_local = G_LOCAL_FILE (parent);
503   GLocalFile *descendant_local = G_LOCAL_FILE (descendant);
504   const char *remainder;
505
506   remainder = match_prefix (descendant_local->filename, parent_local->filename);
507   if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder))
508     return TRUE;
509   return FALSE;
510 }
511
512 static char *
513 g_local_file_get_relative_path (GFile *parent,
514                                 GFile *descendant)
515 {
516   GLocalFile *parent_local = G_LOCAL_FILE (parent);
517   GLocalFile *descendant_local = G_LOCAL_FILE (descendant);
518   const char *remainder;
519
520   remainder = match_prefix (descendant_local->filename, parent_local->filename);
521   
522   if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder))
523     return g_strdup (remainder + 1);
524   return NULL;
525 }
526
527 static GFile *
528 g_local_file_resolve_relative_path (GFile      *file,
529                                     const char *relative_path)
530 {
531   GLocalFile *local = G_LOCAL_FILE (file);
532   char *filename;
533   GFile *child;
534
535   if (g_path_is_absolute (relative_path))
536     return _g_local_file_new (relative_path);
537   
538   filename = g_build_filename (local->filename, relative_path, NULL);
539   child = _g_local_file_new (filename);
540   g_free (filename);
541   
542   return child;
543 }
544
545 static GFileEnumerator *
546 g_local_file_enumerate_children (GFile                *file,
547                                  const char           *attributes,
548                                  GFileQueryInfoFlags   flags,
549                                  GCancellable         *cancellable,
550                                  GError              **error)
551 {
552   GLocalFile *local = G_LOCAL_FILE (file);
553   return _g_local_file_enumerator_new (local,
554                                        attributes, flags,
555                                        cancellable, error);
556 }
557
558 static GFile *
559 g_local_file_get_child_for_display_name (GFile        *file,
560                                          const char   *display_name,
561                                          GError      **error)
562 {
563   GFile *new_file;
564   char *basename;
565
566   basename = g_filename_from_utf8 (display_name, -1, NULL, NULL, NULL);
567   if (basename == NULL)
568     {
569       g_set_error (error, G_IO_ERROR,
570                    G_IO_ERROR_INVALID_FILENAME,
571                    _("Invalid filename %s"), display_name);
572       return NULL;
573     }
574
575   new_file = g_file_get_child (file, basename);
576   g_free (basename);
577   
578   return new_file;
579 }
580
581 #ifdef USE_STATFS
582 static const char *
583 get_fs_type (long f_type)
584 {
585   /* filesystem ids taken from linux manpage */
586   switch (f_type) 
587     {
588     case 0xadf5:
589       return "adfs";
590     case 0x5346414f:
591       return "afs";
592     case 0x0187:
593       return "autofs";
594     case 0xADFF:
595       return "affs";
596     case 0x42465331:
597       return "befs";
598     case 0x1BADFACE:
599       return "bfs";
600     case 0x9123683E:
601       return "btrfs";
602     case 0xFF534D42:
603       return "cifs";
604     case 0x73757245:
605       return "coda";
606     case 0x012FF7B7:
607       return "coh";
608     case 0x28cd3d45:
609       return "cramfs";
610     case 0x1373:
611       return "devfs";
612     case 0x00414A53:
613       return "efs";
614     case 0x137D:
615       return "ext";
616     case 0xEF51:
617       return "ext2";
618     case 0xEF53:
619       return "ext3/ext4";
620     case 0x4244:
621       return "hfs";
622     case 0xF995E849:
623       return "hpfs";
624     case 0x958458f6:
625       return "hugetlbfs";
626     case 0x9660:
627       return "isofs";
628     case 0x72b6:
629       return "jffs2";
630     case 0x3153464a:
631       return "jfs";
632     case 0x137F:
633       return "minix";
634     case 0x138F:
635       return "minix2";
636     case 0x2468:
637       return "minix2";
638     case 0x2478:
639       return "minix22";
640     case 0x4d44:
641       return "msdos";
642     case 0x564c:
643       return "ncp";
644     case 0x6969:
645       return "nfs";
646     case 0x5346544e:
647       return "ntfs";
648     case 0x9fa1:
649       return "openprom";
650     case 0x9fa0:
651       return "proc";
652     case 0x002f:
653       return "qnx4";
654     case 0x52654973:
655       return "reiserfs";
656     case 0x7275:
657       return "romfs";
658     case 0x517B:
659       return "smb";
660     case 0x73717368:
661       return "squashfs";
662     case 0x012FF7B6:
663       return "sysv2";
664     case 0x012FF7B5:
665       return "sysv4";
666     case 0x01021994:
667       return "tmpfs";
668     case 0x15013346:
669       return "udf";
670     case 0x00011954:
671       return "ufs";
672     case 0x9fa2:
673       return "usbdevice";
674     case 0xa501FCF5:
675       return "vxfs";
676     case 0x012FF7B4:
677       return "xenix";
678     case 0x58465342:
679       return "xfs";
680     case 0x012FD16D:
681       return "xiafs";
682     case 0x52345362:
683       return "reiser4";
684     default:
685       return NULL;
686     }
687 }
688 #endif
689
690 #ifndef G_OS_WIN32
691
692 G_LOCK_DEFINE_STATIC(mount_info_hash);
693 static GHashTable *mount_info_hash = NULL;
694 static guint64 mount_info_hash_cache_time = 0;
695
696 typedef enum {
697   MOUNT_INFO_READONLY = 1<<0
698 } MountInfo;
699
700 static gboolean
701 device_equal (gconstpointer v1,
702               gconstpointer v2)
703 {
704   return *(dev_t *)v1 == *(dev_t *)v2;
705 }
706
707 static guint
708 device_hash (gconstpointer v)
709 {
710   return (guint) *(dev_t *)v;
711 }
712
713 static void
714 get_mount_info (GFileInfo             *fs_info,
715                 const char            *path,
716                 GFileAttributeMatcher *matcher)
717 {
718   GStatBuf buf;
719   gboolean got_info;
720   gpointer info_as_ptr;
721   guint mount_info;
722   char *mountpoint;
723   dev_t *dev;
724   GUnixMountEntry *mount;
725   guint64 cache_time;
726
727   if (g_lstat (path, &buf) != 0)
728     return;
729
730   G_LOCK (mount_info_hash);
731
732   if (mount_info_hash == NULL)
733     mount_info_hash = g_hash_table_new_full (device_hash, device_equal,
734                                              g_free, NULL);
735
736
737   if (g_unix_mounts_changed_since (mount_info_hash_cache_time))
738     g_hash_table_remove_all (mount_info_hash);
739   
740   got_info = g_hash_table_lookup_extended (mount_info_hash,
741                                            &buf.st_dev,
742                                            NULL,
743                                            &info_as_ptr);
744   
745   G_UNLOCK (mount_info_hash);
746   
747   mount_info = GPOINTER_TO_UINT (info_as_ptr);
748   
749   if (!got_info)
750     {
751       mount_info = 0;
752
753       mountpoint = find_mountpoint_for (path, buf.st_dev);
754       if (mountpoint == NULL)
755         mountpoint = g_strdup ("/");
756
757       mount = g_unix_mount_at (mountpoint, &cache_time);
758       if (mount)
759         {
760           if (g_unix_mount_is_readonly (mount))
761             mount_info |= MOUNT_INFO_READONLY;
762           
763           g_unix_mount_free (mount);
764         }
765
766       g_free (mountpoint);
767
768       dev = g_new0 (dev_t, 1);
769       *dev = buf.st_dev;
770       
771       G_LOCK (mount_info_hash);
772       mount_info_hash_cache_time = cache_time;
773       g_hash_table_insert (mount_info_hash, dev, GUINT_TO_POINTER (mount_info));
774       G_UNLOCK (mount_info_hash);
775     }
776
777   if (mount_info & MOUNT_INFO_READONLY)
778     g_file_info_set_attribute_boolean (fs_info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, TRUE);
779 }
780
781 #endif
782
783 #ifdef G_OS_WIN32
784
785 static gboolean
786 is_xp_or_later (void)
787 {
788   static int result = -1;
789
790   if (result == -1)
791     {
792 #ifndef _MSC_VER    
793       OSVERSIONINFOEX ver_info = {0};
794       DWORDLONG cond_mask = 0;
795       int op = VER_GREATER_EQUAL;
796
797       ver_info.dwOSVersionInfoSize = sizeof ver_info;
798       ver_info.dwMajorVersion = 5;
799       ver_info.dwMinorVersion = 1;
800
801       VER_SET_CONDITION (cond_mask, VER_MAJORVERSION, op);
802       VER_SET_CONDITION (cond_mask, VER_MINORVERSION, op);
803
804       result = VerifyVersionInfo (&ver_info,
805                                   VER_MAJORVERSION | VER_MINORVERSION, 
806                                   cond_mask) != 0;
807 #else
808       result = ((DWORD)(LOBYTE (LOWORD (GetVersion ())))) >= 5;  
809 #endif
810     }
811
812   return result;
813 }
814
815 static wchar_t *
816 get_volume_for_path (const char *path)
817 {
818   long len;
819   wchar_t *wpath;
820   wchar_t *result;
821
822   wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, NULL);
823   result = g_new (wchar_t, MAX_PATH);
824
825   if (!GetVolumePathNameW (wpath, result, MAX_PATH))
826     {
827       char *msg = g_win32_error_message (GetLastError ());
828       g_critical ("GetVolumePathName failed: %s", msg);
829       g_free (msg);
830       g_free (result);
831       g_free (wpath);
832       return NULL;
833     }
834
835   len = wcslen (result);
836   if (len > 0 && result[len-1] != L'\\')
837     {
838       result = g_renew (wchar_t, result, len + 2);
839       result[len] = L'\\';
840       result[len + 1] = 0;
841     }
842
843   g_free (wpath);
844   return result;
845 }
846
847 static char *
848 find_mountpoint_for (const char *file, dev_t dev)
849 {
850   wchar_t *wpath;
851   char *utf8_path;
852
853   wpath = get_volume_for_path (file);
854   if (!wpath)
855     return NULL;
856
857   utf8_path = g_utf16_to_utf8 (wpath, -1, NULL, NULL, NULL);
858
859   g_free (wpath);
860   return utf8_path;
861 }
862
863 static void
864 get_filesystem_readonly (GFileInfo  *info,
865                          const char *path)
866 {
867   wchar_t *rootdir;
868
869   rootdir = get_volume_for_path (path);
870
871   if (rootdir)
872     {
873       if (is_xp_or_later ())
874         {
875           DWORD flags;
876           if (GetVolumeInformationW (rootdir, NULL, 0, NULL, NULL, &flags, NULL, 0))
877             g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY,
878                                                (flags & FILE_READ_ONLY_VOLUME) != 0);
879         }
880       else
881         {
882           if (GetDriveTypeW (rootdir) == DRIVE_CDROM)
883             g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY, TRUE);
884         }
885     }
886
887   g_free (rootdir);
888 }
889
890 #endif /* G_OS_WIN32 */
891
892 static GFileInfo *
893 g_local_file_query_filesystem_info (GFile         *file,
894                                     const char    *attributes,
895                                     GCancellable  *cancellable,
896                                     GError       **error)
897 {
898   GLocalFile *local = G_LOCAL_FILE (file);
899   GFileInfo *info;
900   int statfs_result = 0;
901   gboolean no_size;
902 #ifndef G_OS_WIN32
903   const char *fstype;
904 #ifdef USE_STATFS
905   guint64 block_size;
906   struct statfs statfs_buffer;
907 #elif defined(USE_STATVFS)
908   guint64 block_size;
909   struct statvfs statfs_buffer;
910 #endif
911 #endif
912   GFileAttributeMatcher *attribute_matcher;
913         
914   no_size = FALSE;
915   
916 #ifdef USE_STATFS
917   
918 #if STATFS_ARGS == 2
919   statfs_result = statfs (local->filename, &statfs_buffer);
920 #elif STATFS_ARGS == 4
921   statfs_result = statfs (local->filename, &statfs_buffer,
922                           sizeof (statfs_buffer), 0);
923 #endif
924   block_size = statfs_buffer.f_bsize;
925   
926   /* Many backends can't report free size (for instance the gvfs fuse
927      backend for backend not supporting this), and set f_bfree to 0,
928      but it can be 0 for real too. We treat the available == 0 and
929      free == 0 case as "both of these are invalid".
930    */
931 #ifndef G_OS_WIN32
932   if (statfs_result == 0 &&
933       statfs_buffer.f_bavail == 0 && statfs_buffer.f_bfree == 0)
934     no_size = TRUE;
935 #endif
936   
937 #elif defined(USE_STATVFS)
938   statfs_result = statvfs (local->filename, &statfs_buffer);
939   block_size = statfs_buffer.f_frsize; 
940 #endif
941
942   if (statfs_result == -1)
943     {
944       int errsv = errno;
945
946       g_set_error (error, G_IO_ERROR,
947                    g_io_error_from_errno (errsv),
948                    _("Error getting filesystem info: %s"),
949                    g_strerror (errsv));
950       return NULL;
951     }
952
953   info = g_file_info_new ();
954
955   attribute_matcher = g_file_attribute_matcher_new (attributes);
956   
957   if (!no_size &&
958       g_file_attribute_matcher_matches (attribute_matcher,
959                                         G_FILE_ATTRIBUTE_FILESYSTEM_FREE))
960     {
961 #ifdef G_OS_WIN32
962       gchar *localdir = g_path_get_dirname (local->filename);
963       wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
964       ULARGE_INTEGER li;
965       
966       g_free (localdir);
967       if (GetDiskFreeSpaceExW (wdirname, &li, NULL, NULL))
968         g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_FREE, (guint64)li.QuadPart);
969       g_free (wdirname);
970 #else
971 #if defined(USE_STATFS) || defined(USE_STATVFS)
972       g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_FREE, block_size * statfs_buffer.f_bavail);
973 #endif
974 #endif
975     }
976   if (!no_size &&
977       g_file_attribute_matcher_matches (attribute_matcher,
978                                         G_FILE_ATTRIBUTE_FILESYSTEM_SIZE))
979     {
980 #ifdef G_OS_WIN32
981       gchar *localdir = g_path_get_dirname (local->filename);
982       wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
983       ULARGE_INTEGER li;
984       
985       g_free (localdir);
986       if (GetDiskFreeSpaceExW (wdirname, NULL, &li, NULL))
987         g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_SIZE,  (guint64)li.QuadPart);
988       g_free (wdirname);
989 #else
990 #if defined(USE_STATFS) || defined(USE_STATVFS)
991       g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_SIZE, block_size * statfs_buffer.f_blocks);
992 #endif
993 #endif
994     }
995
996 #ifndef G_OS_WIN32
997 #ifdef USE_STATFS
998 #if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME)
999   fstype = g_strdup(statfs_buffer.f_fstypename);
1000 #else
1001   fstype = get_fs_type (statfs_buffer.f_type);
1002 #endif
1003
1004 #elif defined(USE_STATVFS) && defined(HAVE_STRUCT_STATVFS_F_BASETYPE)
1005   fstype = g_strdup(statfs_buffer.f_basetype); 
1006 #else
1007   fstype = NULL;
1008 #endif
1009
1010   if (fstype &&
1011       g_file_attribute_matcher_matches (attribute_matcher,
1012                                         G_FILE_ATTRIBUTE_FILESYSTEM_TYPE))
1013     g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE, fstype);
1014 #endif  
1015
1016   if (g_file_attribute_matcher_matches (attribute_matcher,
1017                                         G_FILE_ATTRIBUTE_FILESYSTEM_READONLY))
1018     {
1019 #ifdef G_OS_WIN32
1020       get_filesystem_readonly (info, local->filename);
1021 #else
1022       get_mount_info (info, local->filename, attribute_matcher);
1023 #endif
1024     }
1025   
1026   g_file_attribute_matcher_unref (attribute_matcher);
1027   
1028   return info;
1029 }
1030
1031 static GMount *
1032 g_local_file_find_enclosing_mount (GFile         *file,
1033                                    GCancellable  *cancellable,
1034                                    GError       **error)
1035 {
1036   GLocalFile *local = G_LOCAL_FILE (file);
1037   GStatBuf buf;
1038   char *mountpoint;
1039   GMount *mount;
1040
1041   if (g_lstat (local->filename, &buf) != 0)
1042     {
1043       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1044                       /* Translators: This is an error message when trying to
1045                        * find the enclosing (user visible) mount of a file, but
1046                        * none exists. */
1047                       _("Containing mount does not exist"));
1048       return NULL;
1049     }
1050
1051   mountpoint = find_mountpoint_for (local->filename, buf.st_dev);
1052   if (mountpoint == NULL)
1053     {
1054       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1055                       /* Translators: This is an error message when trying to
1056                        * find the enclosing (user visible) mount of a file, but
1057                        * none exists. */
1058                       _("Containing mount does not exist"));
1059       return NULL;
1060     }
1061
1062   mount = _g_mount_get_for_mount_path (mountpoint, cancellable);
1063   g_free (mountpoint);
1064   if (mount)
1065     return mount;
1066
1067   g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1068                   /* Translators: This is an error message when trying to find
1069                    * the enclosing (user visible) mount of a file, but none
1070                    * exists. */
1071                   _("Containing mount does not exist"));
1072   return NULL;
1073 }
1074
1075 static GFile *
1076 g_local_file_set_display_name (GFile         *file,
1077                                const char    *display_name,
1078                                GCancellable  *cancellable,
1079                                GError       **error)
1080 {
1081   GLocalFile *local, *new_local;
1082   GFile *new_file, *parent;
1083   GStatBuf statbuf;
1084   GVfsClass *class;
1085   GVfs *vfs;
1086   int errsv;
1087
1088   parent = g_file_get_parent (file);
1089   if (parent == NULL)
1090     {
1091       g_set_error_literal (error, G_IO_ERROR,
1092                            G_IO_ERROR_FAILED,
1093                            _("Can't rename root directory"));
1094       return NULL;
1095     }
1096   
1097   new_file = g_file_get_child_for_display_name (parent, display_name, error);
1098   g_object_unref (parent);
1099   
1100   if (new_file == NULL)
1101     return NULL;
1102   local = G_LOCAL_FILE (file);
1103   new_local = G_LOCAL_FILE (new_file);
1104
1105   if (g_lstat (new_local->filename, &statbuf) == -1) 
1106     {
1107       errsv = errno;
1108
1109       if (errsv != ENOENT)
1110         {
1111           g_set_error (error, G_IO_ERROR,
1112                        g_io_error_from_errno (errsv),
1113                        _("Error renaming file: %s"),
1114                        g_strerror (errsv));
1115           return NULL;
1116         }
1117     }
1118   else
1119     {
1120       g_set_error_literal (error, G_IO_ERROR,
1121                            G_IO_ERROR_EXISTS,
1122                            _("Can't rename file, filename already exists"));
1123       return NULL;
1124     }
1125
1126   if (g_rename (local->filename, new_local->filename) == -1)
1127     {
1128       errsv = errno;
1129
1130       if (errsv == EINVAL)
1131         /* We can't get a rename file into itself error herer,
1132            so this must be an invalid filename, on e.g. FAT */
1133         g_set_error_literal (error, G_IO_ERROR,
1134                              G_IO_ERROR_INVALID_FILENAME,
1135                              _("Invalid filename"));
1136       else
1137         g_set_error (error, G_IO_ERROR,
1138                      g_io_error_from_errno (errsv),
1139                      _("Error renaming file: %s"),
1140                      g_strerror (errsv));
1141       g_object_unref (new_file);
1142       return NULL;
1143     }
1144
1145   vfs = g_vfs_get_default ();
1146   class = G_VFS_GET_CLASS (vfs);
1147   if (class->local_file_moved)
1148     class->local_file_moved (vfs, local->filename, new_local->filename);
1149
1150   return new_file;
1151 }
1152
1153 static GFileInfo *
1154 g_local_file_query_info (GFile                *file,
1155                          const char           *attributes,
1156                          GFileQueryInfoFlags   flags,
1157                          GCancellable         *cancellable,
1158                          GError              **error)
1159 {
1160   GLocalFile *local = G_LOCAL_FILE (file);
1161   GFileInfo *info;
1162   GFileAttributeMatcher *matcher;
1163   char *basename, *dirname;
1164   GLocalParentFileInfo parent_info;
1165
1166   matcher = g_file_attribute_matcher_new (attributes);
1167   
1168   basename = g_path_get_basename (local->filename);
1169   
1170   dirname = g_path_get_dirname (local->filename);
1171   _g_local_file_info_get_parent_info (dirname, matcher, &parent_info);
1172   g_free (dirname);
1173   
1174   info = _g_local_file_info_get (basename, local->filename,
1175                                  matcher, flags, &parent_info,
1176                                  error);
1177   
1178
1179   _g_local_file_info_free_parent_info (&parent_info);
1180   g_free (basename);
1181
1182   g_file_attribute_matcher_unref (matcher);
1183
1184   return info;
1185 }
1186
1187 static GFileAttributeInfoList *
1188 g_local_file_query_settable_attributes (GFile         *file,
1189                                         GCancellable  *cancellable,
1190                                         GError       **error)
1191 {
1192   return g_file_attribute_info_list_ref (local_writable_attributes);
1193 }
1194
1195 static GFileAttributeInfoList *
1196 g_local_file_query_writable_namespaces (GFile         *file,
1197                                         GCancellable  *cancellable,
1198                                         GError       **error)
1199 {
1200   GFileAttributeInfoList *list;
1201   GVfsClass *class;
1202   GVfs *vfs;
1203
1204   if (g_once_init_enter (&local_writable_namespaces))
1205     {
1206       /* Writable namespaces: */
1207
1208       list = g_file_attribute_info_list_new ();
1209
1210 #ifdef HAVE_XATTR
1211       g_file_attribute_info_list_add (list,
1212                                       "xattr",
1213                                       G_FILE_ATTRIBUTE_TYPE_STRING,
1214                                       G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
1215                                       G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
1216       g_file_attribute_info_list_add (list,
1217                                       "xattr-sys",
1218                                       G_FILE_ATTRIBUTE_TYPE_STRING,
1219                                       G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
1220 #endif
1221
1222       vfs = g_vfs_get_default ();
1223       class = G_VFS_GET_CLASS (vfs);
1224       if (class->add_writable_namespaces)
1225         class->add_writable_namespaces (vfs, list);
1226
1227       g_once_init_leave (&local_writable_namespaces, (gsize)list);
1228     }
1229   list = (GFileAttributeInfoList *)local_writable_namespaces;
1230
1231   return g_file_attribute_info_list_ref (list);
1232 }
1233
1234 static gboolean
1235 g_local_file_set_attribute (GFile                *file,
1236                             const char           *attribute,
1237                             GFileAttributeType    type,
1238                             gpointer              value_p,
1239                             GFileQueryInfoFlags   flags,
1240                             GCancellable         *cancellable,
1241                             GError              **error)
1242 {
1243   GLocalFile *local = G_LOCAL_FILE (file);
1244
1245   return _g_local_file_info_set_attribute (local->filename,
1246                                            attribute,
1247                                            type,
1248                                            value_p,
1249                                            flags,
1250                                            cancellable,
1251                                            error);
1252 }
1253
1254 static gboolean
1255 g_local_file_set_attributes_from_info (GFile                *file,
1256                                        GFileInfo            *info,
1257                                        GFileQueryInfoFlags   flags,
1258                                        GCancellable         *cancellable,
1259                                        GError              **error)
1260 {
1261   GLocalFile *local = G_LOCAL_FILE (file);
1262   int res, chained_res;
1263   GFileIface *default_iface;
1264
1265   res = _g_local_file_info_set_attributes (local->filename,
1266                                            info, flags, 
1267                                            cancellable,
1268                                            error);
1269
1270   if (!res)
1271     error = NULL; /* Don't write over error if further errors */
1272
1273   default_iface = g_type_default_interface_peek (G_TYPE_FILE);
1274
1275   chained_res = (default_iface->set_attributes_from_info) (file, info, flags, cancellable, error);
1276   
1277   return res && chained_res;
1278 }
1279
1280 static GFileInputStream *
1281 g_local_file_read (GFile         *file,
1282                    GCancellable  *cancellable,
1283                    GError       **error)
1284 {
1285   GLocalFile *local = G_LOCAL_FILE (file);
1286   int fd, ret;
1287   GLocalFileStat buf;
1288   
1289   fd = g_open (local->filename, O_RDONLY|O_BINARY, 0);
1290   if (fd == -1)
1291     {
1292       int errsv = errno;
1293
1294       g_set_error (error, G_IO_ERROR,
1295                    g_io_error_from_errno (errsv),
1296                    _("Error opening file: %s"),
1297                    g_strerror (errsv));
1298       return NULL;
1299     }
1300
1301 #ifdef G_OS_WIN32
1302   ret = _fstati64 (fd, &buf);
1303 #else
1304   ret = fstat (fd, &buf);
1305 #endif
1306
1307   if (ret == 0 && S_ISDIR (buf.st_mode))
1308     {
1309       close (fd);
1310       g_set_error_literal (error, G_IO_ERROR,
1311                            G_IO_ERROR_IS_DIRECTORY,
1312                            _("Can't open directory"));
1313       return NULL;
1314     }
1315   
1316   return _g_local_file_input_stream_new (fd);
1317 }
1318
1319 static GFileOutputStream *
1320 g_local_file_append_to (GFile             *file,
1321                         GFileCreateFlags   flags,
1322                         GCancellable      *cancellable,
1323                         GError           **error)
1324 {
1325   return _g_local_file_output_stream_append (G_LOCAL_FILE (file)->filename,
1326                                              flags, cancellable, error);
1327 }
1328
1329 static GFileOutputStream *
1330 g_local_file_create (GFile             *file,
1331                      GFileCreateFlags   flags,
1332                      GCancellable      *cancellable,
1333                      GError           **error)
1334 {
1335   return _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
1336                                              FALSE,
1337                                              flags, cancellable, error);
1338 }
1339
1340 static GFileOutputStream *
1341 g_local_file_replace (GFile             *file,
1342                       const char        *etag,
1343                       gboolean           make_backup,
1344                       GFileCreateFlags   flags,
1345                       GCancellable      *cancellable,
1346                       GError           **error)
1347 {
1348   return _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
1349                                               FALSE,
1350                                               etag, make_backup, flags,
1351                                               cancellable, error);
1352 }
1353
1354 static GFileIOStream *
1355 g_local_file_open_readwrite (GFile                      *file,
1356                              GCancellable               *cancellable,
1357                              GError                    **error)
1358 {
1359   GFileOutputStream *output;
1360   GFileIOStream *res;
1361
1362   output = _g_local_file_output_stream_open (G_LOCAL_FILE (file)->filename,
1363                                              TRUE,
1364                                              cancellable, error);
1365   if (output == NULL)
1366     return NULL;
1367
1368   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1369   g_object_unref (output);
1370   return res;
1371 }
1372
1373 static GFileIOStream *
1374 g_local_file_create_readwrite (GFile                      *file,
1375                                GFileCreateFlags            flags,
1376                                GCancellable               *cancellable,
1377                                GError                    **error)
1378 {
1379   GFileOutputStream *output;
1380   GFileIOStream *res;
1381
1382   output = _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
1383                                                TRUE, flags,
1384                                                cancellable, error);
1385   if (output == NULL)
1386     return NULL;
1387
1388   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1389   g_object_unref (output);
1390   return res;
1391 }
1392
1393 static GFileIOStream *
1394 g_local_file_replace_readwrite (GFile                      *file,
1395                                 const char                 *etag,
1396                                 gboolean                    make_backup,
1397                                 GFileCreateFlags            flags,
1398                                 GCancellable               *cancellable,
1399                                 GError                    **error)
1400 {
1401   GFileOutputStream *output;
1402   GFileIOStream *res;
1403
1404   output = _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
1405                                                 TRUE,
1406                                                 etag, make_backup, flags,
1407                                                 cancellable, error);
1408   if (output == NULL)
1409     return NULL;
1410
1411   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1412   g_object_unref (output);
1413   return res;
1414 }
1415
1416 static gboolean
1417 g_local_file_delete (GFile         *file,
1418                      GCancellable  *cancellable,
1419                      GError       **error)
1420 {
1421   GLocalFile *local = G_LOCAL_FILE (file);
1422   GVfsClass *class;
1423   GVfs *vfs;
1424
1425   if (g_remove (local->filename) == -1)
1426     {
1427       int errsv = errno;
1428
1429       /* Posix allows EEXIST too, but the more sane error
1430          is G_IO_ERROR_NOT_FOUND, and it's what nautilus
1431          expects */
1432       if (errsv == EEXIST)
1433         errsv = ENOTEMPTY;
1434
1435       g_set_error (error, G_IO_ERROR,
1436                    g_io_error_from_errno (errsv),
1437                    _("Error removing file: %s"),
1438                    g_strerror (errsv));
1439       return FALSE;
1440     }
1441
1442   vfs = g_vfs_get_default ();
1443   class = G_VFS_GET_CLASS (vfs);
1444   if (class->local_file_removed)
1445     class->local_file_removed (vfs, local->filename);
1446
1447   return TRUE;
1448 }
1449
1450 #ifndef G_OS_WIN32
1451
1452 static char *
1453 strip_trailing_slashes (const char *path)
1454 {
1455   char *path_copy;
1456   int len;
1457
1458   path_copy = g_strdup (path);
1459   len = strlen (path_copy);
1460   while (len > 1 && path_copy[len-1] == '/')
1461     path_copy[--len] = 0;
1462
1463   return path_copy;
1464  }
1465
1466 static char *
1467 expand_symlink (const char *link)
1468 {
1469   char *resolved, *canonical, *parent, *link2;
1470   char symlink_value[4096];
1471 #ifdef G_OS_WIN32
1472 #else
1473   ssize_t res;
1474 #endif
1475   
1476 #ifdef G_OS_WIN32
1477 #else
1478   res = readlink (link, symlink_value, sizeof (symlink_value) - 1);
1479   
1480   if (res == -1)
1481     return g_strdup (link);
1482   symlink_value[res] = 0;
1483 #endif
1484   
1485   if (g_path_is_absolute (symlink_value))
1486     return canonicalize_filename (symlink_value);
1487   else
1488     {
1489       link2 = strip_trailing_slashes (link);
1490       parent = g_path_get_dirname (link2);
1491       g_free (link2);
1492       
1493       resolved = g_build_filename (parent, symlink_value, NULL);
1494       g_free (parent);
1495       
1496       canonical = canonicalize_filename (resolved);
1497       
1498       g_free (resolved);
1499
1500       return canonical;
1501     }
1502 }
1503
1504 static char *
1505 get_parent (const char *path, 
1506             dev_t      *parent_dev)
1507 {
1508   char *parent, *tmp;
1509   GStatBuf parent_stat;
1510   int num_recursions;
1511   char *path_copy;
1512
1513   path_copy = strip_trailing_slashes (path);
1514   
1515   parent = g_path_get_dirname (path_copy);
1516   if (strcmp (parent, ".") == 0 ||
1517       strcmp (parent, path_copy) == 0)
1518     {
1519       g_free (parent);
1520       g_free (path_copy);
1521       return NULL;
1522     }
1523   g_free (path_copy);
1524
1525   num_recursions = 0;
1526   do {
1527     if (g_lstat (parent, &parent_stat) != 0)
1528       {
1529         g_free (parent);
1530         return NULL;
1531       }
1532     
1533     if (S_ISLNK (parent_stat.st_mode))
1534       {
1535         tmp = parent;
1536         parent = expand_symlink (parent);
1537         g_free (tmp);
1538       }
1539     
1540     num_recursions++;
1541     if (num_recursions > 12)
1542       {
1543         g_free (parent);
1544         return NULL;
1545       }
1546   } while (S_ISLNK (parent_stat.st_mode));
1547
1548   *parent_dev = parent_stat.st_dev;
1549   
1550   return parent;
1551 }
1552
1553 static char *
1554 expand_all_symlinks (const char *path)
1555 {
1556   char *parent, *parent_expanded;
1557   char *basename, *res;
1558   dev_t parent_dev;
1559
1560   parent = get_parent (path, &parent_dev);
1561   if (parent)
1562     {
1563       parent_expanded = expand_all_symlinks (parent);
1564       g_free (parent);
1565       basename = g_path_get_basename (path);
1566       res = g_build_filename (parent_expanded, basename, NULL);
1567       g_free (basename);
1568       g_free (parent_expanded);
1569     }
1570   else
1571     res = g_strdup (path);
1572   
1573   return res;
1574 }
1575
1576 static char *
1577 find_mountpoint_for (const char *file, 
1578                      dev_t       dev)
1579 {
1580   char *dir, *parent;
1581   dev_t dir_dev, parent_dev;
1582
1583   dir = g_strdup (file);
1584   dir_dev = dev;
1585
1586   while (1) 
1587     {
1588       parent = get_parent (dir, &parent_dev);
1589       if (parent == NULL)
1590         return dir;
1591     
1592       if (parent_dev != dir_dev)
1593         {
1594           g_free (parent);
1595           return dir;
1596         }
1597     
1598       g_free (dir);
1599       dir = parent;
1600     }
1601 }
1602
1603 static char *
1604 find_topdir_for (const char *file)
1605 {
1606   char *dir;
1607   dev_t dir_dev;
1608
1609   dir = get_parent (file, &dir_dev);
1610   if (dir == NULL)
1611     return NULL;
1612
1613   return find_mountpoint_for (dir, dir_dev);
1614 }
1615
1616 static char *
1617 get_unique_filename (const char *basename, 
1618                      int         id)
1619 {
1620   const char *dot;
1621       
1622   if (id == 1)
1623     return g_strdup (basename);
1624
1625   dot = strchr (basename, '.');
1626   if (dot)
1627     return g_strdup_printf ("%.*s.%d%s", (int)(dot - basename), basename, id, dot);
1628   else
1629     return g_strdup_printf ("%s.%d", basename, id);
1630 }
1631
1632 static gboolean
1633 path_has_prefix (const char *path, 
1634                  const char *prefix)
1635 {
1636   int prefix_len;
1637
1638   if (prefix == NULL)
1639     return TRUE;
1640
1641   prefix_len = strlen (prefix);
1642   
1643   if (strncmp (path, prefix, prefix_len) == 0 &&
1644       (prefix_len == 0 || /* empty prefix always matches */
1645        prefix[prefix_len - 1] == '/' || /* last char in prefix was a /, so it must be in path too */
1646        path[prefix_len] == 0 ||
1647        path[prefix_len] == '/'))
1648     return TRUE;
1649   
1650   return FALSE;
1651 }
1652
1653 static char *
1654 try_make_relative (const char *path, 
1655                    const char *base)
1656 {
1657   char *path2, *base2;
1658   char *relative;
1659
1660   path2 = expand_all_symlinks (path);
1661   base2 = expand_all_symlinks (base);
1662
1663   relative = NULL;
1664   if (path_has_prefix (path2, base2))
1665     {
1666       relative = path2 + strlen (base2);
1667       while (*relative == '/')
1668         relative ++;
1669       relative = g_strdup (relative);
1670     }
1671   g_free (path2);
1672   g_free (base2);
1673
1674   if (relative)
1675     return relative;
1676   
1677   /* Failed, use abs path */
1678   return g_strdup (path);
1679 }
1680
1681 static char *
1682 escape_trash_name (char *name)
1683 {
1684   GString *str;
1685   const gchar hex[16] = "0123456789ABCDEF";
1686   
1687   str = g_string_new ("");
1688
1689   while (*name != 0)
1690     {
1691       char c;
1692
1693       c = *name++;
1694
1695       if (g_ascii_isprint (c))
1696         g_string_append_c (str, c);
1697       else
1698         {
1699           g_string_append_c (str, '%');
1700           g_string_append_c (str, hex[((guchar)c) >> 4]);
1701           g_string_append_c (str, hex[((guchar)c) & 0xf]);
1702         }
1703     }
1704
1705   return g_string_free (str, FALSE);
1706 }
1707
1708 gboolean
1709 _g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev)
1710 {
1711   static gsize home_dev_set = 0;
1712   static dev_t home_dev;
1713   char *topdir, *globaldir, *trashdir, *tmpname;
1714   uid_t uid;
1715   char uid_str[32];
1716   GStatBuf global_stat, trash_stat;
1717   gboolean res;
1718
1719   if (g_once_init_enter (&home_dev_set))
1720     {
1721       GStatBuf home_stat;
1722
1723       g_stat (g_get_home_dir (), &home_stat);
1724       home_dev = home_stat.st_dev;
1725       g_once_init_leave (&home_dev_set, 1);
1726     }
1727
1728   /* Assume we can trash to the home */
1729   if (dir_dev == home_dev)
1730     return TRUE;
1731
1732   topdir = find_mountpoint_for (dirname, dir_dev);
1733   if (topdir == NULL)
1734     return FALSE;
1735
1736   globaldir = g_build_filename (topdir, ".Trash", NULL);
1737   if (g_lstat (globaldir, &global_stat) == 0 &&
1738       S_ISDIR (global_stat.st_mode) &&
1739       (global_stat.st_mode & S_ISVTX) != 0)
1740     {
1741       /* got a toplevel sysadmin created dir, assume we
1742        * can trash to it (we should be able to create a dir)
1743        * This fails for the FAT case where the ownership of
1744        * that dir would be wrong though..
1745        */
1746       g_free (globaldir);
1747       g_free (topdir);
1748       return TRUE;
1749     }
1750   g_free (globaldir);
1751
1752   /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
1753   uid = geteuid ();
1754   g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long) uid);
1755
1756   tmpname = g_strdup_printf (".Trash-%s", uid_str);
1757   trashdir = g_build_filename (topdir, tmpname, NULL);
1758   g_free (tmpname);
1759
1760   if (g_lstat (trashdir, &trash_stat) == 0)
1761     {
1762       g_free (topdir);
1763       g_free (trashdir);
1764       return S_ISDIR (trash_stat.st_mode) &&
1765              trash_stat.st_uid == uid;
1766     }
1767   g_free (trashdir);
1768
1769   /* User specific trash didn't exist, can we create it? */
1770   res = g_access (topdir, W_OK) == 0;
1771   g_free (topdir);
1772
1773   return res;
1774 }
1775
1776
1777 static gboolean
1778 g_local_file_trash (GFile         *file,
1779                     GCancellable  *cancellable,
1780                     GError       **error)
1781 {
1782   GLocalFile *local = G_LOCAL_FILE (file);
1783   GStatBuf file_stat, home_stat;
1784   const char *homedir;
1785   char *trashdir, *topdir, *infodir, *filesdir;
1786   char *basename, *trashname, *trashfile, *infoname, *infofile;
1787   char *original_name, *original_name_escaped;
1788   int i;
1789   char *data;
1790   gboolean is_homedir_trash;
1791   char delete_time[32];
1792   int fd;
1793   GStatBuf trash_stat, global_stat;
1794   char *dirname, *globaldir;
1795   GVfsClass *class;
1796   GVfs *vfs;
1797
1798   if (g_lstat (local->filename, &file_stat) != 0)
1799     {
1800       int errsv = errno;
1801
1802       g_set_error (error, G_IO_ERROR,
1803                    g_io_error_from_errno (errsv),
1804                    _("Error trashing file: %s"),
1805                    g_strerror (errsv));
1806       return FALSE;
1807     }
1808     
1809   homedir = g_get_home_dir ();
1810   g_stat (homedir, &home_stat);
1811
1812   is_homedir_trash = FALSE;
1813   trashdir = NULL;
1814   if (file_stat.st_dev == home_stat.st_dev)
1815     {
1816       is_homedir_trash = TRUE;
1817       errno = 0;
1818       trashdir = g_build_filename (g_get_user_data_dir (), "Trash", NULL);
1819       if (g_mkdir_with_parents (trashdir, 0700) < 0)
1820         {
1821           char *display_name;
1822           int errsv = errno;
1823
1824           display_name = g_filename_display_name (trashdir);
1825           g_set_error (error, G_IO_ERROR,
1826                        g_io_error_from_errno (errsv),
1827                        _("Unable to create trash dir %s: %s"),
1828                        display_name, g_strerror (errsv));
1829           g_free (display_name);
1830           g_free (trashdir);
1831           return FALSE;
1832         }
1833       topdir = g_strdup (g_get_user_data_dir ());
1834     }
1835   else
1836     {
1837       uid_t uid;
1838       char uid_str[32];
1839
1840       uid = geteuid ();
1841       g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long)uid);
1842       
1843       topdir = find_topdir_for (local->filename);
1844       if (topdir == NULL)
1845         {
1846           g_set_error_literal (error, G_IO_ERROR,
1847                                G_IO_ERROR_NOT_SUPPORTED,
1848                                _("Unable to find toplevel directory for trash"));
1849           return FALSE;
1850         }
1851       
1852       /* Try looking for global trash dir $topdir/.Trash/$uid */
1853       globaldir = g_build_filename (topdir, ".Trash", NULL);
1854       if (g_lstat (globaldir, &global_stat) == 0 &&
1855           S_ISDIR (global_stat.st_mode) &&
1856           (global_stat.st_mode & S_ISVTX) != 0)
1857         {
1858           trashdir = g_build_filename (globaldir, uid_str, NULL);
1859
1860           if (g_lstat (trashdir, &trash_stat) == 0)
1861             {
1862               if (!S_ISDIR (trash_stat.st_mode) ||
1863                   trash_stat.st_uid != uid)
1864                 {
1865                   /* Not a directory or not owned by user, ignore */
1866                   g_free (trashdir);
1867                   trashdir = NULL;
1868                 }
1869             }
1870           else if (g_mkdir (trashdir, 0700) == -1)
1871             {
1872               g_free (trashdir);
1873               trashdir = NULL;
1874             }
1875         }
1876       g_free (globaldir);
1877
1878       if (trashdir == NULL)
1879         {
1880           gboolean tried_create;
1881           
1882           /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
1883           dirname = g_strdup_printf (".Trash-%s", uid_str);
1884           trashdir = g_build_filename (topdir, dirname, NULL);
1885           g_free (dirname);
1886
1887           tried_create = FALSE;
1888
1889         retry:
1890           if (g_lstat (trashdir, &trash_stat) == 0)
1891             {
1892               if (!S_ISDIR (trash_stat.st_mode) ||
1893                   trash_stat.st_uid != uid)
1894                 {
1895                   /* Remove the failed directory */
1896                   if (tried_create)
1897                     g_remove (trashdir);
1898                   
1899                   /* Not a directory or not owned by user, ignore */
1900                   g_free (trashdir);
1901                   trashdir = NULL;
1902                 }
1903             }
1904           else
1905             {
1906               if (!tried_create &&
1907                   g_mkdir (trashdir, 0700) != -1)
1908                 {
1909                   /* Ensure that the created dir has the right uid etc.
1910                      This might fail on e.g. a FAT dir */
1911                   tried_create = TRUE;
1912                   goto retry;
1913                 }
1914               else
1915                 {
1916                   g_free (trashdir);
1917                   trashdir = NULL;
1918                 }
1919             }
1920         }
1921
1922       if (trashdir == NULL)
1923         {
1924           g_free (topdir);
1925           g_set_error_literal (error, G_IO_ERROR,
1926                                G_IO_ERROR_NOT_SUPPORTED,
1927                                _("Unable to find or create trash directory"));
1928           return FALSE;
1929         }
1930     }
1931
1932   /* Trashdir points to the trash dir with the "info" and "files" subdirectories */
1933
1934   infodir = g_build_filename (trashdir, "info", NULL);
1935   filesdir = g_build_filename (trashdir, "files", NULL);
1936   g_free (trashdir);
1937
1938   /* Make sure we have the subdirectories */
1939   if ((g_mkdir (infodir, 0700) == -1 && errno != EEXIST) ||
1940       (g_mkdir (filesdir, 0700) == -1 && errno != EEXIST))
1941     {
1942       g_free (topdir);
1943       g_free (infodir);
1944       g_free (filesdir);
1945       g_set_error_literal (error, G_IO_ERROR,
1946                            G_IO_ERROR_NOT_SUPPORTED,
1947                            _("Unable to find or create trash directory"));
1948       return FALSE;
1949     }  
1950
1951   basename = g_path_get_basename (local->filename);
1952   i = 1;
1953   trashname = NULL;
1954   infofile = NULL;
1955   do {
1956     g_free (trashname);
1957     g_free (infofile);
1958     
1959     trashname = get_unique_filename (basename, i++);
1960     infoname = g_strconcat (trashname, ".trashinfo", NULL);
1961     infofile = g_build_filename (infodir, infoname, NULL);
1962     g_free (infoname);
1963
1964     fd = open (infofile, O_CREAT | O_EXCL, 0666);
1965   } while (fd == -1 && errno == EEXIST);
1966
1967   g_free (basename);
1968   g_free (infodir);
1969
1970   if (fd == -1)
1971     {
1972       int errsv = errno;
1973
1974       g_free (filesdir);
1975       g_free (topdir);
1976       g_free (trashname);
1977       g_free (infofile);
1978       
1979       g_set_error (error, G_IO_ERROR,
1980                    g_io_error_from_errno (errsv),
1981                    _("Unable to create trashing info file: %s"),
1982                    g_strerror (errsv));
1983       return FALSE;
1984     }
1985
1986   close (fd);
1987
1988   /* TODO: Maybe we should verify that you can delete the file from the trash
1989      before moving it? OTOH, that is hard, as it needs a recursive scan */
1990
1991   trashfile = g_build_filename (filesdir, trashname, NULL);
1992
1993   g_free (filesdir);
1994
1995   if (g_rename (local->filename, trashfile) == -1)
1996     {
1997       int errsv = errno;
1998
1999       g_free (topdir);
2000       g_free (trashname);
2001       g_free (infofile);
2002       g_free (trashfile);
2003
2004       if (errsv == EXDEV)
2005         /* The trash dir was actually on another fs anyway!?
2006            This can happen when the same device is mounted multiple
2007            times, or with bind mounts of the same fs. */
2008         g_set_error (error, G_IO_ERROR,
2009                      G_IO_ERROR_NOT_SUPPORTED,
2010                      _("Unable to trash file: %s"),
2011                      g_strerror (errsv));
2012       else
2013         g_set_error (error, G_IO_ERROR,
2014                      g_io_error_from_errno (errsv),
2015                      _("Unable to trash file: %s"),
2016                      g_strerror (errsv));
2017       return FALSE;
2018     }
2019
2020   vfs = g_vfs_get_default ();
2021   class = G_VFS_GET_CLASS (vfs);
2022   if (class->local_file_moved)
2023     class->local_file_moved (vfs, local->filename, trashfile);
2024
2025   g_free (trashfile);
2026
2027   /* TODO: Do we need to update mtime/atime here after the move? */
2028
2029   /* Use absolute names for homedir */
2030   if (is_homedir_trash)
2031     original_name = g_strdup (local->filename);
2032   else
2033     original_name = try_make_relative (local->filename, topdir);
2034   original_name_escaped = escape_trash_name (original_name);
2035   
2036   g_free (original_name);
2037   g_free (topdir);
2038   
2039   {
2040     time_t t;
2041     struct tm now;
2042     t = time (NULL);
2043     localtime_r (&t, &now);
2044     delete_time[0] = 0;
2045     strftime(delete_time, sizeof (delete_time), "%Y-%m-%dT%H:%M:%S", &now);
2046   }
2047
2048   data = g_strdup_printf ("[Trash Info]\nPath=%s\nDeletionDate=%s\n",
2049                           original_name_escaped, delete_time);
2050
2051   g_file_set_contents (infofile, data, -1, NULL);
2052   g_free (infofile);
2053   g_free (data);
2054   
2055   g_free (original_name_escaped);
2056   g_free (trashname);
2057   
2058   return TRUE;
2059 }
2060 #else /* G_OS_WIN32 */
2061 gboolean
2062 _g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev)
2063 {
2064   return FALSE;                 /* XXX ??? */
2065 }
2066
2067 static gboolean
2068 g_local_file_trash (GFile         *file,
2069                     GCancellable  *cancellable,
2070                     GError       **error)
2071 {
2072   GLocalFile *local = G_LOCAL_FILE (file);
2073   SHFILEOPSTRUCTW op = {0};
2074   gboolean success;
2075   wchar_t *wfilename;
2076   long len;
2077
2078   wfilename = g_utf8_to_utf16 (local->filename, -1, NULL, &len, NULL);
2079   /* SHFILEOPSTRUCT.pFrom is double-zero-terminated */
2080   wfilename = g_renew (wchar_t, wfilename, len + 2);
2081   wfilename[len + 1] = 0;
2082
2083   op.wFunc = FO_DELETE;
2084   op.pFrom = wfilename;
2085   op.fFlags = FOF_ALLOWUNDO;
2086
2087   success = SHFileOperationW (&op) == 0;
2088
2089   if (success && op.fAnyOperationsAborted)
2090     {
2091       if (cancellable && !g_cancellable_is_cancelled (cancellable))
2092         g_cancellable_cancel (cancellable);
2093       g_set_error (error, G_IO_ERROR,
2094                    G_IO_ERROR_CANCELLED,
2095                    _("Unable to trash file: %s"),
2096                    _("Operation was cancelled"));
2097       success = FALSE;
2098     }
2099   else if (!success)
2100     g_set_error (error, G_IO_ERROR,
2101                  G_IO_ERROR_FAILED,
2102                  _("Unable to trash file: %s"),
2103                  _("internal error"));
2104
2105   g_free (wfilename);
2106   return success;
2107 }
2108 #endif /* G_OS_WIN32 */
2109
2110 static gboolean
2111 g_local_file_make_directory (GFile         *file,
2112                              GCancellable  *cancellable,
2113                              GError       **error)
2114 {
2115   GLocalFile *local = G_LOCAL_FILE (file);
2116   
2117   if (g_mkdir (local->filename, 0777) == -1)
2118     {
2119       int errsv = errno;
2120
2121       if (errsv == EINVAL)
2122         /* This must be an invalid filename, on e.g. FAT */
2123         g_set_error_literal (error, G_IO_ERROR,
2124                              G_IO_ERROR_INVALID_FILENAME,
2125                              _("Invalid filename"));
2126       else
2127         g_set_error (error, G_IO_ERROR,
2128                      g_io_error_from_errno (errsv),
2129                      _("Error creating directory: %s"),
2130                      g_strerror (errsv));
2131       return FALSE;
2132     }
2133   
2134   return TRUE;
2135 }
2136
2137 static gboolean
2138 g_local_file_make_symbolic_link (GFile         *file,
2139                                  const char    *symlink_value,
2140                                  GCancellable  *cancellable,
2141                                  GError       **error)
2142 {
2143 #ifdef HAVE_SYMLINK
2144   GLocalFile *local = G_LOCAL_FILE (file);
2145   
2146   if (symlink (symlink_value, local->filename) == -1)
2147     {
2148       int errsv = errno;
2149
2150       if (errsv == EINVAL)
2151         /* This must be an invalid filename, on e.g. FAT */
2152         g_set_error_literal (error, G_IO_ERROR,
2153                              G_IO_ERROR_INVALID_FILENAME,
2154                              _("Invalid filename"));
2155       else if (errsv == EPERM)
2156         g_set_error (error, G_IO_ERROR,
2157                      G_IO_ERROR_NOT_SUPPORTED,
2158                      _("Filesystem does not support symbolic links"));
2159       else
2160         g_set_error (error, G_IO_ERROR,
2161                      g_io_error_from_errno (errsv),
2162                      _("Error making symbolic link: %s"),
2163                      g_strerror (errsv));
2164       return FALSE;
2165     }
2166   return TRUE;
2167 #else
2168   g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Symlinks not supported");
2169   return FALSE;
2170 #endif
2171 }
2172
2173
2174 static gboolean
2175 g_local_file_copy (GFile                  *source,
2176                    GFile                  *destination,
2177                    GFileCopyFlags          flags,
2178                    GCancellable           *cancellable,
2179                    GFileProgressCallback   progress_callback,
2180                    gpointer                progress_callback_data,
2181                    GError                **error)
2182 {
2183   /* Fall back to default copy */
2184   g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Copy not supported");
2185   return FALSE;
2186 }
2187
2188 static gboolean
2189 g_local_file_move (GFile                  *source,
2190                    GFile                  *destination,
2191                    GFileCopyFlags          flags,
2192                    GCancellable           *cancellable,
2193                    GFileProgressCallback   progress_callback,
2194                    gpointer                progress_callback_data,
2195                    GError                **error)
2196 {
2197   GLocalFile *local_source, *local_destination;
2198   GStatBuf statbuf;
2199   gboolean destination_exist, source_is_dir;
2200   char *backup_name;
2201   int res;
2202   off_t source_size;
2203   GVfsClass *class;
2204   GVfs *vfs;
2205
2206   if (!G_IS_LOCAL_FILE (source) ||
2207       !G_IS_LOCAL_FILE (destination))
2208     {
2209       /* Fall back to default move */
2210       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Move not supported");
2211       return FALSE;
2212     }
2213   
2214   local_source = G_LOCAL_FILE (source);
2215   local_destination = G_LOCAL_FILE (destination);
2216   
2217   res = g_lstat (local_source->filename, &statbuf);
2218   if (res == -1)
2219     {
2220       int errsv = errno;
2221
2222       g_set_error (error, G_IO_ERROR,
2223                    g_io_error_from_errno (errsv),
2224                    _("Error moving file: %s"),
2225                    g_strerror (errsv));
2226       return FALSE;
2227     }
2228
2229   source_is_dir = S_ISDIR (statbuf.st_mode);
2230   source_size = statbuf.st_size;
2231   
2232   destination_exist = FALSE;
2233   res = g_lstat (local_destination->filename, &statbuf);
2234   if (res == 0)
2235     {
2236       destination_exist = TRUE; /* Target file exists */
2237
2238       if (flags & G_FILE_COPY_OVERWRITE)
2239         {
2240           /* Always fail on dirs, even with overwrite */
2241           if (S_ISDIR (statbuf.st_mode))
2242             {
2243               if (source_is_dir)
2244                 g_set_error_literal (error,
2245                                      G_IO_ERROR,
2246                                      G_IO_ERROR_WOULD_MERGE,
2247                                      _("Can't move directory over directory"));
2248               else
2249                 g_set_error_literal (error,
2250                                      G_IO_ERROR,
2251                                      G_IO_ERROR_IS_DIRECTORY,
2252                                      _("Can't copy over directory"));
2253               return FALSE;
2254             }
2255         }
2256       else
2257         {
2258           g_set_error_literal (error,
2259                                G_IO_ERROR,
2260                                G_IO_ERROR_EXISTS,
2261                                _("Target file exists"));
2262           return FALSE;
2263         }
2264     }
2265   
2266   if (flags & G_FILE_COPY_BACKUP && destination_exist)
2267     {
2268       backup_name = g_strconcat (local_destination->filename, "~", NULL);
2269       if (g_rename (local_destination->filename, backup_name) == -1)
2270         {
2271           g_set_error_literal (error,
2272                                G_IO_ERROR,
2273                                G_IO_ERROR_CANT_CREATE_BACKUP,
2274                                _("Backup file creation failed"));
2275           g_free (backup_name);
2276           return FALSE;
2277         }
2278       g_free (backup_name);
2279       destination_exist = FALSE; /* It did, but no more */
2280     }
2281
2282   if (source_is_dir && destination_exist && (flags & G_FILE_COPY_OVERWRITE))
2283     {
2284       /* Source is a dir, destination exists (and is not a dir, because that would have failed
2285          earlier), and we're overwriting. Manually remove the target so we can do the rename. */
2286       res = g_unlink (local_destination->filename);
2287       if (res == -1)
2288         {
2289           int errsv = errno;
2290
2291           g_set_error (error, G_IO_ERROR,
2292                        g_io_error_from_errno (errsv),
2293                        _("Error removing target file: %s"),
2294                        g_strerror (errsv));
2295           return FALSE;
2296         }
2297     }
2298   
2299   if (g_rename (local_source->filename, local_destination->filename) == -1)
2300     {
2301       int errsv = errno;
2302
2303       if (errsv == EXDEV)
2304         /* This will cause the fallback code to run */
2305         g_set_error_literal (error, G_IO_ERROR,
2306                              G_IO_ERROR_NOT_SUPPORTED,
2307                              _("Move between mounts not supported"));
2308       else if (errsv == EINVAL)
2309         /* This must be an invalid filename, on e.g. FAT, or
2310            we're trying to move the file into itself...
2311            We return invalid filename for both... */
2312         g_set_error_literal (error, G_IO_ERROR,
2313                              G_IO_ERROR_INVALID_FILENAME,
2314                              _("Invalid filename"));
2315       else
2316         g_set_error (error, G_IO_ERROR,
2317                      g_io_error_from_errno (errsv),
2318                      _("Error moving file: %s"),
2319                      g_strerror (errsv));
2320       return FALSE;
2321     }
2322
2323   vfs = g_vfs_get_default ();
2324   class = G_VFS_GET_CLASS (vfs);
2325   if (class->local_file_moved)
2326     class->local_file_moved (vfs, local_source->filename, local_destination->filename);
2327
2328   /* Make sure we send full copied size */
2329   if (progress_callback)
2330     progress_callback (source_size, source_size, progress_callback_data);
2331   
2332   return TRUE;
2333 }
2334
2335 static GFileMonitor*
2336 g_local_file_monitor_dir (GFile             *file,
2337                           GFileMonitorFlags  flags,
2338                           GCancellable      *cancellable,
2339                           GError           **error)
2340 {
2341   GLocalFile* local_file = G_LOCAL_FILE(file);
2342   return _g_local_directory_monitor_new (local_file->filename, flags, error);
2343 }
2344
2345 static GFileMonitor*
2346 g_local_file_monitor_file (GFile             *file,
2347                            GFileMonitorFlags  flags,
2348                            GCancellable      *cancellable,
2349                            GError           **error)
2350 {
2351   GLocalFile* local_file = G_LOCAL_FILE(file);
2352   return _g_local_file_monitor_new (local_file->filename, flags, error);
2353 }
2354
2355 static void
2356 g_local_file_file_iface_init (GFileIface *iface)
2357 {
2358   iface->dup = g_local_file_dup;
2359   iface->hash = g_local_file_hash;
2360   iface->equal = g_local_file_equal;
2361   iface->is_native = g_local_file_is_native;
2362   iface->has_uri_scheme = g_local_file_has_uri_scheme;
2363   iface->get_uri_scheme = g_local_file_get_uri_scheme;
2364   iface->get_basename = g_local_file_get_basename;
2365   iface->get_path = g_local_file_get_path;
2366   iface->get_uri = g_local_file_get_uri;
2367   iface->get_parse_name = g_local_file_get_parse_name;
2368   iface->get_parent = g_local_file_get_parent;
2369   iface->prefix_matches = g_local_file_prefix_matches;
2370   iface->get_relative_path = g_local_file_get_relative_path;
2371   iface->resolve_relative_path = g_local_file_resolve_relative_path;
2372   iface->get_child_for_display_name = g_local_file_get_child_for_display_name;
2373   iface->set_display_name = g_local_file_set_display_name;
2374   iface->enumerate_children = g_local_file_enumerate_children;
2375   iface->query_info = g_local_file_query_info;
2376   iface->query_filesystem_info = g_local_file_query_filesystem_info;
2377   iface->find_enclosing_mount = g_local_file_find_enclosing_mount;
2378   iface->query_settable_attributes = g_local_file_query_settable_attributes;
2379   iface->query_writable_namespaces = g_local_file_query_writable_namespaces;
2380   iface->set_attribute = g_local_file_set_attribute;
2381   iface->set_attributes_from_info = g_local_file_set_attributes_from_info;
2382   iface->read_fn = g_local_file_read;
2383   iface->append_to = g_local_file_append_to;
2384   iface->create = g_local_file_create;
2385   iface->replace = g_local_file_replace;
2386   iface->open_readwrite = g_local_file_open_readwrite;
2387   iface->create_readwrite = g_local_file_create_readwrite;
2388   iface->replace_readwrite = g_local_file_replace_readwrite;
2389   iface->delete_file = g_local_file_delete;
2390   iface->trash = g_local_file_trash;
2391   iface->make_directory = g_local_file_make_directory;
2392   iface->make_symbolic_link = g_local_file_make_symbolic_link;
2393   iface->copy = g_local_file_copy;
2394   iface->move = g_local_file_move;
2395   iface->monitor_dir = g_local_file_monitor_dir;
2396   iface->monitor_file = g_local_file_monitor_file;
2397
2398   iface->supports_thread_contexts = TRUE;
2399 }