Files
logos-protocol/cpp/module_proxy.cpp
T
Dario Gabriel LipicarandClaude Opus 5 6c24fcb132 feat(caller): resolve who is calling, and declare the export that carries it
A module can now learn which module is calling it. Not via the LIDL — this
is not part of any module's interface, and the callee already has the
identity from the token the call carried; the only question was surfacing
it. So it is ambient: logos::currentCaller(), no declared parameter, no
contract change, no per-method opt-in.

WHAT THIS PR CONTAINS
  * LogosCaller — Unknown | HostAnchor | Module{name, instance?} |
    Derived{parent, leaf} | Operator{name} — std-typed and Qt-free.
  * CallerScope, an RAII save/restore around a thread-local STACK. Not a
    slot: A calling B calling back into A on one thread must nest, and an
    exception thrown from a handler must still pop.
  * resolveCaller, replacing the bool fold in ModuleProxy. It reads the
    INBOUND store #69 made direction-pure — the only store that may
    legitimately name a caller.
  * logos_module_set_call_caller DECLARED, and MINOR 5 -> 6.

WHY AMBIENT, AND WHY IT MUST CROSS AN IMAGE BOUNDARY
LogosProviderObject::callMethod is a vtable slot, and this codebase avoids
vtable changes on purpose. But the deeper reason is measured, not stylistic:
nm on real binaries shows the host and the module plugin EACH define
ModuleProxy::callRemoteMethod and TokenManager::instance, each with its own
function-local static at a distinct address, and neither with a single
undefined reference to the other's. Mach-O is TWOLEVEL; PE has no
interposition. A thread_local opened host-side is NOT the one a handler
reads. Since --backend qt is now refused outright, every module is a cdylib
and the C ABI push is the only path, not a fallback.

The pull is only safe through QMetaObject::invokeMethod on the host's
LogosAPI, because metaObject()/qt_metacall are virtual and the vptr was
written by the host's constructor — LogosAPI is duplicated across images
too, meta-object included, so a direct call would bind to the plugin's copy
and read the plugin's TLS, silently empty forever. A dynamic property
cannot carry it either: one process-global slot, so two overlapping
concurrency:"multi" calls from different callers would clobber each other.

Nothing here is spelled "verified". capability_module checks only that an
asserted name EXISTS as a key, so the strongest honest word is token-bound.
HostAnchor carries no name because core and capability_module hold one
token VALUE under two keys by construction. Unknown is the fail-closed
value and is always in-band, never spelled by absence.

The constant-time fold survives: the matched key is accumulated into a
fixed-width buffer with no data-dependent branch, verified at the
instruction level (csel, not a branch) with the comparison count invariant.

THE BUMP IS SAFE BECAUSE THE BACKENDS WENT FIRST
logos-protocol only DECLARES this ABI; every backend owes the definition,
and that gap shipped twice. logos-cpp-sdk#147 and logos-rust-sdk#47 already
define logos_module_set_call_caller, gated on >= 0.6 and therefore inert
until this lands. Verified on x86_64-linux: with this tree as the protocol,
BOTH backends at master pass their ABI checks and define the export;
manifest reports 0.6.0 with 11 exports. No repo is red at any point.

Rule 6 is now normative on a point the two backends had silently diverged
on — a present-but-unreadable "instance" is dropped and the module still
identified — each having pinned its own answer with a passing test.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-08-22 17:28:00 -03:00

550 lines
26 KiB
C++

#include "module_proxy.h"
#include "logos_caller_scope.h"
#include "logos_provider_interface.h"
#include "token_manager.h"
#include "logos_rpc_status.h"
#include <QDebug>
#include <QByteArray>
#include <QJsonObject>
#include <QJsonValue>
#include <QStringList>
#include <algorithm>
#include <atomic>
#include <string>
ModuleProxy::ModuleProxy(LogosProviderObject* provider, QObject* parent,
TokenManager* token_store)
: QObject(parent)
, m_provider(provider)
, m_store(token_store ? token_store : &TokenManager::instance())
{
if (m_provider) {
m_provider->setEventListener([this](const QString& eventName, const QVariantList& data) {
qDebug() << "[LogosProviderObject] ModuleProxy: forwarding event" << eventName << "as Qt signal";
// Events may be fired from any thread (e.g. a module's worker/FFI
// thread), but this object is the QtRemoteObjects source and must be
// driven from its own thread. Emitting directly from a foreign
// thread runs QtRO's source serialization there, racing the source
// socket against a reply being sent from the source thread, which
// can silently drop the reply.
//
// We *always* queue the emission to this object's own thread, never
// emit inline — even for a same-thread caller. A module that emits an
// event from inside an async-call-completion callback (e.g. a
// gather/fan-out completion firing `balances_updated` from within the
// `__logos_call_complete__` reply dispatch) is on the source thread,
// so an AutoConnection would run QtRO's source serialization for the
// event *re-entrantly*, while a reply is still being marshalled on the
// same stack — corrupting the source and crashing (SIGSEGV). A queued
// connection defers the emit to the next event-loop turn, after the
// reply has been sent, so events and replies stay serialized on the
// thread QtRO owns. Passing `this` as the context also cancels a
// queued emission if this object is destroyed first.
QMetaObject::invokeMethod(this, [this, eventName, data]() {
emit eventResponse(eventName, data);
}, Qt::QueuedConnection);
});
qDebug() << "[LogosProviderObject] ModuleProxy: created, wrapping LogosProviderObject"
<< m_provider->providerName();
}
}
ModuleProxy::~ModuleProxy()
{
qDebug() << "ModuleProxy: destroyed";
}
bool ModuleProxy::saveToken(const QString& from_module_name, const QString& token)
{
if (from_module_name.isEmpty()) {
qWarning() << "ModuleProxy: Cannot save token with empty module name";
return false;
}
if (token.isEmpty()) {
qWarning() << "ModuleProxy: Cannot save empty token for module:" << from_module_name;
return false;
}
m_tokens[from_module_name] = token;
qDebug() << "ModuleProxy: Token saved for module:" << from_module_name;
return true;
}
void ModuleProxy::setTokenValidator(TokenValidator validator)
{
m_validator = std::move(validator);
}
// QtRO / local path: RemoteTransportHost only ever serves a local socket, so
// the wire is "local". Forwards to the transport-aware overload.
QVariant ModuleProxy::callRemoteMethod(const QString& authToken, const QString& methodName, const QVariantList& args)
{
return callRemoteMethod(authToken, methodName, args, QStringLiteral("local"));
}
QVariant ModuleProxy::callRemoteMethod(const QString& authToken, const QString& methodName, const QVariantList& args, const QString& transportProtocol)
{
if (!m_provider) {
qWarning() << "ModuleProxy: Cannot call method on null provider:" << methodName;
return QVariant();
}
if (methodName.isEmpty()) {
qWarning() << "ModuleProxy: Method name cannot be empty";
return QVariant();
}
if (methodName == "getPluginMethods" && args.isEmpty()) {
return QVariant(getPluginMethods());
}
if (methodName == "getPluginEvents" && args.isEmpty()) {
return QVariant(getPluginEvents());
}
if (methodName == "getPluginInterface" && args.isEmpty()) {
return QVariant(getPluginInterface());
}
// NOTE: the three getPlugin* introspection calls above intentionally stay
// ungated. They expose only the method/event signatures (no business logic
// or state) and are needed before any token exists — a caller discovers a
// module's interface as part of the connection handshake, ahead of the
// capability_module token exchange. Everything past this point is a real
// business-method dispatch and MUST be authorized.
std::string callerJson;
if (!authorize(authToken, transportProtocol, &callerJson)) {
qWarning() << "ModuleProxy: rejecting unauthorized call to" << methodName
<< "- auth token not recognized";
// Structured rejection instead of a bare QVariant() so a NEW consumer can
// drop its stale token and re-exchange (see logos_rpc_status.h /
// LogosAPIClient::invokeRemoteMethod). OLD consumers convert this to the
// same empty/default they already got from QVariant(), so it's backward
// compatible.
return logos::makeUnauthorizedSentinel();
}
// SECURITY: never log call arguments — they routinely carry secrets
// (mnemonics, passwords, tokens, key material). Log only the method name and
// the argument count, matching the other transport call sites.
qDebug() << "ModuleProxy: callRemoteMethod" << methodName << "args:" << args.size();
// WHO IS CALLING, for the duration of this dispatch and no longer.
//
// Opened here — after authorization, immediately before the vtable hop into
// the provider — because authorization is the only place that ever knows the
// answer, and the dispatch is the only frame the answer is true for. The
// scope closes on every path out of this function, including an exception
// thrown from a handler.
//
// ON THIS THREAD ONLY. The value lives in a thread-local, so a provider that
// hands the call to a worker (concurrency:"multi") carries it across itself:
// the generated glue pulls the document HERE, on this thread, before it
// captures anything into the worker. There is nothing process-global to
// clobber, which is the entire reason this is not a dynamic property on a
// host QObject — two overlapping "multi" calls from different callers would
// share one slot and the second would silently rename the first.
//
// The value does NOT reach the module image by itself. The glue pulls it
// back out by name (LogosAPI::currentCallerJson, logos-plugin-qt) and pushes
// it across the module-impl C ABI; see logos_caller_scope.h for why a single
// thread-local cannot span the two images.
logos::CallerScope callerScope(std::move(callerJson));
const QVariant result = m_provider->callMethod(methodName, args);
// Module identity, for a provider whose own dispatch does not answer it.
//
// A module built through the LIDL frontend has name()/version() generated
// into its dispatch, so it never reaches here. A legacy module derives no
// contract and has neither — yet every provider already knows both, via the
// providerName()/providerVersion() vtable slots the interface has always
// had. Answering from those makes identity uniform across every module in
// the fleet without touching a single one of them.
//
// Placed AFTER dispatch, deliberately: an invalid QVariant is this slot's
// "unknown method" answer, so a provider that DOES implement name() keeps
// its own result and nothing existing changes behaviour. Gated on an empty
// argument list so a same-named method taking arguments is untouched.
if (!result.isValid() && args.isEmpty()) {
if (methodName == QLatin1String("name"))
return QVariant(m_provider->providerName());
if (methodName == QLatin1String("version"))
return QVariant(m_provider->providerVersion());
}
return result;
}
namespace {
// See logos::tokenComparisonCount() in module_proxy.h for what this is and is
// not. Relaxed: the tests that read it do so after the scans they measure have
// returned on the same thread, so there is nothing to order against.
std::atomic<unsigned long long> g_tokenComparisons{0};
// note: this is to ensure comparison is constant time to prevent timing attacks
// Length-independent constant-time comparison of two tokens. Returns true only
// when both byte sequences are identical. We compare over the longer of the two
// lengths (folding any length difference into the result) so the running time
// does not reveal a correct prefix or the secret's length.
bool constantTimeEquals(const QString& a, const QString& b)
{
g_tokenComparisons.fetch_add(1, std::memory_order_relaxed);
const QByteArray ba = a.toUtf8();
const QByteArray bb = b.toUtf8();
const int n = std::max(ba.size(), bb.size());
// A different length is a mismatch, but keep scanning to stay constant-time.
int diff = ba.size() ^ bb.size();
for (int i = 0; i < n; ++i) {
const unsigned char ca = i < ba.size() ? static_cast<unsigned char>(ba[i]) : 0;
const unsigned char cb = i < bb.size() ? static_cast<unsigned char>(bb[i]) : 0;
diff |= (ca ^ cb);
}
return diff == 0;
}
// ── recovering the matched key WITHOUT reintroducing a data-dependent branch ─
//
// 64 is not a limit on module names. It is the width at which recovering one
// stops being free. A key longer than this still AUTHORIZES exactly as before —
// that is isAuthorized's business and it is untouched — it simply cannot be
// NAMED, and Unknown is both the fail-closed answer and the honest one.
constexpr int kCallerKeyMax = 64;
struct CallerFold {
unsigned char key[kCallerKeyMax] = {0};
unsigned char keyLen = 0;
// Merge one candidate NAME. `match` is 1 iff the presented token equalled
// this entry's token.
//
// NOTHING BELOW IS CONDITIONAL ON `match`: the mask selects, so the work
// done is a function of the STORE SIZE only — never of where the match is,
// nor of whether there was one. An `if (match) { copy; return; }` here would
// undo, in three lines, the property constantTimeEquals spends a full
// length-independent scan to provide, and it would look like an
// optimisation while doing it.
void offer(int match, const QByteArray& candKey)
{
const unsigned char m = static_cast<unsigned char>(-(match & 1)); // 0x00 | 0xFF
// candKey.size() is the length of a STORE KEY — a module name, public —
// not of a secret, so branching on it leaks nothing. Hoisted out of the
// loop so the fold itself stays branch-free.
const int n = (candKey.size() <= kCallerKeyMax) ? static_cast<int>(candKey.size()) : 0;
for (int i = 0; i < kCallerKeyMax; ++i) {
const unsigned char c = (i < n) ? static_cast<unsigned char>(candKey[i]) : 0;
key[i] = static_cast<unsigned char>((key[i] & ~m) | (c & m));
}
keyLen = static_cast<unsigned char>((keyLen & ~m) |
(static_cast<unsigned char>(n) & m));
}
std::string name() const
{
return std::string(reinterpret_cast<const char*>(key), keyLen);
}
};
} // namespace
namespace logos {
unsigned long long tokenComparisonCount()
{
return g_tokenComparisons.load(std::memory_order_relaxed);
}
} // namespace logos
bool ModuleProxy::informModuleToken(const QString& authToken, const QString& moduleName, const QString& token)
{
if (!m_provider) {
qWarning() << "ModuleProxy: Cannot inform token on null provider";
return false;
}
// The anchor comes from THIS PROXY'S store, not the ambient ring — the same
// store isAuthorized scans, so the proxy has exactly one notion of who it
// trusts. Identical objects until a host isolates the provider's identity.
//
// A HOST THAT PASSES AN ISOLATED STORE MUST SEED THE ANCHOR INTO IT.
// logos-plugin-qt's LogosAPIProvider::seedHandshakeTrustAnchor writes "core"
// and "capability_module" into TokenManager::instance() by name; against an
// isolated store that seeding would be invisible here and every token push
// would be refused during the handshake window. Moving that write to the
// same store is part of wiring this parameter up, not a separate cleanup.
const QString coreToken = m_store->getToken(QStringLiteral("core"));
const QString capToken = m_store->getToken(QStringLiteral("capability_module"));
const bool callerIsTrusted =
(!coreToken.isEmpty() && constantTimeEquals(authToken, coreToken)) ||
(!capToken.isEmpty() && constantTimeEquals(authToken, capToken));
if (authToken.isEmpty() || !callerIsTrusted) {
qWarning() << "ModuleProxy: rejecting informModuleToken for" << moduleName
<< "- caller is not the trusted core/capability_module channel";
return false;
}
if (moduleName.isEmpty()) {
qWarning() << "ModuleProxy: Cannot inform token with empty module name";
return false;
}
if (token.isEmpty()) {
qWarning() << "ModuleProxy: Cannot inform empty token for module:" << moduleName;
return false;
}
// Forward FIRST, record only what the provider accepted.
//
// Recording before the forward was the other candidate, on the theory that a
// module might call back into us from inside the push and be rejected with a
// token we had already decided to accept. That window does not exist: the
// push reaches module code only as far as a store write
// (lp_module_accept_token -> TokenManager::saveToken, logos_protocol.cpp),
// which calls nothing back. Absent a real window, mirroring the provider's
// verdict is the smaller claim, so it is the one to make.
if (!m_provider->informModuleToken(moduleName, token)) {
return false;
}
// WHY THE PROXY KEEPS ITS OWN COPY of something the provider just stored.
// isAuthorized also scans m_store, and in the default out-of-process
// topology LogosProviderBase's write lands there — so on the happy path this
// is redundant. It is not redundant where it counts. m_store is
// direction-MIXED (LogosAPIClient writes the token it will PRESENT to a
// callee under the CALLEE's name, logos_api_client.cpp:176), so it can never
// say WHOSE a token is; m_tokens is keyed by the caller by construction and
// can, which is what a caller-identity oracle has to be built on. And
// m_store's contents have a lifetime this proxy does not control —
// TokenManager::resetIdentity() empties an isolated store on plugin reload —
// while a token this proxy was told about is good until the proxy dies with
// the module it fronts.
//
// NOT a claim that a refused push leaves the token unusable. The generated
// Qt glue saves to the host stack BEFORE it forwards across the C ABI and
// returns hostOk && implOk, so a cdylib-side failure returns false with the
// host store already holding the token. All this ordering guarantees is that
// the proxy adds no grant of its own to a push the provider rejected.
saveToken(moduleName, token);
return true;
}
bool ModuleProxy::isAuthorized(const QString& authToken, const QString& transportProtocol) const
{
return authorize(authToken, transportProtocol, /*callerJson=*/nullptr);
}
bool ModuleProxy::authorize(const QString& authToken, const QString& transportProtocol,
std::string* callerJson) const
{
// Unknown is SPELLED before anything else can go wrong, so every early
// return below leaves a valid document behind rather than an empty string
// that a reader would have to interpret.
if (callerJson) *callerJson = logos::callerUnknownJson();
// Fail closed: an empty token is never valid, even if some empty value
// somehow ended up in a token store.
if (authToken.isEmpty()) {
return false;
}
// A token is valid only if THIS module actually issued it to some caller.
// Two stores hold issued tokens:
// * m_tokens — the proxy's own INBOUND record, keyed by caller
// (saveToken / informModuleToken). Direction-pure.
// * m_store — this provider identity's TokenManager: the host
// anchors, the bootstrap seed, and whatever else the
// host put there. Direction-MIXED, so it authorizes
// but must never be reverse-looked-up to NAME anyone.
// We scan every issued token with a constant-time compare and never early
// out, so neither a match position nor the number of issued tokens leaks
// through timing.
//
// m_store, NOT TokenManager::instance(): the store that authorizes has to be
// the store the inbound writes go to. LogosProviderBase::informModuleToken
// writes to LogosAPI::getTokenManager() == TokenManager::forIdentity(<own
// name>), and hardcoding instance() here broke both ways the moment a host
// isolated a provider identity — privately seeded tokens invisible (inbound
// calls rejected with no diagnostic) AND every ambient token still accepted
// (the escalation isolation exists to close). Identical objects for a name
// nobody isolated, which is why neither half had ever been observed.
//
// ── WHAT THE FOLD ADDS TO THIS SCAN, AND WHAT IT DOES NOT ────────────────
// The two loops below are the same two loops, over the same two stores, in
// the same order, calling constantTimeEquals exactly as many times as
// before: once per entry, with no early exit on either. Everything the
// caller-identity work adds is bookkeeping AFTER each comparison has already
// happened — a mask-select into a fixed-width buffer and two counter
// increments — so the comparison count, and with it the property the
// constant-time compare exists to provide, is unchanged by construction
// rather than by inspection. logos::tokenComparisonCount() lets a test say
// so out loud.
bool authorized = false;
CallerFold fold;
unsigned moduleHits = 0; // matches in the caller-keyed INBOUND record
unsigned anchorHits = 0; // matches on m_store's bootstrap anchor keys
// (1) m_tokens — the proxy's INBOUND record, keyed by CALLER by
// construction (saveToken / informModuleToken are its only writers). The one
// store here that can honestly NAME anyone.
for (auto it = m_tokens.constBegin(); it != m_tokens.constEnd(); ++it) {
const int match = constantTimeEquals(authToken, it.value()) ? 1 : 0;
authorized |= (match != 0);
fold.offer(match, it.key().toUtf8());
moduleHits += static_cast<unsigned>(match);
}
// (2) m_store — direction-MIXED: LogosAPIClient writes the token we will
// PRESENT to a callee under the CALLEE's name (logos_api_client.cpp:176), so
// a hit here may name a module we CALL as the module CALLING us. It
// therefore contributes NO name — note there is no fold.offer() below, and
// that absence is the whole of rule (1) in the m_tokens comment above.
//
// The single thing this store can say honestly is "this is the host
// bootstrap token", because those keys have exactly one writer (the host
// initializer / seedHandshakeTrustAnchor) and exactly one meaning.
// `isAnchor` compares a public KEY, not a token, so branching on it leaks
// nothing; it is computed before the comparison so the fold stays uniform.
const QStringList anchorKeys = TokenManager::bootstrapKeys();
for (const QString& key : m_store->getTokenKeys()) {
const int isAnchor = anchorKeys.contains(key) ? 1 : 0;
const int match = constantTimeEquals(authToken, m_store->getToken(key)) ? 1 : 0;
authorized |= (match != 0);
anchorHits += static_cast<unsigned>(match & isAnchor);
}
// Not one of our own issued tokens — give a host-installed validator the
// chance to accept it for this transport. This is how operator-issued named
// tokens (validated against the daemon's TokenStore, with expiry and
// local_only enforced by `transportProtocol`) authorize a call without
// being pre-registered in the in-process stores above.
//
// Such a call stays UNKNOWN. TokenValidator returns bool and nothing else,
// so there is no name to be had; widening it to yield one is a
// logos-logoscore-cli change and deliberately not part of this.
if (!authorized && m_validator) {
authorized = m_validator(authToken, transportProtocol);
}
if (!authorized) {
return false;
}
// Decided AFTER the scan, on counters, in O(1).
//
// This part DOES branch on secret-derived values, and that is fine: it
// reveals nothing the answer does not already carry, and the answer is
// handed to the handler in a moment anyway.
if (callerJson) {
if (anchorHits > 0) {
// The anchor wins a tie. A value that is both the host anchor and
// some caller's inbound token is the host's; naming the module would
// assert an identity the anchor's own ambiguity ("core" and
// "capability_module" share one value) already forbids.
*callerJson = logos::callerHostAnchorJson();
} else if (moduleHits == 1 && fold.keyLen > 0) {
*callerJson = logos::callerModuleJson(fold.name());
}
// Everything else stays Unknown, and each case is a real one:
// * zero name matches — a validator-accepted operator token, or a hit
// on a non-anchor key of the direction-mixed store.
// * two or more — two callers were issued the same token value.
// Impossible with UUIDs, but if it ever happens we do not get to
// pick one.
// * keyLen == 0 — the matched key is longer than kCallerKeyMax.
}
return true;
}
namespace {
// getMethods() returns the module's full interface — both methods and events,
// each tagged with a "type" ("method"/"event"). Split it back out. An entry
// with no "type" counts as a method, so modules built against the pre-events
// SDK (whose getMethods() contains no events) report zero events, not a crash.
QJsonArray filterInterface(const QJsonArray& interface, bool keepEvents)
{
QJsonArray out;
for (const QJsonValue& v : interface) {
const bool isEvent =
v.toObject().value(QStringLiteral("type")).toString() == QStringLiteral("event");
if (isEvent == keepEvents) out.append(v);
}
return out;
}
} // namespace
QJsonArray ModuleProxy::getPluginInterface()
{
if (!m_provider) return QJsonArray();
qDebug() << "[LogosProviderObject] ModuleProxy: calling LogosProviderObject::getMethods()";
QJsonArray iface = m_provider->getMethods();
// Advertise module identity for a provider that does not list it itself.
//
// The dispatch fallback in callRemoteMethod answers name()/version() for
// every module; without this, a legacy module would ANSWER them while `lm`
// and every untyped caller reported it had no such method — present to
// whoever already knew to ask, invisible to everyone else. The two have to
// agree, so they are derived from the same providerName()/providerVersion().
//
// Additive only: an entry the provider already lists wins, so a module with
// a generated (or hand-written) name() keeps its own description, signature
// and parameters.
auto lists = [&iface](QLatin1String name) {
for (const QJsonValue& v : iface)
if (v.isObject() && v.toObject().value("name").toString() == name)
return true;
return false;
};
// Signatures only -- this listing describes the interface, it does not
// carry values. The VALUES come from the same two provider accessors in
// callRemoteMethod, which is what keeps the listing and the answer in step.
const struct { QLatin1String name; const char* desc; } identity[] = {
{ QLatin1String("name"), "The module's name, as declared in its metadata." },
{ QLatin1String("version"), "The module's version, as declared in its metadata." },
};
for (const auto& id : identity) {
if (lists(id.name)) continue;
QJsonObject entry;
entry["name"] = QString(id.name);
entry["type"] = QStringLiteral("method");
entry["signature"] = QString(id.name) + QStringLiteral("()");
entry["returnType"] = QStringLiteral("QString");
entry["isInvokable"] = true;
entry["description"] = QString::fromLatin1(id.desc);
iface.append(entry);
}
return iface;
}
QJsonArray ModuleProxy::getPluginMethods()
{
return filterInterface(getPluginInterface(), /*keepEvents=*/false);
}
QJsonArray ModuleProxy::getPluginEvents()
{
return filterInterface(getPluginInterface(), /*keepEvents=*/true);
}
#include "moc_module_proxy.cpp"
// ── ModuleHandshakeProxy ─────────────────────────────────────────────────────
ModuleHandshakeProxy::ModuleHandshakeProxy(ModuleProxy* proxy, QObject* parent)
: QObject(parent)
, m_proxy(proxy)
{
}
bool ModuleHandshakeProxy::informModuleToken(const QString& authToken,
const QString& moduleName,
const QString& token)
{
if (!m_proxy) {
qWarning() << "ModuleHandshakeProxy: no module proxy to deliver the token for"
<< moduleName;
return false;
}
// Same authorization and same store as the business object — this is only a
// different door onto it, reachable earlier.
return m_proxy->informModuleToken(authToken, moduleName, token);
}