Uploaded image for project: 'Jackrabbit Content Repository'
  1. Jackrabbit Content Repository
  2. JCR-3291

Stack overflow in multi-session test with moves

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 2.2.12, 2.4.2, 2.5
    • jackrabbit-core
    • None

    Description

      When two sessions move nodes in incompatible ways (see test), the hierarchy manager can get into an infinite recursion when building paths.

      Setup: nodes /a/aa & /b.

      // results in /b/a/aa
      session1.move(testRootPath + "/a", testRootPath + "/b/a");
      // results in aa/b/aa/b/aa/b/aa/etc.
      session2.move(testRootPath + "/b", testRootPath + "/a/aa/b");
      session1.save();
      session2.save();

      The problem arises when the hierarchy manager uses a mix of transient states and unmodified states managed by the local item state manager.
      When session 1 is saved, the state change of node a is dispatched to session 2. Node "a" is not changed in session 2, so it's new shared state will be used as-is.
      It will have parent "b" according to the hierarchy manager in session 2.

      The proposed solution is to keep track of the nodes that have been used in building up the path. This has the downside that building up paths becomes more expensive.
      I haven't done any performance measurements yet on the impact of the change. If performance is an issue, perhaps the implementation can be limited to the case that the consistencyCheckEnabled flag is set.

      Attachments

        1. JCR-3291.patch
          3 kB
          Frank van Lankvelt
        2. JCR-3291-test.patch
          2 kB
          Frank van Lankvelt

        Issue Links

          Activity

            People

              schans Bart van der Schans
              lankvelt Frank van Lankvelt
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: