Implement trashing and filesystem::readonly for win32 (#517235) Patch from
[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       g_set_error (error, G_IO_ERROR,
1035                    G_IO_ERROR_NOT_FOUND,
1036                    _("Containing mount does not exist"));
1037       return NULL;
1038     }
1039
1040   mountpoint = find_mountpoint_for (local->filename, buf.st_dev);
1041   if (mountpoint == NULL)
1042     {
1043       g_set_error (error, G_IO_ERROR,
1044                    G_IO_ERROR_NOT_FOUND,
1045                    _("Containing mount does not exist"));
1046       return NULL;
1047     }
1048
1049   mount = _g_mount_get_for_mount_path (mountpoint, cancellable);
1050   g_free (mountpoint);
1051   if (mount)
1052     return mount;
1053
1054   g_set_error (error, G_IO_ERROR,
1055                G_IO_ERROR_NOT_FOUND,
1056                _("Containing mount does not exist"));
1057   return NULL;
1058 }
1059
1060 static GFile *
1061 g_local_file_set_display_name (GFile         *file,
1062                                const char    *display_name,
1063                                GCancellable  *cancellable,
1064                                GError       **error)
1065 {
1066   GLocalFile *local, *new_local;
1067   GFile *new_file, *parent;
1068   struct stat statbuf;
1069   int errsv;
1070
1071   parent = g_file_get_parent (file);
1072   if (parent == NULL)
1073     {
1074       g_set_error (error, G_IO_ERROR,
1075                    G_IO_ERROR_FAILED,
1076                    _("Can't rename root directory"));
1077       return NULL;
1078     }
1079   
1080   new_file = g_file_get_child_for_display_name (parent, display_name, error);
1081   g_object_unref (parent);
1082   
1083   if (new_file == NULL)
1084     return NULL;
1085   
1086   local = G_LOCAL_FILE (file);
1087   new_local = G_LOCAL_FILE (new_file);
1088
1089   if (!(g_lstat (new_local->filename, &statbuf) == -1 &&
1090         errno == ENOENT))
1091     {
1092       g_set_error (error, G_IO_ERROR,
1093                    G_IO_ERROR_EXISTS,
1094                    _("Can't rename file, filename already exist"));
1095       return NULL;
1096     }
1097
1098   if (g_rename (local->filename, new_local->filename) == -1)
1099     {
1100       errsv = errno;
1101
1102       if (errsv == EINVAL)
1103         /* We can't get a rename file into itself error herer,
1104            so this must be an invalid filename, on e.g. FAT */
1105         g_set_error (error, G_IO_ERROR,
1106                      G_IO_ERROR_INVALID_FILENAME,
1107                      _("Invalid filename"));
1108       else
1109         g_set_error (error, G_IO_ERROR,
1110                      g_io_error_from_errno (errsv),
1111                      _("Error renaming file: %s"),
1112                      g_strerror (errsv));
1113       g_object_unref (new_file);
1114       return NULL;
1115     }
1116   
1117   return new_file;
1118 }
1119
1120 static GFileInfo *
1121 g_local_file_query_info (GFile                *file,
1122                          const char           *attributes,
1123                          GFileQueryInfoFlags   flags,
1124                          GCancellable         *cancellable,
1125                          GError              **error)
1126 {
1127   GLocalFile *local = G_LOCAL_FILE (file);
1128   GFileInfo *info;
1129   GFileAttributeMatcher *matcher;
1130   char *basename, *dirname;
1131   GLocalParentFileInfo parent_info;
1132
1133   matcher = g_file_attribute_matcher_new (attributes);
1134   
1135   basename = g_path_get_basename (local->filename);
1136   
1137   dirname = g_path_get_dirname (local->filename);
1138   _g_local_file_info_get_parent_info (dirname, matcher, &parent_info);
1139   g_free (dirname);
1140   
1141   info = _g_local_file_info_get (basename, local->filename,
1142                                  matcher, flags, &parent_info,
1143                                  error);
1144   
1145   g_free (basename);
1146
1147   g_file_attribute_matcher_unref (matcher);
1148
1149   return info;
1150 }
1151
1152 static GFileAttributeInfoList *
1153 g_local_file_query_settable_attributes (GFile         *file,
1154                                         GCancellable  *cancellable,
1155                                         GError       **error)
1156 {
1157   return g_file_attribute_info_list_ref (local_writable_attributes);
1158 }
1159
1160 static GFileAttributeInfoList *
1161 g_local_file_query_writable_namespaces (GFile         *file,
1162                                         GCancellable  *cancellable,
1163                                         GError       **error)
1164 {
1165   return g_file_attribute_info_list_ref (local_writable_namespaces);
1166 }
1167
1168 static gboolean
1169 g_local_file_set_attribute (GFile                *file,
1170                             const char           *attribute,
1171                             GFileAttributeType    type,
1172                             gpointer              value_p,
1173                             GFileQueryInfoFlags   flags,
1174                             GCancellable         *cancellable,
1175                             GError              **error)
1176 {
1177   GLocalFile *local = G_LOCAL_FILE (file);
1178
1179   return _g_local_file_info_set_attribute (local->filename,
1180                                            attribute,
1181                                            type,
1182                                            value_p,
1183                                            flags,
1184                                            cancellable,
1185                                            error);
1186 }
1187
1188 static gboolean
1189 g_local_file_set_attributes_from_info (GFile                *file,
1190                                        GFileInfo            *info,
1191                                        GFileQueryInfoFlags   flags,
1192                                        GCancellable         *cancellable,
1193                                        GError              **error)
1194 {
1195   GLocalFile *local = G_LOCAL_FILE (file);
1196   int res, chained_res;
1197   GFileIface *default_iface;
1198
1199   res = _g_local_file_info_set_attributes (local->filename,
1200                                            info, flags, 
1201                                            cancellable,
1202                                            error);
1203
1204   if (!res)
1205     error = NULL; /* Don't write over error if further errors */
1206
1207   default_iface = g_type_default_interface_peek (G_TYPE_FILE);
1208
1209   chained_res = (default_iface->set_attributes_from_info) (file, info, flags, cancellable, error);
1210   
1211   return res && chained_res;
1212 }
1213
1214 static GFileInputStream *
1215 g_local_file_read (GFile         *file,
1216                    GCancellable  *cancellable,
1217                    GError       **error)
1218 {
1219   GLocalFile *local = G_LOCAL_FILE (file);
1220   int fd;
1221   struct stat buf;
1222   
1223   fd = g_open (local->filename, O_RDONLY|O_BINARY, 0);
1224   if (fd == -1)
1225     {
1226       int errsv = errno;
1227
1228       g_set_error (error, G_IO_ERROR,
1229                    g_io_error_from_errno (errsv),
1230                    _("Error opening file: %s"),
1231                    g_strerror (errsv));
1232       return NULL;
1233     }
1234
1235   if (fstat(fd, &buf) == 0 && S_ISDIR (buf.st_mode))
1236     {
1237       close (fd);
1238       g_set_error (error, G_IO_ERROR,
1239                    G_IO_ERROR_IS_DIRECTORY,
1240                    _("Can't open directory"));
1241       return NULL;
1242     }
1243   
1244   return _g_local_file_input_stream_new (fd);
1245 }
1246
1247 static GFileOutputStream *
1248 g_local_file_append_to (GFile             *file,
1249                         GFileCreateFlags   flags,
1250                         GCancellable      *cancellable,
1251                         GError           **error)
1252 {
1253   return _g_local_file_output_stream_append (G_LOCAL_FILE (file)->filename,
1254                                              flags, cancellable, error);
1255 }
1256
1257 static GFileOutputStream *
1258 g_local_file_create (GFile             *file,
1259                      GFileCreateFlags   flags,
1260                      GCancellable      *cancellable,
1261                      GError           **error)
1262 {
1263   return _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
1264                                              flags, cancellable, error);
1265 }
1266
1267 static GFileOutputStream *
1268 g_local_file_replace (GFile             *file,
1269                       const char        *etag,
1270                       gboolean           make_backup,
1271                       GFileCreateFlags   flags,
1272                       GCancellable      *cancellable,
1273                       GError           **error)
1274 {
1275   return _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
1276                                               etag, make_backup, flags,
1277                                               cancellable, error);
1278 }
1279
1280
1281 static gboolean
1282 g_local_file_delete (GFile         *file,
1283                      GCancellable  *cancellable,
1284                      GError       **error)
1285 {
1286   GLocalFile *local = G_LOCAL_FILE (file);
1287   
1288   if (g_remove (local->filename) == -1)
1289     {
1290       int errsv = errno;
1291
1292       g_set_error (error, G_IO_ERROR,
1293                    g_io_error_from_errno (errsv),
1294                    _("Error removing file: %s"),
1295                    g_strerror (errsv));
1296       return FALSE;
1297     }
1298   
1299   return TRUE;
1300 }
1301
1302 static char *
1303 strip_trailing_slashes (const char *path)
1304 {
1305   char *path_copy;
1306   int len;
1307
1308   path_copy = g_strdup (path);
1309   len = strlen (path_copy);
1310   while (len > 1 && path_copy[len-1] == '/')
1311     path_copy[--len] = 0;
1312
1313   return path_copy;
1314  }
1315
1316 static char *
1317 expand_symlink (const char *link)
1318 {
1319   char *resolved, *canonical, *parent, *link2;
1320   char symlink_value[4096];
1321 #ifdef G_OS_WIN32
1322 #else
1323   ssize_t res;
1324 #endif
1325   
1326 #ifdef G_OS_WIN32
1327 #else
1328   res = readlink (link, symlink_value, sizeof (symlink_value) - 1);
1329   
1330   if (res == -1)
1331     return g_strdup (link);
1332   symlink_value[res] = 0;
1333 #endif
1334   
1335   if (g_path_is_absolute (symlink_value))
1336     return canonicalize_filename (symlink_value);
1337   else
1338     {
1339       link2 = strip_trailing_slashes (link);
1340       parent = g_path_get_dirname (link2);
1341       g_free (link2);
1342       
1343       resolved = g_build_filename (parent, symlink_value, NULL);
1344       g_free (parent);
1345       
1346       canonical = canonicalize_filename (resolved);
1347       
1348       g_free (resolved);
1349
1350       return canonical;
1351     }
1352 }
1353
1354 static char *
1355 get_parent (const char *path, 
1356             dev_t      *parent_dev)
1357 {
1358   char *parent, *tmp;
1359   struct stat parent_stat;
1360   int num_recursions;
1361   char *path_copy;
1362
1363   path_copy = strip_trailing_slashes (path);
1364   
1365   parent = g_path_get_dirname (path_copy);
1366   if (strcmp (parent, ".") == 0 ||
1367       strcmp (parent, path_copy) == 0)
1368     {
1369       g_free (path_copy);
1370       return NULL;
1371     }
1372   g_free (path_copy);
1373
1374   num_recursions = 0;
1375   do {
1376     if (g_lstat (parent, &parent_stat) != 0)
1377       {
1378         g_free (parent);
1379         return NULL;
1380       }
1381     
1382     if (S_ISLNK (parent_stat.st_mode))
1383       {
1384         tmp = parent;
1385         parent = expand_symlink (parent);
1386         g_free (tmp);
1387       }
1388     
1389     num_recursions++;
1390     if (num_recursions > 12)
1391       {
1392         g_free (parent);
1393         return NULL;
1394       }
1395   } while (S_ISLNK (parent_stat.st_mode));
1396
1397   *parent_dev = parent_stat.st_dev;
1398   
1399   return parent;
1400 }
1401
1402 static char *
1403 expand_all_symlinks (const char *path)
1404 {
1405   char *parent, *parent_expanded;
1406   char *basename, *res;
1407   dev_t parent_dev;
1408
1409   parent = get_parent (path, &parent_dev);
1410   if (parent)
1411     {
1412       parent_expanded = expand_all_symlinks (parent);
1413       g_free (parent);
1414       basename = g_path_get_basename (path);
1415       res = g_build_filename (parent_expanded, basename, NULL);
1416       g_free (basename);
1417       g_free (parent_expanded);
1418     }
1419   else
1420     res = g_strdup (path);
1421   
1422   return res;
1423 }
1424
1425 #ifndef G_OS_WIN32
1426
1427 static char *
1428 find_mountpoint_for (const char *file, 
1429                      dev_t       dev)
1430 {
1431   char *dir, *parent;
1432   dev_t dir_dev, parent_dev;
1433
1434   dir = g_strdup (file);
1435   dir_dev = dev;
1436
1437   while (1) 
1438     {
1439       parent = get_parent (dir, &parent_dev);
1440       if (parent == NULL)
1441         return dir;
1442     
1443       if (parent_dev != dir_dev)
1444         {
1445           g_free (parent);
1446           return dir;
1447         }
1448     
1449       g_free (dir);
1450       dir = parent;
1451     }
1452 }
1453
1454 static char *
1455 find_topdir_for (const char *file)
1456 {
1457   char *dir;
1458   dev_t dir_dev;
1459
1460   dir = get_parent (file, &dir_dev);
1461   if (dir == NULL)
1462     return NULL;
1463
1464   return find_mountpoint_for (dir, dir_dev);
1465 }
1466
1467 static char *
1468 get_unique_filename (const char *basename, 
1469                      int         id)
1470 {
1471   const char *dot;
1472       
1473   if (id == 1)
1474     return g_strdup (basename);
1475
1476   dot = strchr (basename, '.');
1477   if (dot)
1478     return g_strdup_printf ("%.*s.%d%s", (int)(dot - basename), basename, id, dot);
1479   else
1480     return g_strdup_printf ("%s.%d", basename, id);
1481 }
1482
1483 static gboolean
1484 path_has_prefix (const char *path, 
1485                  const char *prefix)
1486 {
1487   int prefix_len;
1488
1489   if (prefix == NULL)
1490     return TRUE;
1491
1492   prefix_len = strlen (prefix);
1493   
1494   if (strncmp (path, prefix, prefix_len) == 0 &&
1495       (prefix_len == 0 || /* empty prefix always matches */
1496        prefix[prefix_len - 1] == '/' || /* last char in prefix was a /, so it must be in path too */
1497        path[prefix_len] == 0 ||
1498        path[prefix_len] == '/'))
1499     return TRUE;
1500   
1501   return FALSE;
1502 }
1503
1504 static char *
1505 try_make_relative (const char *path, 
1506                    const char *base)
1507 {
1508   char *path2, *base2;
1509   char *relative;
1510
1511   path2 = expand_all_symlinks (path);
1512   base2 = expand_all_symlinks (base);
1513
1514   relative = NULL;
1515   if (path_has_prefix (path2, base2))
1516     {
1517       relative = path2 + strlen (base2);
1518       while (*relative == '/')
1519         relative ++;
1520       relative = g_strdup (relative);
1521     }
1522   g_free (path2);
1523   g_free (base2);
1524
1525   if (relative)
1526     return relative;
1527   
1528   /* Failed, use abs path */
1529   return g_strdup (path);
1530 }
1531
1532 static char *
1533 escape_trash_name (char *name)
1534 {
1535   GString *str;
1536   const gchar hex[16] = "0123456789ABCDEF";
1537   
1538   str = g_string_new ("");
1539
1540   while (*name != 0)
1541     {
1542       char c;
1543
1544       c = *name++;
1545
1546       if (g_ascii_isprint (c))
1547         g_string_append_c (str, c);
1548       else
1549         {
1550           g_string_append_c (str, '%');
1551           g_string_append_c (str, hex[((guchar)c) >> 4]);
1552           g_string_append_c (str, hex[((guchar)c) & 0xf]);
1553         }
1554     }
1555
1556   return g_string_free (str, FALSE);
1557 }
1558
1559 static gboolean
1560 g_local_file_trash (GFile         *file,
1561                     GCancellable  *cancellable,
1562                     GError       **error)
1563 {
1564   GLocalFile *local = G_LOCAL_FILE (file);
1565   struct stat file_stat, home_stat;
1566   const char *homedir;
1567   char *trashdir, *topdir, *infodir, *filesdir;
1568   char *basename, *trashname, *trashfile, *infoname, *infofile;
1569   char *original_name, *original_name_escaped;
1570   int i;
1571   char *data;
1572   gboolean is_homedir_trash;
1573   char delete_time[32];
1574   int fd;
1575   struct stat trash_stat, global_stat;
1576   char *dirname, *globaldir;
1577   
1578   if (g_lstat (local->filename, &file_stat) != 0)
1579     {
1580       int errsv = errno;
1581
1582       g_set_error (error, G_IO_ERROR,
1583                    g_io_error_from_errno (errsv),
1584                    _("Error trashing file: %s"),
1585                    g_strerror (errsv));
1586       return FALSE;
1587     }
1588     
1589   homedir = g_get_home_dir ();
1590   g_stat (homedir, &home_stat);
1591
1592   is_homedir_trash = FALSE;
1593   trashdir = NULL;
1594   if (file_stat.st_dev == home_stat.st_dev)
1595     {
1596       is_homedir_trash = TRUE;
1597       errno = 0;
1598       trashdir = g_build_filename (g_get_user_data_dir (), "Trash", NULL);
1599       if (g_mkdir_with_parents (trashdir, 0700) < 0)
1600         {
1601           char *display_name;
1602           int errsv = errno;
1603
1604           display_name = g_filename_display_name (trashdir);
1605           g_set_error (error, G_IO_ERROR,
1606                        g_io_error_from_errno (errsv),
1607                        _("Unable to create trash dir %s: %s"),
1608                        display_name, g_strerror (errsv));
1609           g_free (display_name);
1610           g_free (trashdir);
1611           return FALSE;
1612         }
1613       topdir = g_strdup (g_get_user_data_dir ());
1614     }
1615   else
1616     {
1617       uid_t uid;
1618       char uid_str[32];
1619
1620       uid = geteuid ();
1621       g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long)uid);
1622       
1623       topdir = find_topdir_for (local->filename);
1624       if (topdir == NULL)
1625         {
1626           g_set_error (error, G_IO_ERROR,
1627                        G_IO_ERROR_NOT_SUPPORTED,
1628                        _("Unable to find toplevel directory for trash"));
1629           return FALSE;
1630         }
1631       
1632       /* Try looking for global trash dir $topdir/.Trash/$uid */
1633       globaldir = g_build_filename (topdir, ".Trash", NULL);
1634       if (g_lstat (globaldir, &global_stat) == 0 &&
1635           S_ISDIR (global_stat.st_mode) &&
1636           (global_stat.st_mode & S_ISVTX) != 0)
1637         {
1638           trashdir = g_build_filename (globaldir, uid_str, NULL);
1639
1640           if (g_lstat (trashdir, &trash_stat) == 0)
1641             {
1642               if (!S_ISDIR (trash_stat.st_mode) ||
1643                   trash_stat.st_uid != uid)
1644                 {
1645                   /* Not a directory or not owned by user, ignore */
1646                   g_free (trashdir);
1647                   trashdir = NULL;
1648                 }
1649             }
1650           else if (g_mkdir (trashdir, 0700) == -1)
1651             {
1652               g_free (trashdir);
1653               trashdir = NULL;
1654             }
1655         }
1656       g_free (globaldir);
1657
1658       if (trashdir == NULL)
1659         {
1660           gboolean tried_create;
1661           
1662           /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
1663           dirname = g_strdup_printf (".Trash-%s", uid_str);
1664           trashdir = g_build_filename (topdir, dirname, NULL);
1665           g_free (dirname);
1666
1667           tried_create = FALSE;
1668
1669         retry:
1670           if (g_lstat (trashdir, &trash_stat) == 0)
1671             {
1672               if (!S_ISDIR (trash_stat.st_mode) ||
1673                   trash_stat.st_uid != uid)
1674                 {
1675                   /* Remove the failed directory */
1676                   if (tried_create)
1677                     g_remove (trashdir);
1678                   
1679                   /* Not a directory or not owned by user, ignore */
1680                   g_free (trashdir);
1681                   trashdir = NULL;
1682                 }
1683             }
1684           else
1685             {
1686               if (!tried_create &&
1687                   g_mkdir (trashdir, 0700) != -1)
1688                 {
1689                   /* Ensure that the created dir has the right uid etc.
1690                      This might fail on e.g. a FAT dir */
1691                   tried_create = TRUE;
1692                   goto retry;
1693                 }
1694               else
1695                 {
1696                   g_free (trashdir);
1697                   trashdir = NULL;
1698                 }
1699             }
1700         }
1701
1702       if (trashdir == NULL)
1703         {
1704           g_free (topdir);
1705           g_set_error (error, G_IO_ERROR,
1706                        G_IO_ERROR_NOT_SUPPORTED,
1707                        _("Unable to find or create trash directory"));
1708           return FALSE;
1709         }
1710     }
1711
1712   /* Trashdir points to the trash dir with the "info" and "files" subdirectories */
1713
1714   infodir = g_build_filename (trashdir, "info", NULL);
1715   filesdir = g_build_filename (trashdir, "files", NULL);
1716   g_free (trashdir);
1717
1718   /* Make sure we have the subdirectories */
1719   if ((g_mkdir (infodir, 0700) == -1 && errno != EEXIST) ||
1720       (g_mkdir (filesdir, 0700) == -1 && errno != EEXIST))
1721     {
1722       g_free (topdir);
1723       g_free (infodir);
1724       g_free (filesdir);
1725       g_set_error (error, G_IO_ERROR,
1726                    G_IO_ERROR_NOT_SUPPORTED,
1727                    _("Unable to find or create trash directory"));
1728       return FALSE;
1729     }  
1730
1731   basename = g_path_get_basename (local->filename);
1732   i = 1;
1733   trashname = NULL;
1734   infofile = NULL;
1735   do {
1736     g_free (trashname);
1737     g_free (infofile);
1738     
1739     trashname = get_unique_filename (basename, i++);
1740     infoname = g_strconcat (trashname, ".trashinfo", NULL);
1741     infofile = g_build_filename (infodir, infoname, NULL);
1742     g_free (infoname);
1743
1744     fd = open (infofile, O_CREAT | O_EXCL, 0666);
1745   } while (fd == -1 && errno == EEXIST);
1746
1747   g_free (basename);
1748   g_free (infodir);
1749
1750   if (fd == -1)
1751     {
1752       int errsv = errno;
1753
1754       g_free (filesdir);
1755       g_free (topdir);
1756       g_free (trashname);
1757       g_free (infofile);
1758       
1759       g_set_error (error, G_IO_ERROR,
1760                    g_io_error_from_errno (errsv),
1761                    _("Unable to create trashing info file: %s"),
1762                    g_strerror (errsv));
1763       return FALSE;
1764     }
1765
1766   close (fd);
1767
1768   /* TODO: Maybe we should verify that you can delete the file from the trash
1769      before moving it? OTOH, that is hard, as it needs a recursive scan */
1770
1771   trashfile = g_build_filename (filesdir, trashname, NULL);
1772
1773   g_free (filesdir);
1774
1775   if (g_rename (local->filename, trashfile) == -1)
1776     {
1777       int errsv = errno;
1778
1779       g_free (topdir);
1780       g_free (trashname);
1781       g_free (infofile);
1782       g_free (trashfile);
1783       
1784       g_set_error (error, G_IO_ERROR,
1785                    g_io_error_from_errno (errsv),
1786                    _("Unable to trash file: %s"),
1787                    g_strerror (errsv));
1788       return FALSE;
1789     }
1790
1791   g_free (trashfile);
1792
1793   /* TODO: Do we need to update mtime/atime here after the move? */
1794
1795   /* Use absolute names for homedir */
1796   if (is_homedir_trash)
1797     original_name = g_strdup (local->filename);
1798   else
1799     original_name = try_make_relative (local->filename, topdir);
1800   original_name_escaped = escape_trash_name (original_name);
1801   
1802   g_free (original_name);
1803   g_free (topdir);
1804   
1805   {
1806     time_t t;
1807     struct tm now;
1808     t = time (NULL);
1809     localtime_r (&t, &now);
1810     delete_time[0] = 0;
1811     strftime(delete_time, sizeof (delete_time), "%Y-%m-%dT%H:%M:%S", &now);
1812   }
1813
1814   data = g_strdup_printf ("[Trash Info]\nPath=%s\nDeletionDate=%s\n",
1815                           original_name_escaped, delete_time);
1816
1817   g_file_set_contents (infofile, data, -1, NULL);
1818   g_free (infofile);
1819   g_free (data);
1820   
1821   g_free (original_name_escaped);
1822   g_free (trashname);
1823   
1824   return TRUE;
1825 }
1826 #else /* G_OS_WIN32 */
1827 static gboolean
1828 g_local_file_trash (GFile         *file,
1829                     GCancellable  *cancellable,
1830                     GError       **error)
1831 {
1832   GLocalFile *local = G_LOCAL_FILE (file);
1833   SHFILEOPSTRUCTW op = {0};
1834   gboolean success;
1835   wchar_t *wfilename;
1836   long len;
1837
1838   wfilename = g_utf8_to_utf16 (local->filename, -1, NULL, &len, NULL);
1839   /* SHFILEOPSTRUCT.pFrom is double-zero-terminated */
1840   wfilename = g_renew (wchar_t, wfilename, len + 2);
1841   wfilename[len + 1] = 0;
1842
1843   op.wFunc = FO_DELETE;
1844   op.pFrom = wfilename;
1845   op.fFlags = FOF_ALLOWUNDO;
1846
1847   success = SHFileOperationW (&op) == 0;
1848
1849   if (success && op.fAnyOperationsAborted)
1850     {
1851       if (cancellable && !g_cancellable_is_cancelled (cancellable))
1852         g_cancellable_cancel (cancellable);
1853       g_set_error (error, G_IO_ERROR,
1854                    G_IO_ERROR_CANCELLED,
1855                    _("Unable to trash file: %s"),
1856                    _("cancelled"));
1857       success = FALSE;
1858     }
1859   else if (!success)
1860     g_set_error (error, G_IO_ERROR,
1861                  G_IO_ERROR_FAILED,
1862                  _("Unable to trash file: %s"),
1863                  _("failed"));
1864
1865   g_free (wfilename);
1866   return success;
1867 }
1868 #endif /* G_OS_WIN32 */
1869
1870 static gboolean
1871 g_local_file_make_directory (GFile         *file,
1872                              GCancellable  *cancellable,
1873                              GError       **error)
1874 {
1875   GLocalFile *local = G_LOCAL_FILE (file);
1876   
1877   if (g_mkdir (local->filename, 0755) == -1)
1878     {
1879       int errsv = errno;
1880
1881       if (errsv == EINVAL)
1882         /* This must be an invalid filename, on e.g. FAT */
1883         g_set_error (error, G_IO_ERROR,
1884                      G_IO_ERROR_INVALID_FILENAME,
1885                      _("Invalid filename"));
1886       else
1887         g_set_error (error, G_IO_ERROR,
1888                      g_io_error_from_errno (errsv),
1889                      _("Error removing file: %s"),
1890                      g_strerror (errsv));
1891       return FALSE;
1892     }
1893   
1894   return TRUE;
1895 }
1896
1897 static gboolean
1898 g_local_file_make_symbolic_link (GFile         *file,
1899                                  const char    *symlink_value,
1900                                  GCancellable  *cancellable,
1901                                  GError       **error)
1902 {
1903 #ifdef HAVE_SYMLINK
1904   GLocalFile *local = G_LOCAL_FILE (file);
1905   
1906   if (symlink (symlink_value, local->filename) == -1)
1907     {
1908       int errsv = errno;
1909
1910       if (errsv == EINVAL)
1911         /* This must be an invalid filename, on e.g. FAT */
1912         g_set_error (error, G_IO_ERROR,
1913                      G_IO_ERROR_INVALID_FILENAME,
1914                      _("Invalid filename"));
1915       else
1916         g_set_error (error, G_IO_ERROR,
1917                      g_io_error_from_errno (errsv),
1918                      _("Error making symbolic link: %s"),
1919                      g_strerror (errsv));
1920       return FALSE;
1921     }
1922   return TRUE;
1923 #else
1924   g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Symlinks not supported");
1925   return FALSE;
1926 #endif
1927 }
1928
1929
1930 static gboolean
1931 g_local_file_copy (GFile                  *source,
1932                    GFile                  *destination,
1933                    GFileCopyFlags          flags,
1934                    GCancellable           *cancellable,
1935                    GFileProgressCallback   progress_callback,
1936                    gpointer                progress_callback_data,
1937                    GError                **error)
1938 {
1939   /* Fall back to default copy */
1940   g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Copy not supported");
1941   return FALSE;
1942 }
1943
1944 static gboolean
1945 g_local_file_move (GFile                  *source,
1946                    GFile                  *destination,
1947                    GFileCopyFlags          flags,
1948                    GCancellable           *cancellable,
1949                    GFileProgressCallback   progress_callback,
1950                    gpointer                progress_callback_data,
1951                    GError                **error)
1952 {
1953   GLocalFile *local_source, *local_destination;
1954   struct stat statbuf;
1955   gboolean destination_exist, source_is_dir;
1956   char *backup_name;
1957   int res;
1958   off_t source_size;
1959   
1960   if (!G_IS_LOCAL_FILE (source) ||
1961       !G_IS_LOCAL_FILE (destination))
1962     {
1963       /* Fall back to default move */
1964       g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Move not supported");
1965       return FALSE;
1966     }
1967   
1968   local_source = G_LOCAL_FILE (source);
1969   local_destination = G_LOCAL_FILE (destination);
1970   
1971   res = g_lstat (local_source->filename, &statbuf);
1972   if (res == -1)
1973     {
1974       int errsv = errno;
1975
1976       g_set_error (error, G_IO_ERROR,
1977                    g_io_error_from_errno (errsv),
1978                    _("Error moving file: %s"),
1979                    g_strerror (errsv));
1980       return FALSE;
1981     }
1982   else
1983     source_is_dir = S_ISDIR (statbuf.st_mode);
1984
1985   source_size = statbuf.st_size;
1986   
1987   destination_exist = FALSE;
1988   res = g_lstat (local_destination->filename, &statbuf);
1989   if (res == 0)
1990     {
1991       destination_exist = TRUE; /* Target file exists */
1992
1993       if (flags & G_FILE_COPY_OVERWRITE)
1994         {
1995           /* Always fail on dirs, even with overwrite */
1996           if (S_ISDIR (statbuf.st_mode))
1997             {
1998               g_set_error (error,
1999                            G_IO_ERROR,
2000                            G_IO_ERROR_WOULD_MERGE,
2001                            _("Can't move directory over directory"));
2002               return FALSE;
2003             }
2004         }
2005       else
2006         {
2007           g_set_error (error,
2008                        G_IO_ERROR,
2009                        G_IO_ERROR_EXISTS,
2010                        _("Target file exists"));
2011           return FALSE;
2012         }
2013     }
2014   
2015   if (flags & G_FILE_COPY_BACKUP && destination_exist)
2016     {
2017       backup_name = g_strconcat (local_destination->filename, "~", NULL);
2018       if (g_rename (local_destination->filename, backup_name) == -1)
2019         {
2020           g_set_error (error,
2021                        G_IO_ERROR,
2022                        G_IO_ERROR_CANT_CREATE_BACKUP,
2023                        _("Backup file creation failed"));
2024           g_free (backup_name);
2025           return FALSE;
2026         }
2027       g_free (backup_name);
2028       destination_exist = FALSE; /* It did, but no more */
2029     }
2030
2031   if (source_is_dir && destination_exist && (flags & G_FILE_COPY_OVERWRITE))
2032     {
2033       /* Source is a dir, destination exists (and is not a dir, because that would have failed
2034          earlier), and we're overwriting. Manually remove the target so we can do the rename. */
2035       res = g_unlink (local_destination->filename);
2036       if (res == -1)
2037         {
2038           int errsv = errno;
2039
2040           g_set_error (error, G_IO_ERROR,
2041                        g_io_error_from_errno (errsv),
2042                        _("Error removing target file: %s"),
2043                        g_strerror (errsv));
2044           return FALSE;
2045         }
2046     }
2047   
2048   if (g_rename (local_source->filename, local_destination->filename) == -1)
2049     {
2050       int errsv = errno;
2051
2052       if (errsv == EXDEV)
2053         /* This will cause the fallback code to run */
2054         g_set_error (error, G_IO_ERROR,
2055                      G_IO_ERROR_NOT_SUPPORTED,
2056                      _("Move between mounts not supported"));
2057       else if (errsv == EINVAL)
2058         /* This must be an invalid filename, on e.g. FAT, or
2059            we're trying to move the file into itself...
2060            We return invalid filename for both... */
2061         g_set_error (error, G_IO_ERROR,
2062                      G_IO_ERROR_INVALID_FILENAME,
2063                      _("Invalid filename"));
2064       else
2065         g_set_error (error, G_IO_ERROR,
2066                      g_io_error_from_errno (errsv),
2067                      _("Error moving file: %s"),
2068                      g_strerror (errsv));
2069       return FALSE;
2070     }
2071
2072   /* Make sure we send full copied size */
2073   if (progress_callback)
2074     progress_callback (source_size, source_size, progress_callback_data);
2075   
2076   return TRUE;
2077 }
2078
2079 static GFileMonitor*
2080 g_local_file_monitor_dir (GFile             *file,
2081                           GFileMonitorFlags  flags,
2082                           GCancellable      *cancellable,
2083                           GError           **error)
2084 {
2085   GLocalFile* local_file = G_LOCAL_FILE(file);
2086   return _g_local_directory_monitor_new (local_file->filename, flags, error);
2087 }
2088
2089 static GFileMonitor*
2090 g_local_file_monitor_file (GFile             *file,
2091                            GFileMonitorFlags  flags,
2092                            GCancellable      *cancellable,
2093                            GError           **error)
2094 {
2095   GLocalFile* local_file = G_LOCAL_FILE(file);
2096   return _g_local_file_monitor_new (local_file->filename, flags, error);
2097 }
2098
2099 static void
2100 g_local_file_file_iface_init (GFileIface *iface)
2101 {
2102   iface->dup = g_local_file_dup;
2103   iface->hash = g_local_file_hash;
2104   iface->equal = g_local_file_equal;
2105   iface->is_native = g_local_file_is_native;
2106   iface->has_uri_scheme = g_local_file_has_uri_scheme;
2107   iface->get_uri_scheme = g_local_file_get_uri_scheme;
2108   iface->get_basename = g_local_file_get_basename;
2109   iface->get_path = g_local_file_get_path;
2110   iface->get_uri = g_local_file_get_uri;
2111   iface->get_parse_name = g_local_file_get_parse_name;
2112   iface->get_parent = g_local_file_get_parent;
2113   iface->prefix_matches = g_local_file_prefix_matches;
2114   iface->get_relative_path = g_local_file_get_relative_path;
2115   iface->resolve_relative_path = g_local_file_resolve_relative_path;
2116   iface->get_child_for_display_name = g_local_file_get_child_for_display_name;
2117   iface->set_display_name = g_local_file_set_display_name;
2118   iface->enumerate_children = g_local_file_enumerate_children;
2119   iface->query_info = g_local_file_query_info;
2120   iface->query_filesystem_info = g_local_file_query_filesystem_info;
2121   iface->find_enclosing_mount = g_local_file_find_enclosing_mount;
2122   iface->query_settable_attributes = g_local_file_query_settable_attributes;
2123   iface->query_writable_namespaces = g_local_file_query_writable_namespaces;
2124   iface->set_attribute = g_local_file_set_attribute;
2125   iface->set_attributes_from_info = g_local_file_set_attributes_from_info;
2126   iface->read_fn = g_local_file_read;
2127   iface->append_to = g_local_file_append_to;
2128   iface->create = g_local_file_create;
2129   iface->replace = g_local_file_replace;
2130   iface->delete_file = g_local_file_delete;
2131   iface->trash = g_local_file_trash;
2132   iface->make_directory = g_local_file_make_directory;
2133   iface->make_symbolic_link = g_local_file_make_symbolic_link;
2134   iface->copy = g_local_file_copy;
2135   iface->move = g_local_file_move;
2136   iface->monitor_dir = g_local_file_monitor_dir;
2137   iface->monitor_file = g_local_file_monitor_file;
2138 }