示例#1
0
    def write_packet(self,
                     packet: NetRomPacket,
                     forward: bool = False) -> bool:
        possible_routes = self.router.route(packet)
        routed = False
        for route in possible_routes:
            neighbor = self.router.neighbors.get(str(route))
            if neighbor is None:
                self.logger.warning(f"No neighbor for route {route}")
                continue
            #print(f"Trying route {route} to neighbor {neighbor}")
            data_link = self.data_links.get(neighbor.port)

            if data_link.link_state(neighbor.call) == AX25StateType.Connected:
                data_link.dl_data_request(neighbor.call, L3Protocol.NetRom,
                                          packet.buffer)
                routed = True
                EventBus.emit("netrom.outbound", [packet])
                if forward:
                    # Log this transmission differently if it's being forwarded
                    self.logger.info(
                        f"[L3 Route={route} Neighbor={neighbor.call}] TX: {packet}"
                    )
                else:
                    self.debug(f"TX: {packet}")
                    packet_logger.info(f"TX: {packet}")
                break

        if not routed:
            self.warning(
                f"Could not route packet to {packet.dest}. Possible routes were {possible_routes}"
            )
            pass

        return routed
示例#2
0
    def _loop_sync(self, frame: FrameData):
        try:
            packet = decode_ax25_packet(frame.data)
            if packet.dest == AX25Call("NODES"):
                self.debug(f"RX: {packet}")
            else:
                self.debug(f"RX: {packet}")
            packet_logger.info(f"RX: {packet}")
            EventBus.emit("packet", [packet])
        except Exception:
            self.error(f"Had an error parsing packet: {frame}")
            return

        try:
            # Check if this is a special L3 message
            should_continue = True
            for l3 in self.l3_handlers:
                should_continue = l3.maybe_handle_special(frame.port, packet)
                if not should_continue:
                    self.debug(f"Handled by L3 {l3}")
                    break

            # If it has not been handled by L3
            if should_continue:
                if not packet.dest == self.link_call:
                    self.warning(
                        f"Discarding packet not for us {packet}. We are {self.link_call}"
                    )
                else:
                    self.state_machine.handle_packet(packet)
            else:
                self.debug(
                    "Not continuing because this packet was handled by L3")
        except Exception:
            self.error(f"Had handling packet {packet}")
示例#3
0
 def nl_data_indication(self, my_circuit_idx: int, my_circuit_id: int,
                        remote_call: AX25Call, local_call: AX25Call,
                        data: bytes):
     # Called from the state machine to indicate data to higher layers
     EventBus.emit(f"netrom.{local_call}.inbound", my_circuit_idx,
                   remote_call, data)
     if my_circuit_idx in self.l3_connections:
         self.l3_connections[my_circuit_idx][1].data_received(data)
     else:
         self.warning(
             f"Data indication for unknown circuit {my_circuit_idx}")
示例#4
0
    def nl_disconnect_indication(self, my_circuit_idx: int, my_circuit_id: int,
                                 remote_call: AX25Call, local_call: AX25Call):
        EventBus.emit(f"netrom.{local_call}.disconnect", my_circuit_idx,
                      remote_call)

        if local_call in self.l3_servers:
            if my_circuit_idx in self.l3_connections:
                self.l3_connections[my_circuit_idx][1].connection_lost(None)
                del self.l3_connections[my_circuit_idx]
            else:
                self.warning(
                    f"Disconnect indication received for unknown circuit {my_circuit_idx}"
                )
示例#5
0
 def maybe_handle_special(self, port: int, packet: AX25Packet) -> bool:
     """L3Handler.maybe_handle_special"""
     if type(packet) == UIFrame:
         ui = cast(UIFrame, packet)
         if ui.protocol == L3Protocol.NetRom and ui.dest == AX25Call(
                 "NODES"):
             # Parse this NODES packet and mark it as handled
             nodes = parse_netrom_nodes(ui.info)
             EventBus.emit("netrom.nodes", [nodes])
             asyncio.get_event_loop().create_task(
                 self._update_nodes(packet.source, port, nodes))
             # Stop further processing
             return False
     return True
示例#6
0
    def dl_data_indication(self, remote_call: AX25Call, local_call: AX25Call,
                           protocol: L3Protocol, data: bytes):
        EventBus.emit(f"link.{local_call}.inbound", remote_call, protocol,
                      data)
        handled = False
        for l3 in self.l3_handlers:
            if l3.can_handle(protocol):
                handled = l3.handle(self.link_port, remote_call, data)
            if handled:
                break

        if not handled:
            self.debug(
                f"No handler defined for protocol {repr(protocol)}. Discarding"
            )
示例#7
0
    async def _handle_packet_async(self, netrom_packet: NetRomPacket):
        """If packet is for us, handle it, otherwise forward it using our L3 routing table"""

        EventBus.emit("netrom.incoming", [netrom_packet])
        self.debug(f"RX: {netrom_packet}")
        packet_logger.info(f"RX: {netrom_packet}")

        if netrom_packet.dest == AX25Call("KEEPLI-0"):
            # What are these?? Just ignore them
            pass
        elif netrom_packet.dest == AX25Call.parse(self.config.node_call()):
            # Destination is this node
            self.sm.handle_packet(netrom_packet)
        elif netrom_packet.dest in self.l3_apps:
            # Destination is an app served by this node
            self.sm.handle_packet(netrom_packet)
        elif netrom_packet.dest in self.l3_servers:
            # Destination is an app served by this node
            self.sm.handle_packet(netrom_packet)
        else:
            # Destination is somewhere else
            self.write_packet(netrom_packet, forward=True)
示例#8
0
    def nl_connect_indication(self, my_circuit_idx: int, my_circuit_id: int,
                              remote_call: AX25Call, local_call: AX25Call,
                              origin_node: AX25Call, origin_user: AX25Call):
        # Send a connect event
        EventBus.emit(f"netrom.{local_call}.connect", my_circuit_idx,
                      remote_call)

        if my_circuit_idx in self.l3_half_open:
            # Complete a half-opened connection
            protocol_factory = self.l3_half_open[my_circuit_idx]
            protocol = protocol_factory()
            transport = NetworkTransport(self, local_call, remote_call,
                                         my_circuit_idx, origin_node,
                                         origin_user)
            protocol.connection_made(transport)
            self.l3_connections[my_circuit_idx] = (transport, protocol)
            del self.l3_half_open[my_circuit_idx]
        elif local_call in self.l3_servers:
            if my_circuit_idx in self.l3_connections:
                # An existing connection, re-connect it
                self.l3_connections[my_circuit_idx][1].connection_lost(
                    RuntimeError("Remote end reconnected"))
                self.l3_connections[my_circuit_idx][1].connection_made(
                    self.l3_connections[my_circuit_idx][0])
            else:
                # This a new connection, create the transport and protocol
                transport = NetworkTransport(self, local_call, remote_call,
                                             my_circuit_idx, origin_node,
                                             origin_user)
                protocol = self.l3_servers[local_call]()
                protocol.connection_made(transport)
                self.l3_connections[my_circuit_idx] = (transport, protocol)
        else:
            self.warning(
                f"Got unexpected connection from {remote_call} at {local_call}:{my_circuit_idx}"
            )
示例#9
0
 def dl_disconnect_indication(self, remote_call: AX25Call,
                              local_call: AX25Call):
     EventBus.emit(f"link.{local_call}.disconnect", remote_call)
示例#10
0
 def dl_error(self, remote_call: AX25Call, local_call: AX25Call,
              error_code: str):
     EventBus.emit(f"link.{local_call}.error", error_code)