1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
|
/*
* Copyright (C) 2014 Aaron Seigo <aseigo@kde.org>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the
* Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
#include <QGuiApplication>
#include <QLockFile>
#include <QDir>
#include <signal.h>
#ifndef Q_OS_WIN
#include <execinfo.h>
#endif
#include <csignal>
#include <iostream>
#include <cstdlib>
#include <ostream>
#include <sstream>
#include <thread>
#include <chrono>
#ifndef Q_OS_WIN
#include <unistd.h>
#include <cxxabi.h>
#include <dlfcn.h>
#else
#include <io.h>
#include <process.h>
#endif
#include "listener.h"
#include "log.h"
#include "test.h"
#include "definitions.h"
#ifdef Q_OS_OSX
#include <CoreFoundation/CoreFoundation.h>
#endif
static Listener *listener = nullptr;
//Print a demangled stacktrace
void printStacktrace()
{
#ifndef Q_OS_WIN
int skip = 1;
void *callstack[128];
const int nMaxFrames = sizeof(callstack) / sizeof(callstack[0]);
char buf[1024];
int nFrames = backtrace(callstack, nMaxFrames);
char **symbols = backtrace_symbols(callstack, nFrames);
std::ostringstream trace_buf;
for (int i = skip; i < nFrames; i++) {
// printf("%s\n", symbols[i]);
Dl_info info;
if (dladdr(callstack[i], &info) && info.dli_sname) {
char *demangled = NULL;
int status = -1;
if (info.dli_sname[0] == '_') {
demangled = abi::__cxa_demangle(info.dli_sname, NULL, 0, &status);
}
snprintf(buf, sizeof(buf), "%-3d %*p %s + %zd\n",
i, int(2 + sizeof(void*) * 2), callstack[i],
status == 0 ? demangled :
info.dli_sname == 0 ? symbols[i] : info.dli_sname,
(char *)callstack[i] - (char *)info.dli_saddr);
free(demangled);
} else {
snprintf(buf, sizeof(buf), "%-3d %*p %s\n",
i, int(2 + sizeof(void*) * 2), callstack[i], symbols[i]);
}
trace_buf << buf;
}
free(symbols);
if (nFrames == nMaxFrames) {
trace_buf << "[truncated]\n";
}
std::cerr << trace_buf.str();
#endif
}
static int sCounter = 0;
void crashHandler(int signal)
{
//Guard against crashing in here
if (sCounter > 1) {
std::_Exit(EXIT_FAILURE);
}
sCounter++;
if (signal == SIGABRT) {
std::cerr << "SIGABRT received\n";
} else if (signal == SIGSEGV) {
std::cerr << "SIGSEV received\n";
} else {
std::cerr << "Unexpected signal " << signal << " received\n";
}
printStacktrace();
//Get the word out that we're going down
listener->emergencyAbortAllConnections();
std::fprintf(stdout, "Sleeping for 10s to attach a debugger: gdb attach %i\n", getpid());
std::this_thread::sleep_for(std::chrono::seconds(10));
// std::system("exec gdb -p \"$PPID\" -ex \"thread apply all bt\"");
// This only works if we actually have xterm and X11 available
// std::system("exec xterm -e gdb -p \"$PPID\"");
std::_Exit(EXIT_FAILURE);
}
void terminateHandler()
{
std::exception_ptr exptr = std::current_exception();
if (exptr != 0)
{
// the only useful feature of std::exception_ptr is that it can be rethrown...
try {
std::rethrow_exception(exptr);
} catch (std::exception &ex) {
std::fprintf(stderr, "Terminated due to exception: %s\n", ex.what());
} catch (...) {
std::fprintf(stderr, "Terminated due to unknown exception\n");
}
} else {
std::fprintf(stderr, "Terminated due to unknown reason :(\n");
}
std::abort();
}
/*
* We capture all qt debug messages in the same process and feed it into the sink debug system.
* This way we get e.g. kimap debug messages as well together with the rest.
*/
void qtMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg)
{
QByteArray localMsg = msg.toLocal8Bit();
switch (type) {
case QtDebugMsg:
Sink::Log::debugStream(Sink::Log::DebugLevel::Trace, context.line, context.file, context.function, context.category) << msg;
break;
case QtInfoMsg:
Sink::Log::debugStream(Sink::Log::DebugLevel::Log, context.line, context.file, context.function, context.category) << msg;
break;
case QtWarningMsg:
Sink::Log::debugStream(Sink::Log::DebugLevel::Warning, context.line, context.file, context.function, context.category) << msg;
break;
case QtCriticalMsg:
Sink::Log::debugStream(Sink::Log::DebugLevel::Error, context.line, context.file, context.function, context.category) << msg;
break;
case QtFatalMsg:
Sink::Log::debugStream(Sink::Log::DebugLevel::Error, context.line, context.file, context.function, context.category) << msg;
abort();
}
}
QString read(const QString &filename)
{
QFile file{filename};
file.open(QIODevice::ReadOnly);
return file.readAll();
}
void printStats()
{
#if defined(Q_OS_LINUX)
/*
* See 'man proc' for details
*/
{
auto statm = read("/proc/self/statm").split(' ');
SinkLog() << "Program size:" << statm.value(0).toInt() << "pages";
SinkLog() << "RSS:"<< statm.value(1).toInt() << "pages";
SinkLog() << "Resident Shared:" << statm.value(2).toInt() << "pages";
SinkLog() << "Text (code):" << statm.value(3).toInt() << "pages";
SinkLog() << "Data (data + stack):" << statm.value(5).toInt() << "pages";
}
{
auto stat = read("/proc/self/stat").split(' ');
SinkLog() << "Minor page faults: " << stat.value(10).toInt();
SinkLog() << "Children minor page faults: " << stat.value(11).toInt();
SinkLog() << "Major page faults: " << stat.value(12).toInt();
SinkLog() << "Children major page faults: " << stat.value(13).toInt();
}
//Dump the complete memory map for the process
// std::cout << "smaps: " << read("/proc/self/smaps").toStdString();
//Dump all sorts of stats for the process
// std::cout << read("/proc/self/status").toStdString();
{
auto io = read("/proc/self/io").split('\n');
QHash<QString, QString> hash;
for (const auto &s : io) {
const auto parts = s.split(": ");
hash.insert(parts.value(0), parts.value(1));
}
SinkLog() << "Read syscalls: " << hash.value("syscr").toInt();
SinkLog() << "Write syscalls: " << hash.value("syscw").toInt();
SinkLog() << "Read from disk: " << hash.value("read_bytes").toInt() / 1024 << "kb";
SinkLog() << "Written to disk: " << hash.value("write_bytes").toInt() / 1024 << "kb";
SinkLog() << "Cancelled write bytes: " << hash.value("cancelled_write_bytes").toInt();
}
#endif
}
int main(int argc, char *argv[])
{
if (qEnvironmentVariableIsSet("SINK_GDB_DEBUG")) {
#ifndef Q_OS_WIN
SinkWarning() << "Running resource in debug mode and waiting for gdb to attach: gdb attach " << getpid();
raise(SIGSTOP);
#endif
} else {
// For crashes
std::signal(SIGSEGV, crashHandler);
std::signal(SIGABRT, crashHandler);
std::set_terminate(terminateHandler);
}
qInstallMessageHandler(qtMessageHandler);
#ifdef Q_OS_OSX
//Necessary to hide this QGuiApplication from the dock and application switcher on mac os.
if (CFBundleRef mainBundle = CFBundleGetMainBundle()) {
// get the application's Info Dictionary. For app bundles this would live in the bundle's Info.plist,
if (CFMutableDictionaryRef infoDict = (CFMutableDictionaryRef) CFBundleGetInfoDictionary(mainBundle)) {
// Add or set the "LSUIElement" key with/to value "1". This can simply be a CFString.
CFDictionarySetValue(infoDict, CFSTR("LSUIElement"), CFSTR("1"));
// That's it. We're now considered as an "agent" by the window server, and thus will have
// neither menubar nor presence in the Dock or App Switcher.
}
}
#endif
QGuiApplication app(argc, argv);
app.setQuitLockEnabled(false);
QByteArrayList arguments;
for (int i = 0; i < argc; i++) {
arguments << argv[i];
}
if (arguments.contains("--test")) {
SinkLog() << "Running in test-mode";
arguments.removeAll("--test");
Sink::Test::setTestModeEnabled(true);
}
if (arguments.count() < 3) {
SinkWarning() << "Not enough args passed, no resource loaded.";
return app.exec();
}
const QByteArray instanceIdentifier = arguments.at(1);
const QByteArray resourceType = arguments.at(2);
app.setApplicationName(instanceIdentifier);
Sink::Log::setPrimaryComponent(instanceIdentifier);
SinkLog() << "Starting: " << instanceIdentifier << resourceType;
QDir{}.mkpath(Sink::resourceStorageLocation(instanceIdentifier));
QLockFile lockfile(Sink::storageLocation() + QString("/%1.lock").arg(QString(instanceIdentifier)));
lockfile.setStaleLockTime(500);
if (!lockfile.tryLock(0)) {
const auto error = lockfile.error();
if (error == QLockFile::LockFailedError) {
qint64 pid;
QString hostname, appname;
lockfile.getLockInfo(&pid, &hostname, &appname);
SinkWarning() << "Failed to acquire exclusive resource lock.";
SinkLog() << "Pid:" << pid << "Host:" << hostname << "App:" << appname;
} else {
SinkError() << "Error while trying to acquire exclusive resource lock: " << error;
}
return -1;
}
listener = new Listener(instanceIdentifier, resourceType, &app);
listener->checkForUpgrade();
QObject::connect(&app, &QCoreApplication::aboutToQuit, listener, &Listener::closeAllConnections);
QObject::connect(listener, &Listener::noClients, &app, &QCoreApplication::quit);
auto ret = app.exec();
SinkLog() << "Exiting: " << instanceIdentifier;
printStats();
return ret;
}
|