@cello-protocol/daemon 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/daemon.d.ts.map +1 -1
- package/dist/daemon.js +253 -212
- package/dist/daemon.js.map +1 -1
- package/dist/http-manifest-poll.d.ts +67 -0
- package/dist/http-manifest-poll.d.ts.map +1 -0
- package/dist/http-manifest-poll.js +143 -0
- package/dist/http-manifest-poll.js.map +1 -0
- package/dist/types.d.ts +7 -0
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js.map +1 -1
- package/package.json +3 -3
package/dist/daemon.js
CHANGED
|
@@ -53,6 +53,8 @@ import { parseSessionAssignment, sessionRequestErrorReason } from "./session-ass
|
|
|
53
53
|
import { wireSessionCeremonyHandler, wireSessionOfferHandler, wireSealCeremonyHandler, verifyUnilateralCertificate, verifyBilateralSealCertificate } from "./session-ceremony.js";
|
|
54
54
|
import { reDeriveFrontiers, findInflatedFrontier } from "./seal-frontier-verify.js";
|
|
55
55
|
import { LocalAutoNatStub } from "@cello-protocol/transport";
|
|
56
|
+
import { startHttpManifestPoll } from "./http-manifest-poll.js";
|
|
57
|
+
import { resolveDirectoryUrl } from "./directory-bootstrap.js";
|
|
56
58
|
/**
|
|
57
59
|
* M7-SESSION-001 (H-1): canonical byte encoding of a SEAL-INTERRUPTED leaf for
|
|
58
60
|
* Ed25519 signing/verification. Field order is fixed and deterministic. Both the
|
|
@@ -170,7 +172,7 @@ class ProductionSessionNodeFactory {
|
|
|
170
172
|
}
|
|
171
173
|
}
|
|
172
174
|
export async function startDaemon(config) {
|
|
173
|
-
const { celloDir, socketPath, lockFilePath, maxConnections, version, logger, manifestProvider, manifestRootKeys, manifestThreshold, manifestVersionStore: injectedManifestVersionStore, manifestPollScheduler, signalingConnect, challengeVerifier, directoryEndpointResolver, sessionNodeFactory, sessionNegotiator, getRelayCircuitAddress, } = config;
|
|
175
|
+
const { celloDir, socketPath, lockFilePath, maxConnections, version, logger, manifestProvider, manifestRootKeys, manifestThreshold, manifestVersionStore: injectedManifestVersionStore, manifestPollScheduler, directoryHttpUrl, signalingConnect, challengeVerifier, directoryEndpointResolver, sessionNodeFactory, sessionNegotiator, getRelayCircuitAddress, } = config;
|
|
174
176
|
// CELLO-M7-TRANSPORT-001: composition-root selection of the transport selector.
|
|
175
177
|
// Driven by CELLO_ENV; fails fast at startup (here, not at first session) when a
|
|
176
178
|
// production environment is missing the required transport dialer (AC-010).
|
|
@@ -283,6 +285,24 @@ export async function startDaemon(config) {
|
|
|
283
285
|
throw new Error("Manifest verification failed. The daemon cannot start with an unverified manifest when manifestProvider is configured. " +
|
|
284
286
|
"Check the logs for the specific failure reason (manifest_signature_invalid, manifest_expired, or manifest_version_rollback).");
|
|
285
287
|
}
|
|
288
|
+
// CELLO-M7-CONN-001 (DOD-CONN-3): start the daemon-level HTTP manifest poll. It fetches
|
|
289
|
+
// ${directoryHttpUrl}/manifest, verifies the threshold signature against the locally-pinned
|
|
290
|
+
// root keys, applies anti-rollback + expiry, and adopts a newer manifest — independent of any
|
|
291
|
+
// agent identity, running even with ZERO agents (the deleted keystone could not). Gated on the
|
|
292
|
+
// same manifest deps as the old signaling poll; off on the M6 backward-compat path (no scheduler).
|
|
293
|
+
let stopHttpManifestPoll;
|
|
294
|
+
if (manifestPollScheduler && manifestProvider && manifestRootKeys && manifestRootKeys.length > 0 && manifestThreshold && manifestThreshold >= 1) {
|
|
295
|
+
stopHttpManifestPoll = startHttpManifestPoll({
|
|
296
|
+
scheduler: manifestPollScheduler,
|
|
297
|
+
directoryUrl: directoryHttpUrl ?? resolveDirectoryUrl(process.env),
|
|
298
|
+
manifestProvider,
|
|
299
|
+
manifestVersionStore,
|
|
300
|
+
rootKeys: manifestRootKeys,
|
|
301
|
+
threshold: manifestThreshold,
|
|
302
|
+
logger,
|
|
303
|
+
mintCorrelationId: () => randomUUID(),
|
|
304
|
+
});
|
|
305
|
+
}
|
|
286
306
|
// Load agent identities from the encrypted `agents` table (PERSIST-002 AC-007 — one path).
|
|
287
307
|
// (The encrypted store + lock were established above, before manifest verification.)
|
|
288
308
|
const { loaded: loadedAgents, failed: failedAgents } = await loadAgents(sessionNodeManager.getDb(), logger);
|
|
@@ -336,111 +356,63 @@ export async function startDaemon(config) {
|
|
|
336
356
|
const defaultConnect = async () => {
|
|
337
357
|
throw new Error("directory_signaling_not_configured");
|
|
338
358
|
};
|
|
339
|
-
// M7
|
|
340
|
-
//
|
|
341
|
-
//
|
|
342
|
-
//
|
|
343
|
-
//
|
|
344
|
-
//
|
|
359
|
+
// CELLO-M7-CONN-001 (DOD-CONN-1): the keystone is DELETED. There is no shared directory
|
|
360
|
+
// connection borrowing the "primary" agent's identity. In PRODUCTION every agent operates its
|
|
361
|
+
// OWN directory signaling connection authenticated as itself (getAgentSignaling / signalingFor);
|
|
362
|
+
// removing any agent tears down only that agent's own connection, so the daemon never holds a
|
|
363
|
+
// connection authenticated as a removed agent (the Demo1 stranding bug). A single SHARED manager
|
|
364
|
+
// exists ONLY for the in-process test / backward-compat path (a single injected signalingConnect,
|
|
365
|
+
// no per-agent isolation) — in production it is undefined.
|
|
345
366
|
//
|
|
346
|
-
//
|
|
347
|
-
//
|
|
348
|
-
//
|
|
349
|
-
// order (agent-loader) is platform-dependent and unsorted, which would otherwise
|
|
350
|
-
// let the authenticating identity change between daemon restarts.
|
|
351
|
-
// CELLO-M7-ONBOARD-001: `primaryAgent` is mutable so the FIRST agent created at runtime
|
|
352
|
-
// (cello_create_agent on a fresh install) can be elected as the keystone identity — otherwise the
|
|
353
|
-
// directory door stays `reconnecting` forever until a restart. getAuthIdentity reads it on every
|
|
354
|
-
// reconnect attempt, so electing it makes the already-running reconnect loop authenticate + connect.
|
|
355
|
-
let primaryAgent = [...loadedAgents].sort((a, b) => a.name.localeCompare(b.name))[0];
|
|
356
|
-
const getAuthIdentity = () => {
|
|
357
|
-
if (!primaryAgent)
|
|
358
|
-
return null;
|
|
359
|
-
return { keyProvider: primaryAgent.keyProvider, pubkeyHex: primaryAgent.pubkey };
|
|
360
|
-
};
|
|
361
|
-
// Production builds signalingConnect from the bootstrap resolver + agent identity.
|
|
362
|
-
// Tests inject signalingConnect directly (takes precedence). Neither → defaultConnect
|
|
363
|
-
// (DAEMON-001 backward-compat). challengeVerifier is left to the caller: when absent,
|
|
364
|
-
// step-6 directory verification is skipped — the M6 path that connected and ran the
|
|
365
|
-
// full DKG/seal pipeline.
|
|
366
|
-
// M7 Action 2: the daemon holds a reference to the live directory-facing node so
|
|
367
|
-
// registration's FROST DKG (NetworkDirectoryNode) — and future ceremonies/seal — can
|
|
368
|
-
// open streams to the directory on the SAME node. createSignalingConnect sets it via
|
|
369
|
-
// publishNode on a successful connect and clears it (null) when the stream closes.
|
|
370
|
-
// Consumers MUST gate use on signalingManager.status === "connected".
|
|
367
|
+
// M7 Action 2: the daemon holds a reference to a live directory-facing node so registration's
|
|
368
|
+
// FROST DKG can open streams on the SAME node. In production each per-agent manager publishes its
|
|
369
|
+
// OWN node (getAgentSignaling); this shared ref is the test-path node only.
|
|
371
370
|
let directoryNode = null;
|
|
372
371
|
const getDirectoryNode = () => directoryNode;
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
})
|
|
385
|
-
: defaultConnect);
|
|
386
|
-
// H1: a long-running daemon must ride out directory outages — notably the
|
|
387
|
-
// 25-30 min multi-region directory deploy. The transport default of 10 reconnect
|
|
388
|
-
// attempts (~5 min with default backoff) transitions the manager to terminal
|
|
389
|
-
// "lost" mid-deploy, with no public way to re-enter the loop — the daemon would
|
|
390
|
-
// never recover without a cello logout/login. Use an effectively-unbounded attempt
|
|
391
|
-
// budget with a capped backoff so it keeps retrying and reconnects within
|
|
392
|
-
// ~maxBackoffMs of the directory returning. (Availability is a first-class invariant.)
|
|
393
|
-
//
|
|
394
|
-
// L3: challengeVerifier is NOT passed here — the dialer (createSignalingConnect)
|
|
395
|
-
// performs step-6 verification itself, matching #doOpen. The manager's copy would
|
|
396
|
-
// be dead (processStep5Frame is only invoked inside connect()).
|
|
397
|
-
const signalingManager = new SignalingManager({
|
|
398
|
-
connect: resolvedConnect,
|
|
399
|
-
logger,
|
|
400
|
-
maxReconnectAttempts: Number.MAX_SAFE_INTEGER,
|
|
401
|
-
maxBackoffMs: 30_000,
|
|
402
|
-
// DOD-AUTH-2: the keystone manager (primary agent's directory door) carries the
|
|
403
|
-
// manifest-poll deps so it re-polls the directory on its live stream and adopts a
|
|
404
|
-
// newer signed manifest. The SAME shared manifestProvider instance the startup load
|
|
405
|
-
// + challengeVerifier use, so an adopted manifest updates the cache step-6 reads from.
|
|
406
|
-
// All optional — undefined on the M6 backward-compat path → polling is simply off.
|
|
407
|
-
pollScheduler: manifestPollScheduler,
|
|
408
|
-
manifestProvider,
|
|
409
|
-
manifestVersionStore,
|
|
410
|
-
rootKeys: manifestRootKeys,
|
|
411
|
-
threshold: manifestThreshold,
|
|
412
|
-
});
|
|
372
|
+
// H1: a long-running daemon must ride out directory outages — notably the 25-30 min multi-region
|
|
373
|
+
// directory deploy. Use an effectively-unbounded reconnect budget with a capped backoff so each
|
|
374
|
+
// connection keeps retrying and reconnects within ~maxBackoffMs of the directory returning.
|
|
375
|
+
const sharedSignaling = directoryEndpointResolver
|
|
376
|
+
? undefined
|
|
377
|
+
: new SignalingManager({
|
|
378
|
+
connect: signalingConnect ?? defaultConnect,
|
|
379
|
+
logger,
|
|
380
|
+
maxReconnectAttempts: Number.MAX_SAFE_INTEGER,
|
|
381
|
+
maxBackoffMs: 30_000,
|
|
382
|
+
});
|
|
413
383
|
const perAgentSignaling = new Map();
|
|
414
384
|
/**
|
|
415
|
-
* Return the directory signaling stream for `agentName`, authenticated as that
|
|
416
|
-
*
|
|
417
|
-
*
|
|
418
|
-
* manager when no production bootstrap resolver is configured (in-process tests
|
|
419
|
-
* inject a single `signalingConnect` and never exercise the per-agent path).
|
|
385
|
+
* Return the directory signaling stream for `agentName`, authenticated as that agent.
|
|
386
|
+
* Production: a dedicated per-agent manager (created + cached on first use). Test /
|
|
387
|
+
* backward-compat path (no directoryEndpointResolver): the single shared manager.
|
|
420
388
|
*
|
|
421
|
-
*
|
|
422
|
-
*
|
|
423
|
-
*
|
|
424
|
-
*
|
|
425
|
-
*
|
|
426
|
-
*
|
|
427
|
-
* regression (before this, a non-primary agent could not register at all); closing it
|
|
428
|
-
* is SPINE-5, which attaches the session inbound handlers per-agent. Tracked in the
|
|
429
|
-
* M7 build journal + DoD SPINE-5 scope note.
|
|
389
|
+
* CONN-001 (DOD-CONN-2): the per-agent manager wires BOTH registration AND inbound session
|
|
390
|
+
* handlers (session_assignment / seal_interrupted_request) via wirePerAgentSessionInbound,
|
|
391
|
+
* so a non-primary agent RECEIVES inbound sessions on its own stream — closing the prior
|
|
392
|
+
* SPINE-5 gap where only the primary (keystone) received them. Earlier scope note (now
|
|
393
|
+
* resolved): inbound handlers used to be attached to the keystone only; they are now
|
|
394
|
+
* attached per-agent here via wirePerAgentSessionInbound.
|
|
430
395
|
*/
|
|
431
396
|
function getAgentSignaling(agentName, agentKeyProvider, agentPubkeyHex) {
|
|
432
|
-
|
|
433
|
-
|
|
397
|
+
// CONN-001: test / backward-compat path — a single shared manager (no per-agent isolation;
|
|
398
|
+
// a single injected signalingConnect). In production sharedSignaling is undefined and every
|
|
399
|
+
// agent builds its own dedicated manager below.
|
|
400
|
+
if (sharedSignaling) {
|
|
401
|
+
return { signaling: sharedSignaling, getNode: getDirectoryNode };
|
|
434
402
|
}
|
|
435
403
|
const existing = perAgentSignaling.get(agentName);
|
|
436
404
|
if (existing)
|
|
437
405
|
return existing;
|
|
406
|
+
// Unreachable in practice: sharedSignaling is defined iff directoryEndpointResolver is absent, and
|
|
407
|
+
// the sharedSignaling branch above already returned. This narrows the resolver for the type-checker
|
|
408
|
+
// and is a defensive guard.
|
|
438
409
|
if (!directoryEndpointResolver) {
|
|
439
|
-
|
|
410
|
+
throw new Error("getAgentSignaling: no directory endpoint resolver configured (and no shared manager)");
|
|
440
411
|
}
|
|
412
|
+
const resolver = directoryEndpointResolver;
|
|
441
413
|
let nodeRef = null;
|
|
442
414
|
const connect = createSignalingConnect({
|
|
443
|
-
getDirectoryEndpoint:
|
|
415
|
+
getDirectoryEndpoint: resolver,
|
|
444
416
|
getAuthIdentity: () => ({ keyProvider: agentKeyProvider, pubkeyHex: agentPubkeyHex }),
|
|
445
417
|
logger,
|
|
446
418
|
challengeVerifier,
|
|
@@ -496,6 +468,9 @@ export async function startDaemon(config) {
|
|
|
496
468
|
signaling: mgr,
|
|
497
469
|
logger,
|
|
498
470
|
});
|
|
471
|
+
// CELLO-M7-CONN-001 (DOD-CONN-2): inbound session_assignment + seal_interrupted_request
|
|
472
|
+
// on THIS agent's own stream, so a non-primary agent receives inbound sessions (SPINE-5).
|
|
473
|
+
wirePerAgentSessionInbound(mgr);
|
|
499
474
|
return entry;
|
|
500
475
|
}
|
|
501
476
|
/** Resolve once `mgr` reaches "connected", or false on timeout. */
|
|
@@ -510,9 +485,9 @@ export async function startDaemon(config) {
|
|
|
510
485
|
* Stop and forget a dedicated per-agent signaling manager. Called when an agent's
|
|
511
486
|
* registration fails terminally — otherwise the lazily-created manager (and its
|
|
512
487
|
* libp2p node + effectively-unbounded reconnect loop) would keep reconnecting forever
|
|
513
|
-
* for an agent that is not registered/online. No-op
|
|
514
|
-
*
|
|
515
|
-
*
|
|
488
|
+
* for an agent that is not registered/online. No-op on the test path (the shared manager is not
|
|
489
|
+
* stored in perAgentSignaling) and for agents with no dedicated manager. On a later retry,
|
|
490
|
+
* getAgentSignaling re-creates it.
|
|
516
491
|
*/
|
|
517
492
|
async function dropAgentSignaling(agentName) {
|
|
518
493
|
const entry = perAgentSignaling.get(agentName);
|
|
@@ -522,63 +497,101 @@ export async function startDaemon(config) {
|
|
|
522
497
|
await entry.signaling.stop();
|
|
523
498
|
logger.info("agent.signaling.dropped", { agentName });
|
|
524
499
|
}
|
|
525
|
-
//
|
|
526
|
-
//
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
// when the first agent is elected at runtime (cello_create_agent), not only at startup.
|
|
530
|
-
// Returns a disposer that UNREGISTERS the six keystone listeners. Each wire*/register* helper returns
|
|
531
|
-
// its own unregister fn; the keystone manager is shared and never stopped, so (unlike the per-agent
|
|
532
|
-
// managers, which unregister implicitly on stop) these MUST be unregistered explicitly when the
|
|
533
|
-
// primary is cleared or re-elected — otherwise removing-then-recreating the primary STACKS a second
|
|
534
|
-
// full set of listeners on the shared stream, double-firing every ceremony/seal frame (review HIGH).
|
|
535
|
-
function wireKeystonePrimary(agent) {
|
|
536
|
-
const unregister = [];
|
|
537
|
-
unregister.push(wireSessionCeremonyHandler({
|
|
500
|
+
// CONN-001: wire a manager's session/seal/offer handlers for `agent`. Used ONLY for the
|
|
501
|
+
// in-process test path's shared manager — production wires these PER-AGENT in getAgentSignaling.
|
|
502
|
+
function wireSharedHandlers(agent, mgr) {
|
|
503
|
+
wireSessionCeremonyHandler({
|
|
538
504
|
agentName: agent.name,
|
|
539
505
|
persistence: getPersistence(agent.name),
|
|
540
506
|
agentPubkeyHex: agent.pubkey,
|
|
541
507
|
getNode: getDirectoryNode,
|
|
542
508
|
getDirectoryEndpoint: async () => (directoryEndpointResolver ? (await directoryEndpointResolver()) ?? null : null),
|
|
543
|
-
signaling:
|
|
509
|
+
signaling: mgr,
|
|
544
510
|
logger,
|
|
545
|
-
})
|
|
546
|
-
|
|
511
|
+
});
|
|
512
|
+
wireSealCeremonyHandler({
|
|
547
513
|
agentName: agent.name,
|
|
548
514
|
persistence: getPersistence(agent.name),
|
|
549
515
|
agentPubkeyHex: agent.pubkey,
|
|
550
516
|
getNode: getDirectoryNode,
|
|
551
517
|
getDirectoryEndpoint: async () => (directoryEndpointResolver ? (await directoryEndpointResolver()) ?? null : null),
|
|
552
|
-
signaling:
|
|
518
|
+
signaling: mgr,
|
|
553
519
|
logger,
|
|
554
|
-
})
|
|
555
|
-
|
|
520
|
+
});
|
|
521
|
+
wireSessionOfferHandler({
|
|
556
522
|
agentName: agent.name,
|
|
557
523
|
getStandingReceiverEndpoint: () => sessionNodeManager.getStandingReceiverInfo(agent.name),
|
|
558
|
-
signaling:
|
|
524
|
+
signaling: mgr,
|
|
559
525
|
logger,
|
|
560
|
-
})
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
526
|
+
});
|
|
527
|
+
registerSessionSealedListener(mgr, agent.name, agent.pubkey);
|
|
528
|
+
registerUnilateralConfirmedListener(mgr, agent.name, agent.pubkey);
|
|
529
|
+
registerUnilateralUpgradeListener(mgr, agent.name, agent.pubkey);
|
|
530
|
+
}
|
|
531
|
+
// CONN-001: the directory signaling manager that OWNS operations for `agentName`. In production
|
|
532
|
+
// that is the agent's OWN per-agent manager (authenticated as itself); on the in-process test
|
|
533
|
+
// path it is the single shared manager (agentName ignored). Returns undefined only when the agent
|
|
534
|
+
// is not loaded in production (e.g. removed mid-flow) — callers treat that as a send failure.
|
|
535
|
+
function signalingFor(agentName) {
|
|
536
|
+
if (sharedSignaling)
|
|
537
|
+
return sharedSignaling;
|
|
538
|
+
const kp = keyProviders.get(agentName);
|
|
539
|
+
const agent = loadedAgents.find((a) => a.name === agentName);
|
|
540
|
+
if (!kp || !agent)
|
|
541
|
+
return undefined;
|
|
542
|
+
return getAgentSignaling(agentName, kp, agent.pubkey).signaling;
|
|
543
|
+
}
|
|
544
|
+
// CONN-001: send a frame over the OWNING agent's directory manager (per-agent in production, the
|
|
545
|
+
// shared manager in tests). If the agent has no manager (e.g. removed mid-flow), return a send
|
|
546
|
+
// failure rather than throw — callers already branch on `!result.ok`.
|
|
547
|
+
async function sendOver(agentName, frame) {
|
|
548
|
+
const mgr = signalingFor(agentName);
|
|
549
|
+
if (!mgr)
|
|
550
|
+
return { ok: false, reason: "directory_unreachable" };
|
|
551
|
+
return mgr.sendRaw(frame);
|
|
552
|
+
}
|
|
553
|
+
// CONN-001: aggregate directory signaling status for `cello status`. Test path → the shared
|
|
554
|
+
// manager's status. Production → connected if ANY online agent's connection is connected; else
|
|
555
|
+
// reconnecting if any per-agent connection exists; else disconnected (no agents online → no
|
|
556
|
+
// connections, which is correct — there is no shared connection to be "reconnecting").
|
|
557
|
+
function directorySignalingStatus() {
|
|
558
|
+
if (sharedSignaling)
|
|
559
|
+
return sharedSignaling.status;
|
|
560
|
+
const managers = [...perAgentSignaling.values()];
|
|
561
|
+
// CONN-001 (fallback-finder MED): a single daemon-level field cannot fully represent N independent
|
|
562
|
+
// per-agent connections, but it must NOT show "connected" while any agent is severed (that would
|
|
563
|
+
// mask a partial directory outage — the severed agent silently never receives inbound). So report
|
|
564
|
+
// "connected" ONLY when every per-agent manager is connected; otherwise "reconnecting" (degraded or
|
|
565
|
+
// none). No managers (no agent online) → "reconnecting", matching pre-CONN-001 fresh-install
|
|
566
|
+
// behavior. (Per-agent connection state is the future faithful surface.)
|
|
567
|
+
if (managers.length === 0)
|
|
568
|
+
return "reconnecting";
|
|
569
|
+
return managers.every((m) => m.signaling.status === "connected") ? "connected" : "reconnecting";
|
|
570
|
+
}
|
|
571
|
+
// CONN-001: stop every directory signaling connection on shutdown — the shared test manager AND
|
|
572
|
+
// every per-agent manager — so no reconnect loop is orphaned past shutdown.
|
|
573
|
+
async function stopAllSignaling() {
|
|
574
|
+
if (sharedSignaling) {
|
|
575
|
+
try {
|
|
576
|
+
await sharedSignaling.stop();
|
|
577
|
+
}
|
|
578
|
+
catch { /* best-effort */ }
|
|
579
|
+
}
|
|
580
|
+
for (const entry of perAgentSignaling.values()) {
|
|
571
581
|
try {
|
|
572
|
-
|
|
582
|
+
await entry.signaling.stop();
|
|
573
583
|
}
|
|
574
|
-
catch { /*
|
|
575
|
-
}
|
|
584
|
+
catch { /* best-effort */ }
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
// CONN-001: test path only — wire the shared manager's session/seal handlers for the first loaded
|
|
588
|
+
// agent. Production wires them per-agent (getAgentSignaling). There is NO keystone identity to
|
|
589
|
+
// elect and no re-election machinery: the shared test manager is never removed, and in production
|
|
590
|
+
// a fresh create-agent brings up that agent's OWN connection (no shared door to elect into).
|
|
591
|
+
if (sharedSignaling && loadedAgents.length > 0) {
|
|
592
|
+
const first = [...loadedAgents].sort((a, b) => a.name.localeCompare(b.name))[0];
|
|
593
|
+
wireSharedHandlers(first, sharedSignaling);
|
|
576
594
|
}
|
|
577
|
-
// Disposer for the currently-wired keystone primary listeners (CELLO-M7-REMOVE-001): call it before
|
|
578
|
-
// clearing or re-electing the primary so the shared stream never carries a stale/duplicate set.
|
|
579
|
-
let keystoneDispose;
|
|
580
|
-
if (primaryAgent)
|
|
581
|
-
keystoneDispose = wireKeystonePrimary(primaryAgent);
|
|
582
595
|
// Per-connection state: tracks which agent is "current" for each IPC connection.
|
|
583
596
|
// Key = connectionId (assigned by IPC server), Value = current agent name or null.
|
|
584
597
|
const perConnectionState = new Map();
|
|
@@ -893,7 +906,7 @@ export async function startDaemon(config) {
|
|
|
893
906
|
const interrupted_sessions = buildInterruptedSessions();
|
|
894
907
|
return {
|
|
895
908
|
daemon: "running",
|
|
896
|
-
directory_signaling:
|
|
909
|
+
directory_signaling: directorySignalingStatus(),
|
|
897
910
|
agents,
|
|
898
911
|
connections,
|
|
899
912
|
standing_receiver_ready: sessionNodeManager.getStandingReceiverReady(),
|
|
@@ -932,6 +945,18 @@ export async function startDaemon(config) {
|
|
|
932
945
|
return { ok: true };
|
|
933
946
|
}
|
|
934
947
|
onlineAgents.add(name);
|
|
948
|
+
// CELLO-M7-CONN-001 (DOD-CONN-2, code-review HIGH): the "online" transition establishes THIS
|
|
949
|
+
// agent's OWN directory signaling connection (the documented getAgentSignaling "online" trigger),
|
|
950
|
+
// so the directory has a stream to push inbound session_assignment / seal_interrupted_request to.
|
|
951
|
+
// Without this, a started receiver agent sitting in cello_await_session (notably after a daemon
|
|
952
|
+
// restart, where login does NOT auto-start agents) would have no stream and never receive inbound —
|
|
953
|
+
// a regression of the pre-CONN-001 keystone, which connected the primary at startup. Lazy +
|
|
954
|
+
// idempotent (getAgentSignaling reuses an existing manager); the test path returns the shared one.
|
|
955
|
+
const startKp = keyProviders.get(name);
|
|
956
|
+
if (startKp && agent.pubkey) {
|
|
957
|
+
getAgentSignaling(name, startKp, agent.pubkey);
|
|
958
|
+
logger.info("agent.directory.connection.initiated", { agentName: name, agentPubkey: agent.pubkey });
|
|
959
|
+
}
|
|
935
960
|
// DOD-LOOP-1: each online agent gets its OWN standing receiver, so two agents on one daemon
|
|
936
961
|
// (loopback) never contend for a single one. Fire-and-forget (initiate/accept also ensure on
|
|
937
962
|
// demand); never let it throw out of the handler. Once the SR is up, re-park any of THIS
|
|
@@ -983,23 +1008,16 @@ export async function startDaemon(config) {
|
|
|
983
1008
|
const loaded = { name, pubkey: pubkeyHex, keyProvider };
|
|
984
1009
|
loadedAgents.push(loaded);
|
|
985
1010
|
agents.push({ name, state: "registered", pubkey: pubkeyHex });
|
|
986
|
-
// CELLO-M7-ONBOARD-001: on a
|
|
987
|
-
//
|
|
988
|
-
//
|
|
989
|
-
//
|
|
990
|
-
// restart
|
|
991
|
-
//
|
|
992
|
-
|
|
993
|
-
//
|
|
994
|
-
//
|
|
995
|
-
|
|
996
|
-
if (!primaryAgent) {
|
|
997
|
-
// Dispose any prior keystone wiring before re-electing, so listeners never stack (REMOVE-001).
|
|
998
|
-
keystoneDispose?.();
|
|
999
|
-
primaryAgent = loaded;
|
|
1000
|
-
keystoneDispose = wireKeystonePrimary(loaded);
|
|
1001
|
-
logger.info("directory.keystone.elected", { agentName: name, agentPubkey: pubkeyHex });
|
|
1002
|
-
}
|
|
1011
|
+
// CELLO-M7-CONN-001 (DOD-CONN-1, supersedes ONBOARD-001 keystone election): on a fresh install
|
|
1012
|
+
// the daemon started with zero agents, so there were no directory connections. Bring up THIS
|
|
1013
|
+
// agent's OWN directory connection now (production: getAgentSignaling creates + connects a
|
|
1014
|
+
// dedicated manager authenticated as this agent; the directory door becomes active with no
|
|
1015
|
+
// restart). There is no shared keystone to elect into. In the test path getAgentSignaling returns
|
|
1016
|
+
// the already-present shared manager (no-op).
|
|
1017
|
+
getAgentSignaling(name, keyProvider, pubkeyHex);
|
|
1018
|
+
// "initiated" not "established": getAgentSignaling starts the connection but does not await it
|
|
1019
|
+
// (the SignalingManager emits directory.signaling.connected when it actually authenticates).
|
|
1020
|
+
logger.info("agent.directory.connection.initiated", { agentName: name, agentPubkey: pubkeyHex });
|
|
1003
1021
|
}
|
|
1004
1022
|
catch (err) {
|
|
1005
1023
|
logger.error("persist.identity.persist.failed", { agentName: name, error: err instanceof Error ? err.message : String(err) });
|
|
@@ -1030,16 +1048,18 @@ export async function startDaemon(config) {
|
|
|
1030
1048
|
const sigHex = Buffer.from(await signer.sign(tbs)).toString("hex");
|
|
1031
1049
|
// If the agent has no live signaling (e.g. a re-push of an already-retired agent), getAgentSignaling
|
|
1032
1050
|
// lazily creates a dedicated manager — drop it again afterwards so we don't leak a reconnect loop.
|
|
1033
|
-
const hadSignaling = perAgentSignaling.has(agentName)
|
|
1051
|
+
const hadSignaling = perAgentSignaling.has(agentName);
|
|
1034
1052
|
const { signaling } = getAgentSignaling(agentName, signer, kLocalPubkeyHex);
|
|
1035
|
-
|
|
1053
|
+
// createdSignaling is true only when this call lazily created a NEW per-agent manager (production);
|
|
1054
|
+
// on the shared test path perAgentSignaling stays empty, so it is false and dropAgentSignaling no-ops.
|
|
1055
|
+
const createdSignaling = !hadSignaling && perAgentSignaling.has(agentName);
|
|
1036
1056
|
try {
|
|
1037
1057
|
const connected = await waitForSignalingConnected(signaling, 10_000);
|
|
1038
1058
|
if (!connected)
|
|
1039
1059
|
return { recorded: false, reason: "directory_unreachable" };
|
|
1040
1060
|
let resolveFrame;
|
|
1041
1061
|
const pending = new Promise((r) => { resolveFrame = r; });
|
|
1042
|
-
// Match the reply by agent_id so a revocation on
|
|
1062
|
+
// Match the reply by agent_id so a revocation on a shared signaling stream is never cross-wired.
|
|
1043
1063
|
const unregister = signaling.registerInboundHandler((frame) => {
|
|
1044
1064
|
const t = frame["type"];
|
|
1045
1065
|
if ((t === "agent_revocation_ack" || t === "agent_revocation_error") && frame["agent_id"] === regAgentId)
|
|
@@ -1143,14 +1163,11 @@ export async function startDaemon(config) {
|
|
|
1143
1163
|
const ai = agents.findIndex((a) => a.name === name);
|
|
1144
1164
|
if (ai >= 0)
|
|
1145
1165
|
agents.splice(ai, 1);
|
|
1146
|
-
//
|
|
1147
|
-
//
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
primaryAgent = undefined;
|
|
1152
|
-
logger.info("directory.keystone.cleared", { agentName: name, agentId });
|
|
1153
|
-
}
|
|
1166
|
+
// CELLO-M7-CONN-001 (DOD-CONN-1): no keystone to clear — the agent's OWN per-agent directory
|
|
1167
|
+
// connection was already torn down above (dropAgentSignaling). Removing any agent disturbs only
|
|
1168
|
+
// its own connection; no other agent's connection, and no shared "keystone", is affected. This is
|
|
1169
|
+
// the fix for the Demo1 bug (the keystone lingered authenticated as the removed agent).
|
|
1170
|
+
logger.info("agent.directory.connection.dropped", { agentName: name, agentId, reason: "agent_removed" });
|
|
1154
1171
|
// Drop the retired agent as any connection's current agent.
|
|
1155
1172
|
for (const [connId, state] of perConnectionState) {
|
|
1156
1173
|
if (state.currentAgent === name) {
|
|
@@ -1304,8 +1321,8 @@ export async function startDaemon(config) {
|
|
|
1304
1321
|
const directoryEndpoint = { peer_id: ep.peerId, multiaddrs: [ep.multiaddr] };
|
|
1305
1322
|
// Multi-agent: register over THIS agent's own directory signaling stream (authed
|
|
1306
1323
|
// as this agent), so the directory routes its dkg_complete/register_success back
|
|
1307
|
-
// to it.
|
|
1308
|
-
//
|
|
1324
|
+
// to it. CONN-001: every agent has its own dedicated stream (no shared keystone). The
|
|
1325
|
+
// DKG's FROST streams open on this agent's directory node.
|
|
1309
1326
|
const agentRecord = loadedAgents.find((a) => a.name === name);
|
|
1310
1327
|
const agentPubkeyHex = agentRecord?.pubkey ?? Buffer.from(await keyProvider.getPublicKey()).toString("hex");
|
|
1311
1328
|
const { signaling: agentSignaling, getNode: agentGetNode } = getAgentSignaling(name, keyProvider, agentPubkeyHex);
|
|
@@ -1388,9 +1405,9 @@ export async function startDaemon(config) {
|
|
|
1388
1405
|
// Prevents duplicate concurrent seal-interrupted attempts for the same (agent, session) (AC-011).
|
|
1389
1406
|
const sealInterruptedInProgress = new Set();
|
|
1390
1407
|
const pendingSealWaiters = new Map();
|
|
1391
|
-
// M7 DOD-SPINE-7: register the session_sealed completion handler on a signaling
|
|
1392
|
-
//
|
|
1393
|
-
//
|
|
1408
|
+
// M7 DOD-SPINE-7: register the session_sealed completion handler on a signaling manager — per-agent
|
|
1409
|
+
// in production (the directory routes session_sealed to the session-owning agent's authenticated
|
|
1410
|
+
// stream), or the shared manager on the test path. Function declaration so getAgentSignaling
|
|
1394
1411
|
// (defined earlier, called at runtime) can wire it per-agent.
|
|
1395
1412
|
function registerSessionSealedListener(signaling, agentName, agentPubkeyHex) {
|
|
1396
1413
|
return signaling.registerInboundHandler((frame) => {
|
|
@@ -1673,7 +1690,7 @@ export async function startDaemon(config) {
|
|
|
1673
1690
|
handlers.set("cello_status", async (_params, connectionId) => {
|
|
1674
1691
|
return {
|
|
1675
1692
|
daemon: "running",
|
|
1676
|
-
directory_signaling:
|
|
1693
|
+
directory_signaling: directorySignalingStatus(),
|
|
1677
1694
|
agents: getAgentsForConnection(connectionId),
|
|
1678
1695
|
connections,
|
|
1679
1696
|
// M-1 PULL: live MCP clients must see interrupted sessions too, exactly as
|
|
@@ -1875,7 +1892,7 @@ export async function startDaemon(config) {
|
|
|
1875
1892
|
};
|
|
1876
1893
|
}
|
|
1877
1894
|
// DB-001: signaling stream reconnecting
|
|
1878
|
-
if (record.status === "interrupted" &&
|
|
1895
|
+
if (record.status === "interrupted" && signalingFor(record.agent_name)?.status === "reconnecting") {
|
|
1879
1896
|
return {
|
|
1880
1897
|
ok: false,
|
|
1881
1898
|
reason: "signaling_reconnecting",
|
|
@@ -1975,7 +1992,7 @@ export async function startDaemon(config) {
|
|
|
1975
1992
|
let resolveUni;
|
|
1976
1993
|
const uniP = new Promise((r) => { resolveUni = r; });
|
|
1977
1994
|
pendingUnilateralWaiters.set(sessionId, resolveUni);
|
|
1978
|
-
const sent = await
|
|
1995
|
+
const sent = await sendOver(record.agent_name, {
|
|
1979
1996
|
type: "seal_unilateral",
|
|
1980
1997
|
session_id: new Uint8Array(Buffer.from(sessionId, "hex")),
|
|
1981
1998
|
reported_root: new Uint8Array(Buffer.from(submit.reportedRootHex, "hex")),
|
|
@@ -2404,13 +2421,24 @@ export async function startDaemon(config) {
|
|
|
2404
2421
|
return;
|
|
2405
2422
|
}
|
|
2406
2423
|
const reject = async (reason) => {
|
|
2407
|
-
|
|
2424
|
+
// CONN-001: send the rejection over the LOCAL responder agent's own stream (the agent whose
|
|
2425
|
+
// pubkey is counterpartyPubkey — the stream this request arrived on). If unresolved, sendOver
|
|
2426
|
+
// reports a send failure rather than throwing.
|
|
2427
|
+
const sent = await sendOver(agents.find((a) => a.pubkey === counterpartyPubkey)?.name ?? "", {
|
|
2408
2428
|
type: "seal_interrupted_rejection",
|
|
2409
2429
|
sessionId,
|
|
2410
2430
|
initiatorPubkey,
|
|
2411
2431
|
reason,
|
|
2412
2432
|
});
|
|
2413
|
-
|
|
2433
|
+
// fallback-finder LOW: don't log the rejection as delivered when the send failed (e.g. no local
|
|
2434
|
+
// agent for counterpartyPubkey, or a transient send error) — the counterparty would otherwise
|
|
2435
|
+
// appear rejected but only ever see a timeout.
|
|
2436
|
+
if (sent.ok) {
|
|
2437
|
+
logger.warn("session.interrupted.request.rejected", { sessionId, reason, correlationId });
|
|
2438
|
+
}
|
|
2439
|
+
else {
|
|
2440
|
+
logger.warn("session.interrupted.request.rejection.send.failed", { sessionId, reason, sendReason: sent.reason, correlationId });
|
|
2441
|
+
}
|
|
2414
2442
|
};
|
|
2415
2443
|
// DOD-LOOP-1: resolve the addressed local agent FIRST — the composite (agent, session_id) key
|
|
2416
2444
|
// needs it. The request must be addressed to one of our agents (counterpartyPubkey is OUR
|
|
@@ -2489,7 +2517,7 @@ export async function startDaemon(config) {
|
|
|
2489
2517
|
nonce,
|
|
2490
2518
|
sealInterruptedLeaf: ownLeaf,
|
|
2491
2519
|
};
|
|
2492
|
-
const sendResult = await
|
|
2520
|
+
const sendResult = await sendOver(localAgent.name, ack);
|
|
2493
2521
|
if (!sendResult.ok) {
|
|
2494
2522
|
logger.error("session.interrupted.ack.send.failed", {
|
|
2495
2523
|
sessionId,
|
|
@@ -2506,13 +2534,6 @@ export async function startDaemon(config) {
|
|
|
2506
2534
|
correlationId,
|
|
2507
2535
|
});
|
|
2508
2536
|
}
|
|
2509
|
-
// Register the persistent responder. This is a REAL registered handler (not a
|
|
2510
|
-
// test-only path): it fires for every inbound seal_interrupted_request.
|
|
2511
|
-
signalingManager.registerInboundHandler((frame) => {
|
|
2512
|
-
if (frame["type"] !== "seal_interrupted_request")
|
|
2513
|
-
return;
|
|
2514
|
-
void handleInboundSealInterruptedRequest(frame);
|
|
2515
|
-
});
|
|
2516
2537
|
// Per-agent FIFO queue (events accepted while no cello_await_session is blocked) and
|
|
2517
2538
|
// the per-agent list of blocked waiters. Inbound sessions are addressed to a specific
|
|
2518
2539
|
// local agent (participant_b), so both are keyed by agent name.
|
|
@@ -2812,17 +2833,34 @@ export async function startDaemon(config) {
|
|
|
2812
2833
|
});
|
|
2813
2834
|
});
|
|
2814
2835
|
}
|
|
2815
|
-
|
|
2816
|
-
|
|
2817
|
-
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
//
|
|
2821
|
-
//
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
|
|
2825
|
-
|
|
2836
|
+
// CELLO-M7-CONN-001 (DOD-CONN-2): wire the inbound session/seal responders onto a GIVEN
|
|
2837
|
+
// signaling manager. Called for EVERY agent's own per-agent manager (via getAgentSignaling)
|
|
2838
|
+
// so each agent receives inbound session_assignment + seal_interrupted_request on its OWN
|
|
2839
|
+
// authenticated stream — closing the SPINE-5 gap where only the primary (whose stream WAS
|
|
2840
|
+
// the keystone) received them. A frame arrives on exactly one agent's stream, so there is no
|
|
2841
|
+
// double-dispatch; each handler resolves the local agent internally and that resolution
|
|
2842
|
+
// matches the stream the directory routed the frame to.
|
|
2843
|
+
function wirePerAgentSessionInbound(mgr) {
|
|
2844
|
+
mgr.registerInboundHandler((frame) => {
|
|
2845
|
+
if (frame["type"] !== "seal_interrupted_request")
|
|
2846
|
+
return;
|
|
2847
|
+
void handleInboundSealInterruptedRequest(frame);
|
|
2848
|
+
});
|
|
2849
|
+
mgr.registerInboundHandler((frame) => {
|
|
2850
|
+
if (frame["type"] !== "session_assignment")
|
|
2851
|
+
return;
|
|
2852
|
+
handleInboundSessionAssignment(frame);
|
|
2853
|
+
});
|
|
2854
|
+
}
|
|
2855
|
+
// CONN-001: test path only — the shared manager's inbound session/seal responders. Production
|
|
2856
|
+
// wires them per-agent in getAgentSignaling (each agent receives on its own stream).
|
|
2857
|
+
if (sharedSignaling)
|
|
2858
|
+
wirePerAgentSessionInbound(sharedSignaling);
|
|
2859
|
+
// M7 DOD-SPINE-7 / CELLO-M7-CONN-001: the seal-completion listeners (session_sealed /
|
|
2860
|
+
// seal_unilateral_confirmed / seal_unilateral_notification) are registered PER-AGENT inside
|
|
2861
|
+
// getAgentSignaling (the directory routes each over the session-owning agent's authenticated
|
|
2862
|
+
// stream), and on the shared manager for the test path via wireSharedHandlers. No keystone, no
|
|
2863
|
+
// runtime election — a fresh-install agent gets them when it comes online (create/start).
|
|
2826
2864
|
// cello_await_session — the counterparty's blocking pull for the next inbound session.
|
|
2827
2865
|
// Returns immediately if one is already queued for the current agent (FIFO), otherwise
|
|
2828
2866
|
// blocks until one arrives or timeout_ms elapses. Response shape matches the established
|
|
@@ -2876,13 +2914,18 @@ export async function startDaemon(config) {
|
|
|
2876
2914
|
// out). Extracted so the two flows wait identically — the directory pass-through
|
|
2877
2915
|
// routing (directory-node.ts) is the only wired transport for this exchange.
|
|
2878
2916
|
const SEAL_INTERRUPTED_TIMEOUT_MS = 30_000;
|
|
2879
|
-
function awaitSealAck(sessionId) {
|
|
2917
|
+
function awaitSealAck(sessionId, mgr) {
|
|
2880
2918
|
return new Promise((resolve) => {
|
|
2919
|
+
// CONN-001: await the ack on the OWNING agent's own stream (per-agent in prod, shared in test).
|
|
2920
|
+
if (!mgr) {
|
|
2921
|
+
resolve({ type: "timeout" });
|
|
2922
|
+
return;
|
|
2923
|
+
}
|
|
2881
2924
|
const timeoutHandle = setTimeout(() => {
|
|
2882
2925
|
unregister();
|
|
2883
2926
|
resolve({ type: "timeout" });
|
|
2884
2927
|
}, SEAL_INTERRUPTED_TIMEOUT_MS);
|
|
2885
|
-
const unregister =
|
|
2928
|
+
const unregister = mgr.registerInboundHandler((frame) => {
|
|
2886
2929
|
if (frame.type !== "seal_interrupted_ack" && frame.type !== "seal_interrupted_rejection") {
|
|
2887
2930
|
return;
|
|
2888
2931
|
}
|
|
@@ -2928,7 +2971,7 @@ export async function startDaemon(config) {
|
|
|
2928
2971
|
? sessionNodeManager.getSessionTreeRootHex(record.agent_name, sessionId)
|
|
2929
2972
|
: merkleRootAtInterruption;
|
|
2930
2973
|
// DB-001: check signaling status before attempting to send
|
|
2931
|
-
if (
|
|
2974
|
+
if (signalingFor(record.agent_name)?.status === "reconnecting") {
|
|
2932
2975
|
logger.error("session.interrupted.seal.failed", {
|
|
2933
2976
|
sessionId,
|
|
2934
2977
|
agentName: record.agent_name,
|
|
@@ -2974,7 +3017,7 @@ export async function startDaemon(config) {
|
|
|
2974
3017
|
merkleRootAtInterruption: effectiveRoot,
|
|
2975
3018
|
nonce,
|
|
2976
3019
|
};
|
|
2977
|
-
const sendResult = await
|
|
3020
|
+
const sendResult = await sendOver(record.agent_name, request);
|
|
2978
3021
|
if (!sendResult.ok) {
|
|
2979
3022
|
logger.error("session.interrupted.seal.failed", {
|
|
2980
3023
|
sessionId,
|
|
@@ -2990,7 +3033,7 @@ export async function startDaemon(config) {
|
|
|
2990
3033
|
};
|
|
2991
3034
|
}
|
|
2992
3035
|
// Wait for counterparty ack/rejection via the shared signaling await machinery.
|
|
2993
|
-
const ackResult = await awaitSealAck(sessionId);
|
|
3036
|
+
const ackResult = await awaitSealAck(sessionId, signalingFor(record.agent_name));
|
|
2994
3037
|
if (ackResult.type === "timeout") {
|
|
2995
3038
|
logger.error("session.interrupted.seal.failed", {
|
|
2996
3039
|
sessionId,
|
|
@@ -3098,7 +3141,7 @@ export async function startDaemon(config) {
|
|
|
3098
3141
|
const myPubkeyHex = agent?.pubkey ?? "";
|
|
3099
3142
|
const kp = keyProviders.get(record.agent_name);
|
|
3100
3143
|
// DB-002: never initiate a partial seal while signaling is reconnecting.
|
|
3101
|
-
if (
|
|
3144
|
+
if (signalingFor(record.agent_name)?.status === "reconnecting") {
|
|
3102
3145
|
return {
|
|
3103
3146
|
ok: false,
|
|
3104
3147
|
reason: "signaling_reconnecting",
|
|
@@ -3160,7 +3203,7 @@ export async function startDaemon(config) {
|
|
|
3160
3203
|
// Submit the SEAL request over the directory signaling stream (the SAME wired
|
|
3161
3204
|
// pass-through the interrupted-seal flow uses) and AWAIT the counterparty's
|
|
3162
3205
|
// bilateral ack. We never report success on a fire-and-forget send.
|
|
3163
|
-
const sendResult = await
|
|
3206
|
+
const sendResult = await sendOver(record.agent_name, {
|
|
3164
3207
|
type: "seal_interrupted_request",
|
|
3165
3208
|
sessionId,
|
|
3166
3209
|
initiatorPubkey: myPubkeyHex,
|
|
@@ -3178,14 +3221,14 @@ export async function startDaemon(config) {
|
|
|
3178
3221
|
});
|
|
3179
3222
|
return {
|
|
3180
3223
|
ok: false,
|
|
3181
|
-
reason: sendResult.reason,
|
|
3224
|
+
reason: sendResult.reason ?? "directory_unreachable",
|
|
3182
3225
|
guidance: "guidance" in sendResult && typeof sendResult.guidance === "string"
|
|
3183
3226
|
? sendResult.guidance
|
|
3184
3227
|
: "The seal could not be submitted to the directory. Retry once cello status shows directory_signaling connected.",
|
|
3185
3228
|
};
|
|
3186
3229
|
}
|
|
3187
3230
|
// Wait for the counterparty's bilateral ack (or rejection / timeout).
|
|
3188
|
-
const ackResult = await awaitSealAck(sessionId);
|
|
3231
|
+
const ackResult = await awaitSealAck(sessionId, signalingFor(record.agent_name));
|
|
3189
3232
|
if (ackResult.type === "timeout" || ackResult.type === "seal_interrupted_rejection") {
|
|
3190
3233
|
const reason = ackResult.type === "timeout" ? "seal_counterparty_unavailable" : "seal_rejected_by_counterparty";
|
|
3191
3234
|
logger.error("session.seal.initiate.failed", {
|
|
@@ -3446,25 +3489,23 @@ export async function startDaemon(config) {
|
|
|
3446
3489
|
agentCount: loadedAgents.length,
|
|
3447
3490
|
manifestVerified,
|
|
3448
3491
|
});
|
|
3449
|
-
// M7-
|
|
3450
|
-
//
|
|
3451
|
-
//
|
|
3452
|
-
// and adopts a newer signed manifest (handleManifestPollResponse). No separate wiring
|
|
3453
|
-
// needed here; poll lifecycle = the keystone connection lifecycle.
|
|
3492
|
+
// CELLO-M7-CONN-001 (DOD-CONN-3): background manifest polling runs daemon-level over
|
|
3493
|
+
// unauthenticated HTTP (startHttpManifestPoll above), NOT over a signaling stream. Its
|
|
3494
|
+
// lifecycle is the daemon's, not any agent connection's — so it polls even with zero agents.
|
|
3454
3495
|
// Graceful shutdown
|
|
3455
3496
|
async function stop(reason) {
|
|
3456
|
-
//
|
|
3497
|
+
// CELLO-M7-CONN-001: stop the HTTP manifest poll (sets the stopped flag so an in-flight
|
|
3498
|
+
// tick cannot re-arm, and cancels the scheduler). Belt-and-suspenders cancel for the
|
|
3499
|
+
// no-poll case (scheduler present but poll not started).
|
|
3500
|
+
stopHttpManifestPoll?.();
|
|
3457
3501
|
if (manifestPollScheduler) {
|
|
3458
3502
|
manifestPollScheduler.cancel();
|
|
3459
3503
|
}
|
|
3460
3504
|
logger.info("daemon.stopped", { pid: process.pid, reason });
|
|
3461
|
-
//
|
|
3462
|
-
|
|
3463
|
-
//
|
|
3464
|
-
|
|
3465
|
-
for (const entry of perAgentSignaling.values()) {
|
|
3466
|
-
await entry.signaling.stop();
|
|
3467
|
-
}
|
|
3505
|
+
// CONN-001 (code-review LOW): stopAllSignaling() stops the shared manager AND every per-agent
|
|
3506
|
+
// manager (best-effort). The previously-separate per-agent stop loop here was redundant and
|
|
3507
|
+
// unguarded (would abort the rest of shutdown if stop() ever threw on a second call) — removed.
|
|
3508
|
+
await stopAllSignaling();
|
|
3468
3509
|
// Gracefully mark active sessions interrupted (AC-009) before stopping IPC
|
|
3469
3510
|
await sessionNodeManager.gracefulShutdown();
|
|
3470
3511
|
await ipcServer.stop();
|