web-dev-qa-db-ja.com

WildflyのSpring Security:フィルターチェーンの実行中のエラー

Spring Security SAML ExtensionSpringを統合しようとしていますブート

問題については、完全なサンプルアプリケーションを開発しました。そのソースコードはGitHubで入手できます。

これをSpring Bootアプリケーションとして実行することにより(SDKビルトインアプリケーションサーバーに対して実行)、WebAppは正常に動作します。

残念ながら、同じAuthNプロセスはUndertow/WildFlyではまったく機能しません。

ログによると、IdPは実際にAuthNプロセスを実行します。カスタムUserDetails実装の指示は正しく実行されます。実行フローにもかかわらず、Springは現在のユーザーの特権を設定および保持しません。

@Component
public class SAMLUserDetailsServiceImpl implements SAMLUserDetailsService {

    // Logger
    private static final Logger LOG = LoggerFactory.getLogger(SAMLUserDetailsServiceImpl.class);

    @Override
    public Object loadUserBySAML(SAMLCredential credential)
            throws UsernameNotFoundException, SSOUserAccountNotExistsException {
        String userID = credential.getNameID().getValue();
        if (userID.compareTo("[email protected]") != 0) {     // We're simulating the data access.
            LOG.warn("SSO User Account not found into the system");
            throw new SSOUserAccountNotExistsException("SSO User Account not found into the system", userID);
        }
        LOG.info(userID + " is logged in");
        List<GrantedAuthority> authorities = new ArrayList<GrantedAuthority>();
        GrantedAuthority authority = new SimpleGrantedAuthority("ROLE_USER");
        authorities.add(authority);
        ExtUser userDetails = new ExtUser(userID, "password", true, true, true,
                true, authorities, "John", "Doe");
        return userDetails;
    }
}

デバッグ中、問題がFilterChainProxyクラスに依存していることがわかりました。実行時、ServletRequestの属性FILTER_APPLIEDにはnull値があるため、SpringはSecurityContextHolderをクリアします。

private final static String FILTER_APPLIED = FilterChainProxy.class.getName().concat(".APPLIED");

public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain)
        throws IOException, ServletException {
    boolean clearContext = request.getAttribute(FILTER_APPLIED) == null;
    if (clearContext) {
        try {
            request.setAttribute(FILTER_APPLIED, Boolean.TRUE);
            doFilterInternal(request, response, chain);
        } finally {
            SecurityContextHolder.clearContext();
            request.removeAttribute(FILTER_APPLIED);
        }
    } else {
        doFilterInternal(request, response, chain);
    }
}

VMware vFabric tc SeverおよびTomcatでは、すべて正常に動作します。この問題を解決するためのアイデアはありますか?

192
vdenotaris

問題の調査認証要求にCookieとリファラーの混乱がいくつかあることに気付きました。

現在、Webアプリケーションコンテキストをルートコンテキストに変更すると、wildfly認証が機能します。

 <server name="default-server" default-Host="webapp">
     <http-listener name="default" socket-binding="http"/>
     <Host name="default-Host" alias="localhost" default-web-module="sso.war"/>
 </server>

Wildflyを再起動してcookieをクリアすると、すべてが正常に機能するはずです

7
nesteant