123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- /* 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 <https://www.gnu.org/licenses/>.
- */
- #ifndef Node_H
- #define Node_H
- #ifdef SUBNODE
- #error "this file should not be included in subnode"
- #endif
- #include "dht/Address.h"
- #include "switch/EncodingScheme.h"
- #include "memory/Allocator.h"
- #include "util/Identity.h"
- #include "util/Linker.h"
- Linker_require("dht/dhtcore/Node.c")
- struct Node_Link;
- struct Node_Two
- {
- /**
- * The cost of the node (how small/slow/far it is).
- * DO NOT ALTER THIS OUTSIDE OF NODESTORE
- */
- uint64_t cost_pvt;
- /** This is used to mark/sweep nodes in getWorstNode(), it's meaningless otherwise. */
- uint32_t marked;
- // true if this node is flagged do-not-disturb
- int dnd;
- /** Time the node was last pinged, *not* reset on path changes. */
- uint64_t timeLastPinged;
- /** The address of the node. */
- struct Address address;
- /** The encoding method used by this node. */
- struct EncodingScheme* encodingScheme;
- /**
- * Peers of this node for which we know the forward direction.
- * Use RB_NFIND(PeerRBTree, node->peerTree, struct type* elm)
- */
- struct PeerRBTree {
- struct Node_Link* rbh_root;
- } peerTree;
- /** Used for freeing the links associated with this node. */
- struct Node_Link* reversePeers;
- /** The best link for getting to this node. */
- struct Node_Link* bestParent_pvt;
- /** Used by nodeStore's RBTree of nodes by address. */
- struct {
- struct Node_Two* rbe_left;
- struct Node_Two* rbe_right;
- struct Node_Two* rbe_parent;
- int rbe_color;
- } nodeTree;
- struct Allocator* alloc;
- Identity
- };
- /**
- * A link represents a link between two nodes.
- * Links are unidirectional because deriving the inverse of a route is non-trivial.
- * (it cannot be calculated)
- */
- struct Node_Link
- {
- /** Used by the parent's RBTree of links. */
- struct {
- struct Node_Link* rbe_left;
- struct Node_Link* rbe_right;
- struct Node_Link* rbe_parent;
- int rbe_color;
- } peerTree;
- /**
- * The Encoding Form number which is used to represent the first director in the path from
- * child to parent.
- */
- int inverseLinkEncodingFormNumber;
- /**
- * The quality of the link between parent and child,
- * between 0 (perfect) and 0xFFFFFFFF (intolerable).
- */
- uint32_t linkCost;
- /** The time this link was last seen carrying traffic. (Currently limited to ping traffic.) */
- uint64_t timeLastSeen;
- /** The parent of this peer, this is where the root of the RBTree is. */
- struct Node_Two* parent;
- /** The child of this link. */
- struct Node_Two* child;
- /**
- * The next link which points to the same child.
- * For each child there are many links pointing to it,
- * they are represented here as a linked list.
- */
- struct Node_Link* nextPeer;
- /** Used internally by NodeStore for creating a list used for splitting links. */
- struct Node_Link* nextInSplitList;
- /**
- * The label which would be used to reach the child from the parent.
- * This label is in a cannonical state and must be altered so that the first Director uses
- * at least as many bits as are required to reach the grandparent from the parent
- * in the reverse direction.
- */
- uint64_t cannonicalLabel;
- /** The path which the incoming packet followed when this node was discovered. */
- uint64_t discoveredPath;
- Identity
- };
- static inline uint64_t Node_getCost(struct Node_Two* node)
- {
- return node->cost_pvt;
- }
- static inline struct Node_Link* Node_getBestParent(struct Node_Two* node)
- {
- return node->bestParent_pvt;
- }
- bool Node_isAncestorOf(struct Node_Two* ancestor, struct Node_Two* child);
- void Node_setParentCostAndPath(struct Node_Two* node,
- struct Node_Link* bestParent,
- uint64_t cost,
- uint64_t path);
- bool Node_isOneHopLink(struct Node_Link* link);
- #endif
|