from __future__ import annotations import os import random from enum import Enum import simpy from cryptography.hazmat.primitives import serialization from cryptography.hazmat.primitives.asymmetric.x25519 import X25519PrivateKey, X25519PublicKey from config import Config from sphinx import SphinxPacket, Attachment from p2p import P2P class Node: INCENTIVE_TX_SIZE = 512 PADDING_SEPARATOR = b'\x01' def __init__(self, id: int, env: simpy.Environment, p2p: P2P, config: Config): self.id = id self.env = env self.p2p = p2p self.private_key = X25519PrivateKey.generate() self.public_key = self.private_key.public_key() self.config = config self.payload_id = 0 self.action = self.env.process(self.send_message()) def send_message(self): """ Creates/encapsulate a message and send it to the network through the mixnet """ while True: yield self.env.timeout(self.config.mixnet.message_interval) message_type = self.message_type_to_send() if message_type is None: # nothing to send in this turn continue msg = self.create_message(message_type) prep_time = random.uniform(0, self.config.mixnet.max_message_prep_time) yield self.env.timeout(prep_time) self.log("Sending a message to the mixnet") self.env.process(self.p2p.broadcast(self, msg)) def message_type_to_send(self) -> MessageType | None: rnd = random.random() if rnd < self.real_message_prob(): return MessageType.REAL elif rnd < self.config.mixnet.cover_message_prob: return MessageType.COVER else: return None def real_message_prob(self): weight = self.config.mixnet.real_message_prob_weights[self.id] \ if self.id < len(self.config.mixnet.real_message_prob_weights) else 1 return self.config.mixnet.real_message_prob * weight def create_message(self, message_type: MessageType) -> SphinxPacket | bytes: """ Creates a real or cover message @return: """ if not self.config.mixnet.is_mixing_on(): return self.build_payload() mixes = self.p2p.get_nodes(self.config.mixnet.num_mix_layers) public_keys = [mix.public_key for mix in mixes] # TODO: replace with realistic tx incentive_txs = [Node.create_incentive_tx(mix.public_key) for mix in mixes] if message_type == MessageType.COVER: # Set invalid txs for a cover message, # so that nobody will recognize that as a real message to be forwarded to the next mix. incentive_txs = [Attachment(os.urandom(len(bytes(tx)))) for tx in incentive_txs] return SphinxPacket(public_keys, incentive_txs, self.build_payload()) def receive_message(self, msg: SphinxPacket | bytes): """ Receives a message from the network, processes it, and forwards it to the next mix or the entire network if necessary. @param msg: the message to be processed """ if isinstance(msg, SphinxPacket): msg, incentive_tx = msg.unwrap(self.private_key) if self.is_my_incentive_tx(incentive_tx): self.log("Receiving SphinxPacket. It's mine!") if msg.is_all_unwrapped(): final_padded_msg = self.pad_payload(msg.payload, len(msg)) self.env.process(self.p2p.broadcast(self, final_padded_msg)) else: # TODO: use Poisson delay or something else, if necessary yield self.env.timeout(random.uniform(0, self.config.mixnet.max_mix_delay)) self.env.process(self.p2p.broadcast(self, msg)) else: self.log("Receiving SphinxPacket, but not mine") else: final_msg = msg[:msg.rfind(self.PADDING_SEPARATOR)] self.log("Received final message: %s" % final_msg) def build_payload(self) -> bytes: payload = bytes(f"{self.id}-{self.payload_id}", "utf-8") self.payload_id += 1 return payload + bytes(self.config.mixnet.payload_size - len(payload)) def pad_payload(self, payload: bytes, target_size: int) -> bytes: """ Pad the final msg to the target size (e.g. the same size as a SphinxPacket), assuming that the final msg is going to be sent via secure channels (TLS, Noise, etc.) """ return (payload + self.PADDING_SEPARATOR + bytes(target_size - len(payload) - len(self.PADDING_SEPARATOR))) # TODO: This is a dummy logic @classmethod def create_incentive_tx(cls, mix_public_key: X25519PublicKey) -> Attachment: public_key = mix_public_key.public_bytes(encoding=serialization.Encoding.Raw, format=serialization.PublicFormat.Raw) public_key += bytes(cls.INCENTIVE_TX_SIZE - len(public_key)) return Attachment(public_key) def is_my_incentive_tx(self, tx: Attachment) -> bool: return tx == Node.create_incentive_tx(self.public_key) def log(self, msg): print(f"t={self.env.now:.3f}: Node:{self.id}: {msg}") class MessageType(Enum): REAL = 0 COVER = 1