docs: Improve g_variant_loop() docs
[platform/upstream/glib.git] / gio / glocalfileinfo.c
1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
2
3 /* GIO - GLib Input, Output and Streaming Library
4  * 
5  * Copyright (C) 2006-2007 Red Hat, Inc.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General
18  * Public License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
20  * Boston, MA 02111-1307, USA.
21  *
22  * Author: Alexander Larsson <alexl@redhat.com>
23  */
24
25 #include "config.h"
26
27 #ifdef HAVE_SYS_TIME_H
28 #include <sys/time.h>
29 #endif
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <string.h>
33 #ifdef HAVE_UNISTD_H
34 #include <unistd.h>
35 #endif
36 #include <fcntl.h>
37 #include <errno.h>
38 #ifdef HAVE_GRP_H
39 #include <grp.h>
40 #endif
41 #ifdef HAVE_PWD_H
42 #include <pwd.h>
43 #endif
44 #ifdef HAVE_SELINUX
45 #include <selinux/selinux.h>
46 #endif
47
48 #ifdef HAVE_XATTR
49
50 #if defined HAVE_SYS_XATTR_H
51   #include <sys/xattr.h>
52 #elif defined HAVE_ATTR_XATTR_H
53   #include <attr/xattr.h>
54 #else
55   #error "Neither <sys/xattr.h> nor <attr/xattr.h> is present but extended attribute support is enabled."
56 #endif /* defined HAVE_SYS_XATTR_H || HAVE_ATTR_XATTR_H */
57
58 #endif /* HAVE_XATTR */
59
60 #include <glib/gstdio.h>
61 #include <gfileattribute-priv.h>
62 #include <gfileinfo-priv.h>
63 #include <gvfs.h>
64
65 #include "glibintl.h"
66
67 #ifdef G_OS_WIN32
68 #include <windows.h>
69 #include <io.h>
70 #ifndef W_OK
71 #define W_OK 2
72 #endif
73 #ifndef R_OK
74 #define R_OK 4
75 #endif
76 #ifndef X_OK
77 #define X_OK 0 /* not really */
78 #endif
79 #ifndef S_ISREG
80 #define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
81 #endif
82 #ifndef S_ISDIR
83 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
84 #endif
85 #ifndef S_IXUSR
86 #define S_IXUSR _S_IEXEC
87 #endif
88 #endif
89
90 #include "glocalfileinfo.h"
91 #include "gioerror.h"
92 #include "gthemedicon.h"
93 #include "gcontenttype.h"
94 #include "gcontenttypeprivate.h"
95
96
97 struct ThumbMD5Context {
98         guint32 buf[4];
99         guint32 bits[2];
100         unsigned char in[64];
101 };
102
103 #ifndef G_OS_WIN32
104
105 typedef struct {
106   char *user_name;
107   char *real_name;
108 } UidData;
109
110 G_LOCK_DEFINE_STATIC (uid_cache);
111 static GHashTable *uid_cache = NULL;
112
113 G_LOCK_DEFINE_STATIC (gid_cache);
114 static GHashTable *gid_cache = NULL;
115
116 #endif  /* !G_OS_WIN32 */
117
118 char *
119 _g_local_file_info_create_etag (GLocalFileStat *statbuf)
120 {
121   glong sec, usec;
122
123   sec = statbuf->st_mtime;
124 #if defined (HAVE_STRUCT_STAT_ST_MTIMENSEC)
125   usec = statbuf->st_mtimensec / 1000;
126 #elif defined (HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC)
127   usec = statbuf->st_mtim.tv_nsec / 1000;
128 #else
129   usec = 0;
130 #endif
131
132   return g_strdup_printf ("%lu:%lu", sec, usec);
133 }
134
135 static char *
136 _g_local_file_info_create_file_id (GLocalFileStat *statbuf)
137 {
138   return g_strdup_printf ("l%" G_GUINT64_FORMAT ":%" G_GUINT64_FORMAT,
139                           (guint64) statbuf->st_dev, 
140                           (guint64) statbuf->st_ino);
141 }
142
143 static char *
144 _g_local_file_info_create_fs_id (GLocalFileStat *statbuf)
145 {
146   return g_strdup_printf ("l%" G_GUINT64_FORMAT,
147                           (guint64) statbuf->st_dev);
148 }
149
150
151 #ifdef S_ISLNK
152
153 static gchar *
154 read_link (const gchar *full_name)
155 {
156 #ifdef HAVE_READLINK
157   gchar *buffer;
158   guint size;
159   
160   size = 256;
161   buffer = g_malloc (size);
162   
163   while (1)
164     {
165       int read_size;
166       
167       read_size = readlink (full_name, buffer, size);
168       if (read_size < 0)
169         {
170           g_free (buffer);
171           return NULL;
172         }
173       if (read_size < size)
174         {
175           buffer[read_size] = 0;
176           return buffer;
177         }
178       size *= 2;
179       buffer = g_realloc (buffer, size);
180     }
181 #else
182   return NULL;
183 #endif
184 }
185
186 #endif  /* S_ISLNK */
187
188 #ifdef HAVE_SELINUX
189 /* Get the SELinux security context */
190 static void
191 get_selinux_context (const char            *path,
192                      GFileInfo             *info,
193                      GFileAttributeMatcher *attribute_matcher,
194                      gboolean               follow_symlinks)
195 {
196   char *context;
197
198   if (!_g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_SELINUX_CONTEXT))
199     return;
200   
201   if (is_selinux_enabled ())
202     {
203       if (follow_symlinks)
204         {
205           if (lgetfilecon_raw (path, &context) < 0)
206             return;
207         }
208       else
209         {
210           if (getfilecon_raw (path, &context) < 0)
211             return;
212         }
213
214       if (context)
215         {
216           _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_SELINUX_CONTEXT, context);
217           freecon (context);
218         }
219     }
220 }
221 #endif
222
223 #ifdef HAVE_XATTR
224
225 /* Wrappers to hide away differences between (Linux) getxattr/lgetxattr and
226  * (Mac) getxattr(..., XATTR_NOFOLLOW)
227  */
228 #ifdef HAVE_XATTR_NOFOLLOW
229 #define g_fgetxattr(fd,name,value,size)  fgetxattr(fd,name,value,size,0,0)
230 #define g_flistxattr(fd,name,size)       flistxattr(fd,name,size,0)
231 #define g_setxattr(path,name,value,size) setxattr(path,name,value,size,0,0)
232 #else
233 #define g_fgetxattr     fgetxattr
234 #define g_flistxattr    flistxattr
235 #define g_setxattr(path,name,value,size) setxattr(path,name,value,size,0)
236 #endif
237
238 static ssize_t
239 g_getxattr (const char *path, const char *name, void *value, size_t size,
240             gboolean follow_symlinks)
241 {
242 #ifdef HAVE_XATTR_NOFOLLOW
243   return getxattr (path, name, value, size, 0, follow_symlinks ? 0 : XATTR_NOFOLLOW);
244 #else
245   if (follow_symlinks)
246     return getxattr (path, name, value, size);
247   else
248     return lgetxattr (path, name, value, size);
249 #endif
250 }
251
252 static ssize_t
253 g_listxattr(const char *path, char *namebuf, size_t size,
254             gboolean follow_symlinks)
255 {
256 #ifdef HAVE_XATTR_NOFOLLOW
257   return listxattr (path, namebuf, size, follow_symlinks ? 0 : XATTR_NOFOLLOW);
258 #else
259   if (follow_symlinks)
260     return listxattr (path, namebuf, size);
261   else
262     return llistxattr (path, namebuf, size);
263 #endif
264 }
265
266 static gboolean
267 valid_char (char c)
268 {
269   return c >= 32 && c <= 126 && c != '\\';
270 }
271
272 static gboolean
273 name_is_valid (const char *str)
274 {
275   while (*str)
276     {
277       if (!valid_char (*str++))
278         return FALSE;
279     }
280   return TRUE;
281 }
282
283 static char *
284 hex_escape_string (const char *str, 
285                    gboolean   *free_return)
286 {
287   int num_invalid, i;
288   char *escaped_str, *p;
289   unsigned char c;
290   static char *hex_digits = "0123456789abcdef";
291   int len;
292
293   len = strlen (str);
294   
295   num_invalid = 0;
296   for (i = 0; i < len; i++)
297     {
298       if (!valid_char (str[i]))
299         num_invalid++;
300     }
301
302   if (num_invalid == 0)
303     {
304       *free_return = FALSE;
305       return (char *)str;
306     }
307
308   escaped_str = g_malloc (len + num_invalid*3 + 1);
309
310   p = escaped_str;
311   for (i = 0; i < len; i++)
312     {
313       if (valid_char (str[i]))
314         *p++ = str[i];
315       else
316         {
317           c = str[i];
318           *p++ = '\\';
319           *p++ = 'x';
320           *p++ = hex_digits[(c >> 4) & 0xf];
321           *p++ = hex_digits[c & 0xf];
322         }
323     }
324   *p = 0;
325
326   *free_return = TRUE;
327   return escaped_str;
328 }
329
330 static char *
331 hex_unescape_string (const char *str, 
332                      int        *out_len, 
333                      gboolean   *free_return)
334 {
335   int i;
336   char *unescaped_str, *p;
337   unsigned char c;
338   int len;
339
340   len = strlen (str);
341   
342   if (strchr (str, '\\') == NULL)
343     {
344       if (out_len)
345         *out_len = len;
346       *free_return = FALSE;
347       return (char *)str;
348     }
349   
350   unescaped_str = g_malloc (len + 1);
351
352   p = unescaped_str;
353   for (i = 0; i < len; i++)
354     {
355       if (str[i] == '\\' &&
356           str[i+1] == 'x' &&
357           len - i >= 4)
358         {
359           c =
360             (g_ascii_xdigit_value (str[i+2]) << 4) |
361             g_ascii_xdigit_value (str[i+3]);
362           *p++ = c;
363           i += 3;
364         }
365       else
366         *p++ = str[i];
367     }
368   *p++ = 0;
369
370   if (out_len)
371     *out_len = p - unescaped_str;
372   *free_return = TRUE;
373   return unescaped_str;
374 }
375
376 static void
377 escape_xattr (GFileInfo  *info,
378               const char *gio_attr, /* gio attribute name */
379               const char *value, /* Is zero terminated */
380               size_t      len /* not including zero termination */)
381 {
382   char *escaped_val;
383   gboolean free_escaped_val;
384   
385   escaped_val = hex_escape_string (value, &free_escaped_val);
386   
387   g_file_info_set_attribute_string (info, gio_attr, escaped_val);
388   
389   if (free_escaped_val)
390     g_free (escaped_val);
391 }
392
393 static void
394 get_one_xattr (const char *path,
395                GFileInfo  *info,
396                const char *gio_attr,
397                const char *xattr,
398                gboolean    follow_symlinks)
399 {
400   char value[64];
401   char *value_p;
402   ssize_t len;
403
404   len = g_getxattr (path, xattr, value, sizeof (value)-1, follow_symlinks);
405
406   value_p = NULL;
407   if (len >= 0)
408     value_p = value;
409   else if (len == -1 && errno == ERANGE)
410     {
411       len = g_getxattr (path, xattr, NULL, 0, follow_symlinks);
412
413       if (len < 0)
414         return;
415
416       value_p = g_malloc (len+1);
417
418       len = g_getxattr (path, xattr, value_p, len, follow_symlinks);
419
420       if (len < 0)
421         {
422           g_free (value_p);
423           return;
424         }
425     }
426   else
427     return;
428   
429   /* Null terminate */
430   value_p[len] = 0;
431
432   escape_xattr (info, gio_attr, value_p, len);
433   
434   if (value_p != value)
435     g_free (value_p);
436 }
437
438 #endif /* defined HAVE_XATTR */
439
440 static void
441 get_xattrs (const char            *path,
442             gboolean               user,
443             GFileInfo             *info,
444             GFileAttributeMatcher *matcher,
445             gboolean               follow_symlinks)
446 {
447 #ifdef HAVE_XATTR
448   gboolean all;
449   gsize list_size;
450   ssize_t list_res_size;
451   size_t len;
452   char *list;
453   const char *attr, *attr2;
454
455   if (user)
456     all = g_file_attribute_matcher_enumerate_namespace (matcher, "xattr");
457   else
458     all = g_file_attribute_matcher_enumerate_namespace (matcher, "xattr-sys");
459
460   if (all)
461     {
462       list_res_size = g_listxattr (path, NULL, 0, follow_symlinks);
463
464       if (list_res_size == -1 ||
465           list_res_size == 0)
466         return;
467
468       list_size = list_res_size;
469       list = g_malloc (list_size);
470
471     retry:
472       
473       list_res_size = g_listxattr (path, list, list_size, follow_symlinks);
474       
475       if (list_res_size == -1 && errno == ERANGE)
476         {
477           list_size = list_size * 2;
478           list = g_realloc (list, list_size);
479           goto retry;
480         }
481
482       if (list_res_size == -1)
483         return;
484
485       attr = list;
486       while (list_res_size > 0)
487         {
488           if ((user && g_str_has_prefix (attr, "user.")) ||
489               (!user && !g_str_has_prefix (attr, "user.")))
490             {
491               char *escaped_attr, *gio_attr;
492               gboolean free_escaped_attr;
493               
494               if (user)
495                 {
496                   escaped_attr = hex_escape_string (attr + 5, &free_escaped_attr);
497                   gio_attr = g_strconcat ("xattr::", escaped_attr, NULL);
498                 }
499               else
500                 {
501                   escaped_attr = hex_escape_string (attr, &free_escaped_attr);
502                   gio_attr = g_strconcat ("xattr-sys::", escaped_attr, NULL);
503                 }
504               
505               if (free_escaped_attr)
506                 g_free (escaped_attr);
507               
508               get_one_xattr (path, info, gio_attr, attr, follow_symlinks);
509
510               g_free (gio_attr);
511             }
512               
513           len = strlen (attr) + 1;
514           attr += len;
515           list_res_size -= len;
516         }
517
518       g_free (list);
519     }
520   else
521     {
522       while ((attr = g_file_attribute_matcher_enumerate_next (matcher)) != NULL)
523         {
524           char *unescaped_attribute, *a;
525           gboolean free_unescaped_attribute;
526
527           attr2 = strchr (attr, ':');
528           if (attr2)
529             {
530               attr2 += 2; /* Skip '::' */
531               unescaped_attribute = hex_unescape_string (attr2, NULL, &free_unescaped_attribute);
532               if (user)
533                 a = g_strconcat ("user.", unescaped_attribute, NULL);
534               else
535                 a = unescaped_attribute;
536               
537               get_one_xattr (path, info, attr, a, follow_symlinks);
538
539               if (user)
540                 g_free (a);
541               
542               if (free_unescaped_attribute)
543                 g_free (unescaped_attribute);
544             }
545         }
546     }
547 #endif /* defined HAVE_XATTR */
548 }
549
550 #ifdef HAVE_XATTR
551 static void
552 get_one_xattr_from_fd (int         fd,
553                        GFileInfo  *info,
554                        const char *gio_attr,
555                        const char *xattr)
556 {
557   char value[64];
558   char *value_p;
559   ssize_t len;
560
561   len = g_fgetxattr (fd, xattr, value, sizeof (value) - 1);
562
563   value_p = NULL;
564   if (len >= 0)
565     value_p = value;
566   else if (len == -1 && errno == ERANGE)
567     {
568       len = g_fgetxattr (fd, xattr, NULL, 0);
569
570       if (len < 0)
571         return;
572
573       value_p = g_malloc (len + 1);
574
575       len = g_fgetxattr (fd, xattr, value_p, len);
576
577       if (len < 0)
578         {
579           g_free (value_p);
580           return;
581         }
582     }
583   else
584     return;
585   
586   /* Null terminate */
587   value_p[len] = 0;
588
589   escape_xattr (info, gio_attr, value_p, len);
590   
591   if (value_p != value)
592     g_free (value_p);
593 }
594 #endif /* defined HAVE_XATTR */
595
596 static void
597 get_xattrs_from_fd (int                    fd,
598                     gboolean               user,
599                     GFileInfo             *info,
600                     GFileAttributeMatcher *matcher)
601 {
602 #ifdef HAVE_XATTR
603   gboolean all;
604   gsize list_size;
605   ssize_t list_res_size;
606   size_t len;
607   char *list;
608   const char *attr, *attr2;
609
610   if (user)
611     all = g_file_attribute_matcher_enumerate_namespace (matcher, "xattr");
612   else
613     all = g_file_attribute_matcher_enumerate_namespace (matcher, "xattr-sys");
614
615   if (all)
616     {
617       list_res_size = g_flistxattr (fd, NULL, 0);
618
619       if (list_res_size == -1 ||
620           list_res_size == 0)
621         return;
622
623       list_size = list_res_size;
624       list = g_malloc (list_size);
625
626     retry:
627       
628       list_res_size = g_flistxattr (fd, list, list_size);
629       
630       if (list_res_size == -1 && errno == ERANGE)
631         {
632           list_size = list_size * 2;
633           list = g_realloc (list, list_size);
634           goto retry;
635         }
636
637       if (list_res_size == -1)
638         return;
639
640       attr = list;
641       while (list_res_size > 0)
642         {
643           if ((user && g_str_has_prefix (attr, "user.")) ||
644               (!user && !g_str_has_prefix (attr, "user.")))
645             {
646               char *escaped_attr, *gio_attr;
647               gboolean free_escaped_attr;
648               
649               if (user)
650                 {
651                   escaped_attr = hex_escape_string (attr + 5, &free_escaped_attr);
652                   gio_attr = g_strconcat ("xattr::", escaped_attr, NULL);
653                 }
654               else
655                 {
656                   escaped_attr = hex_escape_string (attr, &free_escaped_attr);
657                   gio_attr = g_strconcat ("xattr-sys::", escaped_attr, NULL);
658                 }
659               
660               if (free_escaped_attr)
661                 g_free (escaped_attr);
662               
663               get_one_xattr_from_fd (fd, info, gio_attr, attr);
664             }
665           
666           len = strlen (attr) + 1;
667           attr += len;
668           list_res_size -= len;
669         }
670
671       g_free (list);
672     }
673   else
674     {
675       while ((attr = g_file_attribute_matcher_enumerate_next (matcher)) != NULL)
676         {
677           char *unescaped_attribute, *a;
678           gboolean free_unescaped_attribute;
679
680           attr2 = strchr (attr, ':');
681           if (attr2)
682             {
683               attr2++; /* Skip ':' */
684               unescaped_attribute = hex_unescape_string (attr2, NULL, &free_unescaped_attribute);
685               if (user)
686                 a = g_strconcat ("user.", unescaped_attribute, NULL);
687               else
688                 a = unescaped_attribute;
689               
690               get_one_xattr_from_fd (fd, info, attr, a);
691
692               if (user)
693                 g_free (a);
694               
695               if (free_unescaped_attribute)
696                 g_free (unescaped_attribute);
697             }
698         }
699     }
700 #endif /* defined HAVE_XATTR */
701 }
702
703 #ifdef HAVE_XATTR
704 static gboolean
705 set_xattr (char                       *filename,
706            const char                 *escaped_attribute,
707            const GFileAttributeValue  *attr_value,
708            GError                    **error)
709 {
710   char *attribute, *value;
711   gboolean free_attribute, free_value;
712   int val_len, res, errsv;
713   gboolean is_user;
714   char *a;
715
716   if (attr_value == NULL)
717     {
718       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
719                            _("Attribute value must be non-NULL"));
720       return FALSE;
721     }
722
723   if (attr_value->type != G_FILE_ATTRIBUTE_TYPE_STRING)
724     {
725       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
726                            _("Invalid attribute type (string expected)"));
727       return FALSE;
728     }
729
730   if (!name_is_valid (escaped_attribute))
731     {
732       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
733                            _("Invalid extended attribute name"));
734       return FALSE;
735     }
736
737   if (g_str_has_prefix (escaped_attribute, "xattr::"))
738     {
739       escaped_attribute += strlen ("xattr::");
740       is_user = TRUE;
741     }
742   else
743     {
744       g_warn_if_fail (g_str_has_prefix (escaped_attribute, "xattr-sys::"));
745       escaped_attribute += strlen ("xattr-sys::");
746       is_user = FALSE;
747     }
748   
749   attribute = hex_unescape_string (escaped_attribute, NULL, &free_attribute);
750   value = hex_unescape_string (attr_value->u.string, &val_len, &free_value);
751
752   if (is_user)
753     a = g_strconcat ("user.", attribute, NULL);
754   else
755     a = attribute;
756   
757   res = g_setxattr (filename, a, value, val_len);
758   errsv = errno;
759   
760   if (is_user)
761     g_free (a);
762   
763   if (free_attribute)
764     g_free (attribute);
765   
766   if (free_value)
767     g_free (value);
768
769   if (res == -1)
770     {
771       g_set_error (error, G_IO_ERROR,
772                    g_io_error_from_errno (errsv),
773                    _("Error setting extended attribute '%s': %s"),
774                    escaped_attribute, g_strerror (errsv));
775       return FALSE;
776     }
777   
778   return TRUE;
779 }
780
781 #endif
782
783
784 void
785 _g_local_file_info_get_parent_info (const char            *dir,
786                                     GFileAttributeMatcher *attribute_matcher,
787                                     GLocalParentFileInfo  *parent_info)
788 {
789   GStatBuf statbuf;
790   int res;
791
792   parent_info->extra_data = NULL;
793   parent_info->free_extra_data = NULL;
794   parent_info->writable = FALSE;
795   parent_info->is_sticky = FALSE;
796   parent_info->has_trash_dir = FALSE;
797   parent_info->device = 0;
798
799   if (_g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_RENAME) ||
800       _g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_DELETE) ||
801       _g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_TRASH) ||
802       _g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_UNIX_IS_MOUNTPOINT))
803     {
804       /* FIXME: Windows: The underlying _waccess() call in the C
805        * library is mostly pointless as it only looks at the READONLY
806        * FAT-style attribute of the file, it doesn't check the ACL at
807        * all.
808        */
809       parent_info->writable = (g_access (dir, W_OK) == 0);
810       
811       res = g_stat (dir, &statbuf);
812
813       /*
814        * The sticky bit (S_ISVTX) on a directory means that a file in that directory can be
815        * renamed or deleted only by the owner of the file, by the owner of the directory, and
816        * by a privileged process.
817        */
818       if (res == 0)
819         {
820 #ifdef S_ISVTX
821           parent_info->is_sticky = (statbuf.st_mode & S_ISVTX) != 0;
822 #else
823           parent_info->is_sticky = FALSE;
824 #endif
825           parent_info->owner = statbuf.st_uid;
826           parent_info->device = statbuf.st_dev;
827           /* No need to find trash dir if it's not writable anyway */
828           if (parent_info->writable &&
829               _g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_TRASH))
830             parent_info->has_trash_dir = _g_local_file_has_trash_dir (dir, statbuf.st_dev);
831         }
832     }
833 }
834
835 void
836 _g_local_file_info_free_parent_info (GLocalParentFileInfo *parent_info)
837 {
838   if (parent_info->extra_data &&
839       parent_info->free_extra_data)
840     parent_info->free_extra_data (parent_info->extra_data);
841 }
842
843 static void
844 get_access_rights (GFileAttributeMatcher *attribute_matcher,
845                    GFileInfo             *info,
846                    const gchar           *path,
847                    GLocalFileStat        *statbuf,
848                    GLocalParentFileInfo  *parent_info)
849 {
850   /* FIXME: Windows: The underlyin _waccess() is mostly pointless */
851   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
852                                             G_FILE_ATTRIBUTE_ID_ACCESS_CAN_READ))
853     _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_READ,
854                                              g_access (path, R_OK) == 0);
855   
856   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
857                                             G_FILE_ATTRIBUTE_ID_ACCESS_CAN_WRITE))
858     _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_WRITE,
859                                              g_access (path, W_OK) == 0);
860   
861   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
862                                             G_FILE_ATTRIBUTE_ID_ACCESS_CAN_EXECUTE))
863     _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_EXECUTE,
864                                              g_access (path, X_OK) == 0);
865
866
867   if (parent_info)
868     {
869       gboolean writable;
870
871       writable = FALSE;
872       if (parent_info->writable)
873         {
874           if (parent_info->is_sticky)
875             {
876 #ifndef G_OS_WIN32
877               uid_t uid = geteuid ();
878
879               if (uid == statbuf->st_uid ||
880                   uid == parent_info->owner ||
881                   uid == 0)
882 #endif
883                 writable = TRUE;
884             }
885           else
886             writable = TRUE;
887         }
888
889       if (_g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_RENAME))
890         _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_RENAME,
891                                                  writable);
892       
893       if (_g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_DELETE))
894         _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_DELETE,
895                                                  writable);
896
897       if (_g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_TRASH))
898         _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_ACCESS_CAN_TRASH,
899                                                  writable && parent_info->has_trash_dir);
900     }
901 }
902
903 static void
904 set_info_from_stat (GFileInfo             *info, 
905                     GLocalFileStat        *statbuf,
906                     GFileAttributeMatcher *attribute_matcher)
907 {
908   GFileType file_type;
909
910   file_type = G_FILE_TYPE_UNKNOWN;
911
912   if (S_ISREG (statbuf->st_mode))
913     file_type = G_FILE_TYPE_REGULAR;
914   else if (S_ISDIR (statbuf->st_mode))
915     file_type = G_FILE_TYPE_DIRECTORY;
916 #ifndef G_OS_WIN32
917   else if (S_ISCHR (statbuf->st_mode) ||
918            S_ISBLK (statbuf->st_mode) ||
919            S_ISFIFO (statbuf->st_mode)
920 #ifdef S_ISSOCK
921            || S_ISSOCK (statbuf->st_mode)
922 #endif
923            )
924     file_type = G_FILE_TYPE_SPECIAL;
925 #endif
926 #ifdef S_ISLNK
927   else if (S_ISLNK (statbuf->st_mode))
928     file_type = G_FILE_TYPE_SYMBOLIC_LINK;
929 #endif
930
931   g_file_info_set_file_type (info, file_type);
932   g_file_info_set_size (info, statbuf->st_size);
933
934   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_DEVICE, statbuf->st_dev);
935 #ifndef G_OS_WIN32
936   /* Pointless setting these on Windows even if they exist in the struct */
937   _g_file_info_set_attribute_uint64_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_INODE, statbuf->st_ino);
938   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_NLINK, statbuf->st_nlink);
939   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_UID, statbuf->st_uid);
940   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_GID, statbuf->st_gid);
941   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_RDEV, statbuf->st_rdev);
942 #endif
943   /* FIXME: st_mode is mostly pointless on Windows, too. Set the attribute or not? */
944   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_MODE, statbuf->st_mode);
945 #if defined (HAVE_STRUCT_STAT_ST_BLKSIZE)
946   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_BLOCK_SIZE, statbuf->st_blksize);
947 #endif
948 #if defined (HAVE_STRUCT_STAT_ST_BLOCKS)
949   _g_file_info_set_attribute_uint64_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_BLOCKS, statbuf->st_blocks);
950   _g_file_info_set_attribute_uint64_by_id (info, G_FILE_ATTRIBUTE_ID_STANDARD_ALLOCATED_SIZE,
951                                           statbuf->st_blocks * G_GUINT64_CONSTANT (512));
952 #endif
953   
954   _g_file_info_set_attribute_uint64_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_MODIFIED, statbuf->st_mtime);
955 #if defined (HAVE_STRUCT_STAT_ST_MTIMENSEC)
956   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_MODIFIED_USEC, statbuf->st_mtimensec / 1000);
957 #elif defined (HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC)
958   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_MODIFIED_USEC, statbuf->st_mtim.tv_nsec / 1000);
959 #endif
960   
961   _g_file_info_set_attribute_uint64_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS, statbuf->st_atime);
962 #if defined (HAVE_STRUCT_STAT_ST_ATIMENSEC)
963   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS_USEC, statbuf->st_atimensec / 1000);
964 #elif defined (HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC)
965   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_ACCESS_USEC, statbuf->st_atim.tv_nsec / 1000);
966 #endif
967   
968   _g_file_info_set_attribute_uint64_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_CHANGED, statbuf->st_ctime);
969 #if defined (HAVE_STRUCT_STAT_ST_CTIMENSEC)
970   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_CHANGED_USEC, statbuf->st_ctimensec / 1000);
971 #elif defined (HAVE_STRUCT_STAT_ST_CTIM_TV_NSEC)
972   _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_TIME_CHANGED_USEC, statbuf->st_ctim.tv_nsec / 1000);
973 #endif
974
975   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
976                                             G_FILE_ATTRIBUTE_ID_ETAG_VALUE))
977     {
978       char *etag = _g_local_file_info_create_etag (statbuf);
979       _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_ETAG_VALUE, etag);
980       g_free (etag);
981     }
982
983   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
984                                             G_FILE_ATTRIBUTE_ID_ID_FILE))
985     {
986       char *id = _g_local_file_info_create_file_id (statbuf);
987       _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_ID_FILE, id);
988       g_free (id);
989     }
990
991   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
992                                             G_FILE_ATTRIBUTE_ID_ID_FILESYSTEM))
993     {
994       char *id = _g_local_file_info_create_fs_id (statbuf);
995       _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_ID_FILESYSTEM, id);
996       g_free (id);
997     }
998 }
999
1000 #ifndef G_OS_WIN32
1001
1002 static char *
1003 make_valid_utf8 (const char *name)
1004 {
1005   GString *string;
1006   const gchar *remainder, *invalid;
1007   gint remaining_bytes, valid_bytes;
1008   
1009   string = NULL;
1010   remainder = name;
1011   remaining_bytes = strlen (name);
1012   
1013   while (remaining_bytes != 0) 
1014     {
1015       if (g_utf8_validate (remainder, remaining_bytes, &invalid)) 
1016         break;
1017       valid_bytes = invalid - remainder;
1018     
1019       if (string == NULL) 
1020         string = g_string_sized_new (remaining_bytes);
1021
1022       g_string_append_len (string, remainder, valid_bytes);
1023       /* append U+FFFD REPLACEMENT CHARACTER */
1024       g_string_append (string, "\357\277\275");
1025       
1026       remaining_bytes -= valid_bytes + 1;
1027       remainder = invalid + 1;
1028     }
1029   
1030   if (string == NULL)
1031     return g_strdup (name);
1032   
1033   g_string_append (string, remainder);
1034
1035   g_warn_if_fail (g_utf8_validate (string->str, -1, NULL));
1036   
1037   return g_string_free (string, FALSE);
1038 }
1039
1040 static char *
1041 convert_pwd_string_to_utf8 (char *pwd_str)
1042 {
1043   char *utf8_string;
1044   
1045   if (!g_utf8_validate (pwd_str, -1, NULL))
1046     {
1047       utf8_string = g_locale_to_utf8 (pwd_str, -1, NULL, NULL, NULL);
1048       if (utf8_string == NULL)
1049         utf8_string = make_valid_utf8 (pwd_str);
1050     }
1051   else 
1052     utf8_string = g_strdup (pwd_str);
1053   
1054   return utf8_string;
1055 }
1056
1057 static void
1058 uid_data_free (UidData *data)
1059 {
1060   g_free (data->user_name);
1061   g_free (data->real_name);
1062   g_free (data);
1063 }
1064
1065 /* called with lock held */
1066 static UidData *
1067 lookup_uid_data (uid_t uid)
1068 {
1069   UidData *data;
1070   char buffer[4096];
1071   struct passwd pwbuf;
1072   struct passwd *pwbufp;
1073   char *gecos, *comma;
1074   
1075   if (uid_cache == NULL)
1076     uid_cache = g_hash_table_new_full (NULL, NULL, NULL, (GDestroyNotify)uid_data_free);
1077
1078   data = g_hash_table_lookup (uid_cache, GINT_TO_POINTER (uid));
1079
1080   if (data)
1081     return data;
1082
1083   data = g_new0 (UidData, 1);
1084
1085 #if defined(HAVE_POSIX_GETPWUID_R)
1086   getpwuid_r (uid, &pwbuf, buffer, sizeof(buffer), &pwbufp);
1087 #elif defined(HAVE_NONPOSIX_GETPWUID_R)
1088   pwbufp = getpwuid_r (uid, &pwbuf, buffer, sizeof(buffer));
1089 #else
1090   pwbufp = getpwuid (uid);
1091 #endif
1092
1093   if (pwbufp != NULL)
1094     {
1095       if (pwbufp->pw_name != NULL && pwbufp->pw_name[0] != 0)
1096         data->user_name = convert_pwd_string_to_utf8 (pwbufp->pw_name);
1097
1098       gecos = pwbufp->pw_gecos;
1099
1100       if (gecos)
1101         {
1102           comma = strchr (gecos, ',');
1103           if (comma)
1104             *comma = 0;
1105           data->real_name = convert_pwd_string_to_utf8 (gecos);
1106         }
1107     }
1108
1109   /* Default fallbacks */
1110   if (data->real_name == NULL)
1111     {
1112       if (data->user_name != NULL)
1113         data->real_name = g_strdup (data->user_name);
1114       else
1115         data->real_name = g_strdup_printf ("user #%d", (int)uid);
1116     }
1117   
1118   if (data->user_name == NULL)
1119     data->user_name = g_strdup_printf ("%d", (int)uid);
1120   
1121   g_hash_table_replace (uid_cache, GINT_TO_POINTER (uid), data);
1122   
1123   return data;
1124 }
1125
1126 static char *
1127 get_username_from_uid (uid_t uid)
1128 {
1129   char *res;
1130   UidData *data;
1131   
1132   G_LOCK (uid_cache);
1133   data = lookup_uid_data (uid);
1134   res = g_strdup (data->user_name);  
1135   G_UNLOCK (uid_cache);
1136
1137   return res;
1138 }
1139
1140 static char *
1141 get_realname_from_uid (uid_t uid)
1142 {
1143   char *res;
1144   UidData *data;
1145   
1146   G_LOCK (uid_cache);
1147   data = lookup_uid_data (uid);
1148   res = g_strdup (data->real_name);  
1149   G_UNLOCK (uid_cache);
1150   
1151   return res;
1152 }
1153
1154 /* called with lock held */
1155 static char *
1156 lookup_gid_name (gid_t gid)
1157 {
1158   char *name;
1159   char buffer[4096];
1160   struct group gbuf;
1161   struct group *gbufp;
1162   
1163   if (gid_cache == NULL)
1164     gid_cache = g_hash_table_new_full (NULL, NULL, NULL, (GDestroyNotify)g_free);
1165
1166   name = g_hash_table_lookup (gid_cache, GINT_TO_POINTER (gid));
1167
1168   if (name)
1169     return name;
1170
1171 #if defined (HAVE_POSIX_GETGRGID_R)
1172   getgrgid_r (gid, &gbuf, buffer, sizeof(buffer), &gbufp);
1173 #elif defined (HAVE_NONPOSIX_GETGRGID_R)
1174   gbufp = getgrgid_r (gid, &gbuf, buffer, sizeof(buffer));
1175 #else
1176   gbufp = getgrgid (gid);
1177 #endif
1178
1179   if (gbufp != NULL &&
1180       gbufp->gr_name != NULL &&
1181       gbufp->gr_name[0] != 0)
1182     name = convert_pwd_string_to_utf8 (gbufp->gr_name);
1183   else
1184     name = g_strdup_printf("%d", (int)gid);
1185   
1186   g_hash_table_replace (gid_cache, GINT_TO_POINTER (gid), name);
1187   
1188   return name;
1189 }
1190
1191 static char *
1192 get_groupname_from_gid (gid_t gid)
1193 {
1194   char *res;
1195   char *name;
1196   
1197   G_LOCK (gid_cache);
1198   name = lookup_gid_name (gid);
1199   res = g_strdup (name);  
1200   G_UNLOCK (gid_cache);
1201   return res;
1202 }
1203
1204 #endif /* !G_OS_WIN32 */
1205
1206 static char *
1207 get_content_type (const char          *basename,
1208                   const char          *path,
1209                   GLocalFileStat      *statbuf,
1210                   gboolean             is_symlink,
1211                   gboolean             symlink_broken,
1212                   GFileQueryInfoFlags  flags,
1213                   gboolean             fast)
1214 {
1215   if (is_symlink &&
1216       (symlink_broken || (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS)))
1217     return g_strdup ("inode/symlink");
1218   else if (statbuf != NULL && S_ISDIR(statbuf->st_mode))
1219     return g_strdup ("inode/directory");
1220 #ifndef G_OS_WIN32
1221   else if (statbuf != NULL && S_ISCHR(statbuf->st_mode))
1222     return g_strdup ("inode/chardevice");
1223   else if (statbuf != NULL && S_ISBLK(statbuf->st_mode))
1224     return g_strdup ("inode/blockdevice");
1225   else if (statbuf != NULL && S_ISFIFO(statbuf->st_mode))
1226     return g_strdup ("inode/fifo");
1227 #endif
1228 #ifdef S_ISSOCK
1229   else if (statbuf != NULL && S_ISSOCK(statbuf->st_mode))
1230     return g_strdup ("inode/socket");
1231 #endif
1232   else
1233     {
1234       char *content_type;
1235       gboolean result_uncertain;
1236       
1237       content_type = g_content_type_guess (basename, NULL, 0, &result_uncertain);
1238       
1239 #ifndef G_OS_WIN32
1240       if (!fast && result_uncertain && path != NULL)
1241         {
1242           guchar sniff_buffer[4096];
1243           gsize sniff_length;
1244           int fd;
1245
1246           sniff_length = _g_unix_content_type_get_sniff_len ();
1247           if (sniff_length > 4096)
1248             sniff_length = 4096;
1249
1250 #ifdef O_NOATIME          
1251           fd = open (path, O_RDONLY | O_NOATIME);
1252           if (fd < 0 && errno == EPERM)
1253 #endif
1254             fd = open (path, O_RDONLY);
1255
1256           if (fd != -1)
1257             {
1258               ssize_t res;
1259               
1260               res = read (fd, sniff_buffer, sniff_length);
1261               close (fd);
1262               if (res >= 0)
1263                 {
1264                   g_free (content_type);
1265                   content_type = g_content_type_guess (basename, sniff_buffer, res, NULL);
1266                 }
1267             }
1268         }
1269 #endif
1270       
1271       return content_type;
1272     }
1273   
1274 }
1275
1276 static void
1277 get_thumbnail_attributes (const char *path,
1278                           GFileInfo  *info)
1279 {
1280   GChecksum *checksum;
1281   char *uri;
1282   char *filename;
1283   char *basename;
1284
1285   uri = g_filename_to_uri (path, NULL, NULL);
1286
1287   checksum = g_checksum_new (G_CHECKSUM_MD5);
1288   g_checksum_update (checksum, (const guchar *) uri, strlen (uri));
1289   
1290   g_free (uri);
1291
1292   basename = g_strconcat (g_checksum_get_string (checksum), ".png", NULL);
1293   g_checksum_free (checksum);
1294
1295   filename = g_build_filename (g_get_home_dir (),
1296                                ".thumbnails", "normal", basename,
1297                                NULL);
1298
1299   if (g_file_test (filename, G_FILE_TEST_IS_REGULAR))
1300     _g_file_info_set_attribute_byte_string_by_id (info, G_FILE_ATTRIBUTE_ID_THUMBNAIL_PATH, filename);
1301   else
1302     {
1303       g_free (filename);
1304       filename = g_build_filename (g_get_home_dir (),
1305                                    ".thumbnails", "fail",
1306                                    "gnome-thumbnail-factory",
1307                                    basename,
1308                                    NULL);
1309
1310       if (g_file_test (filename, G_FILE_TEST_IS_REGULAR))
1311         _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_THUMBNAILING_FAILED, TRUE);
1312     }
1313   g_free (basename);
1314   g_free (filename);
1315 }
1316
1317 #ifdef G_OS_WIN32
1318 static void
1319 win32_get_file_user_info (const gchar  *filename,
1320                           gchar       **group_name, 
1321                           gchar       **user_name, 
1322                           gchar       **real_name)
1323 {
1324   PSECURITY_DESCRIPTOR psd = NULL;
1325   DWORD sd_size = 0; /* first call calculates the size required */
1326   
1327   wchar_t *wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, NULL);
1328   if ((GetFileSecurityW (wfilename, 
1329                         GROUP_SECURITY_INFORMATION | OWNER_SECURITY_INFORMATION,
1330                         NULL,
1331                         sd_size,
1332                         &sd_size) || (ERROR_INSUFFICIENT_BUFFER == GetLastError())) &&
1333      (psd = g_try_malloc (sd_size)) != NULL &&
1334      GetFileSecurityW (wfilename, 
1335                        GROUP_SECURITY_INFORMATION | OWNER_SECURITY_INFORMATION,
1336                        psd,
1337                        sd_size,
1338                        &sd_size))
1339     {
1340       PSID psid = 0;
1341       BOOL defaulted;
1342       SID_NAME_USE name_use = 0; /* don't care? */
1343       wchar_t *name = NULL;
1344       wchar_t *domain = NULL;
1345       DWORD name_len = 0;
1346       DWORD domain_len = 0;
1347       /* get the user name */
1348       do {
1349         if (!user_name)
1350           break;
1351         if (!GetSecurityDescriptorOwner (psd, &psid, &defaulted))
1352           break;
1353         if (!LookupAccountSidW (NULL, /* local machine */
1354                                 psid, 
1355                                 name, &name_len,
1356                                 domain, &domain_len, /* no domain info yet */
1357                                 &name_use)  && (ERROR_INSUFFICIENT_BUFFER != GetLastError()))
1358           break;
1359         name = g_try_malloc (name_len * sizeof (wchar_t));
1360         domain = g_try_malloc (domain_len * sizeof (wchar_t));
1361         if (name && domain &&
1362             LookupAccountSidW (NULL, /* local machine */
1363                                psid, 
1364                                name, &name_len,
1365                                domain, &domain_len, /* no domain info yet */
1366                                &name_use))
1367           {
1368             *user_name = g_utf16_to_utf8 (name, -1, NULL, NULL, NULL);
1369           }
1370         g_free (name);
1371         g_free (domain);
1372       } while (FALSE);
1373
1374       /* get the group name */
1375       do {
1376         if (!group_name)
1377           break;
1378         if (!GetSecurityDescriptorGroup (psd, &psid, &defaulted))
1379           break;
1380         if (!LookupAccountSidW (NULL, /* local machine */
1381                                 psid, 
1382                                 name, &name_len,
1383                                 domain, &domain_len, /* no domain info yet */
1384                                 &name_use)  && (ERROR_INSUFFICIENT_BUFFER != GetLastError()))
1385           break;
1386         name = g_try_malloc (name_len * sizeof (wchar_t));
1387         domain = g_try_malloc (domain_len * sizeof (wchar_t));
1388         if (name && domain &&
1389             LookupAccountSidW (NULL, /* local machine */
1390                                psid, 
1391                                name, &name_len,
1392                                domain, &domain_len, /* no domain info yet */
1393                                &name_use))
1394           {
1395             *group_name = g_utf16_to_utf8 (name, -1, NULL, NULL, NULL);
1396           }
1397         g_free (name);
1398         g_free (domain);
1399       } while (FALSE);
1400
1401       /* TODO: get real name */
1402
1403       g_free (psd);
1404     }
1405   g_free (wfilename);
1406 }
1407 #endif /* G_OS_WIN32 */
1408
1409 GFileInfo *
1410 _g_local_file_info_get (const char             *basename,
1411                         const char             *path,
1412                         GFileAttributeMatcher  *attribute_matcher,
1413                         GFileQueryInfoFlags     flags,
1414                         GLocalParentFileInfo   *parent_info,
1415                         GError                **error)
1416 {
1417   GFileInfo *info;
1418   GLocalFileStat statbuf;
1419 #ifdef S_ISLNK
1420   struct stat statbuf2;
1421 #endif
1422   int res;
1423   gboolean stat_ok;
1424   gboolean is_symlink, symlink_broken;
1425 #ifdef G_OS_WIN32
1426   DWORD dos_attributes;
1427 #endif
1428   char *symlink_target;
1429   GVfs *vfs;
1430   GVfsClass *class;
1431   guint64 device;
1432
1433   info = g_file_info_new ();
1434
1435   /* Make sure we don't set any unwanted attributes */
1436   g_file_info_set_attribute_mask (info, attribute_matcher);
1437   
1438   g_file_info_set_name (info, basename);
1439
1440   /* Avoid stat in trivial case */
1441   if (attribute_matcher == NULL)
1442     {
1443       g_file_info_unset_attribute_mask (info);
1444       return info;
1445     }
1446
1447 #ifndef G_OS_WIN32
1448   res = g_lstat (path, &statbuf);
1449 #else
1450   {
1451     wchar_t *wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, error);
1452     int len;
1453
1454     if (wpath == NULL)
1455       {
1456         g_object_unref (info);
1457         return NULL;
1458       }
1459
1460     len = wcslen (wpath);
1461     while (len > 0 && G_IS_DIR_SEPARATOR (wpath[len-1]))
1462       len--;
1463     if (len > 0 &&
1464         (!g_path_is_absolute (path) || len > g_path_skip_root (path) - path))
1465       wpath[len] = '\0';
1466
1467     res = _wstati64 (wpath, &statbuf);
1468     dos_attributes = GetFileAttributesW (wpath);
1469
1470     g_free (wpath);
1471   }
1472 #endif
1473
1474   if (res == -1)
1475     {
1476       int errsv = errno;
1477
1478       /* Don't bail out if we get Permission denied (SELinux?) */
1479       if (errsv != EACCES)
1480         {
1481           char *display_name = g_filename_display_name (path);
1482           g_object_unref (info);
1483           g_set_error (error, G_IO_ERROR,
1484                        g_io_error_from_errno (errsv),
1485                        _("Error when getting information for file '%s': %s"),
1486                        display_name, g_strerror (errsv));
1487           g_free (display_name);
1488           return NULL;
1489         }
1490     }
1491
1492   /* Even if stat() fails, try to get as much as other attributes possible */
1493   stat_ok = res != -1;
1494
1495   if (stat_ok)
1496     device = statbuf.st_dev;
1497   else
1498     device = 0;
1499
1500 #ifdef S_ISLNK
1501   is_symlink = stat_ok && S_ISLNK (statbuf.st_mode);
1502 #else
1503   is_symlink = FALSE;
1504 #endif
1505   symlink_broken = FALSE;
1506 #ifdef S_ISLNK
1507   if (is_symlink)
1508     {
1509       g_file_info_set_is_symlink (info, TRUE);
1510
1511       /* Unless NOFOLLOW was set we default to following symlinks */
1512       if (!(flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS))
1513         {
1514           res = stat (path, &statbuf2);
1515
1516           /* Report broken links as symlinks */
1517           if (res != -1)
1518             {
1519               statbuf = statbuf2;
1520               stat_ok = TRUE;
1521             }
1522           else
1523             symlink_broken = TRUE;
1524         }
1525     }
1526 #endif
1527
1528   if (stat_ok)
1529     set_info_from_stat (info, &statbuf, attribute_matcher);
1530
1531 #ifndef G_OS_WIN32
1532   if (basename != NULL && basename[0] == '.')
1533     g_file_info_set_is_hidden (info, TRUE);
1534
1535   if (basename != NULL && basename[strlen (basename) -1] == '~' &&
1536       (stat_ok && S_ISREG (statbuf.st_mode)))
1537     _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_STANDARD_IS_BACKUP, TRUE);
1538 #else
1539   if (dos_attributes & FILE_ATTRIBUTE_HIDDEN)
1540     g_file_info_set_is_hidden (info, TRUE);
1541
1542   if (dos_attributes & FILE_ATTRIBUTE_ARCHIVE)
1543     _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_DOS_IS_ARCHIVE, TRUE);
1544
1545   if (dos_attributes & FILE_ATTRIBUTE_SYSTEM)
1546     _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_DOS_IS_SYSTEM, TRUE);
1547 #endif
1548
1549   symlink_target = NULL;
1550 #ifdef S_ISLNK
1551   if (is_symlink)
1552     {
1553       symlink_target = read_link (path);
1554       if (symlink_target &&
1555           _g_file_attribute_matcher_matches_id (attribute_matcher,
1556                                                 G_FILE_ATTRIBUTE_ID_STANDARD_SYMLINK_TARGET))
1557         g_file_info_set_symlink_target (info, symlink_target);
1558     }
1559 #endif
1560   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1561                                             G_FILE_ATTRIBUTE_ID_STANDARD_DISPLAY_NAME))
1562     {
1563       char *display_name = g_filename_display_basename (path);
1564      
1565       /* look for U+FFFD REPLACEMENT CHARACTER */ 
1566       if (strstr (display_name, "\357\277\275") != NULL)
1567         {
1568           char *p = display_name;
1569           display_name = g_strconcat (display_name, _(" (invalid encoding)"), NULL);
1570           g_free (p);
1571         }
1572       g_file_info_set_display_name (info, display_name);
1573       g_free (display_name);
1574     }
1575   
1576   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1577                                             G_FILE_ATTRIBUTE_ID_STANDARD_EDIT_NAME))
1578     {
1579       char *edit_name = g_filename_display_basename (path);
1580       g_file_info_set_edit_name (info, edit_name);
1581       g_free (edit_name);
1582     }
1583
1584   
1585   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1586                                             G_FILE_ATTRIBUTE_ID_STANDARD_COPY_NAME))
1587     {
1588       char *copy_name = g_filename_to_utf8 (basename, -1, NULL, NULL, NULL);
1589       if (copy_name)
1590         _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_STANDARD_COPY_NAME, copy_name);
1591       g_free (copy_name);
1592     }
1593
1594   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1595                                             G_FILE_ATTRIBUTE_ID_STANDARD_CONTENT_TYPE) ||
1596       _g_file_attribute_matcher_matches_id (attribute_matcher,
1597                                             G_FILE_ATTRIBUTE_ID_STANDARD_ICON))
1598     {
1599       char *content_type = get_content_type (basename, path, stat_ok ? &statbuf : NULL, is_symlink, symlink_broken, flags, FALSE);
1600
1601       if (content_type)
1602         {
1603           g_file_info_set_content_type (info, content_type);
1604
1605           if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1606                                                     G_FILE_ATTRIBUTE_ID_STANDARD_ICON))
1607             {
1608               GIcon *icon;
1609
1610               if (strcmp (path, g_get_home_dir ()) == 0)
1611                 icon = g_themed_icon_new ("user-home");
1612               else if (strcmp (path, g_get_user_special_dir (G_USER_DIRECTORY_DESKTOP)) == 0)
1613                 icon = g_themed_icon_new ("user-desktop");
1614               else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_DOCUMENTS)) == 0)
1615                 icon = g_themed_icon_new_with_default_fallbacks ("folder-documents");
1616               else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_DOWNLOAD)) == 0)
1617                 icon = g_themed_icon_new_with_default_fallbacks ("folder-download");
1618               else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_MUSIC)) == 0)
1619                 icon = g_themed_icon_new_with_default_fallbacks ("folder-music");
1620               else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_PICTURES)) == 0)
1621                 icon = g_themed_icon_new_with_default_fallbacks ("folder-pictures");
1622               else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_PUBLIC_SHARE)) == 0)
1623                 icon = g_themed_icon_new_with_default_fallbacks ("folder-publicshare");
1624               else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_TEMPLATES)) == 0)
1625                 icon = g_themed_icon_new_with_default_fallbacks ("folder-templates");
1626               else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_VIDEOS)) == 0)
1627                 icon = g_themed_icon_new_with_default_fallbacks ("folder-videos");
1628               else
1629                 {
1630                   icon = g_content_type_get_icon (content_type);
1631                   if (G_IS_THEMED_ICON (icon))
1632                     {
1633                       const char *type_icon = NULL;
1634
1635                       if (S_ISDIR (statbuf.st_mode)) 
1636                         type_icon = "folder";
1637                       if (type_icon)
1638                         g_themed_icon_append_name (G_THEMED_ICON (icon), type_icon);
1639                     }
1640                 }
1641
1642               if (icon != NULL)
1643                 {
1644                   g_file_info_set_icon (info, icon);
1645                   g_object_unref (icon);
1646                 }
1647             }
1648           
1649           g_free (content_type);
1650         }
1651     }
1652
1653   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1654                                             G_FILE_ATTRIBUTE_ID_STANDARD_FAST_CONTENT_TYPE))
1655     {
1656       char *content_type = get_content_type (basename, path, stat_ok ? &statbuf : NULL, is_symlink, symlink_broken, flags, TRUE);
1657       
1658       if (content_type)
1659         {
1660           _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_STANDARD_FAST_CONTENT_TYPE, content_type);
1661           g_free (content_type);
1662         }
1663     }
1664
1665   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1666                                             G_FILE_ATTRIBUTE_ID_OWNER_USER))
1667     {
1668       char *name = NULL;
1669       
1670 #ifdef G_OS_WIN32
1671       win32_get_file_user_info (path, NULL, &name, NULL);
1672 #else
1673       if (stat_ok)
1674         name = get_username_from_uid (statbuf.st_uid);
1675 #endif
1676       if (name)
1677         _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_OWNER_USER, name);
1678       g_free (name);
1679     }
1680
1681   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1682                                             G_FILE_ATTRIBUTE_ID_OWNER_USER_REAL))
1683     {
1684       char *name = NULL;
1685 #ifdef G_OS_WIN32
1686       win32_get_file_user_info (path, NULL, NULL, &name);
1687 #else
1688       if (stat_ok)
1689         name = get_realname_from_uid (statbuf.st_uid);
1690 #endif
1691       if (name)
1692         _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_OWNER_USER_REAL, name);
1693       g_free (name);
1694     }
1695   
1696   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1697                                             G_FILE_ATTRIBUTE_ID_OWNER_GROUP))
1698     {
1699       char *name = NULL;
1700 #ifdef G_OS_WIN32
1701       win32_get_file_user_info (path, &name, NULL, NULL);
1702 #else
1703       if (stat_ok)
1704         name = get_groupname_from_gid (statbuf.st_gid);
1705 #endif
1706       if (name)
1707         _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_OWNER_GROUP, name);
1708       g_free (name);
1709     }
1710
1711   if (stat_ok && parent_info && parent_info->device != 0 &&
1712       _g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_UNIX_IS_MOUNTPOINT) &&
1713       statbuf.st_dev != parent_info->device) 
1714     _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_IS_MOUNTPOINT, TRUE);
1715   
1716   if (stat_ok)
1717     get_access_rights (attribute_matcher, info, path, &statbuf, parent_info);
1718   
1719 #ifdef HAVE_SELINUX
1720   get_selinux_context (path, info, attribute_matcher, (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) == 0);
1721 #endif
1722   get_xattrs (path, TRUE, info, attribute_matcher, (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) == 0);
1723   get_xattrs (path, FALSE, info, attribute_matcher, (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) == 0);
1724
1725   if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1726                                             G_FILE_ATTRIBUTE_ID_THUMBNAIL_PATH))
1727     get_thumbnail_attributes (path, info);
1728
1729   vfs = g_vfs_get_default ();
1730   class = G_VFS_GET_CLASS (vfs);
1731   if (class->local_file_add_info)
1732     {
1733       class->local_file_add_info (vfs,
1734                                   path,
1735                                   device,
1736                                   attribute_matcher,
1737                                   info,
1738                                   NULL,
1739                                   &parent_info->extra_data,
1740                                   &parent_info->free_extra_data);
1741     }
1742
1743   g_file_info_unset_attribute_mask (info);
1744
1745   g_free (symlink_target);
1746
1747   return info;
1748 }
1749
1750 GFileInfo *
1751 _g_local_file_info_get_from_fd (int         fd,
1752                                 const char *attributes,
1753                                 GError    **error)
1754 {
1755   GLocalFileStat stat_buf;
1756   GFileAttributeMatcher *matcher;
1757   GFileInfo *info;
1758   
1759 #ifdef G_OS_WIN32
1760 #define FSTAT _fstati64
1761 #else
1762 #define FSTAT fstat
1763 #endif
1764
1765   if (FSTAT (fd, &stat_buf) == -1)
1766     {
1767       int errsv = errno;
1768
1769       g_set_error (error, G_IO_ERROR,
1770                    g_io_error_from_errno (errsv),
1771                    _("Error when getting information for file descriptor: %s"),
1772                    g_strerror (errsv));
1773       return NULL;
1774     }
1775
1776   info = g_file_info_new ();
1777
1778   matcher = g_file_attribute_matcher_new (attributes);
1779
1780   /* Make sure we don't set any unwanted attributes */
1781   g_file_info_set_attribute_mask (info, matcher);
1782   
1783   set_info_from_stat (info, &stat_buf, matcher);
1784   
1785 #ifdef HAVE_SELINUX
1786   if (_g_file_attribute_matcher_matches_id (matcher, G_FILE_ATTRIBUTE_ID_SELINUX_CONTEXT) &&
1787       is_selinux_enabled ())
1788     {
1789       char *context;
1790       if (fgetfilecon_raw (fd, &context) >= 0)
1791         {
1792           _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_SELINUX_CONTEXT, context);
1793           freecon (context);
1794         }
1795     }
1796 #endif
1797
1798   get_xattrs_from_fd (fd, TRUE, info, matcher);
1799   get_xattrs_from_fd (fd, FALSE, info, matcher);
1800   
1801   g_file_attribute_matcher_unref (matcher);
1802
1803   g_file_info_unset_attribute_mask (info);
1804   
1805   return info;
1806 }
1807
1808 static gboolean
1809 get_uint32 (const GFileAttributeValue  *value,
1810             guint32                    *val_out,
1811             GError                    **error)
1812 {
1813   if (value->type != G_FILE_ATTRIBUTE_TYPE_UINT32)
1814     {
1815       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1816                            _("Invalid attribute type (uint32 expected)"));
1817       return FALSE;
1818     }
1819
1820   *val_out = value->u.uint32;
1821   
1822   return TRUE;
1823 }
1824
1825 #ifdef HAVE_UTIMES
1826 static gboolean
1827 get_uint64 (const GFileAttributeValue  *value,
1828             guint64                    *val_out,
1829             GError                    **error)
1830 {
1831   if (value->type != G_FILE_ATTRIBUTE_TYPE_UINT64)
1832     {
1833       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1834                            _("Invalid attribute type (uint64 expected)"));
1835       return FALSE;
1836     }
1837
1838   *val_out = value->u.uint64;
1839   
1840   return TRUE;
1841 }
1842 #endif
1843
1844 #if defined(HAVE_SYMLINK)
1845 static gboolean
1846 get_byte_string (const GFileAttributeValue  *value,
1847                  const char                **val_out,
1848                  GError                    **error)
1849 {
1850   if (value->type != G_FILE_ATTRIBUTE_TYPE_BYTE_STRING)
1851     {
1852       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1853                            _("Invalid attribute type (byte string expected)"));
1854       return FALSE;
1855     }
1856
1857   *val_out = value->u.string;
1858   
1859   return TRUE;
1860 }
1861 #endif
1862
1863 #ifdef HAVE_SELINUX
1864 static gboolean
1865 get_string (const GFileAttributeValue  *value,
1866             const char                **val_out,
1867             GError                    **error)
1868 {
1869   if (value->type != G_FILE_ATTRIBUTE_TYPE_STRING)
1870     {
1871       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1872                            _("Invalid attribute type (byte string expected)"));
1873       return FALSE;
1874     }
1875
1876   *val_out = value->u.string;
1877   
1878   return TRUE;
1879 }
1880 #endif
1881
1882 static gboolean
1883 set_unix_mode (char                       *filename,
1884                GFileQueryInfoFlags         flags,
1885                const GFileAttributeValue  *value,
1886                GError                    **error)
1887 {
1888   guint32 val = 0;
1889   int res = 0;
1890   
1891   if (!get_uint32 (value, &val, error))
1892     return FALSE;
1893
1894 #ifdef HAVE_SYMLINK
1895   if (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) {
1896 #ifdef HAVE_LCHMOD
1897     res = lchmod (filename, val);
1898 #else
1899     struct stat statbuf;
1900     /* Calling chmod on a symlink changes permissions on the symlink.
1901      * We don't want to do this, so we need to check for a symlink */
1902     res = g_lstat (filename, &statbuf);
1903     if (res == 0 && S_ISLNK (statbuf.st_mode))
1904       {
1905         g_set_error_literal (error, G_IO_ERROR,
1906                              G_IO_ERROR_NOT_SUPPORTED,
1907                              _("Cannot set permissions on symlinks"));
1908         return FALSE;
1909       }
1910     else if (res == 0)
1911       res = g_chmod (filename, val);
1912 #endif
1913   } else
1914 #endif
1915     res = g_chmod (filename, val);
1916
1917   if (res == -1)
1918     {
1919       int errsv = errno;
1920
1921       g_set_error (error, G_IO_ERROR,
1922                    g_io_error_from_errno (errsv),
1923                    _("Error setting permissions: %s"),
1924                    g_strerror (errsv));
1925       return FALSE;
1926     }
1927   return TRUE;
1928 }
1929
1930 #ifdef HAVE_CHOWN
1931 static gboolean
1932 set_unix_uid_gid (char                       *filename,
1933                   const GFileAttributeValue  *uid_value,
1934                   const GFileAttributeValue  *gid_value,
1935                   GFileQueryInfoFlags         flags,
1936                   GError                    **error)
1937 {
1938   int res;
1939   guint32 val = 0;
1940   uid_t uid;
1941   gid_t gid;
1942   
1943   if (uid_value)
1944     {
1945       if (!get_uint32 (uid_value, &val, error))
1946         return FALSE;
1947       uid = val;
1948     }
1949   else
1950     uid = -1;
1951   
1952   if (gid_value)
1953     {
1954       if (!get_uint32 (gid_value, &val, error))
1955         return FALSE;
1956       gid = val;
1957     }
1958   else
1959     gid = -1;
1960   
1961 #ifdef HAVE_LCHOWN
1962   if (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS)
1963     res = lchown (filename, uid, gid);
1964   else
1965 #endif
1966     res = chown (filename, uid, gid);
1967   
1968   if (res == -1)
1969     {
1970       int errsv = errno;
1971
1972       g_set_error (error, G_IO_ERROR,
1973                    g_io_error_from_errno (errsv),
1974                    _("Error setting owner: %s"),
1975                    g_strerror (errsv));
1976           return FALSE;
1977     }
1978   return TRUE;
1979 }
1980 #endif
1981
1982 #ifdef HAVE_SYMLINK
1983 static gboolean
1984 set_symlink (char                       *filename,
1985              const GFileAttributeValue  *value,
1986              GError                    **error)
1987 {
1988   const char *val;
1989   struct stat statbuf;
1990   
1991   if (!get_byte_string (value, &val, error))
1992     return FALSE;
1993   
1994   if (val == NULL)
1995     {
1996       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1997                            _("symlink must be non-NULL"));
1998       return FALSE;
1999     }
2000   
2001   if (g_lstat (filename, &statbuf))
2002     {
2003       int errsv = errno;
2004
2005       g_set_error (error, G_IO_ERROR,
2006                    g_io_error_from_errno (errsv),
2007                    _("Error setting symlink: %s"),
2008                    g_strerror (errsv));
2009       return FALSE;
2010     }
2011   
2012   if (!S_ISLNK (statbuf.st_mode))
2013     {
2014       g_set_error_literal (error, G_IO_ERROR,
2015                            G_IO_ERROR_NOT_SYMBOLIC_LINK,
2016                            _("Error setting symlink: file is not a symlink"));
2017       return FALSE;
2018     }
2019   
2020   if (g_unlink (filename))
2021     {
2022       int errsv = errno;
2023
2024       g_set_error (error, G_IO_ERROR,
2025                    g_io_error_from_errno (errsv),
2026                    _("Error setting symlink: %s"),
2027                    g_strerror (errsv));
2028       return FALSE;
2029     }
2030   
2031   if (symlink (filename, val) != 0)
2032     {
2033       int errsv = errno;
2034
2035       g_set_error (error, G_IO_ERROR,
2036                    g_io_error_from_errno (errsv),
2037                    _("Error setting symlink: %s"),
2038                    g_strerror (errsv));
2039       return FALSE;
2040     }
2041   
2042   return TRUE;
2043 }
2044 #endif
2045
2046 #ifdef HAVE_UTIMES
2047 static int
2048 lazy_stat (char        *filename, 
2049            struct stat *statbuf, 
2050            gboolean    *called_stat)
2051 {
2052   int res;
2053
2054   if (*called_stat)
2055     return 0;
2056   
2057   res = g_stat (filename, statbuf);
2058   
2059   if (res == 0)
2060     *called_stat = TRUE;
2061   
2062   return res;
2063 }
2064
2065
2066 static gboolean
2067 set_mtime_atime (char                       *filename,
2068                  const GFileAttributeValue  *mtime_value,
2069                  const GFileAttributeValue  *mtime_usec_value,
2070                  const GFileAttributeValue  *atime_value,
2071                  const GFileAttributeValue  *atime_usec_value,
2072                  GError                    **error)
2073 {
2074   int res;
2075   guint64 val = 0;
2076   guint32 val_usec = 0;
2077   struct stat statbuf;
2078   gboolean got_stat = FALSE;
2079   struct timeval times[2] = { {0, 0}, {0, 0} };
2080
2081   /* ATIME */
2082   if (atime_value)
2083     {
2084       if (!get_uint64 (atime_value, &val, error))
2085         return FALSE;
2086       times[0].tv_sec = val;
2087     }
2088   else
2089     {
2090       if (lazy_stat (filename, &statbuf, &got_stat) == 0)
2091         {
2092           times[0].tv_sec = statbuf.st_mtime;
2093 #if defined (HAVE_STRUCT_STAT_ST_ATIMENSEC)
2094           times[0].tv_usec = statbuf.st_atimensec / 1000;
2095 #elif defined (HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC)
2096           times[0].tv_usec = statbuf.st_atim.tv_nsec / 1000;
2097 #endif
2098         }
2099     }
2100   
2101   if (atime_usec_value)
2102     {
2103       if (!get_uint32 (atime_usec_value, &val_usec, error))
2104         return FALSE;
2105       times[0].tv_usec = val_usec;
2106     }
2107
2108   /* MTIME */
2109   if (mtime_value)
2110     {
2111       if (!get_uint64 (mtime_value, &val, error))
2112         return FALSE;
2113       times[1].tv_sec = val;
2114     }
2115   else
2116     {
2117       if (lazy_stat (filename, &statbuf, &got_stat) == 0)
2118         {
2119           times[1].tv_sec = statbuf.st_mtime;
2120 #if defined (HAVE_STRUCT_STAT_ST_MTIMENSEC)
2121           times[1].tv_usec = statbuf.st_mtimensec / 1000;
2122 #elif defined (HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC)
2123           times[1].tv_usec = statbuf.st_mtim.tv_nsec / 1000;
2124 #endif
2125         }
2126     }
2127   
2128   if (mtime_usec_value)
2129     {
2130       if (!get_uint32 (mtime_usec_value, &val_usec, error))
2131         return FALSE;
2132       times[1].tv_usec = val_usec;
2133     }
2134   
2135   res = utimes (filename, times);
2136   if (res == -1)
2137     {
2138       int errsv = errno;
2139
2140       g_set_error (error, G_IO_ERROR,
2141                    g_io_error_from_errno (errsv),
2142                    _("Error setting modification or access time: %s"),
2143                    g_strerror (errsv));
2144           return FALSE;
2145     }
2146   return TRUE;
2147 }
2148 #endif
2149
2150
2151 #ifdef HAVE_SELINUX
2152 static gboolean
2153 set_selinux_context (char                       *filename,
2154                  const GFileAttributeValue  *value,
2155                  GError                    **error)
2156 {
2157   const char *val;
2158
2159   if (!get_string (value, &val, error))
2160     return FALSE;
2161
2162   if (val == NULL)
2163   {
2164     g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
2165                          _("SELinux context must be non-NULL"));
2166     return FALSE;
2167   }
2168
2169   if (is_selinux_enabled ()) {
2170         security_context_t val_s;
2171         
2172         val_s = g_strdup (val);
2173         
2174         if (setfilecon_raw (filename, val_s) < 0)
2175         {
2176             int errsv = errno;
2177             
2178             g_set_error (error, G_IO_ERROR,
2179                          g_io_error_from_errno (errsv),
2180                         _("Error setting SELinux context: %s"),
2181                          g_strerror (errsv));
2182             return FALSE;
2183         }
2184         g_free (val_s);
2185   } else {
2186     g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
2187                          _("SELinux is not enabled on this system"));
2188     return FALSE;
2189   }
2190                                                      
2191   return TRUE;
2192 }
2193 #endif 
2194
2195
2196 gboolean
2197 _g_local_file_info_set_attribute (char                 *filename,
2198                                   const char           *attribute,
2199                                   GFileAttributeType    type,
2200                                   gpointer              value_p,
2201                                   GFileQueryInfoFlags   flags,
2202                                   GCancellable         *cancellable,
2203                                   GError              **error)
2204 {
2205   GFileAttributeValue value = { 0 };
2206   GVfsClass *class;
2207   GVfs *vfs;
2208
2209   _g_file_attribute_value_set_from_pointer (&value, type, value_p, FALSE);
2210   
2211   if (strcmp (attribute, G_FILE_ATTRIBUTE_UNIX_MODE) == 0)
2212     return set_unix_mode (filename, flags, &value, error);
2213   
2214 #ifdef HAVE_CHOWN
2215   else if (strcmp (attribute, G_FILE_ATTRIBUTE_UNIX_UID) == 0)
2216     return set_unix_uid_gid (filename, &value, NULL, flags, error);
2217   else if (strcmp (attribute, G_FILE_ATTRIBUTE_UNIX_GID) == 0)
2218     return set_unix_uid_gid (filename, NULL, &value, flags, error);
2219 #endif
2220   
2221 #ifdef HAVE_SYMLINK
2222   else if (strcmp (attribute, G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET) == 0)
2223     return set_symlink (filename, &value, error);
2224 #endif
2225
2226 #ifdef HAVE_UTIMES
2227   else if (strcmp (attribute, G_FILE_ATTRIBUTE_TIME_MODIFIED) == 0)
2228     return set_mtime_atime (filename, &value, NULL, NULL, NULL, error);
2229   else if (strcmp (attribute, G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC) == 0)
2230     return set_mtime_atime (filename, NULL, &value, NULL, NULL, error);
2231   else if (strcmp (attribute, G_FILE_ATTRIBUTE_TIME_ACCESS) == 0)
2232     return set_mtime_atime (filename, NULL, NULL, &value, NULL, error);
2233   else if (strcmp (attribute, G_FILE_ATTRIBUTE_TIME_ACCESS_USEC) == 0)
2234     return set_mtime_atime (filename, NULL, NULL, NULL, &value, error);
2235 #endif
2236
2237 #ifdef HAVE_XATTR
2238   else if (g_str_has_prefix (attribute, "xattr::"))
2239     return set_xattr (filename, attribute, &value, error);
2240   else if (g_str_has_prefix (attribute, "xattr-sys::"))
2241     return set_xattr (filename, attribute, &value, error);
2242 #endif
2243
2244 #ifdef HAVE_SELINUX 
2245   else if (strcmp (attribute, G_FILE_ATTRIBUTE_SELINUX_CONTEXT) == 0)
2246     return set_selinux_context (filename, &value, error);
2247 #endif
2248
2249   vfs = g_vfs_get_default ();
2250   class = G_VFS_GET_CLASS (vfs);
2251   if (class->local_file_set_attributes)
2252     {
2253       GFileInfo *info;
2254
2255       info = g_file_info_new ();
2256       g_file_info_set_attribute (info,
2257                                  attribute,
2258                                  type,
2259                                  value_p);
2260       if (!class->local_file_set_attributes (vfs, filename,
2261                                              info,
2262                                              flags, cancellable,
2263                                              error))
2264         {
2265           g_object_unref (info);
2266           return FALSE;
2267         }
2268
2269       if (g_file_info_get_attribute_status (info, attribute) == G_FILE_ATTRIBUTE_STATUS_SET)
2270         {
2271           g_object_unref (info);
2272           return TRUE;
2273         }
2274
2275       g_object_unref (info);
2276     }
2277
2278   g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
2279                _("Setting attribute %s not supported"), attribute);
2280   return FALSE;
2281 }
2282
2283 gboolean
2284 _g_local_file_info_set_attributes  (char                 *filename,
2285                                     GFileInfo            *info,
2286                                     GFileQueryInfoFlags   flags,
2287                                     GCancellable         *cancellable,
2288                                     GError              **error)
2289 {
2290   GFileAttributeValue *value;
2291 #ifdef HAVE_CHOWN
2292   GFileAttributeValue *uid, *gid;
2293 #endif
2294 #ifdef HAVE_UTIMES
2295   GFileAttributeValue *mtime, *mtime_usec, *atime, *atime_usec;
2296 #endif
2297 #if defined (HAVE_CHOWN) || defined (HAVE_UTIMES)
2298   GFileAttributeStatus status;
2299 #endif
2300   gboolean res;
2301   GVfsClass *class;
2302   GVfs *vfs;
2303   
2304   /* Handles setting multiple specified data in a single set, and takes care
2305      of ordering restrictions when setting attributes */
2306
2307   res = TRUE;
2308
2309   /* Set symlink first, since this recreates the file */
2310 #ifdef HAVE_SYMLINK
2311   value = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET);
2312   if (value)
2313     {
2314       if (!set_symlink (filename, value, error))
2315         {
2316           value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2317           res = FALSE;
2318           /* Don't set error multiple times */
2319           error = NULL;
2320         }
2321       else
2322         value->status = G_FILE_ATTRIBUTE_STATUS_SET;
2323         
2324     }
2325 #endif
2326
2327 #ifdef HAVE_CHOWN
2328   /* Group uid and gid setting into one call
2329    * Change ownership before permissions, since ownership changes can
2330      change permissions (e.g. setuid)
2331    */
2332   uid = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_UNIX_UID);
2333   gid = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_UNIX_GID);
2334   
2335   if (uid || gid)
2336     {
2337       if (!set_unix_uid_gid (filename, uid, gid, flags, error))
2338         {
2339           status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2340           res = FALSE;
2341           /* Don't set error multiple times */
2342           error = NULL;
2343         }
2344       else
2345         status = G_FILE_ATTRIBUTE_STATUS_SET;
2346       if (uid)
2347         uid->status = status;
2348       if (gid)
2349         gid->status = status;
2350     }
2351 #endif
2352   
2353   value = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_UNIX_MODE);
2354   if (value)
2355     {
2356       if (!set_unix_mode (filename, flags, value, error))
2357         {
2358           value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2359           res = FALSE;
2360           /* Don't set error multiple times */
2361           error = NULL;
2362         }
2363       else
2364         value->status = G_FILE_ATTRIBUTE_STATUS_SET;
2365         
2366     }
2367
2368 #ifdef HAVE_UTIMES
2369   /* Group all time settings into one call
2370    * Change times as the last thing to avoid it changing due to metadata changes
2371    */
2372   
2373   mtime = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_TIME_MODIFIED);
2374   mtime_usec = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC);
2375   atime = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_TIME_ACCESS);
2376   atime_usec = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_TIME_ACCESS_USEC);
2377
2378   if (mtime || mtime_usec || atime || atime_usec)
2379     {
2380       if (!set_mtime_atime (filename, mtime, mtime_usec, atime, atime_usec, error))
2381         {
2382           status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2383           res = FALSE;
2384           /* Don't set error multiple times */
2385           error = NULL;
2386         }
2387       else
2388         status = G_FILE_ATTRIBUTE_STATUS_SET;
2389       
2390       if (mtime)
2391         mtime->status = status;
2392       if (mtime_usec)
2393         mtime_usec->status = status;
2394       if (atime)
2395         atime->status = status;
2396       if (atime_usec)
2397         atime_usec->status = status;
2398     }
2399 #endif
2400
2401   /* xattrs are handled by default callback */
2402
2403
2404   /*  SELinux context */
2405 #ifdef HAVE_SELINUX 
2406   if (is_selinux_enabled ()) {
2407     value = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_SELINUX_CONTEXT);
2408     if (value)
2409     {
2410       if (!set_selinux_context (filename, value, error))
2411         {
2412           value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2413           res = FALSE;
2414           /* Don't set error multiple times */
2415           error = NULL;
2416         }
2417       else
2418         value->status = G_FILE_ATTRIBUTE_STATUS_SET;
2419     }
2420   }
2421 #endif
2422
2423   vfs = g_vfs_get_default ();
2424   class = G_VFS_GET_CLASS (vfs);
2425   if (class->local_file_set_attributes)
2426     {
2427       if (!class->local_file_set_attributes (vfs, filename,
2428                                              info,
2429                                              flags, cancellable,
2430                                              error))
2431         {
2432           res = FALSE;
2433           /* Don't set error multiple times */
2434           error = NULL;
2435         }
2436     }
2437
2438   return res;
2439 }