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
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Security
{
using System.Collections.Generic;
using System.ServiceModel.Channels;
using System.ServiceModel;
using System.ServiceModel.Description;
using System.ServiceModel.Security.Tokens;
using System.Collections.ObjectModel;
using System.IdentityModel.Policy;
using System.IdentityModel.Selectors;
using System.IdentityModel.Tokens;
using System.Xml;
using System.Runtime.CompilerServices;
class SecurityStandardsManager
{
static SecurityStandardsManager instance;
readonly SecureConversationDriver secureConversationDriver;
readonly TrustDriver trustDriver;
readonly SignatureTargetIdManager idManager;
readonly MessageSecurityVersion messageSecurityVersion;
readonly WSUtilitySpecificationVersion wsUtilitySpecificationVersion;
readonly SecurityTokenSerializer tokenSerializer;
WSSecurityTokenSerializer wsSecurityTokenSerializer;
[MethodImpl(MethodImplOptions.NoInlining)]
public SecurityStandardsManager()
: this(WSSecurityTokenSerializer.DefaultInstance)
{
}
public SecurityStandardsManager(SecurityTokenSerializer tokenSerializer)
: this(MessageSecurityVersion.WSSecurity11WSTrustFebruary2005WSSecureConversationFebruary2005WSSecurityPolicy11, tokenSerializer)
{
}
public SecurityStandardsManager(MessageSecurityVersion messageSecurityVersion, SecurityTokenSerializer tokenSerializer)
{
if (messageSecurityVersion == null)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentNullException("messageSecurityVersion"));
if (tokenSerializer == null)
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("tokenSerializer");
this.messageSecurityVersion = messageSecurityVersion;
this.tokenSerializer = tokenSerializer;
if (messageSecurityVersion.SecureConversationVersion == SecureConversationVersion.WSSecureConversation13)
this.secureConversationDriver = new WSSecureConversationDec2005.DriverDec2005();
else
this.secureConversationDriver = new WSSecureConversationFeb2005.DriverFeb2005();
if (this.SecurityVersion == SecurityVersion.WSSecurity10 || this.SecurityVersion == SecurityVersion.WSSecurity11)
{
this.idManager = WSSecurityJan2004.IdManager.Instance;
}
else
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("messageSecurityVersion", SR.GetString(SR.MessageSecurityVersionOutOfRange)));
}
this.wsUtilitySpecificationVersion = WSUtilitySpecificationVersion.Default;
if (messageSecurityVersion.MessageSecurityTokenVersion.TrustVersion == TrustVersion.WSTrust13)
this.trustDriver = new WSTrustDec2005.DriverDec2005(this);
else
this.trustDriver = new WSTrustFeb2005.DriverFeb2005(this);
}
public static SecurityStandardsManager DefaultInstance
{
get
{
if (instance == null)
instance = new SecurityStandardsManager();
return instance;
}
}
public SecurityVersion SecurityVersion
{
get { return this.messageSecurityVersion == null ? null : this.messageSecurityVersion.SecurityVersion; }
}
public MessageSecurityVersion MessageSecurityVersion
{
get { return this.messageSecurityVersion; }
}
public TrustVersion TrustVersion
{
get { return this.messageSecurityVersion.TrustVersion; }
}
public SecureConversationVersion SecureConversationVersion
{
get { return this.messageSecurityVersion.SecureConversationVersion; }
}
internal SecurityTokenSerializer SecurityTokenSerializer
{
get { return this.tokenSerializer; }
}
internal WSUtilitySpecificationVersion WSUtilitySpecificationVersion
{
get { return this.wsUtilitySpecificationVersion; }
}
internal SignatureTargetIdManager IdManager
{
get { return this.idManager; }
}
internal SecureConversationDriver SecureConversationDriver
{
get { return this.secureConversationDriver; }
}
internal TrustDriver TrustDriver
{
get { return this.trustDriver; }
}
WSSecurityTokenSerializer WSSecurityTokenSerializer
{
get
{
if (this.wsSecurityTokenSerializer == null)
{
WSSecurityTokenSerializer wsSecurityTokenSerializer = this.tokenSerializer as WSSecurityTokenSerializer;
if (wsSecurityTokenSerializer == null)
{
wsSecurityTokenSerializer = new WSSecurityTokenSerializer(this.SecurityVersion);
}
this.wsSecurityTokenSerializer = wsSecurityTokenSerializer;
}
return this.wsSecurityTokenSerializer;
}
}
internal bool TryCreateKeyIdentifierClauseFromTokenXml(XmlElement element, SecurityTokenReferenceStyle tokenReferenceStyle, out SecurityKeyIdentifierClause securityKeyIdentifierClause)
{
return this.WSSecurityTokenSerializer.TryCreateKeyIdentifierClauseFromTokenXml(element, tokenReferenceStyle, out securityKeyIdentifierClause);
}
internal SecurityKeyIdentifierClause CreateKeyIdentifierClauseFromTokenXml(XmlElement element, SecurityTokenReferenceStyle tokenReferenceStyle)
{
return this.WSSecurityTokenSerializer.CreateKeyIdentifierClauseFromTokenXml(element, tokenReferenceStyle);
}
internal SendSecurityHeader CreateSendSecurityHeader(Message message,
string actor, bool mustUnderstand, bool relay,
SecurityAlgorithmSuite algorithmSuite, MessageDirection direction)
{
return this.SecurityVersion.CreateSendSecurityHeader(message, actor, mustUnderstand, relay, this, algorithmSuite, direction);
}
internal ReceiveSecurityHeader CreateReceiveSecurityHeader(Message message,
string actor,
SecurityAlgorithmSuite algorithmSuite, MessageDirection direction)
{
ReceiveSecurityHeader header = TryCreateReceiveSecurityHeader(message, actor, algorithmSuite, direction);
if (header == null)
{
if (String.IsNullOrEmpty(actor))
throw System.ServiceModel.Diagnostics.TraceUtility.ThrowHelperError(new MessageSecurityException(
SR.GetString(SR.UnableToFindSecurityHeaderInMessageNoActor)), message);
else
throw System.ServiceModel.Diagnostics.TraceUtility.ThrowHelperError(new MessageSecurityException(
SR.GetString(SR.UnableToFindSecurityHeaderInMessage, actor)), message);
}
return header;
}
internal ReceiveSecurityHeader TryCreateReceiveSecurityHeader(Message message,
string actor,
SecurityAlgorithmSuite algorithmSuite, MessageDirection direction)
{
return this.SecurityVersion.TryCreateReceiveSecurityHeader(message, actor, this, algorithmSuite, direction);
}
internal bool DoesMessageContainSecurityHeader(Message message)
{
return this.SecurityVersion.DoesMessageContainSecurityHeader(message);
}
internal bool TryGetSecurityContextIds(Message message, string[] actors, bool isStrictMode, ICollection<UniqueId> results)
{
if (results == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("results");
}
SecureConversationDriver driver = this.SecureConversationDriver;
int securityHeaderIndex = this.SecurityVersion.FindIndexOfSecurityHeader(message, actors);
if (securityHeaderIndex < 0)
{
return false;
}
bool addedContextIds = false;
using (XmlDictionaryReader reader = message.Headers.GetReaderAtHeader(securityHeaderIndex))
{
if (!reader.IsStartElement())
{
return false;
}
if (reader.IsEmptyElement)
{
return false;
}
reader.ReadStartElement();
while (reader.IsStartElement())
{
if (driver.IsAtSecurityContextToken(reader))
{
results.Add(driver.GetSecurityContextTokenId(reader));
addedContextIds = true;
if (isStrictMode)
{
break;
}
}
else
{
reader.Skip();
}
}
}
return addedContextIds;
}
}
}
|