Merge remote-tracking branch 'gvdb/master'
[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 #if defined(USE_STATFS) && !defined(HAVE_STRUCT_STATFS_F_FSTYPENAME)
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)
1005 #if defined(HAVE_STRUCT_STATVFS_F_FSTYPENAME)
1006   fstype = g_strdup (statfs_buffer.f_fstypename);
1007 #elif defined(HAVE_STRUCT_STATVFS_F_BASETYPE)
1008   fstype = g_strdup (statfs_buffer.f_basetype);
1009 #else
1010   fstype = NULL;
1011 #endif
1012 #endif
1013
1014   if (fstype &&
1015       g_file_attribute_matcher_matches (attribute_matcher,
1016                                         G_FILE_ATTRIBUTE_FILESYSTEM_TYPE))
1017     g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE, fstype);
1018 #endif  
1019
1020   if (g_file_attribute_matcher_matches (attribute_matcher,
1021                                         G_FILE_ATTRIBUTE_FILESYSTEM_READONLY))
1022     {
1023 #ifdef G_OS_WIN32
1024       get_filesystem_readonly (info, local->filename);
1025 #else
1026       get_mount_info (info, local->filename, attribute_matcher);
1027 #endif
1028     }
1029   
1030   g_file_attribute_matcher_unref (attribute_matcher);
1031   
1032   return info;
1033 }
1034
1035 static GMount *
1036 g_local_file_find_enclosing_mount (GFile         *file,
1037                                    GCancellable  *cancellable,
1038                                    GError       **error)
1039 {
1040   GLocalFile *local = G_LOCAL_FILE (file);
1041   GStatBuf buf;
1042   char *mountpoint;
1043   GMount *mount;
1044
1045   if (g_lstat (local->filename, &buf) != 0)
1046     {
1047       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1048                       /* Translators: This is an error message when trying to
1049                        * find the enclosing (user visible) mount of a file, but
1050                        * none exists. */
1051                       _("Containing mount does not exist"));
1052       return NULL;
1053     }
1054
1055   mountpoint = find_mountpoint_for (local->filename, buf.st_dev);
1056   if (mountpoint == NULL)
1057     {
1058       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1059                       /* Translators: This is an error message when trying to
1060                        * find the enclosing (user visible) mount of a file, but
1061                        * none exists. */
1062                       _("Containing mount does not exist"));
1063       return NULL;
1064     }
1065
1066   mount = _g_mount_get_for_mount_path (mountpoint, cancellable);
1067   g_free (mountpoint);
1068   if (mount)
1069     return mount;
1070
1071   g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_FOUND,
1072                   /* Translators: This is an error message when trying to find
1073                    * the enclosing (user visible) mount of a file, but none
1074                    * exists. */
1075                   _("Containing mount does not exist"));
1076   return NULL;
1077 }
1078
1079 static GFile *
1080 g_local_file_set_display_name (GFile         *file,
1081                                const char    *display_name,
1082                                GCancellable  *cancellable,
1083                                GError       **error)
1084 {
1085   GLocalFile *local, *new_local;
1086   GFile *new_file, *parent;
1087   GStatBuf statbuf;
1088   GVfsClass *class;
1089   GVfs *vfs;
1090   int errsv;
1091
1092   parent = g_file_get_parent (file);
1093   if (parent == NULL)
1094     {
1095       g_set_error_literal (error, G_IO_ERROR,
1096                            G_IO_ERROR_FAILED,
1097                            _("Can't rename root directory"));
1098       return NULL;
1099     }
1100   
1101   new_file = g_file_get_child_for_display_name (parent, display_name, error);
1102   g_object_unref (parent);
1103   
1104   if (new_file == NULL)
1105     return NULL;
1106   local = G_LOCAL_FILE (file);
1107   new_local = G_LOCAL_FILE (new_file);
1108
1109   if (g_lstat (new_local->filename, &statbuf) == -1) 
1110     {
1111       errsv = errno;
1112
1113       if (errsv != ENOENT)
1114         {
1115           g_set_error (error, G_IO_ERROR,
1116                        g_io_error_from_errno (errsv),
1117                        _("Error renaming file: %s"),
1118                        g_strerror (errsv));
1119           return NULL;
1120         }
1121     }
1122   else
1123     {
1124       g_set_error_literal (error, G_IO_ERROR,
1125                            G_IO_ERROR_EXISTS,
1126                            _("Can't rename file, filename already exists"));
1127       return NULL;
1128     }
1129
1130   if (g_rename (local->filename, new_local->filename) == -1)
1131     {
1132       errsv = errno;
1133
1134       if (errsv == EINVAL)
1135         /* We can't get a rename file into itself error herer,
1136            so this must be an invalid filename, on e.g. FAT */
1137         g_set_error_literal (error, G_IO_ERROR,
1138                              G_IO_ERROR_INVALID_FILENAME,
1139                              _("Invalid filename"));
1140       else
1141         g_set_error (error, G_IO_ERROR,
1142                      g_io_error_from_errno (errsv),
1143                      _("Error renaming file: %s"),
1144                      g_strerror (errsv));
1145       g_object_unref (new_file);
1146       return NULL;
1147     }
1148
1149   vfs = g_vfs_get_default ();
1150   class = G_VFS_GET_CLASS (vfs);
1151   if (class->local_file_moved)
1152     class->local_file_moved (vfs, local->filename, new_local->filename);
1153
1154   return new_file;
1155 }
1156
1157 static GFileInfo *
1158 g_local_file_query_info (GFile                *file,
1159                          const char           *attributes,
1160                          GFileQueryInfoFlags   flags,
1161                          GCancellable         *cancellable,
1162                          GError              **error)
1163 {
1164   GLocalFile *local = G_LOCAL_FILE (file);
1165   GFileInfo *info;
1166   GFileAttributeMatcher *matcher;
1167   char *basename, *dirname;
1168   GLocalParentFileInfo parent_info;
1169
1170   matcher = g_file_attribute_matcher_new (attributes);
1171   
1172   basename = g_path_get_basename (local->filename);
1173   
1174   dirname = g_path_get_dirname (local->filename);
1175   _g_local_file_info_get_parent_info (dirname, matcher, &parent_info);
1176   g_free (dirname);
1177   
1178   info = _g_local_file_info_get (basename, local->filename,
1179                                  matcher, flags, &parent_info,
1180                                  error);
1181   
1182
1183   _g_local_file_info_free_parent_info (&parent_info);
1184   g_free (basename);
1185
1186   g_file_attribute_matcher_unref (matcher);
1187
1188   return info;
1189 }
1190
1191 static GFileAttributeInfoList *
1192 g_local_file_query_settable_attributes (GFile         *file,
1193                                         GCancellable  *cancellable,
1194                                         GError       **error)
1195 {
1196   return g_file_attribute_info_list_ref (local_writable_attributes);
1197 }
1198
1199 static GFileAttributeInfoList *
1200 g_local_file_query_writable_namespaces (GFile         *file,
1201                                         GCancellable  *cancellable,
1202                                         GError       **error)
1203 {
1204   GFileAttributeInfoList *list;
1205   GVfsClass *class;
1206   GVfs *vfs;
1207
1208   if (g_once_init_enter (&local_writable_namespaces))
1209     {
1210       /* Writable namespaces: */
1211
1212       list = g_file_attribute_info_list_new ();
1213
1214 #ifdef HAVE_XATTR
1215       g_file_attribute_info_list_add (list,
1216                                       "xattr",
1217                                       G_FILE_ATTRIBUTE_TYPE_STRING,
1218                                       G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
1219                                       G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
1220       g_file_attribute_info_list_add (list,
1221                                       "xattr-sys",
1222                                       G_FILE_ATTRIBUTE_TYPE_STRING,
1223                                       G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
1224 #endif
1225
1226       vfs = g_vfs_get_default ();
1227       class = G_VFS_GET_CLASS (vfs);
1228       if (class->add_writable_namespaces)
1229         class->add_writable_namespaces (vfs, list);
1230
1231       g_once_init_leave (&local_writable_namespaces, (gsize)list);
1232     }
1233   list = (GFileAttributeInfoList *)local_writable_namespaces;
1234
1235   return g_file_attribute_info_list_ref (list);
1236 }
1237
1238 static gboolean
1239 g_local_file_set_attribute (GFile                *file,
1240                             const char           *attribute,
1241                             GFileAttributeType    type,
1242                             gpointer              value_p,
1243                             GFileQueryInfoFlags   flags,
1244                             GCancellable         *cancellable,
1245                             GError              **error)
1246 {
1247   GLocalFile *local = G_LOCAL_FILE (file);
1248
1249   return _g_local_file_info_set_attribute (local->filename,
1250                                            attribute,
1251                                            type,
1252                                            value_p,
1253                                            flags,
1254                                            cancellable,
1255                                            error);
1256 }
1257
1258 static gboolean
1259 g_local_file_set_attributes_from_info (GFile                *file,
1260                                        GFileInfo            *info,
1261                                        GFileQueryInfoFlags   flags,
1262                                        GCancellable         *cancellable,
1263                                        GError              **error)
1264 {
1265   GLocalFile *local = G_LOCAL_FILE (file);
1266   int res, chained_res;
1267   GFileIface *default_iface;
1268
1269   res = _g_local_file_info_set_attributes (local->filename,
1270                                            info, flags, 
1271                                            cancellable,
1272                                            error);
1273
1274   if (!res)
1275     error = NULL; /* Don't write over error if further errors */
1276
1277   default_iface = g_type_default_interface_peek (G_TYPE_FILE);
1278
1279   chained_res = (default_iface->set_attributes_from_info) (file, info, flags, cancellable, error);
1280   
1281   return res && chained_res;
1282 }
1283
1284 static GFileInputStream *
1285 g_local_file_read (GFile         *file,
1286                    GCancellable  *cancellable,
1287                    GError       **error)
1288 {
1289   GLocalFile *local = G_LOCAL_FILE (file);
1290   int fd, ret;
1291   GLocalFileStat buf;
1292   
1293   fd = g_open (local->filename, O_RDONLY|O_BINARY, 0);
1294   if (fd == -1)
1295     {
1296       int errsv = errno;
1297
1298       g_set_error (error, G_IO_ERROR,
1299                    g_io_error_from_errno (errsv),
1300                    _("Error opening file: %s"),
1301                    g_strerror (errsv));
1302       return NULL;
1303     }
1304
1305 #ifdef G_OS_WIN32
1306   ret = _fstati64 (fd, &buf);
1307 #else
1308   ret = fstat (fd, &buf);
1309 #endif
1310
1311   if (ret == 0 && S_ISDIR (buf.st_mode))
1312     {
1313       close (fd);
1314       g_set_error_literal (error, G_IO_ERROR,
1315                            G_IO_ERROR_IS_DIRECTORY,
1316                            _("Can't open directory"));
1317       return NULL;
1318     }
1319   
1320   return _g_local_file_input_stream_new (fd);
1321 }
1322
1323 static GFileOutputStream *
1324 g_local_file_append_to (GFile             *file,
1325                         GFileCreateFlags   flags,
1326                         GCancellable      *cancellable,
1327                         GError           **error)
1328 {
1329   return _g_local_file_output_stream_append (G_LOCAL_FILE (file)->filename,
1330                                              flags, cancellable, error);
1331 }
1332
1333 static GFileOutputStream *
1334 g_local_file_create (GFile             *file,
1335                      GFileCreateFlags   flags,
1336                      GCancellable      *cancellable,
1337                      GError           **error)
1338 {
1339   return _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
1340                                              FALSE,
1341                                              flags, cancellable, error);
1342 }
1343
1344 static GFileOutputStream *
1345 g_local_file_replace (GFile             *file,
1346                       const char        *etag,
1347                       gboolean           make_backup,
1348                       GFileCreateFlags   flags,
1349                       GCancellable      *cancellable,
1350                       GError           **error)
1351 {
1352   return _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
1353                                               FALSE,
1354                                               etag, make_backup, flags,
1355                                               cancellable, error);
1356 }
1357
1358 static GFileIOStream *
1359 g_local_file_open_readwrite (GFile                      *file,
1360                              GCancellable               *cancellable,
1361                              GError                    **error)
1362 {
1363   GFileOutputStream *output;
1364   GFileIOStream *res;
1365
1366   output = _g_local_file_output_stream_open (G_LOCAL_FILE (file)->filename,
1367                                              TRUE,
1368                                              cancellable, error);
1369   if (output == NULL)
1370     return NULL;
1371
1372   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1373   g_object_unref (output);
1374   return res;
1375 }
1376
1377 static GFileIOStream *
1378 g_local_file_create_readwrite (GFile                      *file,
1379                                GFileCreateFlags            flags,
1380                                GCancellable               *cancellable,
1381                                GError                    **error)
1382 {
1383   GFileOutputStream *output;
1384   GFileIOStream *res;
1385
1386   output = _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
1387                                                TRUE, flags,
1388                                                cancellable, error);
1389   if (output == NULL)
1390     return NULL;
1391
1392   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1393   g_object_unref (output);
1394   return res;
1395 }
1396
1397 static GFileIOStream *
1398 g_local_file_replace_readwrite (GFile                      *file,
1399                                 const char                 *etag,
1400                                 gboolean                    make_backup,
1401                                 GFileCreateFlags            flags,
1402                                 GCancellable               *cancellable,
1403                                 GError                    **error)
1404 {
1405   GFileOutputStream *output;
1406   GFileIOStream *res;
1407
1408   output = _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
1409                                                 TRUE,
1410                                                 etag, make_backup, flags,
1411                                                 cancellable, error);
1412   if (output == NULL)
1413     return NULL;
1414
1415   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
1416   g_object_unref (output);
1417   return res;
1418 }
1419
1420 static gboolean
1421 g_local_file_delete (GFile         *file,
1422                      GCancellable  *cancellable,
1423                      GError       **error)
1424 {
1425   GLocalFile *local = G_LOCAL_FILE (file);
1426   GVfsClass *class;
1427   GVfs *vfs;
1428
1429   if (g_remove (local->filename) == -1)
1430     {
1431       int errsv = errno;
1432
1433       /* Posix allows EEXIST too, but the more sane error
1434          is G_IO_ERROR_NOT_FOUND, and it's what nautilus
1435          expects */
1436       if (errsv == EEXIST)
1437         errsv = ENOTEMPTY;
1438
1439       g_set_error (error, G_IO_ERROR,
1440                    g_io_error_from_errno (errsv),
1441                    _("Error removing file: %s"),
1442                    g_strerror (errsv));
1443       return FALSE;
1444     }
1445
1446   vfs = g_vfs_get_default ();
1447   class = G_VFS_GET_CLASS (vfs);
1448   if (class->local_file_removed)
1449     class->local_file_removed (vfs, local->filename);
1450
1451   return TRUE;
1452 }
1453
1454 #ifndef G_OS_WIN32
1455
1456 static char *
1457 strip_trailing_slashes (const char *path)
1458 {
1459   char *path_copy;
1460   int len;
1461
1462   path_copy = g_strdup (path);
1463   len = strlen (path_copy);
1464   while (len > 1 && path_copy[len-1] == '/')
1465     path_copy[--len] = 0;
1466
1467   return path_copy;
1468  }
1469
1470 static char *
1471 expand_symlink (const char *link)
1472 {
1473   char *resolved, *canonical, *parent, *link2;
1474   char symlink_value[4096];
1475 #ifdef G_OS_WIN32
1476 #else
1477   ssize_t res;
1478 #endif
1479   
1480 #ifdef G_OS_WIN32
1481 #else
1482   res = readlink (link, symlink_value, sizeof (symlink_value) - 1);
1483   
1484   if (res == -1)
1485     return g_strdup (link);
1486   symlink_value[res] = 0;
1487 #endif
1488   
1489   if (g_path_is_absolute (symlink_value))
1490     return canonicalize_filename (symlink_value);
1491   else
1492     {
1493       link2 = strip_trailing_slashes (link);
1494       parent = g_path_get_dirname (link2);
1495       g_free (link2);
1496       
1497       resolved = g_build_filename (parent, symlink_value, NULL);
1498       g_free (parent);
1499       
1500       canonical = canonicalize_filename (resolved);
1501       
1502       g_free (resolved);
1503
1504       return canonical;
1505     }
1506 }
1507
1508 static char *
1509 get_parent (const char *path, 
1510             dev_t      *parent_dev)
1511 {
1512   char *parent, *tmp;
1513   GStatBuf parent_stat;
1514   int num_recursions;
1515   char *path_copy;
1516
1517   path_copy = strip_trailing_slashes (path);
1518   
1519   parent = g_path_get_dirname (path_copy);
1520   if (strcmp (parent, ".") == 0 ||
1521       strcmp (parent, path_copy) == 0)
1522     {
1523       g_free (parent);
1524       g_free (path_copy);
1525       return NULL;
1526     }
1527   g_free (path_copy);
1528
1529   num_recursions = 0;
1530   do {
1531     if (g_lstat (parent, &parent_stat) != 0)
1532       {
1533         g_free (parent);
1534         return NULL;
1535       }
1536     
1537     if (S_ISLNK (parent_stat.st_mode))
1538       {
1539         tmp = parent;
1540         parent = expand_symlink (parent);
1541         g_free (tmp);
1542       }
1543     
1544     num_recursions++;
1545     if (num_recursions > 12)
1546       {
1547         g_free (parent);
1548         return NULL;
1549       }
1550   } while (S_ISLNK (parent_stat.st_mode));
1551
1552   *parent_dev = parent_stat.st_dev;
1553   
1554   return parent;
1555 }
1556
1557 static char *
1558 expand_all_symlinks (const char *path)
1559 {
1560   char *parent, *parent_expanded;
1561   char *basename, *res;
1562   dev_t parent_dev;
1563
1564   parent = get_parent (path, &parent_dev);
1565   if (parent)
1566     {
1567       parent_expanded = expand_all_symlinks (parent);
1568       g_free (parent);
1569       basename = g_path_get_basename (path);
1570       res = g_build_filename (parent_expanded, basename, NULL);
1571       g_free (basename);
1572       g_free (parent_expanded);
1573     }
1574   else
1575     res = g_strdup (path);
1576   
1577   return res;
1578 }
1579
1580 static char *
1581 find_mountpoint_for (const char *file, 
1582                      dev_t       dev)
1583 {
1584   char *dir, *parent;
1585   dev_t dir_dev, parent_dev;
1586
1587   dir = g_strdup (file);
1588   dir_dev = dev;
1589
1590   while (1) 
1591     {
1592       parent = get_parent (dir, &parent_dev);
1593       if (parent == NULL)
1594         return dir;
1595     
1596       if (parent_dev != dir_dev)
1597         {
1598           g_free (parent);
1599           return dir;
1600         }
1601     
1602       g_free (dir);
1603       dir = parent;
1604     }
1605 }
1606
1607 static char *
1608 find_topdir_for (const char *file)
1609 {
1610   char *dir;
1611   dev_t dir_dev;
1612
1613   dir = get_parent (file, &dir_dev);
1614   if (dir == NULL)
1615     return NULL;
1616
1617   return find_mountpoint_for (dir, dir_dev);
1618 }
1619
1620 static char *
1621 get_unique_filename (const char *basename, 
1622                      int         id)
1623 {
1624   const char *dot;
1625       
1626   if (id == 1)
1627     return g_strdup (basename);
1628
1629   dot = strchr (basename, '.');
1630   if (dot)
1631     return g_strdup_printf ("%.*s.%d%s", (int)(dot - basename), basename, id, dot);
1632   else
1633     return g_strdup_printf ("%s.%d", basename, id);
1634 }
1635
1636 static gboolean
1637 path_has_prefix (const char *path, 
1638                  const char *prefix)
1639 {
1640   int prefix_len;
1641
1642   if (prefix == NULL)
1643     return TRUE;
1644
1645   prefix_len = strlen (prefix);
1646   
1647   if (strncmp (path, prefix, prefix_len) == 0 &&
1648       (prefix_len == 0 || /* empty prefix always matches */
1649        prefix[prefix_len - 1] == '/' || /* last char in prefix was a /, so it must be in path too */
1650        path[prefix_len] == 0 ||
1651        path[prefix_len] == '/'))
1652     return TRUE;
1653   
1654   return FALSE;
1655 }
1656
1657 static char *
1658 try_make_relative (const char *path, 
1659                    const char *base)
1660 {
1661   char *path2, *base2;
1662   char *relative;
1663
1664   path2 = expand_all_symlinks (path);
1665   base2 = expand_all_symlinks (base);
1666
1667   relative = NULL;
1668   if (path_has_prefix (path2, base2))
1669     {
1670       relative = path2 + strlen (base2);
1671       while (*relative == '/')
1672         relative ++;
1673       relative = g_strdup (relative);
1674     }
1675   g_free (path2);
1676   g_free (base2);
1677
1678   if (relative)
1679     return relative;
1680   
1681   /* Failed, use abs path */
1682   return g_strdup (path);
1683 }
1684
1685 static char *
1686 escape_trash_name (char *name)
1687 {
1688   GString *str;
1689   const gchar hex[16] = "0123456789ABCDEF";
1690   
1691   str = g_string_new ("");
1692
1693   while (*name != 0)
1694     {
1695       char c;
1696
1697       c = *name++;
1698
1699       if (g_ascii_isprint (c))
1700         g_string_append_c (str, c);
1701       else
1702         {
1703           g_string_append_c (str, '%');
1704           g_string_append_c (str, hex[((guchar)c) >> 4]);
1705           g_string_append_c (str, hex[((guchar)c) & 0xf]);
1706         }
1707     }
1708
1709   return g_string_free (str, FALSE);
1710 }
1711
1712 gboolean
1713 _g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev)
1714 {
1715   static gsize home_dev_set = 0;
1716   static dev_t home_dev;
1717   char *topdir, *globaldir, *trashdir, *tmpname;
1718   uid_t uid;
1719   char uid_str[32];
1720   GStatBuf global_stat, trash_stat;
1721   gboolean res;
1722
1723   if (g_once_init_enter (&home_dev_set))
1724     {
1725       GStatBuf home_stat;
1726
1727       g_stat (g_get_home_dir (), &home_stat);
1728       home_dev = home_stat.st_dev;
1729       g_once_init_leave (&home_dev_set, 1);
1730     }
1731
1732   /* Assume we can trash to the home */
1733   if (dir_dev == home_dev)
1734     return TRUE;
1735
1736   topdir = find_mountpoint_for (dirname, dir_dev);
1737   if (topdir == NULL)
1738     return FALSE;
1739
1740   globaldir = g_build_filename (topdir, ".Trash", NULL);
1741   if (g_lstat (globaldir, &global_stat) == 0 &&
1742       S_ISDIR (global_stat.st_mode) &&
1743       (global_stat.st_mode & S_ISVTX) != 0)
1744     {
1745       /* got a toplevel sysadmin created dir, assume we
1746        * can trash to it (we should be able to create a dir)
1747        * This fails for the FAT case where the ownership of
1748        * that dir would be wrong though..
1749        */
1750       g_free (globaldir);
1751       g_free (topdir);
1752       return TRUE;
1753     }
1754   g_free (globaldir);
1755
1756   /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
1757   uid = geteuid ();
1758   g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long) uid);
1759
1760   tmpname = g_strdup_printf (".Trash-%s", uid_str);
1761   trashdir = g_build_filename (topdir, tmpname, NULL);
1762   g_free (tmpname);
1763
1764   if (g_lstat (trashdir, &trash_stat) == 0)
1765     {
1766       g_free (topdir);
1767       g_free (trashdir);
1768       return S_ISDIR (trash_stat.st_mode) &&
1769              trash_stat.st_uid == uid;
1770     }
1771   g_free (trashdir);
1772
1773   /* User specific trash didn't exist, can we create it? */
1774   res = g_access (topdir, W_OK) == 0;
1775   g_free (topdir);
1776
1777   return res;
1778 }
1779
1780
1781 static gboolean
1782 g_local_file_trash (GFile         *file,
1783                     GCancellable  *cancellable,
1784                     GError       **error)
1785 {
1786   GLocalFile *local = G_LOCAL_FILE (file);
1787   GStatBuf file_stat, home_stat;
1788   const char *homedir;
1789   char *trashdir, *topdir, *infodir, *filesdir;
1790   char *basename, *trashname, *trashfile, *infoname, *infofile;
1791   char *original_name, *original_name_escaped;
1792   int i;
1793   char *data;
1794   gboolean is_homedir_trash;
1795   char delete_time[32];
1796   int fd;
1797   GStatBuf trash_stat, global_stat;
1798   char *dirname, *globaldir;
1799   GVfsClass *class;
1800   GVfs *vfs;
1801
1802   if (g_lstat (local->filename, &file_stat) != 0)
1803     {
1804       int errsv = errno;
1805
1806       g_set_error (error, G_IO_ERROR,
1807                    g_io_error_from_errno (errsv),
1808                    _("Error trashing file: %s"),
1809                    g_strerror (errsv));
1810       return FALSE;
1811     }
1812     
1813   homedir = g_get_home_dir ();
1814   g_stat (homedir, &home_stat);
1815
1816   is_homedir_trash = FALSE;
1817   trashdir = NULL;
1818   if (file_stat.st_dev == home_stat.st_dev)
1819     {
1820       is_homedir_trash = TRUE;
1821       errno = 0;
1822       trashdir = g_build_filename (g_get_user_data_dir (), "Trash", NULL);
1823       if (g_mkdir_with_parents (trashdir, 0700) < 0)
1824         {
1825           char *display_name;
1826           int errsv = errno;
1827
1828           display_name = g_filename_display_name (trashdir);
1829           g_set_error (error, G_IO_ERROR,
1830                        g_io_error_from_errno (errsv),
1831                        _("Unable to create trash dir %s: %s"),
1832                        display_name, g_strerror (errsv));
1833           g_free (display_name);
1834           g_free (trashdir);
1835           return FALSE;
1836         }
1837       topdir = g_strdup (g_get_user_data_dir ());
1838     }
1839   else
1840     {
1841       uid_t uid;
1842       char uid_str[32];
1843
1844       uid = geteuid ();
1845       g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long)uid);
1846       
1847       topdir = find_topdir_for (local->filename);
1848       if (topdir == NULL)
1849         {
1850           g_set_error_literal (error, G_IO_ERROR,
1851                                G_IO_ERROR_NOT_SUPPORTED,
1852                                _("Unable to find toplevel directory for trash"));
1853           return FALSE;
1854         }
1855       
1856       /* Try looking for global trash dir $topdir/.Trash/$uid */
1857       globaldir = g_build_filename (topdir, ".Trash", NULL);
1858       if (g_lstat (globaldir, &global_stat) == 0 &&
1859           S_ISDIR (global_stat.st_mode) &&
1860           (global_stat.st_mode & S_ISVTX) != 0)
1861         {
1862           trashdir = g_build_filename (globaldir, uid_str, NULL);
1863
1864           if (g_lstat (trashdir, &trash_stat) == 0)
1865             {
1866               if (!S_ISDIR (trash_stat.st_mode) ||
1867                   trash_stat.st_uid != uid)
1868                 {
1869                   /* Not a directory or not owned by user, ignore */
1870                   g_free (trashdir);
1871                   trashdir = NULL;
1872                 }
1873             }
1874           else if (g_mkdir (trashdir, 0700) == -1)
1875             {
1876               g_free (trashdir);
1877               trashdir = NULL;
1878             }
1879         }
1880       g_free (globaldir);
1881
1882       if (trashdir == NULL)
1883         {
1884           gboolean tried_create;
1885           
1886           /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
1887           dirname = g_strdup_printf (".Trash-%s", uid_str);
1888           trashdir = g_build_filename (topdir, dirname, NULL);
1889           g_free (dirname);
1890
1891           tried_create = FALSE;
1892
1893         retry:
1894           if (g_lstat (trashdir, &trash_stat) == 0)
1895             {
1896               if (!S_ISDIR (trash_stat.st_mode) ||
1897                   trash_stat.st_uid != uid)
1898                 {
1899                   /* Remove the failed directory */
1900                   if (tried_create)
1901                     g_remove (trashdir);
1902                   
1903                   /* Not a directory or not owned by user, ignore */
1904                   g_free (trashdir);
1905                   trashdir = NULL;
1906                 }
1907             }
1908           else
1909             {
1910               if (!tried_create &&
1911                   g_mkdir (trashdir, 0700) != -1)
1912                 {
1913                   /* Ensure that the created dir has the right uid etc.
1914                      This might fail on e.g. a FAT dir */
1915                   tried_create = TRUE;
1916                   goto retry;
1917                 }
1918               else
1919                 {
1920                   g_free (trashdir);
1921                   trashdir = NULL;
1922                 }
1923             }
1924         }
1925
1926       if (trashdir == NULL)
1927         {
1928           g_free (topdir);
1929           g_set_error_literal (error, G_IO_ERROR,
1930                                G_IO_ERROR_NOT_SUPPORTED,
1931                                _("Unable to find or create trash directory"));
1932           return FALSE;
1933         }
1934     }
1935
1936   /* Trashdir points to the trash dir with the "info" and "files" subdirectories */
1937
1938   infodir = g_build_filename (trashdir, "info", NULL);
1939   filesdir = g_build_filename (trashdir, "files", NULL);
1940   g_free (trashdir);
1941
1942   /* Make sure we have the subdirectories */
1943   if ((g_mkdir (infodir, 0700) == -1 && errno != EEXIST) ||
1944       (g_mkdir (filesdir, 0700) == -1 && errno != EEXIST))
1945     {
1946       g_free (topdir);
1947       g_free (infodir);
1948       g_free (filesdir);
1949       g_set_error_literal (error, G_IO_ERROR,
1950                            G_IO_ERROR_NOT_SUPPORTED,
1951                            _("Unable to find or create trash directory"));
1952       return FALSE;
1953     }  
1954
1955   basename = g_path_get_basename (local->filename);
1956   i = 1;
1957   trashname = NULL;
1958   infofile = NULL;
1959   do {
1960     g_free (trashname);
1961     g_free (infofile);
1962     
1963     trashname = get_unique_filename (basename, i++);
1964     infoname = g_strconcat (trashname, ".trashinfo", NULL);
1965     infofile = g_build_filename (infodir, infoname, NULL);
1966     g_free (infoname);
1967
1968     fd = open (infofile, O_CREAT | O_EXCL, 0666);
1969   } while (fd == -1 && errno == EEXIST);
1970
1971   g_free (basename);
1972   g_free (infodir);
1973
1974   if (fd == -1)
1975     {
1976       int errsv = errno;
1977
1978       g_free (filesdir);
1979       g_free (topdir);
1980       g_free (trashname);
1981       g_free (infofile);
1982       
1983       g_set_error (error, G_IO_ERROR,
1984                    g_io_error_from_errno (errsv),
1985                    _("Unable to create trashing info file: %s"),
1986                    g_strerror (errsv));
1987       return FALSE;
1988     }
1989
1990   close (fd);
1991
1992   /* TODO: Maybe we should verify that you can delete the file from the trash
1993      before moving it? OTOH, that is hard, as it needs a recursive scan */
1994
1995   trashfile = g_build_filename (filesdir, trashname, NULL);
1996
1997   g_free (filesdir);
1998
1999   if (g_rename (local->filename, trashfile) == -1)
2000     {
2001       int errsv = errno;
2002
2003       g_free (topdir);
2004       g_free (trashname);
2005       g_free (infofile);
2006       g_free (trashfile);
2007
2008       if (errsv == EXDEV)
2009         /* The trash dir was actually on another fs anyway!?
2010            This can happen when the same device is mounted multiple
2011            times, or with bind mounts of the same fs. */
2012         g_set_error (error, G_IO_ERROR,
2013                      G_IO_ERROR_NOT_SUPPORTED,
2014                      _("Unable to trash file: %s"),
2015                      g_strerror (errsv));
2016       else
2017         g_set_error (error, G_IO_ERROR,
2018                      g_io_error_from_errno (errsv),
2019                      _("Unable to trash file: %s"),
2020                      g_strerror (errsv));
2021       return FALSE;
2022     }
2023
2024   vfs = g_vfs_get_default ();
2025   class = G_VFS_GET_CLASS (vfs);
2026   if (class->local_file_moved)
2027     class->local_file_moved (vfs, local->filename, trashfile);
2028
2029   g_free (trashfile);
2030
2031   /* TODO: Do we need to update mtime/atime here after the move? */
2032
2033   /* Use absolute names for homedir */
2034   if (is_homedir_trash)
2035     original_name = g_strdup (local->filename);
2036   else
2037     original_name = try_make_relative (local->filename, topdir);
2038   original_name_escaped = escape_trash_name (original_name);
2039   
2040   g_free (original_name);
2041   g_free (topdir);
2042   
2043   {
2044     time_t t;
2045     struct tm now;
2046     t = time (NULL);
2047     localtime_r (&t, &now);
2048     delete_time[0] = 0;
2049     strftime(delete_time, sizeof (delete_time), "%Y-%m-%dT%H:%M:%S", &now);
2050   }
2051
2052   data = g_strdup_printf ("[Trash Info]\nPath=%s\nDeletionDate=%s\n",
2053                           original_name_escaped, delete_time);
2054
2055   g_file_set_contents (infofile, data, -1, NULL);
2056   g_free (infofile);
2057   g_free (data);
2058   
2059   g_free (original_name_escaped);
2060   g_free (trashname);
2061   
2062   return TRUE;
2063 }
2064 #else /* G_OS_WIN32 */
2065 gboolean
2066 _g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev)
2067 {
2068   return FALSE;                 /* XXX ??? */
2069 }
2070
2071 static gboolean
2072 g_local_file_trash (GFile         *file,
2073                     GCancellable  *cancellable,
2074                     GError       **error)
2075 {
2076   GLocalFile *local = G_LOCAL_FILE (file);
2077   SHFILEOPSTRUCTW op = {0};
2078   gboolean success;
2079   wchar_t *wfilename;
2080   long len;
2081
2082   wfilename = g_utf8_to_utf16 (local->filename, -1, NULL, &len, NULL);
2083   /* SHFILEOPSTRUCT.pFrom is double-zero-terminated */
2084   wfilename = g_renew (wchar_t, wfilename, len + 2);
2085   wfilename[len + 1] = 0;
2086
2087   op.wFunc = FO_DELETE;
2088   op.pFrom = wfilename;
2089   op.fFlags = FOF_ALLOWUNDO;
2090
2091   success = SHFileOperationW (&op) == 0;
2092
2093   if (success && op.fAnyOperationsAborted)
2094     {
2095       if (cancellable && !g_cancellable_is_cancelled (cancellable))
2096         g_cancellable_cancel (cancellable);
2097       g_set_error (error, G_IO_ERROR,
2098                    G_IO_ERROR_CANCELLED,
2099                    _("Unable to trash file: %s"),
2100                    _("Operation was cancelled"));
2101       success = FALSE;
2102     }
2103   else if (!success)
2104     g_set_error (error, G_IO_ERROR,
2105                  G_IO_ERROR_FAILED,
2106                  _("Unable to trash file: %s"),
2107                  _("internal error"));
2108
2109   g_free (wfilename);
2110   return success;
2111 }
2112 #endif /* G_OS_WIN32 */
2113
2114 static gboolean
2115 g_local_file_make_directory (GFile         *file,
2116                              GCancellable  *cancellable,
2117                              GError       **error)
2118 {
2119   GLocalFile *local = G_LOCAL_FILE (file);
2120   
2121   if (g_mkdir (local->filename, 0777) == -1)
2122     {
2123       int errsv = errno;
2124
2125       if (errsv == EINVAL)
2126         /* This must be an invalid filename, on e.g. FAT */
2127         g_set_error_literal (error, G_IO_ERROR,
2128                              G_IO_ERROR_INVALID_FILENAME,
2129                              _("Invalid filename"));
2130       else
2131         g_set_error (error, G_IO_ERROR,
2132                      g_io_error_from_errno (errsv),
2133                      _("Error creating directory: %s"),
2134                      g_strerror (errsv));
2135       return FALSE;
2136     }
2137   
2138   return TRUE;
2139 }
2140
2141 static gboolean
2142 g_local_file_make_symbolic_link (GFile         *file,
2143                                  const char    *symlink_value,
2144                                  GCancellable  *cancellable,
2145                                  GError       **error)
2146 {
2147 #ifdef HAVE_SYMLINK
2148   GLocalFile *local = G_LOCAL_FILE (file);
2149   
2150   if (symlink (symlink_value, local->filename) == -1)
2151     {
2152       int errsv = errno;
2153
2154       if (errsv == EINVAL)
2155         /* This must be an invalid filename, on e.g. FAT */
2156         g_set_error_literal (error, G_IO_ERROR,
2157                              G_IO_ERROR_INVALID_FILENAME,
2158                              _("Invalid filename"));
2159       else if (errsv == EPERM)
2160         g_set_error (error, G_IO_ERROR,
2161                      G_IO_ERROR_NOT_SUPPORTED,
2162                      _("Filesystem does not support symbolic links"));
2163       else
2164         g_set_error (error, G_IO_ERROR,
2165                      g_io_error_from_errno (errsv),
2166                      _("Error making symbolic link: %s"),
2167                      g_strerror (errsv));
2168       return FALSE;
2169     }
2170   return TRUE;
2171 #else
2172   g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Symlinks not supported");
2173   return FALSE;
2174 #endif
2175 }
2176
2177
2178 static gboolean
2179 g_local_file_copy (GFile                  *source,
2180                    GFile                  *destination,
2181                    GFileCopyFlags          flags,
2182                    GCancellable           *cancellable,
2183                    GFileProgressCallback   progress_callback,
2184                    gpointer                progress_callback_data,
2185                    GError                **error)
2186 {
2187   /* Fall back to default copy */
2188   g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Copy not supported");
2189   return FALSE;
2190 }
2191
2192 static gboolean
2193 g_local_file_move (GFile                  *source,
2194                    GFile                  *destination,
2195                    GFileCopyFlags          flags,
2196                    GCancellable           *cancellable,
2197                    GFileProgressCallback   progress_callback,
2198                    gpointer                progress_callback_data,
2199                    GError                **error)
2200 {
2201   GLocalFile *local_source, *local_destination;
2202   GStatBuf statbuf;
2203   gboolean destination_exist, source_is_dir;
2204   char *backup_name;
2205   int res;
2206   off_t source_size;
2207   GVfsClass *class;
2208   GVfs *vfs;
2209
2210   if (!G_IS_LOCAL_FILE (source) ||
2211       !G_IS_LOCAL_FILE (destination))
2212     {
2213       /* Fall back to default move */
2214       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Move not supported");
2215       return FALSE;
2216     }
2217   
2218   local_source = G_LOCAL_FILE (source);
2219   local_destination = G_LOCAL_FILE (destination);
2220   
2221   res = g_lstat (local_source->filename, &statbuf);
2222   if (res == -1)
2223     {
2224       int errsv = errno;
2225
2226       g_set_error (error, G_IO_ERROR,
2227                    g_io_error_from_errno (errsv),
2228                    _("Error moving file: %s"),
2229                    g_strerror (errsv));
2230       return FALSE;
2231     }
2232
2233   source_is_dir = S_ISDIR (statbuf.st_mode);
2234   source_size = statbuf.st_size;
2235   
2236   destination_exist = FALSE;
2237   res = g_lstat (local_destination->filename, &statbuf);
2238   if (res == 0)
2239     {
2240       destination_exist = TRUE; /* Target file exists */
2241
2242       if (flags & G_FILE_COPY_OVERWRITE)
2243         {
2244           /* Always fail on dirs, even with overwrite */
2245           if (S_ISDIR (statbuf.st_mode))
2246             {
2247               if (source_is_dir)
2248                 g_set_error_literal (error,
2249                                      G_IO_ERROR,
2250                                      G_IO_ERROR_WOULD_MERGE,
2251                                      _("Can't move directory over directory"));
2252               else
2253                 g_set_error_literal (error,
2254                                      G_IO_ERROR,
2255                                      G_IO_ERROR_IS_DIRECTORY,
2256                                      _("Can't copy over directory"));
2257               return FALSE;
2258             }
2259         }
2260       else
2261         {
2262           g_set_error_literal (error,
2263                                G_IO_ERROR,
2264                                G_IO_ERROR_EXISTS,
2265                                _("Target file exists"));
2266           return FALSE;
2267         }
2268     }
2269   
2270   if (flags & G_FILE_COPY_BACKUP && destination_exist)
2271     {
2272       backup_name = g_strconcat (local_destination->filename, "~", NULL);
2273       if (g_rename (local_destination->filename, backup_name) == -1)
2274         {
2275           g_set_error_literal (error,
2276                                G_IO_ERROR,
2277                                G_IO_ERROR_CANT_CREATE_BACKUP,
2278                                _("Backup file creation failed"));
2279           g_free (backup_name);
2280           return FALSE;
2281         }
2282       g_free (backup_name);
2283       destination_exist = FALSE; /* It did, but no more */
2284     }
2285
2286   if (source_is_dir && destination_exist && (flags & G_FILE_COPY_OVERWRITE))
2287     {
2288       /* Source is a dir, destination exists (and is not a dir, because that would have failed
2289          earlier), and we're overwriting. Manually remove the target so we can do the rename. */
2290       res = g_unlink (local_destination->filename);
2291       if (res == -1)
2292         {
2293           int errsv = errno;
2294
2295           g_set_error (error, G_IO_ERROR,
2296                        g_io_error_from_errno (errsv),
2297                        _("Error removing target file: %s"),
2298                        g_strerror (errsv));
2299           return FALSE;
2300         }
2301     }
2302   
2303   if (g_rename (local_source->filename, local_destination->filename) == -1)
2304     {
2305       int errsv = errno;
2306
2307       if (errsv == EXDEV)
2308         /* This will cause the fallback code to run */
2309         g_set_error_literal (error, G_IO_ERROR,
2310                              G_IO_ERROR_NOT_SUPPORTED,
2311                              _("Move between mounts not supported"));
2312       else if (errsv == EINVAL)
2313         /* This must be an invalid filename, on e.g. FAT, or
2314            we're trying to move the file into itself...
2315            We return invalid filename for both... */
2316         g_set_error_literal (error, G_IO_ERROR,
2317                              G_IO_ERROR_INVALID_FILENAME,
2318                              _("Invalid filename"));
2319       else
2320         g_set_error (error, G_IO_ERROR,
2321                      g_io_error_from_errno (errsv),
2322                      _("Error moving file: %s"),
2323                      g_strerror (errsv));
2324       return FALSE;
2325     }
2326
2327   vfs = g_vfs_get_default ();
2328   class = G_VFS_GET_CLASS (vfs);
2329   if (class->local_file_moved)
2330     class->local_file_moved (vfs, local_source->filename, local_destination->filename);
2331
2332   /* Make sure we send full copied size */
2333   if (progress_callback)
2334     progress_callback (source_size, source_size, progress_callback_data);
2335   
2336   return TRUE;
2337 }
2338
2339 static GFileMonitor*
2340 g_local_file_monitor_dir (GFile             *file,
2341                           GFileMonitorFlags  flags,
2342                           GCancellable      *cancellable,
2343                           GError           **error)
2344 {
2345   GLocalFile* local_file = G_LOCAL_FILE(file);
2346   return _g_local_directory_monitor_new (local_file->filename, flags, error);
2347 }
2348
2349 static GFileMonitor*
2350 g_local_file_monitor_file (GFile             *file,
2351                            GFileMonitorFlags  flags,
2352                            GCancellable      *cancellable,
2353                            GError           **error)
2354 {
2355   GLocalFile* local_file = G_LOCAL_FILE(file);
2356   return _g_local_file_monitor_new (local_file->filename, flags, error);
2357 }
2358
2359 static void
2360 g_local_file_file_iface_init (GFileIface *iface)
2361 {
2362   iface->dup = g_local_file_dup;
2363   iface->hash = g_local_file_hash;
2364   iface->equal = g_local_file_equal;
2365   iface->is_native = g_local_file_is_native;
2366   iface->has_uri_scheme = g_local_file_has_uri_scheme;
2367   iface->get_uri_scheme = g_local_file_get_uri_scheme;
2368   iface->get_basename = g_local_file_get_basename;
2369   iface->get_path = g_local_file_get_path;
2370   iface->get_uri = g_local_file_get_uri;
2371   iface->get_parse_name = g_local_file_get_parse_name;
2372   iface->get_parent = g_local_file_get_parent;
2373   iface->prefix_matches = g_local_file_prefix_matches;
2374   iface->get_relative_path = g_local_file_get_relative_path;
2375   iface->resolve_relative_path = g_local_file_resolve_relative_path;
2376   iface->get_child_for_display_name = g_local_file_get_child_for_display_name;
2377   iface->set_display_name = g_local_file_set_display_name;
2378   iface->enumerate_children = g_local_file_enumerate_children;
2379   iface->query_info = g_local_file_query_info;
2380   iface->query_filesystem_info = g_local_file_query_filesystem_info;
2381   iface->find_enclosing_mount = g_local_file_find_enclosing_mount;
2382   iface->query_settable_attributes = g_local_file_query_settable_attributes;
2383   iface->query_writable_namespaces = g_local_file_query_writable_namespaces;
2384   iface->set_attribute = g_local_file_set_attribute;
2385   iface->set_attributes_from_info = g_local_file_set_attributes_from_info;
2386   iface->read_fn = g_local_file_read;
2387   iface->append_to = g_local_file_append_to;
2388   iface->create = g_local_file_create;
2389   iface->replace = g_local_file_replace;
2390   iface->open_readwrite = g_local_file_open_readwrite;
2391   iface->create_readwrite = g_local_file_create_readwrite;
2392   iface->replace_readwrite = g_local_file_replace_readwrite;
2393   iface->delete_file = g_local_file_delete;
2394   iface->trash = g_local_file_trash;
2395   iface->make_directory = g_local_file_make_directory;
2396   iface->make_symbolic_link = g_local_file_make_symbolic_link;
2397   iface->copy = g_local_file_copy;
2398   iface->move = g_local_file_move;
2399   iface->monitor_dir = g_local_file_monitor_dir;
2400   iface->monitor_file = g_local_file_monitor_file;
2401
2402   iface->supports_thread_contexts = TRUE;
2403 }