Bug 3481

Summary: Object reference sequences can leak reference count
Product: TAO Reporter: Adam Mitz <mitza>
Component: ORBAssignee: DOC Center Support List (internal) <tao-support>
Status: RESOLVED FIXED    
Severity: normal CC: sm
Priority: P3    
Version: 1.6.6   
Hardware: All   
OS: All   
Bug Depends on:    
Bug Blocks: 3550, 3548, 3574    
Attachments: test case

Description Adam Mitz 2008-10-30 17:21:45 CDT
Created attachment 1021 [details]
test case

When an object reference sequence shrinks the "removed" elements reference counts are not immediately decremented.  TAO will lazily decrement the reference counts when the sequence itself is destroyed (actually its buffer).  The bug happens when a sequence shrinks and then grows again.  These elements are now overwritten and the reference count is lost.  generic_sequence::length() calls element_traits::initialize_range(), but initialize_range doesn't decrement the existing objects when they are in this "removed but not yet decremented" state.

See attached test which uses this IDL:

local interface Foo {
};
typedef sequence<Foo> FooSeq;

I will add this to the svn repository shortly.
Comment 1 Simon McQueen 2008-11-04 05:42:54 CST
I think the proper behaviour here is to instead reset the sequence elements by assigning nil object reference references into the elements when the sequence is shrunk. This should release the previous references.

I think the initialize range behaviour described should only be required for the creation of fresh buffers - if object reference sequence is similar to the string sequence implementation then I imagine it is using ::allocbuf to create the buffer. The c++ mapping requires that this creates a buffer with values appropriately initialised to ::nil (). If so (and if my suggestion above is implemented) then increasing the length of the sequence up to the maximum will require no re-initialisation. Increasing above the maximum will allocate a new buffer which will be correctly initialised for all values up to the new maximum (== length).

Would you agree with this approach Adam ? 
Comment 2 Adam Mitz 2008-11-04 06:31:03 CST
(In reply to comment #1)
>
> Would you agree with this approach Adam ? 
> 

Sounds good to me.  As you've probably noticed I haven't had a chance to add the test to the repo yet.  If you get to it first then go ahead.
Comment 3 Johnny Willemsen 2009-01-19 12:20:57 CST
added blocks
Comment 4 Johnny Willemsen 2009-01-19 12:42:23 CST
test seems to be in the repo yet. Adam/Simon, do you have a patch for this?
Comment 5 Adam Mitz 2009-01-19 12:53:56 CST
(In reply to comment #4)
> test seems to be in the repo yet.

The test was added to the repo a long time ago, but I forgot to notify this bugzilla entry:
Fri Nov  7 17:57:34 UTC 2008  Adam Mitz  <mitza@ociweb.com>

        * tests/Bug_3481_Regression:

          Added a test for this bug.


> Adam/Simon, do you have a patch for this?

I don't have a patch.  Simon's Comment #1 (in the first paragraph) describes how to fix it.
Comment 6 Johnny Willemsen 2009-01-19 13:41:04 CST
Mon Jan 19 19:37:24 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Generic_Sequence_T.h:
          When the sequence shrinks we release the members that are not
          available anymore by the user and then reinitialize them again.
          This solution works but can probably be improved with respect
          to performance and exception safety. This fixes bugzilla 3481
          and 3548.
Comment 7 Johnny Willemsen 2009-01-20 12:57:54 CST
Tue Jan 20 06:18:24 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Value_Traits_T.h:
          Deliver dummy release_range to resolve compile errors

Mon Jan 19 19:37:24 UTC 2009  Johnny Willemsen  <jwillemsen@remedy.nl>

        * tao/Generic_Sequence_T.h:
          When the sequence shrinks we release the members that are not
          available anymore by the user and then reinitialize them again.
          This solution works but can probably be improved with respect
          to performance and exception safety. This fixes bugzilla 3481
          and 3548.