-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathMsSqlQueryExecutor.cs
356 lines (313 loc) · 17.4 KB
/
MsSqlQueryExecutor.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System.Data;
using System.Data.Common;
using System.Net;
using System.Text;
using Azure.Core;
using Azure.DataApiBuilder.Config.ObjectModel;
using Azure.DataApiBuilder.Core.Authorization;
using Azure.DataApiBuilder.Core.Configurations;
using Azure.DataApiBuilder.Core.Models;
using Azure.DataApiBuilder.Service.Exceptions;
using Azure.Identity;
using Microsoft.AspNetCore.Http;
using Microsoft.Data.SqlClient;
using Microsoft.Extensions.Logging;
namespace Azure.DataApiBuilder.Core.Resolvers
{
/// <summary>
/// Specialized QueryExecutor for MsSql mainly providing methods to
/// handle connecting to the database with a managed identity.
/// /// </summary>
public class MsSqlQueryExecutor : QueryExecutor<SqlConnection>
{
// This is the same scope for any Azure SQL database that is
// required to request a default azure credential access token
// for a managed identity.
public const string DATABASE_SCOPE = @"https://database.windows.net/.default";
/// <summary>
/// The managed identity Access Token string obtained
/// from the configuration controller.
/// Key: datasource name, Value: access token for this datasource.
/// </summary>
private readonly Dictionary<string, string?> _accessTokensFromConfiguration;
/// <summary>
/// The MsSql specific connection string builders.
/// Key: datasource name, Value: connection string builder for this datasource.
/// </summary>
public override IDictionary<string, DbConnectionStringBuilder> ConnectionStringBuilders
=> base.ConnectionStringBuilders;
public DefaultAzureCredential AzureCredential { get; set; } = new();
/// <summary>
/// The saved cached access token obtained from DefaultAzureCredentials
/// representing a managed identity.
/// </summary>
private AccessToken? _defaultAccessToken;
/// <summary>
/// DatasourceName to boolean value indicating if access token should be set for db.
/// </summary>
private Dictionary<string, bool> _dataSourceAccessTokenUsage;
/// <summary>
/// DatasourceName to boolean value indicating if session context should be set for db.
/// </summary>
private Dictionary<string, bool> _dataSourceToSessionContextUsage;
public MsSqlQueryExecutor(
RuntimeConfigProvider runtimeConfigProvider,
DbExceptionParser dbExceptionParser,
ILogger<IQueryExecutor> logger,
IHttpContextAccessor httpContextAccessor)
: base(dbExceptionParser,
logger,
runtimeConfigProvider,
httpContextAccessor)
{
RuntimeConfig runtimeConfig = runtimeConfigProvider.GetConfig();
IEnumerable<KeyValuePair<string, DataSource>> mssqldbs = runtimeConfig.GetDataSourceNamesToDataSourcesIterator().Where(x => x.Value.DatabaseType is DatabaseType.MSSQL || x.Value.DatabaseType is DatabaseType.DWSQL);
_dataSourceAccessTokenUsage = new Dictionary<string, bool>();
_dataSourceToSessionContextUsage = new Dictionary<string, bool>();
_accessTokensFromConfiguration = runtimeConfigProvider.ManagedIdentityAccessToken;
foreach ((string dataSourceName, DataSource dataSource) in mssqldbs)
{
SqlConnectionStringBuilder builder = new(dataSource.ConnectionString);
if (runtimeConfigProvider.IsLateConfigured)
{
builder.Encrypt = SqlConnectionEncryptOption.Mandatory;
builder.TrustServerCertificate = false;
}
ConnectionStringBuilders.TryAdd(dataSourceName, builder);
MsSqlOptions? msSqlOptions = dataSource.GetTypedOptions<MsSqlOptions>();
_dataSourceToSessionContextUsage[dataSourceName] = msSqlOptions is null ? false : msSqlOptions.SetSessionContext;
_dataSourceAccessTokenUsage[dataSourceName] = ShouldManagedIdentityAccessBeAttempted(builder);
}
}
/// <summary>
/// Modifies the properties of the supplied connection to support managed identity access.
/// In the case of MsSql, gets access token if deemed necessary and sets it on the connection.
/// The supplied connection is assumed to already have the same connection string
/// provided in the runtime configuration.
/// </summary>
/// <param name="conn">The supplied connection to modify for managed identity access.</param>
/// <param name="dataSourceName">Name of datasource for which to set access token. Default dbName taken from config if null</param>
public override async Task SetManagedIdentityAccessTokenIfAnyAsync(DbConnection conn, string dataSourceName)
{
// using default datasource name for first db - maintaining backward compatibility for single db scenario.
if (string.IsNullOrEmpty(dataSourceName))
{
dataSourceName = ConfigProvider.GetConfig().DefaultDataSourceName;
}
_dataSourceAccessTokenUsage.TryGetValue(dataSourceName, out bool setAccessToken);
// Only attempt to get the access token if the connection string is in the appropriate format
if (setAccessToken)
{
SqlConnection sqlConn = (SqlConnection)conn;
// If the configuration controller provided a managed identity access token use that,
// else use the default saved access token if still valid.
// Get a new token only if the saved token is null or expired.
_accessTokensFromConfiguration.TryGetValue(dataSourceName, out string? accessTokenFromController);
string? accessToken = accessTokenFromController ??
(IsDefaultAccessTokenValid() ?
((AccessToken)_defaultAccessToken!).Token :
await GetAccessTokenAsync());
if (accessToken is not null)
{
sqlConn.AccessToken = accessToken;
}
}
}
/// <summary>
/// Determines if managed identity access should be attempted or not.
/// It should only be attempted,
/// 1. If none of UserID, Password or Authentication
/// method are specified in the connection string since they have higher precedence
/// and any attempt to use an access token in their presence would lead to
/// a System.InvalidOperationException.
/// 2. It is NOT a Windows Integrated Security scenario.
/// </summary>
private static bool ShouldManagedIdentityAccessBeAttempted(SqlConnectionStringBuilder builder)
{
return string.IsNullOrEmpty(builder.UserID) &&
string.IsNullOrEmpty(builder.Password) &&
builder.Authentication == SqlAuthenticationMethod.NotSpecified &&
!builder.IntegratedSecurity;
}
/// <summary>
/// Determines if the saved default azure credential's access token is valid and not expired.
/// </summary>
/// <returns>True if valid, false otherwise.</returns>
private bool IsDefaultAccessTokenValid()
{
return _defaultAccessToken is not null &&
((AccessToken)_defaultAccessToken).ExpiresOn.CompareTo(DateTimeOffset.Now) > 0;
}
/// <summary>
/// Tries to get an access token using DefaultAzureCredentials.
/// Catches any CredentialUnavailableException and logs only a warning
/// since since this is best effort.
/// </summary>
/// <returns>The string representation of the access token if found,
/// null otherwise.</returns>
private async Task<string?> GetAccessTokenAsync()
{
try
{
_defaultAccessToken = await AzureCredential.GetTokenAsync(new TokenRequestContext(new[] { DATABASE_SCOPE }));
}
catch (CredentialUnavailableException ex)
{
string correlationId = HttpContextExtensions.GetLoggerCorrelationId(HttpContextAccessor.HttpContext);
QueryExecutorLogger.LogWarning(
message: "{correlationId} Failed to retrieve a managed identity access token using DefaultAzureCredential due to:\n{errorMessage}",
correlationId,
ex.Message);
}
return _defaultAccessToken?.Token;
}
/// <summary>
/// Method to generate the query to send user data to the underlying database via SESSION_CONTEXT which might be used
/// for additional security (eg. using Security Policies) at the database level. The max payload limit for SESSION_CONTEXT is 1MB.
/// </summary>
/// <param name="httpContext">Current user httpContext.</param>
/// <param name="parameters">Dictionary of parameters/value required to execute the query.</param>
/// <param name="dataSourceName">Name of datasource for which to set access token. Default dbName taken from config if null</param>
/// <returns>empty string / query to set session parameters for the connection.</returns>
/// <seealso cref="https://learn.microsoft.com/en-us/sql/relational-databases/system-stored-procedures/sp-set-session-context-transact-sql?view=sql-server-ver16"/>
public override string GetSessionParamsQuery(HttpContext? httpContext, IDictionary<string, DbConnectionParam> parameters, string dataSourceName)
{
if (string.IsNullOrEmpty(dataSourceName))
{
dataSourceName = ConfigProvider.GetConfig().DefaultDataSourceName;
}
if (httpContext is null || !_dataSourceToSessionContextUsage[dataSourceName])
{
return string.Empty;
}
// Dictionary containing all the claims belonging to the user, to be used as session parameters.
Dictionary<string, string> sessionParams = AuthorizationResolver.GetProcessedUserClaims(httpContext);
// Counter to generate different param name for each of the sessionParam.
IncrementingInteger counter = new();
const string SESSION_PARAM_NAME = $"{BaseQueryStructure.PARAM_NAME_PREFIX}session_param";
StringBuilder sessionMapQuery = new();
foreach ((string claimType, string claimValue) in sessionParams)
{
string paramName = $"{SESSION_PARAM_NAME}{counter.Next()}";
parameters.Add(paramName, new(claimValue));
// Append statement to set read only param value - can be set only once for a connection.
string statementToSetReadOnlyParam = "EXEC sp_set_session_context " + $"'{claimType}', " + paramName + ", @read_only = 0;";
sessionMapQuery = sessionMapQuery.Append(statementToSetReadOnlyParam);
}
return sessionMapQuery.ToString();
}
/// <inheritdoc/>
public override async Task<DbResultSet> GetMultipleResultSetsIfAnyAsync(
DbDataReader dbDataReader, List<string>? args = null)
{
// From the first result set, we get the count(0/1) of records with given PK.
DbResultSet resultSetWithCountOfRowsWithGivenPk = await ExtractResultSetFromDbDataReaderAsync(dbDataReader);
DbResultSetRow? resultSetRowWithCountOfRowsWithGivenPk = resultSetWithCountOfRowsWithGivenPk.Rows.FirstOrDefault();
int numOfRecordsWithGivenPK;
if (resultSetRowWithCountOfRowsWithGivenPk is not null &&
resultSetRowWithCountOfRowsWithGivenPk.Columns.TryGetValue(MsSqlQueryBuilder.COUNT_ROWS_WITH_GIVEN_PK, out object? rowsWithGivenPK))
{
numOfRecordsWithGivenPK = (int)rowsWithGivenPK!;
}
else
{
throw new DataApiBuilderException(
message: $"Neither insert nor update could be performed.",
statusCode: HttpStatusCode.InternalServerError,
subStatusCode: DataApiBuilderException.SubStatusCodes.UnexpectedError);
}
// The second result set holds the records returned as a result of the executed update/insert operation.
DbResultSet? dbResultSet = await dbDataReader.NextResultAsync() ? await ExtractResultSetFromDbDataReaderAsync(dbDataReader) : null;
if (dbResultSet is null)
{
// For a PUT/PATCH operation on a table/view with non-autogen PK, we would either perform an insert or an update for sure,
// and correspondingly dbResultSet can not be null.
// However, in case of autogen PK, we would not attempt an insert since PK is auto generated.
// We would only attempt an update , and that too when a record exists for given PK.
// However since the dbResultSet is null here, it indicates we didn't perform an update either.
// This happens when count of rows with given PK = 0.
if (args is not null && args.Count > 1)
{
string prettyPrintPk = args![0];
string entityName = args[1];
throw new DataApiBuilderException(
message: $"Cannot perform INSERT and could not find {entityName} " +
$"with primary key {prettyPrintPk} to perform UPDATE on.",
statusCode: HttpStatusCode.NotFound,
subStatusCode: DataApiBuilderException.SubStatusCodes.ItemNotFound);
}
throw new DataApiBuilderException(
message: $"Neither insert nor update could be performed.",
statusCode: HttpStatusCode.InternalServerError,
subStatusCode: DataApiBuilderException.SubStatusCodes.UnexpectedError);
}
if (numOfRecordsWithGivenPK == 1) // This indicates that a record existed with given PK and we attempted an update operation.
{
if (dbResultSet.Rows.Count == 0)
{
// Record exists in the table/view but no record updated - indicates database policy failure.
throw new DataApiBuilderException(
message: DataApiBuilderException.AUTHORIZATION_FAILURE,
statusCode: HttpStatusCode.Forbidden,
subStatusCode: DataApiBuilderException.SubStatusCodes.DatabasePolicyFailure);
}
// This is used as an identifier to distinguish between update/insert operations.
// Later helps to add location header in case of insert operation.
dbResultSet.ResultProperties.Add(SqlMutationEngine.IS_UPDATE_RESULT_SET, true);
}
else if (dbResultSet.Rows.Count == 0)
{
// No record exists in the table/view but inserted no records - indicates database policy failure.
throw new DataApiBuilderException(
message: DataApiBuilderException.AUTHORIZATION_FAILURE,
statusCode: HttpStatusCode.Forbidden,
subStatusCode: DataApiBuilderException.SubStatusCodes.DatabasePolicyFailure);
}
return dbResultSet;
}
/// <inheritdoc />
public override SqlCommand PrepareDbCommand(
SqlConnection conn,
string sqltext,
IDictionary<string, DbConnectionParam> parameters,
HttpContext? httpContext,
string dataSourceName)
{
SqlCommand cmd = conn.CreateCommand();
cmd.CommandType = CommandType.Text;
// Add query to send user data from DAB to the underlying database to enable additional security the user might have configured
// at the database level.
string sessionParamsQuery = GetSessionParamsQuery(httpContext, parameters, dataSourceName);
cmd.CommandText = sessionParamsQuery + sqltext;
if (parameters is not null)
{
foreach (KeyValuePair<string, DbConnectionParam> parameterEntry in parameters)
{
SqlParameter parameter = cmd.CreateParameter();
parameter.ParameterName = parameterEntry.Key;
parameter.Value = parameterEntry.Value.Value ?? DBNull.Value;
PopulateDbTypeForParameter(parameterEntry, parameter);
cmd.Parameters.Add(parameter);
}
}
return cmd;
}
/// <inheritdoc/>
public static void PopulateDbTypeForParameter(KeyValuePair<string, DbConnectionParam> parameterEntry, SqlParameter parameter)
{
if (parameterEntry.Value is not null)
{
if (parameterEntry.Value.DbType is not null)
{
parameter.DbType = (DbType)parameterEntry.Value.DbType;
}
if (parameterEntry.Value.SqlDbType is not null)
{
parameter.SqlDbType = (SqlDbType)parameterEntry.Value.SqlDbType;
}
}
}
}
}