Fix a parse error in detail/ThreadLocalDetail.h under MSVC
[folly.git] / folly / detail / ThreadLocalDetail.h
1 /*
2  * Copyright 2015 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 #ifndef FOLLY_DETAIL_THREADLOCALDETAIL_H_
18 #define FOLLY_DETAIL_THREADLOCALDETAIL_H_
19
20 #include <limits.h>
21 #include <pthread.h>
22
23 #include <mutex>
24 #include <string>
25 #include <vector>
26
27 #include <glog/logging.h>
28
29 #include <folly/Foreach.h>
30 #include <folly/Exception.h>
31 #include <folly/Malloc.h>
32
33 // In general, emutls cleanup is not guaranteed to play nice with the way
34 // StaticMeta mixes direct pthread calls and the use of __thread. This has
35 // caused problems on multiple platforms so don't use __thread there.
36 //
37 // XXX: Ideally we would instead determine if emutls is in use at runtime as it
38 // is possible to configure glibc on Linux to use emutls regardless.
39 #if !__APPLE__ && !__ANDROID__
40 #define FOLLY_TLD_USE_FOLLY_TLS 1
41 #else
42 #undef FOLLY_TLD_USE_FOLLY_TLS
43 #endif
44
45 namespace folly {
46 namespace threadlocal_detail {
47
48 /**
49  * Base class for deleters.
50  */
51 class DeleterBase {
52  public:
53   virtual ~DeleterBase() { }
54   virtual void dispose(void* ptr, TLPDestructionMode mode) const = 0;
55 };
56
57 /**
58  * Simple deleter class that calls delete on the passed-in pointer.
59  */
60 template <class Ptr>
61 class SimpleDeleter : public DeleterBase {
62  public:
63   virtual void dispose(void* ptr, TLPDestructionMode /*mode*/) const {
64     delete static_cast<Ptr>(ptr);
65   }
66 };
67
68 /**
69  * Custom deleter that calls a given callable.
70  */
71 template <class Ptr, class Deleter>
72 class CustomDeleter : public DeleterBase {
73  public:
74   explicit CustomDeleter(Deleter d) : deleter_(d) { }
75   virtual void dispose(void* ptr, TLPDestructionMode mode) const {
76     deleter_(static_cast<Ptr>(ptr), mode);
77   }
78  private:
79   Deleter deleter_;
80 };
81
82
83 /**
84  * POD wrapper around an element (a void*) and an associated deleter.
85  * This must be POD, as we memset() it to 0 and memcpy() it around.
86  */
87 struct ElementWrapper {
88   bool dispose(TLPDestructionMode mode) {
89     if (ptr == nullptr) {
90       return false;
91     }
92
93     DCHECK(deleter != nullptr);
94     deleter->dispose(ptr, mode);
95     cleanup();
96     return true;
97   }
98
99   void* release() {
100     auto retPtr = ptr;
101
102     if (ptr != nullptr) {
103       cleanup();
104     }
105
106     return retPtr;
107   }
108
109   template <class Ptr>
110   void set(Ptr p) {
111     DCHECK(ptr == nullptr);
112     DCHECK(deleter == nullptr);
113
114     if (p) {
115       // We leak a single object here but that is ok.  If we used an
116       // object directly, there is a chance that the destructor will be
117       // called on that static object before any of the ElementWrappers
118       // are disposed and that isn't so nice.
119       static auto d = new SimpleDeleter<Ptr>();
120       ptr = p;
121       deleter = d;
122       ownsDeleter = false;
123     }
124   }
125
126   template <class Ptr, class Deleter>
127   void set(Ptr p, Deleter d) {
128     DCHECK(ptr == nullptr);
129     DCHECK(deleter == nullptr);
130     if (p) {
131       ptr = p;
132       deleter = new CustomDeleter<Ptr,Deleter>(d);
133       ownsDeleter = true;
134     }
135   }
136
137   void cleanup() {
138     if (ownsDeleter) {
139       delete deleter;
140     }
141     ptr = nullptr;
142     deleter = nullptr;
143     ownsDeleter = false;
144   }
145
146   void* ptr;
147   DeleterBase* deleter;
148   bool ownsDeleter;
149 };
150
151 /**
152  * Per-thread entry.  Each thread using a StaticMeta object has one.
153  * This is written from the owning thread only (under the lock), read
154  * from the owning thread (no lock necessary), and read from other threads
155  * (under the lock).
156  */
157 struct ThreadEntry {
158   ElementWrapper* elements;
159   size_t elementsCapacity;
160   ThreadEntry* next;
161   ThreadEntry* prev;
162 };
163
164 // Held in a singleton to track our global instances.
165 // We have one of these per "Tag", by default one for the whole system
166 // (Tag=void).
167 //
168 // Creating and destroying ThreadLocalPtr objects, as well as thread exit
169 // for threads that use ThreadLocalPtr objects collide on a lock inside
170 // StaticMeta; you can specify multiple Tag types to break that lock.
171 template <class Tag>
172 struct StaticMeta {
173   static StaticMeta<Tag>& instance() {
174     // Leak it on exit, there's only one per process and we don't have to
175     // worry about synchronization with exiting threads.
176     static bool constructed = (inst_ = new StaticMeta<Tag>());
177     (void)constructed; // suppress unused warning
178     return *inst_;
179   }
180
181   uint32_t nextId_;
182   std::vector<uint32_t> freeIds_;
183   std::mutex lock_;
184   pthread_key_t pthreadKey_;
185   ThreadEntry head_;
186
187   void push_back(ThreadEntry* t) {
188     t->next = &head_;
189     t->prev = head_.prev;
190     head_.prev->next = t;
191     head_.prev = t;
192   }
193
194   void erase(ThreadEntry* t) {
195     t->next->prev = t->prev;
196     t->prev->next = t->next;
197     t->next = t->prev = t;
198   }
199
200 #ifdef FOLLY_TLD_USE_FOLLY_TLS
201   static FOLLY_TLS ThreadEntry threadEntry_;
202 #endif
203   static StaticMeta<Tag>* inst_;
204
205   StaticMeta() : nextId_(1) {
206     head_.next = head_.prev = &head_;
207     int ret = pthread_key_create(&pthreadKey_, &onThreadExit);
208     checkPosixError(ret, "pthread_key_create failed");
209
210 #if FOLLY_HAVE_PTHREAD_ATFORK
211     ret = pthread_atfork(/*prepare*/ &StaticMeta::preFork,
212                          /*parent*/ &StaticMeta::onForkParent,
213                          /*child*/ &StaticMeta::onForkChild);
214     checkPosixError(ret, "pthread_atfork failed");
215 #elif !__ANDROID__
216     // pthread_atfork is not part of the Android NDK at least as of n9d. If
217     // something is trying to call native fork() directly at all with Android's
218     // process management model, this is probably the least of the problems.
219     //
220     // But otherwise, this is a problem.
221     #warning pthread_atfork unavailable
222 #endif
223   }
224   ~StaticMeta() {
225     LOG(FATAL) << "StaticMeta lives forever!";
226   }
227
228   static ThreadEntry* getThreadEntry() {
229 #ifdef FOLLY_TLD_USE_FOLLY_TLS
230     return &threadEntry_;
231 #else
232     ThreadEntry* threadEntry =
233         static_cast<ThreadEntry*>(pthread_getspecific(inst_->pthreadKey_));
234     if (!threadEntry) {
235         threadEntry = new ThreadEntry();
236         int ret = pthread_setspecific(inst_->pthreadKey_, threadEntry);
237         checkPosixError(ret, "pthread_setspecific failed");
238     }
239     return threadEntry;
240 #endif
241   }
242
243   static void preFork(void) {
244     instance().lock_.lock();  // Make sure it's created
245   }
246
247   static void onForkParent(void) {
248     inst_->lock_.unlock();
249   }
250
251   static void onForkChild(void) {
252     // only the current thread survives
253     inst_->head_.next = inst_->head_.prev = &inst_->head_;
254     ThreadEntry* threadEntry = getThreadEntry();
255     // If this thread was in the list before the fork, add it back.
256     if (threadEntry->elementsCapacity != 0) {
257       inst_->push_back(threadEntry);
258     }
259     inst_->lock_.unlock();
260   }
261
262   static void onThreadExit(void* ptr) {
263     auto& meta = instance();
264 #ifdef FOLLY_TLD_USE_FOLLY_TLS
265     ThreadEntry* threadEntry = getThreadEntry();
266
267     DCHECK_EQ(ptr, &meta);
268     DCHECK_GT(threadEntry->elementsCapacity, 0);
269 #else
270     ThreadEntry* threadEntry = static_cast<ThreadEntry*>(ptr);
271 #endif
272     {
273       std::lock_guard<std::mutex> g(meta.lock_);
274       meta.erase(threadEntry);
275       // No need to hold the lock any longer; the ThreadEntry is private to this
276       // thread now that it's been removed from meta.
277     }
278     // NOTE: User-provided deleter / object dtor itself may be using ThreadLocal
279     // with the same Tag, so dispose() calls below may (re)create some of the
280     // elements or even increase elementsCapacity, thus multiple cleanup rounds
281     // may be required.
282     for (bool shouldRun = true; shouldRun; ) {
283       shouldRun = false;
284       FOR_EACH_RANGE(i, 0, threadEntry->elementsCapacity) {
285         if (threadEntry->elements[i].dispose(TLPDestructionMode::THIS_THREAD)) {
286           shouldRun = true;
287         }
288       }
289     }
290     free(threadEntry->elements);
291     threadEntry->elements = nullptr;
292     pthread_setspecific(meta.pthreadKey_, nullptr);
293
294 #ifndef FOLLY_TLD_USE_FOLLY_TLS
295     // Allocated in getThreadEntry() when not using folly TLS; free it
296     delete threadEntry;
297 #endif
298   }
299
300   static uint32_t create() {
301     uint32_t id;
302     auto & meta = instance();
303     std::lock_guard<std::mutex> g(meta.lock_);
304     if (!meta.freeIds_.empty()) {
305       id = meta.freeIds_.back();
306       meta.freeIds_.pop_back();
307     } else {
308       id = meta.nextId_++;
309     }
310     return id;
311   }
312
313   static void destroy(uint32_t id) {
314     try {
315       auto & meta = instance();
316       // Elements in other threads that use this id.
317       std::vector<ElementWrapper> elements;
318       {
319         std::lock_guard<std::mutex> g(meta.lock_);
320         for (ThreadEntry* e = meta.head_.next; e != &meta.head_; e = e->next) {
321           if (id < e->elementsCapacity && e->elements[id].ptr) {
322             elements.push_back(e->elements[id]);
323
324             /*
325              * Writing another thread's ThreadEntry from here is fine;
326              * the only other potential reader is the owning thread --
327              * from onThreadExit (which grabs the lock, so is properly
328              * synchronized with us) or from get(), which also grabs
329              * the lock if it needs to resize the elements vector.
330              *
331              * We can't conflict with reads for a get(id), because
332              * it's illegal to call get on a thread local that's
333              * destructing.
334              */
335             e->elements[id].ptr = nullptr;
336             e->elements[id].deleter = nullptr;
337             e->elements[id].ownsDeleter = false;
338           }
339         }
340         meta.freeIds_.push_back(id);
341       }
342       // Delete elements outside the lock
343       FOR_EACH(it, elements) {
344         it->dispose(TLPDestructionMode::ALL_THREADS);
345       }
346     } catch (...) { // Just in case we get a lock error or something anyway...
347       LOG(WARNING) << "Destructor discarding an exception that was thrown.";
348     }
349   }
350
351   /**
352    * Reserve enough space in the ThreadEntry::elements for the item
353    * @id to fit in.
354    */
355   static void reserve(uint32_t id) {
356     auto& meta = instance();
357     ThreadEntry* threadEntry = getThreadEntry();
358     size_t prevCapacity = threadEntry->elementsCapacity;
359     // Growth factor < 2, see folly/docs/FBVector.md; + 5 to prevent
360     // very slow start.
361     size_t newCapacity = static_cast<size_t>((id + 5) * 1.7);
362     assert(newCapacity > prevCapacity);
363     ElementWrapper* reallocated = nullptr;
364
365     // Need to grow. Note that we can't call realloc, as elements is
366     // still linked in meta, so another thread might access invalid memory
367     // after realloc succeeds. We'll copy by hand and update our ThreadEntry
368     // under the lock.
369     if (usingJEMalloc()) {
370       bool success = false;
371       size_t newByteSize = nallocx(newCapacity * sizeof(ElementWrapper), 0);
372
373       // Try to grow in place.
374       //
375       // Note that xallocx(MALLOCX_ZERO) will only zero newly allocated memory,
376       // even if a previous allocation allocated more than we requested.
377       // This is fine; we always use MALLOCX_ZERO with jemalloc and we
378       // always expand our allocation to the real size.
379       if (prevCapacity * sizeof(ElementWrapper) >=
380           jemallocMinInPlaceExpandable) {
381         success = (xallocx(threadEntry->elements, newByteSize, 0, MALLOCX_ZERO)
382                    == newByteSize);
383       }
384
385       // In-place growth failed.
386       if (!success) {
387         success = ((reallocated = static_cast<ElementWrapper*>(
388                     mallocx(newByteSize, MALLOCX_ZERO))) != nullptr);
389       }
390
391       if (success) {
392         // Expand to real size
393         assert(newByteSize / sizeof(ElementWrapper) >= newCapacity);
394         newCapacity = newByteSize / sizeof(ElementWrapper);
395       } else {
396         throw std::bad_alloc();
397       }
398     } else {  // no jemalloc
399       // calloc() is simpler than malloc() followed by memset(), and
400       // potentially faster when dealing with a lot of memory, as it can get
401       // already-zeroed pages from the kernel.
402       reallocated = static_cast<ElementWrapper*>(
403           calloc(newCapacity, sizeof(ElementWrapper)));
404       if (!reallocated) {
405         throw std::bad_alloc();
406       }
407     }
408
409     // Success, update the entry
410     {
411       std::lock_guard<std::mutex> g(meta.lock_);
412
413       if (prevCapacity == 0) {
414         meta.push_back(threadEntry);
415       }
416
417       if (reallocated) {
418        /*
419         * Note: we need to hold the meta lock when copying data out of
420         * the old vector, because some other thread might be
421         * destructing a ThreadLocal and writing to the elements vector
422         * of this thread.
423         */
424         memcpy(reallocated, threadEntry->elements,
425                sizeof(ElementWrapper) * prevCapacity);
426         using std::swap;
427         swap(reallocated, threadEntry->elements);
428       }
429       threadEntry->elementsCapacity = newCapacity;
430     }
431
432     free(reallocated);
433
434 #ifdef FOLLY_TLD_USE_FOLLY_TLS
435     if (prevCapacity == 0) {
436       pthread_setspecific(meta.pthreadKey_, &meta);
437     }
438 #endif
439   }
440
441   static ElementWrapper& get(uint32_t id) {
442     ThreadEntry* threadEntry = getThreadEntry();
443     if (UNLIKELY(threadEntry->elementsCapacity <= id)) {
444       reserve(id);
445       assert(threadEntry->elementsCapacity > id);
446     }
447     return threadEntry->elements[id];
448   }
449 };
450
451 #ifdef FOLLY_TLD_USE_FOLLY_TLS
452 template <class Tag>
453 FOLLY_TLS ThreadEntry StaticMeta<Tag>::threadEntry_ = {nullptr, 0,
454                                                        nullptr, nullptr};
455 #endif
456 template <class Tag> StaticMeta<Tag>* StaticMeta<Tag>::inst_ = nullptr;
457
458 }  // namespace threadlocal_detail
459 }  // namespace folly
460
461 #endif /* FOLLY_DETAIL_THREADLOCALDETAIL_H_ */