我有一个在某些情况下使用 ADFS 身份验证的项目。配置是从数据库中读取的,并且 URL 因客户而异,因此有很多配置选项我无法在我的Web.config
.
问题是我收到以下错误:
ID1032:当 AudienceUriMode 设置为“Always”或“BearerKeyOnly”时,必须在 SamlSecurityTokenRequirement 中指定至少一个“audienceUri”
但我并不总是得到它,而且我无法重现它。这很烦人,因为只要我无法重现它,我就无法真正调试它。而且我不确定我做的一切是否正确。也许一些 ADFS 专家可以看看它。
(当然,我的依赖方与其相应的 ADFS 服务器之间的信任已经建立。)
这是我的代码(只是其中有趣的部分),请询问是否有任何遗漏或不清楚。
我的一些片段Web.config
:
<system.webServer>
<modules>
<add name="WSFederationAuthenticationModule" type="Microsoft.IdentityModel.Web.WSFederationAuthenticationModule, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler" />
<add name="SessionAuthenticationModule" type="Microsoft.IdentityModel.Web.SessionAuthenticationModule, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler" />
<add name="ClaimsPrincipalHttpModule" type="Microsoft.IdentityModel.Web.ClaimsPrincipalHttpModule, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" preCondition="managedHandler" />
<!-- ... -->
</modules>
<!-- ... -->
</system.webServer>
<microsoft.identityModel>
<service>
<securityTokenHandlers>
<remove type="Microsoft.IdentityModel.Tokens.SessionSecurityTokenHandler" />
<add type="MyProject.MachineKeySessionSecurityTokenHandler" />
</securityTokenHandlers>
<federatedAuthentication>
<wsFederation passiveRedirectEnabled="false"
issuer="https://fail/IssuerEndpoint"
realm="https://fail/FederationResult"
homeRealm="https://fail"
requireHttps="true" />
</federatedAuthentication>
</service>
</microsoft.identityModel>
这些失败值将被每个请求覆盖(请参阅Login()
下面的方法),但我必须在 my 中指定一些Web.config
内容,所以我选择至少指定一个有效的 URI。必须替换默认值SessionSecurityTokenHandler
,因为我的服务在多台机器上运行 DNS 循环(共享相同的机器密钥)。
然后我有一个我称之为AdfsTrustFilter
实现的类IAuthorizationFilter
。我知道这有点开销,但是由于项目结构,这个过滤器被用作每个请求的全局过滤器(顺序是整个项目中的最小值)。在OnAuthorization
方法中,我完成配置如下:
public sealed class AdfsTrustFilter : IAuthorizationFilter
public void OnAuthorization(AuthorizationContext filterContext)
// ...
var fam = FederatedAuthentication.WSFederationAuthenticationModule;
fam.ServiceConfiguration = new ServiceConfiguration
{
AudienceRestriction = new AudienceRestriction(AudienceUriMode.Always),
CertificateValidationMode = X509CertificateValidationMode.PeerOrChainTrust,
// MyIssuerNameRegistry checks whether a fingerprint is known and some other stuff
IssuerNameRegistry = new MyIssuerNameRegistry()
};
// config.OwnPath contains something like "https://my.app.com/AppRoot/"
fam.ServiceConfiguration.AudienceRestriction.AllowedAudienceUris.Add(new Uri(config.OwnPath));
}
}
这是启动身份验证的代码:
public ActionResult Login()
{
// ...
// again something like "https://my.app.com/AppRoot/"
string baseUrl = Config.OwnPath.TrimEnd('/') + "/";
// adfs endpoint for this customer: i.e. "https://identity.provider.net/adfs/ls/"
string endpoint = Config.AdfsConfig.IdentityProvider.Endpoint;
// the code behind FederationResult is shown below
var signIn = new SignInRequestMessage(new Uri(endpoint), baseUrl + "/Adfs/FederationResult")
{
Context = baseUrl
};
var url = signIn.WriteQueryString();
return Redirect(url);
}
最后是FederationResult
回调:
public ActionResult FederationResult()
{
WSFederationAuthenticationModule fam = FederatedAuthentication.WSFederationAuthenticationModule;
HttpRequest request = System.Web.HttpContext.Current.Request;
if (fam.CanReadSignInResponse(request, true))
{
var id = (IClaimsIdentity) User.Identity;
// do something
}
// ...
}
PS:ADFS 服务器最近从 2008 R2 升级到 2012,但这并没有改变任何东西。ADFS 版本始终为 2.0。