diff -Naur kdelibs-4.1.69.orig/solid/solid/backends/hal/halstorageaccess.cpp kdelibs-4.1.69/solid/solid/backends/hal/halstorageaccess.cpp --- kdelibs-4.1.69.orig/solid/solid/backends/hal/halstorageaccess.cpp 2008-10-09 11:48:40.000000000 +0200 +++ kdelibs-4.1.69/solid/solid/backends/hal/halstorageaccess.cpp 2008-10-17 15:19:48.000000000 +0200 @@ -17,6 +17,8 @@ */ +#include // for LIBEXEC_INSTALL_DIR + #include "halstorageaccess.h" #include "halfstabhandling.h" @@ -168,11 +170,21 @@ { // TODO: Better error reporting here if (m_setupInProgress) { + if (error.name() == "org.freedesktop.Hal.Device.PermissionDeniedByPolicy") { + if (callPrivilegedMount()) + return; + // if we fail to run kdesu, fall through and emit the original PermissionDeniedByPolicy error + } m_setupInProgress = false; emit setupDone(Solid::UnauthorizedOperation, error.name()+": "+error.message(), m_device->udi()); } else if (m_teardownInProgress) { + if (error.name() == "org.freedesktop.Hal.Device.PermissionDeniedByPolicy") { + if (callPrivilegedUnmount()) + return; + // if we fail to run kdesu, fall through and emit the original PermissionDeniedByPolicy error + } m_teardownInProgress = false; emit teardownDone(Solid::UnauthorizedOperation, error.name()+": "+error.message(), @@ -266,17 +278,18 @@ "Mount"); QStringList options; QStringList halOptions = m_device->property("volume.mount.valid_options").toStringList(); + QString fstype = m_device->property("volume.fstype").toString(); #ifdef Q_OS_FREEBSD QString uid="-u="; #else QString uid="uid="; #endif - if (halOptions.contains(uid)) { + if (halOptions.contains(uid) + && (fstype == "vfat" || fstype == "iso9660" || fstype == "hfs" || fstype == "udf")) { options << uid+QString::number(::getuid()); } - QString fstype=m_device->property("volume.fstype").toString(); //respect Microsoft Windows-enforced charsets for fat #ifdef Q_OS_FREEBSD if ( fstype=="vfat" ) { @@ -377,6 +390,60 @@ SLOT(slotDBusError(const QDBusError &))); } +bool Solid::Backends::Hal::StorageAccess::callPrivilegedMount() +{ + QString udi = m_device->udi(); + QString options; + QStringList halOptions = m_device->property("volume.mount.valid_options").toStringList(); + QString fstype = m_device->property("volume.fstype").toString(); + + if (halOptions.contains("uid=") + && (fstype == "vfat" || fstype == "iso9660" || fstype == "hfs" || fstype == "udf")) { + options = "uid="+QString::number(::getuid()); + } + + m_process = new QProcess(this); + + connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)), + this, SLOT(slotProcessFinished(int, QProcess::ExitStatus))); + + m_process->start(LIBEXEC_INSTALL_DIR "/kdesu", QStringList() << "-d" << "-t" + << "--noignorebutton" << "-c" + << QString::fromLatin1("dbus-send --system --print-reply --dest=org.freedesktop.Hal %1 " + "org.freedesktop.Hal.Device.Volume.Mount string: string: " + "array:string:%2").arg(udi).arg(options)); + + if (m_process->waitForStarted()) { + return true; + } else { + delete m_process; + return false; + } +} + +bool Solid::Backends::Hal::StorageAccess::callPrivilegedUnmount() +{ + QString udi = m_device->udi(); + + m_process = new QProcess(this); + + connect(m_process, SIGNAL(finished(int, QProcess::ExitStatus)), + this, SLOT(slotProcessFinished(int, QProcess::ExitStatus))); + + m_process->start(LIBEXEC_INSTALL_DIR "/kdesu", QStringList() << "-d" << "-t" + << "--noignorebutton" << "-c" + << QString::fromLatin1("dbus-send --system --print-reply --dest=org.freedesktop.Hal %1 " + "org.freedesktop.Hal.Device.Volume.Unmount array:string:").arg(udi)); + + if (m_process->waitForStarted()) { + return true; + } else { + delete m_process; + return false; + } +} + + bool StorageAccess::callHalVolumeUnmount() { QDBusConnection c = QDBusConnection::systemBus(); diff -Naur kdelibs-4.1.69.orig/solid/solid/backends/hal/halstorageaccess.h kdelibs-4.1.69/solid/solid/backends/hal/halstorageaccess.h --- kdelibs-4.1.69.orig/solid/solid/backends/hal/halstorageaccess.h 2008-05-21 13:07:38.000000000 +0200 +++ kdelibs-4.1.69/solid/solid/backends/hal/halstorageaccess.h 2008-10-17 14:59:31.000000000 +0200 @@ -69,6 +69,9 @@ bool callSystemMount(); bool callSystemUnmount(); + bool callPrivilegedMount(); + bool callPrivilegedUnmount(); + bool requestPassphrase(); void callCryptoSetup(const QString &passphrase); bool callCryptoTeardown();