qtestcase/Unix: remove fprintf from signal handler
It's not async-signal-safe, so don't use it. Instead, let's use writev() (which should write atomically and we won't need to have a buffer) and std::to_chars to format numbers where available (where not, we roll out our own implementation with divisions). Pick-to: 6.3 Change-Id: I5ff8e16fcdcb4ffd9ab6fffd16eb70a158f44864 Reviewed-by: Edward Welbourne <edward.welbourne@qt.io>
This commit is contained in:
parent
f1f29c35cb
commit
046bc971c3
@ -1,7 +1,7 @@
|
|||||||
/****************************************************************************
|
/****************************************************************************
|
||||||
**
|
**
|
||||||
** Copyright (C) 2022 The Qt Company Ltd.
|
** Copyright (C) 2022 The Qt Company Ltd.
|
||||||
** Copyright (C) 2016 Intel Corporation.
|
** Copyright (C) 2022 Intel Corporation.
|
||||||
** Contact: https://www.qt.io/licensing/
|
** Contact: https://www.qt.io/licensing/
|
||||||
**
|
**
|
||||||
** This file is part of the QtTest module of the Qt Toolkit.
|
** This file is part of the QtTest module of the Qt Toolkit.
|
||||||
@ -82,12 +82,20 @@
|
|||||||
#include <QtTest/private/qappletestlogger_p.h>
|
#include <QtTest/private/qappletestlogger_p.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <cmath>
|
|
||||||
#include <numeric>
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <mutex>
|
#include <array>
|
||||||
|
#if !defined(Q_OS_INTEGRITY) || __GHS_VERSION_NUMBER > 202014
|
||||||
|
# include <charconv>
|
||||||
|
#else
|
||||||
|
// Broken implementation, causes link failures just by #include'ing!
|
||||||
|
# undef __cpp_lib_to_chars // in case <version> was included
|
||||||
|
#endif
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
|
#include <cmath>
|
||||||
|
#include <limits>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <mutex>
|
||||||
|
#include <numeric>
|
||||||
|
|
||||||
#include <stdarg.h>
|
#include <stdarg.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
@ -108,6 +116,7 @@
|
|||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
#include <signal.h>
|
#include <signal.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <sys/uio.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
# if !defined(Q_OS_INTEGRITY)
|
# if !defined(Q_OS_INTEGRITY)
|
||||||
# include <sys/resource.h>
|
# include <sys/resource.h>
|
||||||
@ -130,6 +139,86 @@ using namespace Qt::StringLiterals;
|
|||||||
using QtMiscUtils::toHexUpper;
|
using QtMiscUtils::toHexUpper;
|
||||||
using QtMiscUtils::fromHex;
|
using QtMiscUtils::fromHex;
|
||||||
|
|
||||||
|
#ifdef Q_OS_UNIX
|
||||||
|
namespace {
|
||||||
|
static struct iovec IoVec(struct iovec vec)
|
||||||
|
{
|
||||||
|
return vec;
|
||||||
|
}
|
||||||
|
static struct iovec IoVec(const char *str)
|
||||||
|
{
|
||||||
|
struct iovec r = {};
|
||||||
|
r.iov_base = const_cast<char *>(str);
|
||||||
|
r.iov_len = strlen(str);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
|
|
||||||
|
template <typename... Args> static void writeToStderr(Args &&... args)
|
||||||
|
{
|
||||||
|
struct iovec vec[] = { IoVec(std::forward<Args>(args))... };
|
||||||
|
::writev(STDERR_FILENO, vec, std::size(vec));
|
||||||
|
}
|
||||||
|
|
||||||
|
// async-signal-safe conversion from int to string
|
||||||
|
struct AsyncSafeIntBuffer
|
||||||
|
{
|
||||||
|
// digits10 + 1 for all possible digits
|
||||||
|
// +1 for the sign
|
||||||
|
// +1 for the terminating null
|
||||||
|
static constexpr int Digits10 = std::numeric_limits<int>::digits10 + 3;
|
||||||
|
std::array<char, Digits10> array;
|
||||||
|
constexpr AsyncSafeIntBuffer() : array{} {} // initializes array
|
||||||
|
AsyncSafeIntBuffer(Qt::Initialization) {} // leaves array uninitialized
|
||||||
|
};
|
||||||
|
|
||||||
|
static struct iovec asyncSafeToString(int n, AsyncSafeIntBuffer &&result = Qt::Uninitialized)
|
||||||
|
{
|
||||||
|
char *ptr = result.array.data();
|
||||||
|
if (false) {
|
||||||
|
#ifdef __cpp_lib_to_chars
|
||||||
|
} else if (auto r = std::to_chars(ptr, ptr + result.array.size(), n, 10); r.ec == std::errc{}) {
|
||||||
|
ptr = r.ptr;
|
||||||
|
#endif
|
||||||
|
} else {
|
||||||
|
// handle the sign
|
||||||
|
if (n < 0) {
|
||||||
|
*ptr++ = '-';
|
||||||
|
n = -n;
|
||||||
|
}
|
||||||
|
|
||||||
|
// find the highest power of the base that is less than this number
|
||||||
|
static constexpr int StartingDivider = ([]() {
|
||||||
|
int divider = 1;
|
||||||
|
for (int i = 0; i < std::numeric_limits<int>::digits10; ++i)
|
||||||
|
divider *= 10;
|
||||||
|
return divider;
|
||||||
|
}());
|
||||||
|
int divider = StartingDivider;
|
||||||
|
while (divider && n < divider)
|
||||||
|
divider /= 10;
|
||||||
|
|
||||||
|
// now convert to string
|
||||||
|
while (divider > 1) {
|
||||||
|
int quot = n / divider;
|
||||||
|
n = n % divider;
|
||||||
|
divider /= 10;
|
||||||
|
*ptr++ = quot + '0';
|
||||||
|
}
|
||||||
|
*ptr++ = n + '0';
|
||||||
|
}
|
||||||
|
|
||||||
|
#ifndef QT_NO_DEBUG
|
||||||
|
// this isn't necessary, it just helps in the debugger
|
||||||
|
*ptr = '\0';
|
||||||
|
#endif
|
||||||
|
struct iovec r;
|
||||||
|
r.iov_base = result.array.data();
|
||||||
|
r.iov_len = ptr - result.array.data();
|
||||||
|
return r;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
#endif // Q_OS_UNIX
|
||||||
|
|
||||||
static bool debuggerPresent()
|
static bool debuggerPresent()
|
||||||
{
|
{
|
||||||
#if defined(Q_OS_LINUX)
|
#if defined(Q_OS_LINUX)
|
||||||
@ -1870,13 +1959,16 @@ private:
|
|||||||
if (signum != SIGINT) {
|
if (signum != SIGINT) {
|
||||||
stackTrace();
|
stackTrace();
|
||||||
if (qEnvironmentVariableIsSet("QTEST_PAUSE_ON_CRASH")) {
|
if (qEnvironmentVariableIsSet("QTEST_PAUSE_ON_CRASH")) {
|
||||||
fprintf(stderr, "Pausing process %d for debugging\n", getpid());
|
writeToStderr("Pausing process ", asyncSafeToString(getpid()),
|
||||||
|
" for debugging\n");
|
||||||
raise(SIGSTOP);
|
raise(SIGSTOP);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
qFatal("Received signal %d\n"
|
|
||||||
" Function time: %dms Total time: %dms",
|
writeToStderr("Received signal ", asyncSafeToString(signum),
|
||||||
signum, msecsFunctionTime, msecsTotalTime);
|
"\n Function time: ", asyncSafeToString(msecsFunctionTime),
|
||||||
|
"ms Total time: ", asyncSafeToString(msecsTotalTime), "ms\n");
|
||||||
|
std::abort();
|
||||||
# if defined(Q_OS_INTEGRITY)
|
# if defined(Q_OS_INTEGRITY)
|
||||||
{
|
{
|
||||||
struct sigaction act;
|
struct sigaction act;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user