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

Unified Diff: net/android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix more nits from bauerb@ Created 5 years, 7 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
« no previous file with comments | « net/android/http_android_auth_negotiate.cc ('k') | net/android/net_jni_registrar.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java
diff --git a/net/android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java b/net/android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java
new file mode 100644
index 0000000000000000000000000000000000000000..42102ad167f23a137eb7dd7c05fe857fd60fd603
--- /dev/null
+++ b/net/android/java/src/org/chromium/net/HttpNegotiateAuthenticator.java
@@ -0,0 +1,100 @@
+// 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.
+
+package org.chromium.net;
+
+import android.accounts.AccountManager;
+import android.accounts.AccountManagerCallback;
+import android.accounts.AccountManagerFuture;
+import android.accounts.AuthenticatorException;
+import android.accounts.OperationCanceledException;
+import android.app.Activity;
+import android.os.Bundle;
+import android.os.Handler;
+import android.os.Parcelable;
+
+import org.chromium.base.ApplicationStatus;
+import org.chromium.base.CalledByNative;
+import org.chromium.base.JNINamespace;
+import org.chromium.base.VisibleForTesting;
+
+import java.io.IOException;
+
+/**
+ * Class to get Auth Tokens for HTTP Negotiate authentication (typically used for Kerberos)
+ * An instance of this class is created for each separate negotiation.
+ */
+@JNINamespace("net::android")
+public class HttpNegotiateAuthenticator {
+ static final String KEY_INCOMING_AUTH_TOKEN = "incomingAuthToken";
+ static final String KEY_SPNEGO_CONTEXT = "spnegoContext";
+ static final String KEY_CAN_DELEGATE = "canDelegate";
+
+ static final String SPNEGO_FEATURE = "SPNEGO";
+ static final String SPNEGO_TOKEN_TYPE_BASE = "SPNEGO:HOSTBASED:";
+
+ private Parcelable mSpnegoContext = null;
+ private final long mNativeObject;
+ private final String mAccountType;
+
+ private HttpNegotiateAuthenticator(long nativeObject, String accountType) {
+ assert accountType != null && !accountType.isEmpty();
Bernhard Bauer 2015/06/01 14:51:13 You could combine these two checks with android.te
aberent 2015/06/10 15:48:56 Done.
+ mNativeObject = nativeObject;
+ mAccountType = accountType;
+ }
+
+ /**
+ * @param nativeObject The corresponding AndroidAuthNegotiate C++ object
+ * @param accountType The Android account type to use.
+ */
+ @CalledByNative
+ private static HttpNegotiateAuthenticator create(long nativeObject, String accountType) {
+ return new HttpNegotiateAuthenticator(nativeObject, accountType);
+ }
+
+ /**
+ *
+ * @param principal The principal (must be host based).
+ * @param authToken The previous auth token, if any.
+ * @return false for immediate failure, true otherwise.
+ */
+ @VisibleForTesting
+ @CalledByNative
+ boolean getNextAuthToken(String principal, String authToken, boolean canDelegate) {
+ assert principal != null;
+ String authTokenType = SPNEGO_TOKEN_TYPE_BASE + principal;
+ Activity activity = ApplicationStatus.getLastTrackedFocusedActivity();
+ if (activity == null) return false;
+ AccountManager am = AccountManager.get(activity);
+ String features[] = {SPNEGO_FEATURE};
+
+ Bundle options = new Bundle();
+
+ if (authToken != null) options.putString(KEY_INCOMING_AUTH_TOKEN, authToken);
+ if (mSpnegoContext != null) options.putParcelable(KEY_SPNEGO_CONTEXT, mSpnegoContext);
+ options.putBoolean(KEY_CAN_DELEGATE, canDelegate);
+
+ am.getAuthTokenByFeatures(mAccountType, authTokenType, features, activity, null,
+ options, new AccountManagerCallback<Bundle>() {
+
+ @Override
+ public void run(AccountManagerFuture<Bundle> future) {
+ try {
+ Bundle result = future.getResult();
+ mSpnegoContext = result.getParcelable(KEY_SPNEGO_CONTEXT);
+ nativeSetResult(mNativeObject, true,
+ result.getString(AccountManager.KEY_AUTHTOKEN));
+ } catch (OperationCanceledException | AuthenticatorException
+ | IOException e) {
+ nativeSetResult(mNativeObject, false, null);
+ }
+ }
+
+ }, new Handler());
+ return true;
+ }
+
+ private native void nativeSetResult(
+ long nativeAndroidAuthNegotiate, boolean result, String authToken);
+}
« no previous file with comments | « net/android/http_android_auth_negotiate.cc ('k') | net/android/net_jni_registrar.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698