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