/* Copyright (C) 2019 Fredrik Öhrström 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 . */ #include"wmbus.h" #include"serial.h" #include #include #include #include #include #include #include #include #include #include using namespace std; enum FrameStatus { PartialFrame, FullFrame, ErrorInFrame }; struct WMBusRTLWMBUS : public WMBus { bool ping(); uint32_t getDeviceId(); LinkModeSet getLinkModes(); void setLinkModes(LinkModeSet lms); LinkModeSet supportedLinkModes() { return C1_bit | T1_bit; } int numConcurrentLinkModes() { return 2; } bool canSetLinkModes(LinkModeSet lms) { if (!supportedLinkModes().supports(lms)) return false; // The rtlwmbus listens to both modes always. return true; } void onTelegram(function cb); void processSerialData(); SerialDevice *serial() { return NULL; } void simulate(); WMBusRTLWMBUS(unique_ptr serial, SerialCommunicationManager *manager); private: unique_ptr serial_; vector read_buffer_; vector received_payload_; vector> telegram_listeners_; FrameStatus checkRTLWMBUSFrame(vector &data, size_t *hex_frame_length, int *hex_payload_len_out, int *hex_payload_offset); void handleMessage(vector &frame); string setup_; SerialCommunicationManager *manager_ {}; }; unique_ptr openRTLWMBUS(string command, SerialCommunicationManager *manager, function on_exit) { vector args; vector envs; args.push_back("-c"); args.push_back(command); auto serial = manager->createSerialDeviceCommand("/bin/sh", args, envs, on_exit); WMBusRTLWMBUS *imp = new WMBusRTLWMBUS(std::move(serial), manager); return unique_ptr(imp); } unique_ptr openRTLWMBUS(string command, SerialCommunicationManager *manager, SerialDevice *serial, function on_exit) { WMBusRTLWMBUS *imp = new WMBusRTLWMBUS(unique_ptr(serial), manager); return unique_ptr(imp); } WMBusRTLWMBUS::WMBusRTLWMBUS(unique_ptr serial, SerialCommunicationManager *manager) : serial_(std::move(serial)), manager_(manager) { manager_->listenTo(serial_.get(),call(this,processSerialData)); serial_->open(true); } bool WMBusRTLWMBUS::ping() { return true; } uint32_t WMBusRTLWMBUS::getDeviceId() { return 0x11111111; } LinkModeSet WMBusRTLWMBUS::getLinkModes() { return Any_bit; } void WMBusRTLWMBUS::setLinkModes(LinkModeSet lm) { } void WMBusRTLWMBUS::onTelegram(function cb) { telegram_listeners_.push_back(cb); } void WMBusRTLWMBUS::simulate() { } void WMBusRTLWMBUS::processSerialData() { vector data; // Receive and accumulated serial data until a full frame has been received. serial_->receive(&data); read_buffer_.insert(read_buffer_.end(), data.begin(), data.end()); size_t frame_length; int hex_payload_len, hex_payload_offset; FrameStatus status = checkRTLWMBUSFrame(read_buffer_, &frame_length, &hex_payload_len, &hex_payload_offset); if (status == ErrorInFrame) { debug("(rtl_wmbus) error in received message.\n"); string msg = bin2hex(read_buffer_); read_buffer_.clear(); } else if (status == FullFrame) { vector payload; if (hex_payload_len > 0) { vector hex; hex.insert(hex.end(), read_buffer_.begin()+hex_payload_offset, read_buffer_.begin()+hex_payload_offset+hex_payload_len); bool ok = hex2bin(hex, &payload); if (!ok) { if (hex.size() % 2 == 1) { payload.clear(); warning("(rtlwmbus) warning: the hex string is not an even multiple of two! Dropping last char.\n"); hex.pop_back(); ok = hex2bin(hex, &payload); } if (!ok) { warning("(rtlwmbus) warning: the hex string contains bad characters! Decode stopped partway.\n"); } } } read_buffer_.erase(read_buffer_.begin(), read_buffer_.begin()+frame_length); handleMessage(payload); } } void WMBusRTLWMBUS::handleMessage(vector &frame) { Telegram t; t.parse(frame); for (auto f : telegram_listeners_) { if (f) f(&t); if (isVerboseEnabled() && !t.handled) { verbose("(rtl_wmbus) telegram ignored by all configured meters!\n"); } } } FrameStatus WMBusRTLWMBUS::checkRTLWMBUSFrame(vector &data, size_t *hex_frame_length, int *hex_payload_len_out, int *hex_payload_offset) { //C1;1;1;2019-02-09 07:14:18.000;117;102;94740459;0x49449344590474943508780dff5f3500827f0000f10007b06effff530100005f2c620100007f2118010000008000800080008000000000000000000e003f005500d4ff2f046d10086922 // There might be a second telegram on the same line ;0x4944....... if (data.size() == 0) return PartialFrame; int payload_len = 0; size_t eolp = 0; // Look for end of line for (; eolp < data.size(); ++eolp) { if (data[eolp] == '\n') break; } if (eolp >= data.size()) return PartialFrame; // We got a full line, but if it is too short, then // there is something wrong. Discard the data. if (data.size() < 10) return ErrorInFrame; if (data[0] != '0' || data[1] != 'x') { // Discard lines that are not T1 or C1 telegrams if (data[0] != 'T' && data[0] != 'C') return ErrorInFrame; // And the checksums should match. if (strncmp((const char*)&data[1], "1;1", 3)) { // Packages that begin with C1;1 or with T1;1 are good. The full format is: // MODE;CRC_OK;3OUTOF6OK;TIMESTAMP;PACKET_RSSI;CURRENT_RSSI;LINK_LAYER_IDENT_NO;DATAGRAM_WITHOUT_CRC_BYTES. // 3OUTOF6OK makes sense only with mode T1 and no sense with mode C1 (always set to 1). if (!strncmp((const char*)&data[1], "1;0", 3)) { verbose("(rtlwmbus) telegram received but incomplete or with errors, since CRC checks failed."); } return ErrorInFrame; } } // Look for start of telegram 0x size_t i = 0; for (; i+1 < data.size(); ++i) { if (data[i] == '0' && data[i+1] == 'x') break; } if (i+1 >= data.size()) return ErrorInFrame; // No 0x found, then discard the frame. i+=2; // Skip 0x // Look for end of line or semicolon. for (eolp=i; eolp < data.size(); ++eolp) { if (data[eolp] == '\n') break; if (data[eolp] == ';' && data[eolp+1] == '0' && data[eolp+2] == 'x') break; } if (eolp >= data.size()) return PartialFrame; payload_len = eolp-i; *hex_payload_len_out = payload_len; *hex_payload_offset = i; *hex_frame_length = eolp+1; debug("(rtlwmbus) got full frame\n"); return FullFrame; } bool detectRTLSDR(string device, SerialCommunicationManager *manager) { // No more advanced test than that the /dev/rtlsdr link exists. AccessCheck ac = checkIfExistsAndSameGroup(device); return ac == AccessCheck::OK; }