2009-11-24 15:24:36 +00:00
|
|
|
diff -r -U5 kdelibs-4.3.75svn1048496/solid/solid/backends/hal/halstorageaccess.cpp kdelibs-4.3.75svn1048496.polkit/solid/solid/backends/hal/halstorageaccess.cpp
|
|
|
|
--- kdelibs-4.3.75svn1048496/solid/solid/backends/hal/halstorageaccess.cpp 2009-08-12 06:00:18.000000000 -0400
|
|
|
|
+++ kdelibs-4.3.75svn1048496.polkit/solid/solid/backends/hal/halstorageaccess.cpp 2009-11-20 14:39:44.000000000 -0500
|
|
|
|
@@ -15,10 +15,12 @@
|
|
|
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
Boston, MA 02110-1301, USA.
|
2008-10-17 17:49:41 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
+#include <config-prefix.h> // for LIBEXEC_INSTALL_DIR
|
|
|
|
+
|
2008-03-27 11:19:11 +00:00
|
|
|
#include "halstorageaccess.h"
|
|
|
|
|
2008-10-17 17:49:41 +00:00
|
|
|
#include "halfstabhandling.h"
|
2009-11-24 15:24:36 +00:00
|
|
|
|
|
|
|
#include <QtCore/QLocale>
|
|
|
|
@@ -170,15 +172,25 @@
|
|
|
|
|
|
|
|
void StorageAccess::slotDBusError(const QDBusError &error)
|
2008-03-27 11:19:11 +00:00
|
|
|
{
|
|
|
|
// TODO: Better error reporting here
|
|
|
|
if (m_setupInProgress) {
|
2009-11-24 15:24:36 +00:00
|
|
|
+ if (error.name() == "org.freedesktop.Hal.Device.PermissionDeniedByPolicy") {
|
2008-03-27 11:19:11 +00:00
|
|
|
+ if (callPrivilegedMount())
|
|
|
|
+ return;
|
|
|
|
+ // if we fail to run kdesu, fall through and emit the original PermissionDeniedByPolicy error
|
|
|
|
+ }
|
|
|
|
m_setupInProgress = false;
|
|
|
|
emit setupDone(Solid::UnauthorizedOperation,
|
2009-11-24 15:24:36 +00:00
|
|
|
QString(error.name()+": "+error.message()),
|
2008-03-27 11:19:11 +00:00
|
|
|
m_device->udi());
|
|
|
|
} else if (m_teardownInProgress) {
|
2009-11-24 15:24:36 +00:00
|
|
|
+ if (error.name() == "org.freedesktop.Hal.Device.PermissionDeniedByPolicy") {
|
2008-03-27 11:19:11 +00:00
|
|
|
+ if (callPrivilegedUnmount())
|
|
|
|
+ return;
|
|
|
|
+ // if we fail to run kdesu, fall through and emit the original PermissionDeniedByPolicy error
|
|
|
|
+ }
|
|
|
|
m_teardownInProgress = false;
|
|
|
|
emit teardownDone(Solid::UnauthorizedOperation,
|
2009-11-24 15:24:36 +00:00
|
|
|
QString(error.name()+": "+error.message()),
|
|
|
|
m_device->udi());
|
|
|
|
}
|
|
|
|
@@ -292,12 +304,13 @@
|
|
|
|
#ifdef Q_OS_FREEBSD
|
|
|
|
QString uid="-u=";
|
2008-10-17 17:49:41 +00:00
|
|
|
#else
|
|
|
|
QString uid="uid=";
|
|
|
|
#endif
|
|
|
|
- if (halOptions.contains(uid)) {
|
2008-11-20 10:22:49 +00:00
|
|
|
- options << uid+QString::number(::getuid());
|
|
|
|
+ if (halOptions.contains(uid) &&
|
|
|
|
+ (fstype == "vfat" || fstype == "iso9660" || fstype == "hfs" || fstype == "udf")) {
|
|
|
|
+ options << uid+QString::number(::getuid());
|
2008-03-27 11:19:11 +00:00
|
|
|
}
|
|
|
|
|
2008-10-17 17:49:41 +00:00
|
|
|
#ifdef Q_OS_FREEBSD
|
2009-11-24 15:24:36 +00:00
|
|
|
char *cType;
|
|
|
|
if ( fstype=="vfat" && halOptions.contains("-L=")) {
|
|
|
|
@@ -335,10 +348,63 @@
|
|
|
|
return c.callWithCallback(msg, this,
|
|
|
|
SLOT(slotDBusReply(const QDBusMessage &)),
|
2008-03-27 11:19:11 +00:00
|
|
|
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;
|
|
|
|
+ }
|
|
|
|
+}
|
2008-10-17 17:49:41 +00:00
|
|
|
+
|
|
|
|
bool StorageAccess::callHalVolumeUnmount()
|
2008-03-27 11:19:11 +00:00
|
|
|
{
|
2008-10-17 17:49:41 +00:00
|
|
|
QDBusConnection c = QDBusConnection::systemBus();
|
2009-11-24 15:24:36 +00:00
|
|
|
QString udi = m_device->udi();
|
|
|
|
QDBusMessage msg = QDBusMessage::createMethodCall("org.freedesktop.Hal", udi,
|
|
|
|
Only in kdelibs-4.3.75svn1048496.polkit/solid/solid/backends/hal: halstorageaccess.cpp.orig
|
|
|
|
diff -r -U5 kdelibs-4.3.75svn1048496/solid/solid/backends/hal/halstorageaccess.h kdelibs-4.3.75svn1048496.polkit/solid/solid/backends/hal/halstorageaccess.h
|
|
|
|
--- kdelibs-4.3.75svn1048496/solid/solid/backends/hal/halstorageaccess.h 2008-05-21 07:07:38.000000000 -0400
|
|
|
|
+++ kdelibs-4.3.75svn1048496.polkit/solid/solid/backends/hal/halstorageaccess.h 2009-11-20 14:38:17.000000000 -0500
|
|
|
|
@@ -67,10 +67,13 @@
|
|
|
|
bool callHalVolumeUnmount();
|
|
|
|
|
2008-03-27 11:19:11 +00:00
|
|
|
bool callSystemMount();
|
|
|
|
bool callSystemUnmount();
|
|
|
|
|
|
|
|
+ bool callPrivilegedMount();
|
|
|
|
+ bool callPrivilegedUnmount();
|
|
|
|
+
|
|
|
|
bool requestPassphrase();
|
|
|
|
void callCryptoSetup(const QString &passphrase);
|
|
|
|
bool callCryptoTeardown();
|
2009-11-24 15:24:36 +00:00
|
|
|
|
|
|
|
private:
|