2019-06-29 01:27:59 +03:00
|
|
|
:: Ames extends Arvo's %pass/%give move semantics across the network.
|
|
|
|
::
|
2019-12-21 09:56:51 +03:00
|
|
|
:: Ames receives packets as Arvo events and emits packets as Arvo
|
|
|
|
:: effects. The runtime is responsible for transferring the bytes in
|
|
|
|
:: an Ames packet across a physical network to another ship.
|
|
|
|
::
|
|
|
|
:: The runtime tells Ames which physical address a packet came from,
|
|
|
|
:: represented as an opaque atom. Ames can emit a packet effect to
|
|
|
|
:: one of those opaque atoms or to the Urbit address of a galaxy
|
|
|
|
:: (root node), which the runtime is responsible for translating to a
|
|
|
|
:: physical address. One runtime implementation sends UDP packets
|
|
|
|
:: using IPv4 addresses for ships and DNS lookups for galaxies, but
|
|
|
|
:: other implementations may overlay over other kinds of networks.
|
|
|
|
::
|
|
|
|
:: A local vane can pass Ames a %plea request message. Ames
|
|
|
|
:: transmits the message over the wire to the peer ship's Ames, which
|
|
|
|
:: passes the message to the destination vane.
|
|
|
|
::
|
|
|
|
:: Once the peer has processed the %plea message, it sends a
|
|
|
|
:: message-acknowledgment packet over the wire back to the local
|
|
|
|
:: Ames. This ack can either be positive to indicate the request was
|
|
|
|
:: processed, or negative to indicate the request failed, in which
|
|
|
|
:: case it's called a "nack". (Don't confuse Ames nacks with TCP
|
|
|
|
:: nacks, which are a different concept).
|
|
|
|
::
|
|
|
|
:: When the local Ames receives either a positive message-ack or a
|
|
|
|
:: combination of a nack and naxplanation (explained in more detail
|
2019-06-29 01:27:59 +03:00
|
|
|
:: below), it gives an %done move to the local vane that had
|
2019-12-21 09:56:51 +03:00
|
|
|
:: requested the original %plea message be sent.
|
|
|
|
::
|
|
|
|
:: A local vane can give Ames zero or more %boon response messages in
|
|
|
|
:: response to a %plea, on the same duct that Ames used to pass the
|
|
|
|
:: %plea to the vane. Ames transmits a %boon over the wire to the
|
|
|
|
:: peer's Ames, which gives it to the destination vane on the same
|
|
|
|
:: duct the vane had used to pass the original %plea to Ames.
|
|
|
|
::
|
|
|
|
:: %boon messages are acked automatically by the receiver Ames. They
|
|
|
|
:: cannot be nacked, and Ames only uses the ack internally, without
|
|
|
|
:: notifying the client vane that gave Ames the %boon.
|
|
|
|
::
|
|
|
|
:: If the Arvo event that completed receipt of a %boon message
|
|
|
|
:: crashes, Ames instead sends the client vane a %lost message
|
|
|
|
:: indicating the %boon was missed.
|
|
|
|
::
|
|
|
|
:: %plea messages can be nacked, in which case the peer will send
|
|
|
|
:: both a message-nack packet and a naxplanation message, which is
|
|
|
|
:: sent in a way that does not interfere with normal operation. The
|
|
|
|
:: naxplanation is sent as a full Ames message, instead of just a
|
|
|
|
:: packet, because the contained error information can be arbitrarily
|
|
|
|
:: large. A naxplanation can only give rise to a positive ack --
|
|
|
|
:: never ack an ack, and never nack a naxplanation.
|
|
|
|
::
|
|
|
|
:: Ames guarantees a total ordering of messages within a "flow",
|
|
|
|
:: identified in other vanes by a duct and over the wire by a "bone":
|
|
|
|
:: an opaque number. Each flow has a FIFO queue of %plea requests
|
|
|
|
:: from the requesting ship to the responding ship and a FIFO queue
|
|
|
|
:: of %boon's in the other direction.
|
|
|
|
::
|
|
|
|
:: Message order across flows is not specified and may vary based on
|
|
|
|
:: network conditions.
|
|
|
|
::
|
|
|
|
:: Ames guarantees that a message will only be delivered once to the
|
|
|
|
:: destination vane.
|
|
|
|
::
|
|
|
|
:: Ames encrypts every message using symmetric-key encryption by
|
|
|
|
:: performing an elliptic curve Diffie-Hellman using our private key
|
|
|
|
:: and the public key of the peer. For ships in the Jael PKI
|
|
|
|
:: (public-key infrastructure), Ames looks up the peer's public key
|
|
|
|
:: from Jael. Comets (128-bit ephemeral addresses) are not
|
|
|
|
:: cryptographic assets and must self-attest over Ames by sending a
|
|
|
|
:: single self-signed packet containing their public key.
|
|
|
|
::
|
|
|
|
:: When a peer suffers a continuity breach, Ames removes all
|
|
|
|
:: messaging state related to it. Ames does not guarantee that all
|
|
|
|
:: messages will be fully delivered to the now-stale peer. From
|
|
|
|
:: Ames's perspective, the newly restarted peer is a new ship.
|
|
|
|
:: Ames's guarantees are not maintained across a breach.
|
|
|
|
::
|
|
|
|
:: A vane can pass Ames a %heed $task to request Ames track a peer's
|
|
|
|
:: responsiveness. If our %boon's to it start backing up locally,
|
|
|
|
:: Ames will give a %clog back to the requesting vane containing the
|
|
|
|
:: unresponsive peer's urbit address. This interaction does not use
|
|
|
|
:: ducts as unique keys. Stop tracking a peer by sending Ames a
|
|
|
|
:: %jilt $task.
|
|
|
|
::
|
|
|
|
:: Debug output can be adjusted using %sift and %spew $task's.
|
2019-06-29 01:27:59 +03:00
|
|
|
::
|
2022-01-27 16:32:49 +03:00
|
|
|
::TODO fine
|
2023-03-21 20:01:17 +03:00
|
|
|
:: - receiving packets:
|
|
|
|
:: +on-hear (1st) -> +on-hear-packet -> %fine
|
|
|
|
:: - sending packets:
|
|
|
|
:: +on-plea
|
|
|
|
:: -> +make-peer-core (make a function kind of like +on-memo)
|
|
|
|
:: -> call +on-pump-send kind of like how +run-message-pump does
|
|
|
|
:: (assuming as event, scry just stateless)
|
2019-05-25 08:53:29 +03:00
|
|
|
::
|
2019-06-29 02:43:52 +03:00
|
|
|
!:
|
|
|
|
=, ames
|
2020-12-08 03:47:06 +03:00
|
|
|
=* point point:jael
|
|
|
|
=* public-keys-result public-keys-result:jael
|
2019-12-03 02:46:40 +03:00
|
|
|
:: veb: verbosity flags
|
|
|
|
::
|
|
|
|
=/ veb-all-off
|
|
|
|
:* snd=`?`%.n :: sending packets
|
|
|
|
rcv=`?`%.n :: receiving packets
|
|
|
|
odd=`?`%.n :: unusual events
|
2019-12-11 21:55:16 +03:00
|
|
|
msg=`?`%.n :: message-level events
|
2019-12-03 02:46:40 +03:00
|
|
|
ges=`?`%.n :: congestion control
|
2019-12-11 21:55:16 +03:00
|
|
|
for=`?`%.n :: packet forwarding
|
2019-12-03 02:46:40 +03:00
|
|
|
rot=`?`%.n :: routing attempts
|
2023-01-24 23:07:19 +03:00
|
|
|
kay=`?`%.n :: is ok/not responding
|
2019-11-15 03:10:48 +03:00
|
|
|
==
|
2023-02-17 23:02:11 +03:00
|
|
|
=/ packet-size 13
|
2019-12-03 02:46:40 +03:00
|
|
|
=>
|
2020-12-05 07:32:17 +03:00
|
|
|
~% %ames ..part ~
|
2019-11-15 03:10:48 +03:00
|
|
|
|%
|
2020-12-01 17:51:14 +03:00
|
|
|
+| %helpers
|
2019-12-11 21:55:16 +03:00
|
|
|
:: +trace: print if .verb is set and we're tracking .ship
|
2019-12-03 02:46:40 +03:00
|
|
|
::
|
2019-11-15 03:10:48 +03:00
|
|
|
++ trace
|
2019-12-11 21:55:16 +03:00
|
|
|
|= [verb=? =ship ships=(set ship) print=(trap tape)]
|
|
|
|
^+ same
|
2019-11-15 03:10:48 +03:00
|
|
|
?. verb
|
|
|
|
same
|
2022-03-11 11:40:14 +03:00
|
|
|
?. => [ship=ship ships=ships in=in]
|
|
|
|
~+ |(=(~ ships) (~(has in ships) ship))
|
|
|
|
same
|
2019-12-11 21:55:16 +03:00
|
|
|
(slog leaf/"ames: {(scow %p ship)}: {(print)}" ~)
|
2020-12-01 17:51:14 +03:00
|
|
|
:: +qos-update-text: notice text for if connection state changes
|
|
|
|
::
|
|
|
|
++ qos-update-text
|
2023-01-24 23:07:19 +03:00
|
|
|
|= [=ship old=qos new=qos k=? ships=(set ship)]
|
2020-12-01 17:51:14 +03:00
|
|
|
^- (unit tape)
|
|
|
|
::
|
|
|
|
?+ [-.old -.new] ~
|
|
|
|
[%unborn %live] `"; {(scow %p ship)} is your neighbor"
|
2023-01-24 23:07:19 +03:00
|
|
|
[%dead %live] ((trace k ship ships |.("is ok")) ~)
|
|
|
|
[%live %dead] ((trace k ship ships |.("not responding still trying")) ~)
|
|
|
|
[%unborn %dead] ((trace k ship ships |.("not responding still trying")) ~)
|
2020-12-01 17:51:14 +03:00
|
|
|
[%live %unborn] `"; {(scow %p ship)} has sunk"
|
|
|
|
[%dead %unborn] `"; {(scow %p ship)} has sunk"
|
|
|
|
==
|
|
|
|
:: +lte-packets: yes if a is before b
|
|
|
|
::
|
|
|
|
++ lte-packets
|
|
|
|
|= [a=live-packet-key b=live-packet-key]
|
|
|
|
^- ?
|
|
|
|
::
|
|
|
|
?: (lth message-num.a message-num.b)
|
|
|
|
%.y
|
|
|
|
?: (gth message-num.a message-num.b)
|
|
|
|
%.n
|
|
|
|
(lte fragment-num.a fragment-num.b)
|
|
|
|
:: +split-message: split message into kilobyte-sized fragments
|
|
|
|
::
|
|
|
|
:: We don't literally split it here since that would allocate many
|
|
|
|
:: large atoms with no structural sharing. Instead, each
|
|
|
|
:: static-fragment has the entire message and a counter. In
|
|
|
|
:: +encrypt, we interpret this to get the actual fragment.
|
|
|
|
::
|
|
|
|
++ split-message
|
|
|
|
~/ %split-message
|
|
|
|
|= [=message-num =message-blob]
|
|
|
|
^- (list static-fragment)
|
|
|
|
::
|
2023-02-17 23:02:11 +03:00
|
|
|
=/ num-fragments=fragment-num (met packet-size message-blob)
|
2020-12-01 17:51:14 +03:00
|
|
|
=| counter=@
|
|
|
|
::
|
|
|
|
|- ^- (list static-fragment)
|
|
|
|
?: (gte counter num-fragments)
|
|
|
|
~
|
|
|
|
::
|
|
|
|
:- [message-num num-fragments counter `@`message-blob]
|
|
|
|
$(counter +(counter))
|
|
|
|
:: +assemble-fragments: concatenate fragments into a $message
|
|
|
|
::
|
|
|
|
++ assemble-fragments
|
|
|
|
~/ %assemble-fragments
|
|
|
|
|= [num-fragments=fragment-num fragments=(map fragment-num fragment)]
|
|
|
|
^- *
|
|
|
|
::
|
|
|
|
=| sorted=(list fragment)
|
|
|
|
=. sorted
|
|
|
|
=/ index=fragment-num 0
|
|
|
|
|- ^+ sorted
|
|
|
|
?: =(index num-fragments)
|
|
|
|
sorted
|
|
|
|
$(index +(index), sorted [(~(got by fragments) index) sorted])
|
|
|
|
::
|
2023-02-17 23:02:11 +03:00
|
|
|
(cue (rep packet-size (flop sorted)))
|
2021-01-20 23:29:45 +03:00
|
|
|
:: +jim: caching +jam
|
|
|
|
::
|
|
|
|
++ jim |=(n=* ~+((jam n)))
|
2023-03-21 20:01:17 +03:00
|
|
|
++ spit
|
|
|
|
|= =path
|
|
|
|
^- [pat=@t wid=@ud]
|
|
|
|
=+ pat=(spat path)
|
|
|
|
=+ wid=(met 3 pat)
|
|
|
|
?> (lte wid 384)
|
|
|
|
[pat wid]
|
|
|
|
::
|
2020-12-01 17:51:14 +03:00
|
|
|
:: +bind-duct: find or make new $bone for .duct in .ossuary
|
|
|
|
::
|
|
|
|
++ bind-duct
|
|
|
|
|= [=ossuary =duct]
|
|
|
|
^+ [next-bone.ossuary ossuary]
|
|
|
|
::
|
|
|
|
?^ existing=(~(get by by-duct.ossuary) duct)
|
|
|
|
[u.existing ossuary]
|
|
|
|
::
|
|
|
|
:- next-bone.ossuary
|
|
|
|
:+ (add 4 next-bone.ossuary)
|
|
|
|
(~(put by by-duct.ossuary) duct next-bone.ossuary)
|
|
|
|
(~(put by by-bone.ossuary) next-bone.ossuary duct)
|
2022-04-22 13:25:55 +03:00
|
|
|
:: +make-bone-wire: encode ship, rift and bone in wire for sending to vane
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
|
|
|
++ make-bone-wire
|
2022-04-22 13:25:55 +03:00
|
|
|
|= [her=ship =rift =bone]
|
2020-12-01 17:51:14 +03:00
|
|
|
^- wire
|
|
|
|
::
|
2022-04-22 13:25:55 +03:00
|
|
|
/bone/(scot %p her)/(scot %ud rift)/(scot %ud bone)
|
|
|
|
:: +parse-bone-wire: decode ship, bone and rift from wire from local vane
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
|
|
|
++ parse-bone-wire
|
|
|
|
|= =wire
|
2022-04-22 13:25:55 +03:00
|
|
|
^- %- unit
|
2022-03-11 11:40:14 +03:00
|
|
|
$% [%old her=ship =bone]
|
|
|
|
[%new her=ship =rift =bone]
|
2022-04-22 13:25:55 +03:00
|
|
|
==
|
|
|
|
?. ?| ?=([%bone @ @ @ ~] wire)
|
|
|
|
?=([%bone @ @ ~] wire)
|
|
|
|
==
|
2022-03-11 11:40:14 +03:00
|
|
|
:: ignore malformed wires
|
2022-04-22 13:25:55 +03:00
|
|
|
::
|
|
|
|
~
|
|
|
|
?+ wire ~
|
|
|
|
[%bone @ @ ~]
|
|
|
|
`[%old `@p`(slav %p i.t.wire) `@ud`(slav %ud i.t.t.wire)]
|
|
|
|
::
|
|
|
|
[%bone @ @ @ ~]
|
|
|
|
%- some
|
|
|
|
:^ %new
|
|
|
|
`@p`(slav %p i.t.wire)
|
|
|
|
`@ud`(slav %ud i.t.t.wire)
|
|
|
|
`@ud`(slav %ud i.t.t.t.wire)
|
|
|
|
==
|
2020-12-01 17:51:14 +03:00
|
|
|
:: +make-pump-timer-wire: construct wire for |packet-pump timer
|
|
|
|
::
|
|
|
|
++ make-pump-timer-wire
|
|
|
|
|= [her=ship =bone]
|
|
|
|
^- wire
|
|
|
|
/pump/(scot %p her)/(scot %ud bone)
|
2023-03-28 14:40:10 +03:00
|
|
|
:: +parse-pump-wire: parse .her and .bone from |packet-pump wire
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
2023-03-28 14:40:10 +03:00
|
|
|
++ parse-pump-wire
|
|
|
|
|= [ship=@ bone=@]
|
|
|
|
^- (unit [%pump her=^ship =^bone])
|
|
|
|
?~ ship=`(unit @p)`(slaw %p ship)
|
2020-12-01 17:51:14 +03:00
|
|
|
~
|
2023-03-28 14:40:10 +03:00
|
|
|
?~ bone=`(unit @ud)`(slaw %ud bone)
|
2020-12-01 17:51:14 +03:00
|
|
|
~
|
2023-03-28 14:40:10 +03:00
|
|
|
`pump/[u.ship u.bone]
|
|
|
|
::
|
|
|
|
++ parse-fine-wire
|
|
|
|
|= [ship=@ =wire]
|
|
|
|
^- (unit [%fine her=^ship =^wire])
|
|
|
|
?~ ship=`(unit @p)`(slaw %p ship)
|
2020-12-01 17:51:14 +03:00
|
|
|
~
|
2023-03-28 14:40:10 +03:00
|
|
|
`fine/[u.ship wire]
|
2020-12-01 17:51:14 +03:00
|
|
|
:: +derive-symmetric-key: $symmetric-key from $private-key and $public-key
|
|
|
|
::
|
|
|
|
:: Assumes keys have a tag on them like the result of the |ex:crub core.
|
|
|
|
::
|
|
|
|
++ derive-symmetric-key
|
|
|
|
~/ %derive-symmetric-key
|
|
|
|
|= [=public-key =private-key]
|
|
|
|
^- symmetric-key
|
|
|
|
::
|
2020-12-04 01:25:31 +03:00
|
|
|
?> =('b' (end 3 public-key))
|
|
|
|
=. public-key (rsh 8 (rsh 3 public-key))
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
2020-12-04 01:25:31 +03:00
|
|
|
?> =('B' (end 3 private-key))
|
|
|
|
=. private-key (rsh 8 (rsh 3 private-key))
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
|
|
|
`@`(shar:ed:crypto public-key private-key)
|
2022-05-20 06:20:00 +03:00
|
|
|
:: +encode-keys-packet: create key request $packet
|
|
|
|
::
|
|
|
|
++ encode-keys-packet
|
|
|
|
~/ %encode-keys-packet
|
|
|
|
|= [sndr=ship rcvr=ship sndr-life=life]
|
2022-06-30 17:27:02 +03:00
|
|
|
^- shot
|
2022-05-20 06:20:00 +03:00
|
|
|
:* [sndr rcvr]
|
2022-06-30 17:27:02 +03:00
|
|
|
&
|
|
|
|
&
|
2022-05-20 06:20:00 +03:00
|
|
|
(mod sndr-life 16)
|
|
|
|
`@`1
|
|
|
|
origin=~
|
|
|
|
content=`@`%keys
|
|
|
|
==
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
2022-05-19 18:07:35 +03:00
|
|
|
++ response-size 13 :: 1kb
|
2022-06-04 06:58:50 +03:00
|
|
|
:: +sift-roar: assemble scry response fragments into full message
|
2022-02-01 14:42:13 +03:00
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
++ sift-roar
|
2022-02-12 04:30:40 +03:00
|
|
|
|= [total=@ud hav=(list have)]
|
2022-02-01 14:42:13 +03:00
|
|
|
^- roar
|
2022-05-29 04:23:37 +03:00
|
|
|
=/ mes=@
|
2022-02-17 00:35:59 +03:00
|
|
|
%+ rep response-size
|
2022-02-12 04:30:40 +03:00
|
|
|
%+ turn (flop hav)
|
|
|
|
|= =have
|
|
|
|
dat.have
|
2022-06-01 02:31:38 +03:00
|
|
|
=+ sig=(end 9 mes)
|
|
|
|
:- sig
|
2022-05-29 04:23:37 +03:00
|
|
|
=+ dat=(rsh 9 mes)
|
2022-02-04 15:36:32 +03:00
|
|
|
?~ dat ~
|
2022-02-01 14:42:13 +03:00
|
|
|
~| [%fine %response-not-cask]
|
2022-02-04 15:36:32 +03:00
|
|
|
;;((cask) (cue dat))
|
2022-02-12 04:30:40 +03:00
|
|
|
:: +welt: like +weld but first argument is reversed
|
|
|
|
:: TODO: move to hoon.hoon
|
|
|
|
++ welt
|
|
|
|
~/ %welt
|
|
|
|
|* [a=(list) b=(list)]
|
|
|
|
=> .(a ^.(homo a), b ^.(homo b))
|
|
|
|
|- ^+ b
|
|
|
|
?~ a b
|
|
|
|
$(a t.a, b [i.a b])
|
2023-03-23 12:19:54 +03:00
|
|
|
:: +etch-hunk: helper core to serialize a $hunk
|
|
|
|
::
|
|
|
|
++ etch-hunk
|
|
|
|
|= [=ship =life =acru:ames]
|
|
|
|
|%
|
|
|
|
::
|
|
|
|
+| %helpers
|
|
|
|
:: +show-meow: prepare $meow for printing
|
|
|
|
::
|
|
|
|
++ show-meow
|
|
|
|
|= =meow
|
|
|
|
:* sig=`@q`(mug sig.meow)
|
|
|
|
num=num.meow
|
|
|
|
siz=siz.meow
|
|
|
|
dat=`@q`(mug dat.meow)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ make-meow
|
|
|
|
|= [=path mes=@ num=@ud]
|
|
|
|
^- meow
|
|
|
|
=/ tot (met 13 mes)
|
|
|
|
=/ dat (cut 13 [(dec num) 1] mes)
|
|
|
|
=/ wid (met 3 dat)
|
|
|
|
:* sig=(sign-fra path num dat) :: fragment signature
|
|
|
|
num=tot :: number of fragments
|
|
|
|
siz=?:(=(num tot) (met 3 dat) 1.024) :: fragment byte width
|
|
|
|
dat=dat :: response data fragment
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ etch-meow
|
|
|
|
|= =meow
|
|
|
|
^- @uxmeow
|
|
|
|
%+ can 3
|
|
|
|
:~ 64^sig.meow
|
|
|
|
4^num.meow
|
|
|
|
2^siz.meow
|
|
|
|
(met 3 dat.meow)^dat.meow
|
|
|
|
==
|
|
|
|
+| %keys
|
|
|
|
::
|
|
|
|
++ sign sigh:as:acru
|
|
|
|
++ sign-fra
|
|
|
|
|= [=path fra=@ud dat=@ux]
|
|
|
|
::~> %bout.[1 %sign-fra]
|
|
|
|
(sign (jam path fra dat))
|
|
|
|
::
|
|
|
|
++ full
|
|
|
|
|= [=path data=$@(~ (cask))]
|
|
|
|
=/ buf (jam ship life path data)
|
|
|
|
::=/ nam (crip "sign-full {<(met 3 buf)>}")
|
|
|
|
::~> %bout.[1 nam]
|
|
|
|
(sign buf)
|
|
|
|
::
|
|
|
|
+| %serialization
|
|
|
|
::
|
|
|
|
++ etch
|
|
|
|
|= [=path =hunk data=$@(~ (cask))]
|
|
|
|
^- (list @uxmeow)
|
|
|
|
=/ mes=@
|
|
|
|
=/ sig=@ (full path data)
|
|
|
|
?~ data sig
|
|
|
|
(mix sig (lsh 9 (jam data)))
|
|
|
|
::(cat 9 sig (jam data))
|
|
|
|
::
|
|
|
|
=/ las (met 13 mes)
|
|
|
|
=/ tip (dec (add [lop len]:hunk))
|
|
|
|
=/ top (min las tip)
|
|
|
|
=/ num lop.hunk
|
|
|
|
?> (lte num top)
|
|
|
|
=| res=(list @uxmeow)
|
|
|
|
|- ^+ res
|
|
|
|
?: =(num top)
|
|
|
|
=- (flop - res)
|
|
|
|
(etch-meow (make-meow path mes num))
|
|
|
|
$(num +(num), res :_(res (etch-meow (make-meow path mes num))))
|
|
|
|
--
|
2022-06-04 06:58:50 +03:00
|
|
|
:: +etch-open-packet: convert $open-packet attestation to $shot
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
++ etch-open-packet
|
|
|
|
~/ %etch-open-packet
|
2020-12-01 17:51:14 +03:00
|
|
|
|= [pac=open-packet =acru:ames]
|
2022-06-04 06:58:50 +03:00
|
|
|
^- shot
|
2020-12-01 17:51:14 +03:00
|
|
|
:* [sndr rcvr]:pac
|
2022-05-27 21:14:53 +03:00
|
|
|
req=& sam=&
|
2020-12-01 17:51:14 +03:00
|
|
|
(mod sndr-life.pac 16)
|
|
|
|
(mod rcvr-life.pac 16)
|
|
|
|
origin=~
|
|
|
|
content=`@`(sign:as:acru (jam pac))
|
|
|
|
==
|
2022-06-04 06:58:50 +03:00
|
|
|
:: +sift-open-packet: decode comet attestation into an $open-packet
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
++ sift-open-packet
|
|
|
|
~/ %sift-open-packet
|
|
|
|
|= [=shot our=ship our-life=@]
|
2020-12-01 17:51:14 +03:00
|
|
|
^- open-packet
|
|
|
|
:: deserialize and type-check packet contents
|
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
=+ ;; [signature=@ signed=@] (cue content.shot)
|
2020-12-01 17:51:14 +03:00
|
|
|
=+ ;; =open-packet (cue signed)
|
|
|
|
:: assert .our and .her and lives match
|
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
?> .= sndr.open-packet sndr.shot
|
2020-12-01 17:51:14 +03:00
|
|
|
?> .= rcvr.open-packet our
|
|
|
|
?> .= sndr-life.open-packet 1
|
|
|
|
?> .= rcvr-life.open-packet our-life
|
|
|
|
:: only a star can sponsor a comet
|
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
?> =(%king (clan:title (^sein:title sndr.shot)))
|
2022-02-03 00:16:16 +03:00
|
|
|
=/ crub (com:nu:crub:crypto public-key.open-packet)
|
2020-12-01 17:51:14 +03:00
|
|
|
:: comet public-key must hash to its @p address
|
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
?> =(sndr.shot fig:ex:crub)
|
2020-12-01 17:51:14 +03:00
|
|
|
:: verify signature
|
|
|
|
::
|
2022-02-03 00:16:16 +03:00
|
|
|
?> (safe:as:crub signature signed)
|
2020-12-01 17:51:14 +03:00
|
|
|
open-packet
|
2022-06-04 06:58:50 +03:00
|
|
|
:: +etch-shut-packet: encrypt and packetize a $shut-packet
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
++ etch-shut-packet
|
|
|
|
~/ %etch-shut-packet
|
2022-04-22 13:25:55 +03:00
|
|
|
:: TODO add rift to signed messages to prevent replay attacks?
|
|
|
|
::
|
2020-12-01 17:51:14 +03:00
|
|
|
|= $: =shut-packet
|
|
|
|
=symmetric-key
|
|
|
|
sndr=ship
|
|
|
|
rcvr=ship
|
|
|
|
sndr-life=@
|
|
|
|
rcvr-life=@
|
|
|
|
==
|
2022-06-04 06:58:50 +03:00
|
|
|
^- shot
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
|
|
|
=? meat.shut-packet
|
|
|
|
?& ?=(%& -.meat.shut-packet)
|
2023-02-17 23:02:11 +03:00
|
|
|
(gth (met packet-size fragment.p.meat.shut-packet) 1)
|
2020-12-01 17:51:14 +03:00
|
|
|
==
|
|
|
|
%_ meat.shut-packet
|
|
|
|
fragment.p
|
2023-02-17 23:02:11 +03:00
|
|
|
(cut packet-size [[fragment-num 1] fragment]:p.meat.shut-packet)
|
2020-12-01 17:51:14 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
=/ vec ~[sndr rcvr sndr-life rcvr-life]
|
|
|
|
=/ [siv=@uxH len=@ cyf=@ux]
|
|
|
|
(~(en sivc:aes:crypto (shaz symmetric-key) vec) (jam shut-packet))
|
2022-05-27 21:14:53 +03:00
|
|
|
::
|
|
|
|
:* ^= dyad [sndr rcvr]
|
|
|
|
^= req ?=(%& -.meat.shut-packet)
|
|
|
|
^= sam &
|
|
|
|
^= sndr-tick (mod sndr-life 16)
|
|
|
|
^= sndr-tick (mod rcvr-life 16)
|
|
|
|
^= origin ~
|
|
|
|
^= content :(mix siv (lsh 7 len) (lsh [3 18] cyf))
|
|
|
|
==
|
2022-06-04 06:58:50 +03:00
|
|
|
:: +sift-shut-packet: decrypt a $shut-packet from a $shot
|
2020-12-01 17:51:14 +03:00
|
|
|
::
|
2022-06-04 06:58:50 +03:00
|
|
|
++ sift-shut-packet
|
|
|
|
~/ %sift-shut-packet
|
|
|
|
|= [=shot =symmetric-key sndr-life=@ rcvr-life=@]
|
2020-12-01 17:51:14 +03:00
|
|
|
^- shut-packet
|
2022-06-04 06:58:50 +03:00
|
|
|
?. =(sndr-tick.shot (mod sndr-life 16))
|
|
|
|
~| ames-sndr-tick+sndr-tick.shot !!
|
|
|
|
?. =(rcvr-tick.shot (mod rcvr-life 16))
|
|
|
|
~| ames-rcvr-tick+rcvr-tick.shot !!
|
|
|
|
=/ siv (end 7 content.shot)
|
|
|
|
=/ len (end 4 (rsh 7 content.shot))
|
|
|
|
=/ cyf (rsh [3 18] content.shot)
|
|
|
|
~| ames-decrypt+[[sndr rcvr origin]:shot len siv]
|
|
|
|
=/ vec ~[sndr.shot rcvr.shot sndr-life rcvr-life]
|
2020-12-01 17:51:14 +03:00
|
|
|
;; shut-packet %- cue %- need
|
|
|
|
(~(de sivc:aes:crypto (shaz symmetric-key) vec) siv len cyf)
|
2019-05-25 08:53:29 +03:00
|
|
|
+| %atomics
|
2019-05-25 05:03:33 +03:00
|
|
|
::
|
2019-06-11 23:22:24 +03:00
|
|
|
+$ private-key @uwprivatekey
|
2019-05-27 02:54:23 +03:00
|
|
|
+$ signature @uwsignature
|
2022-02-01 14:42:13 +03:00
|
|
|
+$ byuts [wid=@ud dat=@ux]
|
2019-05-25 08:53:29 +03:00
|
|
|
::
|
2019-05-27 06:22:38 +03:00
|
|
|
+| %kinetics
|
2019-05-27 04:48:41 +03:00
|
|
|
:: $channel: combined sender and receiver identifying data
|
2019-05-25 08:53:29 +03:00
|
|
|
::
|
2019-05-27 04:48:41 +03:00
|
|
|
+$ channel
|
2019-05-27 04:52:31 +03:00
|
|
|
$: [our=ship her=ship]
|
2019-05-29 01:05:59 +03:00
|
|
|
now=@da
|
2019-05-27 04:48:41 +03:00
|
|
|
:: our data, common to all dyads
|
|
|
|
::
|
|
|
|
$: =our=life
|
|
|
|
crypto-core=acru:ames
|
2019-12-11 21:55:16 +03:00
|
|
|
=bug
|
2019-05-27 04:48:41 +03:00
|
|
|
==
|
|
|
|
:: her data, specific to this dyad
|
|
|
|
::
|
|
|
|
$: =symmetric-key
|
|
|
|
=her=life
|
2022-04-22 13:25:55 +03:00
|
|
|
=her=rift
|
2019-05-27 04:48:41 +03:00
|
|
|
=her=public-key
|
2019-06-22 03:07:19 +03:00
|
|
|
her-sponsor=ship
|
2019-05-27 04:48:41 +03:00
|
|
|
== ==
|
2019-05-27 02:54:23 +03:00
|
|
|
:: $open-packet: unencrypted packet payload, for comet self-attestation
|
|
|
|
::
|
2019-11-27 09:15:05 +03:00
|
|
|
:: This data structure gets signed and jammed to form the .contents
|
|
|
|
:: field of a $packet.
|
2019-06-18 02:23:32 +03:00
|
|
|
::
|
2022-04-22 13:25:55 +03:00
|
|
|
:: TODO add rift to prevent replay attacks
|
|
|
|
::
|
2019-05-27 02:54:23 +03:00
|
|
|
+$ open-packet
|
2019-11-27 09:15:05 +03:00
|
|
|
$: =public-key
|
2019-06-18 02:23:32 +03:00
|
|
|
sndr=ship
|
2019-05-27 02:54:23 +03:00
|
|
|
=sndr=life
|
|
|
|
rcvr=ship
|
2019-06-18 02:23:32 +03:00
|
|
|
=rcvr=life
|
2019-05-27 02:54:23 +03:00
|
|
|
==
|
|
|
|
:: $shut-packet: encrypted packet payload
|
|
|
|
::
|
|
|
|
+$ shut-packet
|
2020-12-01 17:51:14 +03:00
|
|
|
$: =bone
|
2019-05-27 02:54:23 +03:00
|
|
|
=message-num
|
|
|
|
meat=(each fragment-meat ack-meat)
|
|
|
|
==
|
|
|
|
:: $fragment-meat: contents of a message-fragment packet
|
|
|
|
::
|
|
|
|
+$ fragment-meat
|
|
|
|
$: num-fragments=fragment-num
|
|
|
|
=fragment-num
|
|
|
|
=fragment
|
|
|
|
==
|
|
|
|
:: $ack-meat: contents of an acknowledgment packet; fragment or message
|
|
|
|
::
|
|
|
|
:: Fragment acks reference the $fragment-num of the target packet.
|
|
|
|
::
|
|
|
|
:: Message acks contain a success flag .ok, which is %.n in case of
|
|
|
|
:: negative acknowledgment (nack), along with .lag that describes the
|
|
|
|
:: time it took to process the message. .lag is zero if the message
|
|
|
|
:: was processed during a single Arvo event. At the moment, .lag is
|
|
|
|
:: always zero.
|
|
|
|
::
|
|
|
|
+$ ack-meat (each fragment-num [ok=? lag=@dr])
|
2019-11-03 03:52:48 +03:00
|
|
|
:: $naxplanation: nack trace; explains which message failed and why
|
|
|
|
::
|
|
|
|
+$ naxplanation [=message-num =error]
|
2019-05-25 08:53:29 +03:00
|
|
|
::
|
2019-05-27 04:52:31 +03:00
|
|
|
+| %statics
|
2019-05-25 08:53:29 +03:00
|
|
|
::
|
|
|
|
:: $ames-state: state for entire vane
|
|
|
|
::
|
2019-12-11 21:55:16 +03:00
|
|
|
:: peers: states of connections to other ships
|
|
|
|
:: unix-duct: handle to give moves to unix
|
|
|
|
:: life: our $life; how many times we've rekeyed
|
|
|
|
:: crypto-core: interface for encryption and signing
|
|
|
|
:: bug: debug printing configuration
|
2022-12-15 22:37:14 +03:00
|
|
|
:: snub: blocklist for incoming packets
|
2023-02-13 14:04:41 +03:00
|
|
|
:: cong: parameters for marking a flow as clogged
|
2022-08-05 01:13:21 +03:00
|
|
|
::
|
2019-05-25 08:53:29 +03:00
|
|
|
+$ ames-state
|
|
|
|
$: peers=(map ship ship-state)
|
2019-06-08 13:13:38 +03:00
|
|
|
=unix=duct
|
2019-05-25 08:53:29 +03:00
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
=rift
|
2019-05-25 08:53:29 +03:00
|
|
|
crypto-core=acru:ames
|
2019-12-11 21:55:16 +03:00
|
|
|
=bug
|
2023-03-03 00:21:36 +03:00
|
|
|
snub=[form=?(%allow %deny) ships=(set ship)]
|
2023-02-13 14:04:41 +03:00
|
|
|
cong=[msg=@ud mem=@ud]
|
2019-12-11 21:55:16 +03:00
|
|
|
==
|
2023-03-17 16:05:38 +03:00
|
|
|
::
|
|
|
|
+$ azimuth-state [=symmetric-key =life =rift =public-key sponsor=ship]
|
|
|
|
+$ ames-state-4 ames-state-5
|
2022-03-11 11:40:14 +03:00
|
|
|
+$ ames-state-5
|
|
|
|
$: peers=(map ship ship-state-5)
|
|
|
|
=unix=duct
|
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
crypto-core=acru-12
|
2023-01-24 23:07:19 +03:00
|
|
|
bug=bug-9
|
2022-03-11 11:40:14 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ ship-state-4 ship-state-5
|
|
|
|
+$ ship-state-5
|
2023-03-21 20:01:17 +03:00
|
|
|
$% [%alien alien-agenda-12]
|
2022-03-11 11:40:14 +03:00
|
|
|
[%known peer-state-5]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ peer-state-5
|
2023-03-17 16:05:38 +03:00
|
|
|
$: azimuth-state
|
2022-03-11 11:40:14 +03:00
|
|
|
route=(unit [direct=? =lane])
|
|
|
|
=qos
|
|
|
|
=ossuary
|
|
|
|
snd=(map bone message-pump-state)
|
|
|
|
rcv=(map bone message-sink-state)
|
|
|
|
nax=(set [=bone =message-num])
|
|
|
|
heeds=(set duct)
|
|
|
|
==
|
|
|
|
::
|
2023-03-17 16:05:38 +03:00
|
|
|
+$ bug-9
|
|
|
|
$: veb=_[`?`%.n `?`%.n `?`%.n `?`%.n `?`%.n `?`%.n `?`%.n]
|
|
|
|
ships=(set ship)
|
|
|
|
==
|
|
|
|
::
|
2022-05-03 14:57:39 +03:00
|
|
|
+$ ames-state-6
|
|
|
|
$: peers=(map ship ship-state-6)
|
2019-06-08 13:13:38 +03:00
|
|
|
=unix=duct
|
2019-05-25 08:53:29 +03:00
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
crypto-core=acru-12
|
2023-01-24 23:07:19 +03:00
|
|
|
bug=bug-9
|
2019-12-11 21:55:16 +03:00
|
|
|
==
|
2022-05-03 14:57:39 +03:00
|
|
|
::
|
|
|
|
+$ ship-state-6
|
2023-03-21 20:01:17 +03:00
|
|
|
$% [%alien alien-agenda-12]
|
2022-05-03 14:57:39 +03:00
|
|
|
[%known peer-state-6]
|
2021-09-01 18:16:00 +03:00
|
|
|
==
|
2022-03-22 17:42:18 +03:00
|
|
|
::
|
2022-05-03 14:57:39 +03:00
|
|
|
+$ peer-state-6
|
2023-03-17 16:05:38 +03:00
|
|
|
$: azimuth-state
|
2021-09-01 18:16:00 +03:00
|
|
|
route=(unit [direct=? =lane])
|
|
|
|
=qos
|
|
|
|
=ossuary
|
|
|
|
snd=(map bone message-pump-state)
|
|
|
|
rcv=(map bone message-sink-state)
|
|
|
|
nax=(set [=bone =message-num])
|
|
|
|
heeds=(set duct)
|
|
|
|
==
|
2022-07-06 18:00:35 +03:00
|
|
|
::
|
|
|
|
+$ ames-state-7
|
2023-03-17 16:05:38 +03:00
|
|
|
$: peers=(map ship ship-state-7)
|
2022-07-06 18:00:35 +03:00
|
|
|
=unix=duct
|
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
crypto-core=acru-12
|
2023-01-24 23:07:19 +03:00
|
|
|
bug=bug-9
|
2022-07-06 18:00:35 +03:00
|
|
|
==
|
2022-12-15 22:37:14 +03:00
|
|
|
::
|
|
|
|
+$ ames-state-8
|
2023-03-17 16:05:38 +03:00
|
|
|
$: peers=(map ship ship-state-7)
|
2022-12-15 22:37:14 +03:00
|
|
|
=unix=duct
|
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
crypto-core=acru-12
|
2023-01-24 23:07:19 +03:00
|
|
|
bug=bug-9
|
|
|
|
corks=(set wire)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ ames-state-9
|
2023-03-17 16:05:38 +03:00
|
|
|
$: peers=(map ship ship-state-7)
|
2023-01-24 23:07:19 +03:00
|
|
|
=unix=duct
|
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
crypto-core=acru-12
|
2023-01-24 23:07:19 +03:00
|
|
|
bug=bug-9
|
2022-12-15 22:37:14 +03:00
|
|
|
corks=(set wire)
|
2023-01-24 23:07:19 +03:00
|
|
|
snub=(set ship)
|
2022-12-15 22:37:14 +03:00
|
|
|
==
|
|
|
|
::
|
2023-02-13 14:04:41 +03:00
|
|
|
+$ ames-state-10
|
2023-03-17 16:05:38 +03:00
|
|
|
$: peers=(map ship ship-state-7)
|
2023-02-13 14:04:41 +03:00
|
|
|
=unix=duct
|
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
crypto-core=acru-12
|
2023-03-17 16:05:38 +03:00
|
|
|
=bug
|
2023-02-13 14:04:41 +03:00
|
|
|
corks=(set wire)
|
|
|
|
snub=(set ship)
|
|
|
|
==
|
2023-03-17 16:05:38 +03:00
|
|
|
::
|
|
|
|
+$ ship-state-7
|
2023-03-21 20:01:17 +03:00
|
|
|
$% [%alien alien-agenda-12]
|
2023-03-17 16:05:38 +03:00
|
|
|
[%known peer-state-7]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ peer-state-7
|
|
|
|
$: azimuth-state
|
|
|
|
route=(unit [direct=? =lane])
|
|
|
|
=qos
|
|
|
|
=ossuary
|
|
|
|
snd=(map bone message-pump-state)
|
|
|
|
rcv=(map bone message-sink-state)
|
|
|
|
nax=(set [=bone =message-num])
|
|
|
|
heeds=(set duct)
|
|
|
|
closing=(set bone)
|
|
|
|
corked=(set bone)
|
|
|
|
krocs=(set bone)
|
|
|
|
==
|
|
|
|
::
|
2023-03-03 00:21:36 +03:00
|
|
|
+$ ames-state-11
|
2023-03-17 16:05:38 +03:00
|
|
|
$: peers=(map ship ship-state-7)
|
2023-03-03 00:21:36 +03:00
|
|
|
=unix=duct
|
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
crypto-core=acru-12
|
2023-03-17 16:05:38 +03:00
|
|
|
=bug
|
2023-03-03 00:21:36 +03:00
|
|
|
corks=(set wire)
|
|
|
|
snub=(set ship)
|
|
|
|
cong=[msg=@ud mem=@ud]
|
|
|
|
==
|
2023-02-13 14:04:41 +03:00
|
|
|
::
|
2023-03-17 16:05:38 +03:00
|
|
|
+$ queued-event-11
|
|
|
|
$% [%call =duct wrapped-task=(hobo task-11)]
|
|
|
|
[%take =wire =duct =sign]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ task-11
|
|
|
|
$% [%snub ships=(list ship)]
|
|
|
|
$<(%snub task)
|
|
|
|
==
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
|
|
|
+$ ames-state-12
|
|
|
|
$: peers=(map ship ship-state-12)
|
2019-06-08 13:13:38 +03:00
|
|
|
=unix=duct
|
2019-05-25 08:53:29 +03:00
|
|
|
=life
|
2023-03-21 20:01:17 +03:00
|
|
|
crypto-core=acru-12
|
2019-12-11 21:55:16 +03:00
|
|
|
=bug
|
2023-03-21 20:01:17 +03:00
|
|
|
snub=[form=?(%allow %deny) ships=(set ship)]
|
|
|
|
cong=[msg=@ud mem=@ud]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ ship-state-12
|
|
|
|
$% [%alien alien-agenda-12]
|
|
|
|
[%known peer-state-12]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ alien-agenda-12
|
|
|
|
$: messages=(list [=duct =plea])
|
|
|
|
packets=(set =blob)
|
|
|
|
heeds=(set duct)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ peer-state-12
|
|
|
|
$: azimuth-state
|
|
|
|
route=(unit [direct=? =lane])
|
|
|
|
=qos
|
|
|
|
=ossuary
|
|
|
|
snd=(map bone message-pump-state)
|
|
|
|
rcv=(map bone message-sink-state)
|
|
|
|
nax=(set [=bone =message-num])
|
|
|
|
heeds=(set duct)
|
|
|
|
closing=(set bone)
|
|
|
|
corked=(set bone)
|
2019-12-11 21:55:16 +03:00
|
|
|
==
|
2022-03-11 20:07:51 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ acru-12 $_ ^?
|
2022-02-03 15:49:38 +03:00
|
|
|
|%
|
|
|
|
++ as ^?
|
|
|
|
|% ++ seal |~([a=pass b=@] *@)
|
|
|
|
++ sign |~(a=@ *@)
|
|
|
|
++ sure |~(a=@ *(unit @))
|
|
|
|
++ tear |~([a=pass b=@] *(unit @))
|
|
|
|
--
|
|
|
|
++ de |~([a=@ b=@] *(unit @))
|
|
|
|
++ dy |~([a=@ b=@] *@)
|
|
|
|
++ en |~([a=@ b=@] *@)
|
|
|
|
++ ex ^?
|
|
|
|
|% ++ fig *@uvH
|
|
|
|
++ pac *@uvG
|
|
|
|
++ pub *pass
|
|
|
|
++ sec *ring
|
|
|
|
--
|
|
|
|
++ nu ^?
|
|
|
|
|% ++ pit |~([a=@ b=@] ^?(..nu))
|
|
|
|
++ nol |~(a=ring ^?(..nu))
|
|
|
|
++ com |~(a=pass ^?(..nu))
|
|
|
|
--
|
|
|
|
--
|
2019-12-11 21:55:16 +03:00
|
|
|
:: $bug: debug printing configuration
|
|
|
|
::
|
|
|
|
:: veb: verbosity toggles
|
|
|
|
:: ships: identity filter; if ~, print for all
|
|
|
|
::
|
|
|
|
+$ bug
|
|
|
|
$: veb=_veb-all-off
|
|
|
|
ships=(set ship)
|
2019-05-25 08:53:29 +03:00
|
|
|
==
|
2019-05-27 06:22:38 +03:00
|
|
|
::
|
|
|
|
+| %dialectics
|
|
|
|
::
|
2019-05-28 05:43:47 +03:00
|
|
|
:: $move: output effect; either request or response
|
|
|
|
::
|
2019-05-28 06:15:17 +03:00
|
|
|
+$ move [=duct card=(wind note gift)]
|
2019-06-29 00:26:40 +03:00
|
|
|
:: $queued-event: event to be handled after initial boot completes
|
2019-05-28 05:43:47 +03:00
|
|
|
::
|
2019-06-29 00:26:40 +03:00
|
|
|
+$ queued-event
|
2020-12-06 11:38:37 +03:00
|
|
|
$% [%call =duct wrapped-task=(hobo task)]
|
|
|
|
[%take =wire =duct =sign]
|
2019-05-28 04:43:10 +03:00
|
|
|
==
|
|
|
|
:: $note: request to other vane
|
|
|
|
::
|
2019-07-28 10:50:32 +03:00
|
|
|
:: Ames passes a %plea note to another vane when it receives a
|
2019-06-19 02:15:50 +03:00
|
|
|
:: message on a "forward flow" from a peer, originally passed from
|
|
|
|
:: one of the peer's vanes to the peer's Ames.
|
|
|
|
::
|
2023-04-03 10:18:51 +03:00
|
|
|
:: Ames passes a %plea to itself to handle internal %cork and %pine moves
|
2019-06-25 02:52:22 +03:00
|
|
|
:: Ames passes a %private-keys to Jael to request our private keys.
|
|
|
|
:: Ames passes a %public-keys to Jael to request a peer's public
|
|
|
|
:: keys.
|
|
|
|
::
|
2019-05-28 04:43:10 +03:00
|
|
|
+$ note
|
2019-06-29 00:26:40 +03:00
|
|
|
$~ [%b %wait *@da]
|
|
|
|
$% $: %b
|
2019-05-28 04:43:10 +03:00
|
|
|
$% [%wait date=@da]
|
|
|
|
[%rest date=@da]
|
|
|
|
== ==
|
2022-02-02 05:30:11 +03:00
|
|
|
$: %c
|
|
|
|
$% $>(%warp task:clay)
|
|
|
|
== ==
|
2019-08-08 07:57:04 +03:00
|
|
|
$: %d
|
|
|
|
$% [%flog flog:dill]
|
2019-05-28 04:43:10 +03:00
|
|
|
== ==
|
|
|
|
$: %j
|
2019-06-29 00:26:40 +03:00
|
|
|
$% [%private-keys ~]
|
2019-06-29 01:27:59 +03:00
|
|
|
[%public-keys ships=(set ship)]
|
2019-05-28 04:43:10 +03:00
|
|
|
[%turf ~]
|
2022-09-18 18:13:30 +03:00
|
|
|
[%ruin ships=(set ship)]
|
2019-05-28 04:43:10 +03:00
|
|
|
== ==
|
2019-06-29 00:26:40 +03:00
|
|
|
$: @tas
|
2019-07-28 10:50:32 +03:00
|
|
|
$% [%plea =ship =plea]
|
2019-05-28 04:43:10 +03:00
|
|
|
== == ==
|
|
|
|
:: $sign: response from other vane
|
|
|
|
::
|
|
|
|
+$ sign
|
2020-12-08 03:22:26 +03:00
|
|
|
$~ [%behn %wake ~]
|
|
|
|
$% $: %behn
|
2020-12-08 05:51:58 +03:00
|
|
|
$% $>(%wake gift:behn)
|
2019-05-28 04:43:10 +03:00
|
|
|
== ==
|
2020-12-08 03:22:26 +03:00
|
|
|
$: %jael
|
2019-07-23 05:16:19 +03:00
|
|
|
$% [%private-keys =life vein=(map life ring)]
|
2019-07-29 12:08:26 +03:00
|
|
|
[%public-keys =public-keys-result]
|
2019-06-22 01:17:09 +03:00
|
|
|
[%turf turfs=(list turf)]
|
2019-06-18 21:21:12 +03:00
|
|
|
== ==
|
2019-06-29 00:26:40 +03:00
|
|
|
$: @tas
|
2019-06-20 10:21:37 +03:00
|
|
|
$% [%done error=(unit error)]
|
2019-07-28 10:50:32 +03:00
|
|
|
[%boon payload=*]
|
2019-05-28 04:43:10 +03:00
|
|
|
== == ==
|
2019-05-27 06:22:38 +03:00
|
|
|
:: $message-pump-task: job for |message-pump
|
|
|
|
::
|
2019-06-25 19:00:03 +03:00
|
|
|
:: %memo: packetize and send application-level message
|
2019-06-20 10:21:37 +03:00
|
|
|
:: %hear: handle receipt of ack on fragment or message
|
2019-12-02 23:20:57 +03:00
|
|
|
:: %near: handle receipt of naxplanation
|
2021-08-28 22:39:57 +03:00
|
|
|
:: $prod: reset congestion control
|
2019-05-27 06:22:38 +03:00
|
|
|
:: %wake: handle timer firing
|
|
|
|
::
|
|
|
|
+$ message-pump-task
|
2019-07-28 10:50:32 +03:00
|
|
|
$% [%memo =message-blob]
|
2019-06-20 10:21:37 +03:00
|
|
|
[%hear =message-num =ack-meat]
|
2019-12-02 23:20:57 +03:00
|
|
|
[%near =naxplanation]
|
2021-08-28 22:39:57 +03:00
|
|
|
[%prod ~]
|
2022-08-05 01:13:21 +03:00
|
|
|
[%wake ~]
|
2019-05-27 06:22:38 +03:00
|
|
|
==
|
|
|
|
:: $packet-pump-task: job for |packet-pump
|
|
|
|
::
|
2019-06-20 10:21:37 +03:00
|
|
|
:: %hear: deal with a packet acknowledgment
|
|
|
|
:: %done: deal with message acknowledgment
|
|
|
|
:: %halt: finish event, possibly updating timer
|
2019-05-27 06:22:38 +03:00
|
|
|
:: %wake: handle timer firing
|
2021-08-28 22:39:57 +03:00
|
|
|
:: %prod: reset congestion control
|
2019-05-27 06:22:38 +03:00
|
|
|
::
|
|
|
|
+$ packet-pump-task
|
2019-06-20 10:21:37 +03:00
|
|
|
$% [%hear =message-num =fragment-num]
|
|
|
|
[%done =message-num lag=@dr]
|
|
|
|
[%halt ~]
|
2022-08-05 01:13:21 +03:00
|
|
|
[%wake current=message-num]
|
2021-08-28 22:39:57 +03:00
|
|
|
[%prod ~]
|
2019-05-27 06:22:38 +03:00
|
|
|
==
|
2019-10-30 23:12:57 +03:00
|
|
|
:: $message-sink-task: job for |message-sink
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2019-06-18 21:21:12 +03:00
|
|
|
:: %done: receive confirmation from vane of processing or failure
|
2019-06-20 10:21:37 +03:00
|
|
|
:: %drop: clear .message-num from .nax.state
|
2019-06-11 03:31:50 +03:00
|
|
|
:: %hear: handle receiving a message fragment packet
|
2019-08-06 02:05:40 +03:00
|
|
|
:: .ok: %.y unless previous failed attempt
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2019-10-30 23:12:57 +03:00
|
|
|
+$ message-sink-task
|
2023-02-22 12:50:20 +03:00
|
|
|
$% [%done ok=?]
|
2019-06-20 10:21:37 +03:00
|
|
|
[%drop =message-num]
|
2019-08-06 02:05:40 +03:00
|
|
|
[%hear =lane =shut-packet ok=?]
|
2019-05-29 01:05:59 +03:00
|
|
|
==
|
2019-05-25 05:03:33 +03:00
|
|
|
--
|
2019-05-28 04:43:10 +03:00
|
|
|
:: external vane interface
|
|
|
|
::
|
2020-12-06 11:38:37 +03:00
|
|
|
|= our=ship
|
2019-06-29 00:26:40 +03:00
|
|
|
:: larval ames, before %born sets .unix-duct; wraps adult ames core
|
|
|
|
::
|
|
|
|
=< =* adult-gate .
|
|
|
|
=| queued-events=(qeu queued-event)
|
2022-12-15 22:37:14 +03:00
|
|
|
=| $= cached-state
|
|
|
|
%- unit
|
|
|
|
$% [%5 ames-state-5]
|
|
|
|
[%6 ames-state-6]
|
|
|
|
[%7 ames-state-7]
|
|
|
|
[%8 ames-state-8]
|
2023-01-24 23:07:19 +03:00
|
|
|
[%9 ames-state-9]
|
2023-02-13 14:04:41 +03:00
|
|
|
[%10 ames-state-10]
|
2023-03-03 00:21:36 +03:00
|
|
|
[%11 ames-state-11]
|
2023-03-21 20:01:17 +03:00
|
|
|
[%12 ames-state-12]
|
|
|
|
[%13 ^ames-state]
|
2022-12-15 22:37:14 +03:00
|
|
|
==
|
2019-06-29 00:26:40 +03:00
|
|
|
::
|
2020-12-06 11:38:37 +03:00
|
|
|
|= [now=@da eny=@ rof=roof]
|
2019-06-29 00:26:40 +03:00
|
|
|
=* larval-gate .
|
|
|
|
=* adult-core (adult-gate +<)
|
2022-05-17 08:47:58 +03:00
|
|
|
=< |%
|
2022-05-17 08:11:09 +03:00
|
|
|
++ call ^call
|
|
|
|
++ load ^load
|
|
|
|
++ scry ^scry
|
|
|
|
++ stay ^stay
|
|
|
|
++ take ^take
|
|
|
|
--
|
2019-06-29 00:26:40 +03:00
|
|
|
|%
|
2022-08-23 17:37:01 +03:00
|
|
|
++ larval-core .
|
2019-06-29 00:26:40 +03:00
|
|
|
:: +call: handle request $task
|
|
|
|
::
|
|
|
|
++ call
|
2020-12-06 11:38:37 +03:00
|
|
|
|= [=duct dud=(unit goof) wrapped-task=(hobo task)]
|
2019-07-23 05:16:19 +03:00
|
|
|
::
|
2020-01-21 02:01:36 +03:00
|
|
|
=/ =task ((harden task) wrapped-task)
|
2020-12-08 05:01:48 +03:00
|
|
|
:: reject larval error notifications
|
2020-02-24 22:09:37 +03:00
|
|
|
::
|
2020-12-08 05:01:48 +03:00
|
|
|
?^ dud
|
|
|
|
~|(%ames-larval-call-dud (mean tang.u.dud))
|
2022-08-20 00:58:10 +03:00
|
|
|
:: before processing events, make sure we have state loaded
|
2020-02-24 22:09:37 +03:00
|
|
|
::
|
2022-08-23 17:37:01 +03:00
|
|
|
=^ molt-moves larval-core molt
|
2022-08-20 00:58:10 +03:00
|
|
|
::
|
2022-08-23 16:45:17 +03:00
|
|
|
?: &(!=(~ unix-duct.ames-state.adult-gate) =(~ queued-events))
|
2022-05-18 18:36:40 +03:00
|
|
|
=^ moves adult-gate (call:adult-core duct dud task)
|
2022-08-20 00:58:10 +03:00
|
|
|
~> %slog.0^leaf/"ames: metamorphosis"
|
|
|
|
[(weld molt-moves moves) adult-gate]
|
2022-08-23 16:45:17 +03:00
|
|
|
:: drop incoming packets until we metamorphose
|
|
|
|
::
|
|
|
|
?: ?=(%hear -.task)
|
|
|
|
[~ larval-gate]
|
2019-06-29 00:26:40 +03:00
|
|
|
:: %born: set .unix-duct and start draining .queued-events
|
|
|
|
::
|
2019-07-23 05:16:19 +03:00
|
|
|
?: ?=(%born -.task)
|
2019-06-29 00:26:40 +03:00
|
|
|
:: process %born using wrapped adult ames
|
|
|
|
::
|
2020-12-06 11:38:37 +03:00
|
|
|
=^ moves adult-gate (call:adult-core duct dud task)
|
2022-08-20 00:58:10 +03:00
|
|
|
=. moves (weld molt-moves moves)
|
2019-06-29 00:26:40 +03:00
|
|
|
:: kick off a timer to process the first of .queued-events
|
|
|
|
::
|
|
|
|
=. moves :_(moves [duct %pass /larva %b %wait now])
|
|
|
|
[moves larval-gate]
|
|
|
|
:: any other event: enqueue it until we have a .unix-duct
|
|
|
|
::
|
2020-02-11 01:03:03 +03:00
|
|
|
:: XX what to do with errors?
|
|
|
|
::
|
2020-12-06 11:38:37 +03:00
|
|
|
=. queued-events (~(put to queued-events) %call duct task)
|
2019-06-29 00:26:40 +03:00
|
|
|
[~ larval-gate]
|
|
|
|
:: +take: handle response $sign
|
|
|
|
::
|
|
|
|
++ take
|
2020-12-06 11:38:37 +03:00
|
|
|
|= [=wire =duct dud=(unit goof) =sign]
|
2020-02-25 01:10:59 +03:00
|
|
|
?^ dud
|
|
|
|
~|(%ames-larval-take-dud (mean tang.u.dud))
|
2022-08-23 16:09:35 +03:00
|
|
|
::
|
2022-08-23 17:37:01 +03:00
|
|
|
=^ molt-moves larval-core molt
|
2022-08-23 16:09:35 +03:00
|
|
|
::
|
|
|
|
?: &(!=(~ unix-duct.ames-state.adult-gate) =(~ queued-events))
|
|
|
|
=^ moves adult-gate (take:adult-core wire duct dud sign)
|
|
|
|
~> %slog.0^leaf/"ames: metamorphosis"
|
|
|
|
[(weld molt-moves moves) adult-gate]
|
2019-06-29 00:26:40 +03:00
|
|
|
:: enqueue event if not a larval drainage timer
|
|
|
|
::
|
2022-08-23 17:37:01 +03:00
|
|
|
?. =(/larva wire)
|
|
|
|
=. queued-events (~(put to queued-events) %take wire duct sign)
|
|
|
|
[~ larval-gate]
|
2019-06-29 00:26:40 +03:00
|
|
|
:: larval event drainage timer; pop and process a queued event
|
|
|
|
::
|
2020-12-08 03:22:26 +03:00
|
|
|
?. ?=([%behn %wake *] sign)
|
2019-08-10 21:48:40 +03:00
|
|
|
~> %slog.0^leaf/"ames: larva: strange sign"
|
2019-07-23 05:16:19 +03:00
|
|
|
[~ larval-gate]
|
2019-12-04 19:04:09 +03:00
|
|
|
:: if crashed, print, dequeue, and set next drainage timer
|
|
|
|
::
|
2019-12-04 17:45:52 +03:00
|
|
|
?^ error.sign
|
2019-12-04 21:43:07 +03:00
|
|
|
:: .queued-events should never be ~ here, but if it is, don't crash
|
|
|
|
::
|
|
|
|
?: =(~ queued-events)
|
|
|
|
=/ =tang [leaf/"ames: cursed metamorphosis" u.error.sign]
|
|
|
|
=/ moves [duct %pass /larva-crash %d %flog %crud %larva tang]~
|
|
|
|
[moves adult-gate]
|
|
|
|
:: dequeue and discard crashed event
|
|
|
|
::
|
2019-12-04 19:04:09 +03:00
|
|
|
=. queued-events +:~(get to queued-events)
|
|
|
|
:: .queued-events has been cleared; metamorphose
|
|
|
|
::
|
|
|
|
?~ queued-events
|
|
|
|
~> %slog.0^leaf/"ames: metamorphosis"
|
|
|
|
[~ adult-gate]
|
|
|
|
:: set timer to drain next event
|
|
|
|
::
|
2019-12-04 19:29:01 +03:00
|
|
|
=/ moves
|
|
|
|
=/ =tang [leaf/"ames: larva: drain crash" u.error.sign]
|
|
|
|
:~ [duct %pass /larva-crash %d %flog %crud %larva tang]
|
|
|
|
[duct %pass /larva %b %wait now]
|
|
|
|
==
|
2019-12-04 17:45:52 +03:00
|
|
|
[moves larval-gate]
|
|
|
|
:: normal drain timer; dequeue and run event
|
|
|
|
::
|
2019-06-29 00:26:40 +03:00
|
|
|
=^ first-event queued-events ~(get to queued-events)
|
|
|
|
=^ moves adult-gate
|
|
|
|
?- -.first-event
|
2020-12-06 11:38:37 +03:00
|
|
|
%call (call:adult-core [duct ~ wrapped-task]:+.first-event)
|
|
|
|
%take (take:adult-core [wire duct ~ sign]:+.first-event)
|
2019-06-29 00:26:40 +03:00
|
|
|
==
|
2022-08-20 00:58:10 +03:00
|
|
|
=. moves (weld molt-moves moves)
|
|
|
|
:: .queued-events has been cleared; done!
|
2019-06-29 00:26:40 +03:00
|
|
|
::
|
|
|
|
?~ queued-events
|
2022-08-20 01:05:20 +03:00
|
|
|
~> %slog.0^leaf/"ames: metamorphosis"
|
2022-08-20 00:58:10 +03:00
|
|
|
[moves adult-gate]
|
2019-06-29 00:26:40 +03:00
|
|
|
:: set timer to drain next event
|
|
|
|
::
|
|
|
|
=. moves :_(moves [duct %pass /larva %b %wait now])
|
|
|
|
[moves larval-gate]
|
|
|
|
:: lifecycle arms; mostly pass-throughs to the contained adult ames
|
|
|
|
::
|
|
|
|
++ scry scry:adult-core
|
2023-03-21 20:01:17 +03:00
|
|
|
++ stay [%13 %larva queued-events ames-state.adult-gate]
|
2019-06-29 00:26:40 +03:00
|
|
|
++ load
|
2019-07-31 21:51:31 +03:00
|
|
|
|= $= old
|
2020-06-12 08:55:08 +03:00
|
|
|
$% $: %4
|
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
2022-03-11 11:40:14 +03:00
|
|
|
state=ames-state-4
|
2020-06-12 08:55:08 +03:00
|
|
|
==
|
2022-03-11 11:40:14 +03:00
|
|
|
[%adult state=ames-state-4]
|
2020-06-12 08:55:08 +03:00
|
|
|
== ==
|
2021-02-27 07:53:27 +03:00
|
|
|
$: %5
|
2022-04-22 13:25:55 +03:00
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
2022-03-11 11:40:14 +03:00
|
|
|
state=ames-state-5
|
2022-04-22 13:25:55 +03:00
|
|
|
==
|
2022-03-11 11:40:14 +03:00
|
|
|
[%adult state=ames-state-5]
|
2022-04-22 13:25:55 +03:00
|
|
|
== ==
|
|
|
|
$: %6
|
2022-05-03 14:57:39 +03:00
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
|
|
|
state=ames-state-6
|
|
|
|
==
|
|
|
|
[%adult state=ames-state-6]
|
|
|
|
== ==
|
|
|
|
$: %7
|
2022-07-06 18:00:35 +03:00
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
|
|
|
state=ames-state-7
|
|
|
|
==
|
|
|
|
[%adult state=ames-state-7]
|
|
|
|
== ==
|
|
|
|
$: %8
|
2022-12-15 22:37:14 +03:00
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
|
|
|
state=ames-state-8
|
|
|
|
==
|
|
|
|
[%adult state=ames-state-8]
|
2023-01-24 23:07:19 +03:00
|
|
|
== ==
|
2022-12-15 22:37:14 +03:00
|
|
|
$: %9
|
2023-01-24 23:07:19 +03:00
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
|
|
|
state=ames-state-9
|
|
|
|
==
|
|
|
|
[%adult state=ames-state-9]
|
|
|
|
== ==
|
|
|
|
$: %10
|
2023-02-13 14:04:41 +03:00
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
|
|
|
state=ames-state-10
|
|
|
|
==
|
|
|
|
[%adult state=ames-state-10]
|
|
|
|
== ==
|
|
|
|
$: %11
|
2023-03-03 00:21:36 +03:00
|
|
|
$% $: %larva
|
2023-03-17 16:05:38 +03:00
|
|
|
events=(qeu queued-event-11)
|
2023-03-03 00:21:36 +03:00
|
|
|
state=ames-state-11
|
|
|
|
==
|
|
|
|
[%adult state=ames-state-11]
|
|
|
|
== ==
|
|
|
|
$: %12
|
2023-03-21 20:01:17 +03:00
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
|
|
|
state=ames-state-12
|
|
|
|
==
|
|
|
|
[%adult state=ames-state-12]
|
|
|
|
== ==
|
|
|
|
$: %13
|
2021-02-27 07:53:27 +03:00
|
|
|
$% $: %larva
|
|
|
|
events=(qeu queued-event)
|
|
|
|
state=_ames-state.adult-gate
|
|
|
|
==
|
|
|
|
[%adult state=_ames-state.adult-gate]
|
2022-04-22 13:25:55 +03:00
|
|
|
== == ==
|
2019-12-01 10:47:24 +03:00
|
|
|
?- old
|
2022-05-09 15:13:51 +03:00
|
|
|
[%4 %adult *]
|
|
|
|
$(old [%5 %adult (state-4-to-5:load:adult-core state.old)])
|
2019-12-11 21:55:16 +03:00
|
|
|
::
|
2020-06-12 08:55:08 +03:00
|
|
|
[%4 %larva *]
|
2022-05-09 15:13:51 +03:00
|
|
|
=. state.old (state-4-to-5:load:adult-core state.old)
|
|
|
|
$(-.old %5)
|
2021-02-27 07:53:27 +03:00
|
|
|
::
|
2022-06-30 17:27:02 +03:00
|
|
|
[%5 %adult *]
|
2022-05-09 15:17:27 +03:00
|
|
|
=. cached-state `[%5 state.old]
|
2022-05-15 09:52:09 +03:00
|
|
|
~> %slog.0^leaf/"ames: larva reload"
|
2022-05-09 15:17:27 +03:00
|
|
|
larval-gate
|
2021-02-27 07:53:27 +03:00
|
|
|
::
|
|
|
|
[%5 %larva *]
|
2022-05-15 09:52:09 +03:00
|
|
|
~> %slog.0^leaf/"ames: larva: load"
|
2021-02-27 07:53:27 +03:00
|
|
|
=. queued-events events.old
|
|
|
|
larval-gate
|
2022-04-22 13:25:55 +03:00
|
|
|
::
|
2022-07-06 18:00:35 +03:00
|
|
|
[%6 %adult *]
|
|
|
|
=. cached-state `[%6 state.old]
|
|
|
|
~> %slog.0^leaf/"ames: larva reload"
|
|
|
|
larval-gate
|
2022-04-22 13:25:55 +03:00
|
|
|
::
|
|
|
|
[%6 %larva *]
|
2022-05-15 09:52:09 +03:00
|
|
|
~> %slog.0^leaf/"ames: larva: load"
|
2022-04-22 13:25:55 +03:00
|
|
|
=. queued-events events.old
|
|
|
|
larval-gate
|
2022-05-18 16:27:17 +03:00
|
|
|
::
|
2022-07-06 18:00:35 +03:00
|
|
|
[%7 %adult *]
|
|
|
|
=. cached-state `[%7 state.old]
|
|
|
|
~> %slog.0^leaf/"ames: larva reload"
|
|
|
|
larval-gate
|
2022-05-03 14:57:39 +03:00
|
|
|
::
|
|
|
|
[%7 %larva *]
|
2022-07-06 18:00:35 +03:00
|
|
|
~> %slog.0^leaf/"ames: larva: load"
|
|
|
|
=. queued-events events.old
|
|
|
|
larval-gate
|
|
|
|
::
|
2022-12-15 22:37:14 +03:00
|
|
|
[%8 %adult *]
|
|
|
|
=. cached-state `[%8 state.old]
|
|
|
|
~> %slog.0^leaf/"ames: larva reload"
|
|
|
|
larval-gate
|
2022-07-06 18:00:35 +03:00
|
|
|
::
|
|
|
|
[%8 %larva *]
|
2022-12-15 22:37:14 +03:00
|
|
|
~> %slog.0^leaf/"ames: larva: load"
|
|
|
|
=. queued-events events.old
|
|
|
|
larval-gate
|
|
|
|
::
|
2023-01-24 23:07:19 +03:00
|
|
|
[%9 %adult *]
|
|
|
|
=. cached-state `[%9 state.old]
|
|
|
|
~> %slog.0^leaf/"ames: larva reload"
|
|
|
|
larval-gate
|
2022-12-15 22:37:14 +03:00
|
|
|
::
|
|
|
|
[%9 %larva *]
|
2023-01-24 23:07:19 +03:00
|
|
|
~> %slog.0^leaf/"ames: larva: load"
|
|
|
|
=. queued-events events.old
|
|
|
|
larval-gate
|
|
|
|
::
|
2023-02-13 14:04:41 +03:00
|
|
|
[%10 %adult *]
|
|
|
|
=. cached-state `[%10 state.old]
|
|
|
|
~> %slog.0^leaf/"ames: larva reload"
|
|
|
|
larval-gate
|
2023-01-24 23:07:19 +03:00
|
|
|
::
|
|
|
|
[%10 %larva *]
|
2022-05-03 14:57:39 +03:00
|
|
|
~> %slog.1^leaf/"ames: larva: load"
|
|
|
|
=. queued-events events.old
|
2023-02-13 14:04:41 +03:00
|
|
|
larval-gate
|
|
|
|
::
|
2023-03-03 00:21:36 +03:00
|
|
|
[%11 %adult *]
|
|
|
|
=. cached-state `[%11 state.old]
|
|
|
|
~> %slog.0^leaf/"ames: larva reload"
|
|
|
|
larval-gate
|
2023-02-13 14:04:41 +03:00
|
|
|
::
|
|
|
|
[%11 %larva *]
|
|
|
|
~> %slog.1^leaf/"ames: larva: load"
|
2023-03-17 16:05:38 +03:00
|
|
|
=. queued-events
|
|
|
|
:: "+rep:in on a +qeu looks strange, but works fine."
|
|
|
|
::
|
|
|
|
%- ~(rep in events.old)
|
|
|
|
|= [e=queued-event-11 q=(qeu queued-event)]
|
|
|
|
%- ~(put to q) ^- queued-event
|
|
|
|
?. ?=(%call -.e) e
|
|
|
|
=/ task=task-11 ((harden task-11) wrapped-task.e)
|
2023-03-17 20:51:27 +03:00
|
|
|
%= e
|
|
|
|
wrapped-task ?.(?=(%snub -.task) task [%snub %deny ships.task])
|
|
|
|
==
|
2023-03-03 00:21:36 +03:00
|
|
|
larval-gate
|
2023-03-17 20:51:27 +03:00
|
|
|
::
|
2023-03-21 20:38:59 +03:00
|
|
|
[%12 %adult *]
|
|
|
|
=. cached-state `[%12 state.old]
|
|
|
|
~> %slog.0^leaf/"ames: larva reload"
|
|
|
|
larval-gate
|
2023-03-17 20:51:27 +03:00
|
|
|
::
|
2023-03-03 00:21:36 +03:00
|
|
|
[%12 %larva *]
|
|
|
|
~> %slog.1^leaf/"ames: larva: load"
|
|
|
|
=. queued-events events.old
|
2021-08-29 22:29:02 +03:00
|
|
|
larval-gate
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
|
|
|
[%13 %adult *] (load:adult-core %13 state.old)
|
|
|
|
::
|
|
|
|
[%13 %larva *]
|
2022-03-11 20:07:51 +03:00
|
|
|
~> %slog.1^leaf/"ames: larva: load"
|
|
|
|
=. queued-events events.old
|
2023-03-21 20:01:17 +03:00
|
|
|
=. adult-gate (load:adult-core %13 state.old)
|
2022-03-11 20:07:51 +03:00
|
|
|
larval-gate
|
2023-03-17 16:05:38 +03:00
|
|
|
::
|
2019-07-24 02:55:35 +03:00
|
|
|
==
|
2022-05-17 08:11:09 +03:00
|
|
|
:: +molt: re-evolve to adult-ames
|
|
|
|
::
|
|
|
|
++ molt
|
2022-08-23 17:37:01 +03:00
|
|
|
^- (quip move _larval-core)
|
|
|
|
?~ cached-state [~ larval-core]
|
2022-08-20 00:58:10 +03:00
|
|
|
~> %slog.0^leaf/"ames: molt"
|
|
|
|
=? u.cached-state ?=(%5 -.u.cached-state)
|
|
|
|
6+(state-5-to-6:load:adult-core +.u.cached-state)
|
|
|
|
=? u.cached-state ?=(%6 -.u.cached-state)
|
|
|
|
7+(state-6-to-7:load:adult-core +.u.cached-state)
|
|
|
|
=^ moz u.cached-state
|
|
|
|
?. ?=(%7 -.u.cached-state) [~ u.cached-state]
|
|
|
|
~> %slog.0^leaf/"ames: init daily recork timer"
|
2022-08-25 15:11:45 +03:00
|
|
|
:- [[/ames]~ %pass /recork %b %wait `@da`(add now ~d1)]~
|
2022-08-20 00:58:10 +03:00
|
|
|
8+(state-7-to-8:load:adult-core +.u.cached-state)
|
2022-12-15 22:37:14 +03:00
|
|
|
=? u.cached-state ?=(%8 -.u.cached-state)
|
|
|
|
9+(state-8-to-9:load:adult-core +.u.cached-state)
|
2023-01-24 23:07:19 +03:00
|
|
|
=? u.cached-state ?=(%9 -.u.cached-state)
|
|
|
|
10+(state-9-to-10:load:adult-core +.u.cached-state)
|
2023-02-13 14:04:41 +03:00
|
|
|
=? u.cached-state ?=(%10 -.u.cached-state)
|
|
|
|
11+(state-10-to-11:load:adult-core +.u.cached-state)
|
2023-03-03 00:21:36 +03:00
|
|
|
=? u.cached-state ?=(%11 -.u.cached-state)
|
|
|
|
12+(state-11-to-12:load:adult-core +.u.cached-state)
|
2023-03-21 20:01:17 +03:00
|
|
|
=? u.cached-state ?=(%12 -.u.cached-state)
|
|
|
|
13+(state-12-to-13:load:adult-core +.u.cached-state)
|
|
|
|
?> ?=(%13 -.u.cached-state)
|
2022-08-20 00:58:10 +03:00
|
|
|
=. ames-state.adult-gate +.u.cached-state
|
2022-08-23 17:37:01 +03:00
|
|
|
[moz larval-core(cached-state ~)]
|
2019-06-29 00:26:40 +03:00
|
|
|
--
|
2019-05-28 04:43:10 +03:00
|
|
|
::
|
2023-02-21 14:32:33 +03:00
|
|
|
=> :: |ev: inner event-handling core
|
2019-06-19 02:15:50 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
~% %per-event ..trace ~
|
2023-02-21 14:22:53 +03:00
|
|
|
|%
|
2023-02-21 14:32:33 +03:00
|
|
|
++ ev
|
2023-02-21 14:22:53 +03:00
|
|
|
=| moves=(list move)
|
2023-02-21 14:32:33 +03:00
|
|
|
~% %event-gate ..ev ~
|
2023-02-21 14:22:53 +03:00
|
|
|
|= [[now=@da eny=@ rof=roof] =duct =ames-state]
|
|
|
|
=* veb veb.bug.ames-state
|
|
|
|
=| cork-bone=(unit bone) :: modified by +on-kroc
|
|
|
|
~% %event-core ..$ ~
|
|
|
|
|%
|
2023-02-21 14:56:50 +03:00
|
|
|
+| %helpers
|
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ event-core .
|
|
|
|
++ abet [(flop moves) ames-state]
|
|
|
|
++ emit |=(=move event-core(moves [move moves]))
|
2023-03-21 20:01:17 +03:00
|
|
|
++ emil |=(mos=(list move) event-core(moves (weld (flop mos) moves)))
|
2023-02-21 14:22:53 +03:00
|
|
|
++ channel-state [life crypto-core bug]:ames-state
|
2023-02-21 14:32:33 +03:00
|
|
|
++ ev-trace
|
2023-02-21 14:22:53 +03:00
|
|
|
|= [verb=? =ship print=(trap tape)]
|
|
|
|
^+ same
|
2023-02-21 14:32:33 +03:00
|
|
|
(trace verb ship ships.bug.ames-state print)
|
2023-02-22 11:11:22 +03:00
|
|
|
:: +get-peer-state: lookup .her state or ~
|
|
|
|
::
|
|
|
|
++ get-peer-state
|
|
|
|
|= her=ship
|
|
|
|
^- (unit peer-state)
|
|
|
|
::
|
|
|
|
=- ?.(?=([~ %known *] -) ~ `+.u)
|
|
|
|
(~(get by peers.ames-state) her)
|
|
|
|
:: +got-peer-state: lookup .her state or crash
|
|
|
|
::
|
|
|
|
++ got-peer-state
|
|
|
|
|= her=ship
|
|
|
|
^- peer-state
|
|
|
|
::
|
|
|
|
~| %freaky-alien^her
|
|
|
|
=- ?>(?=(%known -<) ->)
|
|
|
|
(~(got by peers.ames-state) her)
|
|
|
|
:: +gut-peer-state: lookup .her state or default
|
|
|
|
::
|
|
|
|
++ gut-peer-state
|
|
|
|
|= her=ship
|
|
|
|
^- peer-state
|
|
|
|
=/ ship-state (~(get by peers.ames-state) her)
|
|
|
|
?. ?=([~ %known *] ship-state)
|
|
|
|
*peer-state
|
|
|
|
+.u.ship-state
|
2022-04-27 07:24:55 +03:00
|
|
|
::
|
2023-02-21 14:56:50 +03:00
|
|
|
+| %tasks
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-take-done: handle notice from vane that it processed a message
|
|
|
|
::
|
|
|
|
++ on-take-done
|
|
|
|
|= [=wire error=(unit error)]
|
|
|
|
^+ event-core
|
2023-04-03 10:18:51 +03:00
|
|
|
?: ?=([%fine ?(%pine %unsub) *] wire)
|
|
|
|
:: XX handle error?
|
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ parsed=(parse-bone-wire wire)
|
|
|
|
:: no-op
|
|
|
|
::
|
|
|
|
~> %slog.0^leaf/"ames: dropping malformed wire: {(spud wire)}"
|
|
|
|
event-core
|
|
|
|
?> ?=([@ her=ship *] u.parsed)
|
2023-03-23 14:54:22 +03:00
|
|
|
=* her her.u.parsed
|
|
|
|
=/ peer-core (abed-got:pe her)
|
2023-02-21 14:22:53 +03:00
|
|
|
|^
|
|
|
|
?: ?& ?=([%new *] u.parsed)
|
2023-03-23 14:54:22 +03:00
|
|
|
(lth rift.u.parsed rift.peer-state.peer-core)
|
2023-02-21 14:22:53 +03:00
|
|
|
==
|
|
|
|
:: ignore events from an old rift
|
|
|
|
::
|
2023-02-21 14:32:33 +03:00
|
|
|
%- %^ ev-trace odd.veb her
|
2023-02-21 14:22:53 +03:00
|
|
|
|.("dropping old rift wire: {(spud wire)}")
|
|
|
|
event-core
|
|
|
|
=/ =bone
|
|
|
|
?-(u.parsed [%new *] bone.u.parsed, [%old *] bone.u.parsed)
|
|
|
|
=? peer-core ?=([%old *] u.parsed)
|
2023-02-21 14:32:33 +03:00
|
|
|
%- %^ ev-trace odd.veb her
|
2023-02-21 14:22:53 +03:00
|
|
|
|.("parsing old wire: {(spud wire)}")
|
|
|
|
peer-core
|
2023-04-03 10:18:51 +03:00
|
|
|
:: relay the vane ack to the foreign peer
|
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
=< abet
|
2023-02-22 12:50:20 +03:00
|
|
|
?~(error (send-ack bone) (send-nack bone u.error))
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
|
|
|
:: if processing succeded, send positive ack packet and exit
|
|
|
|
::
|
|
|
|
++ send-ack
|
|
|
|
|= =bone
|
2023-02-22 10:50:55 +03:00
|
|
|
^+ peer-core
|
2023-02-22 12:50:20 +03:00
|
|
|
:: handle cork only deals with bones that are in closing
|
|
|
|
::
|
2023-03-24 14:14:31 +03:00
|
|
|
(handle-cork:abet:(call:(abed:mi:peer-core bone) %done ok=%.y) bone)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: failed; send message nack packet
|
|
|
|
::
|
|
|
|
++ send-nack
|
|
|
|
|= [=bone =^error]
|
2023-02-22 10:50:55 +03:00
|
|
|
^+ peer-core
|
2023-03-24 14:14:31 +03:00
|
|
|
=. peer-core abet:(call:(abed:mi:peer-core bone) %done ok=%.n)
|
2023-03-28 14:40:10 +03:00
|
|
|
=. event-core abet:peer-core :: XX extraneous?
|
2023-02-21 14:22:53 +03:00
|
|
|
:: construct nack-trace message, referencing .failed $message-num
|
|
|
|
::
|
2023-03-23 14:54:22 +03:00
|
|
|
=/ failed=message-num
|
|
|
|
last-acked:(~(got by rcv.peer-state.peer-core) bone)
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ =naxplanation [failed error]
|
|
|
|
=/ =message-blob (jam naxplanation)
|
2023-03-24 14:14:31 +03:00
|
|
|
:: send nack-trace message on associated .nack-bone
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-03-24 14:14:31 +03:00
|
|
|
=/ nack-bone=^bone (mix 0b10 bone)
|
|
|
|
abet:(call:(abed:mu:(abed-got:pe her) nack-bone) %memo message-blob)
|
2023-02-21 14:22:53 +03:00
|
|
|
--
|
|
|
|
:: +on-sift: handle request to filter debug output by ship
|
ames: fix lane discovery during some lane changes
We used to not accept new indirect lanes if we already have a direct
lane. This means that if Bob, with a publicly-accessible lane, changes
lanes (eg by restarting the process and getting a new port or changing
ip addresses), tries to talk to Alice, who is behind a NAT, then Bob
will try directly but fail (because Alice is behind a NAT), so he will
route the message through her galaxy. This is good -- the message gets
to Alice. However, Alice had a direct route to Bob's old lane, so she
will try to ack on that lane, which fails. She will not time out this
lane because she doesn't know that Bob isn't getting the acks (acks
don't have their own acks).
The solution is that if Alice receives an indirect lane for Bob when she
already has a direct lane, she shouldn't ignore it. If the lane is the
same as what she has, she shouldn't change anything (in particular, she
shouldn't mark it as indirect). But if it's a new lane, she should
discard her old direct lane and use the new indirect lane.
2020-07-25 06:41:48 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-sift
|
|
|
|
|= ships=(list ship)
|
|
|
|
^+ event-core
|
|
|
|
=. ships.bug.ames-state (sy ships)
|
2019-08-23 05:51:51 +03:00
|
|
|
event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-snub: handle request to change ship blacklist
|
2020-01-13 00:06:27 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-snub
|
2023-03-17 16:05:38 +03:00
|
|
|
|= [form=?(%allow %deny) ships=(list ship)]
|
2023-02-21 14:22:53 +03:00
|
|
|
^+ event-core
|
2023-03-17 16:05:38 +03:00
|
|
|
=. snub.ames-state [form (sy ships)]
|
2019-08-23 05:51:51 +03:00
|
|
|
event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-spew: handle request to set verbosity toggles on debug output
|
2022-04-14 17:36:01 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-spew
|
|
|
|
|= verbs=(list verb)
|
|
|
|
^+ event-core
|
|
|
|
:: start from all %.n's, then flip requested toggles
|
|
|
|
::
|
|
|
|
=. veb.bug.ames-state
|
|
|
|
%+ roll verbs
|
|
|
|
|= [=verb acc=_veb-all-off]
|
|
|
|
^+ veb.bug.ames-state
|
|
|
|
?- verb
|
|
|
|
%snd acc(snd %.y)
|
|
|
|
%rcv acc(rcv %.y)
|
|
|
|
%odd acc(odd %.y)
|
|
|
|
%msg acc(msg %.y)
|
|
|
|
%ges acc(ges %.y)
|
|
|
|
%for acc(for %.y)
|
|
|
|
%rot acc(rot %.y)
|
|
|
|
%kay acc(kay %.y)
|
2023-02-10 18:19:18 +03:00
|
|
|
==
|
2023-02-21 14:22:53 +03:00
|
|
|
event-core
|
|
|
|
:: +on-prod: re-send a packet per flow to each of .ships
|
2022-12-12 15:45:54 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-prod
|
|
|
|
|= ships=(list ship)
|
|
|
|
^+ event-core
|
|
|
|
=? ships =(~ ships) ~(tap in ~(key by peers.ames-state))
|
|
|
|
|^ ^+ event-core
|
|
|
|
?~ ships event-core
|
|
|
|
$(ships t.ships, event-core (prod-peer i.ships))
|
|
|
|
::
|
|
|
|
++ prod-peer
|
|
|
|
|= her=ship
|
|
|
|
^+ event-core
|
|
|
|
=/ par (get-peer-state her)
|
|
|
|
?~ par event-core
|
2023-03-23 14:54:22 +03:00
|
|
|
=/ peer-core (abed-peer:pe her u.par)
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ bones ~(tap in ~(key by snd.u.par))
|
|
|
|
|- ^+ event-core
|
2023-02-22 10:50:55 +03:00
|
|
|
?~ bones abet:peer-core
|
2023-03-24 14:14:31 +03:00
|
|
|
=. peer-core abet:(call:(abed:mu:peer-core i.bones) %prod ~)
|
2023-02-21 14:22:53 +03:00
|
|
|
$(bones t.bones)
|
|
|
|
--
|
|
|
|
:: +on-cong: adjust congestion control parameters
|
2022-02-28 07:32:12 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-cong
|
|
|
|
|= [msg=@ud mem=@ud]
|
|
|
|
^+ event-core
|
|
|
|
=. cong.ames-state msg^mem
|
2022-07-06 18:00:35 +03:00
|
|
|
event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-stir: recover from timer desync, setting new timers as needed
|
2022-07-06 18:00:35 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: .arg is unused, meant to ease future debug commands
|
2022-07-06 18:00:35 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-stir
|
|
|
|
|= arg=@t
|
|
|
|
^+ event-core
|
|
|
|
=/ want=(set [@da ^duct])
|
|
|
|
%- ~(rep by peers.ames-state)
|
|
|
|
|= [[who=ship s=ship-state] acc=(set [@da ^duct])]
|
|
|
|
?. ?=(%known -.s) acc
|
|
|
|
%- ~(rep by snd.+.s)
|
|
|
|
|= [[b=bone m=message-pump-state] acc=_acc]
|
|
|
|
=* tim next-wake.packet-pump-state.m
|
|
|
|
?~ tim acc
|
|
|
|
%- ~(put in acc)
|
|
|
|
[u.tim `^duct`~[ames+(make-pump-timer-wire who b) /ames]]
|
|
|
|
=. want
|
|
|
|
(~(put in want) (add now ~d1) ~[/ames/recork /ames])
|
|
|
|
::
|
|
|
|
=/ have
|
|
|
|
%- ~(gas in *(set [@da ^duct]))
|
|
|
|
=/ tim
|
|
|
|
;; (list [@da ^duct])
|
|
|
|
=< q.q %- need %- need
|
|
|
|
(rof ~ %bx [[our %$ da+now] /debug/timers])
|
|
|
|
(skim tim |=([@da hen=^duct] ?=([[%ames ?(%pump %recork) *] *] hen)))
|
|
|
|
::
|
|
|
|
:: set timers for flows that should have one set but don't
|
|
|
|
::
|
|
|
|
=. event-core
|
|
|
|
%- ~(rep in (~(dif in want) have))
|
|
|
|
|= [[wen=@da hen=^duct] this=_event-core]
|
|
|
|
?> ?=([^ *] hen)
|
|
|
|
(emit:this ~[/ames] %pass t.i.hen %b %wait wen)
|
|
|
|
::
|
|
|
|
:: cancel timers for flows that have one set but shouldn't
|
|
|
|
::
|
|
|
|
%- ~(rep in (~(dif in have) want))
|
|
|
|
|= [[wen=@da hen=^duct] this=_event-core]
|
|
|
|
?> ?=([^ *] hen)
|
|
|
|
(emit:this t.hen %pass t.i.hen %b %rest wen)
|
|
|
|
:: +on-crud: handle event failure; print to dill
|
2019-06-25 22:55:51 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-crud
|
|
|
|
|= =error
|
|
|
|
^+ event-core
|
|
|
|
(emit duct %pass /crud %d %flog %crud error)
|
|
|
|
:: +on-heed: handle request to track .ship's responsiveness
|
2019-06-25 22:55:51 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-heed
|
|
|
|
|= =ship
|
|
|
|
^+ event-core
|
|
|
|
=/ ship-state (~(get by peers.ames-state) ship)
|
2023-03-23 14:54:22 +03:00
|
|
|
?: ?=([~ %known *] ship-state)
|
|
|
|
abet:on-heed:(abed-peer:pe ship +.u.ship-state)
|
|
|
|
%+ enqueue-alien-todo ship
|
|
|
|
|= todos=alien-agenda
|
|
|
|
todos(heeds (~(put in heeds.todos) duct))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-jilt: handle request to stop tracking .ship's responsiveness
|
2019-06-25 22:55:51 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-jilt
|
|
|
|
|= =ship
|
|
|
|
^+ event-core
|
|
|
|
=/ ship-state (~(get by peers.ames-state) ship)
|
2023-03-23 14:54:22 +03:00
|
|
|
?: ?=([~ %known *] ship-state)
|
|
|
|
abet:on-jilt:(abed-peer:pe ship +.u.ship-state)
|
|
|
|
%+ enqueue-alien-todo ship
|
|
|
|
|= todos=alien-agenda
|
|
|
|
todos(heeds (~(del in heeds.todos) duct))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-hear: handle raw packet receipt
|
|
|
|
::
|
|
|
|
++ on-hear
|
|
|
|
|= [l=lane b=blob d=(unit goof)]
|
2023-03-21 20:01:17 +03:00
|
|
|
^+ event-core
|
|
|
|
=/ =shot (sift-shot b)
|
|
|
|
?: sam.shot (on-hear-packet l shot d)
|
2023-03-24 15:59:29 +03:00
|
|
|
?: req.shot ~|([%fine %request-events-forbidden] !!)
|
2023-03-21 20:01:17 +03:00
|
|
|
?^ d
|
|
|
|
::TODO handle
|
|
|
|
~& [%fine %done-goofed mote.u.d]
|
|
|
|
%- (slog tang.u.d)
|
|
|
|
event-core
|
|
|
|
:: TODO no longer true
|
|
|
|
::NOTE we only send requests to ships we know,
|
|
|
|
:: so we should only get responses from ships we know.
|
|
|
|
:: below we assume sndr.shot is a known peer.
|
2023-03-24 15:59:29 +03:00
|
|
|
fi-abet:(on-hear:fi:(abed-got:pe sndr.shot) l shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-hear-packet: handle mildly processed packet receipt
|
|
|
|
::
|
|
|
|
++ on-hear-packet
|
|
|
|
~/ %on-hear-packet
|
2023-03-21 20:01:17 +03:00
|
|
|
|= [=lane =shot dud=(unit goof)]
|
2023-02-21 14:22:53 +03:00
|
|
|
^+ event-core
|
2023-03-21 20:01:17 +03:00
|
|
|
%- (ev-trace rcv.veb sndr.shot |.("received packet"))
|
2019-06-25 02:52:22 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
?: =(our sndr.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
event-core
|
2023-03-17 16:05:38 +03:00
|
|
|
?: .= =(%deny form.snub.ames-state)
|
2023-03-21 20:01:17 +03:00
|
|
|
(~(has in ships.snub.ames-state) sndr.shot)
|
|
|
|
%- (ev-trace rcv.veb sndr.shot |.("snubbed"))
|
2023-02-21 14:22:53 +03:00
|
|
|
event-core
|
2019-06-25 02:52:22 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
%. +<
|
2019-06-25 02:52:22 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
?. =(our rcvr.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
on-hear-forward
|
2019-11-03 07:07:51 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
?: =(%keys content.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
on-hear-keys
|
2023-03-21 20:01:17 +03:00
|
|
|
?: ?& ?=(%pawn (clan:title sndr.shot))
|
|
|
|
!?=([~ %known *] (~(get by peers.ames-state) sndr.shot))
|
2023-02-21 14:22:53 +03:00
|
|
|
==
|
|
|
|
on-hear-open
|
|
|
|
on-hear-shut
|
|
|
|
:: +on-hear-forward: maybe forward a packet to someone else
|
2019-08-23 05:51:51 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: Note that this performs all forwarding requests without
|
|
|
|
:: filtering. Any protection against DDoS amplification will be
|
|
|
|
:: provided by Vere.
|
2019-08-23 05:51:51 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-hear-forward
|
|
|
|
~/ %on-hear-forward
|
2023-03-21 20:01:17 +03:00
|
|
|
|= [=lane =shot dud=(unit goof)]
|
2023-02-21 14:22:53 +03:00
|
|
|
^+ event-core
|
2023-03-21 20:01:17 +03:00
|
|
|
%- %^ ev-trace for.veb sndr.shot
|
|
|
|
|.("forward: {<sndr.shot>} -> {<rcvr.shot>}")
|
|
|
|
:: set .origin.shot if it doesn't have one, re-encode, and send
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
=? origin.shot
|
|
|
|
&(?=(~ origin.shot) !=(%czar (clan:title sndr.shot)))
|
2023-02-21 14:22:53 +03:00
|
|
|
?: ?=(%& -.lane)
|
|
|
|
~
|
|
|
|
?. (lte (met 3 p.lane) 6)
|
|
|
|
~| ames-lane-size+p.lane !!
|
|
|
|
`p.lane
|
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ =blob (etch-shot shot)
|
|
|
|
(send-blob & rcvr.shot blob)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-hear-keys: handle receipt of attestion request
|
|
|
|
::
|
|
|
|
++ on-hear-keys
|
|
|
|
~/ %on-hear-keys
|
2023-03-21 20:01:17 +03:00
|
|
|
|= [=lane =shot dud=(unit goof)]
|
|
|
|
=+ %^ ev-trace msg.veb sndr.shot
|
2023-02-21 14:22:53 +03:00
|
|
|
|.("requested attestation")
|
|
|
|
?. =(%pawn (clan:title our))
|
|
|
|
event-core
|
2023-03-21 20:01:17 +03:00
|
|
|
(send-blob | sndr.shot (attestation-packet sndr.shot 1))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-hear-open: handle receipt of plaintext comet self-attestation
|
2019-11-22 05:20:39 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-hear-open
|
|
|
|
~/ %on-hear-open
|
2023-03-21 20:01:17 +03:00
|
|
|
|= [=lane =shot dud=(unit goof)]
|
2019-06-25 03:30:43 +03:00
|
|
|
^+ event-core
|
2023-03-21 20:01:17 +03:00
|
|
|
=+ %^ ev-trace msg.veb sndr.shot
|
2023-02-21 14:22:53 +03:00
|
|
|
|.("got attestation")
|
|
|
|
:: assert the comet can't pretend to be a moon or other address
|
2019-11-22 05:20:39 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
?> ?=(%pawn (clan:title sndr.shot))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: if we already know .sndr, ignore duplicate attestation
|
2019-11-22 05:20:39 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ ship-state (~(get by peers.ames-state) sndr.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
?: ?=([~ %known *] ship-state)
|
|
|
|
event-core
|
2019-11-27 01:56:20 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ =open-packet (sift-open-packet shot our life.ames-state)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: add comet as an %alien if we haven't already
|
2019-06-25 03:48:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=? peers.ames-state ?=(~ ship-state)
|
2023-03-21 20:01:17 +03:00
|
|
|
(~(put by peers.ames-state) sndr.shot %alien *alien-agenda)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: upgrade comet to %known via on-publ-full
|
2019-06-25 03:48:05 +03:00
|
|
|
::
|
|
|
|
=. event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ crypto-suite=@ud 1
|
|
|
|
=/ keys
|
|
|
|
(my [sndr-life.open-packet crypto-suite public-key.open-packet]~)
|
|
|
|
=/ =point
|
|
|
|
:* ^= rift 0
|
|
|
|
^= life sndr-life.open-packet
|
|
|
|
^= keys keys
|
2023-03-21 20:01:17 +03:00
|
|
|
^= sponsor `(^sein:title sndr.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
==
|
2023-03-21 20:01:17 +03:00
|
|
|
(on-publ / [%full (my [sndr.shot point]~)])
|
2023-02-21 14:22:53 +03:00
|
|
|
:: manually add the lane to the peer state
|
2022-04-22 13:25:55 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=. peers.ames-state
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ =peer-state (gut-peer-state sndr.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
=. route.peer-state `[direct=%.n lane]
|
2023-03-21 20:01:17 +03:00
|
|
|
(~(put by peers.ames-state) sndr.shot %known peer-state)
|
2019-08-14 03:56:56 +03:00
|
|
|
::
|
2022-01-18 22:34:32 +03:00
|
|
|
event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-hear-shut: handle receipt of encrypted packet
|
2019-06-25 02:52:22 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-hear-shut
|
|
|
|
~/ %on-hear-shut
|
2023-03-21 20:01:17 +03:00
|
|
|
|= [=lane =shot dud=(unit goof)]
|
2023-02-21 14:22:53 +03:00
|
|
|
^+ event-core
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ sndr-state (~(get by peers.ames-state) sndr.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: If we don't know them, ask Jael for their keys. If they're a
|
|
|
|
:: comet, this will also cause us to request a self-attestation
|
|
|
|
:: from the sender. The packet itself is dropped; we can assume it
|
|
|
|
:: will be resent.
|
|
|
|
::
|
|
|
|
?. ?=([~ %known *] sndr-state)
|
2023-03-21 20:01:17 +03:00
|
|
|
(enqueue-alien-todo sndr.shot |=(alien-agenda +<))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: decrypt packet contents using symmetric-key.channel
|
|
|
|
::
|
|
|
|
:: If we know them, we have a $channel with them, which we've
|
|
|
|
:: populated with a .symmetric-key derived from our private key
|
|
|
|
:: and their public key using elliptic curve Diffie-Hellman.
|
|
|
|
::
|
|
|
|
=/ =peer-state +.u.sndr-state
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ =channel [[our sndr.shot] now channel-state -.peer-state]
|
2023-02-21 14:22:53 +03:00
|
|
|
~| %ames-crash-on-packet-from^her.channel
|
|
|
|
=/ =shut-packet
|
2023-03-21 20:01:17 +03:00
|
|
|
(sift-shut-packet shot [symmetric-key her-life our-life]:channel)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: non-galaxy: update route with heard lane or forwarded lane
|
|
|
|
::
|
|
|
|
=? route.peer-state !=(%czar (clan:title her.channel))
|
|
|
|
:: if new packet is direct, use that. otherwise, if the new new
|
|
|
|
:: and old lanes are indirect, use the new one. if the new lane
|
|
|
|
:: is indirect but the old lane is direct, then if the lanes are
|
|
|
|
:: identical, don't mark it indirect; if they're not identical,
|
|
|
|
:: use the new lane and mark it indirect.
|
2019-06-25 03:30:43 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: if you mark lane as indirect because you got an indirect
|
|
|
|
:: packet even though you already had a direct identical lane,
|
|
|
|
:: then delayed forwarded packets will come later and reset to
|
|
|
|
:: indirect, so you're unlikely to get a stable direct route
|
|
|
|
:: (unless the forwarder goes offline for a while).
|
2019-06-25 03:30:43 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: conversely, if you don't accept indirect routes with different
|
|
|
|
:: lanes, then if your lane is stale and they're trying to talk
|
|
|
|
:: to you, your acks will go to the stale lane, and you'll never
|
|
|
|
:: time it out unless you reach out to them. this manifests as
|
|
|
|
:: needing to |hi or dotpost to get a response when the other
|
|
|
|
:: ship has changed lanes.
|
2019-12-05 01:03:13 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
?: ?=(~ origin.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
`[direct=%.y lane]
|
|
|
|
?: ?=([~ %& *] route.peer-state)
|
2023-03-21 20:01:17 +03:00
|
|
|
?: =(lane.u.route.peer-state |+u.origin.shot)
|
2023-02-21 14:22:53 +03:00
|
|
|
route.peer-state
|
2023-03-21 20:01:17 +03:00
|
|
|
`[direct=%.n |+u.origin.shot]
|
|
|
|
`[direct=%.n |+u.origin.shot]
|
2023-02-21 14:22:53 +03:00
|
|
|
:: perform peer-specific handling of packet
|
|
|
|
::
|
2023-03-23 14:54:22 +03:00
|
|
|
=< abet
|
|
|
|
(~(on-hear-shut-packet pe peer-state channel) [lane shut-packet dud])
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-take-boon: receive request to give message to peer
|
2019-06-25 03:48:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-take-boon
|
|
|
|
|= [=wire payload=*]
|
|
|
|
^+ event-core
|
2023-03-21 20:01:17 +03:00
|
|
|
?: ?=([%fine %pine @ *] wire)
|
|
|
|
?~ her=(slaw %p i.t.t.wire)
|
|
|
|
:: XX use ev-trace?
|
|
|
|
=/ =tape "; fine dropping malformed wire {<wire>}"
|
|
|
|
(emit duct %pass /parse-wire %d %flog %text tape)
|
2023-03-24 14:14:31 +03:00
|
|
|
fi-abet:(on-pine-boon:fi:(abed-got:pe u.her) t.t.t.wire payload)
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ parsed=(parse-bone-wire wire)
|
|
|
|
~> %slog.0^leaf/"ames: dropping malformed wire: {(spud wire)}"
|
|
|
|
event-core
|
|
|
|
::
|
|
|
|
?> ?=([@ her=ship *] u.parsed)
|
2023-03-23 14:54:22 +03:00
|
|
|
=* her her.u.parsed
|
|
|
|
=/ peer-core (abed-got:pe her)
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
|
|
|
?: ?& ?=([%new *] u.parsed)
|
2023-03-23 14:54:22 +03:00
|
|
|
(lth rift.u.parsed rift.peer-state.peer-core)
|
2023-02-21 14:22:53 +03:00
|
|
|
==
|
|
|
|
:: ignore events from an old rift
|
2019-08-14 03:56:56 +03:00
|
|
|
::
|
2023-02-21 14:32:33 +03:00
|
|
|
%- %^ ev-trace odd.veb her
|
2023-02-21 14:22:53 +03:00
|
|
|
|.("dropping old rift wire: {(spud wire)}")
|
|
|
|
event-core
|
|
|
|
=/ =bone
|
|
|
|
?-(u.parsed [%new *] bone.u.parsed, [%old *] bone.u.parsed)
|
|
|
|
=? peer-core ?=([%old *] u.parsed)
|
2023-02-21 14:32:33 +03:00
|
|
|
%- %^ ev-trace odd.veb her
|
2023-02-21 14:22:53 +03:00
|
|
|
|.("parsing old wire: {(spud wire)}")
|
|
|
|
peer-core
|
|
|
|
abet:(on-memo:peer-core bone payload %boon)
|
|
|
|
:: +on-plea: handle request to send message
|
2019-06-25 03:48:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-plea
|
|
|
|
|= [=ship =plea]
|
|
|
|
^+ event-core
|
2023-03-23 12:41:56 +03:00
|
|
|
:: since flow kill goes like:
|
|
|
|
:: client vane cork task -> client ames pass cork as plea ->
|
|
|
|
:: -> server ames sinks plea -> server ames +on-plea (we are here);
|
|
|
|
:: if it's %cork plea passed to ames from its sink,
|
|
|
|
:: give %done and process flow closing after +on-take-done call
|
|
|
|
::
|
2023-04-04 09:28:43 +03:00
|
|
|
?: =([%a /close ~] plea) (emit duct %give %done ~)
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-04-04 09:28:43 +03:00
|
|
|
?: =([%a /cone *] plea)
|
|
|
|
:: sent to ourselves from ha-plea, after sinking a remote /pine plea
|
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
=+ ;;(blk=balk payload.plea)
|
2023-04-04 09:28:43 +03:00
|
|
|
?> &(=(our her.blk) =(%c van.blk) ?=(^ spr.blk))
|
|
|
|
=+ nom=(en-roof:balk blk(car %w, cas da/now, spr `path`~[i.spr.blk]))
|
|
|
|
::
|
|
|
|
=. event-core (emit duct %give %done ~)
|
|
|
|
?+ cage=(rof ~ nom) !!
|
|
|
|
[~ ~] (emit duct %give %miss (en-path:balk blk))
|
|
|
|
[~ ~ *] =+(!<(c=cass:clay q.u.u.cage) (emit duct %give %boon ud:c))
|
2023-03-21 20:01:17 +03:00
|
|
|
==
|
2023-04-03 13:48:16 +03:00
|
|
|
:: .plea is from local vane to foreign ship
|
|
|
|
::
|
|
|
|
=/ ship-state (~(get by peers.ames-state) ship)
|
|
|
|
::
|
|
|
|
?. ?=([~ %known *] ship-state)
|
|
|
|
~& %on-plea
|
|
|
|
%+ enqueue-alien-todo ship
|
|
|
|
|= todos=alien-agenda
|
|
|
|
todos(messages [[duct plea] messages.todos])
|
2019-06-25 02:52:22 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ =peer-state +.u.ship-state
|
|
|
|
=/ =channel [[our ship] now channel-state -.peer-state]
|
|
|
|
::
|
2023-03-23 12:41:56 +03:00
|
|
|
=^ =bone ossuary.peer-state (bind-duct ossuary.peer-state duct)
|
|
|
|
%- %^ ev-trace msg.veb ship
|
|
|
|
|. ^- tape
|
|
|
|
=/ sndr [our our-life.channel]
|
|
|
|
=/ rcvr [ship her-life.channel]
|
|
|
|
"plea {<sndr rcvr bone=bone vane.plea path.plea>}"
|
2023-03-23 14:54:22 +03:00
|
|
|
abet:(~(on-memo pe [peer-state channel]) bone plea %plea)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-cork: handle request to kill a flow
|
|
|
|
::
|
|
|
|
++ on-cork
|
|
|
|
|= =ship
|
|
|
|
^+ event-core
|
|
|
|
=/ =plea [%$ /flow [%cork ~]]
|
|
|
|
=/ ship-state (~(get by peers.ames-state) ship)
|
|
|
|
?. ?=([~ %known *] ship-state)
|
|
|
|
%+ enqueue-alien-todo ship
|
|
|
|
|= todos=alien-agenda
|
|
|
|
todos(messages [[duct plea] messages.todos])
|
|
|
|
=/ =peer-state +.u.ship-state
|
|
|
|
=/ =channel [[our ship] now channel-state -.peer-state]
|
|
|
|
::
|
|
|
|
=/ [=bone ossuary=_ossuary.peer-state]
|
|
|
|
?^ cork-bone [u.cork-bone ossuary.peer-state]
|
|
|
|
(bind-duct ossuary.peer-state duct)
|
|
|
|
=. ossuary.peer-state ossuary
|
|
|
|
::
|
|
|
|
?. (~(has by by-bone.ossuary.peer-state) bone)
|
|
|
|
%. event-core
|
2023-02-21 14:32:33 +03:00
|
|
|
%^ ev-trace odd.veb ship
|
2023-02-21 14:22:53 +03:00
|
|
|
|.("trying to cork {<bone=bone>}, not in the ossuary, ignoring")
|
|
|
|
::
|
|
|
|
=. closing.peer-state (~(put in closing.peer-state) bone)
|
2023-02-21 14:32:33 +03:00
|
|
|
%- %^ ev-trace msg.veb ship
|
2023-02-21 14:22:53 +03:00
|
|
|
|. ^- tape
|
|
|
|
=/ sndr [our our-life.channel]
|
|
|
|
=/ rcvr [ship her-life.channel]
|
|
|
|
"cork plea {<sndr rcvr bone=bone vane.plea path.plea>}"
|
2023-03-23 14:54:22 +03:00
|
|
|
abet:(~(on-memo pe [peer-state channel]) bone plea %plea)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-kroc: cork all stale flows from failed subscriptions
|
|
|
|
::
|
|
|
|
++ on-kroc
|
|
|
|
|= dry=?
|
|
|
|
^+ event-core
|
|
|
|
:: no-op
|
|
|
|
::
|
|
|
|
?: & %.(event-core (slog leaf/"ames: %kroc task not ready" ~))
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=; [corks=@ core=_event-core]
|
|
|
|
?. dry core
|
|
|
|
%.(core (slog leaf/"ames: #{<corks>} flows can be corked" ~))
|
|
|
|
::
|
|
|
|
%+ roll ~(tap by peers.ames-state)
|
|
|
|
|= [[=ship =ship-state] corks=@ core=_event-core]
|
|
|
|
?. ?=(%known -.ship-state)
|
|
|
|
corks^core
|
|
|
|
=/ =peer-state:ames ?>(?=(%known -.ship-state) +.ship-state)
|
|
|
|
=/ subs=(jar path [bone sub-nonce=@])
|
|
|
|
%+ roll ~(tap by snd.peer-state)
|
|
|
|
|= $: [=forward=bone message-pump-state:ames]
|
|
|
|
subs=(jar path [bone sub-nonce=@])
|
|
|
|
==
|
|
|
|
?: (~(has in closing.peer-state) forward-bone)
|
|
|
|
%. subs
|
2023-02-21 14:32:33 +03:00
|
|
|
%^ ev-trace &(dry odd.veb) ship
|
2023-02-21 14:22:53 +03:00
|
|
|
|.
|
|
|
|
%+ weld "stale flow bone={<forward-bone>} in closing, "
|
|
|
|
"#{<~(wyt in live:packet-pump-state)>} packets retrying"
|
|
|
|
?~ duct=(~(get by by-bone.ossuary.peer-state) forward-bone)
|
|
|
|
subs
|
|
|
|
?. ?=([* [%gall %use sub=@ @ %out @ @ nonce=@ pub=@ *] *] u.duct)
|
|
|
|
subs
|
|
|
|
=/ =wire i.t.u.duct
|
|
|
|
=/ nonce=(unit @) (rush (snag 7 wire) dem)
|
|
|
|
%- ~(add ja subs)
|
|
|
|
:: 0 for old pre-nonce subscriptions
|
2019-08-14 03:56:56 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:_ [forward-bone ?~(nonce 0 u.nonce)]
|
|
|
|
?~ nonce wire
|
|
|
|
:: don't include the sub-nonce in the key
|
2019-06-25 03:30:43 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
(weld (scag 7 wire) (slag 8 wire))
|
|
|
|
%+ roll ~(tap by subs)
|
|
|
|
|= [[=wire flows=(list [bone sub-nonce=@])] corks=_corks core=_core]
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
%- tail
|
|
|
|
%+ roll (sort flows |=([[@ n=@] [@ m=@]] (lte n m)))
|
|
|
|
|= [[=bone nonce=@] resubs=_(lent flows) corks=_corks core=_core]
|
|
|
|
=/ app=term ?>(?=([%gall %use sub=@ *] wire) i.t.t.wire)
|
|
|
|
=/ =path (slag 7 wire)
|
|
|
|
=/ log=tape "[bone={<bone>} agent={<app>} nonce={<nonce>}] {<path>}"
|
|
|
|
=; corkable=?
|
|
|
|
=? corks corkable +(corks)
|
|
|
|
=? core &(corkable !dry) (%*(on-cork core cork-bone `bone) ship)
|
|
|
|
(dec resubs)^corks^core
|
|
|
|
:: checks if this is a stale re-subscription
|
2019-12-17 09:57:11 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?. =(resubs 1)
|
|
|
|
%. &
|
2023-02-21 14:32:33 +03:00
|
|
|
(ev-trace &(dry odd.veb) ship |.((weld "stale %watch plea " log)))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: the current subscription can be safely corked if there
|
|
|
|
:: is a flow with a naxplanation ack on a backward bone
|
2019-12-17 09:57:11 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=+ backward-bone=(mix 0b10 bone)
|
|
|
|
?. =(2 (mod backward-bone 4))
|
|
|
|
|
|
|
|
|
?~ (~(get by rcv.peer-state) backward-bone)
|
|
|
|
|
|
|
|
|
%. &
|
2023-02-21 14:32:33 +03:00
|
|
|
(ev-trace &(dry odd.veb) ship |.((weld "failed %watch plea " log)))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-take-wake: receive wakeup or error notification from behn
|
|
|
|
::
|
|
|
|
++ on-take-wake
|
|
|
|
|= [=wire error=(unit tang)]
|
2019-06-25 03:30:43 +03:00
|
|
|
^+ event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
?: ?=([%alien @ ~] wire)
|
|
|
|
:: if we haven't received an attestation, ask again
|
2019-12-11 03:20:12 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?^ error
|
|
|
|
%- (slog 'ames: attestation timer failed' u.error)
|
2019-12-11 03:20:12 +03:00
|
|
|
event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ ship=`(unit @p)`(slaw %p i.t.wire)
|
|
|
|
%- (slog leaf+"ames: got timer for strange wire: {<wire>}" ~)
|
|
|
|
event-core
|
|
|
|
=/ ship-state (~(get by peers.ames-state) u.ship)
|
|
|
|
?: ?=([~ %known *] ship-state)
|
|
|
|
event-core
|
|
|
|
(request-attestation u.ship)
|
2019-11-27 01:56:20 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?. ?=([%recork ~] wire)
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ res=(unit ?([%fine her=ship =^wire] [%pump her=ship =bone]))
|
2023-03-28 14:40:10 +03:00
|
|
|
?+ wire ~| %ames-wire-timer^wire !!
|
2023-04-03 13:48:16 +03:00
|
|
|
[%pump ship=@ bone=@ ~] (parse-pump-wire &2.wire &3.wire)
|
2023-03-28 14:40:10 +03:00
|
|
|
[%fine %behn %wake @ *] (parse-fine-wire &4.wire t.t.t.t.wire)
|
2023-03-21 20:01:17 +03:00
|
|
|
==
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ res
|
|
|
|
%- (slog leaf+"ames: got timer for strange wire: {<wire>}" ~)
|
|
|
|
event-core
|
|
|
|
::
|
|
|
|
=/ state=(unit peer-state) (get-peer-state her.u.res)
|
|
|
|
?~ state
|
|
|
|
%. event-core
|
|
|
|
%- slog
|
|
|
|
[leaf+"ames: got timer for strange ship: {<her.u.res>}, ignoring" ~]
|
|
|
|
::
|
2023-03-23 14:54:22 +03:00
|
|
|
=/ peer-core (abed-peer:pe her.u.res u.state)
|
2023-03-21 20:01:17 +03:00
|
|
|
?- -.u.res
|
|
|
|
%pump abet:(on-wake:peer-core bone.u.res error)
|
|
|
|
::
|
|
|
|
%fine
|
2023-03-24 14:14:31 +03:00
|
|
|
fi-abet:ke-abet:ke-take-wake:(ke-abed:ke:fi:peer-core wire.u.res)
|
2023-03-21 20:01:17 +03:00
|
|
|
==
|
2019-11-27 01:56:20 +03:00
|
|
|
::
|
2023-03-28 14:40:10 +03:00
|
|
|
=. event-core (emit duct %pass /recork %b %wait `@da`(add now ~d1))
|
2019-06-25 03:48:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?^ error
|
|
|
|
%- (slog 'ames: recork timer failed' u.error)
|
2019-08-16 12:26:03 +03:00
|
|
|
event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: recork up to one bone per peer
|
|
|
|
::
|
|
|
|
=/ pez ~(tap by peers.ames-state)
|
|
|
|
|- ^+ event-core
|
|
|
|
?~ pez event-core
|
|
|
|
=+ [her sat]=i.pez
|
|
|
|
?. ?=(%known -.sat)
|
|
|
|
$(pez t.pez)
|
2023-03-23 14:54:22 +03:00
|
|
|
$(pez t.pez, event-core abet:recork-one:(abed-peer:pe her +.sat))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-init: first boot; subscribe to our info from jael
|
|
|
|
::
|
|
|
|
++ on-init
|
|
|
|
^+ event-core
|
2019-06-25 03:48:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=~ (emit duct %pass /turf %j %turf ~)
|
|
|
|
(emit duct %pass /private-keys %j %private-keys ~)
|
|
|
|
==
|
|
|
|
:: +on-priv: set our private key to jael's response
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-priv
|
|
|
|
|= [=life vein=(map life private-key)]
|
|
|
|
^+ event-core
|
2019-06-25 03:48:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ =private-key (~(got by vein) life)
|
|
|
|
=. life.ames-state life
|
|
|
|
=. crypto-core.ames-state (nol:nu:crub:crypto private-key)
|
|
|
|
:: recalculate each peer's symmetric key
|
2022-04-22 13:25:55 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ our-private-key sec:ex:crypto-core.ames-state
|
|
|
|
=. peers.ames-state
|
|
|
|
%- ~(run by peers.ames-state)
|
|
|
|
|= =ship-state
|
|
|
|
^+ ship-state
|
|
|
|
::
|
|
|
|
?. ?=(%known -.ship-state)
|
|
|
|
ship-state
|
|
|
|
::
|
|
|
|
=/ =peer-state +.ship-state
|
|
|
|
=. symmetric-key.peer-state
|
|
|
|
(derive-symmetric-key public-key.+.ship-state our-private-key)
|
|
|
|
::
|
|
|
|
[%known peer-state]
|
2022-04-22 13:25:55 +03:00
|
|
|
::
|
|
|
|
event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-publ: update pki data for peer or self
|
2019-06-25 03:48:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-publ
|
|
|
|
|= [=wire =public-keys-result]
|
|
|
|
^+ event-core
|
2022-09-18 18:13:30 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
|^ ^+ event-core
|
|
|
|
::
|
|
|
|
?- public-keys-result
|
|
|
|
[%diff @ %rift *]
|
|
|
|
(on-publ-rift [who to.diff]:public-keys-result)
|
|
|
|
::
|
|
|
|
[%diff @ %keys *]
|
|
|
|
(on-publ-rekey [who to.diff]:public-keys-result)
|
|
|
|
::
|
|
|
|
[%diff @ %spon *]
|
|
|
|
(on-publ-sponsor [who to.diff]:public-keys-result)
|
|
|
|
::
|
|
|
|
[%full *]
|
|
|
|
(on-publ-full points.public-keys-result)
|
|
|
|
::
|
|
|
|
[%breach *]
|
|
|
|
(on-publ-breach who.public-keys-result)
|
2022-06-16 00:17:21 +03:00
|
|
|
==
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-publ-breach: handle continuity breach of .ship; wipe its state
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: Abandon all pretense of continuity and delete all messaging state
|
|
|
|
:: associated with .ship, including sent and unsent messages.
|
|
|
|
:: Also cancel all timers related to .ship.
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-publ-breach
|
|
|
|
|= =ship
|
|
|
|
^+ event-core
|
|
|
|
::
|
|
|
|
=/ ship-state (~(get by peers.ames-state) ship)
|
|
|
|
:: we shouldn't be hearing about ships we don't care about
|
|
|
|
::
|
|
|
|
?~ ship-state
|
|
|
|
~> %slog.0^leaf/"ames: breach unknown {<our ship>}"
|
|
|
|
event-core
|
|
|
|
:: if an alien breached, this doesn't affect us
|
|
|
|
::
|
|
|
|
?: ?=([~ %alien *] ship-state)
|
|
|
|
~> %slog.0^leaf/"ames: breach alien {<our ship>}"
|
|
|
|
event-core
|
|
|
|
~> %slog.0^leaf/"ames: breach peer {<our ship>}"
|
|
|
|
:: a peer breached; drop messaging state
|
|
|
|
::
|
|
|
|
=/ =peer-state +.u.ship-state
|
|
|
|
=/ old-qos=qos qos.peer-state
|
|
|
|
:: cancel all timers related to .ship
|
|
|
|
::
|
|
|
|
=. event-core
|
|
|
|
%+ roll ~(tap by snd.peer-state)
|
|
|
|
|= [[=snd=bone =message-pump-state] core=_event-core]
|
|
|
|
^+ core
|
|
|
|
::
|
|
|
|
?~ next-wake=next-wake.packet-pump-state.message-pump-state
|
|
|
|
core
|
|
|
|
:: note: copies +on-pump-rest:message-pump
|
|
|
|
::
|
|
|
|
=/ wire (make-pump-timer-wire ship snd-bone)
|
|
|
|
=/ duct ~[/ames]
|
|
|
|
(emit:core duct %pass wire %b %rest u.next-wake)
|
|
|
|
:: reset all peer state other than pki data
|
|
|
|
::
|
|
|
|
=. +.peer-state +:*^peer-state
|
|
|
|
:: print change to quality of service, if any
|
|
|
|
::
|
|
|
|
=/ text=(unit tape)
|
|
|
|
%^ qos-update-text ship old-qos
|
|
|
|
[qos.peer-state kay.veb ships.bug.ames-state]
|
|
|
|
::
|
|
|
|
=? event-core ?=(^ text)
|
|
|
|
(emit duct %pass /qos %d %flog %text u.text)
|
|
|
|
:: reinitialize galaxy route if applicable
|
|
|
|
::
|
|
|
|
=? route.peer-state =(%czar (clan:title ship))
|
|
|
|
`[direct=%.y lane=[%& ship]]
|
|
|
|
::
|
|
|
|
=. peers.ames-state
|
|
|
|
(~(put by peers.ames-state) ship [%known peer-state])
|
|
|
|
::
|
|
|
|
event-core
|
|
|
|
:: +on-publ-rekey: handle new key for peer
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: TODO: assert .crypto-suite compatibility
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-publ-rekey
|
|
|
|
|= $: =ship
|
|
|
|
=life
|
|
|
|
crypto-suite=@ud
|
|
|
|
=public-key
|
|
|
|
==
|
|
|
|
^+ event-core
|
|
|
|
::
|
|
|
|
=/ ship-state (~(get by peers.ames-state) ship)
|
|
|
|
?. ?=([~ %known *] ship-state)
|
|
|
|
=| =point
|
|
|
|
=. life.point life
|
|
|
|
=. keys.point (my [life crypto-suite public-key]~)
|
|
|
|
=. sponsor.point `(^^sein:title rof our now ship)
|
|
|
|
::
|
|
|
|
(on-publ-full (my [ship point]~))
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ =peer-state +.u.ship-state
|
|
|
|
=/ =private-key sec:ex:crypto-core.ames-state
|
2023-02-21 14:22:53 +03:00
|
|
|
=. symmetric-key.peer-state
|
|
|
|
(derive-symmetric-key public-key private-key)
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=. life.peer-state life
|
|
|
|
=. public-key.peer-state public-key
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=. peers.ames-state
|
|
|
|
(~(put by peers.ames-state) ship %known peer-state)
|
2023-02-21 14:22:53 +03:00
|
|
|
event-core
|
|
|
|
:: +on-publ-sponsor: handle new or lost sponsor for peer
|
2019-12-17 09:57:11 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: TODO: really handle sponsor loss
|
2019-12-17 09:57:11 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-publ-sponsor
|
|
|
|
|= [=ship sponsor=(unit ship)]
|
|
|
|
^+ event-core
|
|
|
|
::
|
|
|
|
?~ sponsor
|
|
|
|
%- (slog leaf+"ames: {(scow %p ship)} lost sponsor, ignoring" ~)
|
|
|
|
event-core
|
|
|
|
::
|
|
|
|
=/ state=(unit peer-state) (get-peer-state ship)
|
|
|
|
?~ state
|
|
|
|
%- (slog leaf+"ames: missing peer-state, ignoring" ~)
|
|
|
|
event-core
|
|
|
|
=. sponsor.u.state u.sponsor
|
|
|
|
=. peers.ames-state (~(put by peers.ames-state) ship %known u.state)
|
|
|
|
event-core
|
|
|
|
:: +on-publ-full: handle new pki data for peer(s)
|
|
|
|
::
|
|
|
|
++ on-publ-full
|
|
|
|
|= points=(map ship point)
|
|
|
|
^+ event-core
|
|
|
|
::
|
|
|
|
=> .(points ~(tap by points))
|
|
|
|
|^ ^+ event-core
|
|
|
|
?~ points event-core
|
|
|
|
::
|
|
|
|
=+ ^- [=ship =point] i.points
|
|
|
|
::
|
|
|
|
?. (~(has by keys.point) life.point)
|
|
|
|
$(points t.points)
|
|
|
|
::
|
|
|
|
=/ old-ship-state (~(get by peers.ames-state) ship)
|
|
|
|
::
|
|
|
|
=. event-core (insert-peer-state ship point)
|
|
|
|
::
|
|
|
|
=? event-core ?=([~ %alien *] old-ship-state)
|
|
|
|
(meet-alien ship point +.u.old-ship-state)
|
|
|
|
::
|
|
|
|
$(points t.points)
|
|
|
|
::
|
|
|
|
++ meet-alien
|
|
|
|
|= [=ship =point todos=alien-agenda]
|
2023-03-21 20:01:17 +03:00
|
|
|
|^ ^+ event-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: if we're a comet, send self-attestation packet first
|
|
|
|
::
|
|
|
|
=? event-core =(%pawn (clan:title our))
|
|
|
|
(send-blob | ship (attestation-packet ship life.point))
|
|
|
|
:: save current duct
|
|
|
|
::
|
|
|
|
=/ original-duct duct
|
|
|
|
:: apply heeds
|
|
|
|
::
|
|
|
|
=. event-core
|
|
|
|
%+ roll ~(tap in heeds.todos)
|
|
|
|
|= [=^duct core=_event-core]
|
|
|
|
(on-heed:core(duct duct) ship)
|
|
|
|
:: apply outgoing messages, reversing for FIFO order
|
|
|
|
::
|
|
|
|
=. event-core
|
|
|
|
%+ reel messages.todos
|
|
|
|
|= [[=^duct =plea] core=_event-core]
|
|
|
|
?: ?=(%$ -.plea)
|
|
|
|
(on-cork:core(duct duct) ship)
|
|
|
|
(on-plea:core(duct duct) ship plea)
|
|
|
|
:: apply outgoing packet blobs
|
|
|
|
::
|
|
|
|
=. event-core
|
|
|
|
%+ roll ~(tap in packets.todos)
|
|
|
|
|= [=blob core=_event-core]
|
|
|
|
(send-blob:core | ship blob)
|
2023-03-21 20:01:17 +03:00
|
|
|
:: apply remote scry requests
|
|
|
|
::
|
|
|
|
=. event-core (meet-alien-fine keens.todos %keen)
|
|
|
|
=. event-core (meet-alien-fine pines.todos %pine)
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
|
|
|
event-core(duct original-duct)
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
|
|
|
++ meet-alien-fine
|
|
|
|
|= [peens=(jug path ^duct) key=?(%keen %pine)]
|
|
|
|
^+ event-core
|
2023-03-23 14:54:22 +03:00
|
|
|
=+ fine=fi:(abed:pe ship)
|
|
|
|
=< fi-abet ^+ fine
|
2023-03-21 20:01:17 +03:00
|
|
|
%- ~(rep by peens)
|
|
|
|
|= [[=path ducts=(set ^duct)] cor=_fine]
|
|
|
|
%- ~(rep in ducts)
|
|
|
|
|= [=^duct c=_cor]
|
|
|
|
%.([path duct] ?-(key %pine on-pine:c, %keen on-keen:c))
|
|
|
|
--
|
2023-02-21 14:22:53 +03:00
|
|
|
--
|
|
|
|
:: on-publ-rift: XX
|
|
|
|
::
|
|
|
|
++ on-publ-rift
|
|
|
|
|= [=ship =rift]
|
|
|
|
^+ event-core
|
|
|
|
?~ ship-state=(~(get by peers.ames-state) ship)
|
|
|
|
:: print error here? %rift was probably called before %keys
|
|
|
|
::
|
|
|
|
~> %slog.1^leaf/"ames: missing peer-state on-publ-rift"
|
|
|
|
event-core
|
|
|
|
?: ?=([%alien *] u.ship-state)
|
|
|
|
:: ignore aliens
|
|
|
|
::
|
|
|
|
event-core
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ =peer-state +.u.ship-state
|
|
|
|
=. rift.peer-state rift
|
|
|
|
=. peers.ames-state
|
|
|
|
(~(put by peers.ames-state) ship %known peer-state)
|
2023-02-21 14:22:53 +03:00
|
|
|
event-core
|
2019-12-17 09:57:11 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ insert-peer-state
|
|
|
|
|= [=ship =point]
|
|
|
|
^+ event-core
|
2019-12-11 03:20:12 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ =peer-state (gut-peer-state ship)
|
|
|
|
=/ =public-key pass:(~(got by keys.point) life.point)
|
|
|
|
=/ =private-key sec:ex:crypto-core.ames-state
|
|
|
|
=/ =symmetric-key (derive-symmetric-key public-key private-key)
|
|
|
|
::
|
|
|
|
=. qos.peer-state [%unborn now]
|
|
|
|
=. life.peer-state life.point
|
|
|
|
=. rift.peer-state rift.point
|
|
|
|
=. public-key.peer-state public-key
|
|
|
|
=. symmetric-key.peer-state symmetric-key
|
|
|
|
=. sponsor.peer-state
|
|
|
|
?^ sponsor.point
|
|
|
|
u.sponsor.point
|
|
|
|
(^^sein:title rof our now ship)
|
|
|
|
:: automatically set galaxy route, since unix handles lookup
|
|
|
|
::
|
|
|
|
=? route.peer-state ?=(%czar (clan:title ship))
|
|
|
|
`[direct=%.y lane=[%& ship]]
|
|
|
|
::
|
|
|
|
=. peers.ames-state
|
|
|
|
(~(put by peers.ames-state) ship %known peer-state)
|
|
|
|
::
|
|
|
|
event-core
|
2022-06-16 00:17:21 +03:00
|
|
|
--
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-take-turf: relay %turf move from jael to unix
|
2019-06-05 07:36:10 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-take-turf
|
|
|
|
|= turfs=(list turf)
|
|
|
|
^+ event-core
|
2022-06-01 22:47:15 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
(emit unix-duct.ames-state %give %turf turfs)
|
|
|
|
:: +on-born: handle unix process restart
|
2019-08-06 02:05:40 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-born
|
|
|
|
^+ event-core
|
2019-11-28 07:06:39 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=. unix-duct.ames-state duct
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ turfs
|
|
|
|
;; (list turf)
|
|
|
|
=< q.q %- need %- need
|
|
|
|
(rof ~ %j `beam`[[our %turf %da now] /])
|
2019-08-16 12:26:03 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
(emit unix-duct.ames-state %give %turf turfs)
|
|
|
|
:: +on-vega: handle kernel reload
|
2019-08-08 07:57:04 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-vega event-core
|
|
|
|
:: +on-trim: handle request to free memory
|
2019-08-08 07:57:04 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: %ruin comets not seen for six months
|
2019-11-04 04:35:45 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ on-trim ::TODO trim fine parts on high prio
|
2023-02-21 14:22:53 +03:00
|
|
|
^+ event-core
|
|
|
|
=; rui=(set @p)
|
|
|
|
(emit duct %pass /ruin %j %ruin rui)
|
|
|
|
=- (silt (turn - head))
|
|
|
|
%+ skim
|
|
|
|
~(tap by peers.ames-state)
|
|
|
|
|= [=ship s=ship-state]
|
|
|
|
?. &(?=(%known -.s) =(%pawn (clan:title ship))) %.n
|
|
|
|
?& (gth (sub now ~d180) last-contact.qos.s)
|
|
|
|
::
|
|
|
|
%- ~(any by snd.s)
|
|
|
|
|= m=message-pump-state
|
|
|
|
!=(~ unsent-fragments.m)
|
|
|
|
==
|
2019-11-04 04:35:45 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
+| %fine-entry-points
|
|
|
|
::
|
|
|
|
++ on-pine
|
|
|
|
|= [=ship =path]
|
|
|
|
^+ event-core
|
2023-04-04 09:28:43 +03:00
|
|
|
?< =(our ship)
|
|
|
|
?^ ship-state=(~(get by peers.ames-state) ship)
|
2023-03-21 20:01:17 +03:00
|
|
|
?> ?=([%known *] u.ship-state)
|
2023-03-23 14:54:22 +03:00
|
|
|
fi-abet:(on-pine:fi:(abed-peer:pe ship +.u.ship-state) path duct)
|
2023-04-04 09:28:43 +03:00
|
|
|
%+ enqueue-alien-todo ship
|
|
|
|
|= todos=alien-agenda
|
|
|
|
todos(pines (~(put ju pines.todos) path duct))
|
2019-08-23 05:51:51 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ on-keen
|
|
|
|
|= [=ship =path]
|
|
|
|
^+ event-core
|
|
|
|
=+ ~:(spit path) :: assert length
|
2023-03-28 14:40:10 +03:00
|
|
|
?^ ship-state=(~(get by peers.ames-state) ship)
|
|
|
|
?> ?=([%known *] u.ship-state)
|
|
|
|
fi-abet:(on-keen:fi:(abed-peer:pe ship +.u.ship-state) path duct)
|
|
|
|
%+ enqueue-alien-todo ship
|
|
|
|
|= todos=alien-agenda
|
|
|
|
todos(keens (~(put ju keens.todos) path duct))
|
2019-11-22 05:20:39 +03:00
|
|
|
::
|
2023-04-01 10:20:49 +03:00
|
|
|
++ on-cancel-scry
|
|
|
|
|= [all=? =ship =path]
|
2023-03-21 20:01:17 +03:00
|
|
|
^+ event-core
|
|
|
|
?~ ship-state=(~(get by peers.ames-state) ship)
|
2023-04-03 10:18:51 +03:00
|
|
|
~|(%cancel-scry-missing-peer^ship^path !!)
|
2023-03-21 20:01:17 +03:00
|
|
|
?> ?=([%known *] u.ship-state)
|
2023-04-03 10:18:51 +03:00
|
|
|
=+ peer=(abed:pe ship)
|
|
|
|
?. (~(has by order.scry.peer-state.peer) path)
|
|
|
|
:: XX only log if odd.veb?
|
|
|
|
::
|
|
|
|
%- (slog leaf+"ames: missing scry {<path>} for {<ship>}" ~)
|
|
|
|
event-core
|
|
|
|
fi-abet:ke-abet:(ke-unsub:(ke-abed:ke:fi:peer path) duct all)
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-02-21 14:56:50 +03:00
|
|
|
+| %implementation
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +enqueue-alien-todo: helper to enqueue a pending request
|
2019-11-22 16:43:08 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: Also requests key and life from Jael on first request.
|
|
|
|
:: If talking to a comet, requests attestation packet.
|
2019-11-22 16:43:08 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ enqueue-alien-todo
|
|
|
|
|= [=ship mutate=$-(alien-agenda alien-agenda)]
|
|
|
|
^+ event-core
|
2019-11-28 02:58:38 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ ship-state (~(get by peers.ames-state) ship)
|
|
|
|
:: create a default $alien-agenda on first contact
|
2019-11-28 02:58:38 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=+ ^- [already-pending=? todos=alien-agenda]
|
|
|
|
?~ ship-state
|
|
|
|
[%.n *alien-agenda]
|
|
|
|
[%.y ?>(?=(%alien -.u.ship-state) +.u.ship-state)]
|
|
|
|
:: mutate .todos and apply to permanent state
|
2019-11-22 03:52:57 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=. todos (mutate todos)
|
|
|
|
=. peers.ames-state (~(put by peers.ames-state) ship %alien todos)
|
|
|
|
?: already-pending
|
|
|
|
event-core
|
2020-05-28 03:38:18 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?: =(%pawn (clan:title ship))
|
|
|
|
(request-attestation ship)
|
|
|
|
:: NB: we specifically look for this wire in +public-keys-give in
|
|
|
|
:: Jael. if you change it here, you must change it there.
|
2019-11-22 05:13:09 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
(emit duct %pass /public-keys %j %public-keys [n=ship ~ ~])
|
|
|
|
:: +request-attestation: helper to request attestation from comet
|
2019-08-08 07:57:04 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: Also sets a timer to resend the request every 30s.
|
2019-06-25 00:09:42 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ request-attestation
|
|
|
|
|= =ship
|
|
|
|
^+ event-core
|
2023-02-21 14:32:33 +03:00
|
|
|
=+ (ev-trace msg.veb ship |.("requesting attestion"))
|
2023-02-21 14:22:53 +03:00
|
|
|
=. event-core (send-blob | ship (sendkeys-packet ship))
|
|
|
|
=/ =wire /alien/(scot %p ship)
|
|
|
|
(emit duct %pass wire %b %wait (add now ~s30))
|
|
|
|
:: +send-blob: fire packet at .ship and maybe sponsors
|
2019-07-30 04:03:40 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: Send to .ship and sponsors until we find a direct lane,
|
|
|
|
:: skipping .our in the sponsorship chain.
|
2019-07-30 04:03:40 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: If we have no PKI data for a recipient, enqueue the packet and
|
|
|
|
:: request the information from Jael if we haven't already.
|
2019-06-25 00:09:42 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ send-blob
|
|
|
|
~/ %send-blob
|
|
|
|
|= [for=? =ship =blob]
|
|
|
|
::
|
|
|
|
=/ final-ship ship
|
2023-02-21 14:32:33 +03:00
|
|
|
%- (ev-trace rot.veb final-ship |.("send-blob: to {<ship>}"))
|
2023-02-21 14:22:53 +03:00
|
|
|
|-
|
|
|
|
|^ ^+ event-core
|
|
|
|
::
|
|
|
|
=/ ship-state (~(get by peers.ames-state) ship)
|
|
|
|
::
|
|
|
|
?. ?=([~ %known *] ship-state)
|
|
|
|
?: ?=(%pawn (clan:title ship))
|
|
|
|
(try-next-sponsor (^sein:title ship))
|
|
|
|
%+ enqueue-alien-todo ship
|
|
|
|
|= todos=alien-agenda
|
|
|
|
todos(packets (~(put in packets.todos) blob))
|
|
|
|
::
|
|
|
|
=/ =peer-state +.u.ship-state
|
|
|
|
::
|
|
|
|
:: XX routing hack to mimic old ames.
|
|
|
|
::
|
|
|
|
:: Before removing this, consider: moons when their planet is
|
|
|
|
:: behind a NAT; a planet receiving initial acknowledgment
|
|
|
|
:: from a star; a planet talking to another planet under
|
|
|
|
:: another galaxy.
|
|
|
|
::
|
|
|
|
?: ?| =(our ship)
|
|
|
|
?& !=(final-ship ship)
|
|
|
|
!=(%czar (clan:title ship))
|
|
|
|
==
|
|
|
|
==
|
|
|
|
(try-next-sponsor sponsor.peer-state)
|
|
|
|
::
|
|
|
|
?: =(our ship)
|
|
|
|
:: if forwarding, don't send to sponsor to avoid loops
|
|
|
|
::
|
|
|
|
?: for
|
|
|
|
event-core
|
|
|
|
(try-next-sponsor sponsor.peer-state)
|
|
|
|
:: if forwarding, route must not be stale
|
|
|
|
::
|
|
|
|
?: &(for (lth last-contact.qos.peer-state (sub now ~h1)))
|
|
|
|
(try-next-sponsor sponsor.peer-state)
|
|
|
|
::
|
|
|
|
?~ route=route.peer-state
|
2023-02-21 14:32:33 +03:00
|
|
|
%- (ev-trace rot.veb final-ship |.("no route to: {<ship>}"))
|
2023-02-21 14:22:53 +03:00
|
|
|
(try-next-sponsor sponsor.peer-state)
|
|
|
|
::
|
2023-02-21 14:32:33 +03:00
|
|
|
%- (ev-trace rot.veb final-ship |.("trying route: {<ship>}"))
|
2023-02-21 14:22:53 +03:00
|
|
|
=. event-core
|
|
|
|
(emit unix-duct.ames-state %give %send lane.u.route blob)
|
|
|
|
::
|
|
|
|
?: direct.u.route
|
|
|
|
event-core
|
|
|
|
(try-next-sponsor sponsor.peer-state)
|
2022-07-08 08:29:04 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ try-next-sponsor
|
|
|
|
|= sponsor=^ship
|
|
|
|
^+ event-core
|
|
|
|
::
|
|
|
|
?: =(ship sponsor)
|
|
|
|
event-core
|
|
|
|
^$(ship sponsor)
|
|
|
|
--
|
|
|
|
:: +attestation-packet: generate signed self-attestation for .her
|
2019-12-21 09:56:51 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: Sent by a comet on first contact with a peer. Not acked.
|
2019-07-28 10:50:32 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ attestation-packet
|
|
|
|
|= [her=ship =her=life]
|
|
|
|
^- blob
|
2023-03-21 20:01:17 +03:00
|
|
|
%- etch-shot
|
|
|
|
%- etch-open-packet
|
2023-02-21 14:22:53 +03:00
|
|
|
:_ crypto-core.ames-state
|
|
|
|
:* ^= public-key pub:ex:crypto-core.ames-state
|
|
|
|
^= sndr our
|
|
|
|
^= sndr-life life.ames-state
|
|
|
|
^= rcvr her
|
|
|
|
^= rcvr-life her-life
|
2020-12-01 17:51:14 +03:00
|
|
|
==
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +sendkeys-packet: generate a request for a self-attestation.
|
2022-08-05 01:35:34 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: Sent by non-comets to comets. Not acked.
|
2019-06-09 09:26:01 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ sendkeys-packet
|
|
|
|
|= her=ship
|
|
|
|
^- blob
|
|
|
|
?> ?=(%pawn (clan:title her))
|
2023-03-21 20:01:17 +03:00
|
|
|
%- etch-shot
|
2023-02-21 14:22:53 +03:00
|
|
|
(encode-keys-packet our her life.ames-state)
|
2019-06-05 07:36:10 +03:00
|
|
|
::
|
2023-02-21 14:56:50 +03:00
|
|
|
+| %internals
|
2023-02-21 14:46:20 +03:00
|
|
|
:: +pe: create nested |peer-core for per-peer processing
|
2019-06-05 07:36:10 +03:00
|
|
|
::
|
2023-02-21 14:46:20 +03:00
|
|
|
++ pe
|
2023-03-23 14:54:22 +03:00
|
|
|
|_ [=peer-state =channel]
|
|
|
|
+* veb veb.bug.channel
|
|
|
|
her her.channel
|
|
|
|
scry scry.peer-state
|
2019-06-19 03:52:10 +03:00
|
|
|
::
|
2023-02-21 15:38:03 +03:00
|
|
|
+| %helpers
|
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ peer-core .
|
2023-03-23 14:54:22 +03:00
|
|
|
++ pe-emit |=(move peer-core(event-core (emit +<)))
|
|
|
|
++ abed |=(=ship (abed-peer ship (gut-peer-state ship)))
|
|
|
|
++ abed-got |=(=ship (abed-peer ship (got-peer-state ship)))
|
|
|
|
++ abed-peer
|
|
|
|
|= [=ship peer=^peer-state]
|
|
|
|
%_ peer-core
|
|
|
|
peer-state peer
|
|
|
|
channel [[our ship] now channel-state -.peer]
|
|
|
|
==
|
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ abet
|
|
|
|
^+ event-core
|
|
|
|
=. peers.ames-state
|
2023-02-22 12:50:20 +03:00
|
|
|
(~(put by peers.ames-state) her %known peer-state)
|
2023-02-21 14:22:53 +03:00
|
|
|
event-core
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
2023-02-21 14:46:20 +03:00
|
|
|
++ pe-trace
|
2023-02-21 14:22:53 +03:00
|
|
|
|= [verb=? print=(trap tape)]
|
|
|
|
^+ same
|
2023-02-22 12:50:20 +03:00
|
|
|
(ev-trace verb her print)
|
2023-02-21 15:38:03 +03:00
|
|
|
::
|
|
|
|
:: +got-duct: look up $duct by .bone, asserting already bound
|
2019-06-19 03:38:25 +03:00
|
|
|
::
|
2023-02-21 15:38:03 +03:00
|
|
|
++ got-duct
|
|
|
|
|= =bone
|
|
|
|
^- ^duct
|
2023-02-22 12:50:20 +03:00
|
|
|
~| %dangling-bone^her^bone
|
2023-02-21 15:38:03 +03:00
|
|
|
(~(got by by-bone.ossuary.peer-state) bone)
|
|
|
|
::
|
|
|
|
+| %tasks
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
++ on-heed
|
|
|
|
peer-core(heeds.peer-state (~(put in heeds.peer-state) duct))
|
|
|
|
::
|
|
|
|
++ on-jilt
|
|
|
|
peer-core(heeds.peer-state (~(del in heeds.peer-state) duct))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +update-qos: update and maybe print connection status
|
2019-06-19 03:38:25 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ update-qos
|
|
|
|
|= =new=qos
|
|
|
|
^+ peer-core
|
2019-06-19 03:52:10 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=^ old-qos qos.peer-state [qos.peer-state new-qos]
|
|
|
|
:: if no update worth reporting, we're done
|
2019-06-19 03:52:10 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ text
|
2023-02-22 12:50:20 +03:00
|
|
|
(qos-update-text her old-qos [new-qos kay.veb ships.bug.ames-state])
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ text
|
|
|
|
peer-core
|
|
|
|
:: print message
|
2022-05-14 11:52:45 +03:00
|
|
|
::
|
2023-02-21 14:46:20 +03:00
|
|
|
=. peer-core (pe-emit duct %pass /qos %d %flog %text u.text)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: if peer has stopped responding, check if %boon's are backing up
|
2022-07-08 08:29:04 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?. ?=(?(%dead %unborn) -.qos.peer-state)
|
|
|
|
peer-core
|
|
|
|
check-clog
|
|
|
|
:: +on-hear-shut-packet: handle receipt of ack or message fragment
|
2019-06-05 07:36:10 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-hear-shut-packet
|
|
|
|
|= [=lane =shut-packet dud=(unit goof)]
|
|
|
|
^+ peer-core
|
|
|
|
:: update and print connection status
|
|
|
|
::
|
|
|
|
=. peer-core (update-qos %live last-contact=now)
|
|
|
|
::
|
|
|
|
=/ =bone bone.shut-packet
|
|
|
|
::
|
|
|
|
?: ?=(%& -.meat.shut-packet)
|
|
|
|
=+ ?. &(?=(^ dud) msg.veb) ~
|
|
|
|
%. ~
|
|
|
|
%- slog
|
|
|
|
:_ tang.u.dud
|
2023-02-22 12:50:20 +03:00
|
|
|
leaf+"ames: {<her>} fragment crashed {<mote.u.dud>}"
|
2023-03-24 14:14:31 +03:00
|
|
|
abet:(call:(abed:mi bone) %hear lane shut-packet ?=(~ dud))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: benign ack on corked bone
|
|
|
|
::
|
|
|
|
?: (~(has in corked.peer-state) bone)
|
|
|
|
peer-core
|
|
|
|
:: Just try again on error, printing trace
|
|
|
|
::
|
|
|
|
:: Note this implies that vanes should never crash on %done,
|
|
|
|
:: since we have no way to continue using the flow if they do.
|
|
|
|
::
|
|
|
|
=+ ?~ dud ~
|
|
|
|
%. ~
|
2023-02-22 12:50:20 +03:00
|
|
|
%+ slog leaf+"ames: {<her>} ack crashed {<mote.u.dud>}"
|
2023-02-21 14:22:53 +03:00
|
|
|
?. msg.veb ~
|
|
|
|
:- >[bone=bone message-num=message-num meat=meat]:shut-packet<
|
|
|
|
tang.u.dud
|
2023-03-24 14:14:31 +03:00
|
|
|
abet:(call:(abed:mu bone) %hear [message-num +.meat]:shut-packet)
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-memo: handle request to send message
|
2019-06-20 11:13:54 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-memo
|
|
|
|
|= [=bone payload=* valence=?(%plea %boon)]
|
|
|
|
^+ peer-core
|
|
|
|
?: ?& (~(has in closing.peer-state) bone)
|
|
|
|
!=(payload [%$ /flow %cork ~])
|
|
|
|
==
|
|
|
|
~> %slog.0^leaf/"ames: ignoring message on closing bone {<bone>}"
|
|
|
|
peer-core
|
|
|
|
?: (~(has in corked.peer-state) bone)
|
|
|
|
~> %slog.0^leaf/"ames: ignoring message on corked bone {<bone>}"
|
|
|
|
peer-core
|
|
|
|
::
|
|
|
|
=/ =message-blob (dedup-message (jim payload))
|
2023-03-24 14:14:31 +03:00
|
|
|
=. peer-core abet:(call:(abed:mu bone) %memo message-blob)
|
2019-06-25 01:18:18 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?: ?& =(%boon valence)
|
|
|
|
(gte now (add ~s30 last-contact.qos.peer-state))
|
|
|
|
==
|
|
|
|
check-clog
|
2019-12-18 06:20:32 +03:00
|
|
|
peer-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +on-wake: handle timer expiration
|
2022-07-08 08:29:04 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ on-wake
|
|
|
|
|= [=bone error=(unit tang)]
|
|
|
|
^+ peer-core
|
|
|
|
:: if we previously errored out, print and reset timer for later
|
|
|
|
::
|
|
|
|
:: This really shouldn't happen, but if it does, make sure we
|
|
|
|
:: don't brick either this messaging flow or Behn.
|
|
|
|
::
|
|
|
|
?^ error
|
|
|
|
=. peer-core
|
2023-02-21 14:46:20 +03:00
|
|
|
(pe-emit duct %pass /wake-fail %d %flog %crud %ames-wake u.error)
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
|
|
|
?~ message-pump-state=(~(get by snd.peer-state) bone)
|
|
|
|
peer-core
|
2023-02-22 12:50:20 +03:00
|
|
|
=* packet-state packet-pump-state.u.message-pump-state
|
|
|
|
?~ next-wake.packet-state peer-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: If we crashed because we woke up too early, assume another
|
|
|
|
:: timer is already set.
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
?: (lth now.channel u.next-wake.packet-state)
|
2023-02-21 14:22:53 +03:00
|
|
|
peer-core
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ =wire (make-pump-timer-wire her bone)
|
2023-02-21 14:46:20 +03:00
|
|
|
(pe-emit duct %pass wire %b %wait (add now.channel ~s30))
|
2023-02-21 14:22:53 +03:00
|
|
|
:: update and print connection state
|
|
|
|
::
|
|
|
|
=. peer-core %- update-qos
|
|
|
|
=/ expiry=@da (add ~s30 last-contact.qos.peer-state)
|
|
|
|
=? -.qos.peer-state
|
|
|
|
(gte now.channel expiry)
|
|
|
|
%dead
|
|
|
|
qos.peer-state
|
|
|
|
:: expire direct route
|
|
|
|
::
|
|
|
|
:: If the peer is not responding, mark the .lane.route as
|
|
|
|
:: indirect. The next packets we emit will be sent to the
|
|
|
|
:: receiver's sponsorship chain in case the receiver's
|
|
|
|
:: transport address has changed and this lane is no longer
|
|
|
|
:: valid.
|
|
|
|
::
|
|
|
|
:: If .her is a galaxy, the lane will always remain direct.
|
|
|
|
::
|
|
|
|
=? route.peer-state
|
|
|
|
?& ?=(%dead -.qos.peer-state)
|
|
|
|
?=(^ route.peer-state)
|
|
|
|
direct.u.route.peer-state
|
2023-02-22 12:50:20 +03:00
|
|
|
!=(%czar (clan:title her))
|
2023-02-21 14:22:53 +03:00
|
|
|
==
|
|
|
|
route.peer-state(direct.u %.n)
|
|
|
|
:: resend comet attestation packet if first message times out
|
|
|
|
::
|
|
|
|
:: The attestation packet doesn't get acked, so if we tried to
|
|
|
|
:: send a packet but it timed out, maybe they didn't get our
|
|
|
|
:: attestation.
|
|
|
|
::
|
|
|
|
:: Only resend on timeout of packets in the first message we
|
|
|
|
:: send them, since they should remember forever.
|
|
|
|
::
|
|
|
|
=? event-core
|
|
|
|
?& ?=(%pawn (clan:title our))
|
|
|
|
=(1 current:(~(got by snd.peer-state) bone))
|
|
|
|
==
|
2023-02-22 12:50:20 +03:00
|
|
|
(send-blob | her (attestation-packet [her her-life]:channel))
|
2023-02-21 14:22:53 +03:00
|
|
|
?: (~(has in corked.peer-state) bone)
|
|
|
|
:: if the bone was corked the flow doesn't exist anymore
|
|
|
|
:: TODO: clean up corked bones in the peer state when it's _safe_?
|
|
|
|
:: (e.g. if this bone is N blocks behind the next one)
|
|
|
|
::
|
|
|
|
peer-core
|
|
|
|
:: maybe resend some timed out packets
|
|
|
|
::
|
2023-03-24 14:14:31 +03:00
|
|
|
abet:(call:(abed:mu bone) %wake ~)
|
2023-02-21 15:38:03 +03:00
|
|
|
::
|
|
|
|
+| %implementation
|
|
|
|
:: +dedup-message: replace with any existing copy of this message
|
|
|
|
::
|
|
|
|
++ dedup-message
|
|
|
|
|= =message-blob
|
|
|
|
^+ message-blob
|
|
|
|
?: (lte (met 13 message-blob) 1)
|
|
|
|
message-blob
|
|
|
|
=/ peers-l=(list [=ship =ship-state]) ~(tap by peers.ames-state)
|
|
|
|
|- ^+ message-blob
|
|
|
|
=* peer-loop $
|
|
|
|
?~ peers-l
|
|
|
|
message-blob
|
|
|
|
?. ?=(%known -.ship-state.i.peers-l)
|
|
|
|
peer-loop(peers-l t.peers-l)
|
|
|
|
=/ snd-l=(list [=bone =message-pump-state])
|
|
|
|
~(tap by snd.ship-state.i.peers-l)
|
|
|
|
|- ^+ message-blob
|
|
|
|
=* bone-loop $
|
2023-02-22 12:50:20 +03:00
|
|
|
?~ snd-l peer-loop(peers-l t.peers-l)
|
|
|
|
=* unsent-fragments unsent-fragments.message-pump-state.i.snd-l
|
2023-02-21 15:38:03 +03:00
|
|
|
=/ blob-l=(list ^message-blob)
|
|
|
|
~(tap to unsent-messages.message-pump-state.i.snd-l)
|
|
|
|
|- ^+ message-blob
|
|
|
|
=* blob-loop $
|
|
|
|
?^ blob-l
|
|
|
|
?: =(i.blob-l message-blob)
|
|
|
|
i.blob-l
|
|
|
|
blob-loop(blob-l t.blob-l)
|
2023-02-22 12:50:20 +03:00
|
|
|
?~ unsent-fragments bone-loop(snd-l t.snd-l)
|
|
|
|
?: =(message-blob fragment.i.unsent-fragments)
|
|
|
|
`@`fragment.i.unsent-fragments
|
2023-02-21 15:38:03 +03:00
|
|
|
bone-loop(snd-l t.snd-l)
|
|
|
|
:: +check-clog: notify clients if peer has stopped responding
|
|
|
|
::
|
|
|
|
++ check-clog
|
|
|
|
^+ peer-core
|
|
|
|
::
|
|
|
|
:: Only look at response bones. Request bones are unregulated,
|
|
|
|
:: since requests tend to be much smaller than responses.
|
|
|
|
::
|
|
|
|
=/ pumps=(list message-pump-state)
|
|
|
|
%+ murn ~(tap by snd.peer-state)
|
|
|
|
|= [=bone =message-pump-state]
|
|
|
|
?: =(0 (end 0 bone))
|
|
|
|
~
|
|
|
|
`u=message-pump-state
|
|
|
|
:: if clogged, notify client vane
|
|
|
|
::
|
2023-03-12 11:59:11 +03:00
|
|
|
|^ ?. &(nuf-messages nuf-memory) peer-core
|
2023-02-22 12:50:20 +03:00
|
|
|
%+ roll ~(tap in heeds.peer-state)
|
|
|
|
|=([d=^duct core=_peer-core] (pe-emit:core d %give %clog her))
|
|
|
|
:: +nuf-messages: are there enough messages to mark as clogged?
|
|
|
|
::
|
|
|
|
++ nuf-messages
|
|
|
|
=| num=@ud
|
|
|
|
|- ^- ?
|
|
|
|
?~ pumps |
|
|
|
|
=. num
|
|
|
|
;: add num
|
|
|
|
(sub [next current]:i.pumps)
|
|
|
|
~(wyt in unsent-messages.i.pumps)
|
|
|
|
==
|
|
|
|
?: (gte num msg.cong.ames-state)
|
|
|
|
&
|
|
|
|
$(pumps t.pumps)
|
|
|
|
:: +nuf-memory: is enough memory used to mark as clogged?
|
|
|
|
::
|
|
|
|
++ nuf-memory
|
|
|
|
=| mem=@ud
|
|
|
|
|- ^- ?
|
|
|
|
?~ pumps |
|
|
|
|
=. mem
|
|
|
|
%+ add
|
|
|
|
%- ~(rep in unsent-messages.i.pumps)
|
|
|
|
|=([a=@ b=_mem] (add b (met 3 a)))
|
|
|
|
?~ unsent-fragments.i.pumps 0
|
|
|
|
(met 3 fragment.i.unsent-fragments.i.pumps)
|
|
|
|
?: (gte mem mem.cong.ames-state)
|
|
|
|
&
|
|
|
|
$(pumps t.pumps)
|
|
|
|
--
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +send-shut-packet: fire encrypted packet at rcvr and maybe sponsors
|
2022-05-05 15:04:18 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ send-shut-packet
|
|
|
|
|= =shut-packet
|
|
|
|
^+ peer-core
|
|
|
|
:: swizzle last bone bit before sending
|
|
|
|
::
|
|
|
|
:: The peer has the opposite perspective from ours about what
|
|
|
|
:: kind of flow this is (forward/backward), so flip the bit
|
|
|
|
:: here.
|
|
|
|
::
|
|
|
|
=. event-core
|
2023-02-22 12:50:20 +03:00
|
|
|
%^ send-blob | her
|
2023-03-21 20:01:17 +03:00
|
|
|
%- etch-shot
|
|
|
|
%: etch-shut-packet
|
2023-02-21 14:22:53 +03:00
|
|
|
shut-packet(bone (mix 1 bone.shut-packet))
|
|
|
|
symmetric-key.channel
|
2023-02-22 12:50:20 +03:00
|
|
|
our her
|
2023-02-21 14:22:53 +03:00
|
|
|
our-life.channel her-life.channel
|
2021-09-01 18:16:00 +03:00
|
|
|
==
|
2023-03-12 10:47:44 +03:00
|
|
|
peer-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +recork-one: re-send the next %cork to the peer
|
2019-07-28 10:50:32 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ recork-one
|
|
|
|
^+ peer-core
|
|
|
|
=/ boz (sort ~(tap in closing.peer-state) lte)
|
|
|
|
|- ^+ peer-core
|
|
|
|
?~ boz peer-core
|
|
|
|
=/ pum=message-pump-state (~(got by snd.peer-state) i.boz)
|
|
|
|
?. =(next current):pum
|
|
|
|
$(boz t.boz)
|
|
|
|
:: sanity check on the message pump state
|
2022-07-08 08:29:04 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?. ?& =(~ unsent-messages.pum)
|
|
|
|
=(~ unsent-fragments.pum)
|
|
|
|
=(~ live.packet-pump-state.pum)
|
|
|
|
==
|
2023-02-22 12:50:20 +03:00
|
|
|
~> %slog.0^leaf/"ames: bad pump state {<her i.boz>}"
|
2023-02-21 14:22:53 +03:00
|
|
|
$(boz t.boz)
|
|
|
|
:: no outstanding messages, so send a new %cork
|
|
|
|
::
|
|
|
|
:: TODO use +trace
|
2023-02-22 12:50:20 +03:00
|
|
|
~> %slog.0^leaf/"ames: recork {<her i.boz>}"
|
2023-02-21 14:22:53 +03:00
|
|
|
=/ =plea [%$ /flow [%cork ~]]
|
|
|
|
(on-memo i.boz plea %plea)
|
2022-08-05 01:35:34 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
:: +handle-cork: handle flow kill after server ames has taken %done
|
2019-06-09 09:26:01 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
++ handle-cork
|
|
|
|
|= =bone
|
|
|
|
^+ peer-core
|
|
|
|
?. (~(has in closing.peer-state) bone) peer-core
|
|
|
|
=/ =message-pump-state
|
|
|
|
(~(gut by snd.peer-state) bone *message-pump-state)
|
|
|
|
=? peer-core ?=(^ next-wake.packet-pump-state.message-pump-state)
|
|
|
|
=* next-wake u.next-wake.packet-pump-state.message-pump-state
|
|
|
|
=/ =wire (make-pump-timer-wire her bone)
|
|
|
|
:: resetting timer for boons
|
|
|
|
::
|
|
|
|
(pe-emit [/ames]~ %pass wire %b %rest next-wake)
|
|
|
|
=/ nax-bone=^bone (mix 0b10 bone)
|
|
|
|
=? peer-core (~(has by snd.peer-state) nax-bone)
|
|
|
|
%. peer-core
|
|
|
|
%+ pe-trace odd.veb
|
|
|
|
|.("remove naxplanation flow {<[her bone=nax-bone]>}")
|
|
|
|
=. peer-state
|
|
|
|
=, peer-state
|
|
|
|
%_ peer-state
|
|
|
|
:: preemptively delete nax flows (e.g. nacks for %watches)
|
|
|
|
::
|
|
|
|
snd (~(del by (~(del by snd) bone)) nax-bone)
|
|
|
|
rcv (~(del by rcv) bone)
|
|
|
|
corked (~(put in corked) bone)
|
|
|
|
closing (~(del in closing) bone)
|
|
|
|
==
|
|
|
|
peer-core
|
2019-06-09 09:26:01 +03:00
|
|
|
::
|
2023-02-21 15:38:03 +03:00
|
|
|
+| %internals
|
2023-02-22 16:45:44 +03:00
|
|
|
:: +mu: constructor for |pump message sender core
|
2019-08-06 02:05:40 +03:00
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
++ mu
|
2023-03-24 14:14:31 +03:00
|
|
|
|_ [=bone state=message-pump-state]
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
+| %helpers
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
++ pump .
|
2023-03-25 18:58:03 +03:00
|
|
|
++ abed
|
2023-03-28 13:35:23 +03:00
|
|
|
|= b=^bone
|
|
|
|
pump(bone b, state (~(gut by snd.peer-state) b *message-pump-state))
|
2023-02-22 10:50:55 +03:00
|
|
|
++ abet
|
|
|
|
:: if the bone was corked, it's been removed from the state,
|
|
|
|
:: so we avoid adding it again.
|
|
|
|
::
|
|
|
|
=? snd.peer-state !corked (~(put by snd.peer-state) bone state)
|
|
|
|
peer-core
|
|
|
|
::
|
|
|
|
++ packet-pump (pu packet-pump-state.state)
|
2023-03-24 14:44:20 +03:00
|
|
|
++ closing (~(has in closing.peer-state) bone)
|
|
|
|
++ corked (~(has in corked.peer-state) bone)
|
2023-02-22 10:50:55 +03:00
|
|
|
:: +is-message-num-in-range: %.y unless duplicate or future ack
|
|
|
|
::
|
|
|
|
++ is-message-num-in-range
|
|
|
|
|= =message-num
|
|
|
|
^- ?
|
|
|
|
::
|
|
|
|
?: (gte message-num next.state)
|
|
|
|
%.n
|
|
|
|
?: (lth message-num current.state)
|
|
|
|
%.n
|
|
|
|
!(~(has by queued-message-acks.state) message-num)
|
|
|
|
::
|
|
|
|
+| %entry-points
|
|
|
|
:: +call: handle a $message-pump-task
|
|
|
|
::
|
|
|
|
++ call
|
|
|
|
|= task=message-pump-task
|
|
|
|
^+ pump
|
|
|
|
::
|
|
|
|
=. pump =~((dispatch-task task) feed-packets)
|
|
|
|
=+ top=top-live:packet-pump
|
|
|
|
:: sanity check to isolate error cases
|
|
|
|
::
|
|
|
|
?. |(?=(~ top) (lte current.state message-num.key.u.top))
|
2023-03-25 18:58:03 +03:00
|
|
|
~|([%strange-current current=current.state key.u.top] !!)
|
2023-02-22 10:50:55 +03:00
|
|
|
:: maybe trigger a timer based on congestion control calculations
|
|
|
|
::
|
|
|
|
abet:(call:packet-pump %halt ~)
|
|
|
|
::
|
|
|
|
+| %tasks
|
|
|
|
:: +dispatch-task: perform task-specific processing
|
|
|
|
::
|
|
|
|
++ dispatch-task
|
|
|
|
|= task=message-pump-task
|
|
|
|
^+ pump
|
|
|
|
::
|
|
|
|
?- -.task
|
|
|
|
%memo (on-memo message-blob.task)
|
|
|
|
%prod abet:(call:packet-pump %prod ~)
|
|
|
|
%wake abet:(call:packet-pump %wake current.state)
|
|
|
|
%near %- on-done
|
|
|
|
[[message-num %naxplanation error]:naxplanation.task %&]
|
|
|
|
%hear
|
|
|
|
?- -.ack-meat.task
|
|
|
|
%&
|
|
|
|
(on-hear [message-num fragment-num=p.ack-meat]:task)
|
|
|
|
::
|
|
|
|
%|
|
|
|
|
=/ cork=?
|
|
|
|
=+ top=top-live:packet-pump
|
|
|
|
:: If we send a %cork and get an ack, we can know by
|
|
|
|
:: sequence number that the ack is for the %cork message
|
|
|
|
::
|
|
|
|
?& closing
|
|
|
|
?=(^ top)
|
|
|
|
=(0 ~(wyt in unsent-messages.state))
|
|
|
|
=(0 (lent unsent-fragments.state))
|
|
|
|
=(1 ~(wyt by live.packet-pump-state.state))
|
|
|
|
=(message-num:task message-num.key.u.top)
|
|
|
|
==
|
2023-02-22 12:50:20 +03:00
|
|
|
=+ [ack msg]=[p.ack-meat message-num]:task
|
2023-02-22 10:50:55 +03:00
|
|
|
=. pump
|
|
|
|
%- on-done
|
2023-02-22 12:50:20 +03:00
|
|
|
[[msg ?:(ok.ack [%ok ~] [%nack ~])] cork]
|
2023-02-22 10:50:55 +03:00
|
|
|
?. &(!ok.ack cork) pump
|
|
|
|
%. pump
|
2023-03-24 14:44:20 +03:00
|
|
|
%+ pe-trace odd.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
|.("got nack for %cork {<bone=bone message-num=msg>}")
|
2023-02-22 10:50:55 +03:00
|
|
|
== ==
|
|
|
|
:: +on-memo: handle request to send a message
|
|
|
|
::
|
|
|
|
++ on-memo
|
|
|
|
|= blob=message-blob
|
|
|
|
pump(unsent-messages.state (~(put to unsent-messages.state) blob))
|
|
|
|
:: +on-hear: handle packet acknowledgment
|
|
|
|
::
|
|
|
|
++ on-hear
|
|
|
|
|= [=message-num =fragment-num]
|
|
|
|
^+ pump
|
|
|
|
:: pass to |packet-pump unless duplicate or future ack
|
|
|
|
::
|
|
|
|
?. (is-message-num-in-range message-num)
|
|
|
|
%. pump
|
2023-03-24 14:44:20 +03:00
|
|
|
(pe-trace snd.veb |.("hear pump out of range"))
|
2023-02-22 10:50:55 +03:00
|
|
|
abet:(call:packet-pump %hear message-num fragment-num)
|
|
|
|
:: +on-done: handle message acknowledgment
|
|
|
|
::
|
|
|
|
:: A nack-trace message counts as a valid message nack on the
|
|
|
|
:: original failed message.
|
|
|
|
::
|
|
|
|
:: This prevents us from having to wait for a message nack packet,
|
|
|
|
:: which would mean we couldn't immediately ack the nack-trace
|
|
|
|
:: message, which would in turn violate the semantics of backward
|
|
|
|
:: flows.
|
|
|
|
::
|
|
|
|
++ on-done
|
|
|
|
|= [[=message-num =ack] cork=?]
|
|
|
|
^+ pump
|
|
|
|
:: unsent messages from the future should never get acked
|
|
|
|
::
|
|
|
|
~| :* bone=bone
|
|
|
|
mnum=message-num
|
|
|
|
next=next.state
|
|
|
|
unsent-messages=~(wyt in unsent-messages.state)
|
|
|
|
unsent-fragments=(lent unsent-fragments.state)
|
|
|
|
any-live=!=(~ live.packet-pump-state.state)
|
2023-02-21 14:22:53 +03:00
|
|
|
==
|
2023-02-22 10:50:55 +03:00
|
|
|
?> (lth message-num next.state)
|
|
|
|
:: ignore duplicate message acks
|
|
|
|
::
|
|
|
|
?: (lth message-num current.state)
|
2023-02-22 12:50:20 +03:00
|
|
|
%. pump
|
2023-03-24 14:44:20 +03:00
|
|
|
%+ pe-trace snd.veb |.
|
2023-02-22 12:50:20 +03:00
|
|
|
"duplicate done {<current=current.state message-num=message-num>}"
|
2023-02-22 10:50:55 +03:00
|
|
|
:: ignore duplicate and future acks
|
|
|
|
::
|
|
|
|
?. (is-message-num-in-range message-num)
|
|
|
|
pump
|
|
|
|
:: clear and print .unsent-fragments if nonempty
|
|
|
|
::
|
|
|
|
=? unsent-fragments.state
|
|
|
|
&(=(current next) ?=(^ unsent-fragments)):state
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
~> %slog.0^leaf/"ames: early message ack {<her>}"
|
2023-02-22 10:50:55 +03:00
|
|
|
~
|
|
|
|
:: clear all packets from this message from the packet pump
|
|
|
|
::
|
|
|
|
=. pump abet:(call:packet-pump %done message-num lag=*@dr)
|
|
|
|
:: enqueue this ack to be sent back to local client vane
|
|
|
|
::
|
|
|
|
:: Don't clobber a naxplanation with just a nack packet.
|
|
|
|
::
|
|
|
|
=? queued-message-acks.state
|
|
|
|
=/ old (~(get by queued-message-acks.state) message-num)
|
|
|
|
!?=([~ %naxplanation *] old)
|
|
|
|
(~(put by queued-message-acks.state) message-num ack)
|
|
|
|
:: emit local acks from .queued-message-acks until incomplete
|
|
|
|
::
|
|
|
|
|- ^+ pump
|
|
|
|
:: if .current hasn't been fully acked, we're done
|
|
|
|
::
|
|
|
|
?~ cur=(~(get by queued-message-acks.state) current.state)
|
|
|
|
pump
|
|
|
|
:: .current is complete; pop, emit local ack, and try next message
|
|
|
|
::
|
|
|
|
=. queued-message-acks.state
|
|
|
|
(~(del by queued-message-acks.state) current.state)
|
|
|
|
:: clear all packets from this message from the packet pump
|
|
|
|
::
|
|
|
|
:: Note we did this when the original packet came in, a few lines
|
|
|
|
:: above. It's not clear why, but it doesn't always clear the
|
|
|
|
:: packets when it's not the current message. As a workaround,
|
|
|
|
:: we clear the packets again when we catch up to this packet.
|
|
|
|
::
|
|
|
|
:: This is slightly inefficient because we run this twice for
|
|
|
|
:: each packet and it may emit a few unnecessary packets, but
|
2023-02-22 16:45:44 +03:00
|
|
|
:: it's not incorrect. pump-metrics are updated only once,
|
2023-02-22 10:50:55 +03:00
|
|
|
:: at the time when we actually delete the packet.
|
|
|
|
::
|
|
|
|
=. pump abet:(call:packet-pump %done current.state lag=*@dr)
|
|
|
|
:: give %done to vane if we're ready
|
|
|
|
::
|
|
|
|
?- -.u.cur
|
|
|
|
%ok
|
|
|
|
=. peer-core
|
|
|
|
:: don't give %done for corks
|
|
|
|
::
|
|
|
|
?: cork (pump-cork current.state)
|
|
|
|
(pump-done current.state ~)
|
|
|
|
$(current.state +(current.state))
|
|
|
|
::
|
2023-02-22 13:06:09 +03:00
|
|
|
%nack pump
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
%naxplanation
|
|
|
|
=. peer-core (pump-done current.state `error.u.cur)
|
|
|
|
$(current.state +(current.state))
|
2019-06-20 11:13:54 +03:00
|
|
|
==
|
2022-03-31 11:37:01 +03:00
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
+| %implementation
|
|
|
|
:: +feed-packets: give packets to |packet-pump until full
|
|
|
|
::
|
|
|
|
++ feed-packets
|
|
|
|
:: if nothing to send, no-op
|
|
|
|
::
|
|
|
|
?: &(=(~ unsent-messages) =(~ unsent-fragments)):state
|
|
|
|
pump
|
|
|
|
:: we have unsent fragments of the current message; feed them
|
|
|
|
::
|
|
|
|
?. =(~ unsent-fragments.state)
|
2023-03-23 12:41:56 +03:00
|
|
|
|
2023-02-22 10:50:55 +03:00
|
|
|
:: we have unsent fragments of the current message; feed them
|
|
|
|
::
|
|
|
|
=^ unsent pump abut:(feed:packet-pump unsent-fragments.state)
|
|
|
|
=. unsent-fragments.state unsent
|
|
|
|
:: if it sent all of them, feed it more; otherwise, we're done
|
|
|
|
::
|
|
|
|
?~(unsent feed-packets pump)
|
|
|
|
:: .unsent-messages is nonempty; pop a message off and feed it
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=^ =message-blob unsent-messages.state
|
|
|
|
~(get to unsent-messages.state)
|
2023-02-22 10:50:55 +03:00
|
|
|
:: break .message into .chunks and set as .unsent-fragments
|
|
|
|
::
|
|
|
|
=. unsent-fragments.state (split-message next.state message-blob)
|
|
|
|
:: try to feed packets from the next message
|
|
|
|
::
|
|
|
|
=. next.state +(next.state)
|
|
|
|
feed-packets
|
|
|
|
:: +pump-done: handle |message-pump's report of message (n)ack
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
++ pump-done
|
2023-02-21 14:22:53 +03:00
|
|
|
|= [=message-num error=(unit error)]
|
|
|
|
^+ peer-core
|
|
|
|
?: ?& =(1 (end 0 bone))
|
|
|
|
=(1 (end 0 (rsh 0 bone)))
|
|
|
|
(~(has in corked.peer-state) (mix 0b10 bone))
|
|
|
|
==
|
2023-02-21 14:46:20 +03:00
|
|
|
%- %+ pe-trace msg.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ dat [her bone=bone message-num=message-num -.task]
|
2023-02-21 14:22:53 +03:00
|
|
|
|.("remove naxplanation flow {<dat>}")
|
2023-02-22 12:50:20 +03:00
|
|
|
:: XX we avoid re-adding the bone in abet:mu; test that it works
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
=. snd.peer-state (~(del by snd.peer-state) bone)
|
2023-02-21 14:22:53 +03:00
|
|
|
peer-core
|
|
|
|
:: if odd bone, ack is on "subscription update" message; no-op
|
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
?: =(1 (end 0 bone)) peer-core
|
2023-02-21 14:22:53 +03:00
|
|
|
:: even bone; is this bone a nack-trace bone?
|
|
|
|
::
|
|
|
|
?: =(1 (end 0 (rsh 0 bone)))
|
|
|
|
:: nack-trace bone; assume .ok, clear nack from |message-sink
|
|
|
|
::
|
2023-03-24 14:14:31 +03:00
|
|
|
abet:(call:(abed:mi (mix 0b10 bone)) %drop message-num)
|
2023-02-22 10:50:55 +03:00
|
|
|
?: &(closing ?=(%near -.task))
|
2023-02-22 12:50:20 +03:00
|
|
|
:: if the bone belongs to a closing flow and we got a
|
|
|
|
:: naxplanation, don't relay ack to the client vane
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
|
|
|
peer-core
|
|
|
|
:: not a nack-trace bone; relay ack to client vane
|
|
|
|
::
|
2023-02-21 14:46:20 +03:00
|
|
|
(pe-emit (got-duct bone) %give %done error)
|
2023-03-23 12:41:56 +03:00
|
|
|
:: XX impure +abet pattern
|
|
|
|
:: +pump-cork: kill flow on cork sender side
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
++ pump-cork
|
2023-02-21 14:22:53 +03:00
|
|
|
|= =message-num
|
|
|
|
^+ peer-core
|
|
|
|
:: clear all packets from this message from the packet pump
|
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
=. pump abet:(call:packet-pump %done message-num lag=*@dr)
|
2023-03-12 10:47:44 +03:00
|
|
|
?: corked
|
|
|
|
%- %+ pe-trace odd.veb
|
|
|
|
|.("trying to delete a corked bone={<bone>}")
|
|
|
|
peer-core
|
2023-03-23 12:41:56 +03:00
|
|
|
=/ nack-bone=^bone (mix 0b10 bone)
|
|
|
|
=? rcv.peer-state (~(has by rcv.peer-state) nack-bone)
|
|
|
|
:: if the publisher was behind we remove nacks on that bone
|
|
|
|
::
|
|
|
|
(~(del by rcv.peer-state) nack-bone)
|
|
|
|
=. peer-state
|
|
|
|
=, peer-state
|
|
|
|
%_ peer-state
|
|
|
|
snd (~(del by snd) bone)
|
|
|
|
rcv (~(del by rcv) bone)
|
|
|
|
corked (~(put in corked) bone)
|
|
|
|
closing (~(del in closing) bone)
|
|
|
|
by-duct.ossuary (~(del by by-duct.ossuary) (got-duct bone))
|
|
|
|
by-bone.ossuary (~(del by by-bone.ossuary) bone)
|
|
|
|
==
|
|
|
|
:: since we got one cork ack, try the next one
|
|
|
|
::
|
|
|
|
recork-one
|
2023-02-22 10:50:55 +03:00
|
|
|
:: +pu: construct |packet-pump core
|
|
|
|
::
|
|
|
|
++ pu
|
|
|
|
|= state=packet-pump-state
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 10:50:55 +03:00
|
|
|
=| unsent=(list static-fragment)
|
|
|
|
|%
|
|
|
|
+| %helpers
|
|
|
|
++ pack .
|
2023-02-22 12:50:20 +03:00
|
|
|
:: +abut: abet with gifts
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
++ abut [unsent abet]
|
|
|
|
++ abet pump(packet-pump-state.state state)
|
|
|
|
++ pu-trace
|
|
|
|
|= [verb=? print=(trap tape)]
|
|
|
|
^+ same
|
2023-02-22 12:50:20 +03:00
|
|
|
(trace verb her ships.bug.channel print)
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
2023-02-22 13:06:09 +03:00
|
|
|
++ pu-wire (make-pump-timer-wire her bone)
|
|
|
|
++ pu-emit |=(=note (pe-emit pump-duct %pass pu-wire note))
|
2023-02-22 12:50:20 +03:00
|
|
|
:: +packet-queue: type for all sent fragments (order: seq number)
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
++ packet-queue
|
|
|
|
%- (ordered-map live-packet-key live-packet-val)
|
|
|
|
lte-packets
|
|
|
|
:: +gauge: inflate a |pump-gauge to track congestion control
|
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ gauge (ga metrics.state ~(wyt by live.state))
|
2023-02-22 10:50:55 +03:00
|
|
|
:: +to-static-fragment: convenience function for |packet-pump
|
|
|
|
::
|
|
|
|
++ to-static-fragment
|
|
|
|
|= [live-packet-key live-packet-val]
|
|
|
|
^- static-fragment
|
|
|
|
[message-num num-fragments fragment-num fragment]
|
|
|
|
::
|
|
|
|
++ pump-duct ~[/ames]
|
|
|
|
++ top-live (pry:packet-queue live.state)
|
|
|
|
::
|
|
|
|
+| %entry-points
|
|
|
|
::
|
|
|
|
++ call
|
|
|
|
|= task=packet-pump-task
|
|
|
|
^+ pack
|
|
|
|
?- -.task
|
|
|
|
%hear (on-hear [message-num fragment-num]:task)
|
|
|
|
%done (on-done message-num.task)
|
|
|
|
%wake (on-wake current.task)
|
|
|
|
%prod on-prod
|
|
|
|
%halt set-wake
|
|
|
|
==
|
|
|
|
:: +feed: try to send a list of packets, returning unsent ones
|
|
|
|
::
|
|
|
|
++ feed
|
|
|
|
|= fragments=(list static-fragment)
|
|
|
|
^+ pack
|
|
|
|
:: bite off as many fragments as we can send
|
|
|
|
::
|
|
|
|
=/ num-slots num-slots:gauge
|
|
|
|
=/ sent (scag num-slots fragments)
|
|
|
|
=. unsent (slag num-slots fragments)
|
|
|
|
:: if nothing to send, we're done
|
|
|
|
::
|
|
|
|
?~ sent pack
|
|
|
|
:: convert $static-fragment's into +ordered-set [key val] pairs
|
|
|
|
::
|
|
|
|
=/ send-list
|
|
|
|
%+ turn sent
|
|
|
|
|= static-fragment
|
|
|
|
^- [key=live-packet-key val=live-packet-val]
|
|
|
|
::
|
|
|
|
:- [message-num fragment-num]
|
2023-03-21 20:01:17 +03:00
|
|
|
:- [sent-date=now.channel tries=1 skips=0]
|
2023-02-22 10:50:55 +03:00
|
|
|
[num-fragments fragment]
|
|
|
|
:: update .live and .metrics
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=. live.state (gas:packet-queue live.state send-list)
|
2023-02-22 10:50:55 +03:00
|
|
|
:: TMI
|
|
|
|
::
|
|
|
|
=> .(sent `(list static-fragment)`sent)
|
|
|
|
:: emit a $shut-packet for each packet to send
|
|
|
|
::
|
|
|
|
=. peer-core
|
|
|
|
%+ roll sent
|
|
|
|
|= [packet=static-fragment core=_peer-core]
|
|
|
|
(send-shut-packet bone [message-num %& +]:packet)
|
|
|
|
pack
|
|
|
|
::
|
|
|
|
+| %tasks
|
|
|
|
:: +on-prod: reset congestion control, re-send packets
|
|
|
|
::
|
|
|
|
++ on-prod
|
|
|
|
^+ pack
|
|
|
|
?: =(~ next-wake.state)
|
|
|
|
pack
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=. metrics.state
|
|
|
|
%*(. *pump-metrics counter counter.metrics.state)
|
2023-02-22 10:50:55 +03:00
|
|
|
=. live.state
|
|
|
|
%+ run:packet-queue live.state
|
|
|
|
|=(p=live-packet-val p(- *packet-state))
|
|
|
|
::
|
|
|
|
=/ sot (max 1 num-slots:gauge)
|
|
|
|
=/ liv live.state
|
|
|
|
|- ^+ pack
|
|
|
|
?: =(0 sot) pack
|
|
|
|
?: =(~ liv) pack
|
|
|
|
=^ hed liv (pop:packet-queue liv)
|
|
|
|
=. peer-core
|
2023-02-22 12:50:20 +03:00
|
|
|
%+ send-shut-packet bone
|
|
|
|
[message-num %& +]:(to-static-fragment hed)
|
2023-02-22 10:50:55 +03:00
|
|
|
$(sot (dec sot))
|
|
|
|
:: +on-wake: handle packet timeout
|
|
|
|
::
|
|
|
|
++ on-wake
|
|
|
|
|= current=message-num
|
|
|
|
^+ pack
|
|
|
|
:: assert temporal coherence
|
|
|
|
::
|
|
|
|
?< =(~ next-wake.state)
|
|
|
|
=. next-wake.state ~
|
|
|
|
:: tell congestion control a packet timed out
|
|
|
|
::
|
|
|
|
=. metrics.state on-timeout:gauge
|
2023-02-22 12:50:20 +03:00
|
|
|
=| acc=(unit static-fragment)
|
2023-02-22 10:50:55 +03:00
|
|
|
:: re-send first packet and update its state in-place
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=; [static-fragment=_acc live=_live.state]
|
|
|
|
=. live.state live
|
2023-02-22 10:50:55 +03:00
|
|
|
=? peer-core ?=(^ static-fragment)
|
|
|
|
%- %+ pu-trace snd.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ nums [message-num fragment-num]:u.static-fragment
|
2023-02-22 10:50:55 +03:00
|
|
|
|.("dead {<nums show:gauge>}")
|
|
|
|
(send-shut-packet bone [message-num %& +]:u.static-fragment)
|
|
|
|
pack
|
|
|
|
::
|
|
|
|
%^ (dip:packet-queue _acc) live.state acc
|
|
|
|
|= $: acc=_acc
|
|
|
|
key=live-packet-key
|
|
|
|
val=live-packet-val
|
|
|
|
==
|
|
|
|
^- [new-val=(unit live-packet-val) stop=? _acc]
|
|
|
|
:: if already acked later message, don't resend
|
|
|
|
::
|
|
|
|
?: (lth message-num.key current)
|
2023-02-22 12:50:20 +03:00
|
|
|
%. [~ stop=%.n ~]
|
|
|
|
%- slog :_ ~ :- %leaf
|
|
|
|
"ames: strange wake queue, expected {<current>}, got {<key>}"
|
2023-02-22 10:50:55 +03:00
|
|
|
:: packet has expired; update it in-place, stop, and produce it
|
|
|
|
::
|
|
|
|
=. last-sent.val now.channel
|
2023-03-21 20:01:17 +03:00
|
|
|
=. tries.val +(tries.val)
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
[`val stop=%.y `(to-static-fragment key val)]
|
|
|
|
:: +fast-resend-after-ack: resend timed out packets
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
:: After we finally receive an ack, we want to resend all the
|
|
|
|
:: live packets that have been building up.
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
++ fast-resend-after-ack
|
|
|
|
|= [=message-num =fragment-num]
|
|
|
|
^+ pack
|
|
|
|
=; res=[resends=(list static-fragment) live=_live.state]
|
|
|
|
=. live.state live.res
|
|
|
|
=. peer-core
|
|
|
|
%+ reel resends.res
|
|
|
|
|= [packet=static-fragment core=_peer-core]
|
|
|
|
(send-shut-packet bone [message-num %& +]:packet)
|
|
|
|
pack
|
|
|
|
::
|
|
|
|
=/ acc
|
|
|
|
resends=*(list static-fragment)
|
|
|
|
::
|
|
|
|
%^ (dip:packet-queue _acc) live.state acc
|
|
|
|
|= $: acc=_acc
|
|
|
|
key=live-packet-key
|
|
|
|
val=live-packet-val
|
|
|
|
==
|
|
|
|
^- [new-val=(unit live-packet-val) stop=? _acc]
|
|
|
|
?: (lte-packets key [message-num fragment-num])
|
|
|
|
[new-val=`val stop=%.n acc]
|
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
?: (gth (next-expiry:gauge -.val) now.channel)
|
2023-02-22 10:50:55 +03:00
|
|
|
[new-val=`val stop=%.y acc]
|
|
|
|
::
|
|
|
|
=. last-sent.val now.channel
|
|
|
|
=. resends.acc [(to-static-fragment key val) resends.acc]
|
|
|
|
[new-val=`val stop=%.n acc]
|
|
|
|
:: +on-hear: handle ack on a live packet
|
|
|
|
::
|
|
|
|
:: If the packet was in our queue, delete it and update our
|
2023-02-22 12:50:20 +03:00
|
|
|
:: metrics, possibly re-sending skipped packets. Otherwise, no-op
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
++ on-hear
|
|
|
|
|= [=message-num =fragment-num]
|
|
|
|
^+ pack
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=- :: if no sent packet matches the ack,
|
|
|
|
:: don't apply mutations or effects
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
?. found.-
|
|
|
|
%- (pu-trace snd.veb |.("miss {<show:gauge>}"))
|
|
|
|
pack
|
|
|
|
::
|
|
|
|
=. metrics.state metrics.-
|
|
|
|
=. live.state live.-
|
|
|
|
%- ?. ?| =(0 fragment-num)
|
|
|
|
=(0 (mod counter.metrics.state 20))
|
|
|
|
==
|
|
|
|
same
|
2023-02-22 12:50:20 +03:00
|
|
|
%+ pu-trace snd.veb
|
|
|
|
|.("send: {<fragment=fragment-num show:gauge>}")
|
2023-02-22 10:50:55 +03:00
|
|
|
:: .resends is backward, so fold backward and emit
|
|
|
|
::
|
|
|
|
=. peer-core
|
|
|
|
%+ reel resends.-
|
|
|
|
|= [packet=static-fragment core=_peer-core]
|
|
|
|
(send-shut-packet bone [message-num %& +]:packet)
|
|
|
|
(fast-resend-after-ack message-num fragment-num)
|
|
|
|
::
|
|
|
|
=/ acc
|
|
|
|
:* found=`?`%.n
|
|
|
|
resends=*(list static-fragment)
|
|
|
|
metrics=metrics.state
|
|
|
|
==
|
|
|
|
::
|
|
|
|
^+ [acc live=live.state]
|
|
|
|
::
|
|
|
|
%^ (dip:packet-queue _acc) live.state acc
|
|
|
|
|= $: acc=_acc
|
|
|
|
key=live-packet-key
|
|
|
|
val=live-packet-val
|
|
|
|
==
|
|
|
|
^- [new-val=(unit live-packet-val) stop=? _acc]
|
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ gauge (ga metrics.acc ~(wyt by live.state))
|
2023-02-22 10:50:55 +03:00
|
|
|
:: is this the acked packet?
|
|
|
|
::
|
|
|
|
?: =(key [message-num fragment-num])
|
|
|
|
:: delete acked packet, update metrics, and stop traversal
|
|
|
|
::
|
|
|
|
=. found.acc %.y
|
|
|
|
=. metrics.acc (on-ack:gauge -.val)
|
|
|
|
[new-val=~ stop=%.y acc]
|
|
|
|
:: is this a duplicate ack?
|
|
|
|
::
|
|
|
|
?. (lte-packets key [message-num fragment-num])
|
|
|
|
:: stop, nothing more to do
|
|
|
|
::
|
|
|
|
[new-val=`val stop=%.y acc]
|
2023-02-22 12:50:20 +03:00
|
|
|
:: ack was on later packet; mark skipped, tell gauge, & continue
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
=. skips.val +(skips.val)
|
|
|
|
=^ resend metrics.acc (on-skipped-packet:gauge -.val)
|
|
|
|
?. resend
|
|
|
|
[new-val=`val stop=%.n acc]
|
|
|
|
::
|
|
|
|
=. last-sent.val now.channel
|
2023-03-21 20:01:17 +03:00
|
|
|
=. tries.val +(tries.val)
|
2023-02-22 10:50:55 +03:00
|
|
|
=. resends.acc [(to-static-fragment key val) resends.acc]
|
|
|
|
[new-val=`val stop=%.n acc]
|
|
|
|
:: +on-done: apply ack to all packets from .message-num
|
|
|
|
::
|
|
|
|
++ on-done
|
|
|
|
|= =message-num
|
|
|
|
^+ pack
|
|
|
|
::
|
|
|
|
=- =. metrics.state metrics.-
|
|
|
|
=. live.state live.-
|
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
%. (fast-resend-after-ack message-num `fragment-num`0)
|
|
|
|
(pu-trace snd.veb |.("done {<num=message-num show:gauge>}"))
|
2023-02-22 10:50:55 +03:00
|
|
|
::
|
|
|
|
^+ [metrics=metrics.state live=live.state]
|
|
|
|
::
|
|
|
|
%^ (dip:packet-queue pump-metrics) live.state acc=metrics.state
|
|
|
|
|= $: metrics=pump-metrics
|
|
|
|
key=live-packet-key
|
|
|
|
val=live-packet-val
|
|
|
|
==
|
|
|
|
^- [new-val=(unit live-packet-val) stop=? pump-metrics]
|
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ gauge (ga metrics ~(wyt by live.state))
|
2023-02-22 10:50:55 +03:00
|
|
|
:: if we get an out-of-order ack for a message, skip until it
|
|
|
|
::
|
|
|
|
?: (lth message-num.key message-num)
|
|
|
|
[new-val=`val stop=%.n metrics]
|
|
|
|
:: if packet was from acked message, delete it and continue
|
|
|
|
::
|
|
|
|
?: =(message-num.key message-num)
|
|
|
|
[new-val=~ stop=%.n metrics=(on-ack:gauge -.val)]
|
|
|
|
:: we've gone past the acked message; we're done
|
|
|
|
::
|
|
|
|
[new-val=`val stop=%.y metrics]
|
|
|
|
:: +set-wake: set, unset, or reset timer, emitting moves
|
|
|
|
::
|
|
|
|
++ set-wake
|
|
|
|
^+ pack
|
|
|
|
:: if nonempty .live, pry at head to get next wake time
|
|
|
|
::
|
|
|
|
=/ new-wake=(unit @da)
|
|
|
|
?~ head=(pry:packet-queue live.state)
|
|
|
|
~
|
2023-03-21 20:01:17 +03:00
|
|
|
`(next-expiry:gauge -.val.u.head)
|
2023-02-22 10:50:55 +03:00
|
|
|
:: no-op if no change
|
|
|
|
::
|
|
|
|
?: =(new-wake next-wake.state) pack
|
|
|
|
:: unset old timer if non-null
|
|
|
|
::
|
|
|
|
=? peer-core !=(~ next-wake.state)
|
|
|
|
(pu-emit %b %rest (need next-wake.state))
|
|
|
|
:: set new timer if non-null
|
|
|
|
::
|
|
|
|
=? peer-core ?=(^ new-wake)
|
|
|
|
(pu-emit %b %wait u.new-wake)
|
|
|
|
::
|
|
|
|
=? next-wake.state !=(~ next-wake.state) ~ :: unset
|
|
|
|
=? next-wake.state ?=(^ new-wake) new-wake :: reset
|
|
|
|
::
|
|
|
|
pack
|
|
|
|
--
|
2023-02-21 14:22:53 +03:00
|
|
|
--
|
2023-02-22 16:45:44 +03:00
|
|
|
:: +mi: constructor for |sink message receiver core
|
2022-06-28 13:48:07 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
++ mi
|
2023-03-24 14:14:31 +03:00
|
|
|
|_ [=bone state=message-sink-state]
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
+| %helpers
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
++ sink .
|
2023-03-25 18:58:03 +03:00
|
|
|
++ abed
|
2023-03-28 13:35:23 +03:00
|
|
|
|= b=^bone
|
|
|
|
sink(bone b, state (~(gut by rcv.peer-state) b *message-sink-state))
|
2023-02-22 12:50:20 +03:00
|
|
|
++ abet
|
2023-03-15 12:35:08 +03:00
|
|
|
:: if the bone was corked, it's been removed from the state,
|
|
|
|
:: so we avoid adding it again.
|
2022-11-28 19:21:41 +03:00
|
|
|
::
|
2023-03-15 12:35:08 +03:00
|
|
|
=? rcv.peer-state !corked (~(put by rcv.peer-state) bone state)
|
|
|
|
peer-core
|
2019-06-25 01:18:18 +03:00
|
|
|
::
|
2023-03-24 14:44:20 +03:00
|
|
|
++ closing (~(has in closing.peer-state) bone)
|
|
|
|
++ corked (~(has in corked.peer-state) bone)
|
2023-03-18 21:06:16 +03:00
|
|
|
++ received
|
|
|
|
|= =^bone
|
|
|
|
:: odd bone: %plea request message
|
|
|
|
:: even bone, 0 second bit: %boon response message
|
|
|
|
:: even bone, 1 second bit: nack-trace %boon message
|
|
|
|
::
|
|
|
|
?: =(1 (end 0 bone)) %plea
|
|
|
|
?: =(0 (end 0 (rsh 0 bone))) %boon
|
|
|
|
%nack
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
+| %entry-points
|
|
|
|
:: +call: handle a $message-sink-task
|
2022-06-28 13:48:07 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
++ call
|
|
|
|
|= task=message-sink-task
|
|
|
|
^+ sink
|
|
|
|
?- -.task
|
|
|
|
%drop sink(nax.state (~(del in nax.state) message-num.task))
|
|
|
|
%done (done ok.task)
|
2023-03-18 21:06:16 +03:00
|
|
|
::
|
|
|
|
%hear
|
|
|
|
?. ?| corked
|
|
|
|
?& %*(corked sink bone (mix 0b10 bone))
|
|
|
|
=(%nack (received bone))
|
|
|
|
== ==
|
|
|
|
(hear [lane shut-packet ok]:task)
|
|
|
|
:: if we %hear a task on a corked bone, always ack
|
|
|
|
::
|
|
|
|
=. peer-core
|
|
|
|
%+ send-shut-packet bone
|
|
|
|
[message-num.shut-packet.task %| %| ok=& lag=*@dr]
|
|
|
|
%. sink
|
2023-03-24 14:44:20 +03:00
|
|
|
%+ pe-trace odd.veb
|
2023-03-18 21:06:16 +03:00
|
|
|
|.("hear {<(received bone)>} on corked bone={<bone>}")
|
2021-09-01 18:16:00 +03:00
|
|
|
==
|
2019-08-06 02:05:40 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
+| %tasks
|
|
|
|
:: +hear: receive message fragment, possibly completing message
|
2022-06-28 13:48:07 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
++ hear
|
|
|
|
|= [=lane =shut-packet ok=?]
|
|
|
|
^+ sink
|
|
|
|
:: we know this is a fragment, not an ack; expose into namespace
|
|
|
|
::
|
|
|
|
?> ?=(%& -.meat.shut-packet)
|
|
|
|
=+ [num-fragments fragment-num fragment]=+.meat.shut-packet
|
|
|
|
:: seq: message sequence number, for convenience
|
|
|
|
::
|
|
|
|
=/ seq message-num.shut-packet
|
|
|
|
:: ignore messages from far future; limit to 10 in progress
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
?: (gte seq (add 10 last-acked.state))
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace odd.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
|.("future %hear {<seq=seq last-acked=last-acked.state>}")
|
|
|
|
sink
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ is-last-fragment=? =(+(fragment-num) num-fragments)
|
|
|
|
:: always ack a dupe!
|
|
|
|
::
|
|
|
|
?: (lte seq last-acked.state)
|
|
|
|
?. is-last-fragment
|
|
|
|
:: single packet ack
|
|
|
|
::
|
|
|
|
=. peer-core (send-shut-packet bone seq %| %& fragment-num)
|
|
|
|
%. sink
|
2023-03-24 14:44:20 +03:00
|
|
|
%+ pe-trace rcv.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
|.("send dupe ack {<seq=seq^fragment-num=fragment-num>}")
|
|
|
|
:: whole message (n)ack
|
|
|
|
::
|
|
|
|
=/ ok=? !(~(has in nax.state) seq)
|
|
|
|
=. peer-core (send-shut-packet bone seq %| %| ok lag=`@dr`0)
|
|
|
|
%. sink
|
2023-03-24 14:44:20 +03:00
|
|
|
%+ pe-trace rcv.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
|.("send dupe message ack {<seq=seq>} ok={<ok>}")
|
|
|
|
:: last-acked<seq<=last-heard; heard message, unprocessed
|
|
|
|
::
|
|
|
|
:: Only true if we've heard some packets we haven't acked, which
|
|
|
|
:: doesn't happen for boons.
|
|
|
|
::
|
|
|
|
?: (lte seq last-heard.state)
|
|
|
|
?: &(is-last-fragment !closing)
|
|
|
|
:: if not from a closing bone, drop last packet,
|
|
|
|
:: since we don't know whether to ack or nack
|
|
|
|
::
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace rcv.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
|. ^- tape
|
|
|
|
=/ data
|
|
|
|
:* her seq=seq bone=bone.shut-packet
|
|
|
|
fragment-num num-fragments
|
|
|
|
la=last-acked.state lh=last-heard.state
|
|
|
|
==
|
|
|
|
"hear last in-progress {<data>}"
|
|
|
|
sink
|
|
|
|
:: ack all other packets
|
|
|
|
::
|
|
|
|
=. peer-core (send-shut-packet bone seq %| %& fragment-num)
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace rcv.veb |.
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ data
|
|
|
|
:* seq=seq fragment-num=fragment-num
|
|
|
|
num-fragments=num-fragments closing=closing
|
|
|
|
==
|
|
|
|
"send ack-1 {<data>}"
|
|
|
|
sink
|
|
|
|
:: last-heard<seq<10+last-heard; this is a packet in a live message
|
|
|
|
::
|
|
|
|
=/ =partial-rcv-message
|
|
|
|
:: create default if first fragment
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
?~ existing=(~(get by live-messages.state) seq)
|
|
|
|
[num-fragments num-received=0 fragments=~]
|
|
|
|
:: we have an existing partial message; check parameters match
|
|
|
|
::
|
|
|
|
?> (gth num-fragments.u.existing fragment-num)
|
|
|
|
?> =(num-fragments.u.existing num-fragments)
|
|
|
|
::
|
|
|
|
u.existing
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ already-heard-fragment=?
|
|
|
|
(~(has by fragments.partial-rcv-message) fragment-num)
|
|
|
|
:: ack dupes except for the last fragment, in which case drop
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
?: already-heard-fragment
|
|
|
|
?: is-last-fragment
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace rcv.veb |.
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ data
|
|
|
|
[her seq=seq lh=last-heard.state la=last-acked.state]
|
|
|
|
"hear last dupe {<data>}"
|
|
|
|
sink
|
|
|
|
=. peer-core (send-shut-packet bone seq %| %& fragment-num)
|
|
|
|
%. sink
|
2023-03-24 14:44:20 +03:00
|
|
|
%+ pe-trace rcv.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
|.("send dupe ack {<her^seq=seq^fragment-num=fragment-num>}")
|
|
|
|
:: new fragment; store in state and check if message is done
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=. num-received.partial-rcv-message
|
|
|
|
+(num-received.partial-rcv-message)
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=. fragments.partial-rcv-message
|
|
|
|
(~(put by fragments.partial-rcv-message) fragment-num fragment)
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=. live-messages.state
|
|
|
|
(~(put by live-messages.state) seq partial-rcv-message)
|
|
|
|
:: ack any packet other than the last one, and continue either way
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=? peer-core !is-last-fragment
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace rcv.veb |.
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ data
|
|
|
|
[seq=seq fragment-num=fragment-num fragments=num-fragments]
|
|
|
|
"send ack-2 {<data>}"
|
|
|
|
(send-shut-packet bone seq %| %& fragment-num)
|
|
|
|
:: enqueue all completed messages starting at +(last-heard.state)
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
|- ^+ sink
|
|
|
|
:: if this is not the next message to ack, we're done
|
|
|
|
::
|
|
|
|
?. =(seq +(last-heard.state))
|
|
|
|
sink
|
|
|
|
:: if we haven't heard anything from this message, we're done
|
|
|
|
::
|
|
|
|
?~ live=(~(get by live-messages.state) seq)
|
|
|
|
sink
|
|
|
|
:: if the message isn't done yet, we're done
|
|
|
|
::
|
|
|
|
?. =(num-received num-fragments):u.live
|
|
|
|
sink
|
|
|
|
:: we have whole message; update state, assemble, and send to vane
|
|
|
|
::
|
|
|
|
=. last-heard.state +(last-heard.state)
|
|
|
|
=. live-messages.state (~(del by live-messages.state) seq)
|
|
|
|
::
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace msg.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
|.("hear {<her>} {<seq=seq>} {<num-fragments.u.live>}kb")
|
|
|
|
=/ message=* (assemble-fragments [num-fragments fragments]:u.live)
|
|
|
|
=/ empty=? =(~ pending-vane-ack.state)
|
|
|
|
:: enqueue message to be sent to local vane
|
|
|
|
::
|
|
|
|
=. pending-vane-ack.state
|
|
|
|
(~(put to pending-vane-ack.state) seq message)
|
|
|
|
::
|
|
|
|
=? sink empty (handle-sink seq message ok)
|
|
|
|
::
|
|
|
|
$(seq +(seq))
|
|
|
|
:: +done: handle confirmation of message processing from vane
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
++ done
|
|
|
|
|= ok=?
|
|
|
|
^+ sink
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 16:45:44 +03:00
|
|
|
=^ pending pending-vane-ack.state
|
|
|
|
~(get to pending-vane-ack.state)
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ =message-num message-num.p.pending
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
=. last-acked.state +(last-acked.state)
|
|
|
|
=? nax.state !ok (~(put in nax.state) message-num)
|
|
|
|
::
|
2023-02-22 16:45:44 +03:00
|
|
|
=. peer-core
|
|
|
|
(send-shut-packet bone message-num %| %| ok lag=`@dr`0)
|
|
|
|
?~ next=~(top to pending-vane-ack.state) sink
|
2023-02-22 12:50:20 +03:00
|
|
|
(handle-sink message-num.u.next message.u.next ok)
|
|
|
|
::
|
|
|
|
+| %implementation
|
|
|
|
:: +handle-sink: dispatch message
|
|
|
|
::
|
|
|
|
++ handle-sink
|
|
|
|
|= [=message-num message=* ok=?]
|
2023-03-18 21:06:16 +03:00
|
|
|
^+ sink
|
|
|
|
|^ ?-((received bone) %plea ha-plea, %boon ha-boon, %nack ha-nack)
|
|
|
|
::
|
|
|
|
++ ha-plea
|
2023-02-22 12:50:20 +03:00
|
|
|
^+ sink
|
|
|
|
?: |(closing corked) sink
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace msg.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ dat [her bone=bone message-num=message-num]
|
|
|
|
|.("sink plea {<dat>}")
|
|
|
|
=; pe=_peer-core
|
|
|
|
=. peer-core pe
|
|
|
|
=? sink !ok (call %done ok=%.n)
|
|
|
|
sink
|
|
|
|
?. ok
|
|
|
|
:: send nack-trace with blank .error for security
|
|
|
|
::
|
|
|
|
=/ nack-bone=^bone (mix 0b10 bone)
|
|
|
|
=/ =message-blob (jam [message-num *error])
|
2023-03-24 14:14:31 +03:00
|
|
|
abet:(call:(abed:mu nack-bone) %memo message-blob)
|
2023-02-22 12:50:20 +03:00
|
|
|
=+ ;; =plea message
|
|
|
|
=/ =wire (make-bone-wire her her-rift.channel bone)
|
|
|
|
::
|
|
|
|
?. =(vane.plea %$)
|
|
|
|
?+ vane.plea ~| %ames-evil-vane^our^her^vane.plea !!
|
|
|
|
%c (pe-emit duct %pass wire %c %plea her plea)
|
|
|
|
%g (pe-emit duct %pass wire %g %plea her plea)
|
|
|
|
%j (pe-emit duct %pass wire %j %plea her plea)
|
|
|
|
==
|
2023-03-31 12:37:05 +03:00
|
|
|
?: ?=(%pine -.path.plea)
|
2023-04-04 09:28:43 +03:00
|
|
|
(pe-emit duct %pass wire %a %plea our plea(path /cone))
|
2023-02-22 12:50:20 +03:00
|
|
|
:: a %cork plea is handled using %$ as the recipient vane to
|
|
|
|
:: account for publishers that still handle ames-to-ames %pleas
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
?> &(?=([%cork *] payload.plea) ?=(%flow -.path.plea))
|
2023-03-23 12:41:56 +03:00
|
|
|
:: XX FIXME impure +abet pattern...
|
|
|
|
::
|
|
|
|
=. closing.peer-state (~(put in closing.peer-state) bone)
|
|
|
|
(pe-emit duct %pass wire %a %plea her [%a /close ~])
|
2023-02-22 12:50:20 +03:00
|
|
|
::
|
2023-03-18 21:06:16 +03:00
|
|
|
:: +ha-boon: handle response message, acking unconditionally
|
2023-02-22 12:50:20 +03:00
|
|
|
::
|
|
|
|
:: .bone must be mapped in .ossuary.peer-state, or we crash.
|
|
|
|
:: This means a malformed message will kill a flow. We
|
|
|
|
:: could change this to a no-op if we had some sort of security
|
|
|
|
:: reporting.
|
|
|
|
::
|
|
|
|
:: Note that if we had several consecutive packets in the queue
|
|
|
|
:: and crashed while processing any of them, the %hole card
|
|
|
|
:: will turn *all* of them into losts/nacks.
|
|
|
|
::
|
|
|
|
:: TODO: This handles a previous crash in the client vane, but
|
|
|
|
:: not in %ames itself.
|
|
|
|
::
|
2023-03-18 21:06:16 +03:00
|
|
|
++ ha-boon
|
2023-02-22 12:50:20 +03:00
|
|
|
^+ sink
|
|
|
|
?: |(closing corked) sink
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace msg.veb |.
|
2023-02-22 12:50:20 +03:00
|
|
|
:: XX -.task not visible, FIXME
|
|
|
|
::
|
|
|
|
=/ dat [her bone=bone message-num=message-num]
|
|
|
|
?:(ok "sink boon {<dat>}" "crashed on sink boon {<dat>}")
|
|
|
|
=? moves !ok
|
|
|
|
:: we previously crashed on this message; notify client vane
|
|
|
|
::
|
|
|
|
%+ turn moves
|
|
|
|
|= =move
|
|
|
|
?. ?=([* %give %boon *] move) move
|
|
|
|
[duct.move %give %lost ~]
|
|
|
|
::
|
|
|
|
=. peer-core (pe-emit (got-duct bone) %give %boon message)
|
|
|
|
:: send ack unconditionally
|
|
|
|
::
|
|
|
|
(call %done ok=%.y)
|
|
|
|
::
|
2023-03-18 21:06:16 +03:00
|
|
|
++ ha-nack
|
2023-02-22 12:50:20 +03:00
|
|
|
^+ sink
|
2023-03-12 15:47:40 +03:00
|
|
|
:: if we get a naxplanation for a %cork, the publisher hasn't
|
|
|
|
:: received the OTA. The /recork timer will retry eventually.
|
|
|
|
::
|
2023-03-24 14:44:20 +03:00
|
|
|
%- %+ pe-trace msg.veb
|
2023-02-22 12:50:20 +03:00
|
|
|
=/ dat [her bone=bone message-num=message-num]
|
|
|
|
|.("sink naxplanation {<dat>}")
|
|
|
|
:: flip .bone's second bit to find referenced flow
|
|
|
|
::
|
|
|
|
=/ target=^bone (mix 0b10 bone)
|
|
|
|
=. peer-core
|
|
|
|
:: notify |message-pump that this message got naxplained
|
|
|
|
::
|
2023-03-24 14:14:31 +03:00
|
|
|
abet:(call:(abed:mu target) %near ;;(naxplanation message))
|
2023-02-22 12:50:20 +03:00
|
|
|
:: ack nack-trace message (only applied if we don't later crash)
|
2023-02-21 14:22:53 +03:00
|
|
|
::
|
2023-02-22 12:50:20 +03:00
|
|
|
(call %done ok=%.y)
|
2023-02-21 14:22:53 +03:00
|
|
|
--
|
|
|
|
--
|
2023-03-24 15:59:29 +03:00
|
|
|
:: +fi: constructor for |fine remote scry core
|
2019-12-17 09:57:11 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ fi
|
2023-03-23 12:19:54 +03:00
|
|
|
=> |%
|
2023-03-22 14:47:16 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ orm ((on @ud keen-state) lte)
|
|
|
|
:: +gum: glue together a list of $byts into one
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
:: TODO: move to hoon.hoon (see +cad in lib/tiny)
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ gum
|
|
|
|
::~/ %gum
|
|
|
|
|= biz=(list byts)
|
|
|
|
^- byts
|
|
|
|
:- (roll biz |=([[wid=@ *] acc=@] (add wid acc)))
|
|
|
|
(can 3 biz)
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ etch-peep
|
|
|
|
|= [=path num=@ud]
|
|
|
|
^- byts
|
|
|
|
?> (lth num (bex 32))
|
|
|
|
=+ (spit path)
|
|
|
|
%- gum
|
|
|
|
:~ 4^num :: fragment number
|
|
|
|
2^wid :: path size
|
|
|
|
wid^`@`pat :: namespace path
|
|
|
|
==
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ etch-keen
|
|
|
|
|= [=path num=@ud]
|
|
|
|
^- hoot ^- @
|
|
|
|
=/ sic (mod life.ames-state 16)
|
|
|
|
=/ ric (mod life.peer-state 16)
|
|
|
|
=/ syn
|
|
|
|
=/ bod (etch-peep path num)
|
|
|
|
=/ sig 64^(sign:keys dat.bod)
|
|
|
|
(can 3 sig bod ~)
|
|
|
|
(etch-shot [our her] req=& sam=| sic ric ~ syn)
|
2023-03-22 14:47:16 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ keys
|
|
|
|
|%
|
|
|
|
++ mess
|
|
|
|
|= [=ship life=@ud =path dat=$@(~ (cask))]
|
|
|
|
(jam +<)
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ sign sigh:as:crypto-core.ames-state
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ veri-fra
|
|
|
|
|= [=path fra=@ud dat=@ux sig=@]
|
|
|
|
(veri sig (jam path fra dat))
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ veri
|
|
|
|
|= [sig=@ dat=@]
|
|
|
|
^- ?
|
|
|
|
(safe:as:(com:nu:crub:crypto public-key.peer-state) sig dat)
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ meri
|
|
|
|
|= [pax=path sig=@ dat=$@(~ (cask))]
|
|
|
|
(veri sig (mess her life.peer-state pax dat))
|
2023-03-21 20:01:17 +03:00
|
|
|
--
|
|
|
|
--
|
2023-03-23 12:19:54 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
|%
|
2019-12-11 03:20:12 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
+| %helpers
|
2019-06-19 03:52:10 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ fine-core .
|
2023-03-23 14:54:22 +03:00
|
|
|
++ fi-abet abet :: XX +abet:pe, call directly instead?
|
2019-06-25 01:18:18 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
+| %entry-points
|
2023-03-21 20:01:17 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ on-hear
|
|
|
|
|= [=lane =shot]
|
|
|
|
^+ fine-core
|
|
|
|
?> =(sndr-tick.shot (mod life.peer-state 16))
|
|
|
|
::
|
|
|
|
=/ [=peep =meow] (sift-purr `@ux`content.shot)
|
|
|
|
=/ =path (slag 3 path.peep)
|
|
|
|
?. (~(has by order.scry) path)
|
|
|
|
~&(dead-response/peep fine-core)
|
|
|
|
=< ke-abet
|
|
|
|
(ke-rcv:(ke-abed:ke path) peep meow lane)
|
|
|
|
::
|
|
|
|
++ on-keen
|
|
|
|
|= [=path =^duct]
|
|
|
|
^+ fine-core
|
|
|
|
?: (~(has by order.scry) path)
|
|
|
|
~> %slog.0^leaf/"fine: dupe {(spud path)}"
|
|
|
|
ke-abet:(ke-sub:(ke-abed:ke path) duct)
|
|
|
|
=^ keen-id=@ud seq.scry [seq.scry +(seq.scry)]
|
|
|
|
=. order.scry (~(put by order.scry) path keen-id)
|
|
|
|
=. keens.scry (put:orm keens.scry keen-id *keen-state)
|
|
|
|
ke-abet:(ke-start:(ke-abed:ke path) duct)
|
|
|
|
::
|
|
|
|
++ on-pine
|
|
|
|
|= [=path =^duct]
|
|
|
|
^+ fine-core
|
|
|
|
?~ blk=(de-part:balk her rift.peer-state life.peer-state path)
|
|
|
|
!! :: XX: ???
|
2023-03-31 12:37:05 +03:00
|
|
|
=/ =wire [%fine %pine (scot %p her) path]
|
|
|
|
=/ =plea [%$ /pine `*`u.blk]
|
|
|
|
=. event-core (emit duct %pass wire %a %plea her plea)
|
2023-03-23 12:19:54 +03:00
|
|
|
fine-core
|
|
|
|
::
|
|
|
|
++ on-pine-boon
|
|
|
|
|= [=path payload=*]
|
|
|
|
^+ fine-core
|
|
|
|
?~ blk=(de-part:balk her rift.peer-state life.peer-state path)
|
|
|
|
!!
|
|
|
|
=+ ;;(case=@ud payload)
|
|
|
|
=. cas.u.blk ud+case
|
|
|
|
(on-keen (slag 3 (en-path:balk u.blk)) duct)
|
|
|
|
::
|
|
|
|
+| %internal
|
2023-03-25 18:58:03 +03:00
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ ke
|
2023-03-24 15:59:29 +03:00
|
|
|
|_ [=path keen-id=@ud keen=keen-state]
|
|
|
|
::
|
|
|
|
+| %helpers
|
2023-03-23 12:19:54 +03:00
|
|
|
::
|
|
|
|
++ ke-core .
|
2023-03-24 15:59:29 +03:00
|
|
|
++ ke-abed
|
|
|
|
|= p=^path
|
|
|
|
~| no-keen-for-path/p
|
|
|
|
=. keen-id (~(got by order.scry) p)
|
|
|
|
ke-core(path p, keen (got:orm keens.scry keen-id))
|
|
|
|
::
|
|
|
|
++ ke-abed-id
|
|
|
|
|= id=@ud
|
|
|
|
%- ke-abed
|
|
|
|
~| no-path-for-id/id
|
|
|
|
%- need
|
|
|
|
^- (unit ^path)
|
|
|
|
%- ~(rep by order.scry)
|
|
|
|
|= [[p=^path i=@ud] out=(unit ^path)]
|
|
|
|
^- (unit ^path)
|
|
|
|
?^ out out
|
|
|
|
?:(=(id i) `p ~)
|
|
|
|
::
|
2023-03-23 12:19:54 +03:00
|
|
|
++ ke-abet
|
|
|
|
^+ fine-core
|
2023-03-31 12:37:05 +03:00
|
|
|
?: =, keen
|
|
|
|
:: num-fragments is 0 when unknown (i.e. no response yet)
|
|
|
|
:: if no-one is listening, kill request
|
|
|
|
::
|
|
|
|
?| =(~ listeners.keen)
|
|
|
|
&(!=(0 num-fragments) =(num-fragments num-received))
|
|
|
|
==
|
2023-03-23 12:19:54 +03:00
|
|
|
ke-abet-gone
|
2023-03-31 12:37:05 +03:00
|
|
|
=. ke-core ke-set-wake
|
|
|
|
=. keens.scry (put:orm keens.scry keen-id keen)
|
2023-03-23 12:19:54 +03:00
|
|
|
fine-core
|
|
|
|
::
|
|
|
|
++ ke-abet-gone
|
|
|
|
=? ke-core ?=(^ next-wake.keen)
|
|
|
|
(ke-rest u.next-wake.keen)
|
|
|
|
=. keens.scry
|
|
|
|
+:(del:orm keens.scry keen-id)
|
|
|
|
=. order.scry
|
|
|
|
(~(del by order.scry) path)
|
|
|
|
fine-core
|
|
|
|
::
|
|
|
|
++ ke-full-path
|
|
|
|
:^ (scot %p her)
|
|
|
|
(scot %ud rift.peer-state)
|
|
|
|
(scot %ud life.peer-state)
|
|
|
|
path
|
|
|
|
::
|
2023-03-24 15:59:29 +03:00
|
|
|
++ ke-show
|
|
|
|
=, keen
|
|
|
|
:* nex=(lent nex)
|
|
|
|
hav=(lent hav)
|
|
|
|
num-fragments=num-fragments
|
|
|
|
num-received=num-received
|
|
|
|
next-wake=next-wake
|
|
|
|
metrics=metrics
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ ke-deq (deq want)
|
|
|
|
++ ke-gauge (ga metrics.keen (wyt:ke-deq wan.keen))
|
|
|
|
++ ke-wait |=(tim=@da (ke-pass-timer %b %wait tim))
|
|
|
|
++ ke-rest |=(tim=@da (ke-pass-timer %b %rest tim))
|
|
|
|
++ ke-etch-keen |=(frag=@ud (etch-keen ke-full-path frag))
|
|
|
|
++ ke-send
|
|
|
|
|=(=hoot ke-core(event-core (send-blob for=| her `@ux`hoot)))
|
|
|
|
::
|
2023-04-03 10:40:56 +03:00
|
|
|
++ ke-clean-up
|
|
|
|
|= [=^duct core=_event-core]
|
|
|
|
?+ duct core
|
|
|
|
[[%clay *] *] core :: XX TODO
|
|
|
|
::
|
|
|
|
[[%gall %use app=@ *] *]
|
|
|
|
?. ?=([%gall %use %spider *] -.duct)
|
|
|
|
core :: XX TODO
|
|
|
|
?> ?=([%gall %use %spider @ ship=@ %thread tid=@ *] -.duct)
|
|
|
|
=/ =cage spider-stop+!>([&7.-.duct |])
|
|
|
|
=/ poke=* [%0 %m [p q.q]:cage]
|
|
|
|
=/ =plea [%g /ge/spider poke]
|
|
|
|
(emit:core duct %pass /fine/unsub %g %plea our plea)
|
|
|
|
==
|
|
|
|
::
|
2023-03-24 15:59:29 +03:00
|
|
|
+| %entry-points
|
|
|
|
::
|
|
|
|
++ ke-start
|
|
|
|
|= =^duct
|
|
|
|
~> %slog.0^leaf/"fine: keen {(spud ke-full-path)}"
|
|
|
|
=. ke-core (ke-sub duct)
|
|
|
|
?> =(num-fragments.keen 0)
|
2023-03-31 12:37:05 +03:00
|
|
|
=/ fra=@ 1
|
|
|
|
=/ req=hoot (ke-etch-keen fra)
|
|
|
|
=/ =want [fra req last=now tries=1 skips=0]
|
2023-03-24 15:59:29 +03:00
|
|
|
=. wan.keen (cons:ke-deq *(pha ^want) want)
|
|
|
|
:: =. metrics.keen (on-sent:ke-gauge 1)
|
|
|
|
(ke-send req)
|
|
|
|
::
|
|
|
|
++ ke-rcv
|
|
|
|
|= [[=full=^path num=@ud] =meow =lane:ames]
|
|
|
|
^+ ke-core
|
|
|
|
=/ og ke-core
|
|
|
|
=. event-core (ke-update-qos %live last-contact=now)
|
|
|
|
:: handle empty
|
|
|
|
?: =(0 num.meow)
|
|
|
|
?> =(~ dat.meow)
|
|
|
|
(ke-done sig.meow ~)
|
|
|
|
:: update congestion, or fill details
|
2023-03-23 12:19:54 +03:00
|
|
|
::
|
2023-03-24 15:59:29 +03:00
|
|
|
=? ke-core =(0 num-fragments.keen)
|
|
|
|
?> =(num 1)
|
|
|
|
(ke-first-rcv meow)
|
|
|
|
::
|
|
|
|
?. ?=([@ @ @ *] full-path)
|
|
|
|
~| fine-path-too-short+full-path
|
|
|
|
!!
|
|
|
|
?. =(`her (slaw %p i.full-path))
|
|
|
|
~| fine-path-bunk-ship+[full-path her]
|
|
|
|
!!
|
|
|
|
?. =(`life.peer-state (slaw %ud i.t.t.full-path))
|
|
|
|
~| fine-path-bunk-life+[full-path life.peer-state]
|
|
|
|
!!
|
|
|
|
?. =(`rift.peer-state (slaw %ud i.t.full-path))
|
|
|
|
~| fine-path-bunk-rift+[full-path rift.peer-state]
|
|
|
|
!!
|
|
|
|
?. (veri-fra:keys [full-path num [dat sig]:meow])
|
|
|
|
~| fine-purr-fail-signature/num^`@ux`sig.meow
|
|
|
|
~| life.peer-state
|
|
|
|
!!
|
|
|
|
::
|
|
|
|
=^ found=? ke-core (ke-on-ack num)
|
|
|
|
?. found
|
|
|
|
(ke-fast-retransmit:og num)
|
|
|
|
=: hav.keen [[num meow] hav.keen]
|
|
|
|
num-received.keen +(num-received.keen)
|
|
|
|
==
|
|
|
|
?. =(num-fragments num-received):keen
|
|
|
|
ke-continue
|
|
|
|
(ke-done [sig dat]:ke-sift-full)
|
2023-03-23 12:19:54 +03:00
|
|
|
::
|
2023-03-24 15:59:29 +03:00
|
|
|
++ ke-sub
|
|
|
|
|=(=^duct ke-core(listeners.keen (~(put in listeners.keen) duct)))
|
|
|
|
:: scry is autocancelled in +ke-abet if no more listeners
|
|
|
|
::
|
|
|
|
++ ke-unsub
|
2023-03-31 16:45:51 +03:00
|
|
|
|= [=^duct all=?]
|
|
|
|
?. |(all (~(has in listeners.keen) duct))
|
|
|
|
%. ke-core
|
|
|
|
:: XX TODO use trace, add fine flags? reuse ames?
|
|
|
|
(slog leaf/"fine: {<duct>} not a listener for {<path>}" ~)
|
2023-04-03 10:18:51 +03:00
|
|
|
=? event-core all
|
|
|
|
:: notify all listeners by inspecting their
|
|
|
|
:: ducts and sending appropiate clean up moves
|
|
|
|
::
|
2023-04-03 10:40:56 +03:00
|
|
|
(~(rep in listeners.keen) ke-clean-up)
|
2023-03-31 16:45:51 +03:00
|
|
|
:: TODO: use ev-trace
|
|
|
|
%- (slog leaf/"fine: deleting {<path>}" ~)
|
|
|
|
ke-core(listeners.keen ?:(all ~ (~(del in listeners.keen) duct)))
|
2023-03-24 15:59:29 +03:00
|
|
|
::
|
|
|
|
+| %implementation
|
2023-03-23 12:19:54 +03:00
|
|
|
::
|
|
|
|
++ ke-on-ack
|
|
|
|
=| marked=(list want)
|
|
|
|
|= fra=@ud
|
|
|
|
^- [? _ke-core]
|
|
|
|
=; [[found=? cor=_ke-core] wan=(pha want)]
|
|
|
|
?. found
|
|
|
|
[found ke-core]
|
|
|
|
[found cor(wan.keen wan)]
|
|
|
|
%^ (dip-left:ke-deq ,[found=? cor=_ke-core]) wan.keen
|
|
|
|
[| ke-core]
|
|
|
|
|= [[found=? cor=_ke-core] =want]
|
|
|
|
^- [(unit _want) stop=? [found=? cor=_ke-core]]
|
|
|
|
=. ke-core cor
|
|
|
|
?: =(fra fra.want)
|
|
|
|
=. metrics.keen
|
|
|
|
(on-ack:ke-gauge +>.want)
|
|
|
|
[~ %.y %.y ke-core]
|
|
|
|
=. skips.want +(skips.want)
|
|
|
|
=^ resend=? metrics.keen
|
|
|
|
(on-skipped-packet:ke-gauge +>.want)
|
|
|
|
?. resend
|
|
|
|
[`want %.n found ke-core]
|
|
|
|
=. tries.want +(tries.want)
|
|
|
|
=. last-sent.want now
|
|
|
|
=. ke-core (ke-send hoot.want)
|
|
|
|
[`want %.n found ke-core]
|
|
|
|
::
|
|
|
|
++ ke-done
|
|
|
|
|= [sig=@ data=$@(~ (cask))]
|
|
|
|
?> (meri:keys ke-full-path sig data)
|
|
|
|
~> %slog.0^leaf/"fine: done {(spud ke-full-path)}"
|
|
|
|
=/ listeners ~(tap in listeners.keen)
|
|
|
|
=/ dat=(unit (cask))
|
|
|
|
?~(data ~ `data)
|
|
|
|
|- ^+ ke-core
|
|
|
|
?~ listeners
|
|
|
|
ke-core
|
|
|
|
=. event-core
|
|
|
|
(emit i.listeners %give %tune ke-full-path sig dat)
|
|
|
|
$(listeners t.listeners)
|
|
|
|
::
|
|
|
|
++ ke-first-rcv
|
|
|
|
|= =meow
|
|
|
|
^+ ke-core
|
|
|
|
=- ke-core(keen -)
|
|
|
|
::
|
|
|
|
=/ paz=(list want)
|
|
|
|
%+ turn (gulf 1 num.meow)
|
|
|
|
|= fra=@ud
|
|
|
|
^- want
|
|
|
|
[fra (ke-etch-keen fra) now 0 0]
|
|
|
|
::
|
|
|
|
%_ keen
|
|
|
|
num-fragments num.meow
|
|
|
|
nex (tail paz)
|
|
|
|
==
|
|
|
|
:: +ke-continue: send packets based on normal congestion flow
|
|
|
|
::
|
|
|
|
++ ke-continue
|
|
|
|
=| inx=@ud
|
|
|
|
=| sent=(list @ud)
|
|
|
|
=/ max num-slots:ke-gauge
|
|
|
|
|- ^+ ke-core
|
|
|
|
?: |(=(~ nex.keen) =(inx max))
|
|
|
|
ke-core
|
|
|
|
=^ =want nex.keen nex.keen
|
|
|
|
=. last-sent.want now
|
|
|
|
=. tries.want +(tries.want)
|
|
|
|
=. wan.keen (snoc:ke-deq wan.keen want)
|
|
|
|
:: =. metrics.keen (on-sent:ke-gauge 1)
|
|
|
|
=. ke-core (ke-send hoot.want)
|
|
|
|
$(inx +(inx))
|
|
|
|
::
|
|
|
|
++ ke-sift-full
|
|
|
|
=, keen
|
|
|
|
~| %frag-mismatch
|
|
|
|
~| have/num-received
|
|
|
|
~| need/num-fragments
|
|
|
|
~| path/path
|
|
|
|
?> =(num-fragments num-received)
|
|
|
|
?> =((lent hav) num-received)
|
|
|
|
(sift-roar num-fragments hav)
|
|
|
|
::
|
2023-03-24 15:59:29 +03:00
|
|
|
++ ke-update-qos
|
|
|
|
|= new=qos
|
|
|
|
^+ event-core
|
|
|
|
=^ old qos.peer-state [qos.peer-state new]
|
|
|
|
?~ text=(qos-update-text her old new kay.veb ships.bug.channel)
|
|
|
|
event-core
|
|
|
|
:: print message
|
2023-03-23 12:19:54 +03:00
|
|
|
::
|
2023-03-24 15:59:29 +03:00
|
|
|
(emit duct %pass /qos %d %flog %text u.text)
|
2023-03-23 12:19:54 +03:00
|
|
|
::
|
|
|
|
++ ke-fast-retransmit
|
|
|
|
|= fra=@ud
|
|
|
|
=; [cor=_ke-core wants=(pha want)]
|
|
|
|
cor(wan.keen wants)
|
|
|
|
%^ (dip-left:ke-deq ,cor=_ke-core) wan.keen
|
|
|
|
ke-core
|
|
|
|
|= [cor=_ke-core =want]
|
|
|
|
^- [(unit ^want) stop=? cor=_ke-core]
|
|
|
|
?. (lte fra.want fra)
|
|
|
|
[`want & cor]
|
|
|
|
?: (gth (next-expiry:ke-gauge:cor +>.want) now)
|
|
|
|
[`want & cor]
|
|
|
|
=. last-sent.want now
|
|
|
|
=. cor (ke-send:cor hoot.want)
|
|
|
|
[`want | cor]
|
|
|
|
::
|
|
|
|
++ ke-pass-timer
|
|
|
|
|= =note
|
2023-03-24 15:59:29 +03:00
|
|
|
=/ =wire (welp /fine/behn/wake/(scot %p her) path)
|
|
|
|
ke-core(event-core (emit unix-duct.ames-state %pass wire note))
|
2023-03-23 12:19:54 +03:00
|
|
|
::
|
|
|
|
++ ke-set-wake
|
|
|
|
^+ ke-core
|
|
|
|
=/ next-wake=(unit @da)
|
|
|
|
=/ want=(unit want) (peek-left:ke-deq wan.keen)
|
|
|
|
?~ want ~
|
|
|
|
`(next-expiry:ke-gauge +>:u.want)
|
|
|
|
?: =(next-wake next-wake.keen)
|
|
|
|
ke-core
|
|
|
|
=? ke-core !=(~ next-wake.keen)
|
|
|
|
=/ old (need next-wake.keen)
|
|
|
|
=. next-wake.keen ~
|
|
|
|
(ke-rest old)
|
|
|
|
=? ke-core ?=(^ next-wake)
|
|
|
|
=. next-wake.keen next-wake
|
|
|
|
(ke-wait u.next-wake)
|
|
|
|
ke-core
|
|
|
|
:: +ke-take-wake: handle request packet timeout
|
|
|
|
::
|
|
|
|
++ ke-take-wake
|
|
|
|
^+ ke-core
|
|
|
|
=. next-wake.keen ~
|
|
|
|
=. event-core %- ke-update-qos
|
|
|
|
=/ expiry=@da (add ~s30 last-contact.qos.peer-state)
|
|
|
|
=? -.qos.peer-state
|
|
|
|
(gte now expiry)
|
|
|
|
%dead
|
|
|
|
qos.peer-state
|
|
|
|
:: expire direct route
|
|
|
|
=? route.peer-state
|
|
|
|
?& ?=(%dead -.qos.peer-state)
|
|
|
|
?=(^ route.peer-state)
|
|
|
|
direct.u.route.peer-state
|
|
|
|
!=(%czar (clan:title her))
|
|
|
|
==
|
|
|
|
route.peer-state(direct.u %.n)
|
|
|
|
=. metrics.keen on-timeout:ke-gauge
|
|
|
|
=^ want=(unit want) wan.keen
|
|
|
|
(pop-left:ke-deq wan.keen)
|
|
|
|
~| %took-wake-for-empty-want
|
|
|
|
?> ?=(^ want)
|
|
|
|
=: tries.u.want +(tries.u.want)
|
|
|
|
last-sent.u.want now
|
|
|
|
==
|
|
|
|
=. wan.keen (cons:ke-deq wan.keen u.want)
|
|
|
|
(ke-send hoot.u.want)
|
2023-03-21 20:01:17 +03:00
|
|
|
--
|
|
|
|
--
|
2023-03-24 15:59:29 +03:00
|
|
|
:: +ga: constructor for |pump-gauge congestion control core
|
2019-07-28 10:50:32 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ ga
|
|
|
|
|= [pump-metrics live-packets=@ud]
|
|
|
|
=* ship her
|
|
|
|
=* now now.channel
|
|
|
|
=* metrics +<-
|
|
|
|
|%
|
|
|
|
+| %helpers
|
|
|
|
::
|
|
|
|
++ ga-trace
|
|
|
|
|= [verb=? print=(trap tape)]
|
|
|
|
^+ same
|
|
|
|
(trace verb ship ships.bug.channel print)
|
|
|
|
:: +next-expiry: when should a newly sent fresh packet time out?
|
|
|
|
::
|
|
|
|
:: Use rtt + 4*sigma, where sigma is the mean deviation of rtt.
|
|
|
|
:: This should make it unlikely that a packet would time out
|
|
|
|
:: from a delay, as opposed to an actual packet loss.
|
|
|
|
::
|
|
|
|
++ next-expiry
|
|
|
|
|= packet-state
|
|
|
|
^- @da
|
|
|
|
(add last-sent rto)
|
|
|
|
:: +num-slots: how many packets can we send right now?
|
|
|
|
::
|
|
|
|
++ num-slots
|
|
|
|
^- @ud
|
|
|
|
(sub-safe cwnd live-packets)
|
|
|
|
::
|
|
|
|
:: +clamp-rto: apply min and max to an .rto value
|
|
|
|
::
|
|
|
|
++ clamp-rto
|
|
|
|
|= rto=@dr
|
|
|
|
^+ rto
|
|
|
|
(min ~s5 (max ^~((div ~s1 5)) rto))
|
|
|
|
:: +in-slow-start: %.y iff we're in "slow-start" mode
|
|
|
|
::
|
|
|
|
++ in-slow-start
|
|
|
|
^- ?
|
|
|
|
(lth cwnd ssthresh)
|
|
|
|
:: +in-recovery: %.y iff we're recovering from a skipped packet
|
|
|
|
::
|
|
|
|
:: We finish recovering when .live-packets finally dips back
|
|
|
|
:: down to .cwnd.
|
|
|
|
::
|
|
|
|
++ in-recovery
|
|
|
|
^- ?
|
|
|
|
(gth live-packets cwnd)
|
|
|
|
:: +sub-safe: subtract with underflow protection
|
|
|
|
::
|
|
|
|
++ sub-safe
|
|
|
|
|= [a=@ b=@]
|
|
|
|
^- @
|
|
|
|
?:((lte a b) 0 (sub a b))
|
|
|
|
:: +show: produce a printable version of .metrics
|
2019-08-06 02:05:40 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ show
|
|
|
|
=/ ms (div ~s1 1.000)
|
|
|
|
::
|
|
|
|
:* rto=(div rto ms)
|
|
|
|
rtt=(div rtt ms)
|
|
|
|
rttvar=(div rttvar ms)
|
|
|
|
ssthresh=ssthresh
|
|
|
|
cwnd=cwnd
|
|
|
|
num-live=live-packets
|
|
|
|
counter=counter
|
|
|
|
==
|
2019-08-08 07:57:04 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
+| %entry-points
|
|
|
|
:: +on-ack: adjust metrics based on a packet getting acknowledged
|
2019-08-08 07:57:04 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ on-ack
|
|
|
|
|= =packet-state
|
|
|
|
^- pump-metrics
|
|
|
|
::
|
|
|
|
=. counter +(counter)
|
|
|
|
:: if below congestion threshold, add 1; else, add avg 1 / cwnd
|
|
|
|
::
|
|
|
|
=. cwnd
|
|
|
|
?: in-slow-start
|
|
|
|
+(cwnd)
|
|
|
|
(add cwnd !=(0 (mod (mug now) cwnd)))
|
|
|
|
:: if this was a re-send, don't adjust rtt or downstream state
|
|
|
|
::
|
|
|
|
?: (gth tries.packet-state 1)
|
|
|
|
metrics
|
|
|
|
:: rtt-datum: new rtt measurement based on packet roundtrip
|
|
|
|
::
|
|
|
|
=/ rtt-datum=@dr (sub-safe now last-sent.packet-state)
|
|
|
|
:: rtt-error: difference between this measurement and expected
|
|
|
|
::
|
|
|
|
=/ rtt-error=@dr
|
|
|
|
?: (gte rtt-datum rtt)
|
|
|
|
(sub rtt-datum rtt)
|
|
|
|
(sub rtt rtt-datum)
|
|
|
|
:: exponential weighting ratio for .rtt and .rttvar
|
|
|
|
::
|
|
|
|
=. rtt (div (add rtt-datum (mul rtt 7)) 8)
|
|
|
|
=. rttvar (div (add rtt-error (mul rttvar 7)) 8)
|
|
|
|
=. rto (clamp-rto (add rtt (mul 4 rttvar)))
|
|
|
|
::
|
|
|
|
%. metrics
|
|
|
|
%+ ga-trace ges.veb |.
|
|
|
|
"ack update {<show rtt-datum=rtt-datum rtt-error=rtt-error>}"
|
|
|
|
:: +on-skipped-packet: handle misordered ack
|
2022-03-15 00:04:14 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ on-skipped-packet
|
|
|
|
|= packet-state
|
|
|
|
^- [resend=? pump-metrics]
|
|
|
|
::
|
|
|
|
=/ resend=? &((lte tries 1) |(in-recovery (gte skips 3)))
|
|
|
|
:- resend
|
|
|
|
::
|
|
|
|
=? cwnd !in-recovery (max 2 (div cwnd 2))
|
|
|
|
%- %+ ga-trace snd.veb
|
|
|
|
|.("skip {<resend=resend in-recovery=in-recovery show>}")
|
|
|
|
metrics
|
|
|
|
:: +on-timeout: (re)enter slow-start mode on packet loss
|
|
|
|
::
|
|
|
|
++ on-timeout
|
|
|
|
^- pump-metrics
|
|
|
|
::
|
|
|
|
%- (ga-trace ges.veb |.("timeout update {<show>}"))
|
|
|
|
=: ssthresh (max 1 (div cwnd 2))
|
|
|
|
cwnd 1
|
|
|
|
rto (clamp-rto (mul rto 2))
|
2022-02-12 04:30:40 +03:00
|
|
|
==
|
2023-03-21 20:01:17 +03:00
|
|
|
metrics
|
2022-02-12 04:30:40 +03:00
|
|
|
--
|
2022-06-28 13:48:07 +03:00
|
|
|
--
|
2019-07-28 10:50:32 +03:00
|
|
|
--
|
2019-06-05 07:36:10 +03:00
|
|
|
--
|
2023-02-21 14:22:53 +03:00
|
|
|
:: adult ames, after metamorphosis from larva
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=| =ames-state
|
|
|
|
|= [now=@da eny=@ rof=roof]
|
|
|
|
=* ames-gate .
|
|
|
|
=* veb veb.bug.ames-state
|
|
|
|
|%
|
|
|
|
:: +call: handle request $task
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ call
|
|
|
|
|= [=duct dud=(unit goof) wrapped-task=(hobo task)]
|
|
|
|
^- [(list move) _ames-gate]
|
2019-05-29 05:56:05 +03:00
|
|
|
::
|
2023-02-21 14:32:33 +03:00
|
|
|
=/ =task ((harden task) wrapped-task)
|
|
|
|
=/ event-core (ev [now eny rof] duct ames-state)
|
2019-05-29 05:56:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=^ moves ames-state
|
|
|
|
=< abet
|
|
|
|
:: handle error notifications
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?^ dud
|
|
|
|
?+ -.task
|
|
|
|
(on-crud:event-core -.task tang.u.dud)
|
|
|
|
%hear (on-hear:event-core lane.task blob.task dud)
|
|
|
|
==
|
2019-06-19 02:33:53 +03:00
|
|
|
::
|
|
|
|
?- -.task
|
2023-02-21 14:22:53 +03:00
|
|
|
%born on-born:event-core
|
|
|
|
%hear (on-hear:event-core [lane blob ~]:task)
|
|
|
|
%heed (on-heed:event-core ship.task)
|
|
|
|
%init on-init:event-core
|
|
|
|
%jilt (on-jilt:event-core ship.task)
|
|
|
|
%prod (on-prod:event-core ships.task)
|
|
|
|
%sift (on-sift:event-core ships.task)
|
2023-03-17 16:05:38 +03:00
|
|
|
%snub (on-snub:event-core [form ships]:task)
|
2023-02-21 14:22:53 +03:00
|
|
|
%spew (on-spew:event-core veb.task)
|
|
|
|
%cong (on-cong:event-core [msg mem]:task)
|
|
|
|
%stir (on-stir:event-core arg.task)
|
|
|
|
%trim on-trim:event-core
|
|
|
|
%vega on-vega:event-core
|
|
|
|
%plea (on-plea:event-core [ship plea]:task)
|
|
|
|
%cork (on-cork:event-core ship.task)
|
|
|
|
%kroc (on-kroc:event-core dry.task)
|
2019-05-29 05:56:05 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
%pine (on-pine:event-core +.task)
|
|
|
|
%keen (on-keen:event-core +.task)
|
2023-04-01 10:20:49 +03:00
|
|
|
%yawn (on-cancel-scry:event-core | +.task)
|
|
|
|
%wham (on-cancel-scry:event-core & +.task)
|
2019-12-02 23:20:57 +03:00
|
|
|
==
|
2019-06-02 01:16:41 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
[moves ames-gate]
|
|
|
|
:: +take: handle response $sign
|
2019-05-29 05:56:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ take
|
|
|
|
|= [=wire =duct dud=(unit goof) =sign]
|
|
|
|
^- [(list move) _ames-gate]
|
|
|
|
?^ dud
|
|
|
|
~|(%ames-take-dud (mean tang.u.dud))
|
2019-12-02 23:20:57 +03:00
|
|
|
::
|
2023-02-21 14:32:33 +03:00
|
|
|
=/ event-core (ev [now eny rof] duct ames-state)
|
2019-12-02 23:20:57 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
=^ moves ames-state
|
|
|
|
=< abet
|
|
|
|
?- sign
|
|
|
|
[@ %done *] (on-take-done:event-core wire error.sign)
|
|
|
|
[@ %boon *] (on-take-boon:event-core wire payload.sign)
|
2019-05-29 05:56:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
[%behn %wake *] (on-take-wake:event-core wire error.sign)
|
2019-05-29 05:56:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
[%jael %turf *] (on-take-turf:event-core turfs.sign)
|
|
|
|
[%jael %private-keys *] (on-priv:event-core [life vein]:sign)
|
|
|
|
[%jael %public-keys *] (on-publ:event-core wire public-keys-result.sign)
|
2019-12-02 23:20:57 +03:00
|
|
|
==
|
2019-12-10 10:14:06 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
[moves ames-gate]
|
|
|
|
:: +stay: extract state before reload
|
2019-05-29 05:56:05 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ stay [%13 %adult ames-state]
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +load: load in old state after reload
|
2019-06-01 06:05:21 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ load
|
|
|
|
=< |= $= old-state
|
2023-03-21 20:01:17 +03:00
|
|
|
$% [%13 ^ames-state]
|
2023-02-21 14:22:53 +03:00
|
|
|
==
|
|
|
|
^+ ames-gate
|
2023-03-21 20:01:17 +03:00
|
|
|
?> ?=(%13 -.old-state)
|
2023-02-21 14:22:53 +03:00
|
|
|
ames-gate(ames-state +.old-state)
|
|
|
|
:: all state transitions are called from larval ames
|
2021-08-28 22:39:57 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
|%
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ state-4-to-5
|
|
|
|
|= ames-state=ames-state-4
|
|
|
|
^- ames-state-5
|
|
|
|
=. peers.ames-state
|
|
|
|
%- ~(run by peers.ames-state)
|
|
|
|
|= ship-state=ship-state-4
|
|
|
|
?. ?=(%known -.ship-state)
|
|
|
|
ship-state
|
|
|
|
=. snd.ship-state
|
|
|
|
%- ~(run by snd.ship-state)
|
|
|
|
|= =message-pump-state
|
|
|
|
=. num-live.metrics.packet-pump-state.message-pump-state
|
|
|
|
~(wyt in live.packet-pump-state.message-pump-state)
|
|
|
|
message-pump-state
|
|
|
|
ship-state
|
|
|
|
ames-state
|
2019-06-01 01:35:06 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ state-5-to-6
|
|
|
|
|= ames-state=ames-state-5
|
|
|
|
^- ames-state-6
|
|
|
|
:_ +.ames-state
|
|
|
|
%- ~(rut by peers.ames-state)
|
|
|
|
|= [=ship ship-state=ship-state-5]
|
|
|
|
^- ship-state-6
|
|
|
|
?. ?=(%known -.ship-state)
|
|
|
|
ship-state
|
|
|
|
=/ peer-state=peer-state-5 +.ship-state
|
|
|
|
=/ =rift
|
|
|
|
:: harcoded because %jael doesn't have data about comets
|
2019-06-01 06:05:21 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?: ?=(%pawn (clan:title ship)) 0
|
|
|
|
;; @ud
|
|
|
|
=< q.q %- need %- need
|
|
|
|
(rof ~ %j `beam`[[our %rift %da now] /(scot %p ship)])
|
|
|
|
:- -.ship-state
|
|
|
|
:_ +.peer-state
|
|
|
|
=, -.peer-state
|
|
|
|
[symmetric-key life rift public-key sponsor]
|
2019-11-27 21:22:20 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ state-6-to-7
|
|
|
|
|= ames-state=ames-state-6
|
|
|
|
^- ames-state-7
|
|
|
|
:_ +.ames-state
|
|
|
|
%- ~(run by peers.ames-state)
|
|
|
|
|= ship-state=ship-state-6
|
2023-03-17 16:05:38 +03:00
|
|
|
^- ship-state-7
|
2023-02-21 14:22:53 +03:00
|
|
|
?. ?=(%known -.ship-state)
|
|
|
|
ship-state
|
|
|
|
:- %known
|
2023-03-17 16:05:38 +03:00
|
|
|
^- peer-state-7
|
2023-02-21 14:22:53 +03:00
|
|
|
:- +<.ship-state
|
|
|
|
[route qos ossuary snd rcv nax heeds ~ ~ ~]:ship-state
|
2019-11-27 21:22:20 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ state-7-to-8
|
|
|
|
|= ames-state=ames-state-7
|
|
|
|
^- ames-state-8
|
|
|
|
=, ames-state
|
|
|
|
:* peers unix-duct life crypto-core bug
|
|
|
|
*(set wire)
|
|
|
|
==
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ state-8-to-9
|
|
|
|
|= ames-state=ames-state-8
|
|
|
|
^- ames-state-9
|
|
|
|
=, ames-state
|
|
|
|
:* peers unix-duct life crypto-core bug corks
|
|
|
|
*(set ship)
|
|
|
|
==
|
2019-06-02 01:16:41 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ state-9-to-10
|
|
|
|
|= ames-state=ames-state-9
|
|
|
|
^- ames-state-10
|
|
|
|
=, ames-state
|
|
|
|
:* peers unix-duct life crypto-core
|
|
|
|
%= bug.ames-state
|
|
|
|
veb [&1 &2 &3 &4 &5 &6 |6 %.n]:veb.bug
|
2019-06-01 01:35:06 +03:00
|
|
|
==
|
2023-02-21 14:22:53 +03:00
|
|
|
corks snub
|
|
|
|
==
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ state-10-to-11
|
|
|
|
|= ames-state=ames-state-10
|
2023-03-17 16:05:38 +03:00
|
|
|
^- ames-state-11
|
2023-02-21 14:22:53 +03:00
|
|
|
=, ames-state
|
|
|
|
:* peers unix-duct life crypto-core bug corks snub
|
|
|
|
:: 5 messages and 100Kb of data outstanding
|
2019-06-02 01:16:41 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
[msg=5 mem=100.000]
|
|
|
|
==
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-03-17 16:05:38 +03:00
|
|
|
++ state-11-to-12
|
|
|
|
|= ames-state=ames-state-11
|
2023-03-21 20:01:17 +03:00
|
|
|
^- ames-state-12
|
|
|
|
:_ =, ames-state
|
|
|
|
:* unix-duct
|
|
|
|
life
|
|
|
|
crypto-core::=(nol:nu:crub:crypto sec:ex:crypto-core.ames-state)
|
|
|
|
bug
|
|
|
|
[%deny snub]
|
|
|
|
cong
|
|
|
|
==
|
|
|
|
^- (map ship ship-state-12)
|
2023-03-17 16:05:38 +03:00
|
|
|
%- ~(run by peers.ames-state)
|
|
|
|
|= ship-state=ship-state-7
|
2023-03-21 20:01:17 +03:00
|
|
|
^- ship-state-12
|
2023-03-17 16:05:38 +03:00
|
|
|
?. ?=(%known -.ship-state)
|
|
|
|
ship-state
|
|
|
|
%= ship-state
|
|
|
|
+> [route qos ossuary snd rcv nax heeds closing corked]:+>.ship-state
|
|
|
|
==
|
2019-09-27 14:45:22 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ state-12-to-13
|
|
|
|
|= old=ames-state-12
|
|
|
|
^- ^ames-state
|
|
|
|
=+ !< =rift
|
|
|
|
q:(need (need (rof ~ %j `beam`[[our %rift %da now] /(scot %p our)])))
|
|
|
|
:* peers=(~(run by peers.old) ship-state-12-to-13)
|
|
|
|
unix-duct.old
|
|
|
|
life.old
|
|
|
|
rift
|
|
|
|
crypto-core=(nol:nu:crub:crypto sec:ex:crypto-core.old)
|
|
|
|
bug.old
|
|
|
|
snub.old
|
|
|
|
cong.old
|
|
|
|
==
|
2019-09-27 14:45:22 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
++ ship-state-12-to-13
|
|
|
|
|= old=ship-state-12
|
|
|
|
^- ship-state
|
|
|
|
?: ?=(%alien -.old)
|
|
|
|
old(heeds [heeds.old ~ ~])
|
|
|
|
old(corked [corked.old *scry-state])
|
2019-10-05 06:21:29 +03:00
|
|
|
::
|
2019-06-01 01:35:06 +03:00
|
|
|
--
|
2023-02-21 14:22:53 +03:00
|
|
|
:: +scry: dereference namespace
|
2019-06-01 06:05:21 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
++ scry
|
|
|
|
^- roon
|
|
|
|
|= [lyc=gang car=term bem=beam]
|
|
|
|
^- (unit (unit cage))
|
|
|
|
=* ren car
|
|
|
|
=* why=shop &/p.bem
|
|
|
|
=* syd q.bem
|
|
|
|
=* lot=coin $/r.bem
|
|
|
|
=* tyl s.bem
|
2019-06-01 03:50:22 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
::TODO don't special-case whey scry
|
2019-06-01 06:05:21 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?: &(=(%$ ren) =(tyl /whey))
|
|
|
|
=/ maz=(list mass)
|
|
|
|
=+ [known alien]=(skid ~(val by peers.ames-state) |=(^ =(%known +<-)))
|
|
|
|
:~ peers-known+&+known
|
|
|
|
peers-alien+&+alien
|
2019-09-27 14:45:22 +03:00
|
|
|
==
|
2023-02-21 14:22:53 +03:00
|
|
|
``mass+!>(maz)
|
|
|
|
:: only respond for the local identity, %$ desk, current timestamp
|
2019-09-27 14:45:22 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?. ?& =(&+our why)
|
|
|
|
=([%$ %da now] lot)
|
|
|
|
=(%$ syd)
|
|
|
|
==
|
|
|
|
?. for.veb.bug.ames-state ~
|
|
|
|
~> %slog.0^leaf/"ames: scry-fail {<why=why lot=lot now=now syd=syd>}"
|
|
|
|
~
|
|
|
|
:: /ax/protocol/version @
|
|
|
|
:: /ax/peers (map ship ?(%alien %known))
|
|
|
|
:: /ax/peers/[ship] ship-state
|
|
|
|
:: /ax/peers/[ship]/forward-lane (list lane)
|
|
|
|
:: /ax/bones/[ship] [snd=(set bone) rcv=(set bone)]
|
|
|
|
:: /ax/snd-bones/[ship]/[bone] vase
|
2023-03-17 16:05:38 +03:00
|
|
|
:: /ax/snubbed (?(%allow %deny) (list ship))
|
2023-03-21 20:01:17 +03:00
|
|
|
:: /ax/fine/hunk/[path/...] (list @ux) scry response fragments
|
2019-10-02 09:21:05 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
?. ?=(%x ren) ~
|
2023-03-21 20:01:17 +03:00
|
|
|
=> .(tyl `(pole knot)`tyl)
|
2023-02-21 14:22:53 +03:00
|
|
|
?+ tyl ~
|
|
|
|
[%protocol %version ~]
|
|
|
|
``noun+!>(protocol-version)
|
2019-12-11 21:55:16 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
[%peers ~]
|
|
|
|
:^ ~ ~ %noun
|
|
|
|
!> ^- (map ship ?(%alien %known))
|
|
|
|
(~(run by peers.ames-state) head)
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
[%peers her=@ req=*]
|
|
|
|
=/ who (slaw %p her.tyl)
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ who [~ ~]
|
|
|
|
=/ peer (~(get by peers.ames-state) u.who)
|
2023-03-21 20:01:17 +03:00
|
|
|
?+ req.tyl [~ ~]
|
2023-02-21 14:22:53 +03:00
|
|
|
~
|
|
|
|
?~ peer
|
|
|
|
[~ ~]
|
|
|
|
``noun+!>(u.peer)
|
2019-11-27 21:22:20 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
[%forward-lane ~]
|
2019-06-09 20:32:15 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: this duplicates the routing hack from +send-blob:event-core
|
|
|
|
:: so long as neither the peer nor the peer's sponsoring galaxy is us,
|
|
|
|
:: and the peer has been reached recently:
|
2019-06-09 20:32:15 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:: - no route to the peer, or peer has not been contacted recently:
|
|
|
|
:: send to the peer's sponsoring galaxy
|
|
|
|
:: - direct route to the peer: use that
|
|
|
|
:: - indirect route to the peer: send to both that route and the
|
|
|
|
:: the peer's sponsoring galaxy
|
2019-06-09 20:32:15 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
:^ ~ ~ %noun
|
|
|
|
!> ^- (list lane)
|
2023-03-21 20:01:17 +03:00
|
|
|
?: =(our u.who)
|
2023-02-21 14:22:53 +03:00
|
|
|
~
|
2023-03-21 20:01:17 +03:00
|
|
|
?. ?=([~ %known *] peer)
|
|
|
|
=/ sax (rof ~ %j `beam`[[our %saxo %da now] /(scot %p u.who)])
|
|
|
|
?. ?=([~ ~ *] sax)
|
|
|
|
~
|
|
|
|
=/ gal (rear ;;((list ship) q.q.u.u.sax))
|
|
|
|
?: =(our gal)
|
|
|
|
~
|
|
|
|
[%& gal]~
|
2023-02-21 14:22:53 +03:00
|
|
|
=; zar=(trap (list lane))
|
|
|
|
?: (lth last-contact.qos.u.peer (sub now ~h1))
|
|
|
|
$:zar
|
|
|
|
?~ route.u.peer $:zar
|
|
|
|
=* rot u.route.u.peer
|
|
|
|
?:(direct.rot [lane.rot ~] [lane.rot $:zar])
|
2019-06-09 20:32:15 +03:00
|
|
|
::
|
2023-02-21 14:22:53 +03:00
|
|
|
|. ^- (list lane)
|
|
|
|
?: ?=(%czar (clan:title sponsor.u.peer))
|
|
|
|
?: =(our sponsor.u.peer)
|
|
|
|
~
|
|
|
|
[%& sponsor.u.peer]~
|
|
|
|
=/ next (~(get by peers.ames-state) sponsor.u.peer)
|
|
|
|
?. ?=([~ %known *] next)
|
|
|
|
~
|
|
|
|
$(peer next)
|
|
|
|
==
|
2019-06-09 20:32:15 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
[%bones her=@ ~]
|
|
|
|
=/ who (slaw %p her.tyl)
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ who [~ ~]
|
|
|
|
=/ per (~(get by peers.ames-state) u.who)
|
|
|
|
?. ?=([~ %known *] per) [~ ~]
|
|
|
|
=/ res
|
|
|
|
=, u.per
|
|
|
|
[snd=~(key by snd) rcv=~(key by rcv)]
|
|
|
|
``noun+!>(res)
|
2019-05-29 01:05:59 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
[%snd-bones her=@ bon=@ ~]
|
|
|
|
=/ who (slaw %p her.tyl)
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ who [~ ~]
|
2023-03-21 20:01:17 +03:00
|
|
|
=/ ost (slaw %ud bon.tyl)
|
2023-02-21 14:22:53 +03:00
|
|
|
?~ ost [~ ~]
|
|
|
|
=/ per (~(get by peers.ames-state) u.who)
|
|
|
|
?. ?=([~ %known *] per) [~ ~]
|
|
|
|
=/ mps (~(get by snd.u.per) u.ost)
|
|
|
|
?~ mps [~ ~]
|
|
|
|
=/ res
|
|
|
|
u.mps
|
|
|
|
``noun+!>(!>(res))
|
2019-06-19 03:38:25 +03:00
|
|
|
::
|
2023-03-17 16:05:38 +03:00
|
|
|
[%snubbed ~]
|
|
|
|
``noun+!>([form.snub.ames-state ~(tap in ships.snub.ames-state)])
|
2019-06-19 03:38:25 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
[%fine %hunk lop=@t len=@t pax=^]
|
|
|
|
::TODO separate endpoint for the full message (instead of packet list)
|
|
|
|
:: .pax is expected to be a scry path of the shape /vc/desk/rev/etc,
|
|
|
|
:: so we need to give it the right shape
|
2019-06-19 03:38:25 +03:00
|
|
|
::
|
2023-03-21 20:01:17 +03:00
|
|
|
?~ blk=(de-path-soft:balk pax.tyl) ~
|
|
|
|
=+ nom=(en-roof:balk u.blk)
|
|
|
|
~| nom
|
2023-03-24 14:14:31 +03:00
|
|
|
|^
|
2023-03-23 20:51:19 +03:00
|
|
|
=/ van ?@(vis.nom (end 3 vis.nom) way.vis.nom)
|
|
|
|
?+ van ~
|
|
|
|
%c
|
|
|
|
=+ pem=(rof lyc nom(vis %cp))
|
|
|
|
?. ?=(^ pem) ~
|
|
|
|
?. ?=(^ u.pem) ~
|
|
|
|
~| u.u.pem
|
|
|
|
=+ per=!<([r=dict:clay w=dict:clay] q.u.u.pem)
|
|
|
|
?. =([%black ~ ~] rul.r.per) ~
|
|
|
|
(en-hunk (rof lyc nom))
|
2019-06-19 03:38:25 +03:00
|
|
|
::
|
2023-03-23 20:51:19 +03:00
|
|
|
%g
|
|
|
|
=/ kyr ?@(vis.nom (rsh 3 vis.nom) car.vis.nom)
|
|
|
|
%- en-hunk
|
|
|
|
?+ kyr ~
|
|
|
|
%a (rof lyc nom)
|
|
|
|
==
|
2023-03-21 20:01:17 +03:00
|
|
|
==
|
2023-03-23 20:51:19 +03:00
|
|
|
::
|
|
|
|
++ en-hunk
|
|
|
|
|= res=(unit (unit cage))
|
|
|
|
^+ res
|
|
|
|
?~ res ~
|
|
|
|
=/ =hunk [(slav %ud lop.tyl) (slav %ud len.tyl)]
|
|
|
|
::
|
|
|
|
=/ hu-co (etch-hunk our [life crypto-core]:ames-state)
|
|
|
|
?- res
|
|
|
|
[~ ~] ``noun+!>((etch:hu-co pax.tyl hunk ~))
|
|
|
|
[~ ~ *] ``noun+!>((etch:hu-co pax.tyl hunk [p q.q]:u.u.res))
|
|
|
|
==
|
|
|
|
--
|
2023-02-21 14:22:53 +03:00
|
|
|
==
|
2019-05-25 05:03:33 +03:00
|
|
|
--
|