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 442 443 444 445 446 447 448 449 450 451
|
//
// SecureMessageDecryptor.cs
//
// Author:
// Atsushi Enomoto <atsushi@ximian.com>
//
// Copyright (C) 2006-2007 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
//
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.IdentityModel.Selectors;
using System.IdentityModel.Tokens;
using System.Runtime.Serialization;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Security.Cryptography.Xml;
using System.ServiceModel;
using System.ServiceModel.Channels;
using System.ServiceModel.Description;
using System.ServiceModel.Security;
using System.ServiceModel.Security.Tokens;
using System.Text;
using System.Xml;
using System.Xml.XPath;
using ReqType = System.ServiceModel.Security.Tokens.ServiceModelSecurityTokenRequirement;
namespace System.ServiceModel.Channels.Security
{
internal class RecipientSecureMessageDecryptor : SecureMessageDecryptor
{
RecipientMessageSecurityBindingSupport security;
public RecipientSecureMessageDecryptor (
Message source, RecipientMessageSecurityBindingSupport security)
: base (source, security)
{
this.security = security;
}
public override MessageDirection Direction {
get { return MessageDirection.Input; }
}
public override SecurityMessageProperty RequestSecurity {
get { return null; }
}
public override SecurityTokenParameters Parameters {
get { return security.RecipientParameters; }
}
public override SecurityTokenParameters CounterParameters {
get { return security.InitiatorParameters; }
}
}
internal class InitiatorSecureMessageDecryptor : SecureMessageDecryptor
{
InitiatorMessageSecurityBindingSupport security;
SecurityMessageProperty request_security;
public InitiatorSecureMessageDecryptor (
Message source, SecurityMessageProperty secprop, InitiatorMessageSecurityBindingSupport security)
: base (source, security)
{
this.security = security;
request_security = secprop;
}
public override SecurityMessageProperty RequestSecurity {
get { return request_security; }
}
public override MessageDirection Direction {
get { return MessageDirection.Output; }
}
public override SecurityTokenParameters Parameters {
get { return security.InitiatorParameters; }
}
public override SecurityTokenParameters CounterParameters {
get { return security.RecipientParameters; }
}
}
internal abstract class SecureMessageDecryptor
{
Message source_message;
MessageBuffer buf;
MessageSecurityBindingSupport security;
XmlDocument doc;
XmlNamespaceManager nsmgr; // for XPath query
SecurityMessageProperty sec_prop =
new SecurityMessageProperty ();
WSSecurityMessageHeader wss_header = null;
WSSecurityMessageHeaderReader wss_header_reader;
List<MessageHeaderInfo> headers = new List<MessageHeaderInfo> ();
SecurityTokenResolver token_resolver;
List<SecurityToken> tokens;
protected SecureMessageDecryptor (
Message source, MessageSecurityBindingSupport security)
{
source_message = source;
this.security = security;
// FIXME: use proper max buffer
buf = source.CreateBufferedCopy (int.MaxValue);
//Console.WriteLine ("####### " + buf.CreateMessage ());
doc = new XmlDocument ();
doc.PreserveWhitespace = true;
nsmgr = new XmlNamespaceManager (doc.NameTable);
nsmgr.AddNamespace ("s", "http://www.w3.org/2003/05/soap-envelope");
nsmgr.AddNamespace ("c", Constants.WsscNamespace);
nsmgr.AddNamespace ("o", Constants.WssNamespace);
nsmgr.AddNamespace ("e", EncryptedXml.XmlEncNamespaceUrl);
nsmgr.AddNamespace ("u", Constants.WsuNamespace);
nsmgr.AddNamespace ("dsig", SignedXml.XmlDsigNamespaceUrl);
}
public abstract MessageDirection Direction { get; }
public abstract SecurityTokenParameters Parameters { get; }
public abstract SecurityTokenParameters CounterParameters { get; }
public abstract SecurityMessageProperty RequestSecurity { get; }
public SecurityTokenResolver TokenResolver {
get { return token_resolver; }
}
public Message DecryptMessage ()
{
Message srcmsg = buf.CreateMessage ();
if (srcmsg.Version.Envelope == EnvelopeVersion.None)
throw new ArgumentException ("The message to decrypt is not an expected SOAP envelope.");
XPathNavigator nav = doc.CreateNavigator ();
using (XmlWriter writer = nav.AppendChild ()) {
buf.CreateMessage ().WriteMessage (writer);
}
/*
doc.PreserveWhitespace = false;
doc.Save (Console.Out);
doc.PreserveWhitespace = true;
*/
// read and store headers, wsse:Security and setup in-band resolver.
ReadHeaders (srcmsg);
ExtractSecurity ();
Message msg = Message.CreateMessage (new XmlNodeReader (doc), srcmsg.Headers.Count, srcmsg.Version);
for (int i = 0; i < srcmsg.Headers.Count; i++) {
MessageHeaderInfo header = srcmsg.Headers [i];
if (header == wss_header) {
msg.Headers.RemoveAt (i);
msg.Headers.Add (wss_header);
}
}
// FIXME: when Local[Client|Service]SecuritySettings.DetectReplays
// is true, reject such messages which don't have <wsu:Timestamp>
msg.Properties.Add ("Security", sec_prop);
return msg;
}
void ReadHeaders (Message srcmsg)
{
SecurityTokenSerializer serializer =
security.TokenSerializer;
tokens = new List<SecurityToken> ();
token_resolver = SecurityTokenResolver.CreateDefaultSecurityTokenResolver (
new ReadOnlyCollection <SecurityToken> (tokens),
true);
token_resolver = new UnionSecurityTokenResolver (token_resolver, security.OutOfBandTokenResolver);
// Add relevant protection token and supporting tokens.
tokens.Add (security.EncryptionToken);
// FIXME: this is just a workaround for symmetric binding to not require extra client certificate.
if (security.Element is AsymmetricSecurityBindingElement)
tokens.Add (security.SigningToken);
if (RequestSecurity != null && RequestSecurity.ProtectionToken != null)
tokens.Add (RequestSecurity.ProtectionToken.SecurityToken);
// FIXME: handle supporting tokens
for (int i = 0; i < srcmsg.Headers.Count; i++) {
MessageHeaderInfo header = srcmsg.Headers [i];
// FIXME: check SOAP Actor.
// MessageHeaderDescription.Actor needs to be accessible from here.
if (header.Namespace == Constants.WssNamespace &&
header.Name == "Security") {
wss_header = new WSSecurityMessageHeader (null);
wss_header_reader = new WSSecurityMessageHeaderReader (wss_header, serializer, token_resolver, doc, nsmgr, tokens);
wss_header_reader.ReadContents (srcmsg.Headers.GetReaderAtHeader (i));
headers.Add (wss_header);
}
else
headers.Add (header);
}
if (wss_header == null)
throw new InvalidOperationException ("In this service contract, a WS-Security header is required in the Message, but was not found.");
}
void ExtractSecurity ()
{
if (security.MessageProtectionOrder == MessageProtectionOrder.SignBeforeEncryptAndEncryptSignature &&
wss_header.Find<SignedXml> () != null)
throw new MessageSecurityException ("The security binding element expects that the message signature is encrypted, while it isn't.");
WrappedKeySecurityToken wk = wss_header.Find<WrappedKeySecurityToken> ();
DerivedKeySecurityToken dk = wss_header.Find<DerivedKeySecurityToken> ();
if (wk != null) {
if (Parameters.RequireDerivedKeys && dk == null)
throw new MessageSecurityException ("DerivedKeyToken is required in this contract, but was not found in the message");
}
else
// FIXME: this is kind of hack for symmetric reply processing.
wk = RequestSecurity.ProtectionToken != null ? RequestSecurity.ProtectionToken.SecurityToken as WrappedKeySecurityToken : null;
SymmetricSecurityKey wkkey = wk != null ? wk.SecurityKeys [0] as SymmetricSecurityKey : null;
wss_header_reader.DecryptSecurity (this, wkkey, RequestSecurity != null ? RequestSecurity.EncryptionKey : null);
// signature confirmation
WSSignedXml sxml = wss_header.Find<WSSignedXml> ();
if (sxml == null)
throw new MessageSecurityException ("The the message signature is expected but not found.");
bool confirmed = false;
SecurityKeyIdentifierClause sigClause = null;
foreach (KeyInfoClause kic in sxml.KeyInfo) {
SecurityTokenReferenceKeyInfo r = kic as SecurityTokenReferenceKeyInfo;
if (r != null)
sigClause = r.Clause;
}
if (sigClause == null)
throw new MessageSecurityException ("SecurityTokenReference was not found in dsig:Signature KeyInfo.");
SecurityToken signToken;
SecurityKey signKey;
signToken = TokenResolver.ResolveToken (sigClause);
signKey = signToken.ResolveKeyIdentifierClause (sigClause);
SymmetricSecurityKey symkey = signKey as SymmetricSecurityKey;
if (symkey != null) {
confirmed = sxml.CheckSignature (new HMACSHA1 (symkey.GetSymmetricKey ()));
if (wk != null)
// FIXME: authenticate token
sec_prop.ProtectionToken = new SecurityTokenSpecification (wk, null);
} else {
AsymmetricAlgorithm alg = ((AsymmetricSecurityKey) signKey).GetAsymmetricAlgorithm (security.DefaultSignatureAlgorithm, false);
confirmed = sxml.CheckSignature (alg);
sec_prop.InitiatorToken = new SecurityTokenSpecification (
signToken,
security.TokenAuthenticator.ValidateToken (signToken));
}
if (!confirmed)
throw new MessageSecurityException ("Message signature is invalid.");
// token authentication
// FIXME: it might not be limited to recipient
if (Direction == MessageDirection.Input)
ProcessSupportingTokens (sxml);
sec_prop.EncryptionKey = ((SymmetricSecurityKey) wk.SecurityKeys [0]).GetSymmetricKey ();
sec_prop.ConfirmedSignatures.Add (Convert.ToBase64String (sxml.SignatureValue));
}
#region supporting token processing
// authenticate and map supporting tokens to proper SupportingTokenSpecification list.
void ProcessSupportingTokens (SignedXml sxml)
{
List<SupportingTokenInfo> tokens = new List<SupportingTokenInfo> ();
// First, categorize those tokens in the Security
// header:
// - Endorsing signing
// - Signed signed
// - SignedEncrypted signed encrypted
// - SignedEndorsing signing signed
foreach (object obj in wss_header.Contents) {
SecurityToken token = obj as SecurityToken;
if (token == null)
continue;
bool signed = false, endorsing = false, encrypted = false;
// signed
foreach (Reference r in sxml.SignedInfo.References)
if (r.Uri.Substring (1) == token.Id) {
signed = true;
break;
}
// FIXME: how to get 'encrypted' state?
// FIXME: endorsing
SecurityTokenAttachmentMode mode =
signed ? encrypted ? SecurityTokenAttachmentMode.SignedEncrypted :
endorsing ? SecurityTokenAttachmentMode.SignedEndorsing :
SecurityTokenAttachmentMode.Signed :
SecurityTokenAttachmentMode.Endorsing;
tokens.Add (new SupportingTokenInfo (token, mode, false));
}
// then,
// 1. validate every mandatory supporting token
// parameters (Endpoint-, Operation-). To do that,
// iterate all tokens in the header against every
// parameter in the mandatory list.
// 2. validate every token that is not validated.
// To do that, iterate all supporting token parameters
// and check if any of them can validate it.
SupportingTokenParameters supp;
string action = GetAction ();
if (action == null)
throw new ArgumentException ("SOAP action could not be retrieved from the message to decrypt.");
ValidateTokensByParameters (security.Element.EndpointSupportingTokenParameters, tokens, false);
if (security.Element.OperationSupportingTokenParameters.TryGetValue (action, out supp))
ValidateTokensByParameters (supp, tokens, false);
ValidateTokensByParameters (security.Element.OptionalEndpointSupportingTokenParameters, tokens, true);
if (security.Element.OptionalOperationSupportingTokenParameters.TryGetValue (action, out supp))
ValidateTokensByParameters (supp, tokens, true);
}
void ValidateTokensByParameters (SupportingTokenParameters supp, List<SupportingTokenInfo> tokens, bool optional)
{
ValidateTokensByParameters (supp.Endorsing, tokens, optional, SecurityTokenAttachmentMode.Endorsing);
ValidateTokensByParameters (supp.Signed, tokens, optional, SecurityTokenAttachmentMode.Signed);
ValidateTokensByParameters (supp.SignedEndorsing, tokens, optional, SecurityTokenAttachmentMode.SignedEndorsing);
ValidateTokensByParameters (supp.SignedEncrypted, tokens, optional, SecurityTokenAttachmentMode.SignedEncrypted);
}
void ValidateTokensByParameters (IEnumerable<SecurityTokenParameters> plist, List<SupportingTokenInfo> tokens, bool optional, SecurityTokenAttachmentMode attachMode)
{
foreach (SecurityTokenParameters p in plist) {
SecurityTokenResolver r;
SecurityTokenAuthenticator a =
security.CreateTokenAuthenticator (p, out r);
SupportingTokenSpecification spec = ValidateTokensByParameters (a, r, tokens);
if (spec == null) {
if (optional)
continue;
else
throw new MessageSecurityException (String.Format ("No security token could be validated for authenticator '{0}' which is indicated by the '{1}' supporting token parameters", a, attachMode));
} else {
// For endorsing tokens, verify corresponding signatures.
switch (attachMode) {
case SecurityTokenAttachmentMode.Endorsing:
case SecurityTokenAttachmentMode.SignedEndorsing:
WSSignedXml esxml = GetSignatureForToken (spec.SecurityToken);
if (esxml == null)
throw new MessageSecurityException (String.Format ("The '{1}' token '{0}' is expected to endorse the primary signature but no corresponding signature is found.", spec.SecurityToken, attachMode));
bool confirmed;
SecurityAlgorithmSuite suite = security.Element.DefaultAlgorithmSuite;
foreach (SecurityTokenReferenceKeyInfo kic in esxml.KeyInfo) {
SecurityKey signKey = spec.SecurityToken.ResolveKeyIdentifierClause (kic.Clause);
SymmetricSecurityKey symkey = signKey as SymmetricSecurityKey;
if (symkey != null) {
confirmed = esxml.CheckSignature (symkey.GetKeyedHashAlgorithm (suite.DefaultSymmetricSignatureAlgorithm));
} else {
AsymmetricAlgorithm alg = ((AsymmetricSecurityKey) signKey).GetAsymmetricAlgorithm (suite.DefaultAsymmetricSignatureAlgorithm, false);
confirmed = esxml.CheckSignature (alg);
}
if (!confirmed)
throw new MessageSecurityException (String.Format ("Signature for '{1}' token '{0}' is invalid.", spec.SecurityToken, attachMode));
break;
}
sec_prop.ConfirmedSignatures.Insert (0, Convert.ToBase64String (esxml.SignatureValue));
break;
}
}
sec_prop.IncomingSupportingTokens.Add (spec);
}
}
WSSignedXml GetSignatureForToken (SecurityToken token)
{
int count = 0;
foreach (WSSignedXml sxml in wss_header.FindAll<WSSignedXml> ()) {
if (count++ == 0)
continue; // primary signature
foreach (SecurityTokenReferenceKeyInfo r in sxml.KeyInfo)
if (token.MatchesKeyIdentifierClause (r.Clause))
return sxml;
}
return null;
}
SupportingTokenSpecification ValidateTokensByParameters (SecurityTokenAuthenticator a, SecurityTokenResolver r, List<SupportingTokenInfo> tokens)
{
foreach (SupportingTokenInfo info in tokens)
if (a.CanValidateToken (info.Token))
return new SupportingTokenSpecification (
info.Token,
a.ValidateToken (info.Token),
info.Mode);
return null;
}
#endregion
string GetAction ()
{
string ret = source_message.Headers.Action;
if (ret == null) {
HttpRequestMessageProperty reqprop =
source_message.Properties[HttpRequestMessageProperty.Name] as HttpRequestMessageProperty;
if (reqprop != null)
ret = reqprop.Headers ["Action"];
}
return ret;
}
}
}
|