foundationdb/flow/SignalSafeUnwind.cpp

59 lines
1.7 KiB
C++
Raw Normal View History

2017-05-26 04:48:44 +08:00
/*
* SignalSafeUnwind.cpp
*
* This source file is part of the FoundationDB open source project
*
* Copyright 2013-2018 Apple Inc. and the FoundationDB project authors
*
2017-05-26 04:48:44 +08:00
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
2017-05-26 04:48:44 +08:00
* http://www.apache.org/licenses/LICENSE-2.0
*
2017-05-26 04:48:44 +08:00
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "flow/SignalSafeUnwind.h"
2017-05-26 04:48:44 +08:00
int64_t dl_iterate_phdr_calls = 0;
#ifdef __linux__
#include <link.h>
#include <mutex>
2017-05-26 04:48:44 +08:00
static int (*chain_dl_iterate_phdr)(
int (*callback) (struct dl_phdr_info *info, size_t size, void *data),
void *data) = nullptr;
2017-05-26 04:48:44 +08:00
static void initChain() {
static std::once_flag flag;
2018-07-18 23:40:26 +08:00
// Ensure that chain_dl_iterate_phdr points to the "real" function that we are overriding
std::call_once(flag, [](){ *(void**)&chain_dl_iterate_phdr = dlsym(RTLD_NEXT, "dl_iterate_phdr"); });
if (!chain_dl_iterate_phdr) {
2018-07-18 23:40:26 +08:00
criticalError(FDB_EXIT_ERROR, "SignalSafeUnwindError", "Unable to find dl_iterate_phdr symbol");
}
2017-05-26 04:48:44 +08:00
}
// This overrides the function in libc!
extern "C" int dl_iterate_phdr(
2018-07-18 23:40:26 +08:00
int (*callback) (struct dl_phdr_info *info, size_t size, void *data),
2017-05-26 04:48:44 +08:00
void *data)
{
2018-07-18 23:40:26 +08:00
interlockedIncrement64(&dl_iterate_phdr_calls);
initChain();
setProfilingEnabled(0);
int result = chain_dl_iterate_phdr(callback, data);
setProfilingEnabled(1);
return result;
2017-05-26 04:48:44 +08:00
}
#endif