]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/context/posix/protected_fixedsize_stack.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / context / posix / protected_fixedsize_stack.hpp
1
2 // Copyright Oliver Kowalke 2014.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6
7 #ifndef BOOST_CONTEXT_PROTECTED_FIXEDSIZE_H
8 #define BOOST_CONTEXT_PROTECTED_FIXEDSIZE_H
9
10 extern "C" {
11 #include <fcntl.h>
12 #include <sys/mman.h>
13 #include <sys/stat.h>
14 #include <unistd.h>
15 }
16
17 #include <cmath>
18 #include <cstddef>
19 #include <new>
20
21 #include <boost/assert.hpp>
22 #include <boost/config.hpp>
23
24 #include <boost/context/detail/config.hpp>
25 #include <boost/context/stack_context.hpp>
26 #include <boost/context/stack_traits.hpp>
27
28 #if defined(BOOST_USE_VALGRIND)
29 #include <valgrind/valgrind.h>
30 #endif
31
32 #ifdef BOOST_HAS_ABI_HEADERS
33 # include BOOST_ABI_PREFIX
34 #endif
35
36 namespace boost {
37 namespace context {
38
39 template< typename traitsT >
40 class basic_protected_fixedsize_stack {
41 private:
42 std::size_t size_;
43
44 public:
45 typedef traitsT traits_type;
46
47 basic_protected_fixedsize_stack( std::size_t size = traits_type::default_size() ) BOOST_NOEXCEPT_OR_NOTHROW :
48 size_( size) {
49 }
50
51 stack_context allocate() {
52 // calculate how many pages are required
53 const std::size_t pages(
54 static_cast< std::size_t >(
55 std::ceil(
56 static_cast< float >( size_) / traits_type::page_size() ) ) );
57 // add one page at bottom that will be used as guard-page
58 const std::size_t size__ = ( pages + 1) * traits_type::page_size();
59
60 // conform to POSIX.4 (POSIX.1b-1993, _POSIX_C_SOURCE=199309L)
61 #if defined(MAP_ANON)
62 void * vp = ::mmap( 0, size__, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANON, -1, 0);
63 #else
64 void * vp = ::mmap( 0, size__, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0);
65 #endif
66 if ( MAP_FAILED == vp) throw std::bad_alloc();
67
68 // conforming to POSIX.1-2001
69 #if defined(BOOST_DISABLE_ASSERTS)
70 ::mprotect( vp, traits_type::page_size(), PROT_NONE);
71 #else
72 const int result( ::mprotect( vp, traits_type::page_size(), PROT_NONE) );
73 BOOST_ASSERT( 0 == result);
74 #endif
75
76 stack_context sctx;
77 sctx.size = size__;
78 sctx.sp = static_cast< char * >( vp) + sctx.size;
79 #if defined(BOOST_USE_VALGRIND)
80 sctx.valgrind_stack_id = VALGRIND_STACK_REGISTER( sctx.sp, vp);
81 #endif
82 return sctx;
83 }
84
85 void deallocate( stack_context & sctx) BOOST_NOEXCEPT_OR_NOTHROW {
86 BOOST_ASSERT( sctx.sp);
87
88 #if defined(BOOST_USE_VALGRIND)
89 VALGRIND_STACK_DEREGISTER( sctx.valgrind_stack_id);
90 #endif
91
92 void * vp = static_cast< char * >( sctx.sp) - sctx.size;
93 // conform to POSIX.4 (POSIX.1b-1993, _POSIX_C_SOURCE=199309L)
94 ::munmap( vp, sctx.size);
95 }
96 };
97
98 typedef basic_protected_fixedsize_stack< stack_traits > protected_fixedsize_stack;
99
100 }}
101
102 #ifdef BOOST_HAS_ABI_HEADERS
103 # include BOOST_ABI_SUFFIX
104 #endif
105
106 #endif // BOOST_CONTEXT_PROTECTED_FIXEDSIZE_H