mirror of
https://github.com/urbit/shrub.git
synced 2025-01-03 18:16:30 +03:00
beginnings of data types
This commit is contained in:
parent
d30914a1f8
commit
5be3c4b6b9
@ -1,29 +1,133 @@
|
||||
:: protocol-version: current version of the ames wire protocol
|
||||
::
|
||||
=/ protocol-version=?(%0 %1 %2 %3 %4 %5 %6 %7) %0
|
||||
::
|
||||
=>
|
||||
|%
|
||||
+$ dyad [sndr=@p rcvr=@p]
|
||||
+$ packet [=dyad encrypted=? origin=(unit @uxlane) content=*]
|
||||
:: +rank: which kind of ship address, by length
|
||||
+| %atomics
|
||||
::
|
||||
:: 0: galaxy or star
|
||||
:: 1: planet
|
||||
:: 2: moon
|
||||
:: 3: comet
|
||||
+$ blob @uxblob
|
||||
+$ bone @udbone
|
||||
+$ lane @uxlane
|
||||
+$ message-num @udmessage
|
||||
+$ packet-num @udpacket
|
||||
+$ public-key @uwpublickey
|
||||
+$ symmetric-key @uwsymmetrickey
|
||||
:: $rank: which kind of ship address, by length
|
||||
::
|
||||
:: 0: galaxy or star -- 2 bytes
|
||||
:: 1: planet -- 4 bytes
|
||||
:: 2: moon -- 8 bytes
|
||||
:: 3: comet -- 16 bytes
|
||||
::
|
||||
+$ rank ?(%0 %1 %2 %3)
|
||||
::
|
||||
+| %parts
|
||||
::
|
||||
:: $dyad: pair of sender and receiver ships
|
||||
::
|
||||
+$ dyad [sndr=ship rcvr=ship]
|
||||
:: $message: application-level message
|
||||
::
|
||||
:: path: internal route on the receiving ship
|
||||
:: payload: semantic message contents
|
||||
::
|
||||
+$ message [=path payload=*]
|
||||
:: $packet: noun representation of an ames datagram packet
|
||||
::
|
||||
:: Roundtrips losslessly through atom encoding and decoding.
|
||||
::
|
||||
:: .origin is ~ unless the packet is being forwarded. If present,
|
||||
:: it's an atom that encodes a route to another ship, such as an IPv4
|
||||
:: address. Routes are opaque to Arvo and only have meaning in the
|
||||
:: interpreter. This enforces that Ames is transport-agnostic.
|
||||
::
|
||||
+$ packet [=dyad encrypted=? origin=(unit lane) content=*]
|
||||
::
|
||||
+| %state
|
||||
::
|
||||
:: $channel: combined sender and receiver identifying data
|
||||
::
|
||||
+$ channel
|
||||
$: :: dyad: [our her] if sending; [her our] when receiving
|
||||
::
|
||||
dyad
|
||||
:: our data, common to all dyads
|
||||
::
|
||||
$: =our=life
|
||||
crypto-core=acru:ames
|
||||
==
|
||||
:: her data, specific to this dyad
|
||||
::
|
||||
$: =symmetric-key
|
||||
=her=life
|
||||
=her=public-key
|
||||
her-sponsors=(list ship)
|
||||
== ==
|
||||
:: $ames-state: state for entire vane
|
||||
::
|
||||
+$ ames-state
|
||||
$: peers=(map ship ship-state)
|
||||
=life
|
||||
crypto-core=acru:ames
|
||||
==
|
||||
:: $ship-state: all we know about a peer
|
||||
::
|
||||
:: %known: we know their life and public keys, so we have a channel
|
||||
:: %alien: no PKI data, so enqueue actions to perform once we learn it
|
||||
::
|
||||
+$ ship-state
|
||||
$% [%known peer-state]
|
||||
[%alien pending-actions]
|
||||
==
|
||||
:: $peer-state: state for a peer with known life and keys
|
||||
::
|
||||
+$ peer-state
|
||||
$: $: =symmetric-key
|
||||
=life
|
||||
=public-key
|
||||
sponsors=(list ship)
|
||||
==
|
||||
route=(unit [direct=? =lane])
|
||||
=ossuary
|
||||
snd=(map bone snd-state)
|
||||
rcv=(map bone rcv-state)
|
||||
==
|
||||
:: $ossuary: bone<-->duct bijection and .next bone to map to a duct
|
||||
::
|
||||
+$ ossuary
|
||||
$: next=bone
|
||||
by-duct=(map duct bone)
|
||||
by-bone=(map bone duct)
|
||||
==
|
||||
:: $pending-actions: what to do when we learn a peer's life and keys
|
||||
::
|
||||
+$ pending-actions
|
||||
$: rcv-packets=(list [=lane =packet])
|
||||
snd-messages=(list [=duct =message])
|
||||
==
|
||||
+$ snd-state
|
||||
$: _!!
|
||||
==
|
||||
+$ rcv-state
|
||||
$: _!!
|
||||
==
|
||||
--
|
||||
|%
|
||||
:: +encode-packet: TODO
|
||||
:: +encode-packet: serialize a packet into a bytestream
|
||||
::
|
||||
++ encode-packet
|
||||
|= packet
|
||||
^- @uxblob
|
||||
^- blob
|
||||
::
|
||||
=/ sndr-meta (encode-ship-metadata sndr.dyad)
|
||||
=/ rcvr-meta (encode-ship-metadata rcvr.dyad)
|
||||
:: body: <<sndr rcvr (jam [origin content])>>
|
||||
::
|
||||
:: The .sndr and .rcvr ship addresses are encoded with fixed
|
||||
:: lengths specified by the packet header. They live outside
|
||||
:: the jammed-data section to simplify packet filtering in the
|
||||
:: interpreter.
|
||||
::
|
||||
=/ body=@
|
||||
;: mix
|
||||
sndr.dyad
|
||||
@ -35,7 +139,7 @@
|
||||
:: <<version checksum sndr-rank rcvr-rank encryption-type unused>>
|
||||
:: 4 bits at the end of the header are unused.
|
||||
::
|
||||
=/ header
|
||||
=/ header=@
|
||||
%+ can 0
|
||||
:~ [3 protocol-version]
|
||||
[20 (mug body)]
|
||||
@ -46,10 +150,10 @@
|
||||
:: result is <<header body>>
|
||||
::
|
||||
(mix header (lsh 5 1 body))
|
||||
:: +decode-packet: deserialize packet from bytestream, reading header
|
||||
:: +decode-packet: deserialize packet from bytestream or crash
|
||||
::
|
||||
++ decode-packet
|
||||
|= blob=@uxblob
|
||||
|= =blob
|
||||
^- packet
|
||||
:: first 32 (2^5) bits are header; the rest is body
|
||||
::
|
||||
@ -91,7 +195,7 @@
|
||||
%2 8
|
||||
%3 16
|
||||
==
|
||||
:: +encode-ship-metadata: produce size (in bytes) and address rank for :ship
|
||||
:: +encode-ship-metadata: produce size (in bytes) and address rank for .ship
|
||||
::
|
||||
:: 0: galaxy or star
|
||||
:: 1: planet
|
||||
|
Loading…
Reference in New Issue
Block a user