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