Source code for spinnman.utilities.utility_functions

# Copyright (c) 2017-2019 The University of Manchester
#
# This program is free software: you can redistribute it 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/>.

import socket
import sys
from six import reraise
from spinnman.model import BMPConnectionData
from spinnman.messages.sdp import SDPMessage, SDPHeader, SDPFlag
from spinnman.constants import SCP_SCAMP_PORT, CPU_INFO_BYTES, CPU_INFO_OFFSET
from spinnman.connections.udp_packet_connections.utils import (
    update_sdp_header_for_udp_send)
from spinnman.messages.scp.impl import IPTagSet
from spinnman.exceptions import SpinnmanTimeoutException


[docs]def work_out_bmp_from_machine_details(hostname, number_of_boards): """ Work out the BMP connection IP address given the machine details.\ This is assumed to be the IP address of the machine, with 1 subtracted\ from the final part e.g. if the machine IP address is 192.168.0.5, the\ BMP IP address is assumed to be 192.168.0.4 :param hostname: the SpiNNaker machine main hostname or IP address :param number_of_boards: the number of boards in the machine :return: The BMP connection data """ # take the IP address, split by dots, and subtract 1 off last bit ip_bits = socket.gethostbyname(hostname).split(".") ip_bits[-1] = str(int(ip_bits[-1]) - 1) bmp_ip_address = ".".join(ip_bits) # add board scope for each split # if None, the end user didn't enter anything, so assume one board # starting at position 0 if number_of_boards == 0 or number_of_boards is None: board_range = [0] else: board_range = range(number_of_boards) # Assume a single board with no cabinet or frame specified return BMPConnectionData(cabinet=0, frame=0, ip_address=bmp_ip_address, boards=board_range, port_num=SCP_SCAMP_PORT)
[docs]def get_vcpu_address(p): """ Get the address of the vcpu_t structure for the given core :param p: The core :type p: int """ return CPU_INFO_OFFSET + (CPU_INFO_BYTES * p)
[docs]def send_port_trigger_message(connection, board_address): """ Sends a port trigger message using a connection to (hopefully) open a\ port in a NAT and/or firewall to allow incoming packets to be received. :param connection: \ The UDP connection down which the trigger message should be sent :param board_address: \ The address of the SpiNNaker board to which the message should be sent """ # Set up the message so that no reply is expected and it is sent to an # invalid port for SCAMP. The current version of SCAMP will reject # this message, but then fail to send a response since the # REPLY_NOT_EXPECTED flag is set (see scamp-3.c line 728 and 625-644) trigger_message = SDPMessage(SDPHeader( flags=SDPFlag.REPLY_NOT_EXPECTED, tag=0, destination_port=3, destination_cpu=0, destination_chip_x=0, destination_chip_y=0)) update_sdp_header_for_udp_send(trigger_message.sdp_header, 0, 0) connection.send_to( trigger_message.bytestring, (board_address, SCP_SCAMP_PORT))
[docs]def reprogram_tag(connection, tag, strip=True): """ Reprogram an IP Tag to send responses to a given SCAMPConnection :param connection: The connection to target the tag at :param tag: The id of the tag to set :param strip: True if """ request = IPTagSet( connection.chip_x, connection.chip_y, [0, 0, 0, 0], 0, tag, strip=strip, use_sender=True) data = connection.get_scp_data(request) einfo = None for _ in range(3): try: connection.send(data) _, _, response, offset = \ connection.receive_scp_response() request.get_scp_response().read_bytestring(response, offset) return except SpinnmanTimeoutException: einfo = sys.exc_info() reraise(*einfo)