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