wmbusmeters/src/wmbus_cul.cc

476 wiersze
14 KiB
C++
Czysty Zwykły widok Historia

2019-11-22 17:50:55 +00:00
/*
2022-04-29 06:38:09 +00:00
Copyright (C) 2019-2022 Fredrik Öhrström (gpl-3.0-or-later)
2019-11-22 17:50:55 +00:00
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/>.
*/
#include"wmbus.h"
2020-10-25 07:21:26 +00:00
#include"wmbus_common_implementation.h"
2020-01-27 08:29:40 +00:00
#include"wmbus_utils.h"
2019-11-22 17:50:55 +00:00
#include"wmbus_cul.h"
#include"serial.h"
#include<assert.h>
#include<fcntl.h>
#include<grp.h>
#include<pthread.h>
#include<semaphore.h>
#include<string.h>
2020-05-11 09:59:47 +00:00
#include<errno.h>
2019-11-22 17:50:55 +00:00
#include<sys/stat.h>
#include<sys/types.h>
#include<unistd.h>
using namespace std;
2020-02-03 17:20:03 +00:00
#define SET_LINK_MODE 1
#define SET_X01_MODE 2
2022-08-20 17:58:28 +00:00
struct WMBusCUL : public virtual BusDeviceCommonImplementation
2019-11-22 17:50:55 +00:00
{
bool ping();
string getDeviceId();
string getDeviceUniqueId();
2019-11-22 17:50:55 +00:00
LinkModeSet getLinkModes();
2020-08-01 19:56:46 +00:00
void deviceReset();
bool deviceSetLinkModes(LinkModeSet lms);
2019-11-22 17:50:55 +00:00
LinkModeSet supportedLinkModes() {
return
C1_bit |
2020-02-03 17:20:03 +00:00
S1_bit |
2019-11-22 17:50:55 +00:00
T1_bit;
}
int numConcurrentLinkModes() { return 1; }
2019-11-22 17:50:55 +00:00
bool canSetLinkModes(LinkModeSet lms)
{
if (lms.empty()) return false;
2019-11-22 17:50:55 +00:00
if (!supportedLinkModes().supports(lms)) return false;
// Ok, the supplied link modes are compatible,
// but cul can only listen to one at a time.
return 1 == countSetBits(lms.asBits());
2019-11-22 17:50:55 +00:00
}
void processSerialData();
void simulate();
WMBusCUL(string alias, shared_ptr<SerialDevice> serial, shared_ptr<SerialCommunicationManager> manager);
2019-11-22 17:50:55 +00:00
~WMBusCUL() { }
private:
2020-08-01 19:56:46 +00:00
LinkModeSet link_modes_ {};
2019-11-22 17:50:55 +00:00
vector<uchar> read_buffer_;
vector<uchar> received_payload_;
2020-02-03 17:20:03 +00:00
string sent_command_;
string received_response_;
2019-11-22 17:50:55 +00:00
FrameStatus checkCULFrame(vector<uchar> &data,
size_t *hex_frame_length,
2021-02-05 14:31:01 +00:00
vector<uchar> &payload,
int *rssi_dbm);
2019-11-22 17:50:55 +00:00
string setup_;
};
2022-08-20 17:58:28 +00:00
shared_ptr<BusDevice> openCUL(Detected detected, shared_ptr<SerialCommunicationManager> manager, shared_ptr<SerialDevice> serial_override)
2019-11-22 17:50:55 +00:00
{
2021-08-29 18:26:06 +00:00
string bus_alias = detected.specified_device.bus_alias;
2019-11-22 17:50:55 +00:00
if (serial_override)
{
2021-08-29 18:26:06 +00:00
WMBusCUL *imp = new WMBusCUL(bus_alias, serial_override, manager);
imp->markAsNoLongerSerial();
2022-08-20 17:58:28 +00:00
return shared_ptr<BusDevice>(imp);
2019-11-22 17:50:55 +00:00
}
2022-04-07 19:23:55 +00:00
if (detected.specified_device.command != "")
{
string identifier = "cmd_" + to_string(detected.specified_device.index);
vector<string> args;
vector<string> envs;
args.push_back("-c");
args.push_back(detected.specified_device.command);
auto serial = manager->createSerialDeviceCommand(identifier, "/bin/sh", args, envs, "cul");
WMBusCUL *imp = new WMBusCUL(bus_alias, serial, manager);
2022-08-20 17:58:28 +00:00
return shared_ptr<BusDevice>(imp);
2022-04-07 19:23:55 +00:00
}
string device = detected.found_file;
auto serial = manager->createSerialDeviceTTY(device.c_str(), 38400, PARITY::NONE, "cul");
2021-08-29 18:26:06 +00:00
WMBusCUL *imp = new WMBusCUL(bus_alias, serial, manager);
2022-08-20 17:58:28 +00:00
return shared_ptr<BusDevice>(imp);
2019-11-22 17:50:55 +00:00
}
WMBusCUL::WMBusCUL(string alias, shared_ptr<SerialDevice> serial, shared_ptr<SerialCommunicationManager> manager) :
2022-08-20 17:58:28 +00:00
BusDeviceCommonImplementation(alias, DEVICE_CUL, manager, serial, true)
2019-11-22 17:50:55 +00:00
{
2020-08-01 19:56:46 +00:00
reset();
2019-11-22 17:50:55 +00:00
}
bool WMBusCUL::ping()
{
verbose("(cul) ping\n");
return true;
}
string WMBusCUL::getDeviceId()
2019-11-22 17:50:55 +00:00
{
verbose("(cul) getDeviceId\n");
2020-10-26 14:14:13 +00:00
return "";
2019-11-22 17:50:55 +00:00
}
string WMBusCUL::getDeviceUniqueId()
{
verbose("(cul) getDeviceUniqueId\n");
2020-10-26 14:14:13 +00:00
return "";
}
2019-11-22 17:50:55 +00:00
LinkModeSet WMBusCUL::getLinkModes()
{
return link_modes_;
2019-11-22 17:50:55 +00:00
}
2020-08-01 19:56:46 +00:00
void WMBusCUL::deviceReset()
{
// No device specific settings needed right now.
// The common code in wmbus.cc reset()
// will open the serial device and potentially
// set the link modes properly.
}
bool WMBusCUL::deviceSetLinkModes(LinkModeSet lms)
2019-11-22 17:50:55 +00:00
{
if (serial()->readonly()) return true; // Feeding from stdin or file.
if (!canSetLinkModes(lms))
{
string modes = lms.hr();
error("(cul) setting link mode(s) %s is not supported\n", modes.c_str());
}
{
// Empty the read buffer we do not want any partial data lying around
// because we expect a response to arrive.
LOCK_WMBUS_RECEIVING_BUFFER(deviceSetLinkMode_ClearBuffer);
read_buffer_.clear();
}
2019-11-22 17:50:55 +00:00
// 'brc' command: b - wmbus, r - receive, c - c mode (with t)
vector<uchar> msg(5);
msg[0] = 'b';
msg[1] = 'r';
if (lms.has(LinkMode::C1)) {
msg[2] = 'c';
} else if (lms.has(LinkMode::S1)) {
msg[2] = 's';
} else if (lms.has(LinkMode::T1)) {
msg[2] = 't';
}
msg[3] = 0xd;
msg[4] = 0xa;
2020-01-27 08:29:40 +00:00
verbose("(cul) set link mode %c\n", msg[2]);
2020-02-03 17:20:03 +00:00
sent_command_ = string(&msg[0], &msg[3]);
received_response_ = "";
2020-02-04 13:46:48 +00:00
bool sent = serial()->send(msg);
2020-10-26 14:14:13 +00:00
if (sent) waitForResponse(1);
2020-02-03 17:20:03 +00:00
sent_command_ = "";
debug("(cul) received \"%s\"", received_response_.c_str());
bool ok = true;
if (lms.has(LinkMode::C1)) {
if (received_response_ != "CMODE") ok = false;
} else if (lms.has(LinkMode::S1)) {
if (received_response_ != "SMODE") ok = false;
} else if (lms.has(LinkMode::T1)) {
if (received_response_ != "TMODE") ok = false;
}
if (!ok)
{
string modes = lms.hr();
error("(cul) setting link mode(s) %s is not supported for this cul device!\n", modes.c_str());
}
2021-02-05 14:31:01 +00:00
// X01 - start the receiver in normal mode
// X21 - start the receiver and report raw LQI and RSSI data
2019-11-22 17:50:55 +00:00
msg[0] = 'X';
2021-02-05 14:31:01 +00:00
msg[1] = '2'; // 6
2020-10-26 14:14:13 +00:00
msg[2] = '1'; // 7
msg[3] = 0xd;
msg[4] = 0xa;
2020-01-27 08:29:40 +00:00
sent = serial()->send(msg);
2020-02-03 17:20:03 +00:00
// Any response here, or does it silently move into listening mode?
return true;
2020-02-03 17:20:03 +00:00
}
2019-11-22 17:50:55 +00:00
void WMBusCUL::simulate()
{
}
2020-02-03 17:20:03 +00:00
string expectedResponses(vector<uchar> &data)
{
string safe = safeString(data);
if (safe.find("CMODE") != string::npos) return "CMODE";
if (safe.find("TMODE") != string::npos) return "TMODE";
if (safe.find("SMODE") != string::npos) return "SMODE";
return "";
}
2019-11-22 17:50:55 +00:00
void WMBusCUL::processSerialData()
{
vector<uchar> data;
// Receive and accumulate serial data until a full frame has been received.
2020-08-01 19:56:46 +00:00
serial()->receive(&data);
LOCK_WMBUS_RECEIVING_BUFFER(processSerialData);
2019-11-22 17:50:55 +00:00
read_buffer_.insert(read_buffer_.end(), data.begin(), data.end());
size_t frame_length;
vector<uchar> payload;
2021-02-05 14:31:01 +00:00
int rssi_dbm;
2019-11-22 17:50:55 +00:00
for (;;)
{
2021-02-05 14:31:01 +00:00
FrameStatus status = checkCULFrame(read_buffer_, &frame_length, payload, &rssi_dbm);
2019-11-22 17:50:55 +00:00
if (status == PartialFrame)
{
break;
}
if (status == TextAndNotFrame)
{
// The buffer has already been printed by serial cmd.
2020-02-03 17:20:03 +00:00
if (sent_command_ != "")
{
string r = expectedResponses(read_buffer_);
if (r != "")
{
received_response_ = r;
2020-10-26 14:14:13 +00:00
notifyResponseIsHere(1);
2020-02-03 17:20:03 +00:00
}
}
2019-11-22 17:50:55 +00:00
read_buffer_.clear();
break;
}
if (status == ErrorInFrame)
{
debug("(cul) error in received message.\n");
string msg = bin2hex(read_buffer_);
read_buffer_.clear();
break;
}
if (status == FullFrame)
{
read_buffer_.erase(read_buffer_.begin(), read_buffer_.begin()+frame_length);
AboutTelegram about("cul", rssi_dbm, FrameType::WMBUS);
2020-10-14 18:59:14 +00:00
handleTelegram(about, payload);
2019-11-22 17:50:55 +00:00
}
}
}
FrameStatus WMBusCUL::checkCULFrame(vector<uchar> &data,
2020-02-03 17:20:03 +00:00
size_t *hex_frame_length,
2021-02-05 14:31:01 +00:00
vector<uchar> &payload,
int *rssi_dbm)
2019-11-22 17:50:55 +00:00
{
if (data.size() == 0) return PartialFrame;
2020-02-06 18:01:48 +00:00
if (isDebugEnabled())
{
string s = safeString(data);
debug("(cul) checkCULFrame \"%s\"\n", s.c_str());
}
2020-02-06 18:01:48 +00:00
2019-11-22 17:50:55 +00:00
size_t eolp = 0;
// Look for end of line
for (; eolp < data.size(); ++eolp) {
if (data[eolp] == '\n') break; // Expect CRLF, look for LF ('\n')
2019-11-22 17:50:55 +00:00
}
2020-02-06 18:01:48 +00:00
if (eolp >= data.size())
{
debug("(cul) no eol found yet, partial frame\n");
return PartialFrame;
}
eolp++; // Point to byte after CRLF.
2020-02-16 19:23:47 +00:00
// Normally it is CRLF, but enable code to handle single LF as well.
int eof_len = data[eolp-2] == '\r' ? 2 : 1;
// If it was a CRLF then eof_len == 2, else it is 1.
2020-02-03 17:20:03 +00:00
if (data[0] != 'b')
{
2019-11-22 17:50:55 +00:00
// C1 and T1 telegrams should start with a 'b'
debug("(cul) no leading 'b' so it is text and no frame\n");
2020-02-03 17:20:03 +00:00
return TextAndNotFrame;
2019-11-22 17:50:55 +00:00
}
2021-02-05 14:31:01 +00:00
// Extract LQI and RSSI from message (appended 1 byte LQI and 1 byte RSSI at the end)
vector<uchar> hex_buffer;
vector<uchar> lqi_rssi;
hex_buffer.insert(hex_buffer.end(), data.begin()+eolp-eof_len-4, data.begin()+eolp-eof_len);
bool ok = hex2bin(hex_buffer, &lqi_rssi);
if(!ok)
{
string s = safeString(hex_buffer);
debug("(cul) bad hex for LQI and RSSI \"%s\"\n", s.c_str());
warning("(cul) warning: the LQI and RSSI hex string is not properly formatted!\n");
}
// LQI is 7 bits unsigned number and relative - range 0-127 lower is better
uint lqi = lqi_rssi[0]>>1;
// Raw RSSI value 8 bits 2's complement number
int8_t rssi_raw = lqi_rssi[1];
// Calculate dBm according to datasheet of CC1101 SWRS061I page 44
*rssi_dbm = rssi_raw/2 - 74;
if (isDebugEnabled())
{
debug("(cul) checkCULFrame RSSI_RAW=%d\n", rssi_raw);
debug("(cul) checkCULFrame LQI=%d\n", lqi);
}
if (data[1] == 'Y')
2020-02-03 17:20:03 +00:00
{
// C1 telegram in frame format B
// bY..44............<CR><LF>
*hex_frame_length = eolp;
vector<uchar> hex;
// If reception is started with X01, then there are no RSSI bytes.
// If started with X21, then there are two RSSI bytes (4 hex digits at the end).
// Now we always start with X21.
2021-02-05 14:31:01 +00:00
hex.insert(hex.end(), data.begin()+2, data.begin()+eolp-eof_len-4); // Remove CRLF, RSSI and LQI
if (hex.size() % 2 == 1)
{
warning("(cul) Warning! Your cul firmware has a bug that prevents longer telegrams from being received.!\n");
warning("(cul) Please read: https://github.com/wmbusmeters/wmbusmeters/issues/390\n");
warning("(cul) and: https://wmbusmeters.github.io/wmbusmeters-wiki/nanoCUL.html\n");
}
payload.clear();
bool ok = hex2bin(hex, &payload);
if (!ok)
{
2020-02-16 19:23:47 +00:00
string s = safeString(hex);
debug("(cul) bad hex \"%s\"\n", s.c_str());
warning("(cul) warning: the hex string is not proper! Ignoring telegram!\n");
return ErrorInFrame;
}
ok = trimCRCsFrameFormatB(payload);
if (!ok)
{
warning("(cul) dll C1 (frame b) crcs failed check! Ignoring telegram!\n");
return ErrorInFrame;
}
debug("(cul) received full C1 frame\n");
return FullFrame;
}
else
{
// T1 telegram in frame format A
// b..44..............<CR><LF>
*hex_frame_length = eolp;
vector<uchar> hex;
// If reception is started with X01, then there are no RSSI bytes.
// If started with X21, then there are two RSSI bytes (4 hex digits at the end).
// Now we always start with X21.
2021-02-05 14:31:01 +00:00
hex.insert(hex.end(), data.begin()+1, data.begin()+eolp-eof_len-4); // Remove CRLF, RSSI and LQI
if (hex.size() % 2 == 1)
{
warning("(cul) Warning! Your cul firmware has a bug that prevents longer telegrams from being received.!\n");
warning("(cul) Please read: https://github.com/wmbusmeters/wmbusmeters/issues/390\n");
warning("(cul) and: https://wmbusmeters.github.io/wmbusmeters-wiki/nanoCUL.html\n");
}
payload.clear();
bool ok = hex2bin(hex, &payload);
if (!ok)
{
2020-02-16 19:23:47 +00:00
string s = safeString(hex);
debug("(cul) bad hex \"%s\"\n", s.c_str());
warning("(cul) warning: the hex string is not proper! Ignoring telegram!\n");
return ErrorInFrame;
}
ok = trimCRCsFrameFormatA(payload);
if (!ok)
{
warning("(cul) dll T1 (frame a) crcs failed check! Ignoring telegram!\n");
return ErrorInFrame;
}
debug("(cul) received full T1 frame\n");
return FullFrame;
2019-11-22 17:50:55 +00:00
}
}
AccessCheck detectCUL(Detected *detected, shared_ptr<SerialCommunicationManager> manager)
2019-11-22 17:50:55 +00:00
{
// Talk to the device and expect a very specific answer.
2021-02-13 14:58:38 +00:00
auto serial = manager->createSerialDeviceTTY(detected->found_file.c_str(), 38400, PARITY::NONE, "detect cul");
2020-10-24 14:16:50 +00:00
serial->disableCallbacks();
bool ok = serial->open(false);
if (!ok) return AccessCheck::NoSuchDevice;
2019-11-22 17:50:55 +00:00
2020-10-26 15:32:28 +00:00
bool found = false;
for (int i=0; i<3; ++i)
{
// Try three times, it seems slow sometimes.
vector<uchar> data;
// get the version string: "V 1.67 nanoCUL868" or similar
vector<uchar> msg(3);
msg[0] = CMD_GET_VERSION; // V
2022-04-29 06:38:09 +00:00
msg[1] = 0x0d;
msg[2] = 0x0a;
2020-10-26 15:32:28 +00:00
bool ok = serial->send(msg);
2021-02-13 14:18:59 +00:00
if (!ok)
{
verbose("(cul) are you there? no\n");
return AccessCheck::NoSuchDevice;
2021-02-13 14:18:59 +00:00
}
2020-10-26 15:32:28 +00:00
// Wait for 200ms so that the USB stick have time to prepare a response.
usleep(1000*200);
serial->receive(&data);
string resp = safeString(data);
debug("(cul) probe response \"%s\"\n", resp.c_str());
2020-10-26 15:32:28 +00:00
if (resp.find("CUL") != string::npos)
{
found = true;
break;
}
usleep(1000*500);
2019-11-22 17:50:55 +00:00
}
serial->close();
if (!found)
{
2021-02-13 14:18:59 +00:00
verbose("(cul) are you there? no\n");
return AccessCheck::NoProperResponse;
}
2022-08-20 17:58:28 +00:00
detected->setAsFound("", BusDeviceType::DEVICE_CUL, 38400, false, detected->specified_device.linkmodes);
2021-02-13 14:18:59 +00:00
verbose("(cul) are you there? yes\n");
2020-05-09 19:56:37 +00:00
return AccessCheck::AccessOK;
2019-11-22 17:50:55 +00:00
}