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