summaryrefslogtreecommitdiffstats
path: root/security/manager/ssl/nsProtectedAuthThread.cpp
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /security/manager/ssl/nsProtectedAuthThread.cpp
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'security/manager/ssl/nsProtectedAuthThread.cpp')
-rw-r--r--security/manager/ssl/nsProtectedAuthThread.cpp146
1 files changed, 146 insertions, 0 deletions
diff --git a/security/manager/ssl/nsProtectedAuthThread.cpp b/security/manager/ssl/nsProtectedAuthThread.cpp
new file mode 100644
index 000000000..ea511b24a
--- /dev/null
+++ b/security/manager/ssl/nsProtectedAuthThread.cpp
@@ -0,0 +1,146 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+#include "pk11func.h"
+#include "mozilla/DebugOnly.h"
+#include "mozilla/RefPtr.h"
+#include "nsCOMPtr.h"
+#include "PSMRunnable.h"
+#include "nsString.h"
+#include "nsReadableUtils.h"
+#include "nsPKCS11Slot.h"
+#include "nsProtectedAuthThread.h"
+
+using namespace mozilla;
+using namespace mozilla::psm;
+
+NS_IMPL_ISUPPORTS(nsProtectedAuthThread, nsIProtectedAuthThread)
+
+static void nsProtectedAuthThreadRunner(void *arg)
+{
+ PR_SetCurrentThreadName("Protected Auth");
+
+ nsProtectedAuthThread *self = static_cast<nsProtectedAuthThread *>(arg);
+ self->Run();
+}
+
+nsProtectedAuthThread::nsProtectedAuthThread()
+: mMutex("nsProtectedAuthThread.mMutex")
+, mIAmRunning(false)
+, mLoginReady(false)
+, mThreadHandle(nullptr)
+, mSlot(0)
+, mLoginResult(SECFailure)
+{
+}
+
+nsProtectedAuthThread::~nsProtectedAuthThread()
+{
+}
+
+NS_IMETHODIMP nsProtectedAuthThread::Login(nsIObserver *aObserver)
+{
+ NS_ENSURE_ARG(aObserver);
+
+ if (!mSlot)
+ // We need pointer to the slot
+ return NS_ERROR_FAILURE;
+
+ MutexAutoLock lock(mMutex);
+
+ if (mIAmRunning || mLoginReady) {
+ return NS_OK;
+ }
+
+ if (aObserver) {
+ // We must AddRef aObserver here on the main thread, because it probably
+ // does not implement a thread-safe AddRef.
+ mNotifyObserver = new NotifyObserverRunnable(aObserver,
+ "operation-completed");
+ }
+
+ mIAmRunning = true;
+
+ mThreadHandle = PR_CreateThread(PR_USER_THREAD, nsProtectedAuthThreadRunner, static_cast<void*>(this),
+ PR_PRIORITY_NORMAL, PR_GLOBAL_THREAD, PR_JOINABLE_THREAD, 0);
+
+ // bool thread_started_ok = (threadHandle != nullptr);
+ // we might want to return "thread started ok" to caller in the future
+ NS_ASSERTION(mThreadHandle, "Could not create nsProtectedAuthThreadRunner thread\n");
+
+ return NS_OK;
+}
+
+NS_IMETHODIMP nsProtectedAuthThread::GetTokenName(nsAString &_retval)
+{
+ MutexAutoLock lock(mMutex);
+
+ // Get token name
+ CopyUTF8toUTF16(nsDependentCString(PK11_GetTokenName(mSlot)), _retval);
+
+ return NS_OK;
+}
+
+NS_IMETHODIMP nsProtectedAuthThread::GetSlot(nsIPKCS11Slot **_retval)
+{
+ RefPtr<nsPKCS11Slot> slot;
+ {
+ MutexAutoLock lock(mMutex);
+ slot = new nsPKCS11Slot(mSlot);
+ }
+
+ slot.forget(_retval);
+ return NS_OK;
+}
+
+void nsProtectedAuthThread::SetParams(PK11SlotInfo* aSlot)
+{
+ MutexAutoLock lock(mMutex);
+
+ mSlot = (aSlot) ? PK11_ReferenceSlot(aSlot) : 0;
+}
+
+SECStatus nsProtectedAuthThread::GetResult()
+{
+ return mLoginResult;
+}
+
+void nsProtectedAuthThread::Run(void)
+{
+ // Login with null password. This call will also do C_Logout() but
+ // it is harmless here
+ mLoginResult = PK11_CheckUserPassword(mSlot, 0);
+
+ nsCOMPtr<nsIRunnable> notifyObserver;
+ {
+ MutexAutoLock lock(mMutex);
+
+ mLoginReady = true;
+ mIAmRunning = false;
+
+ // Forget the slot
+ if (mSlot)
+ {
+ PK11_FreeSlot(mSlot);
+ mSlot = 0;
+ }
+
+ notifyObserver.swap(mNotifyObserver);
+ }
+
+ if (notifyObserver) {
+ DebugOnly<nsresult> rv = NS_DispatchToMainThread(notifyObserver);
+ NS_ASSERTION(NS_SUCCEEDED(rv),
+ "failed to dispatch protected auth observer to main thread");
+ }
+}
+
+void nsProtectedAuthThread::Join()
+{
+ if (!mThreadHandle)
+ return;
+
+ PR_JoinThread(mThreadHandle);
+ mThreadHandle = nullptr;
+}