6 Replies Latest reply on Mar 3, 2003 3:49 PM by luke_t

    isUserInRole not working in 3.0.4 ?

    andyjeff

      Hi,

      I have a servlet-based app that uses Form-based authentication using the DatabaseServer login module. This is setup as ...

      <application-policy name="MyDBRealm">

      <login-module code="org.jboss.security.auth.spi.DatabaseServerLoginModule" flag="required">
      <module-option name="dsJndiName">java:/DefaultDS</module-option>
      <module-option name="principalsQuery">SELECT Password FROM WebShopUser WHERE Username=?</module-option>
      <module-option name="rolesQuery">SELECT Role,'Roles' FROM WebShopUserRole WHERE Username=?</module-option>
      </login-module>

      </application-policy>

      I have beans for User, and UserRole, and have a user with the role 'SOME_ROLE'. I have tagged a servlet path as being under this role, as follows ...
      <security-constraint>
      <web-resource-collection>
      <web-resource-name>My Protected Page</web-resource-name>
      <url-pattern>/myProtectedPage</url-pattern>
      </web-resource-collection>

      <auth-constraint>
      <role-name>SOME_ROLE</role-name>
      </auth-constraint>
      </security-constraint>

      Whenever I hit the URL for this page, JBoss goes to the login page, which i enter the login details and it authenticates the user, and shows me the page, yet if i do a

      request.isUserInRole("SOME_ROLE");

      in the method, it returns 'false'.

      Anything i'm missing here ????

      TIA

        • 1. Re: isUserInRole not working in 3.0.4 ?
          turnip

          I'm having the same problem with 3.0.3 using Jetty. In debug mode it even says that the user is in the role and still returns false. In my case I have a role ADMIN, and request.isUserInRole("ADMIN") is returning false although the log indicates it should be true(see log below).

          Have you gotten anywhere with this?

          Here's the log:
          14:31:38,984 DEBUG [JBossUserRealm#StoryDB]authenticated: testUser
          14:31:38,984 DEBUG [JBossUserRealm#StoryDB] setting JAAS subjectAttributeName(j_subject) : Subject:
          Principal: testUser
          Principal: Roles
          14:31:38,984 DEBUG [JBossUserRealm#StoryDB]JBossUserPrincipal: testUser is in Role: ADMIN

          • 2. Re: isUserInRole not working in 3.0.4 ?
            turnip

            Hey,

            I've made some progress with my problem and there is a chance this might help you as well. In my case the result of isUserInRole is tied to my directory context. request.isUserInRole and request.getUserPrinciple only returns valid results under the context in which the login was made.
            So if I require a user to login when he hits a page under /myApp/admin/, only pages under /myApp/admin/ returned a non-null userPrinciple and valid isUserInRole. Even after I login to an admin page when I return to a page a directory up like /myApp/test.jsp, getUserPrinciple returns null(and of course isUserInRole returns false).

            I'm not sure that this is the required behavior by spec. Requiring people to login at "/" for the web app fixes my problem but causes others. I would have expected the UserPrinciple to be valid for the entire WAR context.
            I'm not sure that this will help you, but I thought I'd pass it along.




            • 3. Re: isUserInRole not working in 3.0.4 ?
              andyjeff

              Thx for the input. I was thinking for a while that I was the only one with this problem ;-)

              I've since tried with DEBUG on and get the same thing as you mentioned, with it printing out that the user has the required role, yet isUserInRole() returning false.

              It is interesting that the authentication seems to go under the context path. I cannot believe that this is part of the J2EE spec though. If a user is authenticated for a web-app they should have the security credentials for the whole of that app, from the point they authenticate.


              In my app, I have an unprotected page (context path /shop), in which I want to add a hyperlink to a protected page IF the user has the given role. If the user is not logged in, I would just not display this hyperlink, and I wouldnt expect J2EE to authenticate the user at this point. If the user logs in under a context path of /login and then they go to the unprotected page, isUserInRole() and getUserPrincipal() return that the user is not authenticated and doesnt have any roles ! even though they have been authenticated.

              Can somebody from the JBoss dev team please comment on what the J2EE spec says on this point ?

              Maybe i'll wait for the next release :-(

              • 4. Re: isUserInRole not working in 3.0.4 ?

                > It is interesting that the authentication seems to go
                > under the context path.

                Hi,

                I have come across this sort of thing in the past and I believe this is the expected behaviour - if you aren't under one of the security constraints then you won't have access to the security information. I agree it seems a bit counter-intuitive.

                > I cannot believe that this is part of the J2EE spec
                > though. If a user is authenticated for a
                > web-app they should have the security credentials for
                > the whole of that app, from the point they authenticate.

                I don't think the servlet spec is very clear on this issue (though new releases may try to be more specific). So the bottom line is that you can't depend on it.

                Luke.

                • 5. Re: isUserInRole not working in 3.0.4 ?
                  mwk88

                  I ran into the same issue, and finally wrote a work around to mirror the authorization state in the session so it could be retrieved on unrestricted pages. If you’re interested, you can get the code from http://www.huchley.com/nerds/jboss.jsp#isUserInRole

                  I hope this changes in 4.0, it's a headache if you use role based security on a site with any unrestricted pages.

                  Mike

                  • 6. Re: isUserInRole not working in 3.0.4 ?

                    Just as an update, the servlet 2.4 spec explicitly states:

                    (SRV.12.10 Login and Logout)

                    Being logged in to a web application corresponds precisely to there being a valid non-null value in getUserPrincipal method, discussed in SRV.12.3

                    Which doesn't happen at the moment. So I would hope that this behaviour will be changed at some point (if it hasn't already).

                    Luke.