e45358ab8f
Signed-off-by: Gabriel Masei <gabriel.masei@1and1.ro> Change-Id: Ia65f0eeca8a9eccca17359bcb784b82ab6740317
449 lines
14 KiB
C++
449 lines
14 KiB
C++
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
|
|
/*
|
|
* 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/.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <cmath>
|
|
#include <ctime>
|
|
#include <list>
|
|
#include <memory>
|
|
#include <set>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include <common/Log.hpp>
|
|
#include "Util.hpp"
|
|
#include "net/WebSocketHandler.hpp"
|
|
|
|
struct DocumentAggregateStats;
|
|
|
|
/// A client view in Admin controller.
|
|
class View
|
|
{
|
|
public:
|
|
View(std::string sessionId, std::string userName, std::string userId)
|
|
: _sessionId(std::move(sessionId))
|
|
, _userName(std::move(userName))
|
|
, _userId(std::move(userId))
|
|
, _start(std::time(nullptr))
|
|
, _loadDuration(0)
|
|
{
|
|
}
|
|
|
|
void expire() { _end = std::time(nullptr); }
|
|
std::string getUserName() const { return _userName; }
|
|
std::string getUserId() const { return _userId; }
|
|
std::string getSessionId() const { return _sessionId; }
|
|
bool isExpired() const { return _end != 0 && std::time(nullptr) >= _end; }
|
|
std::chrono::milliseconds getLoadDuration() const { return _loadDuration; }
|
|
void setLoadDuration(std::chrono::milliseconds loadDuration) { _loadDuration = loadDuration; }
|
|
|
|
private:
|
|
const std::string _sessionId;
|
|
const std::string _userName;
|
|
const std::string _userId;
|
|
const std::time_t _start;
|
|
std::time_t _end = 0;
|
|
std::chrono::milliseconds _loadDuration;
|
|
};
|
|
|
|
struct DocCleanupSettings
|
|
{
|
|
void setEnable(bool enable) { _enable = enable; }
|
|
bool getEnable() const { return _enable; }
|
|
void setCleanupInterval(size_t cleanupInterval) { _cleanupInterval = cleanupInterval; }
|
|
size_t getCleanupInterval() const { return _cleanupInterval; }
|
|
void setBadBehaviorPeriod(size_t badBehaviorPeriod) { _badBehaviorPeriod = badBehaviorPeriod; }
|
|
size_t getBadBehaviorPeriod() const { return _badBehaviorPeriod; }
|
|
void setIdleTime(size_t idleTime) { _idleTime = idleTime; }
|
|
size_t getIdleTime() { return _idleTime; }
|
|
void setLimitDirtyMem(size_t limitDirtyMem) { _limitDirtyMem = limitDirtyMem; }
|
|
size_t getLimitDirtyMem() const { return _limitDirtyMem; }
|
|
void setLimitCpu(size_t limitCpu) { _limitCpu = limitCpu; }
|
|
size_t getLimitCpu() const { return _limitCpu; }
|
|
void setLostKitGracePeriod(size_t lostKitGracePeriod) { _lostKitGracePeriod = lostKitGracePeriod; }
|
|
size_t getLostKitGracePeriod() { return _lostKitGracePeriod; }
|
|
|
|
private:
|
|
bool _enable;
|
|
size_t _cleanupInterval;
|
|
size_t _badBehaviorPeriod;
|
|
size_t _idleTime;
|
|
size_t _limitDirtyMem;
|
|
size_t _limitCpu;
|
|
size_t _lostKitGracePeriod;
|
|
};
|
|
|
|
struct DocProcSettings
|
|
{
|
|
void setLimitVirtMemMb(size_t limitVirtMemMb) { _limitVirtMemMb = limitVirtMemMb; }
|
|
size_t getLimitVirtMemMb() const { return _limitVirtMemMb; }
|
|
void setLimitStackMemKb(size_t limitStackMemKb) { _limitStackMemKb = limitStackMemKb; }
|
|
size_t getLimitStackMemKb() const { return _limitStackMemKb; }
|
|
void setLimitFileSizeMb(size_t limitFileSizeMb) { _limitFileSizeMb = limitFileSizeMb; }
|
|
size_t getLimitFileSizeMb() const { return _limitFileSizeMb; }
|
|
void setLimitNumberOpenFiles(size_t limitNumberOpenFiles) { _limitNumberOpenFiles = limitNumberOpenFiles; }
|
|
size_t getLimitNumberOpenFiles() const { return _limitNumberOpenFiles; }
|
|
|
|
DocCleanupSettings& getCleanupSettings() { return _docCleanupSettings; }
|
|
|
|
private:
|
|
size_t _limitVirtMemMb;
|
|
size_t _limitStackMemKb;
|
|
size_t _limitFileSizeMb;
|
|
size_t _limitNumberOpenFiles;
|
|
|
|
DocCleanupSettings _docCleanupSettings;
|
|
};
|
|
|
|
/// Containing basic information about document
|
|
class DocBasicInfo
|
|
{
|
|
std::string _docKey;
|
|
std::time_t _idleTime;
|
|
int _mem;
|
|
bool _saved;
|
|
|
|
public:
|
|
DocBasicInfo(std::string docKey, std::time_t idleTime, int mem, bool saved)
|
|
: _docKey(std::move(docKey))
|
|
, _idleTime(idleTime)
|
|
, _mem(mem)
|
|
, _saved(saved)
|
|
{
|
|
}
|
|
|
|
const std::string& getDocKey() const { return _docKey; }
|
|
|
|
std::time_t getIdleTime() const { return _idleTime; }
|
|
|
|
int getMem() const { return _mem; }
|
|
|
|
bool getSaved() const { return _saved; }
|
|
};
|
|
|
|
/// A document in Admin controller.
|
|
class Document
|
|
{
|
|
// cf. FILE* member.
|
|
Document(const Document &) = delete;
|
|
Document& operator = (const Document &) = delete;
|
|
|
|
public:
|
|
Document(std::string docKey, pid_t pid, std::string filename, std::string wopiHost)
|
|
: _docKey(std::move(docKey))
|
|
, _pid(pid)
|
|
, _activeViews(0)
|
|
, _filename(std::move(filename))
|
|
, _wopiHost(std::move(wopiHost))
|
|
, _memoryDirty(0)
|
|
, _lastJiffy(0)
|
|
, _lastCpuPercentage(0)
|
|
, _start(std::time(nullptr))
|
|
, _lastActivity(_start)
|
|
, _end(0)
|
|
, _sentBytes(0)
|
|
, _recvBytes(0)
|
|
, _wopiDownloadDuration(0)
|
|
, _wopiUploadDuration(0)
|
|
, _procSMaps(nullptr)
|
|
, _lastTimeSMapsRead(0)
|
|
, _isModified(false)
|
|
, _hasMemDirtyChanged(true)
|
|
, _badBehaviorDetectionTime(0)
|
|
, _abortTime(0)
|
|
{
|
|
}
|
|
|
|
~Document()
|
|
{
|
|
if (_procSMaps)
|
|
fclose(_procSMaps);
|
|
}
|
|
|
|
std::string getDocKey() const { return _docKey; }
|
|
|
|
pid_t getPid() const { return _pid; }
|
|
|
|
std::string getFilename() const { return _filename; }
|
|
|
|
std::string getHostName() const { return _wopiHost; }
|
|
|
|
bool isExpired() const { return _end != 0 && std::time(nullptr) >= _end; }
|
|
|
|
std::time_t getElapsedTime() const { return std::time(nullptr) - _start; }
|
|
|
|
std::time_t getIdleTime() const { return std::time(nullptr) - _lastActivity; }
|
|
|
|
void addView(const std::string& sessionId, const std::string& userName, const std::string& userId);
|
|
|
|
int expireView(const std::string& sessionId);
|
|
|
|
unsigned getActiveViews() const { return _activeViews; }
|
|
|
|
unsigned getLastJiffies() const { return _lastJiffy; }
|
|
void setLastJiffies(size_t newJ);
|
|
unsigned getLastCpuPercentage(){ return _lastCpuPercentage; }
|
|
|
|
const std::map<std::string, View>& getViews() const { return _views; }
|
|
|
|
void updateLastActivityTime() { _lastActivity = std::time(nullptr); }
|
|
void updateMemoryDirty();
|
|
size_t getMemoryDirty() const { return _memoryDirty; }
|
|
|
|
std::pair<std::time_t, std::string> getSnapshot() const;
|
|
const std::string getHistory() const;
|
|
void takeSnapshot();
|
|
|
|
void setModified(bool value) { _isModified = value; }
|
|
bool getModifiedStatus() const { return _isModified; }
|
|
|
|
void addBytes(uint64_t sent, uint64_t recv)
|
|
{
|
|
_sentBytes += sent;
|
|
_recvBytes += recv;
|
|
}
|
|
|
|
std::time_t getOpenTime() const { return isExpired() ? _end - _start : getElapsedTime(); }
|
|
uint64_t getSentBytes() const { return _sentBytes; }
|
|
uint64_t getRecvBytes() const { return _recvBytes; }
|
|
void setViewLoadDuration(const std::string& sessionId, std::chrono::milliseconds viewLoadDuration);
|
|
void setWopiDownloadDuration(std::chrono::milliseconds wopiDownloadDuration) { _wopiDownloadDuration = wopiDownloadDuration; }
|
|
std::chrono::milliseconds getWopiDownloadDuration() const { return _wopiDownloadDuration; }
|
|
void setWopiUploadDuration(const std::chrono::milliseconds wopiUploadDuration) { _wopiUploadDuration = wopiUploadDuration; }
|
|
std::chrono::milliseconds getWopiUploadDuration() const { return _wopiUploadDuration; }
|
|
void setProcSMapsFD(const int smapsFD) { _procSMaps = fdopen(smapsFD, "r"); }
|
|
bool hasMemDirtyChanged() const { return _hasMemDirtyChanged; }
|
|
void setMemDirtyChanged(bool changeStatus) { _hasMemDirtyChanged = changeStatus; }
|
|
time_t getBadBehaviorDetectionTime() const { return _badBehaviorDetectionTime; }
|
|
void setBadBehaviorDetectionTime(time_t badBehaviorDetectionTime){ _badBehaviorDetectionTime = badBehaviorDetectionTime;}
|
|
time_t getAbortTime() const { return _abortTime; }
|
|
void setAbortTime(time_t abortTime) { _abortTime = abortTime; }
|
|
|
|
std::string to_string() const;
|
|
|
|
private:
|
|
const std::string _docKey;
|
|
const pid_t _pid;
|
|
/// SessionId mapping to View object
|
|
std::map<std::string, View> _views;
|
|
/// Total number of active views
|
|
unsigned _activeViews;
|
|
/// Hosted filename
|
|
std::string _filename;
|
|
|
|
std::string _wopiHost;
|
|
/// The dirty (ie. un-shared) memory of the document's Kit process.
|
|
size_t _memoryDirty;
|
|
/// Last noted Jiffy count
|
|
unsigned _lastJiffy;
|
|
std::chrono::steady_clock::time_point _lastJiffyTime;
|
|
unsigned _lastCpuPercentage;
|
|
|
|
std::time_t _start;
|
|
std::time_t _lastActivity;
|
|
std::time_t _end;
|
|
std::map<std::time_t,std::string> _snapshots;
|
|
|
|
/// Total bytes sent and recv'd by this document.
|
|
uint64_t _sentBytes, _recvBytes;
|
|
|
|
//Download/upload duration from/to storage for this document
|
|
std::chrono::milliseconds _wopiDownloadDuration;
|
|
std::chrono::milliseconds _wopiUploadDuration;
|
|
|
|
FILE* _procSMaps;
|
|
std::time_t _lastTimeSMapsRead;
|
|
|
|
bool _isModified;
|
|
bool _hasMemDirtyChanged;
|
|
|
|
std::time_t _badBehaviorDetectionTime;
|
|
std::time_t _abortTime;
|
|
};
|
|
|
|
/// An Admin session subscriber.
|
|
class Subscriber
|
|
{
|
|
public:
|
|
explicit Subscriber(std::weak_ptr<WebSocketHandler> ws)
|
|
: _ws(std::move(ws))
|
|
, _start(std::time(nullptr))
|
|
{
|
|
LOG_INF("Subscriber ctor.");
|
|
}
|
|
|
|
~Subscriber()
|
|
{
|
|
LOG_INF("Subscriber dtor.");
|
|
}
|
|
|
|
bool notify(const std::string& message);
|
|
|
|
bool subscribe(const std::string& command);
|
|
|
|
void unsubscribe(const std::string& command);
|
|
|
|
void expire() { _end = std::time(nullptr); }
|
|
|
|
bool isExpired() const { return _end != 0 && std::time(nullptr) >= _end; }
|
|
|
|
private:
|
|
/// The underlying AdminRequestHandler
|
|
std::weak_ptr<WebSocketHandler> _ws;
|
|
|
|
std::set<std::string> _subscriptions;
|
|
|
|
std::time_t _start;
|
|
std::time_t _end = 0;
|
|
};
|
|
|
|
/// The Admin controller implementation.
|
|
class AdminModel
|
|
{
|
|
AdminModel(const AdminModel &) = delete;
|
|
AdminModel& operator = (const AdminModel &) = delete;
|
|
public:
|
|
AdminModel() :
|
|
_segFaultCount(0),
|
|
_owner(std::this_thread::get_id())
|
|
{
|
|
LOG_INF("AdminModel ctor.");
|
|
}
|
|
|
|
~AdminModel();
|
|
|
|
/// All methods here must be called from the Admin socket-poll
|
|
void setThreadOwner(const std::thread::id &id) { _owner = id; }
|
|
|
|
/// In debug mode check that code is running in the correct thread.
|
|
/// Asserts in the debug builds, otherwise just logs.
|
|
void assertCorrectThread() const;
|
|
|
|
std::string query(const std::string& command);
|
|
std::string getAllHistory() const;
|
|
|
|
/// Returns memory consumed by all active loolkit processes
|
|
unsigned getKitsMemoryUsage();
|
|
size_t getKitsJiffies();
|
|
|
|
void subscribe(int sessionId, const std::weak_ptr<WebSocketHandler>& ws);
|
|
void subscribe(int sessionId, const std::string& command);
|
|
|
|
void unsubscribe(int sessionId, const std::string& command);
|
|
|
|
void modificationAlert(const std::string& docKey, pid_t pid, bool value);
|
|
|
|
void clearMemStats() { _memStats.clear(); }
|
|
|
|
void clearCpuStats() { _cpuStats.clear(); }
|
|
|
|
void addMemStats(unsigned memUsage);
|
|
|
|
void addCpuStats(unsigned cpuUsage);
|
|
|
|
void addSentStats(uint64_t sent);
|
|
|
|
void addRecvStats(uint64_t recv);
|
|
|
|
void setCpuStatsSize(unsigned size);
|
|
|
|
void setMemStatsSize(unsigned size);
|
|
|
|
void notify(const std::string& message);
|
|
|
|
void addDocument(const std::string& docKey, pid_t pid, const std::string& filename,
|
|
const std::string& sessionId, const std::string& userName, const std::string& userId,
|
|
const int smapsFD, const std::string& URI);
|
|
|
|
void removeDocument(const std::string& docKey, const std::string& sessionId);
|
|
void removeDocument(const std::string& docKey);
|
|
|
|
void updateLastActivityTime(const std::string& docKey);
|
|
|
|
void addBytes(const std::string& docKey, uint64_t sent, uint64_t recv);
|
|
|
|
uint64_t getSentBytesTotal() { return _sentBytesTotal; }
|
|
uint64_t getRecvBytesTotal() { return _recvBytesTotal; }
|
|
|
|
static double getServerUptimeSecs();
|
|
|
|
/// Document basic info list sorted by most idle time
|
|
std::vector<DocBasicInfo> getDocumentsSortedByIdle() const;
|
|
void cleanupResourceConsumingDocs();
|
|
|
|
void setViewLoadDuration(const std::string& docKey, const std::string& sessionId, std::chrono::milliseconds viewLoadDuration);
|
|
void setDocWopiDownloadDuration(const std::string& docKey, std::chrono::milliseconds wopiDownloadDuration);
|
|
void setDocWopiUploadDuration(const std::string& docKey, const std::chrono::milliseconds wopiUploadDuration);
|
|
void addSegFaultCount(unsigned segFaultCount);
|
|
void setForKitPid(pid_t pid) { _forKitPid = pid; }
|
|
void addLostKitsTerminated(unsigned lostKitsTerminated);
|
|
|
|
void getMetrics(std::ostringstream &oss);
|
|
|
|
std::set<pid_t> getDocumentPids() const;
|
|
void UpdateMemoryDirty();
|
|
void notifyDocsMemDirtyChanged();
|
|
|
|
const DocProcSettings& getDefDocProcSettings() const { return _defDocProcSettings; }
|
|
void setDefDocProcSettings(const DocProcSettings& docProcSettings) { _defDocProcSettings = docProcSettings; }
|
|
|
|
static int getPidsFromProcName(const std::regex& procNameRegEx, std::vector<int> *pids);
|
|
static int getAssignedKitPids(std::vector<int> *pids);
|
|
static int getUnassignedKitPids(std::vector<int> *pids);
|
|
static int getKitPidsFromSystem(std::vector<int> *pids);
|
|
|
|
private:
|
|
void doRemove(std::map<std::string, std::unique_ptr<Document>>::iterator &docIt);
|
|
|
|
std::string getMemStats();
|
|
|
|
std::string getSentActivity();
|
|
|
|
std::string getRecvActivity();
|
|
|
|
std::string getCpuStats();
|
|
|
|
unsigned getTotalActiveViews();
|
|
|
|
std::string getDocuments() const;
|
|
|
|
void CalcDocAggregateStats(DocumentAggregateStats& stats);
|
|
|
|
private:
|
|
std::map<int, Subscriber> _subscribers;
|
|
std::map<std::string, std::unique_ptr<Document>> _documents;
|
|
std::map<std::string, std::unique_ptr<Document>> _expiredDocuments;
|
|
|
|
/// The last N total memory Dirty size.
|
|
std::list<unsigned> _memStats;
|
|
unsigned _memStatsSize = 100;
|
|
|
|
std::list<unsigned> _cpuStats;
|
|
unsigned _cpuStatsSize = 100;
|
|
|
|
std::list<unsigned> _sentStats;
|
|
unsigned _sentStatsSize = 200;
|
|
|
|
std::list<unsigned> _recvStats;
|
|
unsigned _recvStatsSize = 200;
|
|
|
|
uint64_t _sentBytesTotal = 0;
|
|
uint64_t _recvBytesTotal = 0;
|
|
|
|
uint64_t _segFaultCount = 0;
|
|
uint64_t _lostKitsTerminatedCount = 0;
|
|
|
|
pid_t _forKitPid = 0;
|
|
|
|
/// We check the owner even in the release builds, needs to be always correct.
|
|
std::thread::id _owner;
|
|
|
|
DocProcSettings _defDocProcSettings;
|
|
};
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|