]> sigrok.org Git - libsigrok.git/blame - src/serial.c
serial: add support for optional "RX chunk" callback
[libsigrok.git] / src / serial.c
CommitLineData
a1bb33af 1/*
50985c20 2 * This file is part of the libsigrok project.
a1bb33af 3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
b19f4622 5 * Copyright (C) 2010-2012 Uwe Hermann <uwe@hermann-uwe.de>
766456be 6 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
bce75f94 7 * Copyright (C) 2014 Uffe Jakobsen <uffe@uffe.org>
b79c3422 8 * Copyright (C) 2017-2019 Gerhard Sittig <gerhard.sittig@gmx.net>
a1bb33af
UH
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
19 *
20 * You should have received a copy of the GNU General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23
6ec6c43b 24#include <config.h>
54b38f64 25#include <string.h>
d02a535e 26#include <stdlib.h>
a1bb33af 27#include <glib.h>
b541f837 28#include <glib/gstdio.h>
1ac8c218 29#ifdef HAVE_LIBSERIALPORT
0d4405ce 30#include <libserialport.h>
1ac8c218 31#endif
c1aae900 32#include <libsigrok/libsigrok.h>
45c59c8b 33#include "libsigrok-internal.h"
00f0016c 34#ifdef _WIN32
041b579d
DE
35#include <windows.h> /* for HANDLE */
36#endif
a1bb33af 37
e00b3f58 38/** @cond PRIVATE */
3544f848 39#define LOG_PREFIX "serial"
e00b3f58
UH
40/** @endcond */
41
42/**
43 * @file
44 *
45 * Serial port handling.
46 */
47
48/**
49 * @defgroup grp_serial Serial port handling
50 *
51 * Serial port handling functions.
52 *
53 * @{
54 */
b19f4622 55
1ac8c218
GS
56#ifdef HAVE_SERIAL_COMM
57
a7b8692e
GS
58/* See if a (assumed opened) serial port is of any supported type. */
59static int dev_is_supported(struct sr_serial_dev_inst *serial)
60{
61 if (!serial)
62 return 0;
63 if (!serial->lib_funcs)
64 return 0;
65
66 return 1;
67}
68
b19f4622
UH
69/**
70 * Open the specified serial port.
71 *
299bdb24 72 * @param serial Previously initialized serial port structure.
a9cf2035 73 * @param[in] flags Flags to use when opening the serial port. Possible flags
d9251a2c 74 * include SERIAL_RDWR, SERIAL_RDONLY.
b19f4622 75 *
299bdb24
BV
76 * If the serial structure contains a serialcomm string, it will be
77 * passed to serial_set_paramstr() after the port is opened.
78 *
d0a92abd
MH
79 * @retval SR_OK Success.
80 * @retval SR_ERR Failure.
e00b3f58
UH
81 *
82 * @private
b19f4622 83 */
299bdb24 84SR_PRIV int serial_open(struct sr_serial_dev_inst *serial, int flags)
d02a535e 85{
a9bce5a5 86 int ret;
b19f4622 87
299bdb24
BV
88 if (!serial) {
89 sr_dbg("Invalid serial port.");
90 return SR_ERR;
91 }
92
93 sr_spew("Opening serial port '%s' (flags %d).", serial->port, flags);
b19f4622 94
4417074c
GS
95 /*
96 * Determine which serial transport library to use. Derive the
97 * variant from the serial port's name. Default to libserialport
98 * for backwards compatibility.
99 */
100 if (ser_name_is_hid(serial))
101 serial->lib_funcs = ser_lib_funcs_hid;
b79c3422
GS
102 else if (ser_name_is_bt(serial))
103 serial->lib_funcs = ser_lib_funcs_bt;
4417074c
GS
104 else
105 serial->lib_funcs = ser_lib_funcs_libsp;
a7b8692e
GS
106 if (!serial->lib_funcs)
107 return SR_ERR_NA;
108
ad5aa993
GS
109 /*
110 * Note that use of the 'rcv_buffer' is optional, and the buffer's
111 * size heavily depends on the specific transport. That's why the
112 * buffer's content gets accessed and the buffer is released here in
113 * common code, but the buffer gets allocated in libraries' open()
114 * routines.
115 */
116
a7b8692e
GS
117 /*
118 * Run the transport's open routine. Setup the bitrate and the
119 * UART frame format.
120 */
121 if (!serial->lib_funcs->open)
122 return SR_ERR_NA;
123 ret = serial->lib_funcs->open(serial, flags);
ae4c1fb6
GS
124 if (ret != SR_OK)
125 return ret;
a54dd31e 126
299bdb24
BV
127 if (serial->serialcomm)
128 return serial_set_paramstr(serial, serial->serialcomm);
129 else
130 return SR_OK;
d02a535e
BV
131}
132
b19f4622
UH
133/**
134 * Close the specified serial port.
135 *
299bdb24 136 * @param serial Previously initialized serial port structure.
b19f4622 137 *
d0a92abd
MH
138 * @retval SR_OK Success.
139 * @retval SR_ERR Failure.
e00b3f58
UH
140 *
141 * @private
2119ab03 142 */
299bdb24 143SR_PRIV int serial_close(struct sr_serial_dev_inst *serial)
d02a535e 144{
ad5aa993
GS
145 int rc;
146
299bdb24
BV
147 if (!serial) {
148 sr_dbg("Invalid serial port.");
149 return SR_ERR;
150 }
151
64ecf7ee 152 sr_spew("Closing serial port %s.", serial->port);
b19f4622 153
a7b8692e
GS
154 if (!serial->lib_funcs || !serial->lib_funcs->close)
155 return SR_ERR_NA;
156
ad5aa993
GS
157 rc = serial->lib_funcs->close(serial);
158 if (rc == SR_OK && serial->rcv_buffer) {
159 g_string_free(serial->rcv_buffer, TRUE);
160 serial->rcv_buffer = NULL;
161 }
162
163 return rc;
d02a535e
BV
164}
165
b19f4622 166/**
6213c38e 167 * Flush serial port buffers. Empty buffers, discard pending RX and TX data.
b19f4622 168 *
299bdb24 169 * @param serial Previously initialized serial port structure.
b19f4622 170 *
d0a92abd
MH
171 * @retval SR_OK Success.
172 * @retval SR_ERR Failure.
e00b3f58
UH
173 *
174 * @private
1fdb75e1 175 */
299bdb24 176SR_PRIV int serial_flush(struct sr_serial_dev_inst *serial)
06d64eb8 177{
299bdb24
BV
178 if (!serial) {
179 sr_dbg("Invalid serial port.");
180 return SR_ERR;
181 }
182
64ecf7ee 183 sr_spew("Flushing serial port %s.", serial->port);
b19f4622 184
ad5aa993
GS
185 sr_ser_discard_queued_data(serial);
186
a7b8692e
GS
187 if (!serial->lib_funcs || !serial->lib_funcs->flush)
188 return SR_ERR_NA;
189
190 return serial->lib_funcs->flush(serial);
06d64eb8
BV
191}
192
bce75f94 193/**
6213c38e 194 * Drain serial port buffers. Wait for pending TX data to be sent.
bce75f94
UJ
195 *
196 * @param serial Previously initialized serial port structure.
197 *
198 * @retval SR_OK Success.
199 * @retval SR_ERR Failure.
e00b3f58
UH
200 *
201 * @private
bce75f94
UJ
202 */
203SR_PRIV int serial_drain(struct sr_serial_dev_inst *serial)
204{
bce75f94
UJ
205 if (!serial) {
206 sr_dbg("Invalid serial port.");
207 return SR_ERR;
208 }
209
bce75f94
UJ
210 sr_spew("Draining serial port %s.", serial->port);
211
a7b8692e
GS
212 if (!serial->lib_funcs || !serial->lib_funcs->drain)
213 return SR_ERR_NA;
214
215 return serial->lib_funcs->drain(serial);
bce75f94
UJ
216}
217
ad5aa993
GS
218/*
219 * Provide an internal RX data buffer for the serial port. This is not
220 * supposed to be used directly by applications. Instead optional and
221 * alternative transports for serial communication can use this buffer
222 * if their progress is driven from background activity, and is not
223 * (directly) driven by external API calls.
224 *
225 * BEWARE! This implementation assumes that data which gets communicated
226 * via UART can get stored in a GString (which is a char array). Since
227 * the API hides this detail, we can address this issue later when needed.
228 * Callers use the API which communicates bytes.
d4787248
GS
229 *
230 * Applications optionally can register a "per RX chunk" callback, when
231 * they depend on the frame boundaries of the respective physical layer.
232 * Most callers just want the stream of RX data, and can use the buffer.
233 *
234 * The availability of RX chunks to callbacks, as well as the capability
235 * to pass on exact frames as chunks or potential re-assembly of chunks
236 * to a single data block, depend on each transport's implementation.
ad5aa993
GS
237 */
238
d4787248
GS
239/**
240 * Register application callback for RX data chunks.
241 *
242 * @param[in] serial Previously initialized serial port instance.
243 * @param[in] cb Routine to call as RX data becomes available.
244 * @param[in] cb_data User data to pass to the callback in addition to RX data.
245 *
246 * @retval SR_ERR_ARG Invalid parameters.
247 * @retval SR_OK Successful registration.
248 *
249 * Callbacks get unregistered by specifying #NULL for the 'cb' parameter.
250 */
251SR_PRIV int serial_set_read_chunk_cb(struct sr_serial_dev_inst *serial,
252 serial_rx_chunk_callback cb, void *cb_data)
253{
254 if (!serial)
255 return SR_ERR_ARG;
256
257 serial->rx_chunk_cb_func = cb;
258 serial->rx_chunk_cb_data = cb_data;
259
260 return SR_OK;
261}
262
ad5aa993
GS
263/**
264 * Discard previously queued RX data. Internal to the serial subsystem,
265 * coordination between common and transport specific support code.
266 *
267 * @param[in] serial Previously opened serial port instance.
268 *
269 * @internal
270 */
271SR_PRIV void sr_ser_discard_queued_data(struct sr_serial_dev_inst *serial)
272{
273 if (!serial)
274 return;
275 if (!serial->rcv_buffer)
276 return;
277
278 g_string_truncate(serial->rcv_buffer, 0);
279}
280
281/**
282 * Get amount of queued RX data. Internal to the serial subsystem,
283 * coordination between common and transport specific support code.
284 *
285 * @param[in] serial Previously opened serial port instance.
286 *
287 * @internal
288 */
289SR_PRIV size_t sr_ser_has_queued_data(struct sr_serial_dev_inst *serial)
290{
291 if (!serial)
292 return 0;
293 if (!serial->rcv_buffer)
294 return 0;
295
296 return serial->rcv_buffer->len;
297}
298
299/**
300 * Queue received data. Internal to the serial subsystem, coordination
301 * between common and transport specific support code.
302 *
303 * @param[in] serial Previously opened serial port instance.
304 * @param[in] data Pointer to data bytes to queue.
305 * @param[in] len Number of data bytes to queue.
306 *
307 * @internal
308 */
309SR_PRIV void sr_ser_queue_rx_data(struct sr_serial_dev_inst *serial,
310 const uint8_t *data, size_t len)
311{
312 if (!serial)
313 return;
314 if (!data || !len)
315 return;
316
d4787248
GS
317 if (serial->rx_chunk_cb_func)
318 serial->rx_chunk_cb_func(serial, serial->rx_chunk_cb_data, data, len);
319 else if (serial->rcv_buffer)
ad5aa993
GS
320 g_string_append_len(serial->rcv_buffer, (const gchar *)data, len);
321}
322
323/**
324 * Retrieve previously queued RX data. Internal to the serial subsystem,
325 * coordination between common and transport specific support code.
326 *
327 * @param[in] serial Previously opened serial port instance.
328 * @param[out] data Pointer to store retrieved data bytes into.
329 * @param[in] len Number of data bytes to retrieve.
330 *
331 * @internal
332 */
333SR_PRIV size_t sr_ser_unqueue_rx_data(struct sr_serial_dev_inst *serial,
334 uint8_t *data, size_t len)
335{
336 size_t qlen;
337 GString *buf;
338
339 if (!serial)
340 return 0;
341 if (!data || !len)
342 return 0;
343
344 qlen = sr_ser_has_queued_data(serial);
345 if (!qlen)
346 return 0;
347
348 buf = serial->rcv_buffer;
349 if (len > buf->len)
350 len = buf->len;
351 if (len) {
352 memcpy(data, buf->str, len);
353 g_string_erase(buf, 0, len);
354 }
355
356 return len;
357}
358
8c3df6e5
GS
359/**
360 * Check for available receive data.
361 *
362 * @param[in] serial Previously opened serial port instance.
363 *
364 * @returns The number of (known) available RX data bytes.
365 *
366 * Returns 0 if no receive data is available, or if the amount of
367 * available receive data cannot get determined.
368 */
369SR_PRIV size_t serial_has_receive_data(struct sr_serial_dev_inst *serial)
370{
ad5aa993 371 size_t lib_count, buf_count;
a7b8692e
GS
372
373 if (!serial)
374 return 0;
375
376 lib_count = 0;
377 if (serial->lib_funcs && serial->lib_funcs->get_rx_avail)
378 lib_count = serial->lib_funcs->get_rx_avail(serial);
379
ad5aa993
GS
380 buf_count = sr_ser_has_queued_data(serial);
381
382 return lib_count + buf_count;
8c3df6e5
GS
383}
384
9a474211 385static int _serial_write(struct sr_serial_dev_inst *serial,
ae4c1fb6
GS
386 const void *buf, size_t count,
387 int nonblocking, unsigned int timeout_ms)
2119ab03 388{
299bdb24
BV
389 ssize_t ret;
390
391 if (!serial) {
392 sr_dbg("Invalid serial port.");
6a76efeb 393 return SR_ERR;
299bdb24
BV
394 }
395
a7b8692e
GS
396 if (!serial->lib_funcs || !serial->lib_funcs->write)
397 return SR_ERR_NA;
398 ret = serial->lib_funcs->write(serial, buf, count,
399 nonblocking, timeout_ms);
6433156c 400 sr_spew("Wrote %zd/%zu bytes.", ret, count);
b19f4622
UH
401
402 return ret;
2119ab03
UH
403}
404
b19f4622 405/**
98edee79 406 * Write a number of bytes to the specified serial port, blocking until finished.
b19f4622 407 *
299bdb24 408 * @param serial Previously initialized serial port structure.
a9cf2035
MH
409 * @param[in] buf Buffer containing the bytes to write.
410 * @param[in] count Number of bytes to write.
eead2782 411 * @param[in] timeout_ms Timeout in ms, or 0 for no timeout.
b19f4622 412 *
a9cf2035
MH
413 * @retval SR_ERR_ARG Invalid argument.
414 * @retval SR_ERR Other error.
eead2782
ML
415 * @retval other The number of bytes written. If this is less than the number
416 * specified in the call, the timeout was reached.
e00b3f58
UH
417 *
418 * @private
2119ab03 419 */
9a474211 420SR_PRIV int serial_write_blocking(struct sr_serial_dev_inst *serial,
ae4c1fb6 421 const void *buf, size_t count, unsigned int timeout_ms)
9a474211 422{
eead2782 423 return _serial_write(serial, buf, count, 0, timeout_ms);
9a474211
ML
424}
425
a9cf2035
MH
426/**
427 * Write a number of bytes to the specified serial port, return immediately.
98edee79
ML
428 *
429 * @param serial Previously initialized serial port structure.
430 * @param[in] buf Buffer containing the bytes to write.
431 * @param[in] count Number of bytes to write.
432 *
433 * @retval SR_ERR_ARG Invalid argument.
434 * @retval SR_ERR Other error.
435 * @retval other The number of bytes written.
e00b3f58
UH
436 *
437 * @private
438 */
9a474211 439SR_PRIV int serial_write_nonblocking(struct sr_serial_dev_inst *serial,
ae4c1fb6 440 const void *buf, size_t count)
9a474211 441{
eead2782 442 return _serial_write(serial, buf, count, 1, 0);
9a474211
ML
443}
444
ae4c1fb6
GS
445static int _serial_read(struct sr_serial_dev_inst *serial,
446 void *buf, size_t count, int nonblocking, unsigned int timeout_ms)
2119ab03 447{
299bdb24
BV
448 ssize_t ret;
449
450 if (!serial) {
451 sr_dbg("Invalid serial port.");
6a76efeb 452 return SR_ERR;
299bdb24
BV
453 }
454
a7b8692e
GS
455 if (!serial->lib_funcs || !serial->lib_funcs->read)
456 return SR_ERR_NA;
457 ret = serial->lib_funcs->read(serial, buf, count,
458 nonblocking, timeout_ms);
c4d85a40 459 if (ret > 0)
6433156c 460 sr_spew("Read %zd/%zu bytes.", ret, count);
b19f4622
UH
461
462 return ret;
2119ab03
UH
463}
464
9a474211 465/**
98edee79 466 * Read a number of bytes from the specified serial port, block until finished.
9a474211
ML
467 *
468 * @param serial Previously initialized serial port structure.
469 * @param buf Buffer where to store the bytes that are read.
a9cf2035 470 * @param[in] count The number of bytes to read.
eead2782 471 * @param[in] timeout_ms Timeout in ms, or 0 for no timeout.
9a474211 472 *
a9cf2035 473 * @retval SR_ERR_ARG Invalid argument.
d9251a2c
UH
474 * @retval SR_ERR Other error.
475 * @retval other The number of bytes read. If this is less than the number
eead2782 476 * requested, the timeout was reached.
e00b3f58
UH
477 *
478 * @private
9a474211 479 */
ae4c1fb6
GS
480SR_PRIV int serial_read_blocking(struct sr_serial_dev_inst *serial,
481 void *buf, size_t count, unsigned int timeout_ms)
9a474211 482{
eead2782 483 return _serial_read(serial, buf, count, 0, timeout_ms);
9a474211
ML
484}
485
a9cf2035
MH
486/**
487 * Try to read up to @a count bytes from the specified serial port, return
488 * immediately with what's available.
98edee79
ML
489 *
490 * @param serial Previously initialized serial port structure.
491 * @param buf Buffer where to store the bytes that are read.
492 * @param[in] count The number of bytes to read.
493 *
494 * @retval SR_ERR_ARG Invalid argument.
d9251a2c
UH
495 * @retval SR_ERR Other error.
496 * @retval other The number of bytes read.
e00b3f58
UH
497 *
498 * @private
a9cf2035 499 */
ae4c1fb6
GS
500SR_PRIV int serial_read_nonblocking(struct sr_serial_dev_inst *serial,
501 void *buf, size_t count)
9a474211 502{
eead2782 503 return _serial_read(serial, buf, count, 1, 0);
9a474211
ML
504}
505
b19f4622
UH
506/**
507 * Set serial parameters for the specified serial port.
508 *
299bdb24 509 * @param serial Previously initialized serial port structure.
04cb9157
MH
510 * @param[in] baudrate The baudrate to set.
511 * @param[in] bits The number of data bits to use (5, 6, 7 or 8).
512 * @param[in] parity The parity setting to use (0 = none, 1 = even, 2 = odd).
513 * @param[in] stopbits The number of stop bits to use (1 or 2).
514 * @param[in] flowcontrol The flow control settings to use (0 = none,
d9251a2c 515 * 1 = RTS/CTS, 2 = XON/XOFF).
04cb9157
MH
516 * @param[in] rts Status of RTS line (0 or 1; required by some interfaces).
517 * @param[in] dtr Status of DTR line (0 or 1; required by some interfaces).
2119ab03 518 *
d0a92abd 519 * @retval SR_OK Success.
04cb9157 520 * @retval SR_ERR Failure.
e00b3f58
UH
521 *
522 * @private
1ff7712c 523 */
ae4c1fb6
GS
524SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial,
525 int baudrate, int bits, int parity, int stopbits,
526 int flowcontrol, int rts, int dtr)
d02a535e 527{
a9bce5a5 528 int ret;
a9bce5a5 529
299bdb24
BV
530 if (!serial) {
531 sr_dbg("Invalid serial port.");
532 return SR_ERR;
533 }
534
64ecf7ee 535 sr_spew("Setting serial parameters on port %s.", serial->port);
b19f4622 536
a7b8692e
GS
537 if (!serial->lib_funcs || !serial->lib_funcs->set_params)
538 return SR_ERR_NA;
539 ret = serial->lib_funcs->set_params(serial,
540 baudrate, bits, parity, stopbits,
541 flowcontrol, rts, dtr);
ae4c1fb6
GS
542 if (ret == SR_OK) {
543 serial->comm_params.bit_rate = baudrate;
544 serial->comm_params.data_bits = bits;
545 serial->comm_params.parity_bits = parity ? 1 : 0;
546 serial->comm_params.stop_bits = stopbits;
547 sr_dbg("DBG: %s() rate %d, %d%s%d", __func__,
548 baudrate, bits,
549 (parity == 0) ? "n" : "x",
550 stopbits);
13cd8197 551 }
639c6f61 552
ae4c1fb6 553 return ret;
d02a535e 554}
792fc686 555
299bdb24 556/**
48d3238e 557 * Set serial parameters for the specified serial port from parameter string.
299bdb24
BV
558 *
559 * @param serial Previously initialized serial port structure.
48d3238e
MH
560 * @param[in] paramstr A serial communication parameters string of the form
561 * "<baudrate>/<bits><parity><stopbits>{/<option>}".\n
d9251a2c 562 * Examples: "9600/8n1", "600/7o2/dtr=1/rts=0" or "460800/8n1/flow=2".\n
48d3238e
MH
563 * \<baudrate\>=integer Baud rate.\n
564 * \<bits\>=5|6|7|8 Number of data bits.\n
565 * \<parity\>=n|e|o None, even, odd.\n
566 * \<stopbits\>=1|2 One or two stop bits.\n
567 * Options:\n
568 * dtr=0|1 Set DTR off resp. on.\n
569 * flow=0|1|2 Flow control. 0 for none, 1 for RTS/CTS, 2 for XON/XOFF.\n
570 * rts=0|1 Set RTS off resp. on.\n
571 * Please note that values and combinations of these parameters must be
572 * supported by the concrete serial interface hardware and the drivers for it.
e00b3f58 573 *
04cb9157
MH
574 * @retval SR_OK Success.
575 * @retval SR_ERR Failure.
e00b3f58
UH
576 *
577 * @private
299bdb24 578 */
299bdb24 579SR_PRIV int serial_set_paramstr(struct sr_serial_dev_inst *serial,
ae4c1fb6 580 const char *paramstr)
792fc686 581{
e00b3f58 582/** @cond PRIVATE */
48d3238e 583#define SERIAL_COMM_SPEC "^(\\d+)/([5678])([neo])([12])(.*)$"
e00b3f58 584/** @endcond */
48d3238e 585
792fc686
BV
586 GRegex *reg;
587 GMatchInfo *match;
26ddb5ba 588 int speed, databits, parity, stopbits, flow, rts, dtr, i;
71caaad4 589 char *mstr, **opts, **kv;
792fc686 590
26ddb5ba 591 speed = databits = parity = stopbits = flow = 0;
71caaad4 592 rts = dtr = -1;
ea088bb6 593 sr_spew("Parsing parameters from \"%s\".", paramstr);
792fc686
BV
594 reg = g_regex_new(SERIAL_COMM_SPEC, 0, 0, NULL);
595 if (g_regex_match(reg, paramstr, 0, &match)) {
596 if ((mstr = g_match_info_fetch(match, 1)))
597 speed = strtoul(mstr, NULL, 10);
598 g_free(mstr);
599 if ((mstr = g_match_info_fetch(match, 2)))
600 databits = strtoul(mstr, NULL, 10);
601 g_free(mstr);
602 if ((mstr = g_match_info_fetch(match, 3))) {
603 switch (mstr[0]) {
604 case 'n':
4d6a5008 605 parity = SP_PARITY_NONE;
792fc686
BV
606 break;
607 case 'e':
4d6a5008 608 parity = SP_PARITY_EVEN;
792fc686
BV
609 break;
610 case 'o':
4d6a5008 611 parity = SP_PARITY_ODD;
792fc686
BV
612 break;
613 }
614 }
615 g_free(mstr);
616 if ((mstr = g_match_info_fetch(match, 4)))
617 stopbits = strtoul(mstr, NULL, 10);
618 g_free(mstr);
71caaad4
BV
619 if ((mstr = g_match_info_fetch(match, 5)) && mstr[0] != '\0') {
620 if (mstr[0] != '/') {
621 sr_dbg("missing separator before extra options");
622 speed = 0;
623 } else {
624 /* A set of "key=value" options separated by / */
625 opts = g_strsplit(mstr + 1, "/", 0);
626 for (i = 0; opts[i]; i++) {
627 kv = g_strsplit(opts[i], "=", 2);
628 if (!strncmp(kv[0], "rts", 3)) {
629 if (kv[1][0] == '1')
630 rts = 1;
631 else if (kv[1][0] == '0')
632 rts = 0;
633 else {
634 sr_dbg("invalid value for rts: %c", kv[1][0]);
635 speed = 0;
636 }
637 } else if (!strncmp(kv[0], "dtr", 3)) {
638 if (kv[1][0] == '1')
639 dtr = 1;
640 else if (kv[1][0] == '0')
641 dtr = 0;
642 else {
643 sr_dbg("invalid value for dtr: %c", kv[1][0]);
644 speed = 0;
645 }
26ddb5ba 646 } else if (!strncmp(kv[0], "flow", 4)) {
647 if (kv[1][0] == '0')
648 flow = 0;
649 else if (kv[1][0] == '1')
650 flow = 1;
651 else if (kv[1][0] == '2')
652 flow = 2;
653 else {
654 sr_dbg("invalid value for flow: %c", kv[1][0]);
655 speed = 0;
656 }
71caaad4
BV
657 }
658 g_strfreev(kv);
659 }
660 g_strfreev(opts);
661 }
662 }
663 g_free(mstr);
792fc686
BV
664 }
665 g_match_info_unref(match);
666 g_regex_unref(reg);
667
ea088bb6
AG
668 if (speed) {
669 return serial_set_params(serial, speed, databits, parity,
26ddb5ba 670 stopbits, flow, rts, dtr);
ea088bb6
AG
671 } else {
672 sr_dbg("Could not infer speed from parameter string.");
792fc686 673 return SR_ERR_ARG;
ea088bb6 674 }
792fc686
BV
675}
676
299bdb24
BV
677/**
678 * Read a line from the specified serial port.
679 *
6213c38e
GS
680 * @param[in] serial Previously initialized serial port structure.
681 * @param[out] buf Buffer where to store the bytes that are read.
682 * @param[in] buflen Size of the buffer.
04cb9157 683 * @param[in] timeout_ms How long to wait for a line to come in.
299bdb24 684 *
6213c38e 685 * Reading stops when CR or LF is found, which is stripped from the buffer.
299bdb24 686 *
04cb9157
MH
687 * @retval SR_OK Success.
688 * @retval SR_ERR Failure.
e00b3f58
UH
689 *
690 * @private
299bdb24 691 */
ae4c1fb6
GS
692SR_PRIV int serial_readline(struct sr_serial_dev_inst *serial,
693 char **buf, int *buflen, gint64 timeout_ms)
6f22a8ef 694{
bf505eed 695 gint64 start, remaining;
6f22a8ef
UH
696 int maxlen, len;
697
64ecf7ee 698 if (!serial) {
299bdb24
BV
699 sr_dbg("Invalid serial port.");
700 return SR_ERR;
701 }
702
a7b8692e 703 if (!dev_is_supported(serial)) {
64ecf7ee 704 sr_dbg("Cannot use unopened serial port %s.", serial->port);
299bdb24
BV
705 return -1;
706 }
707
6f22a8ef 708 start = g_get_monotonic_time();
bf505eed 709 remaining = timeout_ms;
6f22a8ef
UH
710
711 maxlen = *buflen;
712 *buflen = len = 0;
0c5f2abc 713 while (1) {
6f22a8ef
UH
714 len = maxlen - *buflen - 1;
715 if (len < 1)
716 break;
ae4c1fb6 717 len = serial_read_blocking(serial, *buf + *buflen, 1, remaining);
6f22a8ef
UH
718 if (len > 0) {
719 *buflen += len;
720 *(*buf + *buflen) = '\0';
318dd53c
BV
721 if (*buflen > 0 && (*(*buf + *buflen - 1) == '\r'
722 || *(*buf + *buflen - 1) == '\n')) {
723 /* Strip CR/LF and terminate. */
6f22a8ef
UH
724 *(*buf + --*buflen) = '\0';
725 break;
726 }
727 }
bf505eed
ML
728 /* Reduce timeout by time elapsed. */
729 remaining = timeout_ms - ((g_get_monotonic_time() - start) / 1000);
730 if (remaining <= 0)
6f22a8ef
UH
731 /* Timeout */
732 break;
5715e84f
DT
733 if (len < 1)
734 g_usleep(2000);
6f22a8ef 735 }
318dd53c
BV
736 if (*buflen)
737 sr_dbg("Received %d: '%s'.", *buflen, *buf);
6f22a8ef
UH
738
739 return SR_OK;
740}
766456be
UH
741
742/**
743 * Try to find a valid packet in a serial data stream.
744 *
745 * @param serial Previously initialized serial port structure.
746 * @param buf Buffer containing the bytes to write.
04cb9157
MH
747 * @param buflen Size of the buffer.
748 * @param[in] packet_size Size, in bytes, of a valid packet.
766456be 749 * @param is_valid Callback that assesses whether the packet is valid or not.
04cb9157 750 * @param[in] timeout_ms The timeout after which, if no packet is detected, to
d9251a2c 751 * abort scanning.
04cb9157 752 * @param[in] baudrate The baudrate of the serial port. This parameter is not
d9251a2c
UH
753 * critical, but it helps fine tune the serial port polling
754 * delay.
766456be 755 *
d0a92abd 756 * @retval SR_OK Valid packet was found within the given timeout.
04cb9157 757 * @retval SR_ERR Failure.
e00b3f58
UH
758 *
759 * @private
766456be
UH
760 */
761SR_PRIV int serial_stream_detect(struct sr_serial_dev_inst *serial,
ae4c1fb6
GS
762 uint8_t *buf, size_t *buflen,
763 size_t packet_size,
764 packet_valid_callback is_valid,
765 uint64_t timeout_ms, int baudrate)
766456be
UH
766{
767 uint64_t start, time, byte_delay_us;
768 size_t ibuf, i, maxlen;
6433156c 769 ssize_t len;
766456be
UH
770
771 maxlen = *buflen;
772
64ecf7ee
ML
773 sr_dbg("Detecting packets on %s (timeout = %" PRIu64
774 "ms, baudrate = %d).", serial->port, timeout_ms, baudrate);
766456be
UH
775
776 if (maxlen < (packet_size / 2) ) {
777 sr_err("Buffer size must be at least twice the packet size.");
778 return SR_ERR;
779 }
780
766456be 781 /* Assume 8n1 transmission. That is 10 bits for every byte. */
1a46cc62 782 byte_delay_us = 10 * ((1000 * 1000) / baudrate);
766456be
UH
783 start = g_get_monotonic_time();
784
785 i = ibuf = len = 0;
786 while (ibuf < maxlen) {
18e4d5bc 787 len = serial_read_nonblocking(serial, &buf[ibuf], 1);
766456be
UH
788 if (len > 0) {
789 ibuf += len;
790 } else if (len == 0) {
006dbe55 791 /* No logging, already done in serial_read(). */
766456be
UH
792 } else {
793 /* Error reading byte, but continuing anyway. */
794 }
551c3d8c
AG
795
796 time = g_get_monotonic_time() - start;
797 time /= 1000;
798
766456be 799 if ((ibuf - i) >= packet_size) {
e5fa47c1 800 GString *text;
766456be 801 /* We have at least a packet's worth of data. */
e5fa47c1 802 text = sr_hexdump_new(&buf[i], packet_size);
59cae77e 803 sr_spew("Trying packet: %s", text->str);
e5fa47c1 804 sr_hexdump_free(text);
766456be 805 if (is_valid(&buf[i])) {
6433156c 806 sr_spew("Found valid %zu-byte packet after "
766456be
UH
807 "%" PRIu64 "ms.", (ibuf - i), time);
808 *buflen = ibuf;
809 return SR_OK;
810 } else {
6433156c 811 sr_spew("Got %zu bytes, but not a valid "
766456be
UH
812 "packet.", (ibuf - i));
813 }
814 /* Not a valid packet. Continue searching. */
815 i++;
816 }
551c3d8c 817 if (time >= timeout_ms) {
766456be 818 /* Timeout */
6433156c 819 sr_dbg("Detection timed out after %" PRIu64 "ms.", time);
766456be
UH
820 break;
821 }
5715e84f
DT
822 if (len < 1)
823 g_usleep(byte_delay_us);
766456be
UH
824 }
825
826 *buflen = ibuf;
827
6433156c 828 sr_err("Didn't find a valid packet (read %zu bytes).", *buflen);
766456be
UH
829
830 return SR_ERR;
831}
1bd9e678
DJ
832
833/**
834 * Extract the serial device and options from the options linked list.
835 *
836 * @param options List of options passed from the command line.
f3f19d11 837 * @param serial_device Pointer where to store the extracted serial device.
1bd9e678
DJ
838 * @param serial_options Pointer where to store the optional extracted serial
839 * options.
840 *
841 * @return SR_OK if a serial_device is found, SR_ERR if no device is found. The
842 * returned string should not be freed by the caller.
e00b3f58
UH
843 *
844 * @private
1bd9e678 845 */
ae4c1fb6
GS
846SR_PRIV int sr_serial_extract_options(GSList *options,
847 const char **serial_device, const char **serial_options)
1bd9e678
DJ
848{
849 GSList *l;
850 struct sr_config *src;
851
852 *serial_device = NULL;
853
854 for (l = options; l; l = l->next) {
855 src = l->data;
856 switch (src->key) {
857 case SR_CONF_CONN:
858 *serial_device = g_variant_get_string(src->data, NULL);
b1a7ca3b 859 sr_dbg("Parsed serial device: %s.", *serial_device);
1bd9e678 860 break;
1bd9e678
DJ
861 case SR_CONF_SERIALCOMM:
862 *serial_options = g_variant_get_string(src->data, NULL);
b1a7ca3b 863 sr_dbg("Parsed serial options: %s.", *serial_options);
1bd9e678
DJ
864 break;
865 }
866 }
867
868 if (!*serial_device) {
b1a7ca3b 869 sr_dbg("No serial device specified.");
1bd9e678
DJ
870 return SR_ERR;
871 }
872
873 return SR_OK;
874}
abc4b335 875
e00b3f58 876/** @private */
102f1239 877SR_PRIV int serial_source_add(struct sr_session *session,
ae4c1fb6
GS
878 struct sr_serial_dev_inst *serial, int events, int timeout,
879 sr_receive_data_callback cb, void *cb_data)
ba1949f5 880{
ae4c1fb6 881 if ((events & (G_IO_IN | G_IO_ERR)) && (events & G_IO_OUT)) {
cbc1413f
DE
882 sr_err("Cannot poll input/error and output simultaneously.");
883 return SR_ERR_ARG;
884 }
885
a7b8692e 886 if (!dev_is_supported(serial)) {
ae4c1fb6
GS
887 sr_err("Invalid serial port.");
888 return SR_ERR_ARG;
ba1949f5
ML
889 }
890
a7b8692e
GS
891 if (!serial->lib_funcs || !serial->lib_funcs->setup_source_add)
892 return SR_ERR_NA;
893
894 return serial->lib_funcs->setup_source_add(session, serial,
ae4c1fb6 895 events, timeout, cb, cb_data);
abc4b335 896}
7faa3e88 897
e00b3f58 898/** @private */
102f1239 899SR_PRIV int serial_source_remove(struct sr_session *session,
ae4c1fb6 900 struct sr_serial_dev_inst *serial)
7faa3e88 901{
a7b8692e 902 if (!dev_is_supported(serial)) {
ae4c1fb6
GS
903 sr_err("Invalid serial port.");
904 return SR_ERR_ARG;
905 }
906
a7b8692e
GS
907 if (!serial->lib_funcs || !serial->lib_funcs->setup_source_remove)
908 return SR_ERR_NA;
909
910 return serial->lib_funcs->setup_source_remove(session, serial);
7faa3e88 911}
b541f837 912
b1a7ca3b
UH
913/**
914 * Create/allocate a new sr_serial_port structure.
915 *
916 * @param name The OS dependent name of the serial port. Must not be NULL.
917 * @param description An end user friendly description for the serial port.
918 * Can be NULL (in that case the empty string is used
919 * as description).
920 *
921 * @return The newly allocated sr_serial_port struct.
922 */
24287ea9 923static struct sr_serial_port *sr_serial_new(const char *name,
ae4c1fb6 924 const char *description)
24287ea9
AJ
925{
926 struct sr_serial_port *serial;
927
928 if (!name)
929 return NULL;
930
e47a9562 931 serial = g_malloc0(sizeof(*serial));
24287ea9
AJ
932 serial->name = g_strdup(name);
933 serial->description = g_strdup(description ? description : "");
b1a7ca3b 934
24287ea9
AJ
935 return serial;
936}
937
b1a7ca3b
UH
938/**
939 * Free a previously allocated sr_serial_port structure.
940 *
941 * @param serial The sr_serial_port struct to free. Must not be NULL.
942 */
24287ea9
AJ
943SR_API void sr_serial_free(struct sr_serial_port *serial)
944{
b1a7ca3b 945 if (!serial)
24287ea9
AJ
946 return;
947 g_free(serial->name);
948 g_free(serial->description);
949 g_free(serial);
950}
951
ae4c1fb6
GS
952static GSList *append_port_list(GSList *devs, const char *name, const char *desc)
953{
954 return g_slist_append(devs, sr_serial_new(name, desc));
955}
956
24287ea9
AJ
957/**
958 * List available serial devices.
959 *
960 * @return A GSList of strings containing the path of the serial devices or
961 * NULL if no serial device is found. The returned list must be freed
962 * by the caller.
963 */
964SR_API GSList *sr_serial_list(const struct sr_dev_driver *driver)
965{
ae4c1fb6 966 GSList *tty_devs;
a7b8692e 967 GSList *(*list_func)(GSList *list, sr_ser_list_append_t append);
24287ea9 968
b1a7ca3b 969 /* Currently unused, but will be used by some drivers later on. */
24287ea9
AJ
970 (void)driver;
971
ae4c1fb6 972 tty_devs = NULL;
a7b8692e
GS
973 if (ser_lib_funcs_libsp && ser_lib_funcs_libsp->list) {
974 list_func = ser_lib_funcs_libsp->list;
975 tty_devs = list_func(tty_devs, append_port_list);
976 }
4417074c
GS
977 if (ser_lib_funcs_hid && ser_lib_funcs_hid->list) {
978 list_func = ser_lib_funcs_hid->list;
979 tty_devs = list_func(tty_devs, append_port_list);
980 }
b79c3422
GS
981 if (ser_lib_funcs_bt && ser_lib_funcs_bt->list) {
982 list_func = ser_lib_funcs_bt->list;
983 tty_devs = list_func(tty_devs, append_port_list);
984 }
24287ea9 985
ae4c1fb6
GS
986 return tty_devs;
987}
24287ea9 988
ae4c1fb6
GS
989static GSList *append_port_find(GSList *devs, const char *name)
990{
991 if (!name || !*name)
992 return devs;
b1a7ca3b 993
ae4c1fb6 994 return g_slist_append(devs, g_strdup(name));
24287ea9
AJ
995}
996
b541f837
AJ
997/**
998 * Find USB serial devices via the USB vendor ID and product ID.
999 *
d0a92abd
MH
1000 * @param[in] vendor_id Vendor ID of the USB device.
1001 * @param[in] product_id Product ID of the USB device.
b541f837
AJ
1002 *
1003 * @return A GSList of strings containing the path of the serial device or
1004 * NULL if no serial device is found. The returned list must be freed
1005 * by the caller.
e00b3f58
UH
1006 *
1007 * @private
b541f837
AJ
1008 */
1009SR_PRIV GSList *sr_serial_find_usb(uint16_t vendor_id, uint16_t product_id)
1010{
ae4c1fb6 1011 GSList *tty_devs;
a7b8692e
GS
1012 GSList *(*find_func)(GSList *list, sr_ser_find_append_t append,
1013 uint16_t vid, uint16_t pid);
b541f837 1014
ae4c1fb6 1015 tty_devs = NULL;
a7b8692e
GS
1016 if (ser_lib_funcs_libsp && ser_lib_funcs_libsp->find_usb) {
1017 find_func = ser_lib_funcs_libsp->find_usb;
1018 tty_devs = find_func(tty_devs, append_port_find,
1019 vendor_id, product_id);
1020 }
4417074c
GS
1021 if (ser_lib_funcs_hid && ser_lib_funcs_hid->find_usb) {
1022 find_func = ser_lib_funcs_hid->find_usb;
1023 tty_devs = find_func(tty_devs, append_port_find,
1024 vendor_id, product_id);
1025 }
b1a7ca3b 1026
b541f837 1027 return tty_devs;
b541f837 1028}
c5cfc735 1029
e00b3f58 1030/** @private */
c5cfc735
BV
1031SR_PRIV int serial_timeout(struct sr_serial_dev_inst *port, int num_bytes)
1032{
ae4c1fb6
GS
1033 int bits, baud;
1034 int ret;
1035 int timeout_ms;
c5cfc735 1036
639c6f61 1037 /* Get the bitrate and frame length. */
c5cfc735 1038 bits = baud = 0;
a7b8692e
GS
1039 if (port->lib_funcs && port->lib_funcs->get_frame_format) {
1040 ret = port->lib_funcs->get_frame_format(port, &baud, &bits);
1041 if (ret != SR_OK)
1042 bits = baud = 0;
1043 } else {
639c6f61
GS
1044 baud = port->comm_params.bit_rate;
1045 bits = 1 + port->comm_params.data_bits +
1046 port->comm_params.parity_bits +
1047 port->comm_params.stop_bits;
1048 }
c5cfc735 1049
ae4c1fb6
GS
1050 /* Derive the timeout. Default to 1s. */
1051 timeout_ms = 1000;
c5cfc735
BV
1052 if (bits && baud) {
1053 /* Throw in 10ms for misc OS overhead. */
1054 timeout_ms = 10;
1055 timeout_ms += ((1000.0 / baud) * bits) * num_bytes;
1056 }
1057
c5cfc735
BV
1058 return timeout_ms;
1059}
e00b3f58 1060
1ac8c218
GS
1061#else
1062
1063/* TODO Put fallback.c content here? */
1064
1065#endif
1066
e00b3f58 1067/** @} */