31624e869c
coolforkit: common/Log.cpp:677: void Log::shutdown(): Assertion `ThreadLocalBufferCount <= 1 && "Unstopped threads may have unflushed buffered log entries"' failed. Was caused by mis-accounting. Also join document threads on 'exit' which happens during unit tests to ensure we don't hit the above. Signed-off-by: Michael Meeks <michael.meeks@collabora.com> Change-Id: I523e723e54e4252ae0d65de36af086e97dd79f04
283 lines
9.3 KiB
C++
283 lines
9.3 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* Copyright the Collabora Online contributors.
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*/
|
|
/*
|
|
* The main entry point for the LibreOfficeKit process serving
|
|
* a document editing session.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include <Poco/URI.h>
|
|
#include <sysexits.h> // EX_OK
|
|
|
|
#include <sys/wait.h>
|
|
#include <sys/types.h>
|
|
|
|
#include <common/Seccomp.hpp>
|
|
#include <common/JsonUtil.hpp>
|
|
#include <common/TraceEvent.hpp>
|
|
#include <common/MessageQueue.hpp>
|
|
|
|
#include <Kit.hpp>
|
|
#include "KitWebSocket.hpp"
|
|
|
|
using Poco::Exception;
|
|
using Poco::URI;
|
|
|
|
void KitWebSocketHandler::handleMessage(const std::vector<char>& data)
|
|
{
|
|
// To get A LOT of Trace Events, to exercise their handling, uncomment this:
|
|
// ProfileZone profileZone("KitWebSocketHandler::handleMessage");
|
|
|
|
std::string message(data.data(), data.size());
|
|
|
|
if (!Util::isMobileApp() && UnitKit::get().filterKitMessage(this, message))
|
|
return;
|
|
|
|
StringVector tokens = StringVector::tokenize(message);
|
|
|
|
LOG_DBG(_socketName << ": recv [" << [&](auto& log) {
|
|
for (const auto& token : tokens)
|
|
{
|
|
// Don't log user-data, there are anonymized versions that get logged instead.
|
|
if (tokens.startsWith(token, "jail") || tokens.startsWith(token, "author") ||
|
|
tokens.startsWith(token, "name") || tokens.startsWith(token, "url"))
|
|
continue;
|
|
|
|
log << tokens.getParam(token) << ' ';
|
|
}
|
|
});
|
|
|
|
// Note: Syntax or parsing errors here are unexpected and fatal.
|
|
if (SigUtil::getTerminationFlag())
|
|
{
|
|
LOG_DBG("Too late, TerminationFlag is set, we're going down");
|
|
}
|
|
else if (tokens.equals(0, "session"))
|
|
{
|
|
const std::string& sessionId = tokens[1];
|
|
_docKey = tokens[2];
|
|
const std::string& docId = tokens[3];
|
|
const std::string fileId = Util::getFilenameFromURL(_docKey);
|
|
Util::mapAnonymized(fileId, fileId); // Identity mapping, since fileId is already obfuscated
|
|
|
|
std::string url;
|
|
URI::decode(_docKey, url);
|
|
#ifndef IOS
|
|
Util::setThreadName("kit" SHARED_DOC_THREADNAME_SUFFIX + docId);
|
|
#endif
|
|
if (!_document)
|
|
{
|
|
_document = std::make_shared<Document>(
|
|
_loKit, _jailId, _docKey, docId, url,
|
|
std::static_pointer_cast<WebSocketHandler>(shared_from_this()), _mobileAppDocId);
|
|
_ksPoll->setDocument(_document);
|
|
|
|
// We need to send the process name information to WSD if Trace Event recording is enabled (but
|
|
// not turned on) because it might be turned on later.
|
|
// We can do this only after creating the Document object.
|
|
TraceEvent::emitOneRecordingIfEnabled(
|
|
std::string("{\"name\":\"process_name\",\"ph\":\"M\",\"args\":{\"name\":\"") +
|
|
"Kit-" + docId + "\"},\"pid\":" + std::to_string(getpid()) +
|
|
",\"tid\":" + std::to_string(Util::getThreadId()) + "},\n");
|
|
}
|
|
|
|
// Validate and create session.
|
|
if (!(url == _document->getUrl() && _document->createSession(sessionId)))
|
|
{
|
|
LOG_DBG("CreateSession failed.");
|
|
}
|
|
}
|
|
|
|
else if (tokens.equals(0, "exit"))
|
|
{
|
|
if (!Util::isMobileApp())
|
|
{
|
|
LOG_INF("Terminating immediately due to parent 'exit' command.");
|
|
flushTraceEventRecordings();
|
|
// flushes logging
|
|
if (_document)
|
|
_document->joinThreads();
|
|
_document.reset();
|
|
if (!Util::isKitInProcess())
|
|
Util::forcedExit(EX_OK);
|
|
else
|
|
SigUtil::setTerminationFlag();
|
|
}
|
|
else
|
|
{
|
|
#ifdef IOS
|
|
LOG_INF("Setting our KitSocketPoll's termination flag due to 'exit' command.");
|
|
std::unique_lock<std::mutex> lock(_ksPoll->terminationMutex);
|
|
_ksPoll->terminationFlag = true;
|
|
_ksPoll->terminationCV.notify_all();
|
|
#else
|
|
LOG_INF("Setting TerminationFlag due to 'exit' command.");
|
|
SigUtil::setTerminationFlag();
|
|
#endif
|
|
_document.reset();
|
|
}
|
|
}
|
|
else if (tokens.equals(0, "tile") || tokens.equals(0, "tilecombine") ||
|
|
tokens.equals(0, "paintwindow") || tokens.equals(0, "resizewindow") ||
|
|
COOLProtocol::getFirstToken(tokens[0], '-') == "child")
|
|
{
|
|
if (_document)
|
|
{
|
|
_document->queueMessage(message);
|
|
}
|
|
else
|
|
{
|
|
LOG_WRN("No document while processing " << tokens[0] << " request.");
|
|
}
|
|
}
|
|
else if (tokens.size() == 3 && tokens.equals(0, "setconfig"))
|
|
{
|
|
#if !MOBILEAPP && !defined(BUILDING_TESTS)
|
|
// Currently only rlimit entries are supported.
|
|
if (!Rlimit::handleSetrlimitCommand(tokens))
|
|
{
|
|
LOG_ERR("Unknown setconfig command: " << message);
|
|
}
|
|
#endif
|
|
}
|
|
else if (tokens.equals(0, "setloglevel"))
|
|
{
|
|
Log::setLevel(tokens[1]);
|
|
}
|
|
else
|
|
{
|
|
LOG_ERR("Bad or unknown token [" << tokens[0] << ']');
|
|
}
|
|
}
|
|
|
|
void KitWebSocketHandler::enableProcessInput(bool enable)
|
|
{
|
|
LOG_TRC("Kit socket - input processing now: " <<
|
|
(enable ? "enabled" : "disabled") <<
|
|
" was " <<
|
|
(WebSocketHandler::processInputEnabled() ? "enabled" : "disabled"));
|
|
WebSocketHandler::enableProcessInput(enable);
|
|
|
|
// Wake up poll to process data from socket input buffer
|
|
if (enable && _ksPoll)
|
|
_ksPoll->wakeup();
|
|
}
|
|
|
|
void KitWebSocketHandler::shutdownForBackgroundSave()
|
|
{
|
|
// Don't shutdown the app when this socket closes
|
|
_backgroundSaver = true;
|
|
}
|
|
|
|
void KitWebSocketHandler::onDisconnect()
|
|
{
|
|
if (_backgroundSaver)
|
|
{
|
|
LOG_TRC("Ignoring hard disconnect of duplicate kit -> wsd socket in wsd");
|
|
return;
|
|
}
|
|
|
|
if (!Util::isMobileApp())
|
|
{
|
|
//FIXME: We could try to recover.
|
|
LOG_ERR("Kit for DocBroker ["
|
|
<< _docKey
|
|
<< "] connection lost without exit arriving from wsd. Setting TerminationFlag");
|
|
SigUtil::setTerminationFlag();
|
|
}
|
|
#ifdef IOS
|
|
{
|
|
std::unique_lock<std::mutex> lock(_ksPoll->terminationMutex);
|
|
_ksPoll->terminationFlag = true;
|
|
_ksPoll->terminationCV.notify_all();
|
|
}
|
|
#endif
|
|
_ksPoll.reset();
|
|
}
|
|
|
|
// transient background save child message handler
|
|
|
|
void BgSaveChildWebSocketHandler::handleMessage(const std::vector<char>& data)
|
|
{
|
|
LOG_DBG(_socketName << ": recv from parent [" <<
|
|
COOLProtocol::getAbbreviatedMessage(data));
|
|
}
|
|
|
|
void BgSaveChildWebSocketHandler::onDisconnect()
|
|
{
|
|
LOG_TRC("Disconnected background web socket to parent kit");
|
|
UnitKit::get().preBackgroundSaveExit();
|
|
Util::forcedExit(EX_OK);
|
|
}
|
|
|
|
BgSaveChildWebSocketHandler::~BgSaveChildWebSocketHandler()
|
|
{
|
|
LOG_TRC("Close web socket to parent kit");
|
|
}
|
|
|
|
// Kit handler for messages from transient background save Kit
|
|
|
|
void BgSaveParentWebSocketHandler::handleMessage(const std::vector<char>& data)
|
|
{
|
|
LOG_DBG(_socketName << ": recv from parent [" <<
|
|
COOLProtocol::getAbbreviatedMessage(data));
|
|
|
|
const StringVector tokens = StringVector::tokenize(data.data(), data.size());
|
|
|
|
// FIXME: check for badness - jsdialogs and so on and bail ... ?
|
|
|
|
// Should pass only:
|
|
// "error:", "asyncsave", "forcedtracevent", "unocommandresult:"
|
|
// "statusindicator[start|finish|setvalue]"
|
|
|
|
// Messages already include client-foo prefixes inherited from ourselves
|
|
_document->sendFrame(data.data(), data.size(), WSOpCode::Text);
|
|
|
|
// Status update messages are stuck in the bgsave's Idle CallbackFlushHandler
|
|
if (tokens[1] == "unocommandresult:")
|
|
{
|
|
std::string msg(data.data(), data.size());
|
|
Poco::JSON::Object::Ptr object;
|
|
if (JsonUtil::parseJSON(msg, object) &&
|
|
object->get("commandName").toString() == ".uno:Save")
|
|
{
|
|
if (object->get("success").toString() == "true")
|
|
{
|
|
// Force Modified state off, expecting a notification in a bit ...
|
|
LOG_TRC("Force modified state clear");
|
|
SigUtil::addActivity("Force clear modified");
|
|
_document->getLOKitDocument()->postUnoCommand(".uno:Modified", "{ \"Modified\": { \"type\": \"boolean\", \"value\": \"false\" } }", true);
|
|
#if 0
|
|
// Synthesize modified status change
|
|
std::string modMsg = tokens[0] + " statechanged: .uno:ModifiedStatus=false";
|
|
LOG_TRC("Synthesize modified status clear");
|
|
_document->sendFrame(modMsg.c_str(), modMsg.size(), WSOpCode::Text);
|
|
#endif
|
|
}
|
|
else
|
|
LOG_DBG("Failed to save, not synthesizing modified state");
|
|
}
|
|
}
|
|
}
|
|
|
|
void BgSaveParentWebSocketHandler::onDisconnect()
|
|
{
|
|
LOG_TRC("Disconnected background web socket to child " << _childPid);
|
|
// reap and de-zombify children.
|
|
int status = -1;
|
|
if (waitpid(_childPid, &status, WUNTRACED | WNOHANG) > 0)
|
|
LOG_TRC("Child " << _childPid << " terminated with status " << status);
|
|
else
|
|
LOG_TRC("Child disconnected but not terminated");
|
|
}
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|