Network security

Drasi is a heavily networked system, and as such potentially susceptible to various attacks over the network. It only implements some mild forms of authentication measures, and should therefore only be operated on a trusted network.

Trusted network

As explained below, the connection verifications that drasi do perform are in place mainly to avoid mistakes during operation, and not as security measures. Drasi should therefore only be operated on a trusted network. When operated on nodes that have access to other networks as well, firewall configuration need to prevent connections from the outside to ever reach drasi.

While some care has been taken in drasi not to trust the data sent from any client, and in particular before the verification steps, this should not be relied upon for security.

TCP port verification

Drasi instances are identified by the host they run on, and a fixed TCP port. Since only one process can bind and listen for connections on a specific TCP port on a node, the network layer ensures that no stale drasi process can interfere with operations. Every internal drasi connection (communication between master, slave and event builder as well as drasi data protocol) must be accepted by both sides, and on both sides the other end must be explicitly given (together with any other configuration parameters).

When an internal drasi connection is made, the client (B) that initiates the connection begin by telling the server (A) from which instance it connects (i.e. its server TCP port). This information can however not be verified from the details of the TCP connection (only the source IP number is given), and thus must be independently verified. (If it does not match configured details of any expected incoming connection, it will be closed immediately after sending a failure response.) The instance (A) that just received the connection will make (or already made) a connection as a client (A) to the other server instance (B) where the first connection should originate (i.e. according to the configuration of B, in particular the just given TCP port number). When the first connection request is received (by A), a random number is sent (from A) over the second (back-link) connection, and (B) shall provide that to (A) over the first connection.

The purpose of this mechanism is to ensure that drasi instances talk to the expected other instances. It is easy for network sniffers to pick up the verification number, thus it is of little use for security purposes.

Only allowed IP numbers

The following is not implemented yet.

Other connections (monitoring, control operations and transport and stream protocol data transmissions) are initiated by clients that do not themselves hold a specific port. Thus the reverse port verification cannot be performed. All incoming connections must however come from IP numbers (or ranges) that have been listed in the configuration of the drasi server instance. Allowed IP numbers are given per kind of connection. Host names can also be used, they will be looked up (translated to IP numbers) at the time the server starts (thus wild-cards cannot be used).

This does provide some limited form of protection, since an attacker at least would have to be able to intercept packages to a machine with an allowed IP number.

Shared keyword

The following is so far implemented for control access.

Drasi can be operated on machines shared between multiple experiments, in particular for event builder and time sorter purposes. It is then quite easy to by mistake issue a control command to the wrong node/instance. The above check for allowed IP numbers would not catch this. To avoid this, any control connection will first verify that the initiator is in possession of a shared token before any command can be issued. Since monitoring connections do eat some bandwidth and processing resources, the same mechanism is used for them.

The token would be stored on a file system, but never sent explicitly. What is sent is however not even encrypted using a hash sum. The sole purpose of this mechanism is to prevent user mistakes.