mirror of
https://github.com/logos-messaging/logos-delivery.git
synced 2026-06-07 14:39:45 +00:00
Combines five dep-and-build changes that all flow from the libp2p v2.0.0
upgrade and the move to the extracted libp2p_mix / mix-rln plugin stack:
waku.nimble:
* libp2p: ff8d51857 -> c43199378 (release/v2.0.0 tip; sha-pinned until
vacp2p cuts a v2.0.0 tag).
* Drop the bare `zlib < 0.2` cap — no longer needed by the upgraded
libp2p.
* websock: bare ">= 0.4.0" — replaces the d4cd68b URL+SHA workaround
that pinned through a libp2p commit-specific websock SHA.
* nim-json-rpc: switch to chaitanyaprem/nim-json-rpc#f05fad25 — relaxes
websock cap to allow >=0.4.0. TODO: revert to status-im/nim-json-rpc
once status-im/nim-json-rpc#277 merges and a tag is cut.
* lsquic: bare ">= 0.4.1" (drops URL form).
* Add mix-rln-spam-protection-plugin pin (23b278b4) and nim-libp2p-mix
pin (50c4ab4f — PR #14 HEAD); the plugin pins the same libp2p_mix
SHA so the diamond dep collapses to a single source.
waku/factory/waku.nim:
* Explicit HPService.setup(switch) / AutonatService.setup(switch)
calls. libp2p v2.0.0's Service lifecycle refactor (libp2p#2462)
removed switch.start's auto-setup loop, so any caller that assigns
directly to switch.services (we do) is responsible for calling
setup() themselves. Without it, AutonatService.addressMapper stays
nil and peerInfo.expandAddrs SIGSEGVs during start(). Wrapped in
try/except for ServiceSetupError so a setup failure surfaces as a
logged error rather than a crash.
Build / scripts:
* scripts/build_rln_mix.sh removed and Makefile simplified — librln
is now a single shared archive built from zerokit's `stateless`
features (no separate librln_mix archive).
* simulations/mixnet/build_setup.sh + setup_credentials.nim updated
to use librln_v2.0.2.a directly and run RLN keystore setup before
nodes start.
Validated:
* Cold local-cache nimble setup --localdeps -y.
* wakunode2 and chat2mix link cleanly.
* Mixnet roundtrip sim: [PASS] bob received message from alice.
* RLN proof generation + verification on every in-path mix node:
5 gen_called == 5 verified, 0 SPAM_PROOF_* errors.
134 lines
4.2 KiB
Nim
134 lines
4.2 KiB
Nim
{.push raises: [].}
|
|
|
|
import std/options, results, chronicles, chronos, metrics, bearssl/rand, stew/byteutils
|
|
import libp2p/peerid, libp2p/stream/connection
|
|
import
|
|
../common/option_shims,
|
|
../waku_core/peers,
|
|
../node/peer_manager,
|
|
../utils/requests,
|
|
../waku_core,
|
|
./common,
|
|
./protocol_metrics,
|
|
./rpc,
|
|
./rpc_codec
|
|
|
|
logScope:
|
|
topics = "waku lightpush client"
|
|
|
|
type WakuLightPushClient* = ref object
|
|
rng*: ref rand.HmacDrbgContext
|
|
peerManager*: PeerManager
|
|
|
|
proc new*(
|
|
T: type WakuLightPushClient, peerManager: PeerManager, rng: ref rand.HmacDrbgContext
|
|
): T =
|
|
WakuLightPushClient(peerManager: peerManager, rng: rng)
|
|
|
|
proc ensureTimestampSet(message: var WakuMessage) =
|
|
if message.timestamp == 0:
|
|
message.timestamp = getNowInNanosecondTime()
|
|
|
|
## Short log string for peer identifiers (overloads for convenience)
|
|
func shortPeerId(peer: PeerId): string =
|
|
shortLog(peer)
|
|
|
|
func shortPeerId(peer: RemotePeerInfo): string =
|
|
shortLog(peer.peerId)
|
|
|
|
proc sendPushRequest(
|
|
wl: WakuLightPushClient,
|
|
req: LightPushRequest,
|
|
peer: PeerId | RemotePeerInfo,
|
|
conn: Option[Connection] = none(Connection),
|
|
): Future[WakuLightPushResult] {.async.} =
|
|
let connection = conn.valueOr:
|
|
(await wl.peerManager.dialPeer(peer, WakuLightPushCodec)).valueOr:
|
|
waku_lightpush_v3_errors.inc(labelValues = [dialFailure])
|
|
return lighpushErrorResult(
|
|
LightPushErrorCode.NO_PEERS_TO_RELAY,
|
|
dialFailure & ": " & $peer & " is not accessible",
|
|
)
|
|
|
|
defer:
|
|
await connection.closeWithEOF()
|
|
|
|
await connection.writeLP(req.encode().buffer)
|
|
|
|
var buffer: seq[byte]
|
|
try:
|
|
buffer = await connection.readLp(DefaultMaxRpcSize.int)
|
|
except LPStreamRemoteClosedError:
|
|
error "Failed to read response from peer", error = getCurrentExceptionMsg()
|
|
return lightpushResultInternalError(
|
|
"Failed to read response from peer: " & getCurrentExceptionMsg()
|
|
)
|
|
|
|
let response = LightpushResponse.decode(buffer).valueOr:
|
|
error "failed to decode response"
|
|
waku_lightpush_v3_errors.inc(labelValues = [decodeRpcFailure])
|
|
return lightpushResultInternalError(decodeRpcFailure)
|
|
|
|
if response.requestId != req.requestId and
|
|
response.statusCode != LightPushErrorCode.TOO_MANY_REQUESTS:
|
|
error "response failure, requestId mismatch",
|
|
requestId = req.requestId, responseRequestId = response.requestId
|
|
return lightpushResultInternalError("response failure, requestId mismatch")
|
|
|
|
return toPushResult(response)
|
|
|
|
proc publish*(
|
|
wl: WakuLightPushClient,
|
|
pubSubTopic: Option[PubsubTopic] = none(PubsubTopic),
|
|
wakuMessage: WakuMessage,
|
|
dest: Connection | PeerId | RemotePeerInfo,
|
|
): Future[WakuLightPushResult] {.async, gcsafe.} =
|
|
var message = wakuMessage
|
|
ensureTimestampSet(message)
|
|
|
|
let msgHash = computeMessageHash(pubSubTopic.get(""), message).to0xHex()
|
|
|
|
let peerIdStr =
|
|
when dest is Connection:
|
|
shortPeerId(dest.peerId)
|
|
else:
|
|
shortPeerId(dest)
|
|
|
|
info "publish",
|
|
myPeerId = wl.peerManager.switch.peerInfo.peerId,
|
|
peerId = peerIdStr,
|
|
msgHash = msgHash,
|
|
sentTime = getNowInNanosecondTime()
|
|
|
|
let request = LightpushRequest(
|
|
requestId: generateRequestId(wl.rng), pubsubTopic: pubSubTopic, message: message
|
|
)
|
|
|
|
let relayPeerCount =
|
|
when dest is Connection:
|
|
?await wl.sendPushRequest(request, dest.peerId, some(dest))
|
|
else:
|
|
?await wl.sendPushRequest(request, dest)
|
|
|
|
return lightpushSuccessResult(relayPeerCount)
|
|
|
|
proc publishToAny*(
|
|
wl: WakuLightPushClient, pubsubTopic: PubsubTopic, wakuMessage: WakuMessage
|
|
): Future[WakuLightPushResult] {.async, gcsafe.} =
|
|
# Like publish, but selects a peer automatically from the peer manager
|
|
let peer = wl.peerManager.selectPeer(WakuLightPushCodec).valueOr:
|
|
# TODO: check if it is matches the situation - shall we distinguish client side missing peers from server side?
|
|
return lighpushErrorResult(
|
|
LightPushErrorCode.NO_PEERS_TO_RELAY, "no suitable remote peers"
|
|
)
|
|
return await wl.publish(some(pubsubTopic), wakuMessage, peer)
|
|
|
|
proc publishWithConn*(
|
|
wl: WakuLightPushClient,
|
|
pubSubTopic: PubsubTopic,
|
|
message: WakuMessage,
|
|
conn: Connection,
|
|
destPeer: PeerId,
|
|
): Future[WakuLightPushResult] {.async, gcsafe.} =
|
|
return await wl.publish(some(pubSubTopic), message, conn)
|