8d29dbc82109e2c87f00ccda5a781ff4cddda9a3
[folly.git] / folly / experimental / JemallocNodumpAllocator.cpp
1 /*
2  * Copyright 2017 Facebook, Inc.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #include <folly/experimental/JemallocNodumpAllocator.h>
18
19 #include <folly/Conv.h>
20 #include <folly/Malloc.h>
21 #include <folly/String.h>
22 #include <glog/logging.h>
23
24 namespace folly {
25
26 JemallocNodumpAllocator::JemallocNodumpAllocator(State state) {
27   if (state == State::ENABLED && extend_and_setup_arena()) {
28     LOG(INFO) << "Set up arena: " << arena_index_;
29   }
30 }
31
32 bool JemallocNodumpAllocator::extend_and_setup_arena() {
33 #ifdef FOLLY_JEMALLOC_NODUMP_ALLOCATOR_SUPPORTED
34   if (mallctl == nullptr) {
35     // Not linked with jemalloc.
36     return false;
37   }
38
39   size_t len = sizeof(arena_index_);
40   if (auto ret = mallctl(
41 #ifdef FOLLY_JEMALLOC_NODUMP_ALLOCATOR_CHUNK
42           "arenas.extend"
43 #else
44           "arenas.create"
45 #endif
46           ,
47           &arena_index_,
48           &len,
49           nullptr,
50           0)) {
51     LOG(FATAL) << "Unable to extend arena: " << errnoStr(ret);
52   }
53   flags_ = MALLOCX_ARENA(arena_index_) | MALLOCX_TCACHE_NONE;
54
55 #ifdef FOLLY_JEMALLOC_NODUMP_ALLOCATOR_CHUNK
56   const auto key =
57       folly::to<std::string>("arena.", arena_index_, ".chunk_hooks");
58   chunk_hooks_t hooks;
59   len = sizeof(hooks);
60   // Read the existing hooks
61   if (auto ret = mallctl(key.c_str(), &hooks, &len, nullptr, 0)) {
62     LOG(FATAL) << "Unable to get the hooks: " << errnoStr(ret);
63   }
64   if (original_alloc_ == nullptr) {
65     original_alloc_ = hooks.alloc;
66   } else {
67     DCHECK_EQ(original_alloc_, hooks.alloc);
68   }
69
70   // Set the custom hook
71   hooks.alloc = &JemallocNodumpAllocator::alloc;
72   if (auto ret =
73           mallctl(key.c_str(), nullptr, nullptr, &hooks, sizeof(hooks))) {
74     LOG(FATAL) << "Unable to set the hooks: " << errnoStr(ret);
75   }
76 #else
77   const auto key =
78       folly::to<std::string>("arena.", arena_index_, ".extent_hooks");
79   extent_hooks_t* hooks;
80   len = sizeof(hooks);
81   // Read the existing hooks
82   if (auto ret = mallctl(key.c_str(), &hooks, &len, nullptr, 0)) {
83     LOG(FATAL) << "Unable to get the hooks: " << errnoStr(ret);
84   }
85   if (original_alloc_ == nullptr) {
86     original_alloc_ = hooks->alloc;
87   } else {
88     DCHECK_EQ(original_alloc_, hooks->alloc);
89   }
90
91   // Set the custom hook
92   extent_hooks_ = *hooks;
93   extent_hooks_.alloc = &JemallocNodumpAllocator::alloc;
94   if (auto ret =
95           mallctl(key.c_str(), nullptr, nullptr, &hooks, sizeof(hooks))) {
96     LOG(FATAL) << "Unable to set the hooks: " << errnoStr(ret);
97   }
98 #endif
99
100   return true;
101 #else // FOLLY_JEMALLOC_NODUMP_ALLOCATOR_SUPPORTED
102   return false;
103 #endif // FOLLY_JEMALLOC_NODUMP_ALLOCATOR_SUPPORTED
104 }
105
106 void* JemallocNodumpAllocator::allocate(size_t size) {
107   return mallocx != nullptr ? mallocx(size, flags_) : malloc(size);
108 }
109
110 void* JemallocNodumpAllocator::reallocate(void* p, size_t size) {
111   return rallocx != nullptr ? rallocx(p, size, flags_) : realloc(p, size);
112 }
113
114 #ifdef FOLLY_JEMALLOC_NODUMP_ALLOCATOR_SUPPORTED
115
116 #ifdef FOLLY_JEMALLOC_NODUMP_ALLOCATOR_CHUNK
117 chunk_alloc_t* JemallocNodumpAllocator::original_alloc_ = nullptr;
118 void* JemallocNodumpAllocator::alloc(
119     void* chunk,
120 #else
121 extent_alloc_t* JemallocNodumpAllocator::original_alloc_ = nullptr;
122 void* JemallocNodumpAllocator::alloc(
123     extent_hooks_t* extent,
124     void* new_addr,
125 #endif
126     size_t size,
127     size_t alignment,
128     bool* zero,
129     bool* commit,
130     unsigned arena_ind) {
131   void* result = original_alloc_(
132       JEMALLOC_CHUNK_OR_EXTENT,
133 #ifdef FOLLY_JEMALLOC_NODUMP_ALLOCATOR_EXTENT
134       new_addr,
135 #endif
136       size,
137       alignment,
138       zero,
139       commit,
140       arena_ind);
141   if (result != nullptr) {
142     if (auto ret = madvise(result, size, MADV_DONTDUMP)) {
143       VLOG(1) << "Unable to madvise(MADV_DONTDUMP): " << errnoStr(ret);
144     }
145   }
146
147   return result;
148 }
149
150 #endif // FOLLY_JEMALLOC_NODUMP_ALLOCATOR_SUPPORTED
151
152 void JemallocNodumpAllocator::deallocate(void* p) {
153   dallocx != nullptr ? dallocx(p, flags_) : free(p);
154 }
155
156 void JemallocNodumpAllocator::deallocate(void* p, void* userData) {
157   const uint64_t flags = reinterpret_cast<uint64_t>(userData);
158   dallocx != nullptr ? dallocx(p, static_cast<int>(flags)) : free(p);
159 }
160
161 JemallocNodumpAllocator& globalJemallocNodumpAllocator() {
162   static auto instance = new JemallocNodumpAllocator();
163   return *instance;
164 }
165
166 } // folly