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