mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralgw.git
synced 2025-11-02 11:47:47 +00:00
Compare commits
39 Commits
v3.2.0-RC2
...
add_enroll
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3b7a24ea30 | ||
|
|
438309714f | ||
|
|
a9130eeb75 | ||
|
|
33068fca9e | ||
|
|
d329151f6c | ||
|
|
ec846006bb | ||
|
|
242261de0a | ||
|
|
31a4edead5 | ||
|
|
f7b697f219 | ||
|
|
e020da75fc | ||
|
|
89702f56e0 | ||
|
|
0ac97442c0 | ||
|
|
e38b4c8a13 | ||
|
|
9c5bbee834 | ||
|
|
a5d1eebe6d | ||
|
|
ee14f064c8 | ||
|
|
dbf52c1f23 | ||
|
|
9dc6a6bf97 | ||
|
|
1c0556f8bf | ||
|
|
d298139525 | ||
|
|
a37c961f5b | ||
|
|
75bcbd748c | ||
|
|
b6eba2a96d | ||
|
|
17082803d4 | ||
|
|
26b9a96506 | ||
|
|
5ce8dae9ec | ||
|
|
7da135c1e5 | ||
|
|
50ee4ba5cb | ||
|
|
3a8109d7ad | ||
|
|
56232966ec | ||
|
|
1ecf98d712 | ||
|
|
f5b60ced61 | ||
|
|
e4d141bb8e | ||
|
|
25b4288050 | ||
|
|
82430c2d5d | ||
|
|
7b68ec0536 | ||
|
|
839f4fec44 | ||
|
|
c4178209bb | ||
|
|
79ab67db50 |
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -21,7 +21,7 @@ defaults:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
docker:
|
docker:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
DOCKER_REGISTRY_URL: tip-tip-wlan-cloud-ucentral.jfrog.io
|
DOCKER_REGISTRY_URL: tip-tip-wlan-cloud-ucentral.jfrog.io
|
||||||
DOCKER_REGISTRY_USERNAME: ucentral
|
DOCKER_REGISTRY_USERNAME: ucentral
|
||||||
|
|||||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@@ -11,7 +11,7 @@ defaults:
|
|||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
helm-package:
|
helm-package:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-latest
|
||||||
env:
|
env:
|
||||||
HELM_REPO_URL: https://tip.jfrog.io/artifactory/tip-wlan-cloud-ucentral-helm/
|
HELM_REPO_URL: https://tip.jfrog.io/artifactory/tip-wlan-cloud-ucentral-helm/
|
||||||
HELM_REPO_USERNAME: ucentral
|
HELM_REPO_USERNAME: ucentral
|
||||||
|
|||||||
@@ -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 4.1.0)
|
||||||
|
|
||||||
set(CMAKE_CXX_STANDARD 20)
|
set(CMAKE_CXX_STANDARD 20)
|
||||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||||
|
|||||||
40
PROTOCOL.md
40
PROTOCOL.md
@@ -324,6 +324,20 @@ should respond with message indicating failure or success.
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
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:
|
The device should answer:
|
||||||
```json
|
```json
|
||||||
{ "jsonrpc" : "2.0",
|
{ "jsonrpc" : "2.0",
|
||||||
@@ -866,6 +880,32 @@ The device should answer:
|
|||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### Controller wants the device to perform re-enrollment
|
||||||
|
Controller sends this command to trigger re-enrollment, i.e. update of operational certificate. Extreme care must be taken.
|
||||||
|
```json
|
||||||
|
{ "jsonrpc" : "2.0" ,
|
||||||
|
"method" : "reenroll" ,
|
||||||
|
"params" : {
|
||||||
|
"serial" : <serial number>,
|
||||||
|
"when" : Optional - <UTC time when to apply this config, 0 mean immediate, this is a suggestion>
|
||||||
|
},
|
||||||
|
"id" : <some number>
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The device should answer:
|
||||||
|
```json
|
||||||
|
{ "jsonrpc" : "2.0" ,
|
||||||
|
"result" : {
|
||||||
|
"serial" : <serial number> ,
|
||||||
|
"status" : {
|
||||||
|
"error" : <0 or the value of $? from the shell running the command, 255 signifies a timeout>,
|
||||||
|
"txt" : <text describing the error or success>
|
||||||
|
},
|
||||||
|
"id" : <same number as request>
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
#### Controller wants the device to switch to another controller
|
#### Controller wants the device to switch to another controller
|
||||||
Controller sends this when the device should change the controller it connects to without looking up a new redirector.
|
Controller sends this when the device should change the controller it connects to without looking up a new redirector.
|
||||||
|
|
||||||
|
|||||||
@@ -1576,6 +1576,15 @@ components:
|
|||||||
format: base64
|
format: base64
|
||||||
description: This is a base64 encoded string of the certificate bundle (the current bundle .tar.gz file from the PKI portal)
|
description: This is a base64 encoded string of the certificate bundle (the current bundle .tar.gz file from the PKI portal)
|
||||||
|
|
||||||
|
ReenrollRequest:
|
||||||
|
type: object
|
||||||
|
properties:
|
||||||
|
serialNumber:
|
||||||
|
type: string
|
||||||
|
when:
|
||||||
|
type: integer
|
||||||
|
format: int64
|
||||||
|
|
||||||
PowerCycleRequest:
|
PowerCycleRequest:
|
||||||
type: object
|
type: object
|
||||||
properties:
|
properties:
|
||||||
@@ -3056,6 +3065,32 @@ paths:
|
|||||||
404:
|
404:
|
||||||
$ref: '#/components/responses/NotFound'
|
$ref: '#/components/responses/NotFound'
|
||||||
|
|
||||||
|
/device/{serialNumber}/reenroll:
|
||||||
|
post:
|
||||||
|
tags:
|
||||||
|
- Commands
|
||||||
|
summary: Reenroll operational certificate for the device.
|
||||||
|
operationId: reenrollCertificate
|
||||||
|
parameters:
|
||||||
|
- in: path
|
||||||
|
name: serialNumber
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
required: true
|
||||||
|
requestBody:
|
||||||
|
description: Reenroll operational certificate for the device
|
||||||
|
content:
|
||||||
|
application/json:
|
||||||
|
schema:
|
||||||
|
$ref: '#/components/schemas/ReenrollRequest'
|
||||||
|
responses:
|
||||||
|
200:
|
||||||
|
$ref: '#/components/responses/Success'
|
||||||
|
403:
|
||||||
|
$ref: '#/components/responses/Unauthorized'
|
||||||
|
404:
|
||||||
|
$ref: '#/components/responses/NotFound'
|
||||||
|
|
||||||
/device/{serialNumber}/powercycle:
|
/device/{serialNumber}/powercycle:
|
||||||
post:
|
post:
|
||||||
tags:
|
tags:
|
||||||
|
|||||||
@@ -213,6 +213,7 @@ namespace OpenWifi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
State_.certificateExpiryDate = PeerCert.expiresOn().timestamp().epochTime();
|
State_.certificateExpiryDate = PeerCert.expiresOn().timestamp().epochTime();
|
||||||
|
State_.certificateIssuerName = PeerCert.issuerName();
|
||||||
|
|
||||||
poco_trace(Logger_,
|
poco_trace(Logger_,
|
||||||
fmt::format("TLS-CONNECTION({}): Session={} CN={} Completed. (t={})", CId_,
|
fmt::format("TLS-CONNECTION({}): Session={} CN={} Completed. (t={})", CId_,
|
||||||
|
|||||||
@@ -71,14 +71,18 @@ namespace OpenWifi {
|
|||||||
bool AP_WS_Server::ValidateCertificate(const std::string &ConnectionId,
|
bool AP_WS_Server::ValidateCertificate(const std::string &ConnectionId,
|
||||||
const Poco::Crypto::X509Certificate &Certificate) {
|
const Poco::Crypto::X509Certificate &Certificate) {
|
||||||
if (IsCertOk()) {
|
if (IsCertOk()) {
|
||||||
if (!Certificate.issuedBy(*IssuerCert_)) {
|
// validate certificate agains trusted chain
|
||||||
poco_warning(
|
for (const auto &cert : ClientCasCerts_) {
|
||||||
Logger(),
|
if (Certificate.issuedBy(cert)) {
|
||||||
fmt::format("CERTIFICATE({}): issuer mismatch. Local='{}' Incoming='{}'",
|
return true;
|
||||||
ConnectionId, IssuerCert_->issuerName(), Certificate.issuerName()));
|
}
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
return true;
|
poco_warning(
|
||||||
|
Logger(),
|
||||||
|
fmt::format(
|
||||||
|
"CERTIFICATE({}): issuer mismatch. Certificate not issued by any trusted CA",
|
||||||
|
ConnectionId)
|
||||||
|
);
|
||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -133,6 +137,13 @@ namespace OpenWifi {
|
|||||||
Context->addChainCertificate(Issuing);
|
Context->addChainCertificate(Issuing);
|
||||||
Context->addCertificateAuthority(Issuing);
|
Context->addCertificateAuthority(Issuing);
|
||||||
|
|
||||||
|
// add certificates from clientcas to trust chain
|
||||||
|
ClientCasCerts_ = Poco::Net::X509Certificate::readPEM(Svr.ClientCas());
|
||||||
|
for (const auto &cert : ClientCasCerts_) {
|
||||||
|
Context->addChainCertificate(cert);
|
||||||
|
Context->addCertificateAuthority(cert);
|
||||||
|
}
|
||||||
|
|
||||||
Poco::Crypto::RSAKey Key("", Svr.KeyFile(), Svr.KeyFilePassword());
|
Poco::Crypto::RSAKey Key("", Svr.KeyFile(), Svr.KeyFilePassword());
|
||||||
Context->usePrivateKey(Key);
|
Context->usePrivateKey(Key);
|
||||||
|
|
||||||
@@ -784,4 +795,4 @@ namespace OpenWifi {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace OpenWifi
|
} // namespace OpenWifi
|
||||||
|
|||||||
@@ -223,6 +223,7 @@ namespace OpenWifi {
|
|||||||
mutable std::array<std::mutex,MACHashMax> SerialNumbersMutex_;
|
mutable std::array<std::mutex,MACHashMax> SerialNumbersMutex_;
|
||||||
|
|
||||||
std::unique_ptr<Poco::Crypto::X509Certificate> IssuerCert_;
|
std::unique_ptr<Poco::Crypto::X509Certificate> IssuerCert_;
|
||||||
|
std::vector<Poco::Crypto::X509Certificate> ClientCasCerts_;
|
||||||
std::list<std::unique_ptr<Poco::Net::HTTPServer>> WebServers_;
|
std::list<std::unique_ptr<Poco::Net::HTTPServer>> WebServers_;
|
||||||
Poco::ThreadPool DeviceConnectionPool_{"ws:dev-pool", 4, 256};
|
Poco::ThreadPool DeviceConnectionPool_{"ws:dev-pool", 4, 256};
|
||||||
Poco::Net::SocketReactor Reactor_;
|
Poco::Net::SocketReactor Reactor_;
|
||||||
|
|||||||
@@ -111,7 +111,7 @@ namespace OpenWifi {
|
|||||||
i >> cache;
|
i >> cache;
|
||||||
|
|
||||||
for (const auto &[Type, Platform] : cache.items()) {
|
for (const auto &[Type, Platform] : cache.items()) {
|
||||||
Platforms_[Type] = Poco::toLower(to_string(Platform));
|
Platforms_[Type] = Poco::toLower(Platform.get<std::string>());
|
||||||
}
|
}
|
||||||
} catch (...) {
|
} catch (...) {
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|
||||||
|
|||||||
@@ -170,6 +170,7 @@ namespace OpenWifi {
|
|||||||
{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::fixedconfig, false, true, &RESTAPI_device_commandHandler::FixedConfig, 120000ms},
|
||||||
{APCommands::Commands::cablediagnostics, false, true, &RESTAPI_device_commandHandler::CableDiagnostics, 120000ms},
|
{APCommands::Commands::cablediagnostics, false, true, &RESTAPI_device_commandHandler::CableDiagnostics, 120000ms},
|
||||||
|
{APCommands::Commands::reenroll, false, true, &RESTAPI_device_commandHandler::ReEnroll, 120000ms},
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -694,9 +695,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) {
|
||||||
@@ -1629,4 +1652,45 @@ namespace OpenWifi {
|
|||||||
*ParsedBody_, *Request, *Response, timeout, nullptr, this,
|
*ParsedBody_, *Request, *Response, timeout, nullptr, this,
|
||||||
Logger_);
|
Logger_);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void RESTAPI_device_commandHandler::ReEnroll(
|
||||||
|
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("REENROLL", CMD_UUID, CMD_RPC, RESTAPI::Errors::ACCESS_DENIED);
|
||||||
|
return UnAuthorized(RESTAPI::Errors::ACCESS_DENIED);
|
||||||
|
}
|
||||||
|
|
||||||
|
poco_debug(Logger_, fmt::format("REENROLL({},{}): TID={} user={} serial={}", CMD_UUID,
|
||||||
|
CMD_RPC, TransactionId_, Requester(), SerialNumber_));
|
||||||
|
|
||||||
|
if(IsDeviceSimulated(SerialNumber_)) {
|
||||||
|
CallCanceled("REENROLL", CMD_UUID, CMD_RPC, RESTAPI::Errors::SimulatedDeviceNotSupported);
|
||||||
|
return BadRequest(RESTAPI::Errors::SimulatedDeviceNotSupported);
|
||||||
|
}
|
||||||
|
|
||||||
|
GWObjects::ReEnroll 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::REENROLL;
|
||||||
|
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::reenroll, false, Cmd,
|
||||||
|
*ParsedBody_, *Request, *Response, timeout, nullptr, this,
|
||||||
|
Logger_);
|
||||||
|
}
|
||||||
} // namespace OpenWifi
|
} // namespace OpenWifi
|
||||||
|
|||||||
@@ -74,6 +74,8 @@ namespace OpenWifi {
|
|||||||
const GWObjects::DeviceRestrictions &R);
|
const GWObjects::DeviceRestrictions &R);
|
||||||
void CableDiagnostics(const std::string &UUID, uint64_t RPC, std::chrono::milliseconds timeout,
|
void CableDiagnostics(const std::string &UUID, uint64_t RPC, std::chrono::milliseconds timeout,
|
||||||
const GWObjects::DeviceRestrictions &R);
|
const GWObjects::DeviceRestrictions &R);
|
||||||
|
void ReEnroll(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}"};
|
||||||
|
|||||||
@@ -297,6 +297,7 @@ namespace OpenWifi::GWObjects {
|
|||||||
field_to_json(Obj, "connectionCompletionTime", connectionCompletionTime);
|
field_to_json(Obj, "connectionCompletionTime", connectionCompletionTime);
|
||||||
field_to_json(Obj, "totalConnectionTime", Utils::Now() - started);
|
field_to_json(Obj, "totalConnectionTime", Utils::Now() - started);
|
||||||
field_to_json(Obj, "certificateExpiryDate", certificateExpiryDate);
|
field_to_json(Obj, "certificateExpiryDate", certificateExpiryDate);
|
||||||
|
field_to_json(Obj, "certificateIssuerName", certificateIssuerName);
|
||||||
field_to_json(Obj, "connectReason", connectReason);
|
field_to_json(Obj, "connectReason", connectReason);
|
||||||
field_to_json(Obj, "uptime", uptime);
|
field_to_json(Obj, "uptime", uptime);
|
||||||
field_to_json(Obj, "compatible", Compatible);
|
field_to_json(Obj, "compatible", Compatible);
|
||||||
@@ -358,6 +359,7 @@ namespace OpenWifi::GWObjects {
|
|||||||
field_from_json(Obj, "connectionCompletionTime", connectionCompletionTime);
|
field_from_json(Obj, "connectionCompletionTime", connectionCompletionTime);
|
||||||
field_from_json(Obj, "totalConnectionTime", totalConnectionTime);
|
field_from_json(Obj, "totalConnectionTime", totalConnectionTime);
|
||||||
field_from_json(Obj, "certificateExpiryDate", certificateExpiryDate);
|
field_from_json(Obj, "certificateExpiryDate", certificateExpiryDate);
|
||||||
|
field_from_json(Obj, "certificateIssuerName", certificateIssuerName);
|
||||||
field_from_json(Obj, "connectReason", connectReason);
|
field_from_json(Obj, "connectReason", connectReason);
|
||||||
field_from_json(Obj, "uptime", uptime);
|
field_from_json(Obj, "uptime", uptime);
|
||||||
field_from_json(Obj, "hasRADIUSSessions", hasRADIUSSessions );
|
field_from_json(Obj, "hasRADIUSSessions", hasRADIUSSessions );
|
||||||
@@ -819,4 +821,14 @@ namespace OpenWifi::GWObjects {
|
|||||||
}
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ReEnroll::from_json(const Poco::JSON::Object::Ptr &Obj) {
|
||||||
|
try {
|
||||||
|
field_from_json(Obj, "serial", serialNumber);
|
||||||
|
field_from_json(Obj, "when", when);
|
||||||
|
return true;
|
||||||
|
} catch (const Poco::Exception &E) {
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
} // namespace OpenWifi::GWObjects
|
} // namespace OpenWifi::GWObjects
|
||||||
|
|||||||
@@ -42,6 +42,7 @@ namespace OpenWifi::GWObjects {
|
|||||||
uint64_t sessionId = 0;
|
uint64_t sessionId = 0;
|
||||||
double connectionCompletionTime = 0.0;
|
double connectionCompletionTime = 0.0;
|
||||||
std::uint64_t certificateExpiryDate = 0;
|
std::uint64_t certificateExpiryDate = 0;
|
||||||
|
std::string certificateIssuerName;
|
||||||
std::uint64_t hasRADIUSSessions = 0;
|
std::uint64_t hasRADIUSSessions = 0;
|
||||||
bool hasGPS = false;
|
bool hasGPS = false;
|
||||||
std::uint64_t sanity=0;
|
std::uint64_t sanity=0;
|
||||||
@@ -545,6 +546,12 @@ namespace OpenWifi::GWObjects {
|
|||||||
std::uint64_t when;
|
std::uint64_t when;
|
||||||
std::vector<std::string> ports;
|
std::vector<std::string> ports;
|
||||||
|
|
||||||
|
bool from_json(const Poco::JSON::Object::Ptr &Obj);
|
||||||
|
};
|
||||||
|
struct ReEnroll {
|
||||||
|
std::string serialNumber;
|
||||||
|
std::uint64_t when;
|
||||||
|
|
||||||
bool from_json(const Poco::JSON::Object::Ptr &Obj);
|
bool from_json(const Poco::JSON::Object::Ptr &Obj);
|
||||||
};
|
};
|
||||||
} // namespace OpenWifi::GWObjects
|
} // namespace OpenWifi::GWObjects
|
||||||
|
|||||||
@@ -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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -3949,8 +3952,10 @@ static std::string DefaultAPSchema = R"foo(
|
|||||||
"inactive-deauth",
|
"inactive-deauth",
|
||||||
"key-mismatch",
|
"key-mismatch",
|
||||||
"beacon-report",
|
"beacon-report",
|
||||||
"radar-detected"
|
"radar-detected",
|
||||||
]
|
"ft-finish",
|
||||||
|
"sta-authorized"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -4652,16 +4657,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"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -7911,7 +7922,9 @@ static std::string DefaultSWITCHSchema = R"foo(
|
|||||||
"inactive-deauth",
|
"inactive-deauth",
|
||||||
"key-mismatch",
|
"key-mismatch",
|
||||||
"beacon-report",
|
"beacon-report",
|
||||||
"radar-detected"
|
"radar-detected",
|
||||||
|
"ft-finish",
|
||||||
|
"sta-authorized"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -68,6 +68,16 @@ namespace OpenWifi {
|
|||||||
Context->addCertificateAuthority(Issuing);
|
Context->addCertificateAuthority(Issuing);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!client_cas_.empty()) {
|
||||||
|
// add certificates specified in clientcas
|
||||||
|
std::vector<Poco::Crypto::X509Certificate> Certs =
|
||||||
|
Poco::Net::X509Certificate::readPEM(client_cas_);
|
||||||
|
for (const auto &cert : Certs) {
|
||||||
|
Context->addChainCertificate(cert);
|
||||||
|
Context->addCertificateAuthority(cert);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
Poco::Crypto::RSAKey Key("", key_file_, key_file_password_);
|
Poco::Crypto::RSAKey Key("", key_file_, key_file_password_);
|
||||||
Context->usePrivateKey(Key);
|
Context->usePrivateKey(Key);
|
||||||
|
|
||||||
|
|||||||
@@ -45,6 +45,7 @@ namespace OpenWifi {
|
|||||||
[[nodiscard]] inline auto KeyFile() const { return key_file_; };
|
[[nodiscard]] inline auto KeyFile() const { return key_file_; };
|
||||||
[[nodiscard]] inline auto CertFile() const { return cert_file_; };
|
[[nodiscard]] inline auto CertFile() const { return cert_file_; };
|
||||||
[[nodiscard]] inline auto RootCA() const { return root_ca_; };
|
[[nodiscard]] inline auto RootCA() const { return root_ca_; };
|
||||||
|
[[nodiscard]] inline auto ClientCas() const { return client_cas_; };
|
||||||
[[nodiscard]] inline auto KeyFilePassword() const { return key_file_password_; };
|
[[nodiscard]] inline auto KeyFilePassword() const { return key_file_password_; };
|
||||||
[[nodiscard]] inline auto IssuerCertFile() const { return issuer_cert_file_; };
|
[[nodiscard]] inline auto IssuerCertFile() const { return issuer_cert_file_; };
|
||||||
[[nodiscard]] inline auto Name() const { return name_; };
|
[[nodiscard]] inline auto Name() const { return name_; };
|
||||||
|
|||||||
@@ -583,6 +583,7 @@ namespace OpenWifi::RESTAPI::Protocol {
|
|||||||
|
|
||||||
static const char *FIXEDCONFIG = "fixedconfig";
|
static const char *FIXEDCONFIG = "fixedconfig";
|
||||||
static const char *CABLEDIAGNOSTICS = "cable-diagnostics";
|
static const char *CABLEDIAGNOSTICS = "cable-diagnostics";
|
||||||
|
static const char *REENROLL = "reenroll";
|
||||||
} // namespace OpenWifi::RESTAPI::Protocol
|
} // namespace OpenWifi::RESTAPI::Protocol
|
||||||
|
|
||||||
namespace OpenWifi::uCentralProtocol {
|
namespace OpenWifi::uCentralProtocol {
|
||||||
@@ -611,6 +612,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";
|
||||||
@@ -697,6 +699,8 @@ namespace OpenWifi::uCentralProtocol {
|
|||||||
|
|
||||||
static const char *FIXEDCONFIG = "fixedconfig";
|
static const char *FIXEDCONFIG = "fixedconfig";
|
||||||
static const char *CABLEDIAGNOSTICS = "cable-diagnostics";
|
static const char *CABLEDIAGNOSTICS = "cable-diagnostics";
|
||||||
|
static const char *REENROLL = "reenroll";
|
||||||
|
|
||||||
|
|
||||||
} // namespace OpenWifi::uCentralProtocol
|
} // namespace OpenWifi::uCentralProtocol
|
||||||
|
|
||||||
@@ -796,6 +800,7 @@ namespace OpenWifi::APCommands {
|
|||||||
powercycle,
|
powercycle,
|
||||||
fixedconfig,
|
fixedconfig,
|
||||||
cablediagnostics,
|
cablediagnostics,
|
||||||
|
reenroll,
|
||||||
unknown
|
unknown
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -811,7 +816,8 @@ namespace OpenWifi::APCommands {
|
|||||||
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
|
RESTAPI::Protocol::FIXEDCONFIG, RESTAPI::Protocol::CABLEDIAGNOSTICS,
|
||||||
|
RESTAPI::Protocol::REENROLL
|
||||||
};
|
};
|
||||||
|
|
||||||
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
|
||||||
|
|||||||
@@ -14,6 +14,7 @@
|
|||||||
#include "nlohmann/json.hpp"
|
#include "nlohmann/json.hpp"
|
||||||
|
|
||||||
#include "Poco/NObserver.h"
|
#include "Poco/NObserver.h"
|
||||||
|
#include <Poco/Net/Context.h>
|
||||||
#include "Poco/Net/SocketNotification.h"
|
#include "Poco/Net/SocketNotification.h"
|
||||||
#include "Poco/Net/NetException.h"
|
#include "Poco/Net/NetException.h"
|
||||||
#include "Poco/Net/WebSocketImpl.h"
|
#include "Poco/Net/WebSocketImpl.h"
|
||||||
@@ -71,6 +72,7 @@ namespace OpenWifi {
|
|||||||
const auto &RootCas =
|
const auto &RootCas =
|
||||||
MicroServiceConfigPath("ucentral.websocket.host.0.rootca", "");
|
MicroServiceConfigPath("ucentral.websocket.host.0.rootca", "");
|
||||||
const auto &Cas = MicroServiceConfigPath("ucentral.websocket.host.0.cas", "");
|
const auto &Cas = MicroServiceConfigPath("ucentral.websocket.host.0.cas", "");
|
||||||
|
const auto &ClientCasFile = MicroServiceConfigPath("ucentral.websocket.host.0.clientcas", "");
|
||||||
|
|
||||||
Poco::Net::Context::Params P;
|
Poco::Net::Context::Params P;
|
||||||
|
|
||||||
@@ -86,6 +88,7 @@ namespace OpenWifi {
|
|||||||
Poco::Crypto::X509Certificate Cert(CertFileName);
|
Poco::Crypto::X509Certificate Cert(CertFileName);
|
||||||
Poco::Crypto::X509Certificate Root(RootCaFileName);
|
Poco::Crypto::X509Certificate Root(RootCaFileName);
|
||||||
Poco::Crypto::X509Certificate Issuing(IssuerFileName);
|
Poco::Crypto::X509Certificate Issuing(IssuerFileName);
|
||||||
|
std::vector<Poco::Crypto::X509Certificate> ClientCasCerts;
|
||||||
Poco::Crypto::RSAKey Key("", KeyFileName, KeyPassword);
|
Poco::Crypto::RSAKey Key("", KeyFileName, KeyPassword);
|
||||||
|
|
||||||
DeviceSecureContext->useCertificate(Cert);
|
DeviceSecureContext->useCertificate(Cert);
|
||||||
@@ -93,7 +96,11 @@ namespace OpenWifi {
|
|||||||
DeviceSecureContext->addCertificateAuthority(Root);
|
DeviceSecureContext->addCertificateAuthority(Root);
|
||||||
DeviceSecureContext->addChainCertificate(Issuing);
|
DeviceSecureContext->addChainCertificate(Issuing);
|
||||||
DeviceSecureContext->addCertificateAuthority(Issuing);
|
DeviceSecureContext->addCertificateAuthority(Issuing);
|
||||||
DeviceSecureContext->addCertificateAuthority(Root);
|
ClientCasCerts = Poco::Net::X509Certificate::readPEM(ClientCasFile);
|
||||||
|
for (const auto &cert : ClientCasCerts) {
|
||||||
|
DeviceSecureContext->addChainCertificate(cert);
|
||||||
|
DeviceSecureContext->addCertificateAuthority(cert);
|
||||||
|
}
|
||||||
DeviceSecureContext->enableSessionCache(true);
|
DeviceSecureContext->enableSessionCache(true);
|
||||||
DeviceSecureContext->setSessionCacheSize(0);
|
DeviceSecureContext->setSessionCacheSize(0);
|
||||||
DeviceSecureContext->setSessionTimeout(120);
|
DeviceSecureContext->setSessionTimeout(120);
|
||||||
@@ -1117,4 +1124,4 @@ namespace OpenWifi {
|
|||||||
RTTYS_EndPoint::~RTTYS_EndPoint() {
|
RTTYS_EndPoint::~RTTYS_EndPoint() {
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace OpenWifi
|
} // namespace OpenWifi
|
||||||
|
|||||||
@@ -644,8 +644,6 @@ 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);
|
|
||||||
|
|
||||||
if (Size < FileUploader()->MaxSize()) {
|
if (Size < FileUploader()->MaxSize()) {
|
||||||
|
|
||||||
@@ -668,9 +666,10 @@ namespace OpenWifi {
|
|||||||
} else {
|
} else {
|
||||||
poco_warning(Logger(), fmt::format("File {} is too large.", UUID));
|
poco_warning(Logger(), fmt::format("File {} is too large.", UUID));
|
||||||
}
|
}
|
||||||
Sess.commit();
|
|
||||||
|
|
||||||
// update CommandList here to ensure that file us uploaded
|
// update CommandList here to ensure that file us uploaded
|
||||||
|
Sess.begin();
|
||||||
|
Poco::Data::Statement Statement(Sess);
|
||||||
std::string StatementStr;
|
std::string StatementStr;
|
||||||
StatementStr =
|
StatementStr =
|
||||||
"UPDATE CommandList SET WaitingForFile=?, AttachDate=?, AttachSize=? WHERE UUID=?";
|
"UPDATE CommandList SET WaitingForFile=?, AttachDate=?, AttachSize=? WHERE UUID=?";
|
||||||
@@ -825,4 +824,4 @@ namespace OpenWifi {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace OpenWifi
|
} // namespace OpenWifi
|
||||||
|
|||||||
Reference in New Issue
Block a user