mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-11-02 03:37:57 +00:00
Compare commits
33 Commits
v3.2.0-RC1
...
OLS-433-fi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
26b9a96506 | ||
|
|
5ce8dae9ec | ||
|
|
7da135c1e5 | ||
|
|
50ee4ba5cb | ||
|
|
3a8109d7ad | ||
|
|
56232966ec | ||
|
|
1ecf98d712 | ||
|
|
f5b60ced61 | ||
|
|
e4d141bb8e | ||
|
|
25b4288050 | ||
|
|
82430c2d5d | ||
|
|
7b68ec0536 | ||
|
|
839f4fec44 | ||
|
|
c4178209bb | ||
|
|
79ab67db50 | ||
|
|
00bc77feea | ||
|
|
4f00d77d2b | ||
|
|
c679d4ac40 | ||
|
|
4a150a9fcb | ||
|
|
83eb603f0a | ||
|
|
38bc0f0d69 | ||
|
|
e7362c2020 | ||
|
|
9c9987e190 | ||
|
|
4ac7b6ba0b | ||
|
|
f9ee19af91 | ||
|
|
cd2ab8660f | ||
|
|
b9f00f6603 | ||
|
|
596cfd49e1 | ||
|
|
b3deba5606 | ||
|
|
a97d49a06b | ||
|
|
b1be0604d6 | ||
|
|
b29f7f7dc4 | ||
|
|
132b31b06b |
@@ -1,5 +1,5 @@
|
|||||||
cmake_minimum_required(VERSION 3.13)
|
cmake_minimum_required(VERSION 3.13)
|
||||||
project(owgw VERSION 3.1.0)
|
project(owgw VERSION 3.2.1)
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 20)
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||||
|
|||||||
46
PROTOCOL.md
46
PROTOCOL.md
@@ -306,8 +306,54 @@ The device should answer:
|
|||||||
},
|
},
|
||||||
"id" : <same number>
|
"id" : <same number>
|
||||||
}
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Controller wants the device to apply a given fixed configuration
|
||||||
|
|
||||||
|
Controller sends this command when it requires the device to apply fixed configuration, eg. country code. The device
|
||||||
|
should respond with message indicating failure or success.
|
||||||
|
|
||||||
|
```json
|
||||||
|
{ "jsonrpc" : "2.0",
|
||||||
|
"method" : "fixedconfig",
|
||||||
|
"params" : {
|
||||||
|
"serial" : <serial number>,
|
||||||
|
"when" : Optional - <UTC time when to apply this config, 0 means immediate, this is a suggestion>
|
||||||
|
"country" : "<country-code>"
|
||||||
|
},
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
If AP supports compressed configuration feature by inidcating `compress_cmd=true` in its capabilities, controller
|
||||||
|
will send a compressed configuration message where configuration payload (i.e. contents of `params`) is compressed
|
||||||
|
and encoded in base64 format:
|
||||||
|
```json
|
||||||
|
{ "jsonrpc" : "2.0",
|
||||||
|
"method" : "configure",
|
||||||
|
"params" : {
|
||||||
|
"compress_64" : "<b64 encoded zlib compressed payload>",
|
||||||
|
"compress_sz" : "<size of uncompressed data in bytes>"
|
||||||
|
},
|
||||||
|
"id" : <some number>
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The device should answer:
|
||||||
|
```json
|
||||||
|
{ "jsonrpc" : "2.0",
|
||||||
|
"result" : {
|
||||||
|
"serial": <serial number>,
|
||||||
|
"status": {
|
||||||
|
"error": 0 or an error number,
|
||||||
|
"text": <description of the error or success, eg. "Applied fixed config, rebooting">
|
||||||
|
},
|
||||||
|
"uuid": <UUID>
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
##### The Answer
|
##### The Answer
|
||||||
The device can answer and tell the controller it has rejected certain parts of the config and potentially replaced them with
|
The device can answer and tell the controller it has rejected certain parts of the config and potentially replaced them with
|
||||||
appropriate values. This could be used to allow a device to replace frequencies for the regions it is located in. The device
|
appropriate values. This could be used to allow a device to replace frequencies for the regions it is located in. The device
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ info:
|
|||||||
url: https://www.ucentral.info/support
|
url: https://www.ucentral.info/support
|
||||||
|
|
||||||
servers:
|
servers:
|
||||||
- url: 'https://localhost:16001/api/v1'
|
- url: 'https://localhost:16002/api/v1'
|
||||||
|
|
||||||
security:
|
security:
|
||||||
- bearerAuth: []
|
- bearerAuth: []
|
||||||
|
|||||||
@@ -54,8 +54,8 @@ namespace OpenWifi::RESTAPI_RPC {
|
|||||||
std::chrono::milliseconds WaitTimeInMs, Poco::JSON::Object *ObjectToReturn,
|
std::chrono::milliseconds WaitTimeInMs, Poco::JSON::Object *ObjectToReturn,
|
||||||
RESTAPIHandler *Handler, Poco::Logger &Logger, bool Deferred) {
|
RESTAPIHandler *Handler, Poco::Logger &Logger, bool Deferred) {
|
||||||
|
|
||||||
Logger.information(fmt::format("{},{}: New {} command. User={} Serial={}. ", Cmd.UUID,
|
Logger.information(fmt::format("{},{}: New {} command. User={} Serial={} Details={}. ", Cmd.UUID,
|
||||||
RPCID, Cmd.Command, Cmd.SubmittedBy, Cmd.SerialNumber));
|
RPCID, Cmd.Command, Cmd.SubmittedBy, Cmd.SerialNumber, Cmd.Details));
|
||||||
Cmd.Submitted = Utils::Now();
|
Cmd.Submitted = Utils::Now();
|
||||||
Cmd.Executed = 0;
|
Cmd.Executed = 0;
|
||||||
|
|
||||||
|
|||||||
@@ -167,7 +167,10 @@ namespace OpenWifi {
|
|||||||
{APCommands::Commands::certupdate, false, true, &RESTAPI_device_commandHandler::CertUpdate, 60000ms},
|
{APCommands::Commands::certupdate, false, true, &RESTAPI_device_commandHandler::CertUpdate, 60000ms},
|
||||||
{APCommands::Commands::transfer, false, true, &RESTAPI_device_commandHandler::Transfer, 60000ms},
|
{APCommands::Commands::transfer, false, true, &RESTAPI_device_commandHandler::Transfer, 60000ms},
|
||||||
{APCommands::Commands::script, false, true, &RESTAPI_device_commandHandler::Script, 60000ms},
|
{APCommands::Commands::script, false, true, &RESTAPI_device_commandHandler::Script, 60000ms},
|
||||||
{APCommands::Commands::powercycle, false, true, &RESTAPI_device_commandHandler::PowerCycle, 60000ms}
|
{APCommands::Commands::powercycle, false, true, &RESTAPI_device_commandHandler::PowerCycle, 60000ms},
|
||||||
|
{APCommands::Commands::fixedconfig, false, true, &RESTAPI_device_commandHandler::FixedConfig, 120000ms},
|
||||||
|
{APCommands::Commands::cablediagnostics, false, true, &RESTAPI_device_commandHandler::CableDiagnostics, 120000ms},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
void RESTAPI_device_commandHandler::DoPost() {
|
void RESTAPI_device_commandHandler::DoPost() {
|
||||||
@@ -691,9 +694,31 @@ namespace OpenWifi {
|
|||||||
Params.stringify(ParamStream);
|
Params.stringify(ParamStream);
|
||||||
Cmd.Details = ParamStream.str();
|
Cmd.Details = ParamStream.str();
|
||||||
|
|
||||||
|
// retrieve capabilities and encode/compress parameters, if required
|
||||||
|
Poco::JSON::Object ConfigParams = Params;
|
||||||
|
GWObjects::Capabilities Caps;
|
||||||
|
if (StorageService()->GetDeviceCapabilities(SerialNumber_, Caps)) {
|
||||||
|
Poco::JSON::Object CapsJson;
|
||||||
|
Caps.to_json(CapsJson);
|
||||||
|
auto DeviceCaps = CapsJson.getObject(uCentralProtocol::CAPABILITIES);
|
||||||
|
if (DeviceCaps->has("compress_cmd") && DeviceCaps->get("compress_cmd")) {
|
||||||
|
// compressed command capability present and it is set, compress parameters
|
||||||
|
Poco::JSON::Object CompressedParams;
|
||||||
|
std::string CompressedBase64Data;
|
||||||
|
std::uint64_t UncompressedDataLen = ParamStream.str().length();
|
||||||
|
if (Utils::CompressAndEncodeBase64(ParamStream.str(), CompressedBase64Data)) {
|
||||||
|
// set compressed, base 64 encoded data and length of uncompressed data
|
||||||
|
CompressedParams.set(uCentralProtocol::COMPRESS_64, CompressedBase64Data);
|
||||||
|
CompressedParams.set(uCentralProtocol::COMPRESS_SZ, UncompressedDataLen);
|
||||||
|
ConfigParams = CompressedParams;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
// AP_WS_Server()->SetPendingUUID(SerialNumber_, NewUUID);
|
// AP_WS_Server()->SetPendingUUID(SerialNumber_, NewUUID);
|
||||||
RESTAPI_RPC::WaitForCommand(CMD_RPC, APCommands::Commands::configure, true,
|
RESTAPI_RPC::WaitForCommand(CMD_RPC, APCommands::Commands::configure, true,
|
||||||
Cmd, Params, *Request, *Response, timeout,
|
Cmd, ConfigParams, *Request, *Response, timeout,
|
||||||
nullptr, this, Logger_);
|
nullptr, this, Logger_);
|
||||||
|
|
||||||
if(!Cmd.Executed) {
|
if(!Cmd.Executed) {
|
||||||
@@ -1548,4 +1573,82 @@ namespace OpenWifi {
|
|||||||
Logger_);
|
Logger_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// `fixedconfig` command is used set country propery on AP
|
||||||
|
// This handler uses `fixedconfig` command definitions
|
||||||
|
void RESTAPI_device_commandHandler::FixedConfig(
|
||||||
|
const std::string &CMD_UUID, uint64_t CMD_RPC, std::chrono::milliseconds timeout,
|
||||||
|
[[maybe_unused]] const GWObjects::DeviceRestrictions &Restrictions) {
|
||||||
|
poco_debug(Logger_, fmt::format("FIXEDCONFIG({},{}): TID={} user={} serial={}", CMD_UUID, CMD_RPC,
|
||||||
|
TransactionId_, Requester(), SerialNumber_));
|
||||||
|
// do not allow `fixedconfig` command for simulated devices
|
||||||
|
if(IsDeviceSimulated(SerialNumber_)) {
|
||||||
|
CallCanceled("FIXEDCONFIG", CMD_UUID, CMD_RPC, RESTAPI::Errors::SimulatedDeviceNotSupported);
|
||||||
|
return BadRequest(RESTAPI::Errors::SimulatedDeviceNotSupported);
|
||||||
|
}
|
||||||
|
|
||||||
|
// setup and validate fixedconfig object
|
||||||
|
GWObjects::FixedConfig fixed_config;
|
||||||
|
if(!fixed_config.from_json(ParsedBody_)) {
|
||||||
|
return BadRequest(RESTAPI::Errors::MissingOrInvalidParameters);
|
||||||
|
}
|
||||||
|
|
||||||
|
// setup command message
|
||||||
|
GWObjects::CommandDetails Cmd;
|
||||||
|
Cmd.SerialNumber = SerialNumber_;
|
||||||
|
Cmd.SubmittedBy = Requester();
|
||||||
|
Cmd.UUID = CMD_UUID;
|
||||||
|
Cmd.Command = uCentralProtocol::FIXEDCONFIG;
|
||||||
|
std::ostringstream os;
|
||||||
|
ParsedBody_->stringify(os);
|
||||||
|
Cmd.Details = os.str();
|
||||||
|
Cmd.RunAt = 0;
|
||||||
|
Cmd.ErrorCode = 0;
|
||||||
|
Cmd.WaitingForFile = 0;
|
||||||
|
|
||||||
|
// send fixedconfig command to device and return status
|
||||||
|
return RESTAPI_RPC::WaitForCommand(CMD_RPC, APCommands::Commands::fixedconfig, false, Cmd,
|
||||||
|
*ParsedBody_, *Request, *Response, timeout, nullptr, this,
|
||||||
|
Logger_);
|
||||||
|
}
|
||||||
|
|
||||||
|
void RESTAPI_device_commandHandler::CableDiagnostics(
|
||||||
|
const std::string &CMD_UUID, uint64_t CMD_RPC,
|
||||||
|
[[maybe_unused]] std::chrono::milliseconds timeout,
|
||||||
|
[[maybe_unused]] const GWObjects::DeviceRestrictions &Restrictions) {
|
||||||
|
|
||||||
|
if(UserInfo_.userinfo.userRole != SecurityObjects::ROOT &&
|
||||||
|
UserInfo_.userinfo.userRole != SecurityObjects::ADMIN) {
|
||||||
|
CallCanceled("CABLEDIAGNOSTICS", CMD_UUID, CMD_RPC, RESTAPI::Errors::ACCESS_DENIED);
|
||||||
|
return UnAuthorized(RESTAPI::Errors::ACCESS_DENIED);
|
||||||
|
}
|
||||||
|
|
||||||
|
poco_debug(Logger_, fmt::format("CABLEDIAGNOSTICS({},{}): TID={} user={} serial={}", CMD_UUID,
|
||||||
|
CMD_RPC, TransactionId_, Requester(), SerialNumber_));
|
||||||
|
|
||||||
|
if(IsDeviceSimulated(SerialNumber_)) {
|
||||||
|
CallCanceled("CABLEDIAGNOSTICS", CMD_UUID, CMD_RPC, RESTAPI::Errors::SimulatedDeviceNotSupported);
|
||||||
|
return BadRequest(RESTAPI::Errors::SimulatedDeviceNotSupported);
|
||||||
|
}
|
||||||
|
|
||||||
|
GWObjects::CableDiagnostics PR;
|
||||||
|
if(!PR.from_json(ParsedBody_)) {
|
||||||
|
return BadRequest(RESTAPI::Errors::MissingOrInvalidParameters);
|
||||||
|
}
|
||||||
|
|
||||||
|
GWObjects::CommandDetails Cmd;
|
||||||
|
Cmd.SerialNumber = SerialNumber_;
|
||||||
|
Cmd.SubmittedBy = Requester();
|
||||||
|
Cmd.UUID = CMD_UUID;
|
||||||
|
Cmd.Command = uCentralProtocol::CABLEDIAGNOSTICS;
|
||||||
|
std::ostringstream os;
|
||||||
|
ParsedBody_->stringify(os);
|
||||||
|
Cmd.Details = os.str();
|
||||||
|
Cmd.RunAt = PR.when;
|
||||||
|
Cmd.ErrorCode = 0;
|
||||||
|
Cmd.WaitingForFile = 0;
|
||||||
|
|
||||||
|
return RESTAPI_RPC::WaitForCommand(CMD_RPC, APCommands::Commands::cablediagnostics, false, Cmd,
|
||||||
|
*ParsedBody_, *Request, *Response, timeout, nullptr, this,
|
||||||
|
Logger_);
|
||||||
|
}
|
||||||
} // namespace OpenWifi
|
} // namespace OpenWifi
|
||||||
|
|||||||
@@ -70,6 +70,10 @@ namespace OpenWifi {
|
|||||||
const GWObjects::DeviceRestrictions &R);
|
const GWObjects::DeviceRestrictions &R);
|
||||||
void PowerCycle(const std::string &UUID, uint64_t RPC, std::chrono::milliseconds timeout,
|
void PowerCycle(const std::string &UUID, uint64_t RPC, std::chrono::milliseconds timeout,
|
||||||
const GWObjects::DeviceRestrictions &R);
|
const GWObjects::DeviceRestrictions &R);
|
||||||
|
void FixedConfig(const std::string &UUID, uint64_t RPC, std::chrono::milliseconds timeout,
|
||||||
|
const GWObjects::DeviceRestrictions &R);
|
||||||
|
void CableDiagnostics(const std::string &UUID, uint64_t RPC, std::chrono::milliseconds timeout,
|
||||||
|
const GWObjects::DeviceRestrictions &R);
|
||||||
|
|
||||||
static auto PathName() {
|
static auto PathName() {
|
||||||
return std::list<std::string>{"/api/v1/device/{serialNumber}/{command}"};
|
return std::list<std::string>{"/api/v1/device/{serialNumber}/{command}"};
|
||||||
|
|||||||
@@ -22,9 +22,15 @@ namespace OpenWifi {
|
|||||||
|
|
||||||
std::string FileType;
|
std::string FileType;
|
||||||
std::string FileContent;
|
std::string FileContent;
|
||||||
if (!StorageService()->GetAttachedFileContent(UUID, SerialNumber, FileContent, FileType) || FileContent.empty()) {
|
int WaitingForFile = 0;
|
||||||
|
if (!StorageService()->GetAttachedFileContent(UUID, SerialNumber, FileContent, FileType, WaitingForFile) && !WaitingForFile) {
|
||||||
return NotFound();
|
return NotFound();
|
||||||
}
|
}
|
||||||
|
else if (WaitingForFile) {
|
||||||
|
// waiting for file to be uploaded, return Accepted
|
||||||
|
return Accepted();
|
||||||
|
}
|
||||||
|
|
||||||
if (FileType == "pcap") {
|
if (FileType == "pcap") {
|
||||||
SendFileContent(FileContent, "application/vnd.tcpdump.pcap", UUID + ".pcap");
|
SendFileContent(FileContent, "application/vnd.tcpdump.pcap", UUID + ".pcap");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -799,4 +799,24 @@ namespace OpenWifi::GWObjects {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool FixedConfig::from_json(const Poco::JSON::Object::Ptr &Obj) {
|
||||||
|
try {
|
||||||
|
field_from_json(Obj, "serial", serialNumber);
|
||||||
|
field_from_json(Obj, "country", country);
|
||||||
|
return true;
|
||||||
|
} catch (const Poco::Exception &E) {
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool CableDiagnostics::from_json(const Poco::JSON::Object::Ptr &Obj) {
|
||||||
|
try {
|
||||||
|
field_from_json(Obj, "serial", serialNumber);
|
||||||
|
field_from_json(Obj, "when", when);
|
||||||
|
field_from_json(Obj, "ports", ports);
|
||||||
|
return true;
|
||||||
|
} catch (const Poco::Exception &E) {
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
} // namespace OpenWifi::GWObjects
|
} // namespace OpenWifi::GWObjects
|
||||||
|
|||||||
@@ -532,6 +532,19 @@ namespace OpenWifi::GWObjects {
|
|||||||
std::uint64_t when;
|
std::uint64_t when;
|
||||||
std::vector<PowerCyclePort> ports;
|
std::vector<PowerCyclePort> ports;
|
||||||
|
|
||||||
|
bool from_json(const Poco::JSON::Object::Ptr &Obj);
|
||||||
|
};
|
||||||
|
struct FixedConfig {
|
||||||
|
std::string serialNumber;
|
||||||
|
std::string country;
|
||||||
|
|
||||||
|
bool from_json(const Poco::JSON::Object::Ptr &Obj);
|
||||||
|
};
|
||||||
|
struct CableDiagnostics {
|
||||||
|
std::string serialNumber;
|
||||||
|
std::uint64_t when;
|
||||||
|
std::vector<std::string> ports;
|
||||||
|
|
||||||
bool from_json(const Poco::JSON::Object::Ptr &Obj);
|
bool from_json(const Poco::JSON::Object::Ptr &Obj);
|
||||||
};
|
};
|
||||||
} // namespace OpenWifi::GWObjects
|
} // namespace OpenWifi::GWObjects
|
||||||
|
|||||||
@@ -243,7 +243,7 @@ namespace OpenWifi {
|
|||||||
const std::string &Type);
|
const std::string &Type);
|
||||||
bool CancelWaitFile(std::string &UUID, std::string &ErrorText);
|
bool CancelWaitFile(std::string &UUID, std::string &ErrorText);
|
||||||
bool GetAttachedFileContent(std::string &UUID, const std::string &SerialNumber,
|
bool GetAttachedFileContent(std::string &UUID, const std::string &SerialNumber,
|
||||||
std::string &FileContent, std::string &Type);
|
std::string &FileContent, std::string &Type, int& WaitingForFile);
|
||||||
bool RemoveAttachedFile(std::string &UUID);
|
bool RemoveAttachedFile(std::string &UUID);
|
||||||
bool SetCommandResult(std::string &UUID, std::string &Result);
|
bool SetCommandResult(std::string &UUID, std::string &Result);
|
||||||
bool GetNewestCommands(std::string &SerialNumber, uint64_t HowMany,
|
bool GetNewestCommands(std::string &SerialNumber, uint64_t HowMany,
|
||||||
|
|||||||
@@ -376,18 +376,21 @@ static std::string DefaultAPSchema = R"foo(
|
|||||||
"properties": {
|
"properties": {
|
||||||
"port-mirror": {
|
"port-mirror": {
|
||||||
"description": "Enable mirror of traffic from multiple minotor ports to a single analysis port.",
|
"description": "Enable mirror of traffic from multiple minotor ports to a single analysis port.",
|
||||||
"type": "object",
|
"type": "array",
|
||||||
"properties": {
|
"items": {
|
||||||
"monitor-ports": {
|
"type": "object",
|
||||||
"description": "The list of ports that we want to mirror.",
|
"properties": {
|
||||||
"type": "array",
|
"monitor-ports": {
|
||||||
"items": {
|
"description": "The list of ports that we want to mirror.",
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"analysis-port": {
|
||||||
|
"description": "The port that mirror'ed packets should be sent to.",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"analysis-port": {
|
|
||||||
"description": "The port that mirror'ed packets should be sent to.",
|
|
||||||
"type": "string"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -2411,11 +2414,18 @@ static std::string DefaultAPSchema = R"foo(
|
|||||||
"$ref": "#/$defs/interface.ssid.encryption"
|
"$ref": "#/$defs/interface.ssid.encryption"
|
||||||
},
|
},
|
||||||
"multi-psk": {
|
"multi-psk": {
|
||||||
"type": "array",
|
"anyOf": [
|
||||||
"items": {
|
{
|
||||||
"$ref": "#/$defs/interface.ssid.multi-psk"
|
"type": "array",
|
||||||
}
|
"items": {
|
||||||
},
|
"$ref": "#/$defs/interface.ssid.multi-psk"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "boolean"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
"rrm": {
|
"rrm": {
|
||||||
"$ref": "#/$defs/interface.ssid.rrm"
|
"$ref": "#/$defs/interface.ssid.rrm"
|
||||||
},
|
},
|
||||||
@@ -4645,16 +4655,22 @@ static std::string DefaultSWITCHSchema = R"foo(
|
|||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
"port-mirror": {
|
"port-mirror": {
|
||||||
"type": "object",
|
"description": "Enable mirror of traffic from multiple minotor ports to a single analysis port.",
|
||||||
"properties": {
|
"type": "array",
|
||||||
"monitor-ports": {
|
"items": {
|
||||||
"type": "array",
|
"type": "object",
|
||||||
"items": {
|
"properties": {
|
||||||
|
"monitor-ports": {
|
||||||
|
"description": "The list of ports that we want to mirror.",
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"analysis-port": {
|
||||||
|
"description": "The port that mirror'ed packets should be sent to.",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
}
|
}
|
||||||
},
|
|
||||||
"analysis-port": {
|
|
||||||
"type": "string"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -6603,10 +6619,17 @@ static std::string DefaultSWITCHSchema = R"foo(
|
|||||||
"$ref": "#/$defs/interface.ssid.encryption"
|
"$ref": "#/$defs/interface.ssid.encryption"
|
||||||
},
|
},
|
||||||
"multi-psk": {
|
"multi-psk": {
|
||||||
"type": "array",
|
"anyOf": [
|
||||||
"items": {
|
{
|
||||||
"$ref": "#/$defs/interface.ssid.multi-psk"
|
"type": "array",
|
||||||
}
|
"items": {
|
||||||
|
"$ref": "#/$defs/interface.ssid.multi-psk"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "boolean"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"rrm": {
|
"rrm": {
|
||||||
"$ref": "#/$defs/interface.ssid.rrm"
|
"$ref": "#/$defs/interface.ssid.rrm"
|
||||||
|
|||||||
@@ -431,6 +431,11 @@ namespace OpenWifi {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
inline void Accepted() {
|
||||||
|
PrepareResponse(Poco::Net::HTTPResponse::HTTP_ACCEPTED);
|
||||||
|
Response->send();
|
||||||
|
}
|
||||||
|
|
||||||
inline void SendCompressedTarFile(const std::string &FileName, const std::string &Content) {
|
inline void SendCompressedTarFile(const std::string &FileName, const std::string &Content) {
|
||||||
Response->setStatus(Poco::Net::HTTPResponse::HTTPStatus::HTTP_OK);
|
Response->setStatus(Poco::Net::HTTPResponse::HTTPStatus::HTTP_OK);
|
||||||
SetCommonHeaders();
|
SetCommonHeaders();
|
||||||
|
|||||||
@@ -580,6 +580,9 @@ namespace OpenWifi::RESTAPI::Protocol {
|
|||||||
static const char *INTERVAL = "interval";
|
static const char *INTERVAL = "interval";
|
||||||
static const char *UI = "UI";
|
static const char *UI = "UI";
|
||||||
static const char *BANDWIDTH = "bandwidth";
|
static const char *BANDWIDTH = "bandwidth";
|
||||||
|
|
||||||
|
static const char *FIXEDCONFIG = "fixedconfig";
|
||||||
|
static const char *CABLEDIAGNOSTICS = "cable-diagnostics";
|
||||||
} // namespace OpenWifi::RESTAPI::Protocol
|
} // namespace OpenWifi::RESTAPI::Protocol
|
||||||
|
|
||||||
namespace OpenWifi::uCentralProtocol {
|
namespace OpenWifi::uCentralProtocol {
|
||||||
@@ -608,6 +611,7 @@ namespace OpenWifi::uCentralProtocol {
|
|||||||
static const char *CFGPENDING = "cfgpending";
|
static const char *CFGPENDING = "cfgpending";
|
||||||
static const char *RECOVERY = "recovery";
|
static const char *RECOVERY = "recovery";
|
||||||
static const char *COMPRESS_64 = "compress_64";
|
static const char *COMPRESS_64 = "compress_64";
|
||||||
|
static const char *COMPRESS_SZ = "compress_sz";
|
||||||
static const char *CAPABILITIES = "capabilities";
|
static const char *CAPABILITIES = "capabilities";
|
||||||
static const char *REQUEST_UUID = "request_uuid";
|
static const char *REQUEST_UUID = "request_uuid";
|
||||||
static const char *SANITY = "sanity";
|
static const char *SANITY = "sanity";
|
||||||
@@ -692,6 +696,9 @@ namespace OpenWifi::uCentralProtocol {
|
|||||||
static const char *RRM = "rrm";
|
static const char *RRM = "rrm";
|
||||||
static const char *ACTIONS = "actions";
|
static const char *ACTIONS = "actions";
|
||||||
|
|
||||||
|
static const char *FIXEDCONFIG = "fixedconfig";
|
||||||
|
static const char *CABLEDIAGNOSTICS = "cable-diagnostics";
|
||||||
|
|
||||||
} // namespace OpenWifi::uCentralProtocol
|
} // namespace OpenWifi::uCentralProtocol
|
||||||
|
|
||||||
namespace OpenWifi::uCentralProtocol::Events {
|
namespace OpenWifi::uCentralProtocol::Events {
|
||||||
@@ -788,6 +795,8 @@ namespace OpenWifi::APCommands {
|
|||||||
certupdate,
|
certupdate,
|
||||||
transfer,
|
transfer,
|
||||||
powercycle,
|
powercycle,
|
||||||
|
fixedconfig,
|
||||||
|
cablediagnostics,
|
||||||
unknown
|
unknown
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -802,7 +811,8 @@ namespace OpenWifi::APCommands {
|
|||||||
RESTAPI::Protocol::EVENTQUEUE, RESTAPI::Protocol::TELEMETRY,
|
RESTAPI::Protocol::EVENTQUEUE, RESTAPI::Protocol::TELEMETRY,
|
||||||
RESTAPI::Protocol::PING, RESTAPI::Protocol::SCRIPT,
|
RESTAPI::Protocol::PING, RESTAPI::Protocol::SCRIPT,
|
||||||
RESTAPI::Protocol::RRM, RESTAPI::Protocol::CERTUPDATE,
|
RESTAPI::Protocol::RRM, RESTAPI::Protocol::CERTUPDATE,
|
||||||
RESTAPI::Protocol::TRANSFER, RESTAPI::Protocol::POWERCYCLE
|
RESTAPI::Protocol::TRANSFER, RESTAPI::Protocol::POWERCYCLE,
|
||||||
|
RESTAPI::Protocol::FIXEDCONFIG, RESTAPI::Protocol::CABLEDIAGNOSTICS
|
||||||
};
|
};
|
||||||
|
|
||||||
inline const char *to_string(Commands Cmd) { return uCentralAPCommands[(uint8_t)Cmd]; }
|
inline const char *to_string(Commands Cmd) { return uCentralAPCommands[(uint8_t)Cmd]; }
|
||||||
|
|||||||
@@ -590,6 +590,26 @@ namespace OpenWifi::Utils {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// Compress given data using utility function and encode it in base64 format.
|
||||||
|
//
|
||||||
|
bool CompressAndEncodeBase64(const std::string& UnCompressedData, std::string& CompressedBase64Data) {
|
||||||
|
|
||||||
|
unsigned long CompressedDataSize = UnCompressedData.size();
|
||||||
|
std::vector<Bytef> CompressedData(CompressedDataSize);
|
||||||
|
auto status = compress(&CompressedData[0], &CompressedDataSize,
|
||||||
|
(Bytef*) UnCompressedData.c_str(), UnCompressedData.size());
|
||||||
|
if (status == Z_OK) {
|
||||||
|
CompressedBase64Data = OpenWifi::Utils::base64encode(&CompressedData[0], CompressedDataSize);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// failed to compress data
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool IsAlphaNumeric(const std::string &s) {
|
bool IsAlphaNumeric(const std::string &s) {
|
||||||
return std::all_of(s.begin(), s.end(), [](char c) -> bool { return isalnum(c); });
|
return std::all_of(s.begin(), s.end(), [](char c) -> bool { return isalnum(c); });
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -151,6 +151,8 @@ namespace OpenWifi::Utils {
|
|||||||
bool ExtractBase64CompressedData(const std::string &CompressedData,
|
bool ExtractBase64CompressedData(const std::string &CompressedData,
|
||||||
std::string &UnCompressedData, uint64_t compress_sz);
|
std::string &UnCompressedData, uint64_t compress_sz);
|
||||||
|
|
||||||
|
bool CompressAndEncodeBase64(const std::string& UnCompressedData, std::string& CompressedData);
|
||||||
|
|
||||||
inline bool match(const char* first, const char* second)
|
inline bool match(const char* first, const char* second)
|
||||||
{
|
{
|
||||||
// If we reach at the end of both strings, we are done
|
// If we reach at the end of both strings, we are done
|
||||||
|
|||||||
@@ -644,21 +644,7 @@ namespace OpenWifi {
|
|||||||
uint64_t Size = FileContent.str().size();
|
uint64_t Size = FileContent.str().size();
|
||||||
|
|
||||||
Poco::Data::Session Sess = Pool_->get();
|
Poco::Data::Session Sess = Pool_->get();
|
||||||
Sess.begin();
|
|
||||||
Poco::Data::Statement Statement(Sess);
|
|
||||||
|
|
||||||
std::string StatementStr;
|
|
||||||
|
|
||||||
// Get the existing command
|
|
||||||
|
|
||||||
StatementStr =
|
|
||||||
"UPDATE CommandList SET WaitingForFile=?, AttachDate=?, AttachSize=? WHERE UUID=?";
|
|
||||||
|
|
||||||
Statement << ConvertParams(StatementStr), Poco::Data::Keywords::use(WaitForFile),
|
|
||||||
Poco::Data::Keywords::use(Now), Poco::Data::Keywords::use(Size),
|
|
||||||
Poco::Data::Keywords::use(UUID);
|
|
||||||
Statement.execute();
|
|
||||||
Sess.commit();
|
|
||||||
if (Size < FileUploader()->MaxSize()) {
|
if (Size < FileUploader()->MaxSize()) {
|
||||||
|
|
||||||
Poco::Data::BLOB TheBlob;
|
Poco::Data::BLOB TheBlob;
|
||||||
@@ -680,7 +666,20 @@ namespace OpenWifi {
|
|||||||
} else {
|
} else {
|
||||||
poco_warning(Logger(), fmt::format("File {} is too large.", UUID));
|
poco_warning(Logger(), fmt::format("File {} is too large.", UUID));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// update CommandList here to ensure that file us uploaded
|
||||||
|
Sess.begin();
|
||||||
|
Poco::Data::Statement Statement(Sess);
|
||||||
|
std::string StatementStr;
|
||||||
|
StatementStr =
|
||||||
|
"UPDATE CommandList SET WaitingForFile=?, AttachDate=?, AttachSize=? WHERE UUID=?";
|
||||||
|
|
||||||
|
Statement << ConvertParams(StatementStr), Poco::Data::Keywords::use(WaitForFile),
|
||||||
|
Poco::Data::Keywords::use(Now), Poco::Data::Keywords::use(Size),
|
||||||
|
Poco::Data::Keywords::use(UUID);
|
||||||
|
Statement.execute();
|
||||||
Sess.commit();
|
Sess.commit();
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
} catch (const Poco::Exception &E) {
|
} catch (const Poco::Exception &E) {
|
||||||
Logger().log(E);
|
Logger().log(E);
|
||||||
@@ -689,7 +688,7 @@ namespace OpenWifi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
bool Storage::GetAttachedFileContent(std::string &UUID, const std::string &SerialNumber,
|
bool Storage::GetAttachedFileContent(std::string &UUID, const std::string &SerialNumber,
|
||||||
std::string &FileContent, std::string &Type) {
|
std::string &FileContent, std::string &Type, int &WaitingForFile) {
|
||||||
try {
|
try {
|
||||||
Poco::Data::BLOB L;
|
Poco::Data::BLOB L;
|
||||||
/*
|
/*
|
||||||
@@ -702,10 +701,10 @@ namespace OpenWifi {
|
|||||||
Poco::Data::Statement Select1(Sess);
|
Poco::Data::Statement Select1(Sess);
|
||||||
|
|
||||||
std::string TmpSerialNumber;
|
std::string TmpSerialNumber;
|
||||||
std::string st1{"SELECT SerialNumber, Command FROM CommandList WHERE UUID=?"};
|
std::string st1{"SELECT SerialNumber, Command , WaitingForFile FROM CommandList WHERE UUID=?"};
|
||||||
std::string Command;
|
std::string Command;
|
||||||
Select1 << ConvertParams(st1), Poco::Data::Keywords::into(TmpSerialNumber),
|
Select1 << ConvertParams(st1), Poco::Data::Keywords::into(TmpSerialNumber),
|
||||||
Poco::Data::Keywords::into(Command), Poco::Data::Keywords::use(UUID);
|
Poco::Data::Keywords::into(Command), Poco::Data::Keywords::into(WaitingForFile), Poco::Data::Keywords::use(UUID);
|
||||||
Select1.execute();
|
Select1.execute();
|
||||||
|
|
||||||
if (TmpSerialNumber != SerialNumber) {
|
if (TmpSerialNumber != SerialNumber) {
|
||||||
@@ -825,4 +824,4 @@ namespace OpenWifi {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace OpenWifi
|
} // namespace OpenWifi
|
||||||
|
|||||||
Reference in New Issue
Block a user