[asterisk-bugs] [Asterisk 0015987]: ao2_iterator_init() does not hold a reference to the container it is iterating

Asterisk Bug Tracker noreply at bugs.digium.com
Mon Oct 5 20:42:19 CDT 2009


A NOTE has been added to this issue. 
====================================================================== 
https://issues.asterisk.org/view.php?id=15987 
====================================================================== 
Reported By:                kpfleming
Assigned To:                kpfleming
====================================================================== 
Project:                    Asterisk
Issue ID:                   15987
Category:                   Core/General
Reproducibility:            always
Severity:                   minor
Priority:                   normal
Status:                     closed
Asterisk Version:           Older 1.4 
JIRA:                        
Regression:                 No 
Reviewboard Link:            
SVN Branch (only for SVN checkouts, not tarball releases): N/A 
SVN Revision (number only!):  
Request Review:              
Resolution:                 fixed
Fixed in Version:           
====================================================================== 
Date Submitted:             2009-09-29 11:03 CDT
Last Modified:              2009-10-05 20:42 CDT
====================================================================== 
Summary:                    ao2_iterator_init() does not hold a reference to the
container it is iterating
Description: 
While researching the astobj2 code to add some new functionality, I
discovered that the ao2_iterator_init() function makes a copy of the
container pointer it is passed, but does not increase the reference count
on the container. In situations where dynamically allocated containers are
being used and pointers to them are passed to (and iterators create on them
by) other functions, this could lead to the container being destroyed while
there are still iterators open using it.

There are no current usages of astobj2 in the tree that could experience
this problem, as they do not use dynamically allocated containers with
short lifetimes (all existing container usage would outlive any iterators
that might be used on those containers), but the API is clearly not living
up to the 'automatic reference count management' that developers would
expect it to have.
====================================================================== 

---------------------------------------------------------------------- 
 (0111894) svnbot (reporter) - 2009-10-05 20:42
 https://issues.asterisk.org/view.php?id=15987#c111894 
---------------------------------------------------------------------- 
Repository: asterisk
Revision: 222187

_U  branches/1.6.2/
U   branches/1.6.2/apps/app_queue.c
U   branches/1.6.2/channels/chan_console.c
U   branches/1.6.2/channels/chan_iax2.c
U   branches/1.6.2/channels/chan_sip.c
U   branches/1.6.2/funcs/func_dialgroup.c
U   branches/1.6.2/include/asterisk/astobj2.h
U   branches/1.6.2/main/astobj2.c
U   branches/1.6.2/res/res_clialiases.c
U   branches/1.6.2/res/res_musiconhold.c
U   branches/1.6.2/res/res_odbc.c
U   branches/1.6.2/res/res_phoneprov.c

------------------------------------------------------------------------
r222187 | kpfleming | 2009-10-05 20:42:18 -0500 (Mon, 05 Oct 2009) | 34
lines

Merged revisions 222176 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

................
  r222176 | kpfleming | 2009-10-05 20:24:24 -0500 (Mon, 05 Oct 2009) | 27
lines
  
  Recorded merge of revisions 222152 via svnmerge from 
  https://origsvn.digium.com/svn/asterisk/branches/1.4
  
  ........
    r222152 | kpfleming | 2009-10-05 20:16:36 -0500 (Mon, 05 Oct 2009) |
20 lines
    
    Fix ao2_iterator API to hold references to containers being iterated.
    
    See Mantis issue for details of what prompted this change.
    
    Additional notes:
    
    This patch changes the ao2_iterator API in two ways: F_AO2I_DONTLOCK
    has become an enum instead of a macro, with a name that fits our
    naming policy; also, it is now necessary to call
    ao2_iterator_destroy() on any iterator that has been
    created. Currently this only releases the reference to the container
    being iterated, but in the future this could also release other
    resources used by the iterator, if the iterator implementation changes
    to use additional resources.
    
    (closes issue https://issues.asterisk.org/view.php?id=15987)
    Reported by: kpfleming
    
    Review: https://reviewboard.asterisk.org/r/383/
  ........
................

------------------------------------------------------------------------

http://svn.digium.com/view/asterisk?view=rev&revision=222187 

Issue History 
Date Modified    Username       Field                    Change               
====================================================================== 
2009-10-05 20:42 svnbot         Checkin                                      
2009-10-05 20:42 svnbot         Note Added: 0111894                          
======================================================================




More information about the asterisk-bugs mailing list