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

Side by Side Diff: net/android/dummy_spnego_authenticator.h

Issue 1128043007: Support Kerberos on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix cbentzel@'s nits Created 5 years, 5 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef NET_ANDROID_DUMMY_SPNEGO_AUTHENTICATOR_H_
6 #define NET_ANDROID_DUMMY_SPNEGO_AUTHENTICATOR_H_
7
8 #include <jni.h>
9 #include <cstdint>
10 #include <list>
11 #include <string>
12
13 #include "base/android/scoped_java_ref.h"
14
15 // Provides an interface for controlling the DummySpnegoAuthenticator service.
16 // This includes a basic stub of the Mock GSSAPI library, so that OS independent
17 // Negotiate authentication tests can be run on Android.
18 namespace net {
19
20 // These constant values are arbitrary, and different from the real GSSAPI
21 // values, but must match those used in DummySpnegoAuthenticator.java
22 #define GSS_S_COMPLETE 0
23 #define GSS_S_CONTINUE_NEEDED 1
24 #define GSS_S_FAILURE 2
25
26 class gss_buffer_desc;
27
28 typedef struct gss_OID_desc_struct {
29 uint32_t length;
30 void* elements;
31 } gss_OID_desc, *gss_OID;
32
33 extern gss_OID CHROME_GSS_SPNEGO_MECH_OID_DESC;
34
35 namespace test {
36
37 // Copy of class in Mock GSSAPI library.
38 class GssContextMockImpl {
39 public:
40 GssContextMockImpl();
41 GssContextMockImpl(const GssContextMockImpl& other);
42 GssContextMockImpl(const char* src_name,
43 const char* targ_name,
44 uint32_t lifetime_rec,
45 const gss_OID_desc& mech_type,
46 uint32_t ctx_flags,
47 int locally_initiated,
48 int open);
49 ~GssContextMockImpl();
50
51 void Assign(const GssContextMockImpl& other);
52
53 std::string src_name;
54 std::string targ_name;
55 int32_t lifetime_rec;
56 gss_OID_desc mech_type;
57 int32_t ctx_flags;
58 int locally_initiated;
59 int open;
60 };
61
62 } // namespace test
63
64 namespace android {
65
66 // Interface to Java DummySpnegoAuthenticator.
67 class DummySpnegoAuthenticator {
68 public:
69 struct SecurityContextQuery {
70 SecurityContextQuery(const std::string& expected_package,
71 uint32_t response_code,
72 uint32_t minor_response_code,
73 const test::GssContextMockImpl& context_info,
74 const std::string& expected_input_token,
75 const std::string& output_token);
76 SecurityContextQuery(const std::string& expected_package,
77 uint32_t response_code,
78 uint32_t minor_response_code,
79 const test::GssContextMockImpl& context_info,
80 const char* expected_input_token,
81 const char* output_token);
82 SecurityContextQuery();
83 ~SecurityContextQuery();
84
85 // Note that many of these fields only exist for compatibility with the
86 // non-Android version of the tests. Only the response_code and tokens are
87 // used or checked on Android.
88 std::string expected_package;
89 uint32_t response_code;
90 uint32_t minor_response_code;
91 test::GssContextMockImpl context_info;
92 std::string expected_input_token;
93 std::string output_token;
94
95 // Java callable members
96 base::android::ScopedJavaLocalRef<jstring> GetTokenToReturn(JNIEnv* env,
97 jobject obj);
98 int GetResult(JNIEnv* env, jobject obj);
99
100 // Called from Java to check the arguments passed to the GetToken. Has to
101 // be in C++ since these tests are driven by googletest, and can only report
102 // failures through the googletest C++ API.
103 void CheckGetTokenArguments(JNIEnv* env,
104 jobject obj,
105 jstring incoming_token);
106 };
107
108 DummySpnegoAuthenticator();
109
110 ~DummySpnegoAuthenticator();
111
112 void ExpectSecurityContext(const std::string& expected_package,
113 uint32_t response_code,
114 uint32_t minor_response_code,
115 const test::GssContextMockImpl& context_info,
116 const std::string& expected_input_token,
117 const std::string& output_token);
118
119 static bool RegisterJni(JNIEnv* env);
120
121 static void EnsureTestAccountExists();
122 static void RemoveTestAccounts();
123
124 long GetNextQuery(JNIEnv* env, jobject obj);
125
126 private:
127 // Abandon the test if the query queue is empty. Has to be a void function to
128 // allow use of ASSERT_FALSE.
129 void CheckQueueNotEmpty();
130
131 std::list<SecurityContextQuery> expected_security_queries_;
132 // Needed to keep the current query alive once it has been pulled from the
133 // queue. This is simpler than transferring its ownership to Java.
134 SecurityContextQuery current_query_;
135 };
136
137 } // namespace android
138 } // namespace net
139
140 #endif // NET_ANDROID_DUMMY_SPNEGO_AUTHENTICATOR_DRIVER_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698