子ページ
  • IdPClusteringStateless

比較バージョン

キー

  • この行は追加されました。
  • この行は削除されました。
  • 書式設定が変更されました。

...

  • web.xmlにカスタムサーブレットをインストールして実行するサブモジュールを宣言します。
    書式設定済み
    # vi /usr/java/tomcat/webapps/idp/WEB-INF/web.xml
    

    web.xmlに下記を追加します。

    <context-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>file:///opt/shibboleth-idp/conf/internal.xml;
                     file:///opt/shibboleth-idp/conf/service.xml;
                     file:///opt/shibboleth-idp/conf/osuext.xml;</param-value>
    </context-param>


    web.xmlに下記を追加します。
    コード ブロック
    xml
    xml
    <!-- Servlet for doing stateless cookie-based authentication -->
    <servlet>
        <servlet-name>StatelessAuthHandler</servlet-name>
        <servlet-class>edu.osu.ocio.shibboleth.idp.authn.provider.StatelessLoginServlet</servlet-class>
        <load-on-startup>5</load-on-startup>
        <init-param>
            <param-name>dataSealerRef</param-name>
            <param-value>shibboleth.SSODataSealer</param-value>
        </init-param>
        <init-param>
            <param-name>submodules</param-name>
            <param-value>shibboleth.LDAPLoginSubmodule shibboleth.VelocityFormLoginSubmodule</param-value>
        </init-param>
        <init-param>
            <param-name>errorContext</param-name>
            <param-value>/</param-value>
        </init-param>
        <init-param>
            <param-name>errorPage</param-name>
            <param-value>/stale.html</param-value>
        </init-param>
    </servlet>
    
    <servlet-mapping>
        <servlet-name>StatelessAuthHandler</servlet-name>
        <url-pattern>/Authn/Stateless</url-pattern>
    </servlet-mapping>
    


  • 設定ファイル(osuext.xml)を新規に追加します。
    書式設定済み
    # vi /opt/shibboleth-idp/conf/osuext.xml
    

    以下の内容を追加します。

    <?xml version="1.0" encoding="UTF-8"?>
    <beans xmlns="http://www.springframework.org/schema/beans"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:util="http://www.springframework.org/schema/util"
            xsi:schemaLocation="http://www.springframework.org/schema/beans
           http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
            http://www.springframework.org/schema/util
            http://www.springframework.org/schema/util/spring-util-2.0.xsd" >
        <bean id="shibboleth.SSODataSealer"
                class="edu.internet2.middleware.shibboleth.common.util.DataSealer"
                depends-on="shibboleth.LogbackLogging" init-method="init">
            <!-- 2.3章で作成したkeyStore を設定します。 -->
            <property name="keystorePath" value="/opt/shibboleth-idp/credentials/secret.jks" />
            <property name="keystorePassword" value="secret" />
            <property name="cipherKeyAlias" value="secret" />
            <property name="cipherKeyPassword" value="secret" />
        </bean>
        <bean id="shibboleth.SSOVelocityEngine"
                class="org.springframework.ui.velocity.VelocityEngineFactoryBean"
                depends-on="shibboleth.LogbackLogging">
            <property name="overrideLogging" value="true"/>
            <property name="velocityProperties">
                <props>
                    <prop key="runtime.log.logsystem.class">
                        edu.internet2.middleware.shibboleth.common.util.Slf4JLogChute
                    </prop>
                    <prop key="resource.loader">file</prop>
                    <prop key="file.resource.loader.class">
                        org.apache.velocity.runtime.resource.loader.FileResourceLoader
                    </prop>
                    <prop key="file.resource.loader.path">/opt/shibboleth-idp/conf</prop>
                    <prop key="file.resource.loader.cache">false</prop>
                </props>
            </property>
        </bean>
        <bean id="shibboleth.LDAPLoginSubmodule"
                class="edu.osu.ocio.shibboleth.idp.authn.provider.JAASLoginSubmodule">
            <constructor-arg value="file:///opt/shibboleth-idp/conf/login.config "/>
            <property name="jaasConfigName"
                       value="ShibUserPassAuth" /> ←login.configにかかれているもと同じにします。
            <property name="authnMethods">
                <set>
                    <value>urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport</value>
                </set>
            </property>
            <property name="unknownUsernameErrors">
                <list>
                    <value>Cannot authenticate dn, invalid dn</value>
                </list>
            </property>
            <property name="invalidPasswordErrors">
                <list>
                    <value>AcceptSecurityContext error, data 52e</value>
    <ac:structured-macro ac:name="unmigrated-wiki-markup" ac:schema-version="1" ac:macro-id="9304d43bcbafce84-a7ecc1eb-4f8f4bb7-a4f38689-b01becc38519a27343d81b25"><ac:plain-text-body><![CDATA[                <value>[LDAP: error code 49 - Invalid Credentials]</value>
    ]]></ac:plain-text-body></ac:structured-macro>
                </list>
            </property>
        </bean>

        <bean id="shibboleth.VelocityFormLoginSubmodule"
                class="edu.osu.ocio.shibboleth.idp.authn.provider.VelocityFormLoginSubmodule"
                depends-on="shibboleth.LogbackLogging">
            <property name="templateName" value="login.vt" />
            <property name="velocityEngine" ref="shibboleth.SSOVelocityEngine" />
        </bean>

        <bean id="shibboleth.OSUServletAttributeExporter"
                class="edu.internet2.middleware.shibboleth.common.config.service.ServletContextAttributeExporter"
                depends-on="shibboleth.SSODataSealer shibboleth.LogbackLogging shibboleth.LDAPLoginSubmodule shibboleth.VelocityFormLoginSubmodule" ←半角の空白スペースで区切ります
                init-method="initialize" >
            <constructor-arg>
                <list>
                    <value>shibboleth.SSODataSealer</value>
                    <value>shibboleth.LDAPLoginSubmodule</value>
                    <value>shibboleth.VelocityFormLoginSubmodule</value>
                </list>
            </constructor-arg>
        </bean>

    </beans>



  • handler.xmlを変更します。
    書式設定済み
    # vi /opt/shibboleth-idp/conf/handler.xml
    

    3行目付近を編集します。

    <ph:ProfileHandlerGroup
            xmlns:ph="urn:mace:shibboleth:2.0:idp:profile-handler"
            xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
            xmlns:osu="urn:mace:osu.edu:shibboleth:idp-ext"
            xsi:schemaLocation="urn:mace:shibboleth:2.0:idp:profile-handler
                classpath:/schema/shibboleth-2.0-idp-profile-handler.xsd
                urn:mace:osu.edu:shibboleth:idp-ext classpath:/schema/idp-osu-ext.xsd">


    以下を追加します。

    <!-- 追加する部分 ここから –>
        <ph:LoginHandler xsi:type="osu:Stateless" authenticationServletURL="/Authn/Stateless">
            <ph:AuthenticationMethod>
                urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport
            </ph:AuthenticationMethod>
        </ph:LoginHandler>
    <!-- 追加する部分 ここまで –>
    </ph:ProfileHandlerGroup>


    以下をコメントアウトします。

    <!--
    <ph:LoginHandler xsi:type="ph:UsernamePassword"
            jaasConfigurationLocation="file:///opt/shibboleth-idp/conf/login.config">
        <ph:AuthenticationMethod>urn:oasis:names:tc:SAML:2.0:ac:classes:PasswordProtectedTransport
        </ph:AuthenticationMethod>
    </ph:LoginHandler>
    -->



  • attribute-resolver.xmlを変更します。
    書式設定済み
    # vi /opt/shibboleth-idp/conf/attribute-resolver.xml
    

    <resolver:AttributeDefinition>タグの並びに以下を追加します。
    コード ブロック
    xml
    xml
    <resolver:AttributeDefinition id="cryptoTransientId" xsi:type="ad:CryptoTransientId"
                                  xmlns:ad="urn:mace:shibboleth:2.0:resolver:ad"
                                  dataSealerRef="shibboleth.SSODataSealer"
                                  lifetime="PT3M">
    
        <resolver:AttributeEncoder xsi:type="encoder:SAML1StringNameIdentifier"
                                   xmlns:encoder="urn:mace:shibboleth:2.0:attribute:encoder"
                                   nameFormat="urn:mace:shibboleth:1.0:nameIdentifier"/>
    
        <resolver:AttributeEncoder xsi:type="encoder:SAML2StringNameID"
                                   xmlns:encoder="urn:mace:shibboleth:2.0:attribute:encoder"
                                   nameFormat="urn:oasis:names:tc:SAML:2.0:nameid-format:transient"/>
    </resolver:AttributeDefinition>
    

    <resolver:PrincipalConnector>タグの並びに以下を追加します。
    コード ブロック
    xml
    xml
    <resolver:PrincipalConnector id="shibCryptoTransient" xsi:type="pc:CryptoTransient"
                                 xmlns:pc="urn:mace:shibboleth:2.0:resolver:pc"
                                 dataSealerRef="shibboleth.SSODataSealer"
                                 nameIDFormat="urn:mace:shibboleth:1.0:nameIdentifier"/>
    
    <resolver:PrincipalConnector id="saml2CryptoTransient" xsi:type="pc:CryptoTransient"
                                 xmlns:pc="urn:mace:shibboleth:2.0:resolver:pc"
                                 dataSealerRef="shibboleth.SSODataSealer"
                                 nameIDFormat="urn:oasis:names:tc:SAML:2.0:nameid-format:transient"/>
    

    以下の resolver:PrincipalConnector はコメントアウトします。

    <!--
    <resolver:PrincipalConnector xsi:type="pc:Transient" id="shibTransient"
            nameIDFormat="urn:mace:shibboleth:1.0:nameIdentifier"/>
    <resolver:PrincipalConnector xsi:type="pc:Transient" id="saml1Unspec"
            nameIDFormat="urn:oasis:names:tc:SAML:1.1:nameid-format:unspecified"/>
    <resolver:PrincipalConnector xsi:type="pc:Transient" id="saml2Transient"
            nameIDFormat="urn:oasis:names:tc:SAML:2.0:nameid-format:transient"/>
    -->


  • attribute-filter.xmlを変更します。
    書式設定済み
    # vi /opt/shibboleth-idp/conf/attribute-filter.xml
    

    <afp:AttributeRule>タグの並びに以下を追加します。また、attributeID="transientId" のタグをコメントアウトします。

    <!--
    <afp:AttributeRule attributeID="transientId">
        <afp:PermitValueRule xsi:type="basic:ANY"/>
    </afp:AttributeRule>
    -->
    <!-- 追加する部分 ここから –>
    <afp:AttributeRule attributeID="cryptoTransientId">
        <afp:PermitValueRule xsi:type="basic:ANY"/>
    </afp:AttributeRule>
    <!-- 追加する部分 ここまで –>


  • ログインファイル(login.vt)を新規に追加します。
    書式設定済み
    # vi /opt/shibboleth-idp/conf/login.vt
    

    以下の内容を追加します。
    コード ブロック
    html
    html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
            "http://www.w3.org/TR/REC-html401/loose.dtd">
    <html lang="ja">
    <head>
        <META http-equiv="Content-Type" content="text/html;charset=UTF-8">
    </head>
    <body>
    
    <!-- excerpt of the interesting bits -->
    
    <div id="loginForm">
    
    #if ($authnInfo.isAccountLocked())
        <blockquote style="font-weight:bold; text-align:left">
        <p style="color:#cc0000">Login failed. Your Ohio State Username account is locked.</p>
        </blockquote>
    #elseif ($authnInfo.isExpiredPassword())
        <blockquote style="font-weight:bold; text-align:left">
        <p style="color:#cc0000">Login failed. The password associated with your Ohio State Username account has expired.</p>
        </blockquote>
    #elseif ($authnInfo.isInvalidPassword())
        <blockquote style="font-weight:bold; text-align:left">
        <p style="color:#cc0000">Login failed. The password you entered is incorrect.</p>
        </blockquote>
    #elseif ($authnInfo.isUnknownUsername())
        <blockquote style="font-weight:bold; text-align:left">
        <p style="color:#cc0000">Login failed. The username you entered cannot be identified.</p>
        </blockquote>
    #elseif ($authnInfo.getLoginException())
        <blockquote style="font-weight:bold; text-align:left">
        <p style="color:#cc0000">An error occurred during login: $encoder.encodeForHTML($authnInfo.getLoginException().getMessage())</p>
        </blockquote>
    #elseif ($authnInfo.getAuthnException())
        <blockquote style="font-weight:bold; text-align:left">
        <p style="color:#cc0000">An error occurred during login: $encoder.encodeForHTML($authnInfo.getAuthnException().getMessage())</p>
        </blockquote>
    #end
        <form name="login" method="POST" action="$servletPath">
            <fieldset>
                <legend>Identify Yourself</legend>
                <div>
                    <label for="userid">
                        Enter your Username
                    </label>
                    <br/>
                    <input type="text" class="text" id="userid" name="j_username" size="50"/>
                </div>
            </fieldset>
            <fieldset>
                <legend>Password <span class="smallOr">or</span> Passcode</legend>
                <div>
                    <label for="password">
                        Enter your account password.<br/>
                    </label>
                    <br/>
                    <input type="password" class="text" id="password"  name="j_password" size="50"/>
                </div>
            </fieldset>
            <input type="hidden" name="j_continue" value="1"/>
            <input id="submit" class="submit" type="submit" value="Login"/>
        </form>
    
    </div>
    
    </body>
    </html>
    


...