1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
/* kate: tab-indents off; replace-tabs on; tab-width 4; remove-trailing-space on; encoding utf-8;*/
/*
* This file is part of the KDE libraries
* Copyright (c) 2003 Joseph Wenninger <jowenn@kde.org>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License version 2 as published by the Free Software Foundation.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* along with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
**/
#include "ktempdir.h"
#include <config.h>
#include <sys/types.h>
#ifdef HAVE_SYS_STAT_H
#include <sys/stat.h>
#endif
#include <fcntl.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>
#include <dirent.h>
#ifdef HAVE_TEST
#include <test.h>
#endif
#ifdef HAVE_PATHS_H
#include <paths.h>
#endif
#include <QtCore/QDir>
#include "kglobal.h"
#include "krandom.h"
#include "kcomponentdata.h"
#include "kstandarddirs.h"
#include <kdebug.h>
#include "kde_file.h"
#ifdef Q_WS_WIN
#include <QtCore/QVarLengthArray>
#include <windows.h>
#include <shellapi.h>
extern QString mkdtemp_QString (const QString &_template);
#endif
#ifdef _WIN32_WCE
#include <shellapi.h>
#endif
class KTempDir::Private
{
public:
int error;
QString tmpName;
bool exists;
bool autoRemove;
Private()
{
autoRemove = true;
exists = false;
error=0;
}
};
KTempDir::KTempDir(const QString &directoryPrefix, int mode) : d(new Private)
{
(void) create( directoryPrefix.isEmpty() ? KStandardDirs::locateLocal("tmp", KGlobal::mainComponent().componentName()) : directoryPrefix , mode);
}
bool KTempDir::create(const QString &directoryPrefix, int mode)
{
(void) KRandom::random();
#ifdef Q_WS_WIN
const QString nme = directoryPrefix + QLatin1String("XXXXXX");
const QString realName = mkdtemp_QString(nme);
if(realName.isEmpty())
{
kWarning(180) << "KTempDir: Error trying to create " << nme
<< ": " << ::strerror(errno) << endl;
d->error = errno;
d->tmpName.clear();
return false;
}
// got a return value != 0
d->tmpName = realName + QLatin1Char('/');
kDebug(180) << "KTempDir: Temporary directory created :" << d->tmpName
<< endl;
mode_t umsk = KGlobal::umask();
KDE::chmod(nme, mode&(~umsk));
// Success!
d->exists = true;
#else
QByteArray nme = QFile::encodeName(directoryPrefix) + "XXXXXX";
char *realName;
if((realName=mkdtemp(nme.data())) == 0)
{
// Recreate it for the warning, mkdtemps emptied it
nme = QFile::encodeName(directoryPrefix) + "XXXXXX";
kWarning(180) << "KTempDir: Error trying to create " << nme.data()
<< ": " << ::strerror(errno) << endl;
d->error = errno;
d->tmpName.clear();
return false;
}
// got a return value != 0
QByteArray realNameStr(realName);
d->tmpName = QFile::decodeName(realNameStr)+QLatin1Char('/');
kDebug(180) << "KTempDir: Temporary directory created :" << d->tmpName
<< endl;
mode_t umsk = KGlobal::umask();
if(chmod(nme, mode&(~umsk)) < 0) {
kWarning(180) << "KTempDir: Unable to change permissions on" << d->tmpName
<< ":" << ::strerror(errno);
d->error = errno;
d->tmpName.clear();
(void) ::rmdir(realName); // Cleanup created directory
return false;
}
// Success!
d->exists = true;
// Set uid/gid (necessary for SUID programs)
if(chown(nme, getuid(), getgid()) < 0) {
// Just warn, but don't failover yet
kWarning(180) << "KTempDir: Unable to change owner on" << d->tmpName
<< ":" << ::strerror(errno);
}
#endif
return true;
}
KTempDir::~KTempDir()
{
if (d->autoRemove) {
unlink();
}
delete d;
}
int KTempDir::status() const
{
return d->error;
}
QString KTempDir::name() const
{
return d->tmpName;
}
bool KTempDir::exists() const
{
return d->exists;
}
void KTempDir::setAutoRemove(bool autoRemove)
{
d->autoRemove = autoRemove;
}
bool KTempDir::autoRemove() const
{
return d->autoRemove;
}
void KTempDir::unlink()
{
if (!d->exists) return;
if (KTempDir::removeDir(d->tmpName))
d->error=0;
else
d->error=errno;
d->exists=false;
}
#ifndef Q_WS_WIN
// Auxiliary recursive function for removeDirs
static bool rmtree(const QByteArray& name)
{
//kDebug(180) << "Checking directory for remove" << name;
KDE_struct_stat st;
if ( KDE_lstat( name.data(), &st ) == -1 ) // Do not dereference symlink!
return false;
if ( S_ISDIR( st.st_mode ) )
{
// This is a directory, so process it
//kDebug(180) << "File" << name << "is DIRECTORY!";
KDE_struct_dirent* ep;
DIR* dp = ::opendir( name.data() );
if ( !dp )
return false;
while ( ( ep = KDE_readdir( dp ) ) )
{
//kDebug(180) << "CHECKING" << name << "/" << ep->d_name;
if ( !qstrcmp( ep->d_name, "." ) || !qstrcmp( ep->d_name, ".." ) )
continue;
QByteArray newName( name );
newName += '/';
newName += ep->d_name;
/*
* Be defensive and close the directory.
*
* Potential problems:
* - opendir/readdir/closedir is not re-entrant
* - unlink and rmdir invalidates a opendir/readdir/closedir
* - limited number of file descriptors for opendir/readdir/closedir
*/
if ( ::closedir( dp ) ) {
kDebug(180) << "Error closing" << name;
return false;
}
// Recurse!
//kDebug(180) << "RECURSE: " << newName;
if ( ! rmtree( newName ) )
return false;
// We have to re-open the directory before continuing
dp = ::opendir( name.data() );
if ( !dp )
return false;
}
if ( ::closedir( dp ) ) {
kDebug(180) << "Error closing" << name;
return false;
}
//kDebug(180) << "RMDIR dir " << name;
return ! ::rmdir( name );
}
else
{
// This is a non-directory file, so remove it
//kDebug(180) << "KTempDir: unlinking file" << name;
return ! ::unlink( name );
}
}
#endif
bool KTempDir::removeDir( const QString& path )
{
//kDebug(180) << path;
if ( !QFile::exists( path ) )
return true; // The goal is that there is no directory
#ifdef Q_WS_WIN
QVarLengthArray<WCHAR, MAX_PATH> name;
name.resize( path.length() + 2 ); // double null terminated!
memcpy( name.data(), path.utf16(), path.length() * sizeof(WCHAR) );
name[path.length() ] = 0;
name[path.length() + 1 ] = 0;
if(path.endsWith(QLatin1Char('/')) || path.endsWith(QLatin1Char('\\')))
name[path.length() - 1 ] = 0;
SHFILEOPSTRUCTW fileOp;
memset(&fileOp, 0, sizeof(SHFILEOPSTRUCTW) );
fileOp.wFunc = FO_DELETE;
fileOp.pFrom = (LPCWSTR)name.constData();
fileOp.fFlags = FOF_NOCONFIRMATION | FOF_SILENT;
#ifdef _WIN32_WCE
// FOF_NOERRORUI is not defined in wince
#else
fileOp.fFlags |= FOF_NOERRORUI;
#endif
errno = SHFileOperationW( &fileOp );
return (errno == 0);
#else
const QByteArray cstr( QFile::encodeName( path ) );
return rmtree( cstr );
#endif
}
|