-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathOnBehalfOfCredential.cs
258 lines (233 loc) · 15.1 KB
/
OnBehalfOfCredential.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
using System.Threading.Tasks;
using Azure.Core;
using Azure.Core.Pipeline;
using Microsoft.Identity.Client;
namespace Azure.Identity
{
/// <summary>
/// Enables authentication to Microsoft Entra ID using an On-Behalf-Of flow.
/// </summary>
public class OnBehalfOfCredential : TokenCredential
{
internal MsalConfidentialClient Client { get; }
private readonly string _tenantId;
private readonly CredentialPipeline _pipeline;
private readonly string _clientId;
private readonly string _clientSecret;
private readonly UserAssertion _userAssertion;
internal readonly string[] AdditionallyAllowedTenantIds;
internal TenantIdResolverBase TenantIdResolver { get; }
/// <summary>
/// Protected constructor for <see href="https://aka.ms/azsdk/net/mocking">mocking</see>.
/// </summary>
protected OnBehalfOfCredential()
{ }
/// <summary>
/// Creates an instance of the <see cref="OnBehalfOfCredential"/> with the details needed to authenticate against Microsoft Entra ID with the specified certificate.
/// </summary>
/// <param name="tenantId">The Microsoft Entra tenant (directory) ID of the service principal.</param>
/// <param name="clientId">The client (application) ID of the service principal</param>
/// <param name="clientCertificate">The authentication X509 Certificate of the service principal</param>
/// <param name="userAssertion">The access token that will be used by <see cref="OnBehalfOfCredential"/> as the user assertion when requesting On-Behalf-Of tokens.</param>
public OnBehalfOfCredential(string tenantId, string clientId, X509Certificate2 clientCertificate, string userAssertion)
: this(tenantId, clientId, clientCertificate, userAssertion, null, null, null)
{ }
/// <summary>
/// Creates an instance of the <see cref="OnBehalfOfCredential"/> with the details needed to authenticate against Microsoft Entra ID with the specified certificate.
/// </summary>
/// <param name="tenantId">The Microsoft Entra tenant (directory) ID of the service principal.</param>
/// <param name="clientId">The client (application) ID of the service principal</param>
/// <param name="clientCertificate">The authentication X509 Certificate of the service principal</param>
/// <param name="userAssertion">The access token that will be used by <see cref="OnBehalfOfCredential"/> as the user assertion when requesting On-Behalf-Of tokens.</param>
/// <param name="options">Options that allow to configure the management of the requests sent to Microsoft Entra ID.</param>
public OnBehalfOfCredential(string tenantId, string clientId, X509Certificate2 clientCertificate, string userAssertion, OnBehalfOfCredentialOptions options)
: this(tenantId, clientId, clientCertificate, userAssertion, options, null, null)
{ }
/// <summary>
/// Creates an instance of the <see cref="OnBehalfOfCredential"/> with the details needed to authenticate with Microsoft Entra ID.
/// </summary>
/// <param name="tenantId">The Microsoft Entra tenant (directory) ID of the service principal.</param>
/// <param name="clientId">The client (application) ID of the service principal</param>
/// <param name="clientSecret">A client secret that was generated for the App Registration used to authenticate the client.</param>
/// <param name="userAssertion">The access token that will be used by <see cref="OnBehalfOfCredential"/> as the user assertion when requesting On-Behalf-Of tokens.</param>
public OnBehalfOfCredential(
string tenantId,
string clientId,
string clientSecret,
string userAssertion)
: this(tenantId, clientId, clientSecret, userAssertion, null, null, null)
{ }
/// <summary>
/// Creates an instance of the <see cref="OnBehalfOfCredential"/> with the details needed to authenticate with Microsoft Entra ID.
/// </summary>
/// <param name="tenantId">The Microsoft Entra tenant (directory) ID of the service principal.</param>
/// <param name="clientId">The client (application) ID of the service principal</param>
/// <param name="clientSecret">A client secret that was generated for the App Registration used to authenticate the client.</param>
/// <param name="userAssertion">The access token that will be used by <see cref="OnBehalfOfCredential"/> as the user assertion when requesting On-Behalf-Of tokens.</param>
/// <param name="options">Options that allow to configure the management of the requests sent to Microsoft Entra ID.</param>
public OnBehalfOfCredential(
string tenantId,
string clientId,
string clientSecret,
string userAssertion,
OnBehalfOfCredentialOptions options)
: this(tenantId, clientId, clientSecret, userAssertion, options, null, null)
{ }
/// <summary>
/// Creates an instance of the <see cref="OnBehalfOfCredential"/> with the details needed to authenticate against Microsoft Entra ID with the specified client assertion.
/// </summary>
/// <param name="tenantId">The Microsoft Entra tenant (directory) ID of the service principal.</param>
/// <param name="clientId">The client (application) ID of the service principal</param>
/// <param name="clientAssertionCallback">An asynchronous callback returning a valid client assertion used to authenticate the service principal.</param>
/// <param name="userAssertion">The access token that will be used by <see cref="OnBehalfOfCredential"/> as the user assertion when requesting On-Behalf-Of tokens.</param>
/// <param name="options">Options that allow to configure the management of the requests sent to Microsoft Entra ID.</param>
public OnBehalfOfCredential(string tenantId, string clientId, Func<CancellationToken, Task<string>> clientAssertionCallback, string userAssertion, OnBehalfOfCredentialOptions options = null)
: this(tenantId, clientId, null, clientAssertionCallback, userAssertion, options, null, null)
{ }
/// <summary>
/// Creates an instance of the <see cref="OnBehalfOfCredential"/> with the details needed to authenticate against Microsoft Entra ID with the specified client assertion.
/// </summary>
/// <param name="tenantId">The Microsoft Entra tenant (directory) ID of the service principal.</param>
/// <param name="clientId">The client (application) ID of the service principal</param>
/// <param name="clientAssertionCallback">A synchronous callback returning a valid client assertion used to authenticate the service principal.</param>
/// <param name="userAssertion">The access token that will be used by <see cref="OnBehalfOfCredential"/> as the user assertion when requesting On-Behalf-Of tokens.</param>
/// <param name="options">Options that allow to configure the management of the requests sent to Microsoft Entra ID.</param>
public OnBehalfOfCredential(string tenantId, string clientId, Func<string> clientAssertionCallback, string userAssertion, OnBehalfOfCredentialOptions options = null)
: this(tenantId, clientId, clientAssertionCallback, null, userAssertion, options, null, null)
{ }
internal OnBehalfOfCredential(
string tenantId,
string clientId,
X509Certificate2 certificate,
string userAssertion,
OnBehalfOfCredentialOptions options,
CredentialPipeline pipeline,
MsalConfidentialClient client)
: this(
tenantId,
clientId,
new X509Certificate2FromObjectProvider(certificate ?? throw new ArgumentNullException(nameof(certificate))),
userAssertion,
options,
pipeline,
client)
{ }
internal OnBehalfOfCredential(
string tenantId,
string clientId,
IX509Certificate2Provider certificateProvider,
string userAssertion,
OnBehalfOfCredentialOptions options,
CredentialPipeline pipeline,
MsalConfidentialClient client)
{
_tenantId = Validations.ValidateTenantId(tenantId, nameof(tenantId));
_clientId = clientId ?? throw new ArgumentNullException(nameof(clientId));
_pipeline = pipeline ?? CredentialPipeline.GetInstance(options);
options ??= new OnBehalfOfCredentialOptions();
_userAssertion = new UserAssertion(userAssertion);
Client = client ??
new MsalConfidentialClient(
_pipeline,
tenantId,
clientId,
certificateProvider,
options.SendCertificateChain,
options);
TenantIdResolver = options?.TenantIdResolver ?? TenantIdResolverBase.Default;
AdditionallyAllowedTenantIds = TenantIdResolver.ResolveAddionallyAllowedTenantIds((options as ISupportsAdditionallyAllowedTenants)?.AdditionallyAllowedTenants);
}
internal OnBehalfOfCredential(
string tenantId,
string clientId,
string clientSecret,
string userAssertion,
OnBehalfOfCredentialOptions options,
CredentialPipeline pipeline,
MsalConfidentialClient client)
{
Argument.AssertNotNull(clientId, nameof(clientId));
Argument.AssertNotNull(clientSecret, nameof(clientSecret));
options ??= new OnBehalfOfCredentialOptions();
_pipeline = pipeline ?? CredentialPipeline.GetInstance(options);
_tenantId = Validations.ValidateTenantId(tenantId, nameof(tenantId));
_clientId = clientId;
_clientSecret = clientSecret;
_userAssertion = new UserAssertion(userAssertion);
Client = client ?? new MsalConfidentialClient(_pipeline, _tenantId, _clientId, _clientSecret, null, options);
TenantIdResolver = options?.TenantIdResolver ?? TenantIdResolverBase.Default;
AdditionallyAllowedTenantIds = TenantIdResolver.ResolveAddionallyAllowedTenantIds(options?.AdditionallyAllowedTenants);
}
internal OnBehalfOfCredential(
string tenantId,
string clientId,
Func<string> clientAssertionCallback,
Func<CancellationToken, Task<string>> clientAssertionCallbackAsync,
string userAssertion,
OnBehalfOfCredentialOptions options,
CredentialPipeline pipeline,
MsalConfidentialClient client)
{
Argument.AssertNotNull(clientId, nameof(clientId));
options ??= new OnBehalfOfCredentialOptions();
_pipeline = pipeline ?? CredentialPipeline.GetInstance(options);
_tenantId = Validations.ValidateTenantId(tenantId, nameof(tenantId));
_clientId = clientId;
_userAssertion = new UserAssertion(userAssertion);
Client = client switch
{
not null => client,
_ when clientAssertionCallback is not null => new MsalConfidentialClient(_pipeline, _tenantId, _clientId, clientAssertionCallback, options),
_ when clientAssertionCallbackAsync is not null => new MsalConfidentialClient(_pipeline, _tenantId, _clientId, clientAssertionCallbackAsync, options),
_ => throw new ArgumentNullException($"nameof(clientAssertionCallback)")
};
TenantIdResolver = options?.TenantIdResolver ?? TenantIdResolverBase.Default;
AdditionallyAllowedTenantIds = TenantIdResolver.ResolveAddionallyAllowedTenantIds(options?.AdditionallyAllowedTenants);
}
/// <summary>
/// Authenticates with Microsoft Entra ID and returns an access token if successful. Acquired tokens are
/// <see href="https://aka.ms/azsdk/net/identity/token-cache">cached</see> by the credential instance.
/// Token lifetime and refreshing is handled automatically. Where possible, reuse credential instances
/// to optimize cache effectiveness.
/// </summary>
/// <param name="requestContext">The details of the authentication request.</param>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> controlling the request lifetime.</param>
/// <returns>An <see cref="AccessToken"/> which can be used to authenticate service client calls.</returns>
/// <exception cref="AuthenticationFailedException">Thrown when the authentication failed.</exception>
public override AccessToken GetToken(TokenRequestContext requestContext, CancellationToken cancellationToken) =>
GetTokenInternalAsync(requestContext, false, cancellationToken).EnsureCompleted();
/// <summary>
/// Authenticates with Microsoft Entra ID and returns an access token if successful. Acquired tokens are
/// <see href="https://aka.ms/azsdk/net/identity/token-cache">cached</see> by the credential instance.
/// Token lifetime and refreshing is handled automatically. Where possible, reuse credential instances
/// to optimize cache effectiveness.
/// </summary>
/// <param name="requestContext">The details of the authentication request.</param>
/// <param name="cancellationToken">A <see cref="CancellationToken"/> controlling the request lifetime.</param>
/// <returns>An <see cref="AccessToken"/> which can be used to authenticate service client calls.</returns>
/// <exception cref="AuthenticationFailedException">Thrown when the authentication failed.</exception>
public override ValueTask<AccessToken> GetTokenAsync(TokenRequestContext requestContext, CancellationToken cancellationToken) =>
GetTokenInternalAsync(requestContext, true, cancellationToken);
internal async ValueTask<AccessToken> GetTokenInternalAsync(TokenRequestContext requestContext, bool async, CancellationToken cancellationToken)
{
using CredentialDiagnosticScope scope = _pipeline.StartGetTokenScope("OnBehalfOfCredential.GetToken", requestContext);
try
{
var tenantId = TenantIdResolver.Resolve(_tenantId, requestContext, AdditionallyAllowedTenantIds);
AuthenticationResult result = await Client
.AcquireTokenOnBehalfOfAsync(requestContext.Scopes, tenantId, _userAssertion, requestContext.Claims, requestContext.IsCaeEnabled, async, cancellationToken)
.ConfigureAwait(false);
return result.ToAccessToken();
}
catch (Exception e)
{
throw scope.FailWrapAndThrow(e);
}
}
}
}