LCOV - code coverage report
Current view: top level - gio - glocalfile.c (source / functions) Coverage Total Hit
Test: unnamed Lines: 47.9 % 1193 571
Test Date: 2024-11-26 05:23:01 Functions: 84.6 % 78 66
Branches: - 0 0

             Branch data     Line data    Source code
       1                 :             : /* GIO - GLib Input, Output and Streaming Library
       2                 :             :  * 
       3                 :             :  * Copyright (C) 2006-2007 Red Hat, Inc.
       4                 :             :  *
       5                 :             :  * SPDX-License-Identifier: LGPL-2.1-or-later
       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.1 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, see <http://www.gnu.org/licenses/>.
      19                 :             :  *
      20                 :             :  * Author: Alexander Larsson <alexl@redhat.com>
      21                 :             :  */
      22                 :             : 
      23                 :             : #include "config.h"
      24                 :             : 
      25                 :             : #include <sys/types.h>
      26                 :             : #include <sys/stat.h>
      27                 :             : #include <string.h>
      28                 :             : #include <errno.h>
      29                 :             : #include <fcntl.h>
      30                 :             : #if G_OS_UNIX
      31                 :             : #include <dirent.h>
      32                 :             : #include <unistd.h>
      33                 :             : #endif
      34                 :             : 
      35                 :             : #if HAVE_SYS_STATFS_H
      36                 :             : #include <sys/statfs.h>
      37                 :             : #endif
      38                 :             : #if HAVE_SYS_STATVFS_H
      39                 :             : #include <sys/statvfs.h>
      40                 :             : #endif
      41                 :             : #if HAVE_SYS_VFS_H
      42                 :             : #include <sys/vfs.h>
      43                 :             : #elif HAVE_SYS_MOUNT_H
      44                 :             : #if HAVE_SYS_PARAM_H
      45                 :             : #include <sys/param.h>
      46                 :             : #endif
      47                 :             : #include <sys/mount.h>
      48                 :             : #endif
      49                 :             : 
      50                 :             : #ifndef O_BINARY
      51                 :             : #define O_BINARY 0
      52                 :             : #endif
      53                 :             : 
      54                 :             : #ifndef O_CLOEXEC
      55                 :             : #define O_CLOEXEC 0
      56                 :             : #endif
      57                 :             : 
      58                 :             : #include "gfileattribute.h"
      59                 :             : #include "glocalfile.h"
      60                 :             : #include "glocalfileinfo.h"
      61                 :             : #include "glocalfileenumerator.h"
      62                 :             : #include "glocalfileinputstream.h"
      63                 :             : #include "glocalfileoutputstream.h"
      64                 :             : #include "glocalfileiostream.h"
      65                 :             : #include "glocalfilemonitor.h"
      66                 :             : #include "gmountprivate.h"
      67                 :             : #include "gunixmounts.h"
      68                 :             : #include "gioerror.h"
      69                 :             : #include <glib/gstdio.h>
      70                 :             : #include <glib/gstdioprivate.h>
      71                 :             : #include "glibintl.h"
      72                 :             : #ifdef G_OS_UNIX
      73                 :             : #include "glib-unix.h"
      74                 :             : #include "gportalsupport.h"
      75                 :             : #include "gtrashportal.h"
      76                 :             : #endif
      77                 :             : 
      78                 :             : #include "glib-private.h"
      79                 :             : 
      80                 :             : #ifdef G_OS_WIN32
      81                 :             : #include <windows.h>
      82                 :             : #include <io.h>
      83                 :             : #include <direct.h>
      84                 :             : 
      85                 :             : #ifndef FILE_READ_ONLY_VOLUME
      86                 :             : #define FILE_READ_ONLY_VOLUME           0x00080000
      87                 :             : #endif
      88                 :             : 
      89                 :             : #ifndef S_ISREG
      90                 :             : #define S_ISREG(m) (((m) & _S_IFMT) == _S_IFREG)
      91                 :             : #endif
      92                 :             : #ifndef S_ISDIR
      93                 :             : #define S_ISDIR(m) (((m) & _S_IFMT) == _S_IFDIR)
      94                 :             : #endif
      95                 :             : #ifndef S_ISLNK
      96                 :             : #define S_ISLNK(m) (0)
      97                 :             : #endif
      98                 :             : 
      99                 :             : #ifndef ECANCELED
     100                 :             : #define ECANCELED 105
     101                 :             : #endif
     102                 :             : #endif
     103                 :             : 
     104                 :             : 
     105                 :             : static void g_local_file_file_iface_init (GFileIface *iface);
     106                 :             : 
     107                 :             : static GFileAttributeInfoList *local_writable_attributes = NULL;
     108                 :             : static GFileAttributeInfoList *local_writable_namespaces = NULL;
     109                 :             : 
     110                 :             : struct _GLocalFile
     111                 :             : {
     112                 :             :   GObject parent_instance;
     113                 :             : 
     114                 :             :   char *filename;
     115                 :             : };
     116                 :             : 
     117                 :             : #define g_local_file_get_type _g_local_file_get_type
     118                 :       11680 : G_DEFINE_TYPE_WITH_CODE (GLocalFile, g_local_file, G_TYPE_OBJECT,
     119                 :             :                          G_IMPLEMENT_INTERFACE (G_TYPE_FILE,
     120                 :             :                                                 g_local_file_file_iface_init))
     121                 :             : 
     122                 :             : static char *find_mountpoint_for (const char *file, dev_t dev, gboolean resolve_basename_symlink);
     123                 :             : 
     124                 :             : #ifndef G_OS_WIN32
     125                 :             : static gboolean is_remote_fs_type (const gchar *fsname);
     126                 :             : #endif
     127                 :             : 
     128                 :             : static void
     129                 :        3000 : g_local_file_finalize (GObject *object)
     130                 :             : {
     131                 :             :   GLocalFile *local;
     132                 :             : 
     133                 :        3000 :   local = G_LOCAL_FILE (object);
     134                 :             : 
     135                 :        3000 :   g_free (local->filename);
     136                 :             : 
     137                 :        3000 :   G_OBJECT_CLASS (g_local_file_parent_class)->finalize (object);
     138                 :        3000 : }
     139                 :             : 
     140                 :             : static void
     141                 :          34 : g_local_file_class_init (GLocalFileClass *klass)
     142                 :             : {
     143                 :          34 :   GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
     144                 :             :   GFileAttributeInfoList *list;
     145                 :             : 
     146                 :          34 :   gobject_class->finalize = g_local_file_finalize;
     147                 :             : 
     148                 :             :   /* Set up attribute lists */
     149                 :             : 
     150                 :             :   /* Writable attributes: */
     151                 :             : 
     152                 :          34 :   list = g_file_attribute_info_list_new ();
     153                 :             : 
     154                 :          34 :   g_file_attribute_info_list_add (list,
     155                 :             :                                   G_FILE_ATTRIBUTE_UNIX_MODE,
     156                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
     157                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
     158                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     159                 :             :   
     160                 :             : #ifdef G_OS_UNIX
     161                 :          34 :   g_file_attribute_info_list_add (list,
     162                 :             :                                   G_FILE_ATTRIBUTE_UNIX_UID,
     163                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
     164                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     165                 :          34 :   g_file_attribute_info_list_add (list,
     166                 :             :                                   G_FILE_ATTRIBUTE_UNIX_GID,
     167                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
     168                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     169                 :             : #endif
     170                 :             :   
     171                 :             : #ifdef HAVE_SYMLINK
     172                 :          34 :   g_file_attribute_info_list_add (list,
     173                 :             :                                   G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET,
     174                 :             :                                   G_FILE_ATTRIBUTE_TYPE_BYTE_STRING,
     175                 :             :                                   0);
     176                 :             : #endif
     177                 :             :   
     178                 :             : #if defined(HAVE_UTIMES) || defined(HAVE_UTIMENSAT)
     179                 :          34 :   g_file_attribute_info_list_add (list,
     180                 :             :                                   G_FILE_ATTRIBUTE_TIME_MODIFIED,
     181                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT64,
     182                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
     183                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     184                 :          34 :   g_file_attribute_info_list_add (list,
     185                 :             :                                   G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC,
     186                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
     187                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
     188                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     189                 :             :   /* When copying, the target file is accessed. Replicating
     190                 :             :    * the source access time does not make sense in this case.
     191                 :             :    */
     192                 :          34 :   g_file_attribute_info_list_add (list,
     193                 :             :                                   G_FILE_ATTRIBUTE_TIME_ACCESS,
     194                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT64,
     195                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     196                 :          34 :   g_file_attribute_info_list_add (list,
     197                 :             :                                   G_FILE_ATTRIBUTE_TIME_ACCESS_USEC,
     198                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
     199                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     200                 :             : #endif  /* HAVE_UTIMES || HAVE_UTIMENSAT */
     201                 :             : 
     202                 :             : #ifdef HAVE_UTIMENSAT
     203                 :          34 :   g_file_attribute_info_list_add (list,
     204                 :             :                                   G_FILE_ATTRIBUTE_TIME_MODIFIED_NSEC,
     205                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
     206                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
     207                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     208                 :          34 :   g_file_attribute_info_list_add (list,
     209                 :             :                                   G_FILE_ATTRIBUTE_TIME_ACCESS_NSEC,
     210                 :             :                                   G_FILE_ATTRIBUTE_TYPE_UINT32,
     211                 :             :                                   G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
     212                 :             : #endif
     213                 :             : 
     214                 :          34 :   local_writable_attributes = list;
     215                 :          34 : }
     216                 :             : 
     217                 :             : static void
     218                 :        3001 : g_local_file_init (GLocalFile *local)
     219                 :             : {
     220                 :        3001 : }
     221                 :             : 
     222                 :             : const char *
     223                 :         494 : _g_local_file_get_filename (GLocalFile *file)
     224                 :             : {
     225                 :         494 :   return file->filename;
     226                 :             : }
     227                 :             : 
     228                 :             : GFile *
     229                 :        2226 : _g_local_file_new (const char *filename)
     230                 :             : {
     231                 :             :   GLocalFile *local;
     232                 :             : 
     233                 :        2226 :   local = g_object_new (G_TYPE_LOCAL_FILE, NULL);
     234                 :        2226 :   local->filename = g_canonicalize_filename (filename, NULL);
     235                 :             :   
     236                 :        2226 :   return G_FILE (local);
     237                 :             : }
     238                 :             : 
     239                 :             : /*< internal >
     240                 :             :  * g_local_file_new_from_dirname_and_basename:
     241                 :             :  * @dirname: an absolute, canonical directory name
     242                 :             :  * @basename: the name of a child inside @dirname
     243                 :             :  *
     244                 :             :  * Creates a #GFile from @dirname and @basename.
     245                 :             :  *
     246                 :             :  * This is more efficient than pasting the fields together for yourself
     247                 :             :  * and creating a #GFile from the result, and also more efficient than
     248                 :             :  * creating a #GFile for the dirname and using g_file_get_child().
     249                 :             :  *
     250                 :             :  * @dirname must be canonical, as per GLocalFile's opinion of what
     251                 :             :  * canonical means.  This means that you should only pass strings that
     252                 :             :  * were returned by _g_local_file_get_filename().
     253                 :             :  *
     254                 :             :  * Returns: a #GFile
     255                 :             :  */
     256                 :             : GFile *
     257                 :         775 : g_local_file_new_from_dirname_and_basename (const gchar *dirname,
     258                 :             :                                             const gchar *basename)
     259                 :             : {
     260                 :             :   GLocalFile *local;
     261                 :             : 
     262                 :         775 :   g_return_val_if_fail (dirname != NULL, NULL);
     263                 :         775 :   g_return_val_if_fail (basename && basename[0] && !strchr (basename, '/'), NULL);
     264                 :             : 
     265                 :         775 :   local = g_object_new (G_TYPE_LOCAL_FILE, NULL);
     266                 :         775 :   local->filename = g_build_filename (dirname, basename, NULL);
     267                 :             : 
     268                 :         775 :   return G_FILE (local);
     269                 :             : }
     270                 :             : 
     271                 :             : static gboolean
     272                 :           7 : g_local_file_is_native (GFile *file)
     273                 :             : {
     274                 :           7 :   return TRUE;
     275                 :             : }
     276                 :             : 
     277                 :             : static gboolean
     278                 :           8 : g_local_file_has_uri_scheme (GFile      *file,
     279                 :             :                              const char *uri_scheme)
     280                 :             : {
     281                 :           8 :   return g_ascii_strcasecmp (uri_scheme, "file") == 0;
     282                 :             : }
     283                 :             : 
     284                 :             : static char *
     285                 :          19 : g_local_file_get_uri_scheme (GFile *file)
     286                 :             : {
     287                 :          19 :   return g_strdup ("file");
     288                 :             : }
     289                 :             : 
     290                 :             : static char *
     291                 :          46 : g_local_file_get_basename (GFile *file)
     292                 :             : {
     293                 :          46 :   return g_path_get_basename (G_LOCAL_FILE (file)->filename);
     294                 :             : }
     295                 :             : 
     296                 :             : static char *
     297                 :         393 : g_local_file_get_path (GFile *file)
     298                 :             : {
     299                 :         786 :   return g_strdup (G_LOCAL_FILE (file)->filename);
     300                 :             : }
     301                 :             : 
     302                 :             : static char *
     303                 :          41 : g_local_file_get_uri (GFile *file)
     304                 :             : {
     305                 :          41 :   return g_filename_to_uri (G_LOCAL_FILE (file)->filename, NULL, NULL);
     306                 :             : }
     307                 :             : 
     308                 :             : static gboolean
     309                 :           6 : get_filename_charset (const gchar **filename_charset)
     310                 :             : {
     311                 :             :   const gchar **charsets;
     312                 :             :   gboolean is_utf8;
     313                 :             :   
     314                 :           6 :   is_utf8 = g_get_filename_charsets (&charsets);
     315                 :             : 
     316                 :           6 :   if (filename_charset)
     317                 :           6 :     *filename_charset = charsets[0];
     318                 :             :   
     319                 :           6 :   return is_utf8;
     320                 :             : }
     321                 :             : 
     322                 :             : static gboolean
     323                 :           6 : name_is_valid_for_display (const char *string,
     324                 :             :                            gboolean    is_valid_utf8)
     325                 :             : {
     326                 :             :   char c;
     327                 :             : 
     328                 :          12 :   if (!is_valid_utf8 &&
     329                 :           6 :       !g_utf8_validate (string, -1, NULL))
     330                 :           0 :     return FALSE;
     331                 :             : 
     332                 :         139 :   while ((c = *string++) != 0)
     333                 :             :     {
     334                 :         134 :       if (g_ascii_iscntrl (c))
     335                 :           1 :         return FALSE;
     336                 :             :     }
     337                 :             : 
     338                 :           5 :   return TRUE;
     339                 :             : }
     340                 :             : 
     341                 :             : static char *
     342                 :           6 : g_local_file_get_parse_name (GFile *file)
     343                 :             : {
     344                 :             :   const char *filename;
     345                 :             :   char *parse_name;
     346                 :             :   const gchar *charset;
     347                 :             :   char *utf8_filename;
     348                 :             :   char *roundtripped_filename;
     349                 :             :   gboolean free_utf8_filename;
     350                 :             :   gboolean is_valid_utf8;
     351                 :             :   char *escaped_path;
     352                 :             :   
     353                 :           6 :   filename = G_LOCAL_FILE (file)->filename;
     354                 :           6 :   if (get_filename_charset (&charset))
     355                 :             :     {
     356                 :           6 :       utf8_filename = (char *)filename;
     357                 :           6 :       free_utf8_filename = FALSE;
     358                 :           6 :       is_valid_utf8 = FALSE; /* Can't guarantee this */
     359                 :             :     }
     360                 :             :   else
     361                 :             :     {
     362                 :           0 :       utf8_filename = g_convert (filename, -1, 
     363                 :             :                                  "UTF-8", charset, NULL, NULL, NULL);
     364                 :           0 :       free_utf8_filename = TRUE;
     365                 :           0 :       is_valid_utf8 = TRUE;
     366                 :             : 
     367                 :           0 :       if (utf8_filename != NULL)
     368                 :             :         {
     369                 :             :           /* Make sure we can roundtrip: */
     370                 :           0 :           roundtripped_filename = g_convert (utf8_filename, -1,
     371                 :             :                                              charset, "UTF-8", NULL, NULL, NULL);
     372                 :             :           
     373                 :           0 :           if (roundtripped_filename == NULL ||
     374                 :           0 :               strcmp (filename, roundtripped_filename) != 0)
     375                 :             :             {
     376                 :           0 :               g_free (utf8_filename);
     377                 :           0 :               utf8_filename = NULL;
     378                 :             :             }
     379                 :             : 
     380                 :           0 :           g_free (roundtripped_filename);
     381                 :             :         }
     382                 :             :     }
     383                 :             : 
     384                 :          12 :   if (utf8_filename != NULL &&
     385                 :           6 :       name_is_valid_for_display (utf8_filename, is_valid_utf8))
     386                 :             :     {
     387                 :           5 :       if (free_utf8_filename)
     388                 :           0 :         parse_name = utf8_filename;
     389                 :             :       else
     390                 :           5 :         parse_name = g_strdup (utf8_filename);
     391                 :             :     }
     392                 :             :   else
     393                 :             :     {
     394                 :             : #ifdef G_OS_WIN32
     395                 :             :       char *dup_filename, *p, *backslash;
     396                 :             : 
     397                 :             :       /* Turn backslashes into forward slashes like
     398                 :             :        * g_filename_to_uri() would do (but we can't use that because
     399                 :             :        * it doesn't output IRIs).
     400                 :             :        */
     401                 :             :       dup_filename = g_strdup (filename);
     402                 :             :       filename = p = dup_filename;
     403                 :             : 
     404                 :             :       while ((backslash = strchr (p, '\\')) != NULL)
     405                 :             :         {
     406                 :             :           *backslash = '/';
     407                 :             :           p = backslash + 1;
     408                 :             :         }
     409                 :             : #endif
     410                 :             : 
     411                 :           1 :       escaped_path = g_uri_escape_string (filename,
     412                 :             :                                           G_URI_RESERVED_CHARS_ALLOWED_IN_PATH_ELEMENT "/",
     413                 :             :                                           TRUE);
     414                 :           1 :       parse_name = g_strconcat ("file://",
     415                 :           1 :                                 (*escaped_path != '/') ? "/" : "",
     416                 :             :                                 escaped_path,
     417                 :             :                                 NULL);
     418                 :             :       
     419                 :           1 :       g_free (escaped_path);
     420                 :             : #ifdef G_OS_WIN32
     421                 :             :       g_free (dup_filename);
     422                 :             : #endif
     423                 :           1 :       if (free_utf8_filename)
     424                 :           0 :         g_free (utf8_filename);
     425                 :             :     }
     426                 :             :   
     427                 :           6 :   return parse_name;
     428                 :             : }
     429                 :             : 
     430                 :             : static GFile *
     431                 :          65 : g_local_file_get_parent (GFile *file)
     432                 :             : {
     433                 :          65 :   GLocalFile *local = G_LOCAL_FILE (file);
     434                 :             :   const char *non_root;
     435                 :             :   char *dirname;
     436                 :             :   GFile *parent;
     437                 :             : 
     438                 :             :   /* Check for root; local->filename is guaranteed to be absolute, so
     439                 :             :    * g_path_skip_root() should never return NULL. */
     440                 :          65 :   non_root = g_path_skip_root (local->filename);
     441                 :          65 :   g_assert (non_root != NULL);
     442                 :             : 
     443                 :          65 :   if (*non_root == 0)
     444                 :           3 :     return NULL;
     445                 :             : 
     446                 :          62 :   dirname = g_path_get_dirname (local->filename);
     447                 :          62 :   parent = _g_local_file_new (dirname);
     448                 :          62 :   g_free (dirname);
     449                 :          62 :   return parent;
     450                 :             : }
     451                 :             : 
     452                 :             : static GFile *
     453                 :           5 : g_local_file_dup (GFile *file)
     454                 :             : {
     455                 :           5 :   GLocalFile *local = G_LOCAL_FILE (file);
     456                 :             : 
     457                 :           5 :   return _g_local_file_new (local->filename);
     458                 :             : }
     459                 :             : 
     460                 :             : static guint
     461                 :           5 : g_local_file_hash (GFile *file)
     462                 :             : {
     463                 :           5 :   GLocalFile *local = G_LOCAL_FILE (file);
     464                 :             :   
     465                 :           5 :   return g_str_hash (local->filename);
     466                 :             : }
     467                 :             : 
     468                 :             : static gboolean
     469                 :          88 : g_local_file_equal (GFile *file1,
     470                 :             :                     GFile *file2)
     471                 :             : {
     472                 :          88 :   GLocalFile *local1 = G_LOCAL_FILE (file1);
     473                 :          88 :   GLocalFile *local2 = G_LOCAL_FILE (file2);
     474                 :             : 
     475                 :          88 :   return g_str_equal (local1->filename, local2->filename);
     476                 :             : }
     477                 :             : 
     478                 :             : static const char *
     479                 :          87 : match_prefix (const char *path, 
     480                 :             :               const char *prefix)
     481                 :             : {
     482                 :             :   size_t prefix_len;
     483                 :             : 
     484                 :          87 :   prefix_len = strlen (prefix);
     485                 :          87 :   if (strncmp (path, prefix, prefix_len) != 0)
     486                 :           8 :     return NULL;
     487                 :             :   
     488                 :             :   /* Handle the case where prefix is the root, so that
     489                 :             :    * the IS_DIR_SEPRARATOR check below works */
     490                 :          79 :   if (prefix_len > 0 &&
     491                 :          79 :       G_IS_DIR_SEPARATOR (prefix[prefix_len-1]))
     492                 :           0 :     prefix_len--;
     493                 :             :   
     494                 :          79 :   return path + prefix_len;
     495                 :             : }
     496                 :             : 
     497                 :             : static gboolean
     498                 :          16 : g_local_file_prefix_matches (GFile *parent,
     499                 :             :                              GFile *descendant)
     500                 :             : {
     501                 :          16 :   GLocalFile *parent_local = G_LOCAL_FILE (parent);
     502                 :          16 :   GLocalFile *descendant_local = G_LOCAL_FILE (descendant);
     503                 :             :   const char *remainder;
     504                 :             : 
     505                 :          16 :   remainder = match_prefix (descendant_local->filename, parent_local->filename);
     506                 :          16 :   if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder))
     507                 :          12 :     return TRUE;
     508                 :           4 :   return FALSE;
     509                 :             : }
     510                 :             : 
     511                 :             : static char *
     512                 :          71 : g_local_file_get_relative_path (GFile *parent,
     513                 :             :                                 GFile *descendant)
     514                 :             : {
     515                 :          71 :   GLocalFile *parent_local = G_LOCAL_FILE (parent);
     516                 :          71 :   GLocalFile *descendant_local = G_LOCAL_FILE (descendant);
     517                 :             :   const char *remainder;
     518                 :             : 
     519                 :          71 :   remainder = match_prefix (descendant_local->filename, parent_local->filename);
     520                 :             :   
     521                 :          71 :   if (remainder != NULL && G_IS_DIR_SEPARATOR (*remainder))
     522                 :         134 :     return g_strdup (remainder + 1);
     523                 :           4 :   return NULL;
     524                 :             : }
     525                 :             : 
     526                 :             : static GFile *
     527                 :        1217 : g_local_file_resolve_relative_path (GFile      *file,
     528                 :             :                                     const char *relative_path)
     529                 :             : {
     530                 :        1217 :   GLocalFile *local = G_LOCAL_FILE (file);
     531                 :             :   char *filename;
     532                 :             :   GFile *child;
     533                 :             : 
     534                 :        1217 :   if (g_path_is_absolute (relative_path))
     535                 :           0 :     return _g_local_file_new (relative_path);
     536                 :             :   
     537                 :        1217 :   filename = g_build_filename (local->filename, relative_path, NULL);
     538                 :        1217 :   child = _g_local_file_new (filename);
     539                 :        1217 :   g_free (filename);
     540                 :             :   
     541                 :        1217 :   return child;
     542                 :             : }
     543                 :             : 
     544                 :             : static GFileEnumerator *
     545                 :         231 : g_local_file_enumerate_children (GFile                *file,
     546                 :             :                                  const char           *attributes,
     547                 :             :                                  GFileQueryInfoFlags   flags,
     548                 :             :                                  GCancellable         *cancellable,
     549                 :             :                                  GError              **error)
     550                 :             : {
     551                 :         231 :   GLocalFile *local = G_LOCAL_FILE (file);
     552                 :         231 :   return _g_local_file_enumerator_new (local,
     553                 :             :                                        attributes, flags,
     554                 :             :                                        cancellable, error);
     555                 :             : }
     556                 :             : 
     557                 :             : static GFile *
     558                 :           1 : g_local_file_get_child_for_display_name (GFile        *file,
     559                 :             :                                          const char   *display_name,
     560                 :             :                                          GError      **error)
     561                 :             : {
     562                 :             :   GFile *new_file;
     563                 :             :   char *basename;
     564                 :             : 
     565                 :           1 :   basename = g_filename_from_utf8 (display_name, -1, NULL, NULL, NULL);
     566                 :           1 :   if (basename == NULL)
     567                 :             :     {
     568                 :           0 :       g_set_error (error, G_IO_ERROR,
     569                 :             :                    G_IO_ERROR_INVALID_FILENAME,
     570                 :             :                    _("Invalid filename %s"), display_name);
     571                 :           0 :       return NULL;
     572                 :             :     }
     573                 :             : 
     574                 :           1 :   new_file = g_file_get_child (file, basename);
     575                 :           1 :   g_free (basename);
     576                 :             :   
     577                 :           1 :   return new_file;
     578                 :             : }
     579                 :             : 
     580                 :             : #if defined(USE_STATFS) && !defined(HAVE_STRUCT_STATFS_F_FSTYPENAME)
     581                 :             : static const char *
     582                 :           0 : get_fs_type (long f_type)
     583                 :             : {
     584                 :             :   /* filesystem ids taken from linux manpage */
     585                 :           0 :   switch (f_type) 
     586                 :             :     {
     587                 :           0 :     case 0xadf5:
     588                 :           0 :       return "adfs";
     589                 :           0 :     case 0x5346414f:
     590                 :           0 :       return "afs";
     591                 :           0 :     case 0x0187:
     592                 :           0 :       return "autofs";
     593                 :           0 :     case 0xADFF:
     594                 :           0 :       return "affs";
     595                 :           0 :     case 0x62646576:
     596                 :           0 :       return "bdevfs";
     597                 :           0 :     case 0x42465331:
     598                 :           0 :       return "befs";
     599                 :           0 :     case 0x1BADFACE:
     600                 :           0 :       return "bfs";
     601                 :           0 :     case 0x42494e4d:
     602                 :           0 :       return "binfmt_misc";
     603                 :           0 :     case 0x9123683E:
     604                 :           0 :       return "btrfs";
     605                 :           0 :     case 0x73727279:
     606                 :           0 :       return "btrfs_test_fs";
     607                 :           0 :     case 0x27e0eb:
     608                 :           0 :       return "cgroup";
     609                 :           0 :     case 0x63677270:
     610                 :           0 :       return "cgroup2";
     611                 :           0 :     case 0xFF534D42:
     612                 :           0 :       return "cifs";
     613                 :           0 :     case 0x73757245:
     614                 :           0 :       return "coda";
     615                 :           0 :     case 0x012FF7B7:
     616                 :           0 :       return "coh";
     617                 :           0 :     case 0x62656570:
     618                 :           0 :       return "configfs";
     619                 :           0 :     case 0x28cd3d45:
     620                 :           0 :       return "cramfs";
     621                 :           0 :     case 0x64626720:
     622                 :           0 :       return "debugfs";
     623                 :           0 :     case 0x1373:
     624                 :           0 :       return "devfs";
     625                 :           0 :     case 0x1cd1:
     626                 :           0 :       return "devpts";
     627                 :           0 :     case 0xf15f:
     628                 :           0 :       return "ecryptfs";
     629                 :           0 :     case 0xde5e81e4:
     630                 :           0 :       return "efivarfs";
     631                 :           0 :     case 0x00414A53:
     632                 :           0 :       return "efs";
     633                 :           0 :     case 0x2011BAB0UL:
     634                 :           0 :       return "exfat";
     635                 :           0 :     case 0x137D:
     636                 :           0 :       return "ext";
     637                 :           0 :     case 0xEF51:
     638                 :           0 :       return "ext2";
     639                 :           0 :     case 0xEF53:
     640                 :           0 :       return "ext3/ext4";
     641                 :           0 :     case 0xF2F52010:
     642                 :           0 :       return "f2fs";
     643                 :           0 :     case 0x65735546:
     644                 :           0 :       return "fuse";
     645                 :           0 :     case 0x65735543:
     646                 :           0 :       return "fusectl";
     647                 :           0 :     case 0xBAD1DEA:
     648                 :           0 :       return "futexfs";
     649                 :           0 :     case 0x4244:
     650                 :           0 :       return "hfs";
     651                 :           0 :     case 0x00c0ffee:
     652                 :           0 :       return "hostfs";
     653                 :           0 :     case 0xF995E849:
     654                 :           0 :       return "hpfs";
     655                 :           0 :     case 0x958458f6:
     656                 :           0 :       return "hugetlbfs";
     657                 :           0 :     case 0x9660:
     658                 :           0 :       return "isofs";
     659                 :           0 :     case 0x72b6:
     660                 :           0 :       return "jffs2";
     661                 :           0 :     case 0x3153464a:
     662                 :           0 :       return "jfs";
     663                 :           0 :     case 0x137F:
     664                 :           0 :       return "minix";
     665                 :           0 :     case 0x138F:
     666                 :           0 :       return "minix2";
     667                 :           0 :     case 0x2468:
     668                 :           0 :       return "minix2";
     669                 :           0 :     case 0x2478:
     670                 :           0 :       return "minix22";
     671                 :           0 :     case 0x4d5a:
     672                 :           0 :       return "minix3";
     673                 :           0 :     case 0x19800202:
     674                 :           0 :       return "mqueue";
     675                 :           0 :     case 0x4d44:
     676                 :           0 :       return "msdos";
     677                 :           0 :     case 0x564c:
     678                 :           0 :       return "ncp";
     679                 :           0 :     case 0x6969:
     680                 :           0 :       return "nfs";
     681                 :           0 :     case 0x3434:
     682                 :           0 :       return "nilfs";
     683                 :           0 :     case 0x6e736673:
     684                 :           0 :       return "nsfs";
     685                 :           0 :     case 0x5346544e:
     686                 :           0 :       return "ntfs";
     687                 :           0 :     case 0x7461636f:
     688                 :           0 :       return "ocfs2";
     689                 :           0 :     case 0x9fa1:
     690                 :           0 :       return "openprom";
     691                 :           0 :     case 0x794c7630:
     692                 :           0 :       return "overlay";
     693                 :           0 :     case 0x50495045:
     694                 :           0 :       return "pipefs";
     695                 :           0 :     case 0x9fa0:
     696                 :           0 :       return "proc";
     697                 :           0 :     case 0x6165676C:
     698                 :           0 :       return "pstore";
     699                 :           0 :     case 0x002f:
     700                 :           0 :       return "qnx4";
     701                 :           0 :     case 0x68191122:
     702                 :           0 :       return "qnx6";
     703                 :           0 :     case 0x858458f6:
     704                 :           0 :       return "ramfs";
     705                 :           0 :     case 0x52654973:
     706                 :           0 :       return "reiserfs";
     707                 :           0 :     case 0x7275:
     708                 :           0 :       return "romfs";
     709                 :           0 :     case 0x67596969:
     710                 :           0 :       return "rpc_pipefs";
     711                 :           0 :     case 0x73636673:
     712                 :           0 :       return "securityfs";
     713                 :           0 :     case 0xf97cff8c:
     714                 :           0 :       return "selinuxfs";
     715                 :           0 :     case 0x43415d53:
     716                 :           0 :       return "smackfs";
     717                 :           0 :     case 0x517B:
     718                 :           0 :       return "smb";
     719                 :           0 :     case 0xfe534d42:
     720                 :           0 :       return "smb2";
     721                 :           0 :     case 0x534F434B:
     722                 :           0 :       return "sockfs";
     723                 :           0 :     case 0x73717368:
     724                 :           0 :       return "squashfs";
     725                 :           0 :     case 0x62656572:
     726                 :           0 :       return "sysfs";
     727                 :           0 :     case 0x012FF7B6:
     728                 :           0 :       return "sysv2";
     729                 :           0 :     case 0x012FF7B5:
     730                 :           0 :       return "sysv4";
     731                 :           0 :     case 0x01021994:
     732                 :           0 :       return "tmpfs";
     733                 :           0 :     case 0x74726163:
     734                 :           0 :       return "tracefs";
     735                 :           0 :     case 0x15013346:
     736                 :           0 :       return "udf";
     737                 :           0 :     case 0x00011954:
     738                 :           0 :       return "ufs";
     739                 :           0 :     case 0x9fa2:
     740                 :           0 :       return "usbdevice";
     741                 :           0 :     case 0x01021997:
     742                 :           0 :       return "v9fs";
     743                 :           0 :     case 0xa501FCF5:
     744                 :           0 :       return "vxfs";
     745                 :           0 :     case 0xabba1974:
     746                 :           0 :       return "xenfs";
     747                 :           0 :     case 0x012FF7B4:
     748                 :           0 :       return "xenix";
     749                 :           0 :     case 0x58465342:
     750                 :           0 :       return "xfs";
     751                 :           0 :     case 0x012FD16D:
     752                 :           0 :       return "xiafs";
     753                 :           0 :     case 0x52345362:
     754                 :           0 :       return "reiser4";
     755                 :           0 :     default:
     756                 :           0 :       return NULL;
     757                 :             :     }
     758                 :             : }
     759                 :             : #endif
     760                 :             : 
     761                 :             : #ifndef G_OS_WIN32
     762                 :             : 
     763                 :             : G_LOCK_DEFINE_STATIC(mount_info_hash);
     764                 :             : static GHashTable *mount_info_hash = NULL;
     765                 :             : static guint64 mount_info_hash_cache_time = 0;
     766                 :             : 
     767                 :             : typedef enum {
     768                 :             :   MOUNT_INFO_READONLY = 1<<0
     769                 :             : } MountInfo;
     770                 :             : 
     771                 :             : static gboolean
     772                 :           0 : device_equal (gconstpointer v1,
     773                 :             :               gconstpointer v2)
     774                 :             : {
     775                 :           0 :   return *(dev_t *)v1 == *(dev_t *)v2;
     776                 :             : }
     777                 :             : 
     778                 :             : static guint
     779                 :           0 : device_hash (gconstpointer v)
     780                 :             : {
     781                 :           0 :   return (guint) *(dev_t *)v;
     782                 :             : }
     783                 :             : 
     784                 :             : static void
     785                 :           0 : get_mount_info (GFileInfo             *fs_info,
     786                 :             :                 const char            *path,
     787                 :             :                 GFileAttributeMatcher *matcher)
     788                 :             : {
     789                 :             :   GStatBuf buf;
     790                 :             :   gboolean got_info;
     791                 :             :   gpointer info_as_ptr;
     792                 :             :   guint mount_info;
     793                 :             :   char *mountpoint;
     794                 :             :   dev_t *dev;
     795                 :             :   GUnixMountEntry *mount;
     796                 :             :   guint64 cache_time;
     797                 :           0 :   gboolean is_remote = FALSE;
     798                 :             : 
     799                 :           0 :   if (g_lstat (path, &buf) != 0)
     800                 :           0 :     return;
     801                 :             : 
     802                 :           0 :   G_LOCK (mount_info_hash);
     803                 :             : 
     804                 :           0 :   if (mount_info_hash == NULL)
     805                 :           0 :     mount_info_hash = g_hash_table_new_full (device_hash, device_equal,
     806                 :             :                                              g_free, NULL);
     807                 :             : 
     808                 :             : 
     809                 :           0 :   if (g_unix_mount_entries_changed_since (mount_info_hash_cache_time))
     810                 :           0 :     g_hash_table_remove_all (mount_info_hash);
     811                 :             :   
     812                 :           0 :   got_info = g_hash_table_lookup_extended (mount_info_hash,
     813                 :             :                                            &buf.st_dev,
     814                 :             :                                            NULL,
     815                 :             :                                            &info_as_ptr);
     816                 :             :   
     817                 :           0 :   G_UNLOCK (mount_info_hash);
     818                 :             :   
     819                 :           0 :   mount_info = GPOINTER_TO_UINT (info_as_ptr);
     820                 :             :   
     821                 :           0 :   if (!got_info)
     822                 :             :     {
     823                 :           0 :       mount_info = 0;
     824                 :             : 
     825                 :           0 :       mountpoint = find_mountpoint_for (path, buf.st_dev, FALSE);
     826                 :           0 :       if (mountpoint == NULL)
     827                 :           0 :         mountpoint = g_strdup ("/");
     828                 :             : 
     829                 :           0 :       mount = g_unix_mount_entry_at (mountpoint, &cache_time);
     830                 :           0 :       if (mount)
     831                 :             :         {
     832                 :           0 :           if (g_unix_mount_entry_is_readonly (mount))
     833                 :           0 :             mount_info |= MOUNT_INFO_READONLY;
     834                 :           0 :           if (is_remote_fs_type (g_unix_mount_entry_get_fs_type (mount)))
     835                 :           0 :             is_remote = TRUE;
     836                 :             :           
     837                 :           0 :           g_unix_mount_entry_free (mount);
     838                 :             :         }
     839                 :             : 
     840                 :           0 :       g_free (mountpoint);
     841                 :             : 
     842                 :           0 :       dev = g_new0 (dev_t, 1);
     843                 :           0 :       *dev = buf.st_dev;
     844                 :             :       
     845                 :           0 :       G_LOCK (mount_info_hash);
     846                 :           0 :       mount_info_hash_cache_time = cache_time;
     847                 :           0 :       g_hash_table_insert (mount_info_hash, dev, GUINT_TO_POINTER (mount_info));
     848                 :           0 :       G_UNLOCK (mount_info_hash);
     849                 :             :     }
     850                 :             : 
     851                 :           0 :   if (g_file_attribute_matcher_matches (matcher,
     852                 :             :                                         G_FILE_ATTRIBUTE_FILESYSTEM_READONLY))
     853                 :           0 :     g_file_info_set_attribute_boolean (fs_info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY,
     854                 :           0 :                                        (mount_info & MOUNT_INFO_READONLY));
     855                 :             : 
     856                 :           0 :   if (g_file_attribute_matcher_matches (matcher,
     857                 :             :                                         G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE))
     858                 :           0 :     g_file_info_set_attribute_boolean (fs_info, G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE, is_remote);
     859                 :             : }
     860                 :             : 
     861                 :             : #endif
     862                 :             : 
     863                 :             : #ifdef G_OS_WIN32
     864                 :             : 
     865                 :             : static wchar_t *
     866                 :             : get_volume_for_path (const char *path)
     867                 :             : {
     868                 :             :   long len;
     869                 :             :   wchar_t *wpath;
     870                 :             :   wchar_t *result;
     871                 :             : 
     872                 :             :   wpath = g_utf8_to_utf16 (path, -1, NULL, NULL, NULL);
     873                 :             :   result = g_new (wchar_t, MAX_PATH);
     874                 :             : 
     875                 :             :   if (!GetVolumePathNameW (wpath, result, MAX_PATH))
     876                 :             :     {
     877                 :             :       char *msg = g_win32_error_message (GetLastError ());
     878                 :             :       g_critical ("GetVolumePathName failed: %s", msg);
     879                 :             :       g_free (msg);
     880                 :             :       g_free (result);
     881                 :             :       g_free (wpath);
     882                 :             :       return NULL;
     883                 :             :     }
     884                 :             : 
     885                 :             :   len = wcslen (result);
     886                 :             :   if (len > 0 && result[len-1] != L'\\')
     887                 :             :     {
     888                 :             :       result = g_renew (wchar_t, result, len + 2);
     889                 :             :       result[len] = L'\\';
     890                 :             :       result[len + 1] = 0;
     891                 :             :     }
     892                 :             : 
     893                 :             :   g_free (wpath);
     894                 :             :   return result;
     895                 :             : }
     896                 :             : 
     897                 :             : static char *
     898                 :             : find_mountpoint_for (const char *file, dev_t dev, gboolean resolve_basename_symlink)
     899                 :             : {
     900                 :             :   wchar_t *wpath;
     901                 :             :   char *utf8_path;
     902                 :             : 
     903                 :             :   wpath = get_volume_for_path (file);
     904                 :             :   if (!wpath)
     905                 :             :     return NULL;
     906                 :             : 
     907                 :             :   utf8_path = g_utf16_to_utf8 (wpath, -1, NULL, NULL, NULL);
     908                 :             : 
     909                 :             :   g_free (wpath);
     910                 :             :   return utf8_path;
     911                 :             : }
     912                 :             : 
     913                 :             : static void
     914                 :             : get_filesystem_readonly (GFileInfo  *info,
     915                 :             :                          const char *path)
     916                 :             : {
     917                 :             :   wchar_t *rootdir;
     918                 :             : 
     919                 :             :   rootdir = get_volume_for_path (path);
     920                 :             : 
     921                 :             :   if (rootdir)
     922                 :             :     {
     923                 :             :       DWORD flags;
     924                 :             :       if (GetVolumeInformationW (rootdir, NULL, 0, NULL, NULL, &flags, NULL, 0))
     925                 :             :         g_file_info_set_attribute_boolean (info, G_FILE_ATTRIBUTE_FILESYSTEM_READONLY,
     926                 :             :                                            (flags & FILE_READ_ONLY_VOLUME) != 0);
     927                 :             :     }
     928                 :             : 
     929                 :             :   g_free (rootdir);
     930                 :             : }
     931                 :             : 
     932                 :             : #endif /* G_OS_WIN32 */
     933                 :             : 
     934                 :             : #pragma GCC diagnostic push
     935                 :             : #pragma GCC diagnostic ignored "-Wformat-nonliteral"
     936                 :             : static void
     937                 :         267 : g_set_io_error (GError      **error,
     938                 :             :                 const gchar  *msg,
     939                 :             :                 GFile        *file,
     940                 :             :                 gint          errsv)
     941                 :             : {
     942                 :         267 :   GLocalFile *local = G_LOCAL_FILE (file);
     943                 :             :   gchar *display_name;
     944                 :             : 
     945                 :         267 :   display_name = g_filename_display_name (local->filename);
     946                 :         267 :   g_set_error (error, G_IO_ERROR, g_io_error_from_errno (errsv),
     947                 :             :                msg, display_name, g_strerror (errsv));
     948                 :         267 :   g_free (display_name);
     949                 :         267 : }
     950                 :             : #pragma GCC diagnostic pop
     951                 :             : 
     952                 :             : static GFileInfo *
     953                 :           0 : g_local_file_query_filesystem_info (GFile         *file,
     954                 :             :                                     const char    *attributes,
     955                 :             :                                     GCancellable  *cancellable,
     956                 :             :                                     GError       **error)
     957                 :             : {
     958                 :           0 :   GLocalFile *local = G_LOCAL_FILE (file);
     959                 :             :   GFileInfo *info;
     960                 :           0 :   int statfs_result = 0;
     961                 :             :   gboolean no_size;
     962                 :             : #ifndef G_OS_WIN32
     963                 :             :   const char *fstype;
     964                 :             : #ifdef USE_STATFS
     965                 :             :   guint64 block_size;
     966                 :             :   struct statfs statfs_buffer;
     967                 :             : #elif defined(USE_STATVFS)
     968                 :             :   guint64 block_size;
     969                 :             :   struct statvfs statfs_buffer;
     970                 :             : #endif /* USE_STATFS */
     971                 :             : #endif /* G_OS_WIN32 */
     972                 :             :   GFileAttributeMatcher *attribute_matcher;
     973                 :             :         
     974                 :           0 :   no_size = FALSE;
     975                 :             :   
     976                 :             : #ifdef USE_STATFS
     977                 :             :   
     978                 :             : #if STATFS_ARGS == 2
     979                 :           0 :   statfs_result = statfs (local->filename, &statfs_buffer);
     980                 :             : #elif STATFS_ARGS == 4
     981                 :             :   statfs_result = statfs (local->filename, &statfs_buffer,
     982                 :             :                           sizeof (statfs_buffer), 0);
     983                 :             : #endif /* STATFS_ARGS == 2 */
     984                 :           0 :   block_size = statfs_buffer.f_bsize;
     985                 :             :   
     986                 :             :   /* Many backends can't report free size (for instance the gvfs fuse
     987                 :             :    * backend for backend not supporting this), and set f_bfree to 0,
     988                 :             :    *  but it can be 0 for real too. We treat the available == 0 and
     989                 :             :    * free == 0 case as "both of these are invalid", but only on file systems
     990                 :             :    * which are known to not support this (otherwise we can omit metadata for
     991                 :             :    * systems which are legitimately full). */
     992                 :             : #if defined(__linux__)
     993                 :           0 :   if (statfs_result == 0 &&
     994                 :           0 :       statfs_buffer.f_bavail == 0 && statfs_buffer.f_bfree == 0 &&
     995                 :             :       (/* linux/ncp_fs.h: NCP_SUPER_MAGIC == 0x564c */
     996                 :           0 :        statfs_buffer.f_type == 0x564c ||
     997                 :             :        /* man statfs: FUSE_SUPER_MAGIC == 0x65735546 */
     998                 :           0 :        statfs_buffer.f_type == 0x65735546))
     999                 :           0 :     no_size = TRUE;
    1000                 :             : #endif  /* __linux__ */
    1001                 :             :   
    1002                 :             : #elif defined(USE_STATVFS)
    1003                 :             :   statfs_result = statvfs (local->filename, &statfs_buffer);
    1004                 :             :   block_size = statfs_buffer.f_frsize; 
    1005                 :             : #endif /* USE_STATFS */
    1006                 :             : 
    1007                 :           0 :   if (statfs_result == -1)
    1008                 :             :     {
    1009                 :           0 :       int errsv = errno;
    1010                 :             : 
    1011                 :           0 :       g_set_io_error (error,
    1012                 :             :                       _("Error getting filesystem info for %s: %s"),
    1013                 :             :                       file, errsv);
    1014                 :           0 :       return NULL;
    1015                 :             :     }
    1016                 :             : 
    1017                 :           0 :   info = g_file_info_new ();
    1018                 :             : 
    1019                 :           0 :   attribute_matcher = g_file_attribute_matcher_new (attributes);
    1020                 :             :   
    1021                 :           0 :   if (!no_size &&
    1022                 :           0 :       g_file_attribute_matcher_matches (attribute_matcher,
    1023                 :             :                                         G_FILE_ATTRIBUTE_FILESYSTEM_FREE))
    1024                 :             :     {
    1025                 :             : #ifdef G_OS_WIN32
    1026                 :             :       gchar *localdir = g_path_get_dirname (local->filename);
    1027                 :             :       wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
    1028                 :             :       ULARGE_INTEGER li;
    1029                 :             :       
    1030                 :             :       g_free (localdir);
    1031                 :             :       if (GetDiskFreeSpaceExW (wdirname, &li, NULL, NULL))
    1032                 :             :         g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_FREE, (guint64)li.QuadPart);
    1033                 :             :       g_free (wdirname);
    1034                 :             : #else
    1035                 :             : #if defined(USE_STATFS) || defined(USE_STATVFS)
    1036                 :           0 :       g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_FREE, block_size * statfs_buffer.f_bavail);
    1037                 :             : #endif
    1038                 :             : #endif
    1039                 :             :     }
    1040                 :           0 :   if (!no_size &&
    1041                 :           0 :       g_file_attribute_matcher_matches (attribute_matcher,
    1042                 :             :                                         G_FILE_ATTRIBUTE_FILESYSTEM_SIZE))
    1043                 :             :     {
    1044                 :             : #ifdef G_OS_WIN32
    1045                 :             :       gchar *localdir = g_path_get_dirname (local->filename);
    1046                 :             :       wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
    1047                 :             :       ULARGE_INTEGER li;
    1048                 :             :       
    1049                 :             :       g_free (localdir);
    1050                 :             :       if (GetDiskFreeSpaceExW (wdirname, NULL, &li, NULL))
    1051                 :             :         g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_SIZE,  (guint64)li.QuadPart);
    1052                 :             :       g_free (wdirname);
    1053                 :             : #else
    1054                 :             : #if defined(USE_STATFS) || defined(USE_STATVFS)
    1055                 :           0 :       g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_SIZE, block_size * statfs_buffer.f_blocks);
    1056                 :             : #endif
    1057                 :             : #endif /* G_OS_WIN32 */
    1058                 :             :     }
    1059                 :             : 
    1060                 :           0 :   if (!no_size &&
    1061                 :           0 :       g_file_attribute_matcher_matches (attribute_matcher,
    1062                 :             :                                         G_FILE_ATTRIBUTE_FILESYSTEM_USED))
    1063                 :             :     {
    1064                 :             : #ifdef G_OS_WIN32
    1065                 :             :       gchar *localdir = g_path_get_dirname (local->filename);
    1066                 :             :       wchar_t *wdirname = g_utf8_to_utf16 (localdir, -1, NULL, NULL, NULL);
    1067                 :             :       ULARGE_INTEGER li_free;
    1068                 :             :       ULARGE_INTEGER li_total;
    1069                 :             : 
    1070                 :             :       g_free (localdir);
    1071                 :             :       if (GetDiskFreeSpaceExW (wdirname, &li_free, &li_total, NULL))
    1072                 :             :         g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_USED,  (guint64)li_total.QuadPart - (guint64)li_free.QuadPart);
    1073                 :             :       g_free (wdirname);
    1074                 :             : #else
    1075                 :           0 :       g_file_info_set_attribute_uint64 (info, G_FILE_ATTRIBUTE_FILESYSTEM_USED, block_size * (statfs_buffer.f_blocks - statfs_buffer.f_bfree));
    1076                 :             : #endif /* G_OS_WIN32 */
    1077                 :             :     }
    1078                 :             : 
    1079                 :             : #ifndef G_OS_WIN32
    1080                 :             : #ifdef USE_STATFS
    1081                 :             : #if defined(HAVE_STRUCT_STATFS_F_FSTYPENAME)
    1082                 :             :   fstype = statfs_buffer.f_fstypename;
    1083                 :             : #else
    1084                 :           0 :   fstype = get_fs_type (statfs_buffer.f_type);
    1085                 :             : #endif
    1086                 :             : 
    1087                 :             : #elif defined(USE_STATVFS)
    1088                 :             : #if defined(HAVE_STRUCT_STATVFS_F_FSTYPENAME)
    1089                 :             :   fstype = statfs_buffer.f_fstypename;
    1090                 :             : #elif defined(HAVE_STRUCT_STATVFS_F_BASETYPE)
    1091                 :             :   fstype = statfs_buffer.f_basetype;
    1092                 :             : #elif defined(HAVE_STRUCT_STATVFS_F_TYPE)
    1093                 :             :   fstype = get_fs_type (statfs_buffer.f_type);
    1094                 :             : #else
    1095                 :             :   fstype = NULL;
    1096                 :             : #endif
    1097                 :             : #endif /* USE_STATFS */
    1098                 :             : 
    1099                 :           0 :   if (fstype &&
    1100                 :           0 :       g_file_attribute_matcher_matches (attribute_matcher,
    1101                 :             :                                         G_FILE_ATTRIBUTE_FILESYSTEM_TYPE))
    1102                 :           0 :     g_file_info_set_attribute_string (info, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE, fstype);
    1103                 :             : #endif /* G_OS_WIN32 */
    1104                 :             : 
    1105                 :           0 :   if (g_file_attribute_matcher_matches (attribute_matcher,
    1106                 :           0 :                                         G_FILE_ATTRIBUTE_FILESYSTEM_READONLY) ||
    1107                 :           0 :       g_file_attribute_matcher_matches (attribute_matcher,
    1108                 :             :                                         G_FILE_ATTRIBUTE_FILESYSTEM_REMOTE))
    1109                 :             :     {
    1110                 :             : #ifdef G_OS_WIN32
    1111                 :             :       get_filesystem_readonly (info, local->filename);
    1112                 :             : #else
    1113                 :           0 :       get_mount_info (info, local->filename, attribute_matcher);
    1114                 :             : #endif /* G_OS_WIN32 */
    1115                 :             :     }
    1116                 :             : 
    1117                 :           0 :   g_file_attribute_matcher_unref (attribute_matcher);
    1118                 :             :   
    1119                 :           0 :   return info;
    1120                 :             : }
    1121                 :             : 
    1122                 :             : static GMount *
    1123                 :           0 : g_local_file_find_enclosing_mount (GFile         *file,
    1124                 :             :                                    GCancellable  *cancellable,
    1125                 :             :                                    GError       **error)
    1126                 :             : {
    1127                 :           0 :   GLocalFile *local = G_LOCAL_FILE (file);
    1128                 :             :   GStatBuf buf;
    1129                 :             :   char *mountpoint;
    1130                 :             :   GMount *mount;
    1131                 :             : 
    1132                 :           0 :   if (g_lstat (local->filename, &buf) != 0)
    1133                 :           0 :     goto error;
    1134                 :             : 
    1135                 :           0 :   mountpoint = find_mountpoint_for (local->filename, buf.st_dev, FALSE);
    1136                 :           0 :   if (mountpoint == NULL)
    1137                 :           0 :     goto error;
    1138                 :             : 
    1139                 :           0 :   mount = _g_mount_get_for_mount_path (mountpoint, cancellable);
    1140                 :           0 :   g_free (mountpoint);
    1141                 :           0 :   if (mount)
    1142                 :           0 :     return mount;
    1143                 :             : 
    1144                 :           0 : error:
    1145                 :           0 :   g_set_io_error (error,
    1146                 :             :                   /* Translators: This is an error message when trying to find
    1147                 :             :                    * the enclosing (user visible) mount of a file, but none
    1148                 :             :                    * exists.
    1149                 :             :                    */
    1150                 :             :                   _("Containing mount for file %s not found"),
    1151                 :             :                   file, 0);
    1152                 :             : 
    1153                 :           0 :   return NULL;
    1154                 :             : }
    1155                 :             : 
    1156                 :             : static GFile *
    1157                 :           0 : g_local_file_set_display_name (GFile         *file,
    1158                 :             :                                const char    *display_name,
    1159                 :             :                                GCancellable  *cancellable,
    1160                 :             :                                GError       **error)
    1161                 :             : {
    1162                 :             :   GLocalFile *local, *new_local;
    1163                 :             :   GFile *new_file, *parent;
    1164                 :             :   GStatBuf statbuf;
    1165                 :             :   GVfsClass *class;
    1166                 :             :   GVfs *vfs;
    1167                 :             :   int errsv;
    1168                 :             : 
    1169                 :           0 :   parent = g_file_get_parent (file);
    1170                 :           0 :   if (parent == NULL)
    1171                 :             :     {
    1172                 :           0 :       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
    1173                 :             :                            _("Can’t rename root directory"));
    1174                 :           0 :       return NULL;
    1175                 :             :     }
    1176                 :             :   
    1177                 :           0 :   new_file = g_file_get_child_for_display_name (parent, display_name, error);
    1178                 :           0 :   g_object_unref (parent);
    1179                 :             :   
    1180                 :           0 :   if (new_file == NULL)
    1181                 :           0 :     return NULL;
    1182                 :           0 :   local = G_LOCAL_FILE (file);
    1183                 :           0 :   new_local = G_LOCAL_FILE (new_file);
    1184                 :             : 
    1185                 :           0 :   if (g_lstat (new_local->filename, &statbuf) == -1) 
    1186                 :             :     {
    1187                 :           0 :       errsv = errno;
    1188                 :             : 
    1189                 :           0 :       if (errsv != ENOENT)
    1190                 :             :         {
    1191                 :           0 :           g_set_io_error (error, _("Error renaming file %s: %s"), new_file, errsv);
    1192                 :           0 :           return NULL;
    1193                 :             :         }
    1194                 :             :     }
    1195                 :             :   else
    1196                 :             :     {
    1197                 :           0 :       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_EXISTS,
    1198                 :             :                            _("Can’t rename file, filename already exists"));
    1199                 :           0 :       return NULL;
    1200                 :             :     }
    1201                 :             : 
    1202                 :           0 :   if (g_rename (local->filename, new_local->filename) == -1)
    1203                 :             :     {
    1204                 :           0 :       errsv = errno;
    1205                 :             : 
    1206                 :           0 :       if (errsv == EINVAL)
    1207                 :             :         /* We can't get a rename file into itself error here,
    1208                 :             :          * so this must be an invalid filename, on e.g. FAT
    1209                 :             :          */
    1210                 :           0 :         g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_INVALID_FILENAME,
    1211                 :             :                              _("Invalid filename"));
    1212                 :             :       else
    1213                 :           0 :         g_set_io_error (error,
    1214                 :             :                         _("Error renaming file %s: %s"),
    1215                 :             :                         file, errsv);
    1216                 :           0 :       g_object_unref (new_file);
    1217                 :           0 :       return NULL;
    1218                 :             :     }
    1219                 :             : 
    1220                 :           0 :   vfs = g_vfs_get_default ();
    1221                 :           0 :   class = G_VFS_GET_CLASS (vfs);
    1222                 :           0 :   if (class->local_file_moved)
    1223                 :           0 :     class->local_file_moved (vfs, local->filename, new_local->filename);
    1224                 :             : 
    1225                 :           0 :   return new_file;
    1226                 :             : }
    1227                 :             : 
    1228                 :             : static GFileInfo *
    1229                 :         627 : g_local_file_query_info (GFile                *file,
    1230                 :             :                          const char           *attributes,
    1231                 :             :                          GFileQueryInfoFlags   flags,
    1232                 :             :                          GCancellable         *cancellable,
    1233                 :             :                          GError              **error)
    1234                 :             : {
    1235                 :         627 :   GLocalFile *local = G_LOCAL_FILE (file);
    1236                 :             :   GFileInfo *info;
    1237                 :             :   GFileAttributeMatcher *matcher;
    1238                 :             :   char *basename, *dirname;
    1239                 :             :   GLocalParentFileInfo parent_info;
    1240                 :             : 
    1241                 :         627 :   matcher = g_file_attribute_matcher_new (attributes);
    1242                 :             :   
    1243                 :         627 :   basename = g_path_get_basename (local->filename);
    1244                 :             :   
    1245                 :         627 :   dirname = g_path_get_dirname (local->filename);
    1246                 :         627 :   _g_local_file_info_get_parent_info (dirname, matcher, &parent_info);
    1247                 :         627 :   g_free (dirname);
    1248                 :             :   
    1249                 :         627 :   info = _g_local_file_info_get (basename, local->filename,
    1250                 :             :                                  matcher, flags, &parent_info,
    1251                 :             :                                  error);
    1252                 :             :   
    1253                 :             : 
    1254                 :         627 :   _g_local_file_info_free_parent_info (&parent_info);
    1255                 :         627 :   g_free (basename);
    1256                 :             : 
    1257                 :         627 :   g_file_attribute_matcher_unref (matcher);
    1258                 :             : 
    1259                 :         627 :   return info;
    1260                 :             : }
    1261                 :             : 
    1262                 :             : /* FIXME: faccessat() is available on FreeBSD but appears to not work correctly
    1263                 :             :  * here. This needs diagnosing; https://gitlab.gnome.org/GNOME/glib/-/issues/3495 */
    1264                 :             : #if defined(HAVE_FACCESSAT) && !defined(__FreeBSD__)
    1265                 :             : static gboolean
    1266                 :         151 : g_local_file_query_exists (GFile        *file,
    1267                 :             :                            GCancellable *cancellable)
    1268                 :             : {
    1269                 :         151 :   GLocalFile *local = G_LOCAL_FILE (file);
    1270                 :             : 
    1271                 :         151 :   return faccessat (0, local->filename, F_OK, AT_EACCESS | AT_SYMLINK_NOFOLLOW) == 0;
    1272                 :             : }
    1273                 :             : #endif
    1274                 :             : 
    1275                 :             : static GFileAttributeInfoList *
    1276                 :          71 : g_local_file_query_settable_attributes (GFile         *file,
    1277                 :             :                                         GCancellable  *cancellable,
    1278                 :             :                                         GError       **error)
    1279                 :             : {
    1280                 :          71 :   return g_file_attribute_info_list_ref (local_writable_attributes);
    1281                 :             : }
    1282                 :             : 
    1283                 :             : static GFileAttributeInfoList *
    1284                 :          71 : g_local_file_query_writable_namespaces (GFile         *file,
    1285                 :             :                                         GCancellable  *cancellable,
    1286                 :             :                                         GError       **error)
    1287                 :             : {
    1288                 :             :   GFileAttributeInfoList *list;
    1289                 :             :   GVfsClass *class;
    1290                 :             :   GVfs *vfs;
    1291                 :             : 
    1292                 :          71 :   if (g_once_init_enter_pointer (&local_writable_namespaces))
    1293                 :             :     {
    1294                 :             :       /* Writable namespaces: */
    1295                 :             : 
    1296                 :           3 :       list = g_file_attribute_info_list_new ();
    1297                 :             : 
    1298                 :             : #ifdef HAVE_XATTR
    1299                 :           3 :       g_file_attribute_info_list_add (list,
    1300                 :             :                                       "xattr",
    1301                 :             :                                       G_FILE_ATTRIBUTE_TYPE_STRING,
    1302                 :             :                                       G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE |
    1303                 :             :                                       G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
    1304                 :           3 :       g_file_attribute_info_list_add (list,
    1305                 :             :                                       "xattr-sys",
    1306                 :             :                                       G_FILE_ATTRIBUTE_TYPE_STRING,
    1307                 :             :                                       G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED);
    1308                 :             : #endif
    1309                 :             : 
    1310                 :           3 :       vfs = g_vfs_get_default ();
    1311                 :           3 :       class = G_VFS_GET_CLASS (vfs);
    1312                 :           3 :       if (class->add_writable_namespaces)
    1313                 :           0 :         class->add_writable_namespaces (vfs, list);
    1314                 :             : 
    1315                 :           3 :       g_once_init_leave_pointer (&local_writable_namespaces, list);
    1316                 :             :     }
    1317                 :          71 :   list = (GFileAttributeInfoList *)local_writable_namespaces;
    1318                 :             : 
    1319                 :          71 :   return g_file_attribute_info_list_ref (list);
    1320                 :             : }
    1321                 :             : 
    1322                 :             : static gboolean
    1323                 :         191 : g_local_file_set_attribute (GFile                *file,
    1324                 :             :                             const char           *attribute,
    1325                 :             :                             GFileAttributeType    type,
    1326                 :             :                             gpointer              value_p,
    1327                 :             :                             GFileQueryInfoFlags   flags,
    1328                 :             :                             GCancellable         *cancellable,
    1329                 :             :                             GError              **error)
    1330                 :             : {
    1331                 :         191 :   GLocalFile *local = G_LOCAL_FILE (file);
    1332                 :             : 
    1333                 :         191 :   return _g_local_file_info_set_attribute (local->filename,
    1334                 :             :                                            attribute,
    1335                 :             :                                            type,
    1336                 :             :                                            value_p,
    1337                 :             :                                            flags,
    1338                 :             :                                            cancellable,
    1339                 :             :                                            error);
    1340                 :             : }
    1341                 :             : 
    1342                 :             : static gboolean
    1343                 :          36 : g_local_file_set_attributes_from_info (GFile                *file,
    1344                 :             :                                        GFileInfo            *info,
    1345                 :             :                                        GFileQueryInfoFlags   flags,
    1346                 :             :                                        GCancellable         *cancellable,
    1347                 :             :                                        GError              **error)
    1348                 :             : {
    1349                 :          36 :   GLocalFile *local = G_LOCAL_FILE (file);
    1350                 :             :   int res, chained_res;
    1351                 :             :   GFileIface *default_iface;
    1352                 :             : 
    1353                 :          36 :   res = _g_local_file_info_set_attributes (local->filename,
    1354                 :             :                                            info, flags, 
    1355                 :             :                                            cancellable,
    1356                 :             :                                            error);
    1357                 :             : 
    1358                 :          36 :   if (!res)
    1359                 :           0 :     error = NULL; /* Don't write over error if further errors */
    1360                 :             : 
    1361                 :          36 :   default_iface = g_type_default_interface_peek (G_TYPE_FILE);
    1362                 :             : 
    1363                 :          36 :   chained_res = (default_iface->set_attributes_from_info) (file, info, flags, cancellable, error);
    1364                 :             :   
    1365                 :          36 :   return res && chained_res;
    1366                 :             : }
    1367                 :             : 
    1368                 :             : static GFileInputStream *
    1369                 :         142 : g_local_file_read (GFile         *file,
    1370                 :             :                    GCancellable  *cancellable,
    1371                 :             :                    GError       **error)
    1372                 :             : {
    1373                 :         142 :   GLocalFile *local = G_LOCAL_FILE (file);
    1374                 :             :   int fd, ret;
    1375                 :             :   GLocalFileStat buf;
    1376                 :             :   
    1377                 :         142 :   fd = g_open (local->filename, O_RDONLY | O_BINARY | O_CLOEXEC, 0);
    1378                 :         142 :   if (fd == -1)
    1379                 :             :     {
    1380                 :           9 :       int errsv = errno;
    1381                 :             : 
    1382                 :             : #ifdef G_OS_WIN32
    1383                 :             :       if (errsv == EACCES)
    1384                 :             :         {
    1385                 :             :           /* Exploit the fact that on W32 the glib filename encoding is UTF8 */
    1386                 :             :           ret = GLIB_PRIVATE_CALL (g_win32_stat_utf8) (local->filename, &buf);
    1387                 :             :           if (ret == 0 && S_ISDIR (buf.st_mode))
    1388                 :             :             errsv = EISDIR;
    1389                 :             :         }
    1390                 :             : #endif
    1391                 :           9 :       g_set_io_error (error,
    1392                 :             :                       _("Error opening file %s: %s"),
    1393                 :             :                       file, errsv);
    1394                 :           9 :       return NULL;
    1395                 :             :     }
    1396                 :             : 
    1397                 :         133 :   ret = g_local_file_fstat (fd, G_LOCAL_FILE_STAT_FIELD_TYPE, G_LOCAL_FILE_STAT_FIELD_ALL, &buf);
    1398                 :             : 
    1399                 :         133 :   if (ret == 0 && S_ISDIR (_g_stat_mode (&buf)))
    1400                 :             :     {
    1401                 :          15 :       (void) g_close (fd, NULL);
    1402                 :          15 :       g_set_io_error (error,
    1403                 :             :                       _("Error opening file %s: %s"),
    1404                 :             :                       file, EISDIR);
    1405                 :          15 :       return NULL;
    1406                 :             :     }
    1407                 :             :   
    1408                 :         118 :   return _g_local_file_input_stream_new (fd);
    1409                 :             : }
    1410                 :             : 
    1411                 :             : static GFileOutputStream *
    1412                 :           6 : g_local_file_append_to (GFile             *file,
    1413                 :             :                         GFileCreateFlags   flags,
    1414                 :             :                         GCancellable      *cancellable,
    1415                 :             :                         GError           **error)
    1416                 :             : {
    1417                 :           6 :   return _g_local_file_output_stream_append (G_LOCAL_FILE (file)->filename,
    1418                 :             :                                              flags, cancellable, error);
    1419                 :             : }
    1420                 :             : 
    1421                 :             : static GFileOutputStream *
    1422                 :          11 : g_local_file_create (GFile             *file,
    1423                 :             :                      GFileCreateFlags   flags,
    1424                 :             :                      GCancellable      *cancellable,
    1425                 :             :                      GError           **error)
    1426                 :             : {
    1427                 :          11 :   return _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
    1428                 :             :                                              FALSE, flags, NULL,
    1429                 :             :                                              cancellable, error);
    1430                 :             : }
    1431                 :             : 
    1432                 :             : static GFileOutputStream *
    1433                 :         147 : g_local_file_replace (GFile             *file,
    1434                 :             :                       const char        *etag,
    1435                 :             :                       gboolean           make_backup,
    1436                 :             :                       GFileCreateFlags   flags,
    1437                 :             :                       GCancellable      *cancellable,
    1438                 :             :                       GError           **error)
    1439                 :             : {
    1440                 :         147 :   return _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
    1441                 :             :                                               FALSE,
    1442                 :             :                                               etag, make_backup, flags, NULL,
    1443                 :             :                                               cancellable, error);
    1444                 :             : }
    1445                 :             : 
    1446                 :             : static GFileIOStream *
    1447                 :           3 : g_local_file_open_readwrite (GFile                      *file,
    1448                 :             :                              GCancellable               *cancellable,
    1449                 :             :                              GError                    **error)
    1450                 :             : {
    1451                 :             :   GFileOutputStream *output;
    1452                 :             :   GFileIOStream *res;
    1453                 :             : 
    1454                 :           3 :   output = _g_local_file_output_stream_open (G_LOCAL_FILE (file)->filename,
    1455                 :             :                                              TRUE,
    1456                 :             :                                              cancellable, error);
    1457                 :           3 :   if (output == NULL)
    1458                 :           1 :     return NULL;
    1459                 :             : 
    1460                 :           2 :   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
    1461                 :           2 :   g_object_unref (output);
    1462                 :           2 :   return res;
    1463                 :             : }
    1464                 :             : 
    1465                 :             : static GFileIOStream *
    1466                 :           2 : g_local_file_create_readwrite (GFile                      *file,
    1467                 :             :                                GFileCreateFlags            flags,
    1468                 :             :                                GCancellable               *cancellable,
    1469                 :             :                                GError                    **error)
    1470                 :             : {
    1471                 :             :   GFileOutputStream *output;
    1472                 :             :   GFileIOStream *res;
    1473                 :             : 
    1474                 :           2 :   output = _g_local_file_output_stream_create (G_LOCAL_FILE (file)->filename,
    1475                 :             :                                                TRUE, flags, NULL,
    1476                 :             :                                                cancellable, error);
    1477                 :           2 :   if (output == NULL)
    1478                 :           1 :     return NULL;
    1479                 :             : 
    1480                 :           1 :   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
    1481                 :           1 :   g_object_unref (output);
    1482                 :           1 :   return res;
    1483                 :             : }
    1484                 :             : 
    1485                 :             : static GFileIOStream *
    1486                 :          50 : g_local_file_replace_readwrite (GFile                      *file,
    1487                 :             :                                 const char                 *etag,
    1488                 :             :                                 gboolean                    make_backup,
    1489                 :             :                                 GFileCreateFlags            flags,
    1490                 :             :                                 GCancellable               *cancellable,
    1491                 :             :                                 GError                    **error)
    1492                 :             : {
    1493                 :             :   GFileOutputStream *output;
    1494                 :             :   GFileIOStream *res;
    1495                 :             : 
    1496                 :          50 :   output = _g_local_file_output_stream_replace (G_LOCAL_FILE (file)->filename,
    1497                 :             :                                                 TRUE,
    1498                 :             :                                                 etag, make_backup, flags, NULL,
    1499                 :             :                                                 cancellable, error);
    1500                 :          50 :   if (output == NULL)
    1501                 :          11 :     return NULL;
    1502                 :             : 
    1503                 :          39 :   res = _g_local_file_io_stream_new (G_LOCAL_FILE_OUTPUT_STREAM (output));
    1504                 :          39 :   g_object_unref (output);
    1505                 :          39 :   return res;
    1506                 :             : }
    1507                 :             : 
    1508                 :             : static gboolean
    1509                 :         689 : g_local_file_delete (GFile         *file,
    1510                 :             :                      GCancellable  *cancellable,
    1511                 :             :                      GError       **error)
    1512                 :             : {
    1513                 :         689 :   GLocalFile *local = G_LOCAL_FILE (file);
    1514                 :             :   GVfsClass *class;
    1515                 :             :   GVfs *vfs;
    1516                 :             : 
    1517                 :         689 :   if (g_remove (local->filename) == -1)
    1518                 :             :     {
    1519                 :         208 :       int errsv = errno;
    1520                 :             : 
    1521                 :             :       /* Posix allows EEXIST too, but the clearer error
    1522                 :             :          is G_IO_ERROR_NOT_FOUND, and it's what nautilus
    1523                 :             :          expects */
    1524                 :         208 :       if (errsv == EEXIST)
    1525                 :           0 :         errsv = ENOTEMPTY;
    1526                 :             : 
    1527                 :         208 :       g_set_io_error (error,
    1528                 :             :                       _("Error removing file %s: %s"),
    1529                 :             :                       file, errsv);
    1530                 :         208 :       return FALSE;
    1531                 :             :     }
    1532                 :             : 
    1533                 :         481 :   vfs = g_vfs_get_default ();
    1534                 :         481 :   class = G_VFS_GET_CLASS (vfs);
    1535                 :         481 :   if (class->local_file_removed)
    1536                 :           0 :     class->local_file_removed (vfs, local->filename);
    1537                 :             : 
    1538                 :         481 :   return TRUE;
    1539                 :             : }
    1540                 :             : 
    1541                 :             : #ifndef G_OS_WIN32
    1542                 :             : 
    1543                 :             : static char *
    1544                 :         220 : strip_trailing_slashes (const char *path)
    1545                 :             : {
    1546                 :             :   char *path_copy;
    1547                 :             :   int len;
    1548                 :             : 
    1549                 :         220 :   path_copy = g_strdup (path);
    1550                 :         220 :   len = strlen (path_copy);
    1551                 :         220 :   while (len > 1 && path_copy[len-1] == '/')
    1552                 :           0 :     path_copy[--len] = 0;
    1553                 :             : 
    1554                 :         220 :   return path_copy;
    1555                 :             :  }
    1556                 :             : 
    1557                 :             : static char *
    1558                 :           0 : expand_symlink (const char *link)
    1559                 :             : {
    1560                 :             :   char *resolved, *canonical, *parent, *link2;
    1561                 :             :   char symlink_value[4096];
    1562                 :             : #ifdef G_OS_WIN32
    1563                 :             : #else
    1564                 :             :   gssize res;
    1565                 :             : #endif
    1566                 :             :   
    1567                 :             : #ifdef G_OS_WIN32
    1568                 :             : #else
    1569                 :           0 :   res = readlink (link, symlink_value, sizeof (symlink_value) - 1);
    1570                 :             :   
    1571                 :           0 :   if (res == -1)
    1572                 :           0 :     return g_strdup (link);
    1573                 :           0 :   symlink_value[res] = 0;
    1574                 :             : #endif
    1575                 :             :   
    1576                 :           0 :   if (g_path_is_absolute (symlink_value))
    1577                 :           0 :     return g_canonicalize_filename (symlink_value, NULL);
    1578                 :             :   else
    1579                 :             :     {
    1580                 :           0 :       link2 = strip_trailing_slashes (link);
    1581                 :           0 :       parent = g_path_get_dirname (link2);
    1582                 :           0 :       g_free (link2);
    1583                 :             :       
    1584                 :           0 :       resolved = g_build_filename (parent, symlink_value, NULL);
    1585                 :           0 :       g_free (parent);
    1586                 :             :       
    1587                 :           0 :       canonical = g_canonicalize_filename (resolved, NULL);
    1588                 :             :       
    1589                 :           0 :       g_free (resolved);
    1590                 :             : 
    1591                 :           0 :       return canonical;
    1592                 :             :     }
    1593                 :             : }
    1594                 :             : 
    1595                 :             : static char *
    1596                 :         261 : expand_symlinks (const char *path,
    1597                 :             :                  dev_t      *dev)
    1598                 :             : {
    1599                 :             :   char *tmp, *target;
    1600                 :             :   GStatBuf target_stat;
    1601                 :             :   int num_recursions;
    1602                 :             : 
    1603                 :         261 :   target = g_strdup (path);
    1604                 :             : 
    1605                 :         261 :   num_recursions = 0;
    1606                 :             :   do
    1607                 :             :     {
    1608                 :         261 :       if (g_lstat (target, &target_stat) != 0)
    1609                 :             :         {
    1610                 :           0 :           g_free (target);
    1611                 :           0 :           return NULL;
    1612                 :             :         }
    1613                 :             : 
    1614                 :         261 :       if (S_ISLNK (target_stat.st_mode))
    1615                 :             :         {
    1616                 :           0 :           tmp = target;
    1617                 :           0 :           target = expand_symlink (target);
    1618                 :           0 :           g_free (tmp);
    1619                 :             :         }
    1620                 :             : 
    1621                 :         261 :       num_recursions++;
    1622                 :             : 
    1623                 :             : #ifdef MAXSYMLINKS
    1624                 :             :       if (num_recursions > MAXSYMLINKS)
    1625                 :             : #else
    1626                 :             :       /* 40 is used in kernel sources currently:
    1627                 :             :        * https://github.com/torvalds/linux/include/linux/namei.h
    1628                 :             :        */
    1629                 :         261 :       if (num_recursions > 40)
    1630                 :             : #endif
    1631                 :             :         {
    1632                 :           0 :           g_free (target);
    1633                 :           0 :           return NULL;
    1634                 :             :         }
    1635                 :             :     }
    1636                 :         261 :   while (S_ISLNK (target_stat.st_mode));
    1637                 :             : 
    1638                 :         261 :   if (dev)
    1639                 :         220 :     *dev = target_stat.st_dev;
    1640                 :             : 
    1641                 :         261 :   return target;
    1642                 :             : }
    1643                 :             : 
    1644                 :             : static char *
    1645                 :         220 : get_parent (const char *path,
    1646                 :             :             dev_t      *parent_dev)
    1647                 :             : {
    1648                 :             :   char *parent, *res;
    1649                 :             :   char *path_copy;
    1650                 :             : 
    1651                 :         220 :   path_copy = strip_trailing_slashes (path);
    1652                 :             :   
    1653                 :         220 :   parent = g_path_get_dirname (path_copy);
    1654                 :         220 :   if (strcmp (parent, ".") == 0)
    1655                 :             :     {
    1656                 :           0 :       g_free (parent);
    1657                 :           0 :       g_free (path_copy);
    1658                 :           0 :       return NULL;
    1659                 :             :     }
    1660                 :         220 :   g_free (path_copy);
    1661                 :             : 
    1662                 :         220 :   res = expand_symlinks (parent, parent_dev);
    1663                 :         220 :   g_free (parent);
    1664                 :             : 
    1665                 :         220 :   return res;
    1666                 :             : }
    1667                 :             : 
    1668                 :             : static char *
    1669                 :           0 : expand_all_symlinks (const char *path)
    1670                 :             : {
    1671                 :             :   char *parent, *parent_expanded;
    1672                 :             :   char *basename, *res;
    1673                 :             :   dev_t parent_dev;
    1674                 :             : 
    1675                 :           0 :   parent = get_parent (path, &parent_dev);
    1676                 :           0 :   if (parent == NULL)
    1677                 :           0 :     return NULL;
    1678                 :             : 
    1679                 :           0 :   if (g_strcmp0 (parent, "/") != 0)
    1680                 :             :     {
    1681                 :           0 :       parent_expanded = expand_all_symlinks (parent);
    1682                 :           0 :       basename = g_path_get_basename (path);
    1683                 :           0 :       res = g_build_filename (parent_expanded, basename, NULL);
    1684                 :           0 :       g_free (basename);
    1685                 :           0 :       g_free (parent_expanded);
    1686                 :             :     }
    1687                 :             :   else
    1688                 :           0 :     res = g_strdup (path);
    1689                 :             : 
    1690                 :           0 :   g_free (parent);
    1691                 :             : 
    1692                 :           0 :   return res;
    1693                 :             : }
    1694                 :             : 
    1695                 :             : static char *
    1696                 :          41 : find_mountpoint_for (const char *file,
    1697                 :             :                      dev_t       dev,
    1698                 :             :                      gboolean    resolve_basename_symlink)
    1699                 :             : {
    1700                 :             :   char *dir, *parent;
    1701                 :             :   dev_t dir_dev, parent_dev;
    1702                 :             : 
    1703                 :          41 :   if (resolve_basename_symlink)
    1704                 :             :     {
    1705                 :          41 :       dir = expand_symlinks (file, NULL);
    1706                 :          41 :       if (dir == NULL)
    1707                 :           0 :         return NULL;
    1708                 :             :     }
    1709                 :             :   else
    1710                 :           0 :     dir = g_strdup (file);
    1711                 :             : 
    1712                 :          41 :   dir_dev = dev;
    1713                 :             : 
    1714                 :         219 :   while (g_strcmp0 (dir, "/") != 0)
    1715                 :             :     {
    1716                 :         216 :       parent = get_parent (dir, &parent_dev);
    1717                 :         216 :       if (parent == NULL)
    1718                 :             :         {
    1719                 :           0 :           g_free (dir);
    1720                 :           0 :           return NULL;
    1721                 :             :         }
    1722                 :             : 
    1723                 :         216 :       if (parent_dev != dir_dev)
    1724                 :             :         {
    1725                 :          38 :           g_free (parent);
    1726                 :          38 :           return dir;
    1727                 :             :         }
    1728                 :             :     
    1729                 :         178 :       g_free (dir);
    1730                 :         178 :       dir = parent;
    1731                 :             :     }
    1732                 :             : 
    1733                 :           3 :   return dir;
    1734                 :             : }
    1735                 :             : 
    1736                 :             : char *
    1737                 :           4 : _g_local_file_find_topdir_for (const char *file)
    1738                 :             : {
    1739                 :             :   char *dir;
    1740                 :           4 :   char *mountpoint = NULL;
    1741                 :             :   dev_t dir_dev;
    1742                 :             : 
    1743                 :           4 :   dir = get_parent (file, &dir_dev);
    1744                 :           4 :   if (dir == NULL)
    1745                 :           0 :     return NULL;
    1746                 :             : 
    1747                 :           4 :   mountpoint = find_mountpoint_for (dir, dir_dev, TRUE);
    1748                 :           4 :   g_free (dir);
    1749                 :             : 
    1750                 :           4 :   return mountpoint;
    1751                 :             : }
    1752                 :             : 
    1753                 :             : static char *
    1754                 :           3 : get_unique_filename (const char *basename, 
    1755                 :             :                      int         id)
    1756                 :             : {
    1757                 :             :   const char *dot;
    1758                 :             :       
    1759                 :           3 :   if (id == 1)
    1760                 :           3 :     return g_strdup (basename);
    1761                 :             : 
    1762                 :           0 :   dot = strchr (basename, '.');
    1763                 :           0 :   if (dot)
    1764                 :           0 :     return g_strdup_printf ("%.*s.%d%s", (int)(dot - basename), basename, id, dot);
    1765                 :             :   else
    1766                 :           0 :     return g_strdup_printf ("%s.%d", basename, id);
    1767                 :             : }
    1768                 :             : 
    1769                 :             : static gboolean
    1770                 :         676 : path_has_prefix (const char *path, 
    1771                 :             :                  const char *prefix)
    1772                 :             : {
    1773                 :             :   int prefix_len;
    1774                 :             : 
    1775                 :         676 :   if (prefix == NULL)
    1776                 :           0 :     return TRUE;
    1777                 :             : 
    1778                 :         676 :   prefix_len = strlen (prefix);
    1779                 :             :   
    1780                 :         676 :   if (strncmp (path, prefix, prefix_len) == 0 &&
    1781                 :           0 :       (prefix_len == 0 || /* empty prefix always matches */
    1782                 :           0 :        prefix[prefix_len - 1] == '/' || /* last char in prefix was a /, so it must be in path too */
    1783                 :           0 :        path[prefix_len] == 0 ||
    1784                 :           0 :        path[prefix_len] == '/'))
    1785                 :           0 :     return TRUE;
    1786                 :             :   
    1787                 :         676 :   return FALSE;
    1788                 :             : }
    1789                 :             : 
    1790                 :             : static char *
    1791                 :           0 : try_make_relative (const char *path, 
    1792                 :             :                    const char *base)
    1793                 :             : {
    1794                 :             :   char *path2, *base2;
    1795                 :             :   char *relative;
    1796                 :             : 
    1797                 :           0 :   path2 = expand_all_symlinks (path);
    1798                 :           0 :   base2 = expand_all_symlinks (base);
    1799                 :             : 
    1800                 :           0 :   relative = NULL;
    1801                 :           0 :   if (path2 != NULL && base2 != NULL && path_has_prefix (path2, base2))
    1802                 :             :     {
    1803                 :           0 :       relative = path2 + strlen (base2);
    1804                 :           0 :       while (*relative == '/')
    1805                 :           0 :         relative ++;
    1806                 :           0 :       relative = g_strdup (relative);
    1807                 :             :     }
    1808                 :           0 :   g_free (path2);
    1809                 :           0 :   g_free (base2);
    1810                 :             : 
    1811                 :           0 :   if (relative)
    1812                 :           0 :     return relative;
    1813                 :             :   
    1814                 :             :   /* Failed, use abs path */
    1815                 :           0 :   return g_strdup (path);
    1816                 :             : }
    1817                 :             : 
    1818                 :             : static gboolean
    1819                 :          38 : ignore_trash_mount (GUnixMountEntry *mount)
    1820                 :             : {
    1821                 :          38 :   GUnixMountPoint *mount_point = NULL;
    1822                 :             :   const gchar *mount_options;
    1823                 :             : 
    1824                 :          38 :   mount_options = g_unix_mount_entry_get_options (mount);
    1825                 :          38 :   if (mount_options == NULL)
    1826                 :             :     {
    1827                 :           0 :       mount_point = g_unix_mount_point_at (g_unix_mount_entry_get_mount_path (mount),
    1828                 :             :                                            NULL);
    1829                 :           0 :       if (mount_point != NULL)
    1830                 :           0 :         mount_options = g_unix_mount_point_get_options (mount_point);
    1831                 :             : 
    1832                 :           0 :       g_clear_pointer (&mount_point, g_unix_mount_point_free);
    1833                 :             :     }
    1834                 :             : 
    1835                 :          38 :   if (mount_options != NULL)
    1836                 :             :     {
    1837                 :          38 :       if (strstr (mount_options, "x-gvfs-trash") != NULL)
    1838                 :           0 :         return FALSE;
    1839                 :             : 
    1840                 :          38 :       if (strstr (mount_options, "x-gvfs-notrash") != NULL)
    1841                 :           0 :         return TRUE;
    1842                 :             :     }
    1843                 :             : 
    1844                 :          38 :   if (g_unix_mount_entry_is_system_internal (mount))
    1845                 :          38 :     return TRUE;
    1846                 :             : 
    1847                 :           0 :   return FALSE;
    1848                 :             : }
    1849                 :             : 
    1850                 :             : static gboolean
    1851                 :          38 : ignore_trash_path (const gchar *topdir)
    1852                 :             : {
    1853                 :             :   GUnixMountEntry *mount;
    1854                 :          38 :   gboolean retval = TRUE;
    1855                 :             : 
    1856                 :          38 :   mount = g_unix_mount_entry_at (topdir, NULL);
    1857                 :          38 :   if (mount == NULL)
    1858                 :           0 :     goto out;
    1859                 :             : 
    1860                 :          38 :   retval = ignore_trash_mount (mount);
    1861                 :             : 
    1862                 :          38 :  out:
    1863                 :          38 :   g_clear_pointer (&mount, g_unix_mount_entry_free);
    1864                 :             : 
    1865                 :          38 :   return retval;
    1866                 :             : }
    1867                 :             : 
    1868                 :             : gboolean
    1869                 :          77 : _g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev)
    1870                 :             : {
    1871                 :             :   static gsize home_dev_set = 0;
    1872                 :             :   static dev_t home_dev;
    1873                 :             :   static gboolean home_dev_valid = FALSE;
    1874                 :             :   char *topdir, *globaldir, *trashdir, *tmpname;
    1875                 :             :   uid_t uid;
    1876                 :             :   char uid_str[32];
    1877                 :             :   GStatBuf global_stat, trash_stat;
    1878                 :             :   gboolean res;
    1879                 :             : 
    1880                 :          77 :   if (g_once_init_enter (&home_dev_set))
    1881                 :             :     {
    1882                 :             :       GStatBuf home_stat;
    1883                 :             : 
    1884                 :           2 :       if (g_stat (g_get_home_dir (), &home_stat) == 0)
    1885                 :             :         {
    1886                 :           2 :           home_dev = home_stat.st_dev;
    1887                 :           2 :           home_dev_valid = TRUE;
    1888                 :             :         }
    1889                 :             :       else
    1890                 :             :         {
    1891                 :           0 :           home_dev_valid = FALSE;
    1892                 :             :         }
    1893                 :             : 
    1894                 :           2 :       g_once_init_leave (&home_dev_set, 1);
    1895                 :             :     }
    1896                 :             : 
    1897                 :             :   /* Assume we can trash to the home */
    1898                 :          77 :   if (!home_dev_valid)
    1899                 :           0 :     return FALSE;
    1900                 :          77 :   else if (dir_dev == home_dev)
    1901                 :          40 :     return TRUE;
    1902                 :             : 
    1903                 :          37 :   topdir = find_mountpoint_for (dirname, dir_dev, TRUE);
    1904                 :          37 :   if (topdir == NULL)
    1905                 :           0 :     return FALSE;
    1906                 :             : 
    1907                 :          37 :   if (ignore_trash_path (topdir))
    1908                 :             :     {
    1909                 :          37 :       g_free (topdir);
    1910                 :             : 
    1911                 :          37 :       return FALSE;
    1912                 :             :     }
    1913                 :             : 
    1914                 :           0 :   globaldir = g_build_filename (topdir, ".Trash", NULL);
    1915                 :           0 :   if (g_lstat (globaldir, &global_stat) == 0 &&
    1916                 :           0 :       S_ISDIR (global_stat.st_mode) &&
    1917                 :           0 :       (global_stat.st_mode & S_ISVTX) != 0)
    1918                 :             :     {
    1919                 :             :       /* got a toplevel sysadmin created dir, assume we
    1920                 :             :        * can trash to it (we should be able to create a dir)
    1921                 :             :        * This fails for the FAT case where the ownership of
    1922                 :             :        * that dir would be wrong though..
    1923                 :             :        */
    1924                 :           0 :       g_free (globaldir);
    1925                 :           0 :       g_free (topdir);
    1926                 :           0 :       return TRUE;
    1927                 :             :     }
    1928                 :           0 :   g_free (globaldir);
    1929                 :             : 
    1930                 :             :   /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
    1931                 :           0 :   uid = geteuid ();
    1932                 :           0 :   g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long) uid);
    1933                 :             : 
    1934                 :           0 :   tmpname = g_strdup_printf (".Trash-%s", uid_str);
    1935                 :           0 :   trashdir = g_build_filename (topdir, tmpname, NULL);
    1936                 :           0 :   g_free (tmpname);
    1937                 :             : 
    1938                 :           0 :   if (g_lstat (trashdir, &trash_stat) == 0)
    1939                 :             :     {
    1940                 :           0 :       g_free (topdir);
    1941                 :           0 :       g_free (trashdir);
    1942                 :           0 :       return S_ISDIR (trash_stat.st_mode) &&
    1943                 :           0 :              trash_stat.st_uid == uid;
    1944                 :             :     }
    1945                 :           0 :   g_free (trashdir);
    1946                 :             : 
    1947                 :             :   /* User specific trash didn't exist, can we create it? */
    1948                 :           0 :   res = g_access (topdir, W_OK) == 0;
    1949                 :           0 :   g_free (topdir);
    1950                 :             : 
    1951                 :           0 :   return res;
    1952                 :             : }
    1953                 :             : 
    1954                 :             : #ifndef G_OS_WIN32
    1955                 :             : gboolean
    1956                 :          65 : _g_local_file_is_lost_found_dir (const char *path, dev_t path_dev)
    1957                 :             : {
    1958                 :          65 :   gboolean ret = FALSE;
    1959                 :          65 :   gchar *mount_dir = NULL;
    1960                 :             :   size_t mount_dir_len;
    1961                 :             :   GStatBuf statbuf;
    1962                 :             : 
    1963                 :          65 :   if (!g_str_has_suffix (path, "/lost+found"))
    1964                 :          65 :     goto out;
    1965                 :             : 
    1966                 :           0 :   mount_dir = find_mountpoint_for (path, path_dev, FALSE);
    1967                 :           0 :   if (mount_dir == NULL)
    1968                 :           0 :     goto out;
    1969                 :             : 
    1970                 :           0 :   mount_dir_len = strlen (mount_dir);
    1971                 :             :   /* We special-case rootfs ('/') since it's the only case where
    1972                 :             :    * mount_dir ends in '/'
    1973                 :             :    */
    1974                 :           0 :   if (mount_dir_len == 1)
    1975                 :           0 :     mount_dir_len--;
    1976                 :           0 :   if (mount_dir_len + strlen ("/lost+found") != strlen (path))
    1977                 :           0 :     goto out;
    1978                 :             : 
    1979                 :           0 :   if (g_lstat (path, &statbuf) != 0)
    1980                 :           0 :     goto out;
    1981                 :             : 
    1982                 :           0 :   if (!(S_ISDIR (statbuf.st_mode) &&
    1983                 :           0 :         statbuf.st_uid == 0 &&
    1984                 :           0 :         statbuf.st_gid == 0))
    1985                 :           0 :     goto out;
    1986                 :             : 
    1987                 :           0 :   ret = TRUE;
    1988                 :             : 
    1989                 :          65 :  out:
    1990                 :          65 :   g_free (mount_dir);
    1991                 :          65 :   return ret;
    1992                 :             : }
    1993                 :             : #endif
    1994                 :             : 
    1995                 :             : static gboolean
    1996                 :           3 : g_local_file_trash (GFile         *file,
    1997                 :             :                     GCancellable  *cancellable,
    1998                 :             :                     GError       **error)
    1999                 :             : {
    2000                 :           3 :   GLocalFile *local = G_LOCAL_FILE (file);
    2001                 :             :   GStatBuf file_stat, home_stat;
    2002                 :             :   const char *homedir;
    2003                 :             :   char *trashdir, *topdir, *infodir, *filesdir;
    2004                 :             :   char *basename, *trashname, *trashfile, *infoname, *infofile;
    2005                 :             :   char *original_name, *original_name_escaped;
    2006                 :             :   int i;
    2007                 :             :   char *data;
    2008                 :             :   char *path;
    2009                 :             :   gboolean is_homedir_trash;
    2010                 :           3 :   char *delete_time = NULL;
    2011                 :             :   int fd;
    2012                 :             :   GStatBuf trash_stat, global_stat;
    2013                 :             :   char *dirname, *globaldir;
    2014                 :             :   GVfsClass *class;
    2015                 :             :   GVfs *vfs;
    2016                 :             :   int errsv;
    2017                 :             :   size_t basename_len;
    2018                 :           3 :   GError *my_error = NULL;
    2019                 :             : 
    2020                 :           3 :   if (glib_should_use_portal ())
    2021                 :           0 :     return g_trash_portal_trash_file (file, error);
    2022                 :             : 
    2023                 :           3 :   if (g_lstat (local->filename, &file_stat) != 0)
    2024                 :             :     {
    2025                 :           1 :       errsv = errno;
    2026                 :             : 
    2027                 :           1 :       g_set_io_error (error,
    2028                 :             :                       _("Error trashing file %s: %s"),
    2029                 :             :                       file, errsv);
    2030                 :           1 :       return FALSE;
    2031                 :             :     }
    2032                 :             :     
    2033                 :           2 :   homedir = g_get_home_dir ();
    2034                 :           2 :   if (g_stat (homedir, &home_stat) != 0)
    2035                 :             :     {
    2036                 :           0 :       errsv = errno;
    2037                 :             : 
    2038                 :           0 :       g_set_io_error (error,
    2039                 :             :                       _("Error trashing file %s: %s"),
    2040                 :             :                       file, errsv);
    2041                 :           0 :       return FALSE;
    2042                 :             :     }
    2043                 :             : 
    2044                 :           2 :   is_homedir_trash = FALSE;
    2045                 :           2 :   trashdir = NULL;
    2046                 :             : 
    2047                 :             :   /* On overlayfs, a file's st_dev will be different to the home directory's.
    2048                 :             :    * We still want to create our trash directory under the home directory, so
    2049                 :             :    * instead we should stat the directory that the file we're deleting is in as
    2050                 :             :    * this will have the same st_dev.
    2051                 :             :    */
    2052                 :           2 :   if (!S_ISDIR (file_stat.st_mode))
    2053                 :             :     {
    2054                 :           2 :       path = g_path_get_dirname (local->filename);
    2055                 :             :       /* If the parent is a symlink to a different device then it might have
    2056                 :             :        * st_dev equal to the home directory's, in which case we will end up
    2057                 :             :        * trying to rename across a filesystem boundary, which doesn't work. So
    2058                 :             :        * we use g_stat here instead of g_lstat, to know where the symlink
    2059                 :             :        * points to. */
    2060                 :           2 :       if (g_stat (path, &file_stat))
    2061                 :             :         {
    2062                 :           0 :           errsv = errno;
    2063                 :           0 :           g_free (path);
    2064                 :             : 
    2065                 :           0 :           g_set_io_error (error,
    2066                 :             :                           _("Error trashing file %s: %s"),
    2067                 :             :                           file, errsv);
    2068                 :           0 :           return FALSE;
    2069                 :             :         }
    2070                 :           2 :       g_free (path);
    2071                 :             :     }
    2072                 :             : 
    2073                 :           2 :   if (file_stat.st_dev == home_stat.st_dev)
    2074                 :             :     {
    2075                 :           1 :       is_homedir_trash = TRUE;
    2076                 :           1 :       errno = 0;
    2077                 :           1 :       trashdir = g_build_filename (g_get_user_data_dir (), "Trash", NULL);
    2078                 :           1 :       if (g_mkdir_with_parents (trashdir, 0700) < 0)
    2079                 :             :         {
    2080                 :             :           char *display_name;
    2081                 :           0 :           errsv = errno;
    2082                 :             : 
    2083                 :           0 :           display_name = g_filename_display_name (trashdir);
    2084                 :           0 :           g_set_error (error, G_IO_ERROR,
    2085                 :           0 :                        g_io_error_from_errno (errsv),
    2086                 :             :                        _("Unable to create trash directory %s: %s"),
    2087                 :             :                        display_name, g_strerror (errsv));
    2088                 :           0 :           g_free (display_name);
    2089                 :           0 :           g_free (trashdir);
    2090                 :           0 :           return FALSE;
    2091                 :             :         }
    2092                 :           2 :       topdir = g_strdup (g_get_user_data_dir ());
    2093                 :             :     }
    2094                 :             :   else
    2095                 :             :     {
    2096                 :             :       uid_t uid;
    2097                 :             :       char uid_str[32];
    2098                 :           1 :       gboolean success = FALSE;
    2099                 :             : 
    2100                 :           1 :       uid = geteuid ();
    2101                 :           1 :       g_snprintf (uid_str, sizeof (uid_str), "%lu", (unsigned long)uid);
    2102                 :             : 
    2103                 :           1 :       topdir = _g_local_file_find_topdir_for (local->filename);
    2104                 :           1 :       if (topdir == NULL)
    2105                 :             :         {
    2106                 :           0 :           g_set_io_error (error,
    2107                 :             :                           _("Unable to find toplevel directory to trash %s"),
    2108                 :             :                           file, ENOTSUP);
    2109                 :           1 :           return FALSE;
    2110                 :             :         }
    2111                 :             : 
    2112                 :           1 :       if (ignore_trash_path (topdir))
    2113                 :             :         {
    2114                 :           1 :           g_set_error (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED,
    2115                 :             :                        _("Trashing on system internal mounts is not supported"));
    2116                 :           1 :           g_free (topdir);
    2117                 :             : 
    2118                 :           1 :           return FALSE;
    2119                 :             :         }
    2120                 :             : 
    2121                 :             :       /* Try looking for global trash dir $topdir/.Trash/$uid */
    2122                 :           0 :       globaldir = g_build_filename (topdir, ".Trash", NULL);
    2123                 :           0 :       if (g_lstat (globaldir, &global_stat) == 0 &&
    2124                 :           0 :           S_ISDIR (global_stat.st_mode) &&
    2125                 :           0 :           (global_stat.st_mode & S_ISVTX) != 0)
    2126                 :             :         {
    2127                 :           0 :           trashdir = g_build_filename (globaldir, uid_str, NULL);
    2128                 :           0 :           success = TRUE;
    2129                 :             : 
    2130                 :           0 :           if (g_lstat (trashdir, &trash_stat) == 0)
    2131                 :             :             {
    2132                 :           0 :               if (!S_ISDIR (trash_stat.st_mode) ||
    2133                 :           0 :                   trash_stat.st_uid != uid)
    2134                 :             :                 {
    2135                 :             :                   /* Not a directory or not owned by user, ignore */
    2136                 :           0 :                   g_free (trashdir);
    2137                 :           0 :                   trashdir = NULL;
    2138                 :           0 :                   success = FALSE;
    2139                 :             :                 }
    2140                 :             :             }
    2141                 :           0 :           else if (g_mkdir (trashdir, 0700) == -1)
    2142                 :             :             {
    2143                 :           0 :               g_free (trashdir);
    2144                 :           0 :               trashdir = NULL;
    2145                 :           0 :               success = FALSE;
    2146                 :             :             }
    2147                 :             :         }
    2148                 :           0 :       g_free (globaldir);
    2149                 :             : 
    2150                 :           0 :       if (trashdir == NULL)
    2151                 :             :         {
    2152                 :             :           gboolean tried_create;
    2153                 :             :           
    2154                 :             :           /* No global trash dir, or it failed the tests, fall back to $topdir/.Trash-$uid */
    2155                 :           0 :           dirname = g_strdup_printf (".Trash-%s", uid_str);
    2156                 :           0 :           trashdir = g_build_filename (topdir, dirname, NULL);
    2157                 :           0 :           success = TRUE;
    2158                 :           0 :           g_free (dirname);
    2159                 :             : 
    2160                 :           0 :           tried_create = FALSE;
    2161                 :             : 
    2162                 :           0 :         retry:
    2163                 :           0 :           if (g_lstat (trashdir, &trash_stat) == 0)
    2164                 :             :             {
    2165                 :           0 :               if (!S_ISDIR (trash_stat.st_mode) ||
    2166                 :           0 :                   trash_stat.st_uid != uid)
    2167                 :             :                 {
    2168                 :             :                   /* Remove the failed directory */
    2169                 :           0 :                   if (tried_create)
    2170                 :           0 :                     g_remove (trashdir);
    2171                 :             :                   
    2172                 :             :                   /* Not a directory or not owned by user, ignore */
    2173                 :           0 :                   success = FALSE;
    2174                 :             :                 }
    2175                 :             :             }
    2176                 :             :           else
    2177                 :             :             {
    2178                 :           0 :               if (!tried_create &&
    2179                 :           0 :                   g_mkdir (trashdir, 0700) != -1)
    2180                 :             :                 {
    2181                 :             :                   /* Ensure that the created dir has the right uid etc.
    2182                 :             :                      This might fail on e.g. a FAT dir */
    2183                 :           0 :                   tried_create = TRUE;
    2184                 :           0 :                   goto retry;
    2185                 :             :                 }
    2186                 :             :               else
    2187                 :             :                 {
    2188                 :           0 :                   success = FALSE;
    2189                 :             :                 }
    2190                 :             :             }
    2191                 :             :         }
    2192                 :             : 
    2193                 :           0 :       if (!success)
    2194                 :             :         {
    2195                 :           0 :           gchar *trashdir_display_name = NULL, *file_display_name = NULL;
    2196                 :             : 
    2197                 :           0 :           trashdir_display_name = g_filename_display_name (trashdir);
    2198                 :           0 :           file_display_name = g_filename_display_name (local->filename);
    2199                 :           0 :           g_set_error (error, G_IO_ERROR,
    2200                 :             :                        G_IO_ERROR_NOT_SUPPORTED,
    2201                 :             :                        _("Unable to find or create trash directory %s to trash %s"),
    2202                 :             :                        trashdir_display_name, file_display_name);
    2203                 :             : 
    2204                 :           0 :           g_free (trashdir_display_name);
    2205                 :           0 :           g_free (file_display_name);
    2206                 :             : 
    2207                 :           0 :           g_free (topdir);
    2208                 :           0 :           g_free (trashdir);
    2209                 :             : 
    2210                 :           0 :           return FALSE;
    2211                 :             :         }
    2212                 :             :     }
    2213                 :             : 
    2214                 :             :   /* Trashdir points to the trash dir with the "info" and "files" subdirectories */
    2215                 :             : 
    2216                 :           1 :   infodir = g_build_filename (trashdir, "info", NULL);
    2217                 :           1 :   filesdir = g_build_filename (trashdir, "files", NULL);
    2218                 :             : 
    2219                 :             :   /* Make sure we have the subdirectories */
    2220                 :           2 :   if ((g_mkdir (infodir, 0700) == -1 && errno != EEXIST) ||
    2221                 :           1 :       (g_mkdir (filesdir, 0700) == -1 && errno != EEXIST))
    2222                 :             :     {
    2223                 :           0 :       gchar *trashdir_display_name = NULL, *file_display_name = NULL;
    2224                 :             : 
    2225                 :           0 :       trashdir_display_name = g_filename_display_name (trashdir);
    2226                 :           0 :       file_display_name = g_filename_display_name (local->filename);
    2227                 :           0 :       g_set_error (error, G_IO_ERROR,
    2228                 :             :                    G_IO_ERROR_NOT_SUPPORTED,
    2229                 :             :                    _("Unable to find or create trash directory %s to trash %s"),
    2230                 :             :                    trashdir_display_name, file_display_name);
    2231                 :             : 
    2232                 :           0 :       g_free (trashdir_display_name);
    2233                 :           0 :       g_free (file_display_name);
    2234                 :             : 
    2235                 :           0 :       g_free (topdir);
    2236                 :           0 :       g_free (trashdir);
    2237                 :           0 :       g_free (infodir);
    2238                 :           0 :       g_free (filesdir);
    2239                 :             : 
    2240                 :           0 :       return FALSE;
    2241                 :             :     }
    2242                 :             : 
    2243                 :           1 :   g_free (trashdir);
    2244                 :             : 
    2245                 :           1 :   basename = g_path_get_basename (local->filename);
    2246                 :           1 :   basename_len = strlen (basename);
    2247                 :           1 :   i = 1;
    2248                 :           1 :   trashname = NULL;
    2249                 :           1 :   infofile = NULL;
    2250                 :             :   while (TRUE)
    2251                 :             :     {
    2252                 :           3 :       g_free (trashname);
    2253                 :           3 :       g_free (infofile);
    2254                 :             : 
    2255                 :             :       /* Make sure we can create a unique info file */
    2256                 :           3 :       trashname = get_unique_filename (basename, i++);
    2257                 :           3 :       infoname = g_strconcat (trashname, ".trashinfo", NULL);
    2258                 :           3 :       infofile = g_build_filename (infodir, infoname, NULL);
    2259                 :           3 :       g_free (infoname);
    2260                 :             : 
    2261                 :           3 :       fd = g_open (infofile, O_CREAT | O_EXCL | O_CLOEXEC, 0666);
    2262                 :           3 :       errsv = errno;
    2263                 :             : 
    2264                 :           3 :       if (fd == -1)
    2265                 :             :         {
    2266                 :           1 :           if (errsv == EEXIST)
    2267                 :           0 :             continue;
    2268                 :           1 :           else if (errsv == ENAMETOOLONG)
    2269                 :             :             {
    2270                 :           1 :               if (basename_len <= strlen (".trashinfo"))
    2271                 :           0 :                 break; /* fail with ENAMETOOLONG */
    2272                 :           1 :               basename_len -= strlen (".trashinfo");
    2273                 :           1 :               basename[basename_len] = '\0';
    2274                 :           1 :               i = 1;
    2275                 :           1 :               continue;
    2276                 :             :             }
    2277                 :             :           else
    2278                 :           0 :             break; /* fail with other error */
    2279                 :             :         }
    2280                 :             : 
    2281                 :           2 :       (void) g_close (fd, NULL);
    2282                 :             : 
    2283                 :             :       /* Make sure we can write the info file */
    2284                 :           2 :       if (!g_file_set_contents_full (infofile, NULL, 0,
    2285                 :             :                                      G_FILE_SET_CONTENTS_CONSISTENT | G_FILE_SET_CONTENTS_ONLY_EXISTING,
    2286                 :             :                                      0600, &my_error))
    2287                 :             :         {
    2288                 :           1 :           g_unlink (infofile);
    2289                 :           1 :           if (g_error_matches (my_error,
    2290                 :             :                                G_FILE_ERROR,
    2291                 :             :                                G_FILE_ERROR_NAMETOOLONG))
    2292                 :             :             {
    2293                 :           1 :               if (basename_len <= strlen (".XXXXXX"))
    2294                 :           0 :                 break; /* fail with ENAMETOOLONG */
    2295                 :           1 :               basename_len -= strlen (".XXXXXX");
    2296                 :           1 :               basename[basename_len] = '\0';
    2297                 :           1 :               i = 1;
    2298                 :           1 :               g_clear_error (&my_error);
    2299                 :           1 :               continue;
    2300                 :             :             }
    2301                 :             :           else
    2302                 :           0 :             break; /* fail with other error */
    2303                 :             :         }
    2304                 :             : 
    2305                 :             :       /* file created */
    2306                 :           1 :       break;
    2307                 :             :     }
    2308                 :             : 
    2309                 :           1 :   g_free (basename);
    2310                 :           1 :   g_free (infodir);
    2311                 :             : 
    2312                 :           1 :   if (fd == -1 || my_error)
    2313                 :             :     {
    2314                 :           0 :       g_free (filesdir);
    2315                 :           0 :       g_free (topdir);
    2316                 :           0 :       g_free (trashname);
    2317                 :           0 :       g_free (infofile);
    2318                 :             : 
    2319                 :           0 :       if (my_error)
    2320                 :           0 :         g_propagate_error (error, my_error);
    2321                 :             :       else
    2322                 :             :         {
    2323                 :           0 :           g_set_io_error (error,
    2324                 :             :                           _("Unable to create trashing info file for %s: %s"),
    2325                 :             :                           file, errsv);
    2326                 :             :         }
    2327                 :             : 
    2328                 :           0 :       return FALSE;
    2329                 :             :     }
    2330                 :             : 
    2331                 :             :   /* Write the full content of the info file before trashing to make
    2332                 :             :    * sure someone doesn't read an empty file.  See #749314
    2333                 :             :    */
    2334                 :             : 
    2335                 :             :   /* Use absolute names for homedir */
    2336                 :           1 :   if (is_homedir_trash)
    2337                 :           2 :     original_name = g_strdup (local->filename);
    2338                 :             :   else
    2339                 :           0 :     original_name = try_make_relative (local->filename, topdir);
    2340                 :           1 :   original_name_escaped = g_uri_escape_string (original_name, "/", FALSE);
    2341                 :             :   
    2342                 :           1 :   g_free (original_name);
    2343                 :           1 :   g_free (topdir);
    2344                 :             :   
    2345                 :             :   {
    2346                 :           1 :     GDateTime *now = g_date_time_new_now_local ();
    2347                 :           1 :     if (now != NULL)
    2348                 :           1 :       delete_time = g_date_time_format (now, "%Y-%m-%dT%H:%M:%S");
    2349                 :             :     else
    2350                 :           0 :       delete_time = g_strdup ("9999-12-31T23:59:59");
    2351                 :           1 :     g_date_time_unref (now);
    2352                 :             :   }
    2353                 :             : 
    2354                 :           1 :   data = g_strdup_printf ("[Trash Info]\nPath=%s\nDeletionDate=%s\n",
    2355                 :             :                           original_name_escaped, delete_time);
    2356                 :           1 :   g_free (delete_time);
    2357                 :           1 :   g_clear_pointer (&original_name_escaped, g_free);
    2358                 :             : 
    2359                 :           1 :   if (!g_file_set_contents_full (infofile, data, -1,
    2360                 :             :                             G_FILE_SET_CONTENTS_CONSISTENT | G_FILE_SET_CONTENTS_ONLY_EXISTING,
    2361                 :             :                             0600, error))
    2362                 :             :     {
    2363                 :           0 :       g_unlink (infofile);
    2364                 :             : 
    2365                 :           0 :       g_free (data);
    2366                 :           0 :       g_free (filesdir);
    2367                 :           0 :       g_free (trashname);
    2368                 :           0 :       g_free (infofile);
    2369                 :             : 
    2370                 :           0 :       return FALSE;
    2371                 :             :     }
    2372                 :             : 
    2373                 :           1 :   g_clear_pointer (&data, g_free);
    2374                 :             : 
    2375                 :             :   /* TODO: Maybe we should verify that you can delete the file from the trash
    2376                 :             :    * before moving it? OTOH, that is hard, as it needs a recursive scan
    2377                 :             :    */
    2378                 :             : 
    2379                 :           1 :   trashfile = g_build_filename (filesdir, trashname, NULL);
    2380                 :             : 
    2381                 :           1 :   g_free (filesdir);
    2382                 :             : 
    2383                 :           1 :   if (g_rename (local->filename, trashfile) == -1)
    2384                 :             :     {
    2385                 :           0 :       errsv = errno;
    2386                 :             : 
    2387                 :           0 :       g_unlink (infofile);
    2388                 :             : 
    2389                 :           0 :       g_free (trashname);
    2390                 :           0 :       g_free (infofile);
    2391                 :           0 :       g_free (trashfile);
    2392                 :             : 
    2393                 :           0 :       if (errsv == EXDEV)
    2394                 :             :         /* The trash dir was actually on another fs anyway!?
    2395                 :             :          * This can happen when the same device is mounted multiple
    2396                 :             :          * times, or with bind mounts of the same fs.
    2397                 :             :          */
    2398                 :           0 :         g_set_io_error (error,
    2399                 :             :                         _("Unable to trash file %s across filesystem boundaries"),
    2400                 :             :                         file, ENOTSUP);
    2401                 :             :       else
    2402                 :           0 :         g_set_io_error (error,
    2403                 :             :                         _("Unable to trash file %s: %s"),
    2404                 :             :                         file, errsv);
    2405                 :           0 :       return FALSE;
    2406                 :             :     }
    2407                 :             : 
    2408                 :           1 :   vfs = g_vfs_get_default ();
    2409                 :           1 :   class = G_VFS_GET_CLASS (vfs);
    2410                 :           1 :   if (class->local_file_moved)
    2411                 :           0 :     class->local_file_moved (vfs, local->filename, trashfile);
    2412                 :             : 
    2413                 :           1 :   g_free (trashfile);
    2414                 :             : 
    2415                 :             :   /* TODO: Do we need to update mtime/atime here after the move? */
    2416                 :             : 
    2417                 :           1 :   g_free (infofile);
    2418                 :           1 :   g_free (trashname);
    2419                 :             :   
    2420                 :           1 :   return TRUE;
    2421                 :             : }
    2422                 :             : #else /* G_OS_WIN32 */
    2423                 :             : gboolean
    2424                 :             : _g_local_file_has_trash_dir (const char *dirname, dev_t dir_dev)
    2425                 :             : {
    2426                 :             :   return FALSE;                 /* XXX ??? */
    2427                 :             : }
    2428                 :             : 
    2429                 :             : static gboolean
    2430                 :             : g_local_file_trash (GFile         *file,
    2431                 :             :                     GCancellable  *cancellable,
    2432                 :             :                     GError       **error)
    2433                 :             : {
    2434                 :             :   GLocalFile *local = G_LOCAL_FILE (file);
    2435                 :             :   SHFILEOPSTRUCTW op = {0};
    2436                 :             :   gboolean success;
    2437                 :             :   wchar_t *wfilename;
    2438                 :             :   long len;
    2439                 :             : 
    2440                 :             :   wfilename = g_utf8_to_utf16 (local->filename, -1, NULL, &len, NULL);
    2441                 :             :   /* SHFILEOPSTRUCT.pFrom is double-zero-terminated */
    2442                 :             :   wfilename = g_renew (wchar_t, wfilename, len + 2);
    2443                 :             :   wfilename[len + 1] = 0;
    2444                 :             : 
    2445                 :             :   op.wFunc = FO_DELETE;
    2446                 :             :   op.pFrom = wfilename;
    2447                 :             :   op.fFlags = FOF_ALLOWUNDO;
    2448                 :             : 
    2449                 :             :   success = SHFileOperationW (&op) == 0;
    2450                 :             : 
    2451                 :             :   if (success && op.fAnyOperationsAborted)
    2452                 :             :     {
    2453                 :             :       if (cancellable && !g_cancellable_is_cancelled (cancellable))
    2454                 :             :         g_cancellable_cancel (cancellable);
    2455                 :             :       g_set_io_error (error,
    2456                 :             :                       _("Unable to trash file %s: %s"),
    2457                 :             :                       file, ECANCELED);
    2458                 :             :       success = FALSE;
    2459                 :             :     }
    2460                 :             :   else if (!success)
    2461                 :             :     g_set_io_error (error,
    2462                 :             :                     _("Unable to trash file %s"),
    2463                 :             :                     file, 0);
    2464                 :             : 
    2465                 :             :   g_free (wfilename);
    2466                 :             :   return success;
    2467                 :             : }
    2468                 :             : #endif /* G_OS_WIN32 */
    2469                 :             : 
    2470                 :             : static gboolean
    2471                 :          81 : g_local_file_make_directory (GFile         *file,
    2472                 :             :                              GCancellable  *cancellable,
    2473                 :             :                              GError       **error)
    2474                 :             : {
    2475                 :          81 :   GLocalFile *local = G_LOCAL_FILE (file);
    2476                 :             :   
    2477                 :          81 :   if (g_mkdir (local->filename, 0777) == -1)
    2478                 :             :     {
    2479                 :          22 :       int errsv = errno;
    2480                 :             : 
    2481                 :          22 :       if (errsv == EINVAL)
    2482                 :             :         /* This must be an invalid filename, on e.g. FAT */
    2483                 :           0 :         g_set_error_literal (error, G_IO_ERROR,
    2484                 :             :                              G_IO_ERROR_INVALID_FILENAME,
    2485                 :             :                              _("Invalid filename"));
    2486                 :             :       else
    2487                 :          22 :         g_set_io_error (error,
    2488                 :             :                         _("Error creating directory %s: %s"),
    2489                 :             :                         file, errsv);
    2490                 :          22 :       return FALSE;
    2491                 :             :     }
    2492                 :             :   
    2493                 :          59 :   return TRUE;
    2494                 :             : }
    2495                 :             : 
    2496                 :             : #ifdef HAVE_SYMLINK
    2497                 :             : static gboolean
    2498                 :          42 : g_local_file_make_symbolic_link (GFile         *file,
    2499                 :             :                                  const char    *symlink_value,
    2500                 :             :                                  GCancellable  *cancellable,
    2501                 :             :                                  GError       **error)
    2502                 :             : {
    2503                 :          42 :   GLocalFile *local = G_LOCAL_FILE (file);
    2504                 :             :   
    2505                 :          42 :   if (symlink (symlink_value, local->filename) == -1)
    2506                 :             :     {
    2507                 :          11 :       int errsv = errno;
    2508                 :             : 
    2509                 :          11 :       if (errsv == EINVAL)
    2510                 :             :         /* This must be an invalid filename, on e.g. FAT */
    2511                 :           0 :         g_set_error_literal (error, G_IO_ERROR,
    2512                 :             :                              G_IO_ERROR_INVALID_FILENAME,
    2513                 :             :                              _("Invalid filename"));
    2514                 :          11 :       else if (errsv == EPERM)
    2515                 :           0 :         g_set_error (error, G_IO_ERROR,
    2516                 :             :                      G_IO_ERROR_NOT_SUPPORTED,
    2517                 :             :                      _("Filesystem does not support symbolic links"));
    2518                 :             :       else
    2519                 :          11 :         g_set_io_error (error,
    2520                 :             :                         _("Error making symbolic link %s: %s"),
    2521                 :             :                         file, errsv);
    2522                 :          11 :       return FALSE;
    2523                 :             :     }
    2524                 :          31 :   return TRUE;
    2525                 :             : }
    2526                 :             : #endif
    2527                 :             : 
    2528                 :             : static gboolean
    2529                 :          15 : g_local_file_move (GFile                  *source,
    2530                 :             :                    GFile                  *destination,
    2531                 :             :                    GFileCopyFlags          flags,
    2532                 :             :                    GCancellable           *cancellable,
    2533                 :             :                    GFileProgressCallback   progress_callback,
    2534                 :             :                    gpointer                progress_callback_data,
    2535                 :             :                    GError                **error)
    2536                 :             : {
    2537                 :             :   GLocalFile *local_source, *local_destination;
    2538                 :             :   GStatBuf statbuf;
    2539                 :             :   gboolean destination_exist, source_is_dir;
    2540                 :             :   char *backup_name;
    2541                 :             :   int res;
    2542                 :             :   off_t source_size;
    2543                 :             :   GVfsClass *class;
    2544                 :             :   GVfs *vfs;
    2545                 :             : 
    2546                 :          15 :   if (!G_IS_LOCAL_FILE (source) ||
    2547                 :          15 :       !G_IS_LOCAL_FILE (destination))
    2548                 :             :     {
    2549                 :             :       /* Fall back to default move */
    2550                 :           0 :       g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_NOT_SUPPORTED, "Move not supported");
    2551                 :           0 :       return FALSE;
    2552                 :             :     }
    2553                 :             :   
    2554                 :          15 :   local_source = G_LOCAL_FILE (source);
    2555                 :          15 :   local_destination = G_LOCAL_FILE (destination);
    2556                 :             :   
    2557                 :          15 :   res = g_lstat (local_source->filename, &statbuf);
    2558                 :          15 :   if (res == -1)
    2559                 :             :     {
    2560                 :           1 :       int errsv = errno;
    2561                 :             : 
    2562                 :           1 :       g_set_io_error (error,
    2563                 :             :                       _("Error moving file %s: %s"),
    2564                 :             :                       source, errsv);
    2565                 :           1 :       return FALSE;
    2566                 :             :     }
    2567                 :             : 
    2568                 :          14 :   source_is_dir = S_ISDIR (statbuf.st_mode);
    2569                 :          14 :   source_size = statbuf.st_size;
    2570                 :             :   
    2571                 :          14 :   destination_exist = FALSE;
    2572                 :          14 :   res = g_lstat (local_destination->filename, &statbuf);
    2573                 :          14 :   if (res == 0)
    2574                 :             :     {
    2575                 :           0 :       destination_exist = TRUE; /* Target file exists */
    2576                 :             : 
    2577                 :           0 :       if (flags & G_FILE_COPY_OVERWRITE)
    2578                 :             :         {
    2579                 :             :           /* Always fail on dirs, even with overwrite */
    2580                 :           0 :           if (S_ISDIR (statbuf.st_mode))
    2581                 :             :             {
    2582                 :           0 :               if (source_is_dir)
    2583                 :           0 :                 g_set_error_literal (error,
    2584                 :             :                                      G_IO_ERROR,
    2585                 :             :                                      G_IO_ERROR_WOULD_MERGE,
    2586                 :             :                                      _("Can’t move directory over directory"));
    2587                 :             :               else
    2588                 :           0 :                 g_set_error_literal (error,
    2589                 :             :                                      G_IO_ERROR,
    2590                 :             :                                      G_IO_ERROR_IS_DIRECTORY,
    2591                 :             :                                      _("Can’t copy over directory"));
    2592                 :           0 :               return FALSE;
    2593                 :             :             }
    2594                 :             :         }
    2595                 :             :       else
    2596                 :             :         {
    2597                 :           0 :           g_set_io_error (error,
    2598                 :             :                           _("Error moving file %s: %s"),
    2599                 :             :                           source, EEXIST);
    2600                 :           0 :           return FALSE;
    2601                 :             :         }
    2602                 :             :     }
    2603                 :             :   
    2604                 :          14 :   if (flags & G_FILE_COPY_BACKUP && destination_exist)
    2605                 :             :     {
    2606                 :           0 :       backup_name = g_strconcat (local_destination->filename, "~", NULL);
    2607                 :           0 :       if (g_rename (local_destination->filename, backup_name) == -1)
    2608                 :             :         {
    2609                 :           0 :           g_set_error_literal (error,
    2610                 :             :                                G_IO_ERROR,
    2611                 :             :                                G_IO_ERROR_CANT_CREATE_BACKUP,
    2612                 :             :                                _("Backup file creation failed"));
    2613                 :           0 :           g_free (backup_name);
    2614                 :           0 :           return FALSE;
    2615                 :             :         }
    2616                 :           0 :       g_free (backup_name);
    2617                 :           0 :       destination_exist = FALSE; /* It did, but no more */
    2618                 :             :     }
    2619                 :             : 
    2620                 :          14 :   if (source_is_dir && destination_exist && (flags & G_FILE_COPY_OVERWRITE))
    2621                 :             :     {
    2622                 :             :       /* Source is a dir, destination exists (and is not a dir, because that would have failed
    2623                 :             :          earlier), and we're overwriting. Manually remove the target so we can do the rename. */
    2624                 :           0 :       res = g_unlink (local_destination->filename);
    2625                 :           0 :       if (res == -1)
    2626                 :             :         {
    2627                 :           0 :           int errsv = errno;
    2628                 :             : 
    2629                 :           0 :           g_set_error (error, G_IO_ERROR,
    2630                 :           0 :                        g_io_error_from_errno (errsv),
    2631                 :             :                        _("Error removing target file: %s"),
    2632                 :             :                        g_strerror (errsv));
    2633                 :           0 :           return FALSE;
    2634                 :             :         }
    2635                 :             :     }
    2636                 :             :   
    2637                 :          14 :   if (g_rename (local_source->filename, local_destination->filename) == -1)
    2638                 :             :     {
    2639                 :           0 :       int errsv = errno;
    2640                 :             : 
    2641                 :           0 :       if (errsv == EXDEV)
    2642                 :             :         /* This will cause the fallback code to run */
    2643                 :           0 :         g_set_error_literal (error, G_IO_ERROR,
    2644                 :             :                              G_IO_ERROR_NOT_SUPPORTED,
    2645                 :             :                              _("Move between mounts not supported"));
    2646                 :           0 :       else if (errsv == EINVAL)
    2647                 :             :         /* This must be an invalid filename, on e.g. FAT, or
    2648                 :             :            we're trying to move the file into itself...
    2649                 :             :            We return invalid filename for both... */
    2650                 :           0 :         g_set_error_literal (error, G_IO_ERROR,
    2651                 :             :                              G_IO_ERROR_INVALID_FILENAME,
    2652                 :             :                              _("Invalid filename"));
    2653                 :             :       else
    2654                 :           0 :         g_set_io_error (error,
    2655                 :             :                         _("Error moving file %s: %s"),
    2656                 :             :                         source, errsv);
    2657                 :           0 :       return FALSE;
    2658                 :             :     }
    2659                 :             : 
    2660                 :          14 :   vfs = g_vfs_get_default ();
    2661                 :          14 :   class = G_VFS_GET_CLASS (vfs);
    2662                 :          14 :   if (class->local_file_moved)
    2663                 :           0 :     class->local_file_moved (vfs, local_source->filename, local_destination->filename);
    2664                 :             : 
    2665                 :             :   /* Make sure we send full copied size */
    2666                 :          14 :   if (progress_callback)
    2667                 :           2 :     progress_callback (source_size, source_size, progress_callback_data);
    2668                 :             :   
    2669                 :          14 :   return TRUE;
    2670                 :             : }
    2671                 :             : 
    2672                 :             : #ifdef G_OS_WIN32
    2673                 :             : 
    2674                 :             : gboolean
    2675                 :             : g_local_file_is_nfs_home (const gchar *filename)
    2676                 :             : {
    2677                 :             :   return FALSE;
    2678                 :             : }
    2679                 :             : 
    2680                 :             : #else
    2681                 :             : 
    2682                 :             : static gboolean
    2683                 :           0 : is_remote_fs_type (const gchar *fsname)
    2684                 :             : {
    2685                 :           0 :   if (fsname != NULL)
    2686                 :             :     {
    2687                 :           0 :       if (strcmp (fsname, "nfs") == 0)
    2688                 :           0 :         return TRUE;
    2689                 :           0 :       if (strcmp (fsname, "nfs4") == 0)
    2690                 :           0 :         return TRUE;
    2691                 :           0 :       if (strcmp (fsname, "cifs") == 0)
    2692                 :           0 :         return TRUE;
    2693                 :           0 :       if (strcmp (fsname, "smb") == 0)
    2694                 :           0 :         return TRUE;
    2695                 :           0 :       if (strcmp (fsname, "smb2") == 0)
    2696                 :           0 :         return TRUE;
    2697                 :           0 :       if (strcmp (fsname, "fuse.sshfs") == 0)
    2698                 :           0 :         return TRUE;
    2699                 :             :     }
    2700                 :             : 
    2701                 :           0 :   return FALSE;
    2702                 :             : }
    2703                 :             : 
    2704                 :             : gboolean
    2705                 :         676 : g_local_file_is_nfs_home (const gchar *filename)
    2706                 :             : {
    2707                 :             :   static gboolean remote_home = FALSE;
    2708                 :             :   static gsize initialized;
    2709                 :             :   const gchar *home;
    2710                 :             : 
    2711                 :         676 :   home = g_get_home_dir ();
    2712                 :         676 :   if (path_has_prefix (filename, home))
    2713                 :             :     {
    2714                 :           0 :       if (g_once_init_enter (&initialized))
    2715                 :             :         {
    2716                 :             :           GFile *file;
    2717                 :             :           GFileInfo *info;
    2718                 :           0 :           const gchar *fs_type = NULL;
    2719                 :             : 
    2720                 :           0 :           file = _g_local_file_new (home);
    2721                 :           0 :           info = g_local_file_query_filesystem_info (file, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE, NULL, NULL);
    2722                 :           0 :           if (info != NULL)
    2723                 :           0 :             fs_type = g_file_info_get_attribute_string (info, G_FILE_ATTRIBUTE_FILESYSTEM_TYPE);
    2724                 :           0 :           if (g_strcmp0 (fs_type, "nfs") == 0 || g_strcmp0 (fs_type, "nfs4") == 0)
    2725                 :           0 :             remote_home = TRUE;
    2726                 :           0 :           g_clear_object (&info);
    2727                 :           0 :           g_object_unref (file);
    2728                 :             : 
    2729                 :           0 :           g_once_init_leave (&initialized, TRUE);
    2730                 :             :         }
    2731                 :           0 :       return remote_home;
    2732                 :             :     }
    2733                 :             : 
    2734                 :         676 :   return FALSE;
    2735                 :             : }
    2736                 :             : #endif /* !G_OS_WIN32 */
    2737                 :             : 
    2738                 :             : static GFileMonitor*
    2739                 :          10 : g_local_file_monitor_dir (GFile             *file,
    2740                 :             :                           GFileMonitorFlags  flags,
    2741                 :             :                           GCancellable      *cancellable,
    2742                 :             :                           GError           **error)
    2743                 :             : {
    2744                 :          10 :   GLocalFile *local_file = G_LOCAL_FILE (file);
    2745                 :             : 
    2746                 :          10 :   return g_local_file_monitor_new_for_path (local_file->filename, TRUE, flags, error);
    2747                 :             : }
    2748                 :             : 
    2749                 :             : static GFileMonitor*
    2750                 :         116 : g_local_file_monitor_file (GFile             *file,
    2751                 :             :                            GFileMonitorFlags  flags,
    2752                 :             :                            GCancellable      *cancellable,
    2753                 :             :                            GError           **error)
    2754                 :             : {
    2755                 :         116 :   GLocalFile *local_file = G_LOCAL_FILE (file);
    2756                 :             : 
    2757                 :         116 :   return g_local_file_monitor_new_for_path (local_file->filename, FALSE, flags, error);
    2758                 :             : }
    2759                 :             : 
    2760                 :             : /* Here is the GLocalFile implementation of g_file_measure_disk_usage().
    2761                 :             :  *
    2762                 :             :  * If available, we use fopenat() in preference to filenames for
    2763                 :             :  * efficiency and safety reasons.  We know that fopenat() is available
    2764                 :             :  * based on if AT_FDCWD is defined.  POSIX guarantees that this will be
    2765                 :             :  * defined as a macro.
    2766                 :             :  *
    2767                 :             :  * We use a linked list of stack-allocated GSList nodes in order to be
    2768                 :             :  * able to reconstruct the filename for error messages.  We actually
    2769                 :             :  * pass the filename to operate on through the top node of the list.
    2770                 :             :  *
    2771                 :             :  * In case we're using openat(), this top filename will be a basename
    2772                 :             :  * which should be opened in the directory which has also had its fd
    2773                 :             :  * passed along.  If we're not using openat() then it will be a full
    2774                 :             :  * absolute filename.
    2775                 :             :  */
    2776                 :             : 
    2777                 :             : static gboolean
    2778                 :           0 : g_local_file_measure_size_error (GFileMeasureFlags   flags,
    2779                 :             :                                  gint                saved_errno,
    2780                 :             :                                  GSList             *name,
    2781                 :             :                                  GError            **error)
    2782                 :             : {
    2783                 :             :   /* Only report an error if we were at the toplevel or if the caller
    2784                 :             :    * requested reporting of all errors.
    2785                 :             :    */
    2786                 :           0 :   if ((name->next == NULL) || (flags & G_FILE_MEASURE_REPORT_ANY_ERROR))
    2787                 :             :     {
    2788                 :             :       GString *filename;
    2789                 :             :       GSList *node;
    2790                 :             : 
    2791                 :             :       /* Skip some work if there is no error return */
    2792                 :           0 :       if (!error)
    2793                 :           0 :         return FALSE;
    2794                 :             : 
    2795                 :             : #ifdef AT_FDCWD
    2796                 :             :       /* If using openat() we need to rebuild the filename for the message */
    2797                 :           0 :       filename = g_string_new (name->data);
    2798                 :           0 :       for (node = name->next; node; node = node->next)
    2799                 :             :         {
    2800                 :             :           gchar *utf8;
    2801                 :             : 
    2802                 :           0 :           g_string_prepend_c (filename, G_DIR_SEPARATOR);
    2803                 :           0 :           utf8 = g_filename_display_name (node->data);
    2804                 :           0 :           g_string_prepend (filename, utf8);
    2805                 :           0 :           g_free (utf8);
    2806                 :             :         }
    2807                 :             : #else
    2808                 :             :       {
    2809                 :             :         gchar *utf8;
    2810                 :             : 
    2811                 :             :         /* Otherwise, we already have it, so just use it. */
    2812                 :             :         node = name;
    2813                 :             :         filename = g_string_new (NULL);
    2814                 :             :         utf8 = g_filename_display_name (node->data);
    2815                 :             :         g_string_append (filename, utf8);
    2816                 :             :         g_free (utf8);
    2817                 :             :       }
    2818                 :             : #endif
    2819                 :             : 
    2820                 :           0 :       g_set_error (error, G_IO_ERROR, g_io_error_from_errno (saved_errno),
    2821                 :             :                    _("Could not determine the disk usage of %s: %s"),
    2822                 :             :                    filename->str, g_strerror (saved_errno));
    2823                 :             : 
    2824                 :           0 :       g_string_free (filename, TRUE);
    2825                 :             : 
    2826                 :           0 :       return FALSE;
    2827                 :             :     }
    2828                 :             : 
    2829                 :             :   else
    2830                 :             :     /* We're not reporting this error... */
    2831                 :           0 :     return TRUE;
    2832                 :             : }
    2833                 :             : 
    2834                 :             : typedef struct
    2835                 :             : {
    2836                 :             :   GFileMeasureFlags  flags;
    2837                 :             :   dev_t              contained_on;
    2838                 :             :   GCancellable      *cancellable;
    2839                 :             : 
    2840                 :             :   GFileMeasureProgressCallback progress_callback;
    2841                 :             :   gpointer                     progress_data;
    2842                 :             : 
    2843                 :             :   guint64 disk_usage;
    2844                 :             :   guint64 num_dirs;
    2845                 :             :   guint64 num_files;
    2846                 :             : 
    2847                 :             :   guint64 last_progress_report;
    2848                 :             : } MeasureState;
    2849                 :             : 
    2850                 :             : static gboolean
    2851                 :             : g_local_file_measure_size_of_contents (gint           fd,
    2852                 :             :                                        GSList        *dir_name,
    2853                 :             :                                        MeasureState  *state,
    2854                 :             :                                        GError       **error);
    2855                 :             : 
    2856                 :             : /*
    2857                 :             :  * _g_stat_is_size_usable:
    2858                 :             :  * @buf: a #GLocalFileStat.
    2859                 :             :  *
    2860                 :             :  * Checks if the file type is such that the `st_size` field of `struct stat` is
    2861                 :             :  * well-defined by POSIX.
    2862                 :             :  * (see https://pubs.opengroup.org/onlinepubs/009696799/basedefs/sys/stat.h.html)
    2863                 :             :  *
    2864                 :             :  * This behaviour is aligned with `du` from GNU Coreutils 9.2+
    2865                 :             :  * (see https://lists.gnu.org/archive/html/bug-coreutils/2023-03/msg00007.html)
    2866                 :             :  * and makes apparent size sums well-defined; formerly, they depended on the
    2867                 :             :  * implementation, and could differ across filesystems.
    2868                 :             :  *
    2869                 :             :  * Returns: %TRUE if the size field is well-defined, %FALSE otherwise.
    2870                 :             :  **/
    2871                 :             : inline static gboolean
    2872                 :          76 : _g_stat_is_size_usable (const GLocalFileStat *buf)
    2873                 :             : {
    2874                 :             : #ifndef HAVE_STATX
    2875                 :             :   /* Memory objects are defined by POSIX, but are not supported by statx nor Windows */
    2876                 :             : #ifdef S_TYPEISSHM
    2877                 :             :   if (S_TYPEISSHM (buf))
    2878                 :             :     return TRUE;
    2879                 :             : #endif
    2880                 :             : #ifdef S_TYPEISTMO
    2881                 :             :   if (S_TYPEISTMO (buf))
    2882                 :             :     return TRUE;
    2883                 :             : #endif
    2884                 :             : #endif
    2885                 :             : 
    2886                 :          76 :   return S_ISREG (_g_stat_mode (buf)) || S_ISLNK (_g_stat_mode (buf));
    2887                 :             : }
    2888                 :             : 
    2889                 :             : static gboolean
    2890                 :          76 : g_local_file_measure_size_of_file (gint           parent_fd,
    2891                 :             :                                    GSList        *name,
    2892                 :             :                                    MeasureState  *state,
    2893                 :             :                                    GError       **error)
    2894                 :             : {
    2895                 :             :   GLocalFileStat buf;
    2896                 :             : 
    2897                 :          76 :   if (g_cancellable_set_error_if_cancelled (state->cancellable, error))
    2898                 :           0 :     return FALSE;
    2899                 :             : 
    2900                 :             : #if defined (AT_FDCWD)
    2901                 :          76 :   if (g_local_file_fstatat (parent_fd, name->data, AT_SYMLINK_NOFOLLOW,
    2902                 :             :                             G_LOCAL_FILE_STAT_FIELD_BASIC_STATS,
    2903                 :             :                             G_LOCAL_FILE_STAT_FIELD_ALL & (~G_LOCAL_FILE_STAT_FIELD_ATIME),
    2904                 :             :                             &buf) != 0)
    2905                 :             :     {
    2906                 :           0 :       int errsv = errno;
    2907                 :           0 :       return g_local_file_measure_size_error (state->flags, errsv, name, error);
    2908                 :             :     }
    2909                 :             : #elif defined (HAVE_LSTAT) || !defined (G_OS_WIN32)
    2910                 :             :   if (g_lstat (name->data, &buf) != 0)
    2911                 :             :     {
    2912                 :             :       int errsv = errno;
    2913                 :             :       return g_local_file_measure_size_error (state->flags, errsv, name, error);
    2914                 :             :     }
    2915                 :             : #else /* !AT_FDCWD && !HAVE_LSTAT && G_OS_WIN32 */
    2916                 :             :   if (GLIB_PRIVATE_CALL (g_win32_lstat_utf8) (name->data, &buf) != 0)
    2917                 :             :     {
    2918                 :             :       int errsv = errno;
    2919                 :             :       return g_local_file_measure_size_error (state->flags, errsv, name, error);
    2920                 :             :     }
    2921                 :             : #endif
    2922                 :             : 
    2923                 :          76 :   if (name->next)
    2924                 :             :     {
    2925                 :             :       /* If not at the toplevel, check for a device boundary. */
    2926                 :             : 
    2927                 :          74 :       if (state->flags & G_FILE_MEASURE_NO_XDEV)
    2928                 :           0 :         if (state->contained_on != _g_stat_dev (&buf))
    2929                 :           0 :           return TRUE;
    2930                 :             :     }
    2931                 :             :   else
    2932                 :             :     {
    2933                 :             :       /* If, however, this is the toplevel, set the device number so
    2934                 :             :        * that recursive invocations can compare against it.
    2935                 :             :        */
    2936                 :           2 :       state->contained_on = _g_stat_dev (&buf);
    2937                 :             :     }
    2938                 :             : 
    2939                 :             : #if defined (G_OS_WIN32)
    2940                 :             :   if (~state->flags & G_FILE_MEASURE_APPARENT_SIZE)
    2941                 :             :     state->disk_usage += buf.allocated_size;
    2942                 :             :   else
    2943                 :             : #elif defined (HAVE_STRUCT_STAT_ST_BLOCKS)
    2944                 :          76 :   if (~state->flags & G_FILE_MEASURE_APPARENT_SIZE)
    2945                 :           0 :     state->disk_usage += _g_stat_blocks (&buf) * G_GUINT64_CONSTANT (512);
    2946                 :             :   else
    2947                 :             : #endif
    2948                 :          76 :   if (_g_stat_is_size_usable (&buf))
    2949                 :          64 :     state->disk_usage += _g_stat_size (&buf);
    2950                 :             : 
    2951                 :          76 :   if (S_ISDIR (_g_stat_mode (&buf)))
    2952                 :          12 :     state->num_dirs++;
    2953                 :             :   else
    2954                 :          64 :     state->num_files++;
    2955                 :             : 
    2956                 :          76 :   if (state->progress_callback)
    2957                 :             :     {
    2958                 :             :       /* We could attempt to do some cleverness here in order to avoid
    2959                 :             :        * calling clock_gettime() so much, but we're doing stats and opens
    2960                 :             :        * all over the place already...
    2961                 :             :        */
    2962                 :          38 :       if (state->last_progress_report)
    2963                 :             :         {
    2964                 :             :           guint64 now;
    2965                 :             : 
    2966                 :          37 :           now = g_get_monotonic_time ();
    2967                 :             : 
    2968                 :          37 :           if (state->last_progress_report + 200 * G_TIME_SPAN_MILLISECOND < now)
    2969                 :             :             {
    2970                 :           0 :               (* state->progress_callback) (TRUE,
    2971                 :             :                                             state->disk_usage, state->num_dirs, state->num_files,
    2972                 :             :                                             state->progress_data);
    2973                 :           0 :               state->last_progress_report = now;
    2974                 :             :             }
    2975                 :             :         }
    2976                 :             :       else
    2977                 :             :         {
    2978                 :             :           /* We must do an initial report to inform that more reports
    2979                 :             :            * will be coming.
    2980                 :             :            */
    2981                 :           1 :           (* state->progress_callback) (TRUE, 0, 0, 0, state->progress_data);
    2982                 :           1 :           state->last_progress_report = g_get_monotonic_time ();
    2983                 :             :         }
    2984                 :             :     }
    2985                 :             : 
    2986                 :          76 :   if (S_ISDIR (_g_stat_mode (&buf)))
    2987                 :             :     {
    2988                 :          12 :       int dir_fd = -1;
    2989                 :             : #ifdef AT_FDCWD
    2990                 :             :       int errsv;
    2991                 :             : #endif
    2992                 :             : 
    2993                 :          12 :       if (g_cancellable_set_error_if_cancelled (state->cancellable, error))
    2994                 :           0 :         return FALSE;
    2995                 :             : 
    2996                 :             : #ifdef AT_FDCWD
    2997                 :             : #ifdef HAVE_OPEN_O_DIRECTORY
    2998                 :          12 :       dir_fd = openat (parent_fd, name->data, O_RDONLY | O_DIRECTORY | O_CLOEXEC);
    2999                 :             : #else
    3000                 :             :       dir_fd = openat (parent_fd, name->data, O_RDONLY | O_CLOEXEC);
    3001                 :             : #endif
    3002                 :          12 :       errsv = errno;
    3003                 :          12 :       if (dir_fd < 0)
    3004                 :           0 :         return g_local_file_measure_size_error (state->flags, errsv, name, error);
    3005                 :             : #endif
    3006                 :             : 
    3007                 :          12 :       if (!g_local_file_measure_size_of_contents (dir_fd, name, state, error))
    3008                 :           0 :         return FALSE;
    3009                 :             :     }
    3010                 :             : 
    3011                 :          76 :   return TRUE;
    3012                 :             : }
    3013                 :             : 
    3014                 :             : static gboolean
    3015                 :          12 : g_local_file_measure_size_of_contents (gint           fd,
    3016                 :             :                                        GSList        *dir_name,
    3017                 :             :                                        MeasureState  *state,
    3018                 :             :                                        GError       **error)
    3019                 :             : {
    3020                 :          12 :   gboolean success = TRUE;
    3021                 :             :   const gchar *name;
    3022                 :             :   GDir *dir;
    3023                 :             :   gint saved_errno;
    3024                 :             : 
    3025                 :             : #ifdef AT_FDCWD
    3026                 :             :   {
    3027                 :             :     /* If this fails, we want to preserve the errno from fdopendir() */
    3028                 :             :     DIR *dirp;
    3029                 :          12 :     dirp = fdopendir (fd);
    3030                 :          12 :     saved_errno = errno;
    3031                 :          12 :     dir = dirp ? GLIB_PRIVATE_CALL(g_dir_new_from_dirp) (dirp) : NULL;
    3032                 :          12 :     g_assert ((dirp == NULL) == (dir == NULL));
    3033                 :             :   }
    3034                 :             : #else
    3035                 :             :   dir = GLIB_PRIVATE_CALL(g_dir_open_with_errno) (dir_name->data, 0);
    3036                 :             :   saved_errno = errno;
    3037                 :             : #endif
    3038                 :             : 
    3039                 :          12 :   if (dir == NULL)
    3040                 :             :     {
    3041                 :             : #ifdef AT_FDCWD
    3042                 :           0 :       close (fd);
    3043                 :             : #endif
    3044                 :             : 
    3045                 :           0 :       return g_local_file_measure_size_error (state->flags, saved_errno, dir_name, error);
    3046                 :             :     }
    3047                 :             : 
    3048                 :          86 :   while (success && (name = g_dir_read_name (dir)))
    3049                 :             :     {
    3050                 :             :       GSList node;
    3051                 :             : 
    3052                 :          74 :       node.next = dir_name;
    3053                 :             : #ifdef AT_FDCWD
    3054                 :          74 :       node.data = (gchar *) name;
    3055                 :             : #else
    3056                 :             :       node.data = g_build_filename (dir_name->data, name, NULL);
    3057                 :             : #endif
    3058                 :             : 
    3059                 :          74 :       success = g_local_file_measure_size_of_file (fd, &node, state, error);
    3060                 :             : 
    3061                 :             : #ifndef AT_FDCWD
    3062                 :             :       g_free (node.data);
    3063                 :             : #endif
    3064                 :             :     }
    3065                 :             : 
    3066                 :          12 :   g_dir_close (dir);
    3067                 :             : 
    3068                 :          12 :   return success;
    3069                 :             : }
    3070                 :             : 
    3071                 :             : static gboolean
    3072                 :           2 : g_local_file_measure_disk_usage (GFile                         *file,
    3073                 :             :                                  GFileMeasureFlags              flags,
    3074                 :             :                                  GCancellable                  *cancellable,
    3075                 :             :                                  GFileMeasureProgressCallback   progress_callback,
    3076                 :             :                                  gpointer                       progress_data,
    3077                 :             :                                  guint64                       *disk_usage,
    3078                 :             :                                  guint64                       *num_dirs,
    3079                 :             :                                  guint64                       *num_files,
    3080                 :             :                                  GError                       **error)
    3081                 :             : {
    3082                 :           2 :   GLocalFile *local_file = G_LOCAL_FILE (file);
    3083                 :           2 :   MeasureState state = { 0, };
    3084                 :           2 :   gint root_fd = -1;
    3085                 :             :   GSList node;
    3086                 :             : 
    3087                 :           2 :   state.flags = flags;
    3088                 :           2 :   state.cancellable = cancellable;
    3089                 :           2 :   state.progress_callback = progress_callback;
    3090                 :           2 :   state.progress_data = progress_data;
    3091                 :             : 
    3092                 :             : #ifdef AT_FDCWD
    3093                 :           2 :   root_fd = AT_FDCWD;
    3094                 :             : #endif
    3095                 :             : 
    3096                 :           2 :   node.data = local_file->filename;
    3097                 :           2 :   node.next = NULL;
    3098                 :             : 
    3099                 :           2 :   if (!g_local_file_measure_size_of_file (root_fd, &node, &state, error))
    3100                 :           0 :     return FALSE;
    3101                 :             : 
    3102                 :           2 :   if (disk_usage)
    3103                 :           2 :     *disk_usage = state.disk_usage;
    3104                 :             : 
    3105                 :           2 :   if (num_dirs)
    3106                 :           2 :     *num_dirs = state.num_dirs;
    3107                 :             : 
    3108                 :           2 :   if (num_files)
    3109                 :           2 :     *num_files = state.num_files;
    3110                 :             : 
    3111                 :           2 :   return TRUE;
    3112                 :             : }
    3113                 :             : 
    3114                 :             : static void
    3115                 :          34 : g_local_file_file_iface_init (GFileIface *iface)
    3116                 :             : {
    3117                 :          34 :   iface->dup = g_local_file_dup;
    3118                 :          34 :   iface->hash = g_local_file_hash;
    3119                 :          34 :   iface->equal = g_local_file_equal;
    3120                 :          34 :   iface->is_native = g_local_file_is_native;
    3121                 :          34 :   iface->has_uri_scheme = g_local_file_has_uri_scheme;
    3122                 :          34 :   iface->get_uri_scheme = g_local_file_get_uri_scheme;
    3123                 :          34 :   iface->get_basename = g_local_file_get_basename;
    3124                 :          34 :   iface->get_path = g_local_file_get_path;
    3125                 :          34 :   iface->get_uri = g_local_file_get_uri;
    3126                 :          34 :   iface->get_parse_name = g_local_file_get_parse_name;
    3127                 :          34 :   iface->get_parent = g_local_file_get_parent;
    3128                 :          34 :   iface->prefix_matches = g_local_file_prefix_matches;
    3129                 :          34 :   iface->get_relative_path = g_local_file_get_relative_path;
    3130                 :          34 :   iface->resolve_relative_path = g_local_file_resolve_relative_path;
    3131                 :          34 :   iface->get_child_for_display_name = g_local_file_get_child_for_display_name;
    3132                 :          34 :   iface->set_display_name = g_local_file_set_display_name;
    3133                 :          34 :   iface->enumerate_children = g_local_file_enumerate_children;
    3134                 :          34 :   iface->query_info = g_local_file_query_info;
    3135                 :          34 :   iface->query_filesystem_info = g_local_file_query_filesystem_info;
    3136                 :          34 :   iface->find_enclosing_mount = g_local_file_find_enclosing_mount;
    3137                 :          34 :   iface->query_settable_attributes = g_local_file_query_settable_attributes;
    3138                 :          34 :   iface->query_writable_namespaces = g_local_file_query_writable_namespaces;
    3139                 :          34 :   iface->set_attribute = g_local_file_set_attribute;
    3140                 :          34 :   iface->set_attributes_from_info = g_local_file_set_attributes_from_info;
    3141                 :          34 :   iface->read_fn = g_local_file_read;
    3142                 :          34 :   iface->append_to = g_local_file_append_to;
    3143                 :          34 :   iface->create = g_local_file_create;
    3144                 :          34 :   iface->replace = g_local_file_replace;
    3145                 :          34 :   iface->open_readwrite = g_local_file_open_readwrite;
    3146                 :          34 :   iface->create_readwrite = g_local_file_create_readwrite;
    3147                 :          34 :   iface->replace_readwrite = g_local_file_replace_readwrite;
    3148                 :          34 :   iface->delete_file = g_local_file_delete;
    3149                 :          34 :   iface->trash = g_local_file_trash;
    3150                 :          34 :   iface->make_directory = g_local_file_make_directory;
    3151                 :             : #ifdef HAVE_SYMLINK
    3152                 :          34 :   iface->make_symbolic_link = g_local_file_make_symbolic_link;
    3153                 :             : #endif
    3154                 :          34 :   iface->move = g_local_file_move;
    3155                 :          34 :   iface->monitor_dir = g_local_file_monitor_dir;
    3156                 :          34 :   iface->monitor_file = g_local_file_monitor_file;
    3157                 :          34 :   iface->measure_disk_usage = g_local_file_measure_disk_usage;
    3158                 :             : #if defined(HAVE_FACCESSAT) && !defined(__FreeBSD__)
    3159                 :          34 :   iface->query_exists = g_local_file_query_exists;
    3160                 :             : #endif
    3161                 :             : 
    3162                 :          34 :   iface->supports_thread_contexts = TRUE;
    3163                 :          34 : }
        

Generated by: LCOV version 2.0-1