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