9

Java 安全是我过去几周的主要话题,我归档了以下内容:

  • 自定义阀门验证器 ( extends AuthenticatorBase)
  • jBoss 的自定义登录模块 ( extends UsernamePasswordLoginModule)
  • 安全端点 (JAX-RS)

我的主要问题是,我的端点仅适用于注释@DeclareRoles,如果我不使用它,我将无法通过身份验证。详细方法AuthenticatorBase.invoke(来自 org.apache.catalina.authenticator)调用该方法RealmBase.hasResourcePermission,并在那里检查角色。

由于我不使用任何预定义的角色,因此检查将失败。

我的问题:有没有办法使用这样的代码:

@Path("/secure")
@Stateless
public class SecuredRestEndpoint {  

    @Resource
    SessionContext ctx;

    @GET
    public Response performLogging() {

        // Receive user information
        Principal callerPrincipal = ctx.getCallerPrincipal();
        String userId = callerPrincipal.getName();

        if (ctx.isCallerInRole("ADMIN")) {
            // return 200 if ok
            return Response.status(Status.OK).entity(userId).build();
        }
    ...
    }
}

一些额外的背景:需要使用反向代理进行身份验证,只是用户名被转发(X-FORWARD-USER)。这就是为什么我使用自己的 Authenticator 类和自定义登录模块(我没有任何密码凭据)。但我认为应用服务器本身的标准身份验证方法也会出现问题

4

2 回答 2

7

由于您的代码是静态的(意味着您有一组可以保护的静态资源),除了增加访问粒度之外,我不理解您对添加安全角色的要求。我可以在模块化环境中看到此要求,其中代码不是静态的,在这种情况下,您需要支持稍后部署声明的其他安全角色。

也就是说,我必须实现类似的东西,一个安全系统,它支持:

  • 添加(声明)/删除角色而不重新部署;
  • 将用户与这些角色相关联。

我将描述我所做的高层次抽象,并希望它会给你一些有用的想法。

首先,实现一个@EJB类似这样的东西:

@Singleton
@LocalBean
public class MySecurityDataManager {

    public void declareRole(String roleName) {
        ...
    }

    public void removeRole(String roleName) {
        ...
    }

    /**
     * Here, I do not know what your incoming user data looks like such as:
     * do they have groups, attributes? In my case I could determine user's groups
     * and then assign them to roles based on those. You may have some sort of
     * other attribute or just plain username to security role association.
     */
    public void associate(Object userAttribute, String roleName) {
        ...
    }

    public void disassociate(Object userAttribute, String roleName) {
        ...
    }

    /**
     * Here basically you inspect whatever persistence method you chose and examine
     * your existing associations to build a set of assigned security roles for a
     * user based on the given attribute(s).
     */
    public Set<String> determineSecurityRoles(Object userAttribute) {
        ...
    }
}

然后你实现一个自定义的javax.security.auth.spi.LoginModule. 我建议从头开始实现它,除非你知道容器提供的抽象实现对你有用,它不适合我。另外,如果您不熟悉以下内容,我建议您熟悉以下内容,以更好地了解我要做什么:


public class MyLoginModule implements LoginModule {

    private MySecurityDataManager srm;

    @Override
    public void initialize(Subject subject, CallbackHandler callbackHandler,
            Map<String, ?> sharedState, Map<String, ?> options) {
        // make sure to save subject, callbackHandler, etc.
        try {
            InitialContext ctx = new InitialContext();
            this.srm = (MySecurityDataManager) ctx.lookup("java:global/${your specific module names go here}/MySecurityDataManager");
        } catch (NamingException e) {
            // error logic
        }
    }

    @Override
    public boolean login() throws LoginException {
        // authenticate your user, see links above
    }

    @Override
    public boolean commit() throws LoginException {
        // here is where user roles get assigned to the subject
        Object userAttribute = yourLogicMethod();
        Set<String> roles = srm.determineSecurityRoles(userAttribute);
        // implement this, it's easy, just make sure to include proper equals() and hashCode(), or just use the Jboss provided implementation.
        Group rolesGroup = new SimpleGroup("Roles", roles);
        // assuming you saved the subject
        this.subject.getPrincipals().add(rolesGroup);
    }

    @Override
    public boolean abort() throws LoginException {
        // see links above
    }

    @Override
    public boolean logout() throws LoginException {
        // see links above
    }

}

为了允许动态配置(即声明角色、关联用户),构建一个使用相同 @EJB 的 UIMySecurityDataManager来 CRUD 登录模块将用于确定安全角色的安全设置。

现在,您可以按照您想要的方式打包这些,只需确保MyLoginModule可以查找MySecurityDataManager它们并将它们部署到容器中。我在 JBoss 上工作,你提到了 JBoss,所以这也应该对你有用。更健壮的实现将在 LoginModule 的配置中包含查找字符串,然后您可以在运行时从initialize()方法中的选项映射中读取该字符串。这是 JBoss 的示例配置:

<security-domain name="mydomain" cache-type="default">
    <authentication>
        <login-module flag="required"
                      code="my.package.MyLoginModule"
                      module="deployment.${your deployment specific info goes here}">
            <module-option name="my.package.MySecurityDataManager"
                           value="java:global/${your deployment specific info goes here}/MySecurityDataManager"/>
        </login-module>
    </authentication>
</security-domain>

此时,您可以使用此安全域mydomain来管理容器中任何其他部署的安全性。

这里有几个使用场景:

  1. 部署一个新的 .war 并将其分配给mydomain安全域。.war 在其代码中带有预定义的安全注释。您的安全领域最初没有它们,因此没有用户可以登录。但是在部署之后,由于安全角色有据可查,您打开mydomain您编写的配置界面并声明这些角色,然后将用户分配给它们。现在他们可以登录了。
  2. 经过几个月的部署,您不再希望用户能够访问特定的战争部分。从您的.war 中删除与该部分相关的安全角色mydomain,任何人都将无法使用它。

最好的部分,尤其是关于#2 的部分是没有重新部署。此外,无需编辑 XML 来覆盖使用注释声明的默认安全设置(假设您的界面比这更好)。

干杯! 我很乐意提供更多细节,但就目前而言,这至少应该告诉你是否需要它们。

于 2012-11-01T04:04:54.173 回答
2

如果我说得对,有两个问题。

  1. 你不想@DeclareRoles出现在你的代码中。如果您不介意使用 web.xml,请查看:http ://docs.oracle.com/cd/E19159-01/819-3669/bncbg/index.html

  2. 您想单独使用用户名访问您的休息资源,因为休息资源没有安全威胁,但同时休息资源需要知道谁在调用。

    1. 有不止一种方法可以做到这一点。为了识别用户,您只需要在您的 http 请求中提供用户的 id,JAAS安全性是多余的。例如,通过URI:/user/bob或通过 URI 参数提供用户 ID,例如:/user?id=bob

    2. 如果安全性是强制性的(如果我没弄错的话,你使用的是 javaee 的标准安全组件),你需要处理角色,因为java6's 的规范中写入了基于角色的身份验证/授权。

于 2012-10-29T16:05:03.253 回答