123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340 |
- /* vim: set expandtab ts=4 sw=4: */
- /*
- * You may redistribute this program and/or modify it under the terms of
- * the GNU General Public License as published by the Free Software Foundation,
- * either version 3 of the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #ifndef PFChan_H
- #define PFChan_H
- #include "util/Assert.h"
- #include "wire/RouteHeader.h"
- #include "wire/DataHeader.h"
- #include "wire/SwitchHeader.h"
- #include "wire/Control.h"
- struct PFChan_Node
- {
- uint8_t ip6[16];
- uint8_t publicKey[32];
- uint64_t path_be;
- /** Quality of path represented by switch label (0:best ffffffff:worst) */
- uint32_t metric_be;
- uint32_t version_be;
- };
- #define PFChan_Node_SIZE 64
- Assert_compileTime(sizeof(struct PFChan_Node) == PFChan_Node_SIZE);
- struct PFChan_Msg
- {
- struct RouteHeader route;
- struct DataHeader data;
- // ...content follows...
- };
- #define PFChan_Msg_MIN_SIZE (RouteHeader_SIZE + DataHeader_SIZE)
- Assert_compileTime(sizeof(struct PFChan_Msg) == PFChan_Msg_MIN_SIZE);
- #pragma GCC poison PFChan_Msg_SIZE
- struct PFChan_Ping
- {
- uint64_t cookie;
- };
- #define PFChan_Ping_SIZE 8
- Assert_compileTime(sizeof(struct PFChan_Ping) == PFChan_Ping_SIZE);
- struct PFChan_Pathfinder_Connect
- {
- /**
- * See PFChan_Pathfinder_Superiority for more information about this field.
- * It is recommended that you pass zero at first and then pass a higher number once your table
- * has populated. Use an PFChan_Pathfinder_SUPERIORITY event to alter it.
- */
- uint32_t superiority_be;
- /** Protocol version of the pathfinder. */
- uint32_t version_be;
- /** Description of the pathfinder in ASCII text. */
- uint8_t userAgent[64];
- };
- #define PFChan_Pathfinder_Connect_SIZE 72
- Assert_compileTime(sizeof(struct PFChan_Pathfinder_Connect) == PFChan_Pathfinder_Connect_SIZE);
- /**
- * Sending a PFChan_Pathfinder_SUPERIORITY event will cause PFChan_Core_PATHFINDER event to be sent
- * again for your pathfinder with the updated superiority. Superiority is a way for multiple
- * connected pathfinders to operate together by ones which have lower superiority switching
- * to an "idle" mode, relying on the responses to the DHT pings and searches sent by the higher
- * superiority pathfinder.
- */
- struct PFChan_Pathfinder_Superiority
- {
- uint32_t superiority_be;
- };
- #define PFChan_Pathfinder_Superiority_SIZE 4
- Assert_compileTime(
- sizeof(struct PFChan_Pathfinder_Superiority) == PFChan_Pathfinder_Superiority_SIZE);
- enum PFChan_Pathfinder
- {
- /** Below the lowest valid value. */
- PFChan_Pathfinder__TOO_LOW = 511,
- /**
- * Must be emitted before any other messages.
- * (Received by: EventEmitter.c)
- */
- PFChan_Pathfinder_CONNECT = 512,
- /**
- * See PFChan_Pathfinder_Superiority for more information about this event.
- * (Received by: EventEmitter.c)
- */
- PFChan_Pathfinder_SUPERIORITY = 513,
- /**
- * Emit to indicate the discovery of a node or a new best path to the node.
- * To reduce traffic load, first request all sessions and then only emit for nodes for which
- * there are active sessions.
- * (Received by: SessionManager.c)
- */
- PFChan_Pathfinder_NODE = 514,
- /**
- * Send a DHT message to another node.
- * (Received by: UpperDistributor.c)
- */
- PFChan_Pathfinder_SENDMSG = 515,
- /**
- * PFChan_Pathfinder_PING will elicit an PFChan_Core_PONG
- * (Received by: EventEmitter.c)
- */
- PFChan_Pathfinder_PING = 516,
- /**
- * PFChan_Pathfinder_PONG must be sent if core sends a PFChan_Core_PING
- * (Received by: EventEmitter.c)
- */
- PFChan_Pathfinder_PONG = 517,
- // The following events have no content.
- /**
- * Get all sessions.
- * (Received by: SessionManager.c)
- */
- PFChan_Pathfinder_SESSIONS = 518,
- /**
- * Get all peers.
- * (Received by: InterfaceController.c)
- */
- PFChan_Pathfinder_PEERS = 519,
- /**
- * Get all registered pathfinders
- * (Received by: EventEmitter.c)
- */
- PFChan_Pathfinder_PATHFINDERS = 520,
- PFChan_Pathfinder__TOO_HIGH = 521,
- };
- struct PFChan_FromPathfinder
- {
- enum PFChan_Pathfinder event_be;
- /* Number of the Pathfinder which sent this event, added by EventEmitter.c */
- uint8_t target_be;
- union {
- struct PFChan_Pathfinder_Connect connect;
- struct PFChan_Pathfinder_Superiority superiority;
- struct PFChan_Node node;
- struct PFChan_Msg sendmsg;
- struct PFChan_Ping ping;
- struct PFChan_Ping pong;
- uint8_t bytes[1];
- } content;
- };
- //// ------------------------- Core Events ------------------------- ////
- enum PFChan_Core
- {
- /** This is below the lowest valid value */
- PFChan_Core__TOO_LOW = 1023,
- /**
- * This message is sent in response to an PFChan_Pathfinder_CONNECT message and is
- * guaranteed to be sent before any other message.
- * (emitted by: EventEmitter.c)
- */
- PFChan_Core_CONNECT = 1024,
- /**
- * Emitted when a pathfinder connects or if PFChan_Pathfinder_PATHFINDERS is sent.
- * (emitted by: EventEmitter.c)
- */
- PFChan_Core_PATHFINDER = 1025,
- /**
- * Emitted when a pathfinder disconnects from the core
- * (emitted by: EventEmitter.c)
- */
- PFChan_Core_PATHFINDER_GONE = 1026,
- /**
- * Emitted if a switch error is received, no matter what type of packet causes it.
- * (emitted by: ControlHandler.c)
- */
- PFChan_Core_SWITCH_ERR = 1027,
- /**
- * Emitted if the core wants the pathfinder to begin searching for a node.
- * (emitted by: SessionManager.c)
- */
- PFChan_Core_SEARCH_REQ = 1028,
- /**
- * Emitted when a peer connects (becomes state ESTABLISHED) or
- * emitted for every peer if PFChan_Pathfinder_PEERS is sent.
- * (emitted by: InterfaceController.c)
- */
- PFChan_Core_PEER = 1029,
- /**
- * Emitted when a peer disconnects (or becomes state UNRESPONSIVE)
- * (emitted by: InterfaceController.c)
- */
- PFChan_Core_PEER_GONE = 1030,
- /**
- * Emitted if a new session begins, also emitted for every active session of
- * PFChan_Pathfinder_SESSIONS is sent.
- * (emitted by: SessionManager.c)
- */
- PFChan_Core_SESSION = 1031,
- /**
- * Emitted when a session ends.
- * (emitted by: SessionManager.c)
- */
- PFChan_Core_SESSION_ENDED = 1032,
- /**
- * Emitted when SessionManager sees an incoming packet with a new path.
- * (emitted by: SessionManager.c)
- */
- PFChan_Core_DISCOVERED_PATH = 1033,
- /**
- * Emitted for each incoming DHT message.
- * (emitted by: UpperDistributor.c)
- */
- PFChan_Core_MSG = 1034,
- /**
- * Emitted from time to time in order to verify the pathfinder is alive.
- * Must be responded to by an PFChan_Pathfinder_PONG.
- * (emitted by: EventEmitter.c)
- */
- PFChan_Core_PING = 1035,
- /**
- * Will be emitted if the pathfinder emits an PFChan_Pathfinder_PING.
- * (emitted by: EventEmitter.c)
- */
- PFChan_Core_PONG = 1036,
- PFChan_Core__TOO_HIGH = 1037,
- };
- struct PFChan_Core_SearchReq
- {
- uint8_t ipv6[16];
- };
- #define PFChan_Core_SearchReq_SIZE 16
- Assert_compileTime(sizeof(struct PFChan_Core_SearchReq) == PFChan_Core_SearchReq_SIZE);
- struct PFChan_Core_Pathfinder
- {
- /** See struct PFChan_Pathfinder_Superiority for more information */
- uint32_t superiority_be;
- /** The number of this pathfinder. */
- uint32_t pathfinderId_be;
- /** Description of the pathfinder in ASCII text. */
- uint8_t userAgent[64];
- };
- #define PFChan_Core_Pathfinder_SIZE 72
- Assert_compileTime(sizeof(struct PFChan_Core_Pathfinder) == PFChan_Core_Pathfinder_SIZE);
- struct PFChan_Core_Connect
- {
- /** The core's version (Version.h). */
- uint32_t version_be;
- /** This pathfinder's ID. */
- uint32_t pathfinderId_be;
- /** The public key of this cjdns node. */
- uint8_t publicKey[32];
- };
- #define PFChan_Core_Connect_SIZE 40
- Assert_compileTime(sizeof(struct PFChan_Core_Connect) == PFChan_Core_Connect_SIZE);
- struct PFChan_Core_SwitchErr
- {
- struct SwitchHeader sh;
- uint32_t ffffffff;
- struct Control_Header ctrlHeader;
- struct Control_Error ctrlErr;
- };
- #pragma GCC poison PFChan_Core_SwitchErr_SIZE
- #define PFChan_Core_SwitchErr_MIN_SIZE \
- (SwitchHeader_SIZE + 4 + Control_Header_SIZE + Control_Error_MIN_SIZE)
- Assert_compileTime(sizeof(struct PFChan_Core_SwitchErr) == PFChan_Core_SwitchErr_MIN_SIZE);
- struct PFChan_FromCore
- {
- enum PFChan_Core event_be;
- /* Number of the Pathfinder to send this event to, 0xffffffff sends to all. */
- uint8_t target_be;
- union {
- struct PFChan_Core_Connect connect;
- struct PFChan_Core_Pathfinder pathfinder;
- struct PFChan_Core_Pathfinder pathfinderGone;
- struct PFChan_Core_SwitchErr switchErr;
- struct PFChan_Core_SearchReq searchReq;
- struct PFChan_Node peer;
- struct PFChan_Node peerGone;
- struct PFChan_Node session;
- struct PFChan_Node sessionEnded;
- struct PFChan_Node discoveredPath;
- struct PFChan_Msg msg;
- struct PFChan_Ping ping;
- struct PFChan_Ping pong;
- uint8_t bytes[4];
- } content;
- };
- // PFChan_FromCore contains a union so it's size is not useful.
- #pragma GCC poison PFChan_FromCore_SIZE
- #endif
|