1 /* -*- mode: C; c-file-style: "gnu"; indent-tabs-mode: nil; -*- */
3 /* GIO - GLib Input, Output and Streaming Library
5 * Copyright (C) 2006-2007 Red Hat, Inc.
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.
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.
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.
22 * Author: Alexander Larsson <alexl@redhat.com>
27 #ifdef HAVE_SYS_TIME_H
30 #include <sys/types.h>
45 #include <selinux/selinux.h>
50 #if defined HAVE_SYS_XATTR_H
51 #include <sys/xattr.h>
52 #elif defined HAVE_ATTR_XATTR_H
53 #include <attr/xattr.h>
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 */
58 #endif /* HAVE_XATTR */
60 #include <glib/gstdio.h>
61 #include <gfileattribute-priv.h>
62 #include <gfileinfo-priv.h>
77 #define X_OK 0 /* not really */
80 #define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
83 #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
86 #define S_IXUSR _S_IEXEC
90 #include "glocalfileinfo.h"
92 #include "gthemedicon.h"
93 #include "gcontenttype.h"
94 #include "gcontenttypeprivate.h"
97 struct ThumbMD5Context {
100 unsigned char in[64];
110 G_LOCK_DEFINE_STATIC (uid_cache);
111 static GHashTable *uid_cache = NULL;
113 G_LOCK_DEFINE_STATIC (gid_cache);
114 static GHashTable *gid_cache = NULL;
116 #endif /* !G_OS_WIN32 */
119 _g_local_file_info_create_etag (GLocalFileStat *statbuf)
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;
132 return g_strdup_printf ("%lu:%lu", sec, usec);
136 _g_local_file_info_create_file_id (GLocalFileStat *statbuf)
138 return g_strdup_printf ("l%" G_GUINT64_FORMAT ":%" G_GUINT64_FORMAT,
139 (guint64) statbuf->st_dev,
140 (guint64) statbuf->st_ino);
144 _g_local_file_info_create_fs_id (GLocalFileStat *statbuf)
146 return g_strdup_printf ("l%" G_GUINT64_FORMAT,
147 (guint64) statbuf->st_dev);
154 read_link (const gchar *full_name)
161 buffer = g_malloc (size);
167 read_size = readlink (full_name, buffer, size);
173 if (read_size < size)
175 buffer[read_size] = 0;
179 buffer = g_realloc (buffer, size);
189 /* Get the SELinux security context */
191 get_selinux_context (const char *path,
193 GFileAttributeMatcher *attribute_matcher,
194 gboolean follow_symlinks)
198 if (!_g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_SELINUX_CONTEXT))
201 if (is_selinux_enabled ())
205 if (lgetfilecon_raw (path, &context) < 0)
210 if (getfilecon_raw (path, &context) < 0)
216 _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_SELINUX_CONTEXT, context);
225 /* Wrappers to hide away differences between (Linux) getxattr/lgetxattr and
226 * (Mac) getxattr(..., XATTR_NOFOLLOW)
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)
233 #define g_fgetxattr fgetxattr
234 #define g_flistxattr flistxattr
235 #define g_setxattr(path,name,value,size) setxattr(path,name,value,size,0)
239 g_getxattr (const char *path, const char *name, void *value, size_t size,
240 gboolean follow_symlinks)
242 #ifdef HAVE_XATTR_NOFOLLOW
243 return getxattr (path, name, value, size, 0, follow_symlinks ? 0 : XATTR_NOFOLLOW);
246 return getxattr (path, name, value, size);
248 return lgetxattr (path, name, value, size);
253 g_listxattr(const char *path, char *namebuf, size_t size,
254 gboolean follow_symlinks)
256 #ifdef HAVE_XATTR_NOFOLLOW
257 return listxattr (path, namebuf, size, follow_symlinks ? 0 : XATTR_NOFOLLOW);
260 return listxattr (path, namebuf, size);
262 return llistxattr (path, namebuf, size);
269 return c >= 32 && c <= 126 && c != '\\';
273 name_is_valid (const char *str)
277 if (!valid_char (*str++))
284 hex_escape_string (const char *str,
285 gboolean *free_return)
288 char *escaped_str, *p;
290 static char *hex_digits = "0123456789abcdef";
296 for (i = 0; i < len; i++)
298 if (!valid_char (str[i]))
302 if (num_invalid == 0)
304 *free_return = FALSE;
308 escaped_str = g_malloc (len + num_invalid*3 + 1);
311 for (i = 0; i < len; i++)
313 if (valid_char (str[i]))
320 *p++ = hex_digits[(c >> 4) & 0xf];
321 *p++ = hex_digits[c & 0xf];
331 hex_unescape_string (const char *str,
333 gboolean *free_return)
336 char *unescaped_str, *p;
342 if (strchr (str, '\\') == NULL)
346 *free_return = FALSE;
350 unescaped_str = g_malloc (len + 1);
353 for (i = 0; i < len; i++)
355 if (str[i] == '\\' &&
360 (g_ascii_xdigit_value (str[i+2]) << 4) |
361 g_ascii_xdigit_value (str[i+3]);
371 *out_len = p - unescaped_str;
373 return unescaped_str;
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 */)
383 gboolean free_escaped_val;
385 escaped_val = hex_escape_string (value, &free_escaped_val);
387 g_file_info_set_attribute_string (info, gio_attr, escaped_val);
389 if (free_escaped_val)
390 g_free (escaped_val);
394 get_one_xattr (const char *path,
396 const char *gio_attr,
398 gboolean follow_symlinks)
404 len = g_getxattr (path, xattr, value, sizeof (value)-1, follow_symlinks);
409 else if (len == -1 && errno == ERANGE)
411 len = g_getxattr (path, xattr, NULL, 0, follow_symlinks);
416 value_p = g_malloc (len+1);
418 len = g_getxattr (path, xattr, value_p, len, follow_symlinks);
432 escape_xattr (info, gio_attr, value_p, len);
434 if (value_p != value)
438 #endif /* defined HAVE_XATTR */
441 get_xattrs (const char *path,
444 GFileAttributeMatcher *matcher,
445 gboolean follow_symlinks)
450 ssize_t list_res_size;
453 const char *attr, *attr2;
456 all = g_file_attribute_matcher_enumerate_namespace (matcher, "xattr");
458 all = g_file_attribute_matcher_enumerate_namespace (matcher, "xattr-sys");
462 list_res_size = g_listxattr (path, NULL, 0, follow_symlinks);
464 if (list_res_size == -1 ||
468 list_size = list_res_size;
469 list = g_malloc (list_size);
473 list_res_size = g_listxattr (path, list, list_size, follow_symlinks);
475 if (list_res_size == -1 && errno == ERANGE)
477 list_size = list_size * 2;
478 list = g_realloc (list, list_size);
482 if (list_res_size == -1)
486 while (list_res_size > 0)
488 if ((user && g_str_has_prefix (attr, "user.")) ||
489 (!user && !g_str_has_prefix (attr, "user.")))
491 char *escaped_attr, *gio_attr;
492 gboolean free_escaped_attr;
496 escaped_attr = hex_escape_string (attr + 5, &free_escaped_attr);
497 gio_attr = g_strconcat ("xattr::", escaped_attr, NULL);
501 escaped_attr = hex_escape_string (attr, &free_escaped_attr);
502 gio_attr = g_strconcat ("xattr-sys::", escaped_attr, NULL);
505 if (free_escaped_attr)
506 g_free (escaped_attr);
508 get_one_xattr (path, info, gio_attr, attr, follow_symlinks);
513 len = strlen (attr) + 1;
515 list_res_size -= len;
522 while ((attr = g_file_attribute_matcher_enumerate_next (matcher)) != NULL)
524 char *unescaped_attribute, *a;
525 gboolean free_unescaped_attribute;
527 attr2 = strchr (attr, ':');
530 attr2 += 2; /* Skip '::' */
531 unescaped_attribute = hex_unescape_string (attr2, NULL, &free_unescaped_attribute);
533 a = g_strconcat ("user.", unescaped_attribute, NULL);
535 a = unescaped_attribute;
537 get_one_xattr (path, info, attr, a, follow_symlinks);
542 if (free_unescaped_attribute)
543 g_free (unescaped_attribute);
547 #endif /* defined HAVE_XATTR */
552 get_one_xattr_from_fd (int fd,
554 const char *gio_attr,
561 len = g_fgetxattr (fd, xattr, value, sizeof (value) - 1);
566 else if (len == -1 && errno == ERANGE)
568 len = g_fgetxattr (fd, xattr, NULL, 0);
573 value_p = g_malloc (len + 1);
575 len = g_fgetxattr (fd, xattr, value_p, len);
589 escape_xattr (info, gio_attr, value_p, len);
591 if (value_p != value)
594 #endif /* defined HAVE_XATTR */
597 get_xattrs_from_fd (int fd,
600 GFileAttributeMatcher *matcher)
605 ssize_t list_res_size;
608 const char *attr, *attr2;
611 all = g_file_attribute_matcher_enumerate_namespace (matcher, "xattr");
613 all = g_file_attribute_matcher_enumerate_namespace (matcher, "xattr-sys");
617 list_res_size = g_flistxattr (fd, NULL, 0);
619 if (list_res_size == -1 ||
623 list_size = list_res_size;
624 list = g_malloc (list_size);
628 list_res_size = g_flistxattr (fd, list, list_size);
630 if (list_res_size == -1 && errno == ERANGE)
632 list_size = list_size * 2;
633 list = g_realloc (list, list_size);
637 if (list_res_size == -1)
641 while (list_res_size > 0)
643 if ((user && g_str_has_prefix (attr, "user.")) ||
644 (!user && !g_str_has_prefix (attr, "user.")))
646 char *escaped_attr, *gio_attr;
647 gboolean free_escaped_attr;
651 escaped_attr = hex_escape_string (attr + 5, &free_escaped_attr);
652 gio_attr = g_strconcat ("xattr::", escaped_attr, NULL);
656 escaped_attr = hex_escape_string (attr, &free_escaped_attr);
657 gio_attr = g_strconcat ("xattr-sys::", escaped_attr, NULL);
660 if (free_escaped_attr)
661 g_free (escaped_attr);
663 get_one_xattr_from_fd (fd, info, gio_attr, attr);
666 len = strlen (attr) + 1;
668 list_res_size -= len;
675 while ((attr = g_file_attribute_matcher_enumerate_next (matcher)) != NULL)
677 char *unescaped_attribute, *a;
678 gboolean free_unescaped_attribute;
680 attr2 = strchr (attr, ':');
683 attr2++; /* Skip ':' */
684 unescaped_attribute = hex_unescape_string (attr2, NULL, &free_unescaped_attribute);
686 a = g_strconcat ("user.", unescaped_attribute, NULL);
688 a = unescaped_attribute;
690 get_one_xattr_from_fd (fd, info, attr, a);
695 if (free_unescaped_attribute)
696 g_free (unescaped_attribute);
700 #endif /* defined HAVE_XATTR */
705 set_xattr (char *filename,
706 const char *escaped_attribute,
707 const GFileAttributeValue *attr_value,
710 char *attribute, *value;
711 gboolean free_attribute, free_value;
712 int val_len, res, errsv;
716 if (attr_value == NULL)
718 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
719 _("Attribute value must be non-NULL"));
723 if (attr_value->type != G_FILE_ATTRIBUTE_TYPE_STRING)
725 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
726 _("Invalid attribute type (string expected)"));
730 if (!name_is_valid (escaped_attribute))
732 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
733 _("Invalid extended attribute name"));
737 if (g_str_has_prefix (escaped_attribute, "xattr::"))
739 escaped_attribute += strlen ("xattr::");
744 g_warn_if_fail (g_str_has_prefix (escaped_attribute, "xattr-sys::"));
745 escaped_attribute += strlen ("xattr-sys::");
749 attribute = hex_unescape_string (escaped_attribute, NULL, &free_attribute);
750 value = hex_unescape_string (attr_value->u.string, &val_len, &free_value);
753 a = g_strconcat ("user.", attribute, NULL);
757 res = g_setxattr (filename, a, value, val_len);
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));
785 _g_local_file_info_get_parent_info (const char *dir,
786 GFileAttributeMatcher *attribute_matcher,
787 GLocalParentFileInfo *parent_info)
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;
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))
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
809 parent_info->writable = (g_access (dir, W_OK) == 0);
811 res = g_stat (dir, &statbuf);
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.
821 parent_info->is_sticky = (statbuf.st_mode & S_ISVTX) != 0;
823 parent_info->is_sticky = FALSE;
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);
836 _g_local_file_info_free_parent_info (GLocalParentFileInfo *parent_info)
838 if (parent_info->extra_data &&
839 parent_info->free_extra_data)
840 parent_info->free_extra_data (parent_info->extra_data);
844 get_access_rights (GFileAttributeMatcher *attribute_matcher,
847 GLocalFileStat *statbuf,
848 GLocalParentFileInfo *parent_info)
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);
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);
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);
872 if (parent_info->writable)
874 if (parent_info->is_sticky)
877 uid_t uid = geteuid ();
879 if (uid == statbuf->st_uid ||
880 uid == parent_info->owner ||
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,
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,
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);
904 set_info_from_stat (GFileInfo *info,
905 GLocalFileStat *statbuf,
906 GFileAttributeMatcher *attribute_matcher)
910 file_type = G_FILE_TYPE_UNKNOWN;
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;
917 else if (S_ISCHR (statbuf->st_mode) ||
918 S_ISBLK (statbuf->st_mode) ||
919 S_ISFIFO (statbuf->st_mode)
921 || S_ISSOCK (statbuf->st_mode)
924 file_type = G_FILE_TYPE_SPECIAL;
927 else if (S_ISLNK (statbuf->st_mode))
928 file_type = G_FILE_TYPE_SYMBOLIC_LINK;
931 g_file_info_set_file_type (info, file_type);
932 g_file_info_set_size (info, statbuf->st_size);
934 _g_file_info_set_attribute_uint32_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_DEVICE, statbuf->st_dev);
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);
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);
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));
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);
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);
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);
975 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
976 G_FILE_ATTRIBUTE_ID_ETAG_VALUE))
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);
983 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
984 G_FILE_ATTRIBUTE_ID_ID_FILE))
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);
991 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
992 G_FILE_ATTRIBUTE_ID_ID_FILESYSTEM))
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);
1003 make_valid_utf8 (const char *name)
1006 const gchar *remainder, *invalid;
1007 gint remaining_bytes, valid_bytes;
1011 remaining_bytes = strlen (name);
1013 while (remaining_bytes != 0)
1015 if (g_utf8_validate (remainder, remaining_bytes, &invalid))
1017 valid_bytes = invalid - remainder;
1020 string = g_string_sized_new (remaining_bytes);
1022 g_string_append_len (string, remainder, valid_bytes);
1023 /* append U+FFFD REPLACEMENT CHARACTER */
1024 g_string_append (string, "\357\277\275");
1026 remaining_bytes -= valid_bytes + 1;
1027 remainder = invalid + 1;
1031 return g_strdup (name);
1033 g_string_append (string, remainder);
1035 g_warn_if_fail (g_utf8_validate (string->str, -1, NULL));
1037 return g_string_free (string, FALSE);
1041 convert_pwd_string_to_utf8 (char *pwd_str)
1045 if (!g_utf8_validate (pwd_str, -1, NULL))
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);
1052 utf8_string = g_strdup (pwd_str);
1058 uid_data_free (UidData *data)
1060 g_free (data->user_name);
1061 g_free (data->real_name);
1065 /* called with lock held */
1067 lookup_uid_data (uid_t uid)
1071 struct passwd pwbuf;
1072 struct passwd *pwbufp;
1073 char *gecos, *comma;
1075 if (uid_cache == NULL)
1076 uid_cache = g_hash_table_new_full (NULL, NULL, NULL, (GDestroyNotify)uid_data_free);
1078 data = g_hash_table_lookup (uid_cache, GINT_TO_POINTER (uid));
1083 data = g_new0 (UidData, 1);
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));
1090 pwbufp = getpwuid (uid);
1095 if (pwbufp->pw_name != NULL && pwbufp->pw_name[0] != 0)
1096 data->user_name = convert_pwd_string_to_utf8 (pwbufp->pw_name);
1098 gecos = pwbufp->pw_gecos;
1102 comma = strchr (gecos, ',');
1105 data->real_name = convert_pwd_string_to_utf8 (gecos);
1109 /* Default fallbacks */
1110 if (data->real_name == NULL)
1112 if (data->user_name != NULL)
1113 data->real_name = g_strdup (data->user_name);
1115 data->real_name = g_strdup_printf ("user #%d", (int)uid);
1118 if (data->user_name == NULL)
1119 data->user_name = g_strdup_printf ("%d", (int)uid);
1121 g_hash_table_replace (uid_cache, GINT_TO_POINTER (uid), data);
1127 get_username_from_uid (uid_t uid)
1133 data = lookup_uid_data (uid);
1134 res = g_strdup (data->user_name);
1135 G_UNLOCK (uid_cache);
1141 get_realname_from_uid (uid_t uid)
1147 data = lookup_uid_data (uid);
1148 res = g_strdup (data->real_name);
1149 G_UNLOCK (uid_cache);
1154 /* called with lock held */
1156 lookup_gid_name (gid_t gid)
1161 struct group *gbufp;
1163 if (gid_cache == NULL)
1164 gid_cache = g_hash_table_new_full (NULL, NULL, NULL, (GDestroyNotify)g_free);
1166 name = g_hash_table_lookup (gid_cache, GINT_TO_POINTER (gid));
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));
1176 gbufp = getgrgid (gid);
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);
1184 name = g_strdup_printf("%d", (int)gid);
1186 g_hash_table_replace (gid_cache, GINT_TO_POINTER (gid), name);
1192 get_groupname_from_gid (gid_t gid)
1198 name = lookup_gid_name (gid);
1199 res = g_strdup (name);
1200 G_UNLOCK (gid_cache);
1204 #endif /* !G_OS_WIN32 */
1207 get_content_type (const char *basename,
1209 GLocalFileStat *statbuf,
1210 gboolean is_symlink,
1211 gboolean symlink_broken,
1212 GFileQueryInfoFlags flags,
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");
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");
1229 else if (statbuf != NULL && S_ISSOCK(statbuf->st_mode))
1230 return g_strdup ("inode/socket");
1235 gboolean result_uncertain;
1237 content_type = g_content_type_guess (basename, NULL, 0, &result_uncertain);
1240 if (!fast && result_uncertain && path != NULL)
1242 guchar sniff_buffer[4096];
1246 sniff_length = _g_unix_content_type_get_sniff_len ();
1247 if (sniff_length > 4096)
1248 sniff_length = 4096;
1251 fd = open (path, O_RDONLY | O_NOATIME);
1252 if (fd < 0 && errno == EPERM)
1254 fd = open (path, O_RDONLY);
1260 res = read (fd, sniff_buffer, sniff_length);
1264 g_free (content_type);
1265 content_type = g_content_type_guess (basename, sniff_buffer, res, NULL);
1271 return content_type;
1277 get_thumbnail_attributes (const char *path,
1280 GChecksum *checksum;
1285 uri = g_filename_to_uri (path, NULL, NULL);
1287 checksum = g_checksum_new (G_CHECKSUM_MD5);
1288 g_checksum_update (checksum, (const guchar *) uri, strlen (uri));
1292 basename = g_strconcat (g_checksum_get_string (checksum), ".png", NULL);
1293 g_checksum_free (checksum);
1295 filename = g_build_filename (g_get_home_dir (),
1296 ".thumbnails", "normal", basename,
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);
1304 filename = g_build_filename (g_get_home_dir (),
1305 ".thumbnails", "fail",
1306 "gnome-thumbnail-factory",
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);
1319 win32_get_file_user_info (const gchar *filename,
1324 PSECURITY_DESCRIPTOR psd = NULL;
1325 DWORD sd_size = 0; /* first call calculates the size required */
1327 wchar_t *wfilename = g_utf8_to_utf16 (filename, -1, NULL, NULL, NULL);
1328 if ((GetFileSecurityW (wfilename,
1329 GROUP_SECURITY_INFORMATION | OWNER_SECURITY_INFORMATION,
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,
1342 SID_NAME_USE name_use = 0; /* don't care? */
1343 wchar_t *name = NULL;
1344 wchar_t *domain = NULL;
1346 DWORD domain_len = 0;
1347 /* get the user name */
1351 if (!GetSecurityDescriptorOwner (psd, &psid, &defaulted))
1353 if (!LookupAccountSidW (NULL, /* local machine */
1356 domain, &domain_len, /* no domain info yet */
1357 &name_use) && (ERROR_INSUFFICIENT_BUFFER != GetLastError()))
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 */
1365 domain, &domain_len, /* no domain info yet */
1368 *user_name = g_utf16_to_utf8 (name, -1, NULL, NULL, NULL);
1374 /* get the group name */
1378 if (!GetSecurityDescriptorGroup (psd, &psid, &defaulted))
1380 if (!LookupAccountSidW (NULL, /* local machine */
1383 domain, &domain_len, /* no domain info yet */
1384 &name_use) && (ERROR_INSUFFICIENT_BUFFER != GetLastError()))
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 */
1392 domain, &domain_len, /* no domain info yet */
1395 *group_name = g_utf16_to_utf8 (name, -1, NULL, NULL, NULL);
1401 /* TODO: get real name */
1407 #endif /* G_OS_WIN32 */
1410 _g_local_file_info_get (const char *basename,
1412 GFileAttributeMatcher *attribute_matcher,
1413 GFileQueryInfoFlags flags,
1414 GLocalParentFileInfo *parent_info,
1418 GLocalFileStat statbuf;
1420 struct stat statbuf2;
1424 gboolean is_symlink, symlink_broken;
1426 DWORD dos_attributes;
1428 char *symlink_target;
1433 info = g_file_info_new ();
1435 /* Make sure we don't set any unwanted attributes */
1436 g_file_info_set_attribute_mask (info, attribute_matcher);
1438 g_file_info_set_name (info, basename);
1440 /* Avoid stat in trivial case */
1441 if (attribute_matcher == NULL)
1445 res = g_lstat (path, &statbuf);
1448 wchar_t *wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, error);
1453 g_object_unref (info);
1457 len = wcslen (wpath);
1458 while (len > 0 && G_IS_DIR_SEPARATOR (wpath[len-1]))
1461 (!g_path_is_absolute (path) || len > g_path_skip_root (path) - path))
1464 res = _wstati64 (wpath, &statbuf);
1465 dos_attributes = GetFileAttributesW (wpath);
1475 /* Don't bail out if we get Permission denied (SELinux?) */
1476 if (errsv != EACCES)
1478 char *display_name = g_filename_display_name (path);
1479 g_object_unref (info);
1480 g_set_error (error, G_IO_ERROR,
1481 g_io_error_from_errno (errsv),
1482 _("Error stating file '%s': %s"),
1483 display_name, g_strerror (errsv));
1484 g_free (display_name);
1489 /* Even if stat() fails, try to get as much as other attributes possible */
1490 stat_ok = res != -1;
1493 device = statbuf.st_dev;
1498 is_symlink = stat_ok && S_ISLNK (statbuf.st_mode);
1502 symlink_broken = FALSE;
1506 g_file_info_set_is_symlink (info, TRUE);
1508 /* Unless NOFOLLOW was set we default to following symlinks */
1509 if (!(flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS))
1511 res = stat (path, &statbuf2);
1513 /* Report broken links as symlinks */
1520 symlink_broken = TRUE;
1526 set_info_from_stat (info, &statbuf, attribute_matcher);
1529 if (basename != NULL && basename[0] == '.')
1530 g_file_info_set_is_hidden (info, TRUE);
1532 if (basename != NULL && basename[strlen (basename) -1] == '~' &&
1533 (stat_ok && S_ISREG (statbuf.st_mode)))
1534 _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_STANDARD_IS_BACKUP, TRUE);
1536 if (dos_attributes & FILE_ATTRIBUTE_HIDDEN)
1537 g_file_info_set_is_hidden (info, TRUE);
1539 if (dos_attributes & FILE_ATTRIBUTE_ARCHIVE)
1540 _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_DOS_IS_ARCHIVE, TRUE);
1542 if (dos_attributes & FILE_ATTRIBUTE_SYSTEM)
1543 _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_DOS_IS_SYSTEM, TRUE);
1546 symlink_target = NULL;
1550 symlink_target = read_link (path);
1551 if (symlink_target &&
1552 _g_file_attribute_matcher_matches_id (attribute_matcher,
1553 G_FILE_ATTRIBUTE_ID_STANDARD_SYMLINK_TARGET))
1554 g_file_info_set_symlink_target (info, symlink_target);
1557 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1558 G_FILE_ATTRIBUTE_ID_STANDARD_DISPLAY_NAME))
1560 char *display_name = g_filename_display_basename (path);
1562 /* look for U+FFFD REPLACEMENT CHARACTER */
1563 if (strstr (display_name, "\357\277\275") != NULL)
1565 char *p = display_name;
1566 display_name = g_strconcat (display_name, _(" (invalid encoding)"), NULL);
1569 g_file_info_set_display_name (info, display_name);
1570 g_free (display_name);
1573 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1574 G_FILE_ATTRIBUTE_ID_STANDARD_EDIT_NAME))
1576 char *edit_name = g_filename_display_basename (path);
1577 g_file_info_set_edit_name (info, edit_name);
1582 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1583 G_FILE_ATTRIBUTE_ID_STANDARD_COPY_NAME))
1585 char *copy_name = g_filename_to_utf8 (basename, -1, NULL, NULL, NULL);
1587 _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_STANDARD_COPY_NAME, copy_name);
1591 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1592 G_FILE_ATTRIBUTE_ID_STANDARD_CONTENT_TYPE) ||
1593 _g_file_attribute_matcher_matches_id (attribute_matcher,
1594 G_FILE_ATTRIBUTE_ID_STANDARD_ICON))
1596 char *content_type = get_content_type (basename, path, stat_ok ? &statbuf : NULL, is_symlink, symlink_broken, flags, FALSE);
1600 g_file_info_set_content_type (info, content_type);
1602 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1603 G_FILE_ATTRIBUTE_ID_STANDARD_ICON))
1607 if (strcmp (path, g_get_home_dir ()) == 0)
1608 icon = g_themed_icon_new ("user-home");
1609 else if (strcmp (path, g_get_user_special_dir (G_USER_DIRECTORY_DESKTOP)) == 0)
1610 icon = g_themed_icon_new ("user-desktop");
1611 else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_DOCUMENTS)) == 0)
1612 icon = g_themed_icon_new_with_default_fallbacks ("folder-documents");
1613 else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_DOWNLOAD)) == 0)
1614 icon = g_themed_icon_new_with_default_fallbacks ("folder-download");
1615 else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_MUSIC)) == 0)
1616 icon = g_themed_icon_new_with_default_fallbacks ("folder-music");
1617 else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_PICTURES)) == 0)
1618 icon = g_themed_icon_new_with_default_fallbacks ("folder-pictures");
1619 else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_PUBLIC_SHARE)) == 0)
1620 icon = g_themed_icon_new_with_default_fallbacks ("folder-publicshare");
1621 else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_TEMPLATES)) == 0)
1622 icon = g_themed_icon_new_with_default_fallbacks ("folder-templates");
1623 else if (g_strcmp0 (path, g_get_user_special_dir (G_USER_DIRECTORY_VIDEOS)) == 0)
1624 icon = g_themed_icon_new_with_default_fallbacks ("folder-videos");
1627 icon = g_content_type_get_icon (content_type);
1628 if (G_IS_THEMED_ICON (icon))
1630 const char *type_icon = NULL;
1632 if (S_ISDIR (statbuf.st_mode))
1633 type_icon = "folder";
1635 g_themed_icon_append_name (G_THEMED_ICON (icon), type_icon);
1641 g_file_info_set_icon (info, icon);
1642 g_object_unref (icon);
1646 g_free (content_type);
1650 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1651 G_FILE_ATTRIBUTE_ID_STANDARD_FAST_CONTENT_TYPE))
1653 char *content_type = get_content_type (basename, path, stat_ok ? &statbuf : NULL, is_symlink, symlink_broken, flags, TRUE);
1657 _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_STANDARD_FAST_CONTENT_TYPE, content_type);
1658 g_free (content_type);
1662 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1663 G_FILE_ATTRIBUTE_ID_OWNER_USER))
1668 win32_get_file_user_info (path, NULL, &name, NULL);
1671 name = get_username_from_uid (statbuf.st_uid);
1674 _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_OWNER_USER, name);
1678 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1679 G_FILE_ATTRIBUTE_ID_OWNER_USER_REAL))
1683 win32_get_file_user_info (path, NULL, NULL, &name);
1686 name = get_realname_from_uid (statbuf.st_uid);
1689 _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_OWNER_USER_REAL, name);
1693 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1694 G_FILE_ATTRIBUTE_ID_OWNER_GROUP))
1698 win32_get_file_user_info (path, &name, NULL, NULL);
1701 name = get_groupname_from_gid (statbuf.st_gid);
1704 _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_OWNER_GROUP, name);
1708 if (stat_ok && parent_info && parent_info->device != 0 &&
1709 _g_file_attribute_matcher_matches_id (attribute_matcher, G_FILE_ATTRIBUTE_ID_UNIX_IS_MOUNTPOINT) &&
1710 statbuf.st_dev != parent_info->device)
1711 _g_file_info_set_attribute_boolean_by_id (info, G_FILE_ATTRIBUTE_ID_UNIX_IS_MOUNTPOINT, TRUE);
1714 get_access_rights (attribute_matcher, info, path, &statbuf, parent_info);
1717 get_selinux_context (path, info, attribute_matcher, (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) == 0);
1719 get_xattrs (path, TRUE, info, attribute_matcher, (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) == 0);
1720 get_xattrs (path, FALSE, info, attribute_matcher, (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) == 0);
1722 if (_g_file_attribute_matcher_matches_id (attribute_matcher,
1723 G_FILE_ATTRIBUTE_ID_THUMBNAIL_PATH))
1724 get_thumbnail_attributes (path, info);
1726 vfs = g_vfs_get_default ();
1727 class = G_VFS_GET_CLASS (vfs);
1728 if (class->local_file_add_info)
1730 class->local_file_add_info (vfs,
1736 &parent_info->extra_data,
1737 &parent_info->free_extra_data);
1740 g_file_info_unset_attribute_mask (info);
1742 g_free (symlink_target);
1748 _g_local_file_info_get_from_fd (int fd,
1749 const char *attributes,
1752 GLocalFileStat stat_buf;
1753 GFileAttributeMatcher *matcher;
1757 #define FSTAT _fstati64
1762 if (FSTAT (fd, &stat_buf) == -1)
1766 g_set_error (error, G_IO_ERROR,
1767 g_io_error_from_errno (errsv),
1768 _("Error stating file descriptor: %s"),
1769 g_strerror (errsv));
1773 info = g_file_info_new ();
1775 matcher = g_file_attribute_matcher_new (attributes);
1777 /* Make sure we don't set any unwanted attributes */
1778 g_file_info_set_attribute_mask (info, matcher);
1780 set_info_from_stat (info, &stat_buf, matcher);
1783 if (_g_file_attribute_matcher_matches_id (matcher, G_FILE_ATTRIBUTE_ID_SELINUX_CONTEXT) &&
1784 is_selinux_enabled ())
1787 if (fgetfilecon_raw (fd, &context) >= 0)
1789 _g_file_info_set_attribute_string_by_id (info, G_FILE_ATTRIBUTE_ID_SELINUX_CONTEXT, context);
1795 get_xattrs_from_fd (fd, TRUE, info, matcher);
1796 get_xattrs_from_fd (fd, FALSE, info, matcher);
1798 g_file_attribute_matcher_unref (matcher);
1800 g_file_info_unset_attribute_mask (info);
1806 get_uint32 (const GFileAttributeValue *value,
1810 if (value->type != G_FILE_ATTRIBUTE_TYPE_UINT32)
1812 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1813 _("Invalid attribute type (uint32 expected)"));
1817 *val_out = value->u.uint32;
1824 get_uint64 (const GFileAttributeValue *value,
1828 if (value->type != G_FILE_ATTRIBUTE_TYPE_UINT64)
1830 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1831 _("Invalid attribute type (uint64 expected)"));
1835 *val_out = value->u.uint64;
1841 #if defined(HAVE_SYMLINK)
1843 get_byte_string (const GFileAttributeValue *value,
1844 const char **val_out,
1847 if (value->type != G_FILE_ATTRIBUTE_TYPE_BYTE_STRING)
1849 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1850 _("Invalid attribute type (byte string expected)"));
1854 *val_out = value->u.string;
1862 get_string (const GFileAttributeValue *value,
1863 const char **val_out,
1866 if (value->type != G_FILE_ATTRIBUTE_TYPE_STRING)
1868 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1869 _("Invalid attribute type (byte string expected)"));
1873 *val_out = value->u.string;
1880 set_unix_mode (char *filename,
1881 GFileQueryInfoFlags flags,
1882 const GFileAttributeValue *value,
1888 if (!get_uint32 (value, &val, error))
1892 if (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS) {
1894 res = lchmod (filename, val);
1896 struct stat statbuf;
1897 /* Calling chmod on a symlink changes permissions on the symlink.
1898 * We don't want to do this, so we need to check for a symlink */
1899 res = g_lstat (filename, &statbuf);
1900 if (res == 0 && S_ISLNK (statbuf.st_mode))
1902 g_set_error_literal (error, G_IO_ERROR,
1903 G_IO_ERROR_NOT_SUPPORTED,
1904 _("Cannot set permissions on symlinks"));
1908 res = g_chmod (filename, val);
1912 res = g_chmod (filename, val);
1918 g_set_error (error, G_IO_ERROR,
1919 g_io_error_from_errno (errsv),
1920 _("Error setting permissions: %s"),
1921 g_strerror (errsv));
1929 set_unix_uid_gid (char *filename,
1930 const GFileAttributeValue *uid_value,
1931 const GFileAttributeValue *gid_value,
1932 GFileQueryInfoFlags flags,
1942 if (!get_uint32 (uid_value, &val, error))
1951 if (!get_uint32 (gid_value, &val, error))
1959 if (flags & G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS)
1960 res = lchown (filename, uid, gid);
1963 res = chown (filename, uid, gid);
1969 g_set_error (error, G_IO_ERROR,
1970 g_io_error_from_errno (errsv),
1971 _("Error setting owner: %s"),
1972 g_strerror (errsv));
1981 set_symlink (char *filename,
1982 const GFileAttributeValue *value,
1986 struct stat statbuf;
1988 if (!get_byte_string (value, &val, error))
1993 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
1994 _("symlink must be non-NULL"));
1998 if (g_lstat (filename, &statbuf))
2002 g_set_error (error, G_IO_ERROR,
2003 g_io_error_from_errno (errsv),
2004 _("Error setting symlink: %s"),
2005 g_strerror (errsv));
2009 if (!S_ISLNK (statbuf.st_mode))
2011 g_set_error_literal (error, G_IO_ERROR,
2012 G_IO_ERROR_NOT_SYMBOLIC_LINK,
2013 _("Error setting symlink: file is not a symlink"));
2017 if (g_unlink (filename))
2021 g_set_error (error, G_IO_ERROR,
2022 g_io_error_from_errno (errsv),
2023 _("Error setting symlink: %s"),
2024 g_strerror (errsv));
2028 if (symlink (filename, val) != 0)
2032 g_set_error (error, G_IO_ERROR,
2033 g_io_error_from_errno (errsv),
2034 _("Error setting symlink: %s"),
2035 g_strerror (errsv));
2045 lazy_stat (char *filename,
2046 struct stat *statbuf,
2047 gboolean *called_stat)
2054 res = g_stat (filename, statbuf);
2057 *called_stat = TRUE;
2064 set_mtime_atime (char *filename,
2065 const GFileAttributeValue *mtime_value,
2066 const GFileAttributeValue *mtime_usec_value,
2067 const GFileAttributeValue *atime_value,
2068 const GFileAttributeValue *atime_usec_value,
2073 guint32 val_usec = 0;
2074 struct stat statbuf;
2075 gboolean got_stat = FALSE;
2076 struct timeval times[2] = { {0, 0}, {0, 0} };
2081 if (!get_uint64 (atime_value, &val, error))
2083 times[0].tv_sec = val;
2087 if (lazy_stat (filename, &statbuf, &got_stat) == 0)
2089 times[0].tv_sec = statbuf.st_mtime;
2090 #if defined (HAVE_STRUCT_STAT_ST_ATIMENSEC)
2091 times[0].tv_usec = statbuf.st_atimensec / 1000;
2092 #elif defined (HAVE_STRUCT_STAT_ST_ATIM_TV_NSEC)
2093 times[0].tv_usec = statbuf.st_atim.tv_nsec / 1000;
2098 if (atime_usec_value)
2100 if (!get_uint32 (atime_usec_value, &val_usec, error))
2102 times[0].tv_usec = val_usec;
2108 if (!get_uint64 (mtime_value, &val, error))
2110 times[1].tv_sec = val;
2114 if (lazy_stat (filename, &statbuf, &got_stat) == 0)
2116 times[1].tv_sec = statbuf.st_mtime;
2117 #if defined (HAVE_STRUCT_STAT_ST_MTIMENSEC)
2118 times[1].tv_usec = statbuf.st_mtimensec / 1000;
2119 #elif defined (HAVE_STRUCT_STAT_ST_MTIM_TV_NSEC)
2120 times[1].tv_usec = statbuf.st_mtim.tv_nsec / 1000;
2125 if (mtime_usec_value)
2127 if (!get_uint32 (mtime_usec_value, &val_usec, error))
2129 times[1].tv_usec = val_usec;
2132 res = utimes (filename, times);
2137 g_set_error (error, G_IO_ERROR,
2138 g_io_error_from_errno (errsv),
2139 _("Error setting modification or access time: %s"),
2140 g_strerror (errsv));
2150 set_selinux_context (char *filename,
2151 const GFileAttributeValue *value,
2156 if (!get_string (value, &val, error))
2161 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
2162 _("SELinux context must be non-NULL"));
2166 if (is_selinux_enabled ()) {
2167 security_context_t val_s;
2169 val_s = g_strdup (val);
2171 if (setfilecon_raw (filename, val_s) < 0)
2175 g_set_error (error, G_IO_ERROR,
2176 g_io_error_from_errno (errsv),
2177 _("Error setting SELinux context: %s"),
2178 g_strerror (errsv));
2183 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_ARGUMENT,
2184 _("SELinux is not enabled on this system"));
2194 _g_local_file_info_set_attribute (char *filename,
2195 const char *attribute,
2196 GFileAttributeType type,
2198 GFileQueryInfoFlags flags,
2199 GCancellable *cancellable,
2202 GFileAttributeValue value = { 0 };
2206 _g_file_attribute_value_set_from_pointer (&value, type, value_p, FALSE);
2208 if (strcmp (attribute, G_FILE_ATTRIBUTE_UNIX_MODE) == 0)
2209 return set_unix_mode (filename, flags, &value, error);
2212 else if (strcmp (attribute, G_FILE_ATTRIBUTE_UNIX_UID) == 0)
2213 return set_unix_uid_gid (filename, &value, NULL, flags, error);
2214 else if (strcmp (attribute, G_FILE_ATTRIBUTE_UNIX_GID) == 0)
2215 return set_unix_uid_gid (filename, NULL, &value, flags, error);
2219 else if (strcmp (attribute, G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET) == 0)
2220 return set_symlink (filename, &value, error);
2224 else if (strcmp (attribute, G_FILE_ATTRIBUTE_TIME_MODIFIED) == 0)
2225 return set_mtime_atime (filename, &value, NULL, NULL, NULL, error);
2226 else if (strcmp (attribute, G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC) == 0)
2227 return set_mtime_atime (filename, NULL, &value, NULL, NULL, error);
2228 else if (strcmp (attribute, G_FILE_ATTRIBUTE_TIME_ACCESS) == 0)
2229 return set_mtime_atime (filename, NULL, NULL, &value, NULL, error);
2230 else if (strcmp (attribute, G_FILE_ATTRIBUTE_TIME_ACCESS_USEC) == 0)
2231 return set_mtime_atime (filename, NULL, NULL, NULL, &value, error);
2235 else if (g_str_has_prefix (attribute, "xattr::"))
2236 return set_xattr (filename, attribute, &value, error);
2237 else if (g_str_has_prefix (attribute, "xattr-sys::"))
2238 return set_xattr (filename, attribute, &value, error);
2242 else if (strcmp (attribute, G_FILE_ATTRIBUTE_SELINUX_CONTEXT) == 0)
2243 return set_selinux_context (filename, &value, error);
2246 vfs = g_vfs_get_default ();
2247 class = G_VFS_GET_CLASS (vfs);
2248 if (class->local_file_set_attributes)
2252 info = g_file_info_new ();
2253 g_file_info_set_attribute (info,
2257 if (!class->local_file_set_attributes (vfs, filename,
2262 g_object_unref (info);
2266 if (g_file_info_get_attribute_status (info, attribute) == G_FILE_ATTRIBUTE_STATUS_SET)
2268 g_object_unref (info);
2272 g_object_unref (info);
2275 g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
2276 _("Setting attribute %s not supported"), attribute);
2281 _g_local_file_info_set_attributes (char *filename,
2283 GFileQueryInfoFlags flags,
2284 GCancellable *cancellable,
2287 GFileAttributeValue *value;
2289 GFileAttributeValue *uid, *gid;
2292 GFileAttributeValue *mtime, *mtime_usec, *atime, *atime_usec;
2294 #if defined (HAVE_CHOWN) || defined (HAVE_UTIMES)
2295 GFileAttributeStatus status;
2301 /* Handles setting multiple specified data in a single set, and takes care
2302 of ordering restrictions when setting attributes */
2306 /* Set symlink first, since this recreates the file */
2308 value = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET);
2311 if (!set_symlink (filename, value, error))
2313 value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2315 /* Don't set error multiple times */
2319 value->status = G_FILE_ATTRIBUTE_STATUS_SET;
2325 /* Group uid and gid setting into one call
2326 * Change ownership before permissions, since ownership changes can
2327 change permissions (e.g. setuid)
2329 uid = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_UNIX_UID);
2330 gid = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_UNIX_GID);
2334 if (!set_unix_uid_gid (filename, uid, gid, flags, error))
2336 status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2338 /* Don't set error multiple times */
2342 status = G_FILE_ATTRIBUTE_STATUS_SET;
2344 uid->status = status;
2346 gid->status = status;
2350 value = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_UNIX_MODE);
2353 if (!set_unix_mode (filename, flags, value, error))
2355 value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2357 /* Don't set error multiple times */
2361 value->status = G_FILE_ATTRIBUTE_STATUS_SET;
2366 /* Group all time settings into one call
2367 * Change times as the last thing to avoid it changing due to metadata changes
2370 mtime = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_TIME_MODIFIED);
2371 mtime_usec = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC);
2372 atime = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_TIME_ACCESS);
2373 atime_usec = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_TIME_ACCESS_USEC);
2375 if (mtime || mtime_usec || atime || atime_usec)
2377 if (!set_mtime_atime (filename, mtime, mtime_usec, atime, atime_usec, error))
2379 status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2381 /* Don't set error multiple times */
2385 status = G_FILE_ATTRIBUTE_STATUS_SET;
2388 mtime->status = status;
2390 mtime_usec->status = status;
2392 atime->status = status;
2394 atime_usec->status = status;
2398 /* xattrs are handled by default callback */
2401 /* SELinux context */
2403 if (is_selinux_enabled ()) {
2404 value = _g_file_info_get_attribute_value (info, G_FILE_ATTRIBUTE_SELINUX_CONTEXT);
2407 if (!set_selinux_context (filename, value, error))
2409 value->status = G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING;
2411 /* Don't set error multiple times */
2415 value->status = G_FILE_ATTRIBUTE_STATUS_SET;
2420 vfs = g_vfs_get_default ();
2421 class = G_VFS_GET_CLASS (vfs);
2422 if (class->local_file_set_attributes)
2424 if (!class->local_file_set_attributes (vfs, filename,
2430 /* Don't set error multiple times */