Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(54)

Unified Diff: net/android/http_auth_negotiate_android.cc

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android GN build Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/android/http_auth_negotiate_android.cc
diff --git a/net/android/http_auth_negotiate_android.cc b/net/android/http_auth_negotiate_android.cc
new file mode 100644
index 0000000000000000000000000000000000000000..8657780a6911bbf0313d15f1bae75dff6a593e2b
--- /dev/null
+++ b/net/android/http_auth_negotiate_android.cc
@@ -0,0 +1,140 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "net/android/http_auth_negotiate_android.h"
+
+#include "base/android/jni_string.h"
+#include "base/android/scoped_java_ref.h"
+#include "base/bind.h"
+#include "base/callback_internal.h"
+#include "base/location.h"
+#include "base/thread_task_runner_handle.h"
+#include "jni/HttpNegotiateAuthenticator_jni.h"
+#include "net/base/auth.h"
+#include "net/base/net_errors.h"
+#include "net/http/http_auth_challenge_tokenizer.h"
+#include "net/http/http_auth_handler_negotiate_parse.h"
+
+using base::android::AttachCurrentThread;
+using base::android::ConvertUTF8ToJavaString;
+using base::android::ConvertJavaStringToUTF8;
+using base::android::ScopedJavaLocalRef;
+
+namespace net {
+namespace android {
+
+JavaNegotiateResultWrapper::JavaNegotiateResultWrapper(
+ const scoped_refptr<base::TaskRunner>& callback_task_runner,
+ const base::Callback<void(int, const std::string&)>& thread_safe_callback)
+ : callback_task_runner_(callback_task_runner),
+ thread_safe_callback_(thread_safe_callback) {
+}
+
+JavaNegotiateResultWrapper::~JavaNegotiateResultWrapper() {
+}
+
+void JavaNegotiateResultWrapper::SetResult(JNIEnv* env,
+ jobject obj,
+ int result,
+ jstring token) {
+ // This will be called on the UI thread, so we have to post a task back to the
+ // correct thread to actually save the result
+ std::string raw_token = ConvertJavaStringToUTF8(env, token);
+ // Always post, even if we are on the same thread. This guarantees that the
+ // result will be delayed until after the request has completed, which
+ // simplifies the logic. In practice the result will only ever come back on
+ // the original thread in an obscure error case.
+ callback_task_runner_->PostTask(
+ FROM_HERE, base::Bind(thread_safe_callback_, result, raw_token));
+ delete this;
+}
+
+HttpAuthNegotiateAndroid::HttpAuthNegotiateAndroid(
+ const std::string& account_type)
+ : account_type_(account_type),
+ can_delegate_(false),
+ first_challenge_(true),
+ auth_token_(nullptr),
+ weak_factory_(this) {
+ DCHECK(!account_type.empty());
+ auto env = AttachCurrentThread();
+ java_authenticator_.Reset(Java_HttpNegotiateAuthenticator_create(
+ env, ConvertUTF8ToJavaString(env, account_type).obj()));
+}
+
+HttpAuthNegotiateAndroid::~HttpAuthNegotiateAndroid() {
+}
+
+bool HttpAuthNegotiateAndroid::Init() {
+ return true;
+}
+
+bool HttpAuthNegotiateAndroid::NeedsIdentity() const {
+ return false;
+}
+
+bool HttpAuthNegotiateAndroid::AllowsExplicitCredentials() const {
+ return false;
+}
+
+HttpAuth::AuthorizationResult HttpAuthNegotiateAndroid::ParseChallenge(
+ net::HttpAuthChallengeTokenizer* tok) {
+ if (first_challenge_) {
+ first_challenge_ = false;
+ return net::ParseFirstNegotiateChallenge("negotiate", tok);
+ } else {
Ryan Sleevi 2015/06/29 13:56:44 Don't do else after a return if (first_challenge_
aberent 2015/07/02 21:13:35 Done.
+ std::string decoded_auth_token;
+ return net::ParseAnotherNegotiateChallenge(
+ "negotiate", tok, &server_auth_token_, &decoded_auth_token);
+ }
+}
+
+int HttpAuthNegotiateAndroid::GenerateAuthToken(
+ const AuthCredentials* credentials,
+ const std::string& spn,
+ std::string* auth_token,
+ const net::CompletionCallback& callback) {
+ DCHECK(auth_token);
+ DCHECK(completion_callback_.is_null());
+ DCHECK(!callback.is_null());
+
+ auth_token_ = auth_token;
+ completion_callback_ = callback;
+ auto callback_task_runner = base::ThreadTaskRunnerHandle::Get();
Ryan Sleevi 2015/06/29 13:56:44 STYLE: Not a valid use of auto
aberent 2015/07/02 21:13:34 Please explain further. The Google style guide sim
Ryan Sleevi 2015/07/02 23:51:47 http://google-styleguide.googlecode.com/svn/trunk/
aberent 2015/07/03 10:43:49 Done.
+ auto thread_safe_callback = base::Bind(
Ryan Sleevi 2015/06/29 13:56:44 STYLE: Not a valid use of auto
aberent 2015/07/03 10:43:49 Done.
+ &HttpAuthNegotiateAndroid::SetResultInternal, weak_factory_.GetWeakPtr());
+ auto env = AttachCurrentThread();
Ryan Sleevi 2015/06/29 13:56:44 STYLE: Not a valid use of auto
aberent 2015/07/03 10:43:49 Done.
+ auto java_server_auth_token =
+ ConvertUTF8ToJavaString(env, server_auth_token_);
Ryan Sleevi 2015/06/29 13:56:45 STYLE: Not a valid use of auto
aberent 2015/07/03 10:43:49 Done.
+ auto java_spn = ConvertUTF8ToJavaString(env, spn);
Ryan Sleevi 2015/06/29 13:56:45 STYLE: Not a valid use of auto
aberent 2015/07/03 10:43:49 Done.
+ auto java_account_type = ConvertUTF8ToJavaString(env, account_type_);
Ryan Sleevi 2015/06/29 13:56:44 STYLE: Not a valid use of auto
aberent 2015/07/03 10:43:49 Done.
+ auto callback_wrapper = new JavaNegotiateResultWrapper(callback_task_runner,
Ryan Sleevi 2015/06/29 13:56:45 STYLE: Not a valid use of auto
aberent 2015/07/03 10:43:49 Done.
+ thread_safe_callback);
+ Java_HttpNegotiateAuthenticator_getNextAuthToken(
+ env, java_authenticator_.obj(),
+ reinterpret_cast<intptr_t>(callback_wrapper), java_spn.obj(),
+ java_server_auth_token.obj(), can_delegate_);
+ return ERR_IO_PENDING;
+}
+
+void HttpAuthNegotiateAndroid::Delegate() {
+ can_delegate_ = true;
+}
+
+void HttpAuthNegotiateAndroid::SetResultInternal(int result,
+ const std::string& raw_token) {
+ DCHECK(auth_token_);
+ DCHECK(!completion_callback_.is_null());
+ if (result == OK)
+ *auth_token_ = "Negotiate " + raw_token;
+ completion_callback_.Run(result);
+ completion_callback_.Reset();
Ryan Sleevi 2015/06/29 13:56:45 use base::ResetAndReturn() here
aberent 2015/07/02 21:13:34 Done.
+}
+
+bool HttpAuthNegotiateAndroid::Register(JNIEnv* env) {
Ryan Sleevi 2015/06/29 13:56:45 The order of methods in the .cc should match the o
aberent 2015/07/02 21:13:35 Done.
+ return RegisterNativesImpl(env);
+}
+
+} // namespace android
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698