Issue Details (XML | Word | Printable)

Key: BEEHIVE-635
Type: Bug Bug
Status: Closed Closed
Resolution: Fixed
Priority: Major Major
Assignee: Julie Zhuo
Reporter: Abdessattar Sassi
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
Beehive

Tomcat PageflowValve does not check for security-constraints defined in web.xml

Created: 10/May/05 07:51 PM   Updated: 02/Feb/06 03:16 AM
Return to search
Component/s: NetUI
Affects Version/s: V1Alpha, V1Beta, v1m1
Fix Version/s: 1.0.1

Time Tracking:
Not Specified

File Attachments:
  Size
Text File Licensed for inclusion in ASF works patch.txt 2005-08-03 04:44 PM Abdessattar Sassi 11 kB
Environment: Using beehive latest from SVN and Tomcat 5.5.7

Resolution Date: 09/Dec/05 02:15 AM


 Description  « Hide
The Tomcat implementation of the Pipeline for a Context is such that only one Valve which is also an Authenticator valve is added to the Pipeline. The standard Tomcat Authenticator valves (e.g. BasicAuthenticator) check for and honor all the security constraints specified in the webapp web.xml descriptor.

The PageflowValve implementation part of tomcat-server under netui is an Authenticaor valve as it extends BasicAuthenticator, which means that it is mutually exclusive with the regular Tomcat authenticator valves (only one can be in the pipeline). It does not however keep the features that were part of the AuthenticatorBase and the BasicAuthentiocator invoke() method implementation. Such issue results for example in the user-data-constraint elements being completely ignored, and therefore pages who are supposed to be served only with SSL are always served without SSL.

Following is an example of the code from the regular Tomcat authenticators that is missing from beehive adapter (please note that the code is from Tomcat 5.5.7 with which by the way beehive does not compile, but should give you a good idea of the missing features...):

        // Enforce any user data constraint for this security constraint
        if (log.isDebugEnabled()) {
            log.debug(" Calling hasUserDataPermission()");
        }
        Realm realm = this.context.getRealm();
        // Is this request URI subject to a security constraint?
        SecurityConstraint [] constraints
            = realm.findSecurityConstraints(request, this.context);
        if (!realm.hasUserDataPermission(request, response,
                                         constraints)) {
            if (log.isDebugEnabled()) {
                log.debug(" Failed hasUserDataPermission() test");
            }
            /*
             * ASSERT: Authenticator already set the appropriate
             * HTTP status code, so we do not have to do anything special
             */
            return;
        }


 All   Comments   Work Log   Change History   Subversion Commits      Sort Order: Ascending order - Click to sort in descending order
Eddie O'Neil added a comment - 10/May/05 09:40 PM
Same thing in 635 as with the fix version in 634:

  http://issues.apache.org/jira/browse/BEEHIVE-635

This is definitely something we should support post 1.0; moving to fix in TBD.

Abdessattar, looks like you're halfway to a patch here. :)


Abdessattar Sassi added a comment - 03/Aug/05 04:44 PM
Attached in patch.txt is a SVN patch file to add the necessary code and fixes for the Tomcat adapter to work with Tomcat 5.5.7 or later.
Note that the patch requires that the catalina.jar and tomcat-coyote.jar in netui/external/tomcat/5x be updated from tomcat 5.5.7 at least (preferably 5.5.9).

Rich Feit added a comment - 01/Sep/05 05:15 AM
Will get this in ASAP after we get 1.0 out the door.

Rich Feit added a comment - 09/Dec/05 02:15 AM
I meant to resolve this a long time ago -- these changes are in the Tomcat 5.5 ServletContainerAdapter that was contributed by Abdessattar (thanks again!).

Alex, to repro this, you can just add the following security constraint to web.xml:

   <security-constraint>
      <web-resource-collection>
        <web-resource-name>Secure PageFlow - all</web-resource-name>
        <url-pattern>/security/secure.jsp</url-pattern>
      </web-resource-collection>
      <user-data-constraint>
         <transport-guarantee>CONFIDENTIAL</transport-guarantee>
      </user-data-constraint>
  </security-constraint>

Then, follow the instructions at $BEEHIVE_HOME/netui/test/webapps/tomcat/README.txt for integrating with Tomcat 5.5, deploy the app, and hit http://localhost:8080/&lt;your webapp name>/security/secure.jsp. If the bug is fixed, then the request will be switched to https. If not, it'll remain in http.

Julie Zhuo added a comment - 02/Feb/06 03:16 AM
Verified with rev374070. There is a test web in the tree that test the log in using tomcat and picking up the roles and security constraints from web.xml. Run the tests against tomcat5.5.9 successfully. Although the build files in netui/test/webapps/tomcat is not working currently due to the test environment build struture change lately. Will submit a patch to update it later at some point.