-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This change introduces a new type, `SdkAuthFileCredential` which can be used to support authenticating with an "SDK Auth File", which the `az` CLI can write. The file itself is just a JSON document that has information about the Tenent, Client ID and Client Secret. Under the hood, we just create a ClientSecretCredential with the information from the SDK Auth File. We also add `AZURE_AUTH_LOCATION` to the list of environment variaibles that the `EnvironmentCredential` considers.
- Loading branch information
Showing
10 changed files
with
294 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
146 changes: 146 additions & 0 deletions
146
sdk/identity/Azure.Identity/src/SdkAuthFileCredential.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,146 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using System.Text.Json; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using Azure.Core; | ||
|
||
namespace Azure.Identity | ||
{ | ||
/// <summary> | ||
/// Enables authentication to Azure Active Directory using configuration information stored Azure SDK Auth File. | ||
/// </summary> | ||
/// <remarks> | ||
/// An Azaure SDK Auth file may be generated by passing <code>--sdk-auth</code> when generating an service principal | ||
/// with <code>az ad sp create-for-rbac</code>. At this time <see cref="SdkAuthFileCredential"/> only supports | ||
/// SDK Auth Files which contain a client secret, client certificates are not supported at this time. | ||
/// </remarks> | ||
public class SdkAuthFileCredential : TokenCredential | ||
{ | ||
internal string FilePath { get; } | ||
|
||
private readonly CredentialPipeline _pipeline; | ||
|
||
// Initialized on first use by EnsureCredential | ||
private TokenCredential _credential; | ||
|
||
/// <summary> | ||
/// Creates an instance of the SdkAuthFileCredential class based on information in given SDK Auth file. | ||
/// If the file is not found or there are errors parsing it, <see cref="GetToken(TokenRequestContext, CancellationToken)"/> | ||
/// and <see cref="GetTokenAsync(TokenRequestContext, CancellationToken)"/> will throw a <see cref="AuthenticationFailedException"/> | ||
/// with details on why the file could not be used. | ||
/// </summary> | ||
/// <param name="filePath">The path to the SDK Auth file.</param> | ||
public SdkAuthFileCredential(string filePath): | ||
this(filePath, CredentialPipeline.GetInstance(null)) | ||
{ | ||
} | ||
|
||
/// <summary> | ||
/// Creates an instance of the SdkAuthFileCredential class based on information in given SDK Auth file. | ||
/// If the file is not found or there are errors parsing it, <see cref="GetToken(TokenRequestContext, CancellationToken)"/> | ||
/// and <see cref="GetTokenAsync(TokenRequestContext, CancellationToken)"/> will throw a <see cref="AuthenticationFailedException"/> | ||
/// with details on why the file could not be used. | ||
/// </summary> | ||
/// <param name="pathToFile">The path to the SDK Auth file.</param> | ||
/// <param name="options">Options that allow to configure the management of the requests sent to the Azure Active Directory service. Note that | ||
/// <see cref="TokenCredentialOptions.AuthorityHost"/> is ignored in favor of the <code>activeDirectoryEndpointUrl</code> property | ||
/// of the SDK Auth file.</param> | ||
public SdkAuthFileCredential(string pathToFile, TokenCredentialOptions options) | ||
: this(pathToFile, CredentialPipeline.GetInstance(options)) | ||
{ | ||
} | ||
|
||
internal SdkAuthFileCredential(string pathToFile, CredentialPipeline pipeline) | ||
{ | ||
FilePath = pathToFile ?? throw new ArgumentNullException(nameof(pathToFile)); | ||
_pipeline = pipeline ?? throw new ArgumentNullException(nameof(pipeline)); | ||
} | ||
|
||
/// <summary> | ||
/// Obtains a token from the Azure Active Directory service, using the specified client detailed specified in the SDK Auth file. | ||
/// This method is called by Azure SDK clients. It isn't intended for use in application code. | ||
/// </summary> | ||
/// <remarks> | ||
/// If the SDK Auth file is missing or invalid, this method throws a <see cref="AuthenticationFailedException"/> exception. | ||
/// </remarks> | ||
/// <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> | ||
public override AccessToken GetToken(TokenRequestContext requestContext, CancellationToken cancellationToken) | ||
{ | ||
EnsureCredential(false, cancellationToken).GetAwaiter().GetResult(); | ||
|
||
return _credential.GetToken(requestContext, cancellationToken); | ||
} | ||
|
||
/// <summary> | ||
/// Obtains a token from the Azure Active Directory service, using the specified client detailed specified in the SDK Auth file. | ||
/// This method is called by Azure SDK clients. It isn't intended for use in application code. | ||
/// </summary> | ||
/// <remarks> | ||
/// If the SDK Auth file is missing or invalid, this method throws a <see cref="AuthenticationFailedException"/> exception. | ||
/// </remarks> | ||
/// <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> | ||
public async override ValueTask<AccessToken> GetTokenAsync(TokenRequestContext requestContext, CancellationToken cancellationToken) | ||
{ | ||
await EnsureCredential(true, cancellationToken).ConfigureAwait(false); | ||
|
||
return await _credential.GetTokenAsync(requestContext, cancellationToken).ConfigureAwait(false); | ||
} | ||
|
||
/// <summary> | ||
/// Ensures that credential information is loaded from the SDK Auth file. This method should be called to initialize | ||
/// <code>_credential</code> before it is used. If the SDK Auth file is not found or invalid, this method will throw | ||
/// <see cref="AuthenticationFailedException"/>. | ||
/// </summary> | ||
/// <param name="isAsync">When true, the task reutrned by this method may complete asynchronously.</param> | ||
/// <param name="cancellationToken">>A <see cref="CancellationToken"/> controlling the request lifetime.</param> | ||
/// <returns>A task that will ensure <code>_credential</code> has been initialized</returns> | ||
internal async Task EnsureCredential(bool isAsync, CancellationToken cancellationToken) | ||
{ | ||
if (_credential == null) | ||
{ | ||
try | ||
{ | ||
_credential = BuildCredentialForCredentialsFile(isAsync ? await ParseCredentialsFileAsync(FilePath, cancellationToken).ConfigureAwait(false) : ParseCredentialsFile(FilePath)); | ||
} catch (Exception e) when (!(e is OperationCanceledException)) | ||
{ | ||
throw new AuthenticationFailedException("Error parsing SDK Auth File", e); | ||
} | ||
} | ||
} | ||
|
||
private static Dictionary<string, string> ParseCredentialsFile(string filePath) | ||
{ | ||
return JsonSerializer.Deserialize<Dictionary<string, string>>(File.ReadAllText(filePath)); | ||
} | ||
|
||
private static async Task<Dictionary<string, string>> ParseCredentialsFileAsync(string filePath, CancellationToken cancellationToken) | ||
{ | ||
using Stream s = File.OpenRead(filePath); | ||
return await JsonSerializer.DeserializeAsync<Dictionary<string, string>>(s, null, cancellationToken); | ||
} | ||
|
||
private TokenCredential BuildCredentialForCredentialsFile(Dictionary<string, string> authData) | ||
{ | ||
authData.TryGetValue("clientId", out string clientId); | ||
authData.TryGetValue("clientSecret", out string clientSecret); | ||
authData.TryGetValue("tenantId", out string tenantId); | ||
authData.TryGetValue("activeDirectoryEndpointUrl", out string activeDirectoryEndpointUrl); | ||
|
||
if (clientId == null || clientSecret == null || tenantId == null || activeDirectoryEndpointUrl == null) | ||
{ | ||
throw new Exception("Malformed Azure SDK Auth file. The file should contain 'clientId', 'clientSecret', 'tenentId' and 'activeDirectoryEndpointUrl' values."); | ||
} | ||
|
||
return new ClientSecretCredential(tenantId, clientId, clientSecret, _pipeline.WithAuthorityHost(new Uri(activeDirectoryEndpointUrl))); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"clientId": "mockclientid", | ||
"clientSecret": "mockclientsecret", | ||
"subscriptionId": "mocksubscriptionid", | ||
"tenantId": "mocktenantid", | ||
"activeDirectoryEndpointUrl": "https://login.microsoftonline.com", | ||
"resourceManagerEndpointUrl": "https://management.azure.com/", | ||
"activeDirectoryGraphResourceId": "https://graph.windows.net/", | ||
"sqlManagementEndpointUrl": "https://management.core.windows.net:8443/", | ||
"galleryEndpointUrl": "https://gallery.azure.com/", | ||
"managementEndpointUrl": "https://management.core.windows.net/" | ||
} |
Oops, something went wrong.