From 112c285fcc065d07734b30ba49a62ead3be3d2c4 Mon Sep 17 00:00:00 2001 From: Volker Hilsheimer Date: Mon, 4 May 2020 09:44:15 +0200 Subject: [PATCH] QFile::moveToTrash: use $XDG_DATA_HOME/Trash as the trash directory The code assumed that files in $HOME should be moved into $HOME/.Trash, which is not what the spec says. The "home trash" is defined to be $XDG_DATA_HOME/Trash, and we can expect $XDG_DATA_HOME to exist. If it doesn't, then we can safely fail, as the environment is not compliant with the Desktop Base Directory Specification [1] anyway. [1] http://www.freedesktop.org/Standards/basedir-spec This will make the tests fail on such non-compliant environments, such as server versions of the distribution. That's acceptable. [ChangeLog][QtCore][QFile] moveToTrash now creates the trash folder on Linux as $XDG_DATA_HOME/Trash, as required by the freedesktop.org spec. Change-Id: I7ef73c0c268ef5ea4df141bb7831b93a65ad213a Fixes: QTBUG-83933 Pick-to: 5.15 Reviewed-by: Qt CI Bot Reviewed-by: David Faure --- src/corelib/io/qfilesystemengine_unix.cpp | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/corelib/io/qfilesystemengine_unix.cpp b/src/corelib/io/qfilesystemengine_unix.cpp index 2419a013323..d91807c3426 100644 --- a/src/corelib/io/qfilesystemengine_unix.cpp +++ b/src/corelib/io/qfilesystemengine_unix.cpp @@ -47,6 +47,9 @@ #include #include #include +#ifndef QT_BOOTSTRAPPED +# include +#endif // QT_BOOTSTRAPPED #include #include // for realpath() @@ -1212,6 +1215,7 @@ static QString freeDesktopTrashLocation(const QString &sourcePath) | QFileDevice::WriteOwner | QFileDevice::ExeOwner; QString targetDir = topDir.filePath(trashDir); + // deliberately not using mkpath, since we want to fail if topDir doesn't exist if (topDir.mkdir(trashDir)) QFile::setPermissions(targetDir, ownerPerms); if (QFileInfo(targetDir).isDir()) @@ -1227,11 +1231,11 @@ static QString freeDesktopTrashLocation(const QString &sourcePath) }; QString trash; - const QLatin1String dotTrash(".Trash"); const QStorageInfo sourceStorage(sourcePath); const QStorageInfo homeStorage(QDir::home()); // We support trashing of files outside the users home partition if (sourceStorage != homeStorage) { + const QLatin1String dotTrash(".Trash"); QDir topDir(sourceStorage.rootPath()); /* Method 1: @@ -1288,13 +1292,17 @@ static QString freeDesktopTrashLocation(const QString &sourcePath) file into the user's “home trash” or refuse to trash it." We trash the file into the user's home trash. + + "Its name and location are $XDG_DATA_HOME/Trash"; $XDG_DATA_HOME is what + QStandardPaths returns for GenericDataLocation. If that doesn't exist, then + we are not running on a freedesktop.org-compliant environment, and give up. */ if (trash.isEmpty()) { - QDir topDir = QDir::home(); - trash = makeTrashDir(topDir, dotTrash); + QDir topDir = QStandardPaths::writableLocation(QStandardPaths::GenericDataLocation); + trash = makeTrashDir(topDir, QLatin1String("Trash")); if (!QFileInfo(trash).isDir()) { - qWarning("Unable to establish trash directory %s in %s", - dotTrash.latin1(), topDir.path().toLocal8Bit().constData()); + qWarning("Unable to establish trash directory in %s", + topDir.path().toLocal8Bit().constData()); } }