firmware/src/mesh/Channels.h

125 lines
4.5 KiB
C
Raw Normal View History

2021-02-16 07:41:52 +00:00
#pragma once
#include "mesh-pb-constants.h"
#include <Arduino.h>
2021-02-23 02:10:35 +00:00
#include "CryptoEngine.h"
2021-02-16 07:41:52 +00:00
2021-02-22 04:57:26 +00:00
/** A channel number (index into the channel table)
*/
2021-02-22 03:16:38 +00:00
typedef uint8_t ChannelIndex;
2021-02-22 04:57:26 +00:00
/** A low quality hash of the channel PSK and the channel name. created by generateHash(chIndex)
* Used as a hint to limit which PSKs are considered for packet decoding.
*/
2021-02-22 03:16:38 +00:00
typedef uint8_t ChannelHash;
/** The container/on device API for working with channels */
2021-02-16 07:41:52 +00:00
class Channels
{
2021-02-22 03:16:38 +00:00
/// The index of the primary channel
ChannelIndex primaryIndex = 0;
/** The channel index that was requested for sending/receving. Note: if this channel is a secondary
channel and does not have a PSK, we will use the PSK from the primary channel. If this channel is disabled
no sending or receiving will be allowed */
ChannelIndex activeChannelIndex = 0;
2021-02-23 02:10:35 +00:00
/// the precomputed hashes for each of our channels, or -1 for invalid
int16_t hashes[MAX_NUM_CHANNELS];
2021-02-22 04:57:26 +00:00
2021-02-16 07:41:52 +00:00
public:
2021-02-22 03:16:38 +00:00
const ChannelSettings &getPrimary() { return getByIndex(getPrimaryIndex()).settings; }
2021-02-16 07:41:52 +00:00
2021-02-22 03:16:38 +00:00
/** Return the Channel for a specified index */
Channel &getByIndex(ChannelIndex chIndex);
2021-02-16 07:41:52 +00:00
2021-02-22 03:16:38 +00:00
/** Using the index inside the channel, update the specified channel's settings and role. If this channel is being promoted
* to be primary, force all other channels to be secondary.
2021-02-16 07:41:52 +00:00
*/
void setChannel(const Channel &c);
const char *getName(size_t chIndex);
/** The index of the primary channel */
2021-02-22 03:16:38 +00:00
ChannelIndex getPrimaryIndex() const { return primaryIndex; }
2021-02-16 07:41:52 +00:00
/**
2021-02-22 03:16:38 +00:00
* Generate a short suffix used to disambiguate channels that might have the same "name" entered by the human but different
PSKs.
* The ideas is that the PSK changing should be visible to the user so that they see they probably messed up and that's why
they their nodes
* aren't talking to each other.
*
* This string is of the form "#name-X".
*
* Where X is either:
* (for custom PSKS) a letter from A to Z (base26), and formed by xoring all the bytes of the PSK together,
* OR (for the standard minimially secure PSKs) a number from 0 to 9.
*
* This function will also need to be implemented in GUI apps that talk to the radio.
*
* https://github.com/meshtastic/Meshtastic-device/issues/269
*/
2021-02-16 07:41:52 +00:00
const char *getPrimaryName();
/// Called by NodeDB on initial boot when the radio config settings are unset. Set a default single channel config.
void initDefaults();
/// called when the user has just changed our radio config and we might need to change channel keys
void onConfigChanged();
2021-02-22 02:26:11 +00:00
/** Given a channel hash setup crypto for decoding that channel (or the primary channel if that channel is unsecured)
2021-02-22 03:16:38 +00:00
*
2021-02-22 02:26:11 +00:00
* This method is called before decoding inbound packets
2021-02-22 03:16:38 +00:00
*
2021-02-22 04:57:26 +00:00
* @return -1 if no suitable channel could be found, otherwise returns the channel index
2021-02-22 02:26:11 +00:00
*/
2021-02-22 04:57:26 +00:00
int16_t setActiveByHash(ChannelHash channelHash);
2021-02-22 02:26:11 +00:00
/** Given a channel index setup crypto for encoding that channel (or the primary channel if that channel is unsecured)
2021-02-22 03:16:38 +00:00
*
2021-02-22 04:57:26 +00:00
* This method is called before encoding outbound packets
2021-02-22 03:16:38 +00:00
*
2021-02-22 02:26:11 +00:00
* @eturn the (0 to 255) hash for that channel - if no suitable channel could be found, return -1
*/
2021-02-22 03:16:38 +00:00
int16_t setActiveByIndex(ChannelIndex channelIndex);
2021-02-22 02:26:11 +00:00
2021-02-22 03:16:38 +00:00
private:
2021-02-22 02:26:11 +00:00
/** Given a channel index, change to use the crypto key specified by that index
2021-02-23 02:10:35 +00:00
*
* @eturn the (0 to 255) hash for that channel - if no suitable channel could be found, return -1
2021-02-22 02:26:11 +00:00
*/
2021-02-23 02:10:35 +00:00
int16_t setCrypto(ChannelIndex chIndex);
2021-02-22 02:26:11 +00:00
/** Return the channel index for the specified channel hash, or -1 for not found */
2021-02-22 03:16:38 +00:00
int8_t getIndexByHash(ChannelHash channelHash);
2021-02-22 02:26:11 +00:00
2021-02-22 03:16:38 +00:00
/** Given a channel number, return the (0 to 255) hash for that channel
2021-02-22 02:26:11 +00:00
* If no suitable channel could be found, return -1
2021-02-23 02:10:35 +00:00
*
* called by fixupChannel when a new channel is set
2021-02-22 03:16:38 +00:00
*/
2021-02-23 02:10:35 +00:00
int16_t generateHash(ChannelIndex channelNum);
int16_t getHash(ChannelIndex i) { return hashes[i]; }
2021-02-22 03:16:38 +00:00
/**
* Validate a channel, fixing any errors as needed
*/
Channel &fixupChannel(ChannelIndex chIndex);
/**
* Write a default channel to the specified channel index
*/
void initDefaultChannel(ChannelIndex chIndex);
2021-02-23 02:10:35 +00:00
/**
* Return the key used for encrypting this channel (if channel is secondary and no key provided, use the primary channel's PSK)
*/
CryptoKey getKey(ChannelIndex chIndex);
2021-02-16 07:41:52 +00:00
};
/// Singleton channel table
extern Channels channels;