This is the mail archive of the
libstdc++@gcc.gnu.org
mailing list for the libstdc++ project.
Re: Long-standing error in exception handling by pool_allocator(contains untested patch)
- From: Dhruv Matani <dhruvbird at gmx dot net>
- To: Paolo Carlini <pcarlini at suse dot de>
- Cc: Joachim Kuebart <kuebart at mathematik dot uni-ulm dot de>, libstdc++ <libstdc++ at gcc dot gnu dot org>
- Date: 10 Oct 2004 23:32:03 +0530
- Subject: Re: Long-standing error in exception handling by pool_allocator(contains untested patch)
- Organization:
- References: <20041009161531.GA653@jaja> <416833A4.6060609@suse.de> <4169545B.6070100@suse.de>
Hi,
I guess this patch(attached) would be more in keeping with the original
spirit of the allocator. ChangeLog would of course remain unchanged.
If you remember, I had earlier mentioned something to this effect, but
then forgot totally about it!
http://gcc.gnu.org/ml/libstdc++/2004-03/msg00290.html
http://gcc.gnu.org/ml/libstdc++/2004-03/msg00288.html
-Dhruv.
On Sun, 2004-10-10 at 20:55, Paolo Carlini wrote:
> Paolo Carlini wrote:
>
> > Therefore, my plan would be preparing a simple testcase from your
> > complete
> > analysis, regression test the slighlty tweaked version, and repost it
> > to the list
> > for final review.
>
> The below is what I have just finished regtesting on x86/x86_64-linux.
> As you
> can see, I simply test that the fall back machinery originally designed
> by SGI/HP
> is actually working, instead of testing for memory corruption: the
> latter is more
> tricky, depends on too many parameters and risk to convey the misleading
> impression that the patch is "only" about memory corruption: in that
> case simply
> zeroing _S_start_free/_S_end_free before calling ::operator new would
> suffice.
>
> I'll wait until tomorrow in case of comments...
>
> Paolo.
>
> ////////////////
>
> ______________________________________________________________________
>
> 2004-10-11 Joachim Kuebart <kuebart@mathematik.uni-ulm.de>
> Paolo Carlini <pcarlini@suse.de>
>
> * src/pool_allocator.cc (__pool_alloc_base::_M_allocate_chunk):
> Deal properly with exceptions thrown by ::operator new(size_t).
> * testsuite/ext/pool_allocator/allocate_chunk.cc: New.
>
> * include/ext/pool_allocator.h: Include <cstdlib>.
>
> ______________________________________________________________________
>
> diff -urN libstdc++-v3-orig/include/ext/pool_allocator.h libstdc++-v3/include/ext/pool_allocator.h
> --- libstdc++-v3-orig/include/ext/pool_allocator.h 2004-08-30 20:22:01.000000000 +0200
> +++ libstdc++-v3/include/ext/pool_allocator.h 2004-10-10 15:38:38.000000000 +0200
> @@ -48,6 +48,7 @@
> #define _POOL_ALLOCATOR_H 1
>
> #include <bits/c++config.h>
> +#include <cstdlib>
> #include <new>
> #include <bits/functexcept.h>
> #include <bits/atomicity.h>
> diff -urN libstdc++-v3-orig/src/pool_allocator.cc libstdc++-v3/src/pool_allocator.cc
> --- libstdc++-v3-orig/src/pool_allocator.cc 2004-09-02 00:16:58.000000000 +0200
> +++ libstdc++-v3/src/pool_allocator.cc 2004-10-10 11:16:23.000000000 +0200
> @@ -90,8 +90,11 @@
>
> size_t __bytes_to_get = (2 * __total_bytes
> + _M_round_up(_S_heap_size >> 4));
> - _S_start_free = static_cast<char*>(::operator new(__bytes_to_get));
> - if (_S_start_free == 0)
> + try
> + {
> + _S_start_free = static_cast<char*>(::operator new(__bytes_to_get));
> + }
> + catch (...)
> {
> // Try to make do with what we have. That can't hurt. We
> // do not try smaller requests, since that tends to result
> @@ -111,11 +114,9 @@
> // right free list.
> }
> }
> - _S_end_free = 0; // In case of exception.
> -
> - // This should either throw an exception or remedy the situation.
> - // Thus we assume it succeeded.
> - _S_start_free = static_cast<char*>(::operator new(__bytes_to_get));
> + // what we have wasn't enough. Rethrow.
> + _S_start_free = _S_end_free = 0; // we have no chunk
> + __throw_exception_again;
> }
> _S_heap_size += __bytes_to_get;
> _S_end_free = _S_start_free + __bytes_to_get;
> diff -urN libstdc++-v3-orig/testsuite/ext/pool_allocator/allocate_chunk.cc libstdc++-v3/testsuite/ext/pool_allocator/allocate_chunk.cc
> --- libstdc++-v3-orig/testsuite/ext/pool_allocator/allocate_chunk.cc 1970-01-01 01:00:00.000000000 +0100
> +++ libstdc++-v3/testsuite/ext/pool_allocator/allocate_chunk.cc 2004-10-10 17:12:24.000000000 +0200
> @@ -0,0 +1,63 @@
> +// 2004-10-10 Paolo Carlini <pcarlini@suse.de>
> +
> +// Copyright (C) 2004 Free Software Foundation, Inc.
> +//
> +// This file is part of the GNU ISO C++ Library. This library is free
> +// software; you can redistribute it and/or modify it under the
> +// terms of the GNU General Public License as published by the
> +// Free Software Foundation; either version 2, or (at your option)
> +// any later version.
> +//
> +// This library is distributed in the hope that it will be useful,
> +// but WITHOUT ANY WARRANTY; without even the implied warranty of
> +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> +// GNU General Public License for more details.
> +//
> +// You should have received a copy of the GNU General Public License along
> +// with this library; see the file COPYING. If not, write to the Free
> +// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
> +// USA.
> +
> +// 20.4.1.1 allocator members
> +
> +#include <ext/pool_allocator.h>
> +
> +struct small
> +{
> + char c[16];
> +};
> +
> +struct big
> +{
> + char c[64];
> +};
> +
> +void*
> +operator new(size_t n) throw(std::bad_alloc)
> +{
> + static bool first = true;
> + if (!first)
> + throw std::bad_alloc();
> + first = false;
> + return std::malloc(n);
> +}
> +
> +// http://gcc.gnu.org/ml/libstdc++/2004-10/msg00098.html
> +void test01()
> +{
> + using __gnu_cxx::__pool_alloc;
> +
> + __pool_alloc<big> alloc_big;
> + alloc_big.allocate(1);
> +
> + // The constant 20 comes from __pool_alloc_base::_M_refill. See
> + // also __pool_alloc_base::_M_allocate_chunk.
> + __pool_alloc<small> alloc_small;
> + for (int i = 0; i < 20 * sizeof(big) / sizeof(small) + 1; ++i)
> + alloc_small.allocate(1);
> +}
> +
> +int main()
> +{
> + test01();
> +}
--
-Dhruv Matani.
http://www.geocities.com/dhruvbird/
The price of freedom is responsibility, but it's a bargain, because
freedom is priceless. ~ Hugh Downs
// Allocator details.
// Copyright (C) 2004 Free Software Foundation, Inc.
//
// This file is part of the GNU ISO C++ Library. This library is free
// software; you can redistribute it and/or modify it under the
// terms of the GNU General Public License as published by the
// Free Software Foundation; either version 2, or (at your option)
// any later version.
// This library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License along
// with this library; see the file COPYING. If not, write to the Free
// Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
// USA.
// As a special exception, you may use this file as part of a free software
// library without restriction. Specifically, if other files instantiate
// templates or use macros or inline functions from this file, or you compile
// this file and link it with other files to produce an executable, this
// file does not by itself cause the resulting executable to be covered by
// the GNU General Public License. This exception does not however
// invalidate any other reasons why the executable file might be covered by
// the GNU General Public License.
//
// ISO C++ 14882:
//
#include <bits/c++config.h>
#include <cstdlib>
#include <ext/pool_allocator.h>
namespace __gnu_internal
{
__glibcxx_mutex_define_initialized(palloc_init_mutex);
}
namespace __gnu_cxx
{
// Definitions for __pool_alloc_base.
__pool_alloc_base::_Obj* volatile*
__pool_alloc_base::_M_get_free_list(size_t __bytes)
{
size_t __i = ((__bytes + (size_t)_S_align - 1) / (size_t)_S_align - 1);
return _S_free_list + __i;
}
mutex_type&
__pool_alloc_base::_M_get_mutex()
{ return __gnu_internal::palloc_init_mutex; }
// Allocate memory in large chunks in order to avoid fragmenting the
// heap too much. Assume that __n is properly aligned. We hold the
// allocation lock.
char*
__pool_alloc_base::_M_allocate_chunk(size_t __n, int& __nobjs)
{
char* __result;
size_t __total_bytes = __n * __nobjs;
size_t __bytes_left = _S_end_free - _S_start_free;
if (__bytes_left >= __total_bytes)
{
__result = _S_start_free;
_S_start_free += __total_bytes;
return __result ;
}
else if (__bytes_left >= __n)
{
__nobjs = (int)(__bytes_left / __n);
__total_bytes = __n * __nobjs;
__result = _S_start_free;
_S_start_free += __total_bytes;
return __result;
}
else
{
// Try to make use of the left-over piece.
if (__bytes_left > 0)
{
_Obj* volatile* __free_list = _M_get_free_list(__bytes_left);
((_Obj*)(void*)_S_start_free)->_M_free_list_link = *__free_list;
*__free_list = (_Obj*)(void*)_S_start_free;
}
size_t __bytes_to_get = (2 * __total_bytes
+ _M_round_up(_S_heap_size >> 4));
try
{
_S_start_free =
static_cast<char*>(::operator new(__bytes_to_get));
}
catch(std::bad_alloc& __std_ba)
{
// Try to make do with what we have. That can't hurt. We
// do not try smaller requests, since that tends to result
// in disaster on multi-process machines.
size_t __i = __n;
for (; __i <= (size_t) _S_max_bytes; __i += (size_t) _S_align)
{
_Obj* volatile* __free_list = _M_get_free_list(__i);
_Obj* __p = *__free_list;
if (__p != 0)
{
*__free_list = __p->_M_free_list_link;
_S_start_free = (char*)__p;
_S_end_free = _S_start_free + __i;
return _M_allocate_chunk(__n, __nobjs);
// Any leftover piece will eventually make it to the
// right free list.
}
}
// We have run out of luck(and memory)!
// In case of exception, reset everything.
_S_start_free = _S_end_free = 0;
// Re-throw the exception.
throw;
}
_S_heap_size += __bytes_to_get;
_S_end_free = _S_start_free + __bytes_to_get;
return _M_allocate_chunk(__n, __nobjs);
}
}
// Returns an object of size __n, and optionally adds to "size
// __n"'s free list. We assume that __n is properly aligned. We
// hold the allocation lock.
void*
__pool_alloc_base::_M_refill(size_t __n)
{
int __nobjs = 20;
char* __chunk = _M_allocate_chunk(__n, __nobjs);
_Obj* volatile* __free_list;
_Obj* __result;
_Obj* __current_obj;
_Obj* __next_obj;
if (__nobjs == 1)
return __chunk;
__free_list = _M_get_free_list(__n);
// Build free list in chunk.
__result = (_Obj*)(void*)__chunk;
*__free_list = __next_obj = (_Obj*)(void*)(__chunk + __n);
for (int __i = 1; ; __i++)
{
__current_obj = __next_obj;
__next_obj = (_Obj*)(void*)((char*)__next_obj + __n);
if (__nobjs - 1 == __i)
{
__current_obj->_M_free_list_link = 0;
break;
}
else
__current_obj->_M_free_list_link = __next_obj;
}
return __result;
}
__pool_alloc_base::_Obj* volatile __pool_alloc_base::_S_free_list[_S_free_list_size];
char* __pool_alloc_base::_S_start_free = 0;
char* __pool_alloc_base::_S_end_free = 0;
size_t __pool_alloc_base::_S_heap_size = 0;
// Instantiations.
template class __pool_alloc<char>;
template class __pool_alloc<wchar_t>;
} // namespace __gnu_cxx