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 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
using System;
using System.Collections.ObjectModel;
using System.IdentityModel.Selectors;
using System.IdentityModel.Tokens;
using SecurityTokenTypes = System.IdentityModel.Tokens.SecurityTokenTypes;
using STS = System.IdentityModel.SecurityTokenService;
using System.Security.Cryptography.X509Certificates;
using System.IdentityModel.Protocols.WSTrust;
namespace System.IdentityModel.Configuration
{
/// <summary>
/// Defines the configuration specific to a SecurityTokenService.
/// </summary>
public class SecurityTokenServiceConfiguration : IdentityConfiguration
{
string _tokenIssuerName;
SigningCredentials _signingCredentials;
TimeSpan _defaultTokenLifetime = TimeSpan.FromHours(1.0);
TimeSpan _maximumTokenLifetime = TimeSpan.FromDays(1);
string _defaultTokenType = SecurityTokenTypes.SamlTokenProfile11;
internal const int DefaultKeySizeInBitsConstant = 256;
int _defaultSymmetricKeySizeInBits = DefaultKeySizeInBitsConstant;
int _defaultMaxSymmetricKeySizeInBits = 1024;
bool _disableWsdl;
Type _securityTokenServiceType;
//
// Trust Serializers.
//
WSTrust13RequestSerializer _wsTrust13RequestSerializer = new WSTrust13RequestSerializer();
WSTrust13ResponseSerializer _wsTrust13ResponseSerializer = new WSTrust13ResponseSerializer();
WSTrustFeb2005RequestSerializer _wsTrustFeb2005RequestSerializer = new WSTrustFeb2005RequestSerializer();
WSTrustFeb2005ResponseSerializer _wsTrustFeb2005ResponseSerializer = new WSTrustFeb2005ResponseSerializer();
/// <summary>
/// Initializes an instance of <see cref="SecurityTokenServiceConfiguration"/>
/// </summary>
/// <remarks>
/// IssuerName must be set before the <see cref="SecurityTokenService"/> is used to create a token.
/// </remarks>
public SecurityTokenServiceConfiguration()
: this(null, null)
{
}
/// <summary>
/// Initializes an instance of <see cref="SecurityTokenServiceConfiguration"/>
/// </summary>
/// <param name="loadConfig">Whether or not config should be loaded.</param>
/// <remarks>
/// IssuerName must be set before the <see cref="SecurityTokenService"/> is used to create a token.
/// </remarks>
public SecurityTokenServiceConfiguration(bool loadConfig)
: this(null, null, loadConfig)
{
}
/// <summary>
/// Initializes an instance of <see cref="SecurityTokenServiceConfiguration"/>
/// </summary>
/// <param name="issuerName">The issuer name.</param>
/// <remarks>
/// If issuerName is null, IssuerName must be set before the <see cref="SecurityTokenService"/>
/// is used to create a token.
/// </remarks>
public SecurityTokenServiceConfiguration(string issuerName)
: this(issuerName, null)
{
}
/// <summary>
/// Initializes an instance of <see cref="SecurityTokenServiceConfiguration"/>
/// </summary>
/// <param name="issuerName">The issuer name.</param>
/// <param name="loadConfig">Whether or not config should be loaded.</param>
/// <remarks>
/// If issuerName is null, IssuerName must be set before the <see cref="SecurityTokenService"/>
/// is used to create a token.
/// </remarks>
public SecurityTokenServiceConfiguration(string issuerName, bool loadConfig)
: this(issuerName, null, loadConfig)
{
}
/// <summary>
/// Initializes an instance of <see cref="SecurityTokenServiceConfiguration"/>
/// </summary>
/// <param name="issuerName">The issuer name.</param>
/// <param name="signingCredentials">The signing credential for the STS.</param>
/// <remarks>
/// If issuerName is null, IssuerName must be set before the <see cref="SecurityTokenService"/>
/// is used to create a token.
/// </remarks>
public SecurityTokenServiceConfiguration(string issuerName, SigningCredentials signingCredentials)
: base()
{
_tokenIssuerName = issuerName;
_signingCredentials = signingCredentials;
}
/// <summary>
/// Initializes an instance of <see cref="SecurityTokenServiceConfiguration"/>
/// </summary>
/// <param name="issuerName">The issuer name.</param>
/// <param name="signingCredentials">The signing credential for the STS.</param>
/// <param name="loadConfig">Whether or not config should be loaded.</param>
/// <remarks>
/// If issuerName is null, IssuerName must be set before the <see cref="SecurityTokenService"/>
/// is used to create a token.
/// </remarks>
public SecurityTokenServiceConfiguration(string issuerName, SigningCredentials signingCredentials, bool loadConfig)
: base(loadConfig)
{
_tokenIssuerName = issuerName;
_signingCredentials = signingCredentials;
}
/// <summary>
/// Initializes an instance of <see cref="SecurityTokenServiceConfiguration"/>
/// </summary>
/// <param name="issuerName">The issuer name.</param>
/// <param name="signingCredentials">The signing credential for the STS.</param>
/// <param name="serviceName">The name of the <service> element from which configuration is to be loaded.</param>
/// <remarks>
/// If issuerName is null, IssuerName must be set before the <see cref="SecurityTokenService"/>
/// is used to create a token.
/// </remarks>
public SecurityTokenServiceConfiguration(string issuerName, SigningCredentials signingCredentials, string serviceName)
: base(serviceName)
{
_tokenIssuerName = issuerName;
_signingCredentials = signingCredentials;
}
/// <summary>
/// Gets or sets the type of the SecurityTokenService.
/// </summary>
/// <exception cref="ArgumentNullException">The provided value is null.</exception>
public Type SecurityTokenService
{
get
{
return _securityTokenServiceType;
}
set
{
if (value == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
}
if (!typeof(System.IdentityModel.SecurityTokenService).IsAssignableFrom(value))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("value", SR.GetString(SR.ID2069));
}
_securityTokenServiceType = value;
}
}
/// <summary>
/// Creates an instance of SecurityTokenService from the type specified in
/// SecurityTokenServiceConfiguration.SecurityTokenService. The method
/// expects the type to implement a constructor that takes in the SecurityTokenServiceConfiguration.
/// </summary>
/// <returns>Instance of SecurityTokenService.</returns>
/// <exception cref="InvalidOperationException">Unable to create a SecurityTokenService instance from the configuration.</exception>
public virtual STS CreateSecurityTokenService()
{
Type stsType = this.SecurityTokenService;
if (stsType == null)
{
throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID2073));
}
if (!typeof(STS).IsAssignableFrom(stsType))
{
throw DiagnosticUtility.ThrowHelperInvalidOperation(SR.GetString(SR.ID2074, stsType, typeof(STS)));
}
return Activator.CreateInstance(stsType, this) as STS;
}
/// <summary>
/// Gets or sets the default key size in bits used in the issued token.
/// </summary>
/// <remarks>
/// This only applies to the symmetric key case.
/// </remarks>
public int DefaultSymmetricKeySizeInBits
{
get
{
return _defaultSymmetricKeySizeInBits;
}
set
{
if (value <= 0)
{
throw DiagnosticUtility.ThrowHelperArgumentOutOfRange("value", SR.GetString(SR.ID0002));
}
_defaultSymmetricKeySizeInBits = value;
}
}
/// <summary>
/// Gets or sets the default key size limit in bits used check if the KeySize specified in the request
/// is within this limit.
/// </summary>
/// <remarks>
/// This only applies to the symmetric key case.
/// </remarks>
public int DefaultMaxSymmetricKeySizeInBits
{
get
{
return _defaultMaxSymmetricKeySizeInBits;
}
set
{
if (value <= 0)
{
throw DiagnosticUtility.ThrowHelperArgumentOutOfRange("value", SR.GetString(SR.ID0002));
}
_defaultMaxSymmetricKeySizeInBits = value;
}
}
/// <summary>
/// Gets or sets the default lifetime used in the issued tokens.
/// </summary>
public TimeSpan DefaultTokenLifetime
{
get
{
return _defaultTokenLifetime;
}
set
{
_defaultTokenLifetime = value;
}
}
/// <summary>
/// Gets or sets the default token type used in token issuance.
/// </summary>
/// <exception cref="ArgumentNullException">The provided value is null or empty.</exception>
/// <exception cref="ArgumentException">The provided value is not defined in the token handlers.</exception>
public string DefaultTokenType
{
get
{
return _defaultTokenType;
}
set
{
if (string.IsNullOrEmpty(value))
{
throw DiagnosticUtility.ThrowHelperArgumentNullOrEmptyString("value");
}
if (SecurityTokenHandlers[value] == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgument("value", SR.GetString(SR.ID2015, value));
}
_defaultTokenType = value;
}
}
/// <summary>
/// Gets or Sets a boolean that specifies if WSDL generation for the
/// Service should be enabled. Default is false.
/// </summary>
public bool DisableWsdl
{
get
{
return _disableWsdl;
}
set
{
_disableWsdl = value;
}
}
/// <summary>
/// Gets or sets the maximum token lifetime for issued tokens.
/// </summary>
public TimeSpan MaximumTokenLifetime
{
get
{
return _maximumTokenLifetime;
}
set
{
if (value <= TimeSpan.Zero)
{
throw DiagnosticUtility.ThrowHelperArgumentOutOfRange("value", SR.GetString(SR.ID0016));
}
_maximumTokenLifetime = value;
}
}
/// <summary>
/// Gets or sets the signing credentials.
/// </summary>
public SigningCredentials SigningCredentials
{
get
{
return _signingCredentials;
}
set
{
_signingCredentials = value;
}
}
/// <summary>
/// Gets the issuer name so that it can be reflected in the issued token.
/// </summary>
/// <exception cref="ArgumentNullException">The value being set is null or empty string.</exception>
public string TokenIssuerName
{
get
{
return _tokenIssuerName;
}
set
{
if (string.IsNullOrEmpty(value))
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
}
_tokenIssuerName = value;
}
}
/// <summary>
/// Gets or sets the WS-Trust 1.3 Request (RST) serializer.
/// </summary>
/// <exception cref="ArgumentNullException">The provided value is null.</exception>
public WSTrust13RequestSerializer WSTrust13RequestSerializer
{
get
{
return _wsTrust13RequestSerializer;
}
set
{
if (value == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
}
_wsTrust13RequestSerializer = value;
}
}
/// <summary>
/// Gets or sets the WS-Trust 1.3 Response (RSTR) serializer.
/// </summary>
/// <exception cref="ArgumentNullException">The provided value is null.</exception>
public WSTrust13ResponseSerializer WSTrust13ResponseSerializer
{
get
{
return _wsTrust13ResponseSerializer;
}
set
{
if (value == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
}
_wsTrust13ResponseSerializer = value;
}
}
/// <summary>
/// Gets or sets the WS-Trust Feb 2005 Request (RST) serializer.
/// </summary>
/// <exception cref="ArgumentNullException">The provided value is null.</exception>
public WSTrustFeb2005RequestSerializer WSTrustFeb2005RequestSerializer
{
get
{
return _wsTrustFeb2005RequestSerializer;
}
set
{
if (value == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
}
_wsTrustFeb2005RequestSerializer = value;
}
}
/// <summary>
/// Gets or sets the WS-Trust Feb 2005 Response (RSTR) serializer.
/// </summary>
/// <exception cref="ArgumentNullException">The provided value is null.</exception>
public WSTrustFeb2005ResponseSerializer WSTrustFeb2005ResponseSerializer
{
get
{
return _wsTrustFeb2005ResponseSerializer;
}
set
{
if (value == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
}
_wsTrustFeb2005ResponseSerializer = value;
}
}
}
}
|