Module: Meshtastic::Serial
- Defined in:
- lib/meshtastic/serial.rb
Class Method Summary collapse
-
.authors ⇒ Object
- Author(s)
-
0day Inc.
-
.connect(opts = {}) ⇒ Object
- Supported Method Parameters
-
serial_obj = Meshtastic::Serial.connect( block_dev: ‘optional - serial block device path (defaults to /dev/ttyUSB0)’, baud: ‘optional - (defaults to 115200)’, data_bits: ‘optional - (defaults to 8)’, stop_bits: ‘optional - (defaults to 1)’, parity: ‘optional - :even|:mark|:odd|:space|:none (defaults to :none)’ ).
-
.disconnect(opts = {}) ⇒ Object
- Supported Method Parameters
-
serial_obj = Meshtastic.disconnect( serial_obj: ‘required - serial_obj returned from #connect method’ ).
-
.dump_console_data ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.dump_console_data.
-
.dump_proto_data ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.dump_proto_data.
-
.flush_data(opts = {}) ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.flush_data(opts = {}).
-
.help ⇒ Object
Display Usage for this Module.
-
.monitor_console(opts = {}) ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.monitor_console( refresh: ‘optional - refresh interval (default: 3)’, include: ‘optional - comma-delimited string(s) to include in message (default: nil)’, exclude: ‘optional - comma-delimited string(s) to exclude in message (default: nil)’ ).
-
.monitor_proto(opts = {}) ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.monitor_proto( refresh: ‘optional - refresh interval (default: 3)’, include: ‘optional - comma-delimited string(s) to include in message (default: nil)’, exclude: ‘optional - comma-delimited string(s) to exclude in message (default: nil)’ ).
-
.request(opts = {}) ⇒ Object
- Supported Method Parameters
-
Meshtastic::Serial.request( serial_obj: ‘required serial_obj returned from #connect method’, payload: ‘required - array of bytes OR string to write to serial device (e.g. [0x00, 0x41, 0x90, 0x00] OR “ATDT+15555555rn”’ ).
-
.send_text(opts = {}) ⇒ Object
- Supported Method Parameters
-
Meshtastic::Serial.send_text( serial_obj: ‘required - serial_obj returned from #connect method’, from: ‘required - From ID (String or Integer) (Default: “!00000b0b”)’, to: ‘optional - Destination ID (Default: “!ffffffff”)’, topic: ‘optional - topic to publish to (Default: “msh/US/2/e/LongFast/1”)’, channel: ‘optional - channel (Default: 6)’, text: ‘optional - Text Message (Default: SYN)’, want_ack: ‘optional - Want Acknowledgement (Default: false)’, want_response: ‘optional - Want Response (Default: false)’, hop_limit: ‘optional - Hop Limit (Default: 3)’, on_response: ‘optional - Callback on Response’, psks: ‘optional - hash of :channel_id => psk key value pairs (default: { LongFast: “AQ==” })’ ).
-
.subscribe(opts = {}) ⇒ Object
- Supported Method Parameters
-
Meshtastic::Serial.subscribe( serial_obj: ‘required - serial_obj returned from #connect method’ root_topic: ‘optional - root topic (default: msh)’, region: ‘optional - region e.g. ’US/VA’, etc (default: US)‘, channel_topic: ’optional - channel ID path e.g. “2/stat/#” (default: “2/e/LongFast/#”)‘, psks: ’optional - hash of :channel_id => psk key value pairs (default: { LongFast: “AQ==” })‘, qos: ’optional - quality of service (default: 0)‘, exclude: ’optional - comma-delimited string(s) to exclude in message (default: nil)‘, include: ’optional - comma-delimited string(s) to include on in message (default: nil)‘, gps_metadata: ’optional - include GPS metadata in output (default: false)‘, include_raw: ’optional - include raw packet data in output (default: false)‘ ).
Class Method Details
.authors ⇒ Object
- Author(s)
-
0day Inc. <[email protected]>
504 505 506 507 508 |
# File 'lib/meshtastic/serial.rb', line 504 public_class_method def self. "AUTHOR(S): 0day Inc. <[email protected]> " end |
.connect(opts = {}) ⇒ Object
- Supported Method Parameters
-
serial_obj = Meshtastic::Serial.connect(
block_dev: 'optional - serial block device path (defaults to /dev/ttyUSB0)', baud: 'optional - (defaults to 115200)', data_bits: 'optional - (defaults to 8)', stop_bits: 'optional - (defaults to 1)', parity: 'optional - :even|:mark|:odd|:space|:none (defaults to :none)')
112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
# File 'lib/meshtastic/serial.rb', line 112 public_class_method def self.connect(opts = {}) block_dev = opts[:block_dev] ||= '/dev/ttyUSB0' raise "Invalid block device: #{block_dev}" unless File.exist?(block_dev) baud = opts[:baud] ||= 115_200 data_bits = opts[:data_bits] ||= 8 stop_bits = opts[:stop_bits] ||= 1 parity = opts[:parity] ||= :none case parity.to_s.to_sym when :even parity = 'E' when :odd parity = 'O' when :none parity = 'N' end raise "Invalid parity: #{opts[:parity]}" if parity.nil? mode = "#{data_bits}#{parity}#{stop_bits}" serial_conn = UART.open( block_dev, baud, mode ) serial_obj = {} serial_obj[:serial_conn] = serial_conn serial_obj[:console_thread] = init_console_thread( serial_conn: serial_conn ) serial_obj[:proto_thread] = init_proto_thread( serial_conn: serial_conn ) # 32 bytes of start2_byte in a byte array start2_byte_arr = [START2].pack('C') * 32 request(serial_obj: serial_obj, payload: start2_byte_arr) mui = Meshtastic::MeshInterface.new mui.start_config serial_obj rescue StandardError => e disconnect(serial_obj: serial_obj) unless serial_obj.nil? raise e end |
.disconnect(opts = {}) ⇒ Object
- Supported Method Parameters
-
serial_obj = Meshtastic.disconnect(
serial_obj: 'required - serial_obj returned from #connect method')
493 494 495 496 497 498 499 500 |
# File 'lib/meshtastic/serial.rb', line 493 public_class_method def self.disconnect(opts = {}) serial_obj = opts[:serial_obj] serial_obj.disconnect if serial_obj nil rescue StandardError => e raise e end |
.dump_console_data ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.dump_console_data
164 165 166 167 168 169 170 171 172 |
# File 'lib/meshtastic/serial.rb', line 164 public_class_method def self.dump_console_data if block_given? @console_data.join.split("\n").each { |data| yield data } else @console_data.join end rescue StandardError => e raise e end |
.dump_proto_data ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.dump_proto_data
177 178 179 180 181 182 183 184 185 |
# File 'lib/meshtastic/serial.rb', line 177 public_class_method def self.dump_proto_data if block_given? @proto_data.each { |proto_hash| yield proto_hash } else @proto_data end rescue StandardError => e raise e end |
.flush_data(opts = {}) ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.flush_data(opts = {})
190 191 192 193 194 195 196 197 198 199 200 201 202 |
# File 'lib/meshtastic/serial.rb', line 190 public_class_method def self.flush_data(opts = {}) target = opts[:target] case target when :console @console_data.clear when :proto @proto_data.clear else raise "ERROR: supported targets are :console or :proto" end rescue StandardError => e raise e end |
.help ⇒ Object
Display Usage for this Module
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 |
# File 'lib/meshtastic/serial.rb', line 512 public_class_method def self.help puts "USAGE: serial_obj = #{self}.connect( host: 'optional - mqtt host (default: mqtt.meshtastic.org)', port: 'optional - mqtt port (defaults: 1883)', tls: 'optional - use TLS (default: false)', username: 'optional - mqtt username (default: meshdev)', password: 'optional - (default: large4cats)', client_id: 'optional - client ID (default: random 4-byte hex string)', keep_alive: 'optional - keep alive interval (default: 15)', ack_timeout: 'optional - acknowledgement timeout (default: 30)' ) #{self}.monitor_console( refresh: 'optional - refresh interval (default: 3)', include: 'optional - comma-delimited string(s) to include in message (default: nil)', exclude: 'optional - comma-delimited string(s) to exclude in message (default: nil)' ) #{self}.monitor_proto( refresh: 'optional - refresh interval (default: 3)', include: 'optional - comma-delimited string(s) to include in message (default: nil)', exclude: 'optional - comma-delimited string(s) to exclude in message (default: nil)' ) #{self}.subscribe( serial_obj: 'required - serial_obj object returned from #connect method', root_topic: 'optional - root topic (default: msh)', region: 'optional - region e.g. 'US/VA', etc (default: US)', channel_topic: 'optional - channel ID path e.g. '2/stat/#' (default: '2/e/LongFast/#')', psks: 'optional - hash of :channel_id => psk key value pairs (default: { LongFast: 'AQ==' })', qos: 'optional - quality of service (default: 0)', json: 'optional - JSON output (default: false)', exclude: 'optional - comma-delimited string(s) to exclude in message (default: nil)', include: 'optional - comma-delimited string(s) to include on in message (default: nil)', gps_metadata: 'optional - include GPS metadata in output (default: false)' ) #{self}.send_text( serial_obj: 'required - serial_obj returned from #connect method', from: 'required - From ID (String or Integer) (Default: \"!00000b0b\")', to: 'optional - Destination ID (Default: \"!ffffffff\")', topic: 'optional - topic to publish to (default: 'msh/US/2/e/LongFast/1')', channel: 'optional - channel (Default: 6)', text: 'optional - Text Message (Default: SYN)', want_ack: 'optional - Want Acknowledgement (Default: false)', want_response: 'optional - Want Response (Default: false)', hop_limit: 'optional - Hop Limit (Default: 3)', on_response: 'optional - Callback on Response', psks: 'optional - hash of :channel => psk key value pairs (default: { LongFast: 'AQ==' })' ) serial_obj = #{self}.disconnect( serial_obj: 'required - serial_obj object returned from #connect method' ) #{self}.authors " end |
.monitor_console(opts = {}) ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.monitor_console(
refresh: 'optional - refresh interval (default: 3)', include: 'optional - comma-delimited string(s) to include in message (default: nil)', exclude: 'optional - comma-delimited string(s) to exclude in message (default: nil)')
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 |
# File 'lib/meshtastic/serial.rb', line 211 public_class_method def self.monitor_console(opts = {}) refresh = opts[:refresh] ||= 3 include = opts[:include] exclude = opts[:exclude] loop do exclude_arr = exclude.to_s.split(',').map(&:strip) include_arr = include.to_s.split(',').map(&:strip) dump_console_data do |data| disp = false disp = true if exclude_arr.none? { |exclude| data.include?(exclude) } && ( include_arr.empty? || include_arr.all? { |include| data.include?(include) } ) puts data if disp flush_data(target: :console) end sleep refresh end rescue Interrupt puts "\nCTRL+C detected. Breaking out of console mode..." rescue StandardError => e raise e end |
.monitor_proto(opts = {}) ⇒ Object
- Supported Method Parameters
-
console_data = Meshtastic::Serial.monitor_proto(
refresh: 'optional - refresh interval (default: 3)', include: 'optional - comma-delimited string(s) to include in message (default: nil)', exclude: 'optional - comma-delimited string(s) to exclude in message (default: nil)')
244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 |
# File 'lib/meshtastic/serial.rb', line 244 public_class_method def self.monitor_proto(opts = {}) refresh = opts[:refresh] ||= 3 include = opts[:include] exclude = opts[:exclude] loop do exclude_arr = exclude.to_s.split(',').map(&:strip) include_arr = include.to_s.split(',').map(&:strip) dump_proto_data do |data| disp = false disp = true if exclude_arr.none? { |exclude| data.include?(exclude) } && ( include_arr.empty? || include_arr.all? { |include| data.include?(include) } ) puts data if disp flush_data(target: :proto) end sleep refresh end rescue Interrupt puts "\nCTRL+C detected. Breaking out of proto mode..." rescue StandardError => e raise e end |
.request(opts = {}) ⇒ Object
- Supported Method Parameters
-
Meshtastic::Serial.request(
serial_obj: 'required serial_obj returned from #connect method', payload: 'required - array of bytes OR string to write to serial device (e.g. [0x00, 0x41, 0x90, 0x00] OR "ATDT+15555555\r\n"')
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 |
# File 'lib/meshtastic/serial.rb', line 82 public_class_method def self.request(opts = {}) serial_obj = opts[:serial_obj] payload = opts[:payload] serial_conn = serial_obj[:serial_conn] byte_arr = nil byte_arr = payload if payload.instance_of?(Array) byte_arr = payload.chars if payload.instance_of?(String) raise "ERROR: Invalid payload type: #{payload.class}" if byte_arr.nil? byte_arr.each do |byte| serial_conn.putc(byte) end sleep(0.1) serial_conn.flush rescue StandardError => e disconnect(serial_obj: serial_obj) unless serial_obj.nil? raise e end |
.send_text(opts = {}) ⇒ Object
- Supported Method Parameters
-
Meshtastic::Serial.send_text(
serial_obj: 'required - serial_obj returned from #connect method', from: 'required - From ID (String or Integer) (Default: "!00000b0b")', to: 'optional - Destination ID (Default: "!ffffffff")', topic: 'optional - topic to publish to (Default: "msh/US/2/e/LongFast/1")', channel: 'optional - channel (Default: 6)', text: 'optional - Text Message (Default: SYN)', want_ack: 'optional - Want Acknowledgement (Default: false)', want_response: 'optional - Want Response (Default: false)', hop_limit: 'optional - Hop Limit (Default: 3)', on_response: 'optional - Callback on Response', psks: 'optional - hash of :channel_id => psk key value pairs (default: { LongFast: "AQ==" })')
474 475 476 477 478 479 480 481 482 483 484 485 486 487 |
# File 'lib/meshtastic/serial.rb', line 474 public_class_method def self.send_text(opts = {}) serial_obj = opts[:serial_obj] topic = opts[:topic] ||= 'msh/US/2/e/LongFast/#' opts[:via] = :radio # TODO: Implement chunked message to deal with large messages mui = Meshtastic::MeshInterface.new protobuf_text = mui.send_text(opts) # TODO: serial equivalent of publish # serial_obj.publish(topic, protobuf_text) rescue StandardError => e raise e end |
.subscribe(opts = {}) ⇒ Object
- Supported Method Parameters
-
Meshtastic::Serial.subscribe(
serial_obj: 'required - serial_obj returned from #connect method' root_topic: 'optional - root topic (default: msh)', region: 'optional - region e.g. 'US/VA', etc (default: US)', channel_topic: 'optional - channel ID path e.g. "2/stat/#" (default: "2/e/LongFast/#")', psks: 'optional - hash of :channel_id => psk key value pairs (default: { LongFast: "AQ==" })', qos: 'optional - quality of service (default: 0)', exclude: 'optional - comma-delimited string(s) to exclude in message (default: nil)', include: 'optional - comma-delimited string(s) to include on in message (default: nil)', gps_metadata: 'optional - include GPS metadata in output (default: false)', include_raw: 'optional - include raw packet data in output (default: false)')
284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 |
# File 'lib/meshtastic/serial.rb', line 284 public_class_method def self.subscribe(opts = {}) serial_obj = opts[:serial_obj] root_topic = opts[:root_topic] ||= 'msh' region = opts[:region] ||= 'US' channel_topic = opts[:channel_topic] ||= '2/e/LongFast/#' # TODO: Support Array of PSKs and attempt each until decrypted public_psk = '1PG7OiApB1nwvP+rz05pAQ==' psks = opts[:psks] ||= { LongFast: public_psk } raise 'ERROR: psks parameter must be a hash of :channel_id => psk key value pairs' unless psks.is_a?(Hash) psks[:LongFast] = public_psk if psks[:LongFast] == 'AQ==' mui = Meshtastic::MeshInterface.new psks = mui.get_cipher_keys(psks: psks) qos = opts[:qos] ||= 0 json = opts[:json] ||= false exclude = opts[:exclude] include = opts[:include] = opts[:gps_metadata] ||= false include_raw = opts[:include_raw] ||= false # NOTE: Use MQTT Explorer for topic discovery full_topic = "#{root_topic}/#{region}/#{channel_topic}" full_topic = "#{root_topic}/#{region}" if region == '#' puts "Subscribing to: #{full_topic}" serial_obj.subscribe(full_topic, qos) # MQTT::ProtocolException: No Ping Response received for 23 seconds (MQTT::ProtocolException) include_arr = include.to_s.split(',').map(&:strip) exclude_arr = exclude.to_s.split(',').map(&:strip) serial_obj.get_packet do |packet_bytes| raw_packet = packet_bytes.to_s if include_raw raw_topic = packet_bytes.topic ||= '' raw_payload = packet_bytes.payload ||= '' begin disp = false decoded_payload_hash = {} = {} = '' if json decoded_payload_hash = JSON.parse(raw_payload, symbolize_names: true) else # decoded_payload = Meshtastic::ToRadio.decode(raw_payload) decoded_payload = Meshtastic::FromRadio.decode(raw_payload) decoded_payload_hash = decoded_payload.to_h end next unless decoded_payload_hash[:packet].is_a?(Hash) = decoded_payload_hash[:packet] if decoded_payload_hash.keys.include?(:packet) [:topic] = raw_topic [:node_id_from] = "!#{message[:from].to_i.to_s(16)}" [:node_id_to] = "!#{message[:to].to_i.to_s(16)}" if .keys.include?(:rx_time) rx_time_int = [:rx_time] if rx_time_int.is_a?(Integer) rx_time_utc = Time.at(rx_time_int).utc.to_s [:rx_time_utc] = rx_time_utc end end if .keys.include?(:public_key) raw_public_key = [:public_key] [:public_key] = Base64.strict_encode64(raw_public_key) end # If encrypted_message is not nil, then decrypt # the message prior to decoding. = [:encrypted] if .to_s.length.positive? && [:topic] # if message[:pki_encrypted] # # TODO: Display Decrypted PKI Message # public_key = message[:public_key] # dec_public_key = Base64.strict_decode64(public_key) # else packet_id = [:id] packet_from = [:from] nonce_packet_id = [packet_id].pack('V').ljust(8, "\x00") nonce_from_node = [packet_from].pack('V').ljust(8, "\x00") nonce = "#{nonce_packet_id}#{nonce_from_node}" psk = psks[:LongFast] target_channel = [:topic].split('/')[-2].to_sym psk = psks[target_channel] if psks.keys.include?(target_channel) dec_psk = Base64.strict_decode64(psk) cipher = OpenSSL::Cipher.new('AES-128-CTR') cipher = OpenSSL::Cipher.new('AES-256-CTR') if dec_psk.length == 32 cipher.decrypt cipher.key = dec_psk cipher.iv = nonce decrypted = cipher.update() + cipher.final # end [:decoded] = Meshtastic::Data.decode(decrypted).to_h [:encrypted] = :decrypted end if [:decoded] # payload = Meshtastic::Data.decode(message[:decoded][:payload]).to_h payload = [:decoded][:payload] msg_type = [:decoded][:portnum] mui = Meshtastic::MeshInterface.new [:decoded][:payload] = mui.decode_payload( payload: payload, msg_type: msg_type, gps_metadata: ) end [:raw_packet] = raw_packet if include_raw decoded_payload_hash[:packet] = unless block_given? [:stdout] = 'pretty' = JSON.pretty_generate(decoded_payload_hash) end rescue Encoding::CompatibilityError, Google::Protobuf::ParseError, JSON::GeneratorError, ArgumentError => e unless e.is_a?(Encoding::CompatibilityError) [:decrypted] = e. if e..include?('key must be') [:decrypted] = 'unable to decrypt - psk?' if e..include?('occurred during parsing') decoded_payload_hash[:packet] = unless block_given? puts "WARNING: #{e.inspect} - MSG IS >>>" # puts e.backtrace [:stdout] = 'inspect' = decoded_payload_hash.inspect end end next ensure include_arr = [[:id].to_s] if include_arr.empty? if .is_a?(Hash) = .values.join(' ') disp = true if exclude_arr.none? { |exclude| .include?(exclude) } && ( include_arr.first == [:id] || include_arr.all? { |include| .include?(include) } ) if disp if block_given? yield decoded_payload_hash else puts "\n" puts '-' * 80 puts 'MSG:' puts puts '-' * 80 puts "\n\n\n" end # else # print '.' end end end end rescue Interrupt puts "\nCTRL+C detected. Exiting..." rescue StandardError => e raise e ensure serial_obj.disconnect if serial_obj end |