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