]> sigrok.org Git - libserialport.git/blame - serialport.c
windows: Await completion of previous write before changing config.
[libserialport.git] / serialport.c
CommitLineData
74510d4b
ML
1/*
2 * This file is part of the libserialport project.
3 *
4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
f77bb46d
ML
5 * Copyright (C) 2010-2015 Uwe Hermann <uwe@hermann-uwe.de>
6 * Copyright (C) 2013-2015 Martin Ling <martin-libserialport@earth.li>
31b3a8f5 7 * Copyright (C) 2013 Matthias Heidbrink <m-sigrok@heidbrink.biz>
a93fb468 8 * Copyright (C) 2014 Aurelien Jacobs <aurel@gnuage.org>
74510d4b
ML
9 *
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as
12 * published by the Free Software Foundation, either version 3 of the
13 * License, or (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 Lesser General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
22 */
23
1a584c45 24#include <config.h>
f6a1fb65 25#include "libserialport.h"
e33dcf90 26#include "libserialport_internal.h"
da2748bf 27
6c6aebe7 28static const struct std_baudrate std_baudrates[] = {
da2748bf
ML
29#ifdef _WIN32
30 /*
31 * The baudrates 50/75/134/150/200/1800/230400/460800 do not seem to
32 * have documented CBR_* macros.
33 */
34 BAUD(110), BAUD(300), BAUD(600), BAUD(1200), BAUD(2400), BAUD(4800),
35 BAUD(9600), BAUD(14400), BAUD(19200), BAUD(38400), BAUD(57600),
eac329d2 36 BAUD(115200), BAUD(128000), BAUD(256000),
da2748bf 37#else
eac329d2
UH
38 BAUD(50), BAUD(75), BAUD(110), BAUD(134), BAUD(150), BAUD(200),
39 BAUD(300), BAUD(600), BAUD(1200), BAUD(1800), BAUD(2400), BAUD(4800),
40 BAUD(9600), BAUD(19200), BAUD(38400), BAUD(57600), BAUD(115200),
41 BAUD(230400),
da2748bf 42#if !defined(__APPLE__) && !defined(__OpenBSD__)
eac329d2 43 BAUD(460800),
da2748bf
ML
44#endif
45#endif
46};
47
6c6aebe7
UH
48#define NUM_STD_BAUDRATES ARRAY_SIZE(std_baudrates)
49
863b35e6
ML
50void (*sp_debug_handler)(const char *format, ...) = sp_default_debug_handler;
51
eb6ed20f
ML
52static enum sp_return get_config(struct sp_port *port, struct port_data *data,
53 struct sp_port_config *config);
e33dcf90 54
eb6ed20f
ML
55static enum sp_return set_config(struct sp_port *port, struct port_data *data,
56 const struct sp_port_config *config);
80186526 57
970f279a 58SP_API enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr)
d54e9004
ML
59{
60 struct sp_port *port;
5a8810e2 61#ifndef NO_PORT_METADATA
a93fb468 62 enum sp_return ret;
5a8810e2 63#endif
5919c913 64 int len;
d54e9004 65
c33efc48
ML
66 TRACE("%s, %p", portname, port_ptr);
67
32b5ac05 68 if (!port_ptr)
c33efc48 69 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
32b5ac05 70
77f262c4
ML
71 *port_ptr = NULL;
72
d4babed2 73 if (!portname)
c33efc48 74 RETURN_ERROR(SP_ERR_ARG, "Null port name");
d4babed2 75
7890cef6 76 DEBUG_FMT("Building structure for port %s", portname);
ea667be7 77
95bad38c
ST
78#if !defined(_WIN32) && defined(HAVE_REALPATH)
79 /*
80 * get_port_details() below tries to be too smart and figure out
81 * some transport properties from the port name which breaks with
82 * symlinks. Therefore we canonicalize the portname first.
83 */
84 char pathbuf[PATH_MAX + 1];
85 char *res = realpath(portname, pathbuf);
86 if (!res)
87 RETURN_ERROR(SP_ERR_ARG, "Could not retrieve realpath behind port name");
88
89 portname = pathbuf;
90#endif
91
d54e9004 92 if (!(port = malloc(sizeof(struct sp_port))))
c33efc48 93 RETURN_ERROR(SP_ERR_MEM, "Port structure malloc failed");
d54e9004 94
5919c913
ML
95 len = strlen(portname) + 1;
96
eac329d2 97 if (!(port->name = malloc(len))) {
d54e9004 98 free(port);
c33efc48 99 RETURN_ERROR(SP_ERR_MEM, "Port name malloc failed");
d54e9004
ML
100 }
101
102 memcpy(port->name, portname, len);
103
8f471c66 104#ifdef _WIN32
e31f2c6b 105 port->usb_path = NULL;
8f471c66
ML
106 port->hdl = INVALID_HANDLE_VALUE;
107#else
108 port->fd = -1;
109#endif
110
e33dcf90
ML
111 port->description = NULL;
112 port->transport = SP_TRANSPORT_NATIVE;
113 port->usb_bus = -1;
114 port->usb_address = -1;
115 port->usb_vid = -1;
116 port->usb_pid = -1;
117 port->usb_manufacturer = NULL;
118 port->usb_product = NULL;
119 port->usb_serial = NULL;
120 port->bluetooth_address = NULL;
121
e4ce975a 122#ifndef NO_PORT_METADATA
e33dcf90 123 if ((ret = get_port_details(port)) != SP_OK) {
a93fb468
AJ
124 sp_free_port(port);
125 return ret;
126 }
e4ce975a 127#endif
a93fb468 128
77f262c4
ML
129 *port_ptr = port;
130
c33efc48 131 RETURN_OK();
d54e9004
ML
132}
133
970f279a 134SP_API char *sp_get_port_name(const struct sp_port *port)
1c5aae9d
ML
135{
136 TRACE("%p", port);
137
138 if (!port)
139 return NULL;
140
9caa2e86 141 RETURN_STRING(port->name);
1c5aae9d
ML
142}
143
f1480939 144SP_API char *sp_get_port_description(const struct sp_port *port)
a93fb468
AJ
145{
146 TRACE("%p", port);
147
148 if (!port || !port->description)
149 return NULL;
150
9caa2e86 151 RETURN_STRING(port->description);
a93fb468
AJ
152}
153
ad036cc8 154SP_API enum sp_transport sp_get_port_transport(const struct sp_port *port)
a93fb468
AJ
155{
156 TRACE("%p", port);
157
158 if (!port)
159 RETURN_ERROR(SP_ERR_ARG, "Null port");
160
9caa2e86 161 RETURN_INT(port->transport);
a93fb468
AJ
162}
163
970f279a
AJ
164SP_API enum sp_return sp_get_port_usb_bus_address(const struct sp_port *port,
165 int *usb_bus,int *usb_address)
a93fb468
AJ
166{
167 TRACE("%p", port);
168
169 if (!port)
170 RETURN_ERROR(SP_ERR_ARG, "Null port");
171 if (port->transport != SP_TRANSPORT_USB)
172 RETURN_ERROR(SP_ERR_ARG, "Port does not use USB transport");
65172bef
AJ
173 if (port->usb_bus < 0 || port->usb_address < 0)
174 RETURN_ERROR(SP_ERR_SUPP, "Bus and address values are not available");
a93fb468 175
dc422c04
UH
176 if (usb_bus)
177 *usb_bus = port->usb_bus;
178 if (usb_address)
179 *usb_address = port->usb_address;
a93fb468
AJ
180
181 RETURN_OK();
182}
183
970f279a
AJ
184SP_API enum sp_return sp_get_port_usb_vid_pid(const struct sp_port *port,
185 int *usb_vid, int *usb_pid)
a93fb468
AJ
186{
187 TRACE("%p", port);
188
189 if (!port)
190 RETURN_ERROR(SP_ERR_ARG, "Null port");
191 if (port->transport != SP_TRANSPORT_USB)
192 RETURN_ERROR(SP_ERR_ARG, "Port does not use USB transport");
65172bef
AJ
193 if (port->usb_vid < 0 || port->usb_pid < 0)
194 RETURN_ERROR(SP_ERR_SUPP, "VID:PID values are not available");
a93fb468 195
dc422c04
UH
196 if (usb_vid)
197 *usb_vid = port->usb_vid;
198 if (usb_pid)
199 *usb_pid = port->usb_pid;
a93fb468
AJ
200
201 RETURN_OK();
202}
203
970f279a 204SP_API char *sp_get_port_usb_manufacturer(const struct sp_port *port)
a93fb468
AJ
205{
206 TRACE("%p", port);
207
208 if (!port || port->transport != SP_TRANSPORT_USB || !port->usb_manufacturer)
209 return NULL;
210
9caa2e86 211 RETURN_STRING(port->usb_manufacturer);
a93fb468
AJ
212}
213
970f279a 214SP_API char *sp_get_port_usb_product(const struct sp_port *port)
a93fb468
AJ
215{
216 TRACE("%p", port);
217
218 if (!port || port->transport != SP_TRANSPORT_USB || !port->usb_product)
219 return NULL;
220
9caa2e86 221 RETURN_STRING(port->usb_product);
a93fb468
AJ
222}
223
970f279a 224SP_API char *sp_get_port_usb_serial(const struct sp_port *port)
a93fb468
AJ
225{
226 TRACE("%p", port);
227
228 if (!port || port->transport != SP_TRANSPORT_USB || !port->usb_serial)
229 return NULL;
230
9caa2e86 231 RETURN_STRING(port->usb_serial);
a93fb468
AJ
232}
233
970f279a 234SP_API char *sp_get_port_bluetooth_address(const struct sp_port *port)
a93fb468
AJ
235{
236 TRACE("%p", port);
237
238 if (!port || port->transport != SP_TRANSPORT_BLUETOOTH
239 || !port->bluetooth_address)
240 return NULL;
241
9caa2e86 242 RETURN_STRING(port->bluetooth_address);
a93fb468
AJ
243}
244
970f279a
AJ
245SP_API enum sp_return sp_get_port_handle(const struct sp_port *port,
246 void *result_ptr)
3c126654 247{
00d8c56d 248 TRACE("%p, %p", port, result_ptr);
3c126654
ML
249
250 if (!port)
251 RETURN_ERROR(SP_ERR_ARG, "Null port");
5f64c285
UH
252 if (!result_ptr)
253 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
3c126654
ML
254
255#ifdef _WIN32
256 HANDLE *handle_ptr = result_ptr;
257 *handle_ptr = port->hdl;
258#else
259 int *fd_ptr = result_ptr;
260 *fd_ptr = port->fd;
261#endif
262
263 RETURN_OK();
264}
265
970f279a
AJ
266SP_API enum sp_return sp_copy_port(const struct sp_port *port,
267 struct sp_port **copy_ptr)
32b5ac05 268{
c33efc48
ML
269 TRACE("%p, %p", port, copy_ptr);
270
32b5ac05 271 if (!copy_ptr)
c33efc48 272 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
32b5ac05
ML
273
274 *copy_ptr = NULL;
275
c33efc48
ML
276 if (!port)
277 RETURN_ERROR(SP_ERR_ARG, "Null port");
278
279 if (!port->name)
280 RETURN_ERROR(SP_ERR_ARG, "Null port name");
32b5ac05 281
ea667be7
ML
282 DEBUG("Copying port structure");
283
9caa2e86 284 RETURN_INT(sp_get_port_by_name(port->name, copy_ptr));
32b5ac05
ML
285}
286
970f279a 287SP_API void sp_free_port(struct sp_port *port)
e3b2f7a4 288{
c33efc48
ML
289 TRACE("%p", port);
290
00d8c56d 291 if (!port) {
c33efc48
ML
292 DEBUG("Null port");
293 RETURN();
294 }
e3b2f7a4 295
ea667be7
ML
296 DEBUG("Freeing port structure");
297
e3b2f7a4
ML
298 if (port->name)
299 free(port->name);
a93fb468
AJ
300 if (port->description)
301 free(port->description);
302 if (port->usb_manufacturer)
303 free(port->usb_manufacturer);
304 if (port->usb_product)
305 free(port->usb_product);
306 if (port->usb_serial)
307 free(port->usb_serial);
308 if (port->bluetooth_address)
309 free(port->bluetooth_address);
310#ifdef _WIN32
311 if (port->usb_path)
312 free(port->usb_path);
313#endif
e3b2f7a4
ML
314
315 free(port);
c33efc48
ML
316
317 RETURN();
e3b2f7a4
ML
318}
319
970f279a
AJ
320SP_PRIV struct sp_port **list_append(struct sp_port **list,
321 const char *portname)
3b63f34d
ML
322{
323 void *tmp;
324 unsigned int count;
f92f1f0c 325
81243567
UH
326 for (count = 0; list[count]; count++)
327 ;
d54e9004 328 if (!(tmp = realloc(list, sizeof(struct sp_port *) * (count + 2))))
3b63f34d
ML
329 goto fail;
330 list = tmp;
77f262c4 331 if (sp_get_port_by_name(portname, &list[count]) != SP_OK)
3b63f34d 332 goto fail;
db2794ce 333 list[count + 1] = NULL;
3b63f34d 334 return list;
f92f1f0c 335
3b63f34d
ML
336fail:
337 sp_free_port_list(list);
338 return NULL;
339}
340
970f279a 341SP_API enum sp_return sp_list_ports(struct sp_port ***list_ptr)
3b63f34d 342{
23e7fa37 343#ifndef NO_ENUMERATION
d54e9004 344 struct sp_port **list;
48a4076f 345 int ret;
23e7fa37 346#endif
24c1a4bb 347
c33efc48
ML
348 TRACE("%p", list_ptr);
349
dec10e31
ML
350 if (!list_ptr)
351 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
352
63926415
UH
353 *list_ptr = NULL;
354
8d12e620
ML
355#ifdef NO_ENUMERATION
356 RETURN_ERROR(SP_ERR_SUPP, "Enumeration not supported on this platform");
357#else
ea667be7
ML
358 DEBUG("Enumerating ports");
359
8d12e620 360 if (!(list = malloc(sizeof(struct sp_port *))))
c33efc48 361 RETURN_ERROR(SP_ERR_MEM, "Port list malloc failed");
24c1a4bb
ML
362
363 list[0] = NULL;
3b63f34d 364
48a4076f 365 ret = list_ports(&list);
77f262c4 366
8d12e620 367 if (ret == SP_OK) {
77f262c4 368 *list_ptr = list;
8d12e620
ML
369 } else {
370 sp_free_port_list(list);
77f262c4
ML
371 *list_ptr = NULL;
372 }
8d12e620
ML
373
374 RETURN_CODEVAL(ret);
375#endif
3b63f34d
ML
376}
377
970f279a 378SP_API void sp_free_port_list(struct sp_port **list)
3b63f34d
ML
379{
380 unsigned int i;
f92f1f0c 381
c33efc48
ML
382 TRACE("%p", list);
383
dec10e31
ML
384 if (!list) {
385 DEBUG("Null list");
386 RETURN();
387 }
388
ea667be7
ML
389 DEBUG("Freeing port list");
390
3b63f34d 391 for (i = 0; list[i]; i++)
e3b2f7a4 392 sp_free_port(list[i]);
3b63f34d 393 free(list);
c33efc48
ML
394
395 RETURN();
3b63f34d
ML
396}
397
c33efc48 398#define CHECK_PORT() do { \
dc422c04 399 if (!port) \
c33efc48 400 RETURN_ERROR(SP_ERR_ARG, "Null port"); \
dc422c04 401 if (!port->name) \
dec10e31
ML
402 RETURN_ERROR(SP_ERR_ARG, "Null port name"); \
403} while (0)
404#ifdef _WIN32
405#define CHECK_PORT_HANDLE() do { \
c33efc48 406 if (port->hdl == INVALID_HANDLE_VALUE) \
8062087a 407 RETURN_ERROR(SP_ERR_ARG, "Port not open"); \
dec10e31 408} while (0)
74510d4b 409#else
dec10e31 410#define CHECK_PORT_HANDLE() do { \
c33efc48 411 if (port->fd < 0) \
8062087a 412 RETURN_ERROR(SP_ERR_ARG, "Port not open"); \
dec10e31 413} while (0)
74510d4b 414#endif
dec10e31
ML
415#define CHECK_OPEN_PORT() do { \
416 CHECK_PORT(); \
417 CHECK_PORT_HANDLE(); \
418} while (0)
74510d4b 419
47fcf8ec
ML
420#ifdef WIN32
421/** To be called after port receive buffer is emptied. */
422static enum sp_return restart_wait(struct sp_port *port)
423{
424 DWORD wait_result;
425
426 if (port->wait_running) {
427 /* Check status of running wait operation. */
428 if (GetOverlappedResult(port->hdl, &port->wait_ovl,
429 &wait_result, FALSE)) {
430 DEBUG("Previous wait completed");
431 port->wait_running = FALSE;
432 } else if (GetLastError() == ERROR_IO_INCOMPLETE) {
433 DEBUG("Previous wait still running");
434 RETURN_OK();
435 } else {
436 RETURN_FAIL("GetOverlappedResult() failed");
437 }
438 }
439
440 if (!port->wait_running) {
441 /* Start new wait operation. */
442 if (WaitCommEvent(port->hdl, &port->events,
443 &port->wait_ovl)) {
444 DEBUG("New wait returned, events already pending");
445 } else if (GetLastError() == ERROR_IO_PENDING) {
446 DEBUG("New wait running in background");
447 port->wait_running = TRUE;
448 } else {
449 RETURN_FAIL("WaitCommEvent() failed");
450 }
451 }
452
453 RETURN_OK();
454}
455#endif
456
970f279a 457SP_API enum sp_return sp_open(struct sp_port *port, enum sp_mode flags)
74510d4b 458{
bccc7c9f
ML
459 struct port_data data;
460 struct sp_port_config config;
461 enum sp_return ret;
462
00d8c56d 463 TRACE("%p, 0x%x", port, flags);
c33efc48 464
dec10e31
ML
465 CHECK_PORT();
466
276ef1b9 467 if (flags > SP_MODE_READ_WRITE)
dec10e31 468 RETURN_ERROR(SP_ERR_ARG, "Invalid flags");
74510d4b 469
7890cef6 470 DEBUG_FMT("Opening port %s", port->name);
ea667be7 471
74510d4b 472#ifdef _WIN32
537942c9 473 DWORD desired_access = 0, flags_and_attributes = 0, errors;
99945a1f 474 char *escaped_port_name;
537942c9 475 COMSTAT status;
99945a1f
ML
476
477 /* Prefix port name with '\\.\' to work with ports above COM9. */
e48f0ece 478 if (!(escaped_port_name = malloc(strlen(port->name) + 5)))
c33efc48 479 RETURN_ERROR(SP_ERR_MEM, "Escaped port name malloc failed");
99945a1f
ML
480 sprintf(escaped_port_name, "\\\\.\\%s", port->name);
481
74510d4b 482 /* Map 'flags' to the OS-specific settings. */
e3dcf906 483 flags_and_attributes = FILE_ATTRIBUTE_NORMAL | FILE_FLAG_OVERLAPPED;
a036341b
ML
484 if (flags & SP_MODE_READ)
485 desired_access |= GENERIC_READ;
486 if (flags & SP_MODE_WRITE)
74510d4b 487 desired_access |= GENERIC_WRITE;
74510d4b 488
99945a1f 489 port->hdl = CreateFile(escaped_port_name, desired_access, 0, 0,
74510d4b 490 OPEN_EXISTING, flags_and_attributes, 0);
99945a1f
ML
491
492 free(escaped_port_name);
493
74510d4b 494 if (port->hdl == INVALID_HANDLE_VALUE)
dc422c04 495 RETURN_FAIL("Port CreateFile() failed");
e3dcf906
ML
496
497 /* All timeouts initially disabled. */
498 port->timeouts.ReadIntervalTimeout = 0;
499 port->timeouts.ReadTotalTimeoutMultiplier = 0;
500 port->timeouts.ReadTotalTimeoutConstant = 0;
501 port->timeouts.WriteTotalTimeoutMultiplier = 0;
502 port->timeouts.WriteTotalTimeoutConstant = 0;
a3cb91f5 503
e3dcf906 504 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0) {
a3cb91f5
ML
505 sp_close(port);
506 RETURN_FAIL("SetCommTimeouts() failed");
507 }
e3dcf906
ML
508
509 /* Prepare OVERLAPPED structures. */
6f1186aa
ML
510#define INIT_OVERLAPPED(ovl) do { \
511 memset(&port->ovl, 0, sizeof(port->ovl)); \
512 port->ovl.hEvent = INVALID_HANDLE_VALUE; \
513 if ((port->ovl.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL)) \
514 == INVALID_HANDLE_VALUE) { \
515 sp_close(port); \
516 RETURN_FAIL(#ovl "CreateEvent() failed"); \
517 } \
518} while (0)
519
520 INIT_OVERLAPPED(read_ovl);
521 INIT_OVERLAPPED(write_ovl);
522 INIT_OVERLAPPED(wait_ovl);
523
524 /* Set event mask for RX and error events. */
525 if (SetCommMask(port->hdl, EV_RXCHAR | EV_ERR) == 0) {
e3dcf906 526 sp_close(port);
6f1186aa 527 RETURN_FAIL("SetCommMask() failed");
e3dcf906 528 }
6f1186aa 529
e3dcf906 530 port->writing = FALSE;
47fcf8ec 531 port->wait_running = FALSE;
e3dcf906 532
47fcf8ec
ML
533 ret = restart_wait(port);
534
535 if (ret < 0) {
536 sp_close(port);
537 RETURN_CODEVAL(ret);
538 }
74510d4b 539#else
e3dcf906 540 int flags_local = O_NONBLOCK | O_NOCTTY;
f92f1f0c 541
74510d4b 542 /* Map 'flags' to the OS-specific settings. */
276ef1b9 543 if ((flags & SP_MODE_READ_WRITE) == SP_MODE_READ_WRITE)
74510d4b 544 flags_local |= O_RDWR;
a036341b 545 else if (flags & SP_MODE_READ)
74510d4b 546 flags_local |= O_RDONLY;
a036341b
ML
547 else if (flags & SP_MODE_WRITE)
548 flags_local |= O_WRONLY;
74510d4b
ML
549
550 if ((port->fd = open(port->name, flags_local)) < 0)
c33efc48 551 RETURN_FAIL("open() failed");
bccc7c9f 552#endif
9cb98459 553
e33ab9aa
ML
554 ret = get_config(port, &data, &config);
555
eac329d2 556 if (ret < 0) {
e33ab9aa 557 sp_close(port);
c33efc48 558 RETURN_CODEVAL(ret);
e33ab9aa 559 }
9cb98459 560
bccc7c9f
ML
561 /* Set sane port settings. */
562#ifdef _WIN32
563 data.dcb.fBinary = TRUE;
564 data.dcb.fDsrSensitivity = FALSE;
565 data.dcb.fErrorChar = FALSE;
566 data.dcb.fNull = FALSE;
34442106 567 data.dcb.fAbortOnError = FALSE;
bccc7c9f 568#else
b251be4b 569 /* Turn off all fancy termios tricks, give us a raw channel. */
c3e05092
UH
570 data.term.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IMAXBEL);
571#ifdef IUCLC
572 data.term.c_iflag &= ~IUCLC;
573#endif
574 data.term.c_oflag &= ~(OPOST | ONLCR | OCRNL | ONOCR | ONLRET);
575#ifdef OLCUC
576 data.term.c_oflag &= ~OLCUC;
577#endif
578#ifdef NLDLY
579 data.term.c_oflag &= ~NLDLY;
580#endif
581#ifdef CRDLY
582 data.term.c_oflag &= ~CRDLY;
583#endif
584#ifdef TABDLY
585 data.term.c_oflag &= ~TABDLY;
586#endif
587#ifdef BSDLY
588 data.term.c_oflag &= ~BSDLY;
589#endif
590#ifdef VTDLY
591 data.term.c_oflag &= ~VTDLY;
592#endif
593#ifdef FFDLY
594 data.term.c_oflag &= ~FFDLY;
595#endif
b251be4b 596#ifdef OFILL
9cb98459
ML
597 data.term.c_oflag &= ~OFILL;
598#endif
c3e05092 599 data.term.c_lflag &= ~(ISIG | ICANON | ECHO | IEXTEN);
e3dcf906 600 data.term.c_cc[VMIN] = 0;
b251be4b 601 data.term.c_cc[VTIME] = 0;
9cb98459 602
b251be4b
ML
603 /* Ignore modem status lines; enable receiver; leave control lines alone on close. */
604 data.term.c_cflag |= (CLOCAL | CREAD | HUPCL);
bccc7c9f 605#endif
9cb98459 606
537942c9 607#ifdef _WIN32
1a2a1544
UH
608 if (ClearCommError(port->hdl, &errors, &status) == 0)
609 RETURN_FAIL("ClearCommError() failed");
537942c9
ML
610#endif
611
e33ab9aa
ML
612 ret = set_config(port, &data, &config);
613
eac329d2 614 if (ret < 0) {
e33ab9aa 615 sp_close(port);
c33efc48 616 RETURN_CODEVAL(ret);
e33ab9aa 617 }
74510d4b 618
c33efc48 619 RETURN_OK();
74510d4b
ML
620}
621
970f279a 622SP_API enum sp_return sp_close(struct sp_port *port)
74510d4b 623{
c33efc48
ML
624 TRACE("%p", port);
625
dec10e31 626 CHECK_OPEN_PORT();
74510d4b 627
7890cef6 628 DEBUG_FMT("Closing port %s", port->name);
ea667be7 629
74510d4b
ML
630#ifdef _WIN32
631 /* Returns non-zero upon success, 0 upon failure. */
632 if (CloseHandle(port->hdl) == 0)
dc422c04 633 RETURN_FAIL("Port CloseHandle() failed");
8f471c66 634 port->hdl = INVALID_HANDLE_VALUE;
6f1186aa
ML
635
636 /* Close event handles for overlapped structures. */
637#define CLOSE_OVERLAPPED(ovl) do { \
638 if (port->ovl.hEvent != INVALID_HANDLE_VALUE && \
639 CloseHandle(port->ovl.hEvent) == 0) \
640 RETURN_FAIL(# ovl "event CloseHandle() failed"); \
641} while (0)
642 CLOSE_OVERLAPPED(read_ovl);
643 CLOSE_OVERLAPPED(write_ovl);
644 CLOSE_OVERLAPPED(wait_ovl);
645
74510d4b
ML
646#else
647 /* Returns 0 upon success, -1 upon failure. */
648 if (close(port->fd) == -1)
c33efc48 649 RETURN_FAIL("close() failed");
8f471c66 650 port->fd = -1;
74510d4b
ML
651#endif
652
c33efc48 653 RETURN_OK();
74510d4b
ML
654}
655
970f279a 656SP_API enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers)
74510d4b 657{
00d8c56d 658 TRACE("%p, 0x%x", port, buffers);
c33efc48 659
dec10e31
ML
660 CHECK_OPEN_PORT();
661
662 if (buffers > SP_BUF_BOTH)
663 RETURN_ERROR(SP_ERR_ARG, "Invalid buffer selection");
74510d4b 664
0ba3e49b 665 const char *buffer_names[] = {"no", "input", "output", "both"};
ea667be7 666
7890cef6
ML
667 DEBUG_FMT("Flushing %s buffers on port %s",
668 buffer_names[buffers], port->name);
ea667be7 669
74510d4b 670#ifdef _WIN32
fd8fd11a
ML
671 DWORD flags = 0;
672 if (buffers & SP_BUF_INPUT)
673 flags |= PURGE_RXCLEAR;
674 if (buffers & SP_BUF_OUTPUT)
675 flags |= PURGE_TXCLEAR;
676
74510d4b 677 /* Returns non-zero upon success, 0 upon failure. */
fd8fd11a 678 if (PurgeComm(port->hdl, flags) == 0)
c33efc48 679 RETURN_FAIL("PurgeComm() failed");
47fcf8ec
ML
680
681 if (buffers & SP_BUF_INPUT)
682 TRY(restart_wait(port));
74510d4b 683#else
fd8fd11a 684 int flags = 0;
ad749855 685 if (buffers == SP_BUF_BOTH)
fd8fd11a 686 flags = TCIOFLUSH;
ad749855 687 else if (buffers == SP_BUF_INPUT)
fd8fd11a 688 flags = TCIFLUSH;
ad749855 689 else if (buffers == SP_BUF_OUTPUT)
fd8fd11a
ML
690 flags = TCOFLUSH;
691
74510d4b 692 /* Returns 0 upon success, -1 upon failure. */
fd8fd11a 693 if (tcflush(port->fd, flags) < 0)
c33efc48 694 RETURN_FAIL("tcflush() failed");
74510d4b 695#endif
c33efc48 696 RETURN_OK();
74510d4b
ML
697}
698
970f279a 699SP_API enum sp_return sp_drain(struct sp_port *port)
69a3739c 700{
c33efc48
ML
701 TRACE("%p", port);
702
dec10e31 703 CHECK_OPEN_PORT();
69a3739c 704
7890cef6 705 DEBUG_FMT("Draining port %s", port->name);
ea667be7 706
69a3739c
ML
707#ifdef _WIN32
708 /* Returns non-zero upon success, 0 upon failure. */
709 if (FlushFileBuffers(port->hdl) == 0)
c33efc48 710 RETURN_FAIL("FlushFileBuffers() failed");
2c827b21 711 RETURN_OK();
69a3739c 712#else
2c827b21
ML
713 int result;
714 while (1) {
33fd8804
ML
715#ifdef __ANDROID__
716 int arg = 1;
717 result = ioctl(port->fd, TCSBRK, &arg);
718#else
2c827b21 719 result = tcdrain(port->fd);
33fd8804 720#endif
2c827b21
ML
721 if (result < 0) {
722 if (errno == EINTR) {
723 DEBUG("tcdrain() was interrupted");
724 continue;
725 } else {
726 RETURN_FAIL("tcdrain() failed");
727 }
728 } else {
729 RETURN_OK();
730 }
731 }
69a3739c 732#endif
69a3739c
ML
733}
734
62ed9f80
ML
735#ifdef _WIN32
736static enum sp_return await_write_completion(struct sp_port *port)
737{
738 TRACE("%p", port);
739 DWORD bytes_written;
740 BOOL result;
741
742 /* Wait for previous non-blocking write to complete, if any. */
743 if (port->writing) {
744 DEBUG("Waiting for previous write to complete");
745 result = GetOverlappedResult(port->hdl, &port->write_ovl, &bytes_written, TRUE);
746 port->writing = 0;
747 if (!result)
748 RETURN_FAIL("Previous write failed to complete");
749 DEBUG("Previous write completed");
750 }
751
752 RETURN_OK();
753}
754#endif
755
970f279a 756SP_API enum sp_return sp_blocking_write(struct sp_port *port, const void *buf,
1b91c6ea 757 size_t count, unsigned int timeout_ms)
e3dcf906 758{
1b91c6ea 759 TRACE("%p, %p, %d, %d", port, buf, count, timeout_ms);
e3dcf906
ML
760
761 CHECK_OPEN_PORT();
762
763 if (!buf)
764 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
765
1b91c6ea 766 if (timeout_ms)
7890cef6 767 DEBUG_FMT("Writing %d bytes to port %s, timeout %d ms",
1b91c6ea 768 count, port->name, timeout_ms);
e3dcf906 769 else
7890cef6
ML
770 DEBUG_FMT("Writing %d bytes to port %s, no timeout",
771 count, port->name);
e3dcf906
ML
772
773 if (count == 0)
9caa2e86 774 RETURN_INT(0);
e3dcf906
ML
775
776#ifdef _WIN32
777 DWORD bytes_written = 0;
e3dcf906 778
62ed9f80 779 TRY(await_write_completion(port));
e3dcf906
ML
780
781 /* Set timeout. */
27a58c05
ML
782 if (port->timeouts.WriteTotalTimeoutConstant != timeout_ms) {
783 port->timeouts.WriteTotalTimeoutConstant = timeout_ms;
784 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
785 RETURN_FAIL("SetCommTimeouts() failed");
786 }
e3dcf906
ML
787
788 /* Start write. */
bbe566fe 789 if (WriteFile(port->hdl, buf, count, NULL, &port->write_ovl)) {
e3dcf906 790 DEBUG("Write completed immediately");
9caa2e86 791 RETURN_INT(count);
bbe566fe
ML
792 } else if (GetLastError() == ERROR_IO_PENDING) {
793 DEBUG("Waiting for write to complete");
aee7d691
UH
794 if (GetOverlappedResult(port->hdl, &port->write_ovl, &bytes_written, TRUE) == 0) {
795 if (GetLastError() == ERROR_SEM_TIMEOUT) {
796 DEBUG("Write timed out");
797 RETURN_INT(0);
798 } else {
799 RETURN_FAIL("GetOverlappedResult() failed");
800 }
801 }
bbe566fe
ML
802 DEBUG_FMT("Write completed, %d/%d bytes written", bytes_written, count);
803 RETURN_INT(bytes_written);
804 } else {
805 RETURN_FAIL("WriteFile() failed");
e3dcf906
ML
806 }
807#else
808 size_t bytes_written = 0;
809 unsigned char *ptr = (unsigned char *) buf;
810 struct timeval start, delta, now, end = {0, 0};
76222ee5 811 int started = 0;
e3dcf906
ML
812 fd_set fds;
813 int result;
814
1b91c6ea 815 if (timeout_ms) {
e3dcf906
ML
816 /* Get time at start of operation. */
817 gettimeofday(&start, NULL);
818 /* Define duration of timeout. */
1b91c6ea
UH
819 delta.tv_sec = timeout_ms / 1000;
820 delta.tv_usec = (timeout_ms % 1000) * 1000;
e3dcf906
ML
821 /* Calculate time at which we should give up. */
822 timeradd(&start, &delta, &end);
823 }
824
772c5861
ML
825 FD_ZERO(&fds);
826 FD_SET(port->fd, &fds);
827
e3dcf906 828 /* Loop until we have written the requested number of bytes. */
dc422c04 829 while (bytes_written < count) {
76222ee5
ML
830 /*
831 * Check timeout only if we have run select() at least once,
832 * to avoid any issues if a short timeout is reached before
833 * select() is even run.
834 */
835 if (timeout_ms && started) {
e3dcf906 836 gettimeofday(&now, NULL);
c3cee38c
ML
837 if (timercmp(&now, &end, >))
838 /* Timeout has expired. */
839 break;
e3dcf906
ML
840 timersub(&end, &now, &delta);
841 }
1b91c6ea 842 result = select(port->fd + 1, NULL, &fds, NULL, timeout_ms ? &delta : NULL);
76222ee5 843 started = 1;
63a17c64
ML
844 if (result < 0) {
845 if (errno == EINTR) {
846 DEBUG("select() call was interrupted, repeating");
847 continue;
848 } else {
849 RETURN_FAIL("select() failed");
850 }
851 } else if (result == 0) {
c3cee38c
ML
852 /* Timeout has expired. */
853 break;
e3dcf906
ML
854 }
855
856 /* Do write. */
857 result = write(port->fd, ptr, count - bytes_written);
858
859 if (result < 0) {
860 if (errno == EAGAIN)
861 /* This shouldn't happen because we did a select() first, but handle anyway. */
862 continue;
863 else
864 /* This is an actual failure. */
865 RETURN_FAIL("write() failed");
866 }
867
868 bytes_written += result;
869 ptr += result;
870 }
871
c3cee38c
ML
872 if (bytes_written < count)
873 DEBUG("Write timed out");
874
9caa2e86 875 RETURN_INT(bytes_written);
e3dcf906
ML
876#endif
877}
878
970f279a
AJ
879SP_API enum sp_return sp_nonblocking_write(struct sp_port *port,
880 const void *buf, size_t count)
74510d4b 881{
c33efc48
ML
882 TRACE("%p, %p, %d", port, buf, count);
883
dec10e31 884 CHECK_OPEN_PORT();
74510d4b
ML
885
886 if (!buf)
c33efc48 887 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
74510d4b 888
7890cef6 889 DEBUG_FMT("Writing up to %d bytes to port %s", count, port->name);
ea667be7 890
a3cb91f5 891 if (count == 0)
9caa2e86 892 RETURN_INT(0);
a3cb91f5 893
74510d4b
ML
894#ifdef _WIN32
895 DWORD written = 0;
0765af56 896 BYTE *ptr = (BYTE *) buf;
f92f1f0c 897
e3dcf906
ML
898 /* Check whether previous write is complete. */
899 if (port->writing) {
900 if (HasOverlappedIoCompleted(&port->write_ovl)) {
901 DEBUG("Previous write completed");
902 port->writing = 0;
903 } else {
904 DEBUG("Previous write not complete");
905 /* Can't take a new write until the previous one finishes. */
9caa2e86 906 RETURN_INT(0);
a3cb91f5 907 }
e3dcf906 908 }
a3cb91f5 909
e3dcf906 910 /* Set timeout. */
27a58c05
ML
911 if (port->timeouts.WriteTotalTimeoutConstant != 0) {
912 port->timeouts.WriteTotalTimeoutConstant = 0;
913 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
914 RETURN_FAIL("SetCommTimeouts() failed");
915 }
e3dcf906 916
dc422c04
UH
917 /*
918 * Keep writing data until the OS has to actually start an async IO
919 * for it. At that point we know the buffer is full.
920 */
921 while (written < count) {
e3dcf906
ML
922 /* Copy first byte of user buffer. */
923 port->pending_byte = *ptr++;
924
925 /* Start asynchronous write. */
926 if (WriteFile(port->hdl, &port->pending_byte, 1, NULL, &port->write_ovl) == 0) {
927 if (GetLastError() == ERROR_IO_PENDING) {
64d99621
ML
928 if (HasOverlappedIoCompleted(&port->write_ovl)) {
929 DEBUG("Asynchronous write completed immediately");
930 port->writing = 0;
931 written++;
932 continue;
933 } else {
934 DEBUG("Asynchronous write running");
935 port->writing = 1;
9caa2e86 936 RETURN_INT(++written);
64d99621 937 }
a3cb91f5 938 } else {
e3dcf906
ML
939 /* Actual failure of some kind. */
940 RETURN_FAIL("WriteFile() failed");
a3cb91f5 941 }
e3dcf906 942 } else {
9af8cff3 943 DEBUG("Single byte written immediately");
e3dcf906 944 written++;
a3cb91f5
ML
945 }
946 }
947
9af8cff3 948 DEBUG("All bytes written immediately");
e3dcf906 949
9caa2e86 950 RETURN_INT(written);
74510d4b
ML
951#else
952 /* Returns the number of bytes written, or -1 upon failure. */
953 ssize_t written = write(port->fd, buf, count);
f92f1f0c 954
55ab7e0b
ML
955 if (written < 0) {
956 if (errno == EAGAIN)
957 // Buffer is full, no bytes written.
958 RETURN_INT(0);
959 else
960 RETURN_FAIL("write() failed");
961 } else {
9caa2e86 962 RETURN_INT(written);
55ab7e0b 963 }
74510d4b
ML
964#endif
965}
966
94a314a8
ML
967#ifdef _WIN32
968/* Restart wait operation if buffer was emptied. */
969static enum sp_return restart_wait_if_needed(struct sp_port *port, unsigned int bytes_read)
970{
8ebfaf89
ML
971 DWORD errors;
972 COMSTAT comstat;
94a314a8 973
21ae5ce1
ML
974 if (bytes_read == 0)
975 RETURN_OK();
976
8ebfaf89
ML
977 if (ClearCommError(port->hdl, &errors, &comstat) == 0)
978 RETURN_FAIL("ClearCommError() failed");
94a314a8 979
8ebfaf89 980 if (comstat.cbInQue == 0)
94a314a8
ML
981 TRY(restart_wait(port));
982
983 RETURN_OK();
984}
985#endif
986
970f279a 987SP_API enum sp_return sp_blocking_read(struct sp_port *port, void *buf,
1b91c6ea 988 size_t count, unsigned int timeout_ms)
e3dcf906 989{
1b91c6ea 990 TRACE("%p, %p, %d, %d", port, buf, count, timeout_ms);
e3dcf906
ML
991
992 CHECK_OPEN_PORT();
993
994 if (!buf)
995 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
996
1b91c6ea 997 if (timeout_ms)
7890cef6 998 DEBUG_FMT("Reading %d bytes from port %s, timeout %d ms",
1b91c6ea 999 count, port->name, timeout_ms);
e3dcf906 1000 else
7890cef6
ML
1001 DEBUG_FMT("Reading %d bytes from port %s, no timeout",
1002 count, port->name);
e3dcf906
ML
1003
1004 if (count == 0)
9caa2e86 1005 RETURN_INT(0);
e3dcf906
ML
1006
1007#ifdef _WIN32
1008 DWORD bytes_read = 0;
1009
1010 /* Set timeout. */
27a58c05 1011 if (port->timeouts.ReadIntervalTimeout != 0 ||
0188a545 1012 port->timeouts.ReadTotalTimeoutMultiplier != 0 ||
27a58c05
ML
1013 port->timeouts.ReadTotalTimeoutConstant != timeout_ms) {
1014 port->timeouts.ReadIntervalTimeout = 0;
0188a545 1015 port->timeouts.ReadTotalTimeoutMultiplier = 0;
27a58c05
ML
1016 port->timeouts.ReadTotalTimeoutConstant = timeout_ms;
1017 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
1018 RETURN_FAIL("SetCommTimeouts() failed");
1019 }
e3dcf906
ML
1020
1021 /* Start read. */
bbe566fe 1022 if (ReadFile(port->hdl, buf, count, NULL, &port->read_ovl)) {
e3dcf906 1023 DEBUG("Read completed immediately");
6f1186aa 1024 bytes_read = count;
bbe566fe
ML
1025 } else if (GetLastError() == ERROR_IO_PENDING) {
1026 DEBUG("Waiting for read to complete");
27911925
ML
1027 if (GetOverlappedResult(port->hdl, &port->read_ovl, &bytes_read, TRUE) == 0)
1028 RETURN_FAIL("GetOverlappedResult() failed");
bbe566fe
ML
1029 DEBUG_FMT("Read completed, %d/%d bytes read", bytes_read, count);
1030 } else {
1031 RETURN_FAIL("ReadFile() failed");
6f1186aa
ML
1032 }
1033
94a314a8 1034 TRY(restart_wait_if_needed(port, bytes_read));
6f1186aa 1035
9caa2e86 1036 RETURN_INT(bytes_read);
6f1186aa 1037
e3dcf906
ML
1038#else
1039 size_t bytes_read = 0;
81243567 1040 unsigned char *ptr = (unsigned char *)buf;
e3dcf906 1041 struct timeval start, delta, now, end = {0, 0};
76222ee5 1042 int started = 0;
e3dcf906
ML
1043 fd_set fds;
1044 int result;
1045
1b91c6ea 1046 if (timeout_ms) {
e3dcf906
ML
1047 /* Get time at start of operation. */
1048 gettimeofday(&start, NULL);
1049 /* Define duration of timeout. */
1b91c6ea
UH
1050 delta.tv_sec = timeout_ms / 1000;
1051 delta.tv_usec = (timeout_ms % 1000) * 1000;
e3dcf906
ML
1052 /* Calculate time at which we should give up. */
1053 timeradd(&start, &delta, &end);
1054 }
1055
772c5861
ML
1056 FD_ZERO(&fds);
1057 FD_SET(port->fd, &fds);
1058
e3dcf906 1059 /* Loop until we have the requested number of bytes. */
dc422c04 1060 while (bytes_read < count) {
76222ee5
ML
1061 /*
1062 * Check timeout only if we have run select() at least once,
1063 * to avoid any issues if a short timeout is reached before
1064 * select() is even run.
1065 */
1066 if (timeout_ms && started) {
e3dcf906
ML
1067 gettimeofday(&now, NULL);
1068 if (timercmp(&now, &end, >))
1069 /* Timeout has expired. */
c3cee38c 1070 break;
e3dcf906
ML
1071 timersub(&end, &now, &delta);
1072 }
1b91c6ea 1073 result = select(port->fd + 1, &fds, NULL, NULL, timeout_ms ? &delta : NULL);
76222ee5 1074 started = 1;
63a17c64
ML
1075 if (result < 0) {
1076 if (errno == EINTR) {
1077 DEBUG("select() call was interrupted, repeating");
1078 continue;
1079 } else {
1080 RETURN_FAIL("select() failed");
1081 }
1082 } else if (result == 0) {
c3cee38c
ML
1083 /* Timeout has expired. */
1084 break;
e3dcf906
ML
1085 }
1086
1087 /* Do read. */
1088 result = read(port->fd, ptr, count - bytes_read);
1089
1090 if (result < 0) {
1091 if (errno == EAGAIN)
76222ee5
ML
1092 /*
1093 * This shouldn't happen because we did a
1094 * select() first, but handle anyway.
1095 */
e3dcf906
ML
1096 continue;
1097 else
1098 /* This is an actual failure. */
1099 RETURN_FAIL("read() failed");
1100 }
1101
1102 bytes_read += result;
1103 ptr += result;
1104 }
1105
c3cee38c
ML
1106 if (bytes_read < count)
1107 DEBUG("Read timed out");
1108
9caa2e86 1109 RETURN_INT(bytes_read);
e3dcf906
ML
1110#endif
1111}
1112
e5c2630e
ML
1113SP_API enum sp_return sp_blocking_read_next(struct sp_port *port, void *buf,
1114 size_t count, unsigned int timeout_ms)
1115{
1116 TRACE("%p, %p, %d, %d", port, buf, count, timeout_ms);
1117
1118 CHECK_OPEN_PORT();
1119
1120 if (!buf)
1121 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
1122
1123 if (count == 0)
1124 RETURN_ERROR(SP_ERR_ARG, "Zero count");
1125
1126 if (timeout_ms)
1127 DEBUG_FMT("Reading next max %d bytes from port %s, timeout %d ms",
1128 count, port->name, timeout_ms);
1129 else
1130 DEBUG_FMT("Reading next max %d bytes from port %s, no timeout",
1131 count, port->name);
1132
1133#ifdef _WIN32
1134 DWORD bytes_read = 0;
1135
1136 /* If timeout_ms == 0, set maximum timeout. */
1137 DWORD timeout_val = (timeout_ms == 0 ? MAXDWORD - 1 : timeout_ms);
1138
1139 /* Set timeout. */
1140 if (port->timeouts.ReadIntervalTimeout != MAXDWORD ||
1141 port->timeouts.ReadTotalTimeoutMultiplier != MAXDWORD ||
1142 port->timeouts.ReadTotalTimeoutConstant != timeout_val) {
1143 port->timeouts.ReadIntervalTimeout = MAXDWORD;
1144 port->timeouts.ReadTotalTimeoutMultiplier = MAXDWORD;
1145 port->timeouts.ReadTotalTimeoutConstant = timeout_val;
1146 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
1147 RETURN_FAIL("SetCommTimeouts() failed");
1148 }
1149
1150 /* Loop until we have at least one byte, or timeout is reached. */
1151 while (bytes_read == 0) {
1152 /* Start read. */
888fb45d 1153 if (ReadFile(port->hdl, buf, count, &bytes_read, &port->read_ovl)) {
e5c2630e 1154 DEBUG("Read completed immediately");
e5c2630e
ML
1155 } else if (GetLastError() == ERROR_IO_PENDING) {
1156 DEBUG("Waiting for read to complete");
1157 if (GetOverlappedResult(port->hdl, &port->read_ovl, &bytes_read, TRUE) == 0)
1158 RETURN_FAIL("GetOverlappedResult() failed");
1159 if (bytes_read > 0) {
1160 DEBUG("Read completed");
1161 } else if (timeout_ms > 0) {
1162 DEBUG("Read timed out");
1163 break;
1164 } else {
1165 DEBUG("Restarting read");
1166 }
1167 } else {
1168 RETURN_FAIL("ReadFile() failed");
1169 }
1170 }
1171
1172 TRY(restart_wait_if_needed(port, bytes_read));
1173
1174 RETURN_INT(bytes_read);
1175
1176#else
1177 size_t bytes_read = 0;
1178 struct timeval start, delta, now, end = {0, 0};
1179 int started = 0;
1180 fd_set fds;
1181 int result;
1182
1183 if (timeout_ms) {
1184 /* Get time at start of operation. */
1185 gettimeofday(&start, NULL);
1186 /* Define duration of timeout. */
1187 delta.tv_sec = timeout_ms / 1000;
1188 delta.tv_usec = (timeout_ms % 1000) * 1000;
1189 /* Calculate time at which we should give up. */
1190 timeradd(&start, &delta, &end);
1191 }
1192
1193 FD_ZERO(&fds);
1194 FD_SET(port->fd, &fds);
1195
1196 /* Loop until we have at least one byte, or timeout is reached. */
1197 while (bytes_read == 0) {
1198 /*
1199 * Check timeout only if we have run select() at least once,
1200 * to avoid any issues if a short timeout is reached before
1201 * select() is even run.
1202 */
1203 if (timeout_ms && started) {
1204 gettimeofday(&now, NULL);
1205 if (timercmp(&now, &end, >))
1206 /* Timeout has expired. */
1207 break;
1208 timersub(&end, &now, &delta);
1209 }
1210 result = select(port->fd + 1, &fds, NULL, NULL, timeout_ms ? &delta : NULL);
1211 started = 1;
1212 if (result < 0) {
1213 if (errno == EINTR) {
1214 DEBUG("select() call was interrupted, repeating");
1215 continue;
1216 } else {
1217 RETURN_FAIL("select() failed");
1218 }
1219 } else if (result == 0) {
1220 /* Timeout has expired. */
1221 break;
1222 }
1223
1224 /* Do read. */
1225 result = read(port->fd, buf, count);
1226
1227 if (result < 0) {
1228 if (errno == EAGAIN)
1229 /* This shouldn't happen because we did a select() first, but handle anyway. */
1230 continue;
1231 else
1232 /* This is an actual failure. */
1233 RETURN_FAIL("read() failed");
1234 }
1235
1236 bytes_read = result;
1237 }
1238
1239 if (bytes_read == 0)
1240 DEBUG("Read timed out");
1241
1242 RETURN_INT(bytes_read);
1243#endif
1244}
1245
970f279a
AJ
1246SP_API enum sp_return sp_nonblocking_read(struct sp_port *port, void *buf,
1247 size_t count)
74510d4b 1248{
c33efc48
ML
1249 TRACE("%p, %p, %d", port, buf, count);
1250
dec10e31 1251 CHECK_OPEN_PORT();
74510d4b
ML
1252
1253 if (!buf)
c33efc48 1254 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
74510d4b 1255
7890cef6 1256 DEBUG_FMT("Reading up to %d bytes from port %s", count, port->name);
ea667be7 1257
74510d4b 1258#ifdef _WIN32
e3dcf906 1259 DWORD bytes_read;
f92f1f0c 1260
e3dcf906 1261 /* Set timeout. */
27a58c05 1262 if (port->timeouts.ReadIntervalTimeout != MAXDWORD ||
0188a545 1263 port->timeouts.ReadTotalTimeoutMultiplier != 0 ||
27a58c05
ML
1264 port->timeouts.ReadTotalTimeoutConstant != 0) {
1265 port->timeouts.ReadIntervalTimeout = MAXDWORD;
0188a545 1266 port->timeouts.ReadTotalTimeoutMultiplier = 0;
27a58c05
ML
1267 port->timeouts.ReadTotalTimeoutConstant = 0;
1268 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
1269 RETURN_FAIL("SetCommTimeouts() failed");
1270 }
e3dcf906
ML
1271
1272 /* Do read. */
1273 if (ReadFile(port->hdl, buf, count, NULL, &port->read_ovl) == 0)
ae2c5825
ML
1274 if (GetLastError() != ERROR_IO_PENDING)
1275 RETURN_FAIL("ReadFile() failed");
e3dcf906
ML
1276
1277 /* Get number of bytes read. */
ae2c5825 1278 if (GetOverlappedResult(port->hdl, &port->read_ovl, &bytes_read, FALSE) == 0)
1622ef60 1279 RETURN_FAIL("GetOverlappedResult() failed");
e3dcf906 1280
94a314a8 1281 TRY(restart_wait_if_needed(port, bytes_read));
6f1186aa 1282
9caa2e86 1283 RETURN_INT(bytes_read);
74510d4b
ML
1284#else
1285 ssize_t bytes_read;
f92f1f0c 1286
74510d4b 1287 /* Returns the number of bytes read, or -1 upon failure. */
33d5ff47 1288 if ((bytes_read = read(port->fd, buf, count)) < 0) {
e3dcf906
ML
1289 if (errno == EAGAIN)
1290 /* No bytes available. */
33d5ff47
ML
1291 bytes_read = 0;
1292 else
1293 /* This is an actual failure. */
1294 RETURN_FAIL("read() failed");
1295 }
9caa2e86 1296 RETURN_INT(bytes_read);
74510d4b
ML
1297#endif
1298}
1299
970f279a 1300SP_API enum sp_return sp_input_waiting(struct sp_port *port)
3353c22f
ML
1301{
1302 TRACE("%p", port);
1303
1304 CHECK_OPEN_PORT();
1305
7890cef6 1306 DEBUG_FMT("Checking input bytes waiting on port %s", port->name);
3353c22f
ML
1307
1308#ifdef _WIN32
1309 DWORD errors;
1310 COMSTAT comstat;
1311
1312 if (ClearCommError(port->hdl, &errors, &comstat) == 0)
1a2a1544 1313 RETURN_FAIL("ClearCommError() failed");
9caa2e86 1314 RETURN_INT(comstat.cbInQue);
3353c22f
ML
1315#else
1316 int bytes_waiting;
1317 if (ioctl(port->fd, TIOCINQ, &bytes_waiting) < 0)
1318 RETURN_FAIL("TIOCINQ ioctl failed");
9caa2e86 1319 RETURN_INT(bytes_waiting);
3353c22f
ML
1320#endif
1321}
1322
970f279a 1323SP_API enum sp_return sp_output_waiting(struct sp_port *port)
3353c22f
ML
1324{
1325 TRACE("%p", port);
1326
1327 CHECK_OPEN_PORT();
1328
7890cef6 1329 DEBUG_FMT("Checking output bytes waiting on port %s", port->name);
3353c22f
ML
1330
1331#ifdef _WIN32
1332 DWORD errors;
1333 COMSTAT comstat;
1334
1335 if (ClearCommError(port->hdl, &errors, &comstat) == 0)
1a2a1544 1336 RETURN_FAIL("ClearCommError() failed");
9caa2e86 1337 RETURN_INT(comstat.cbOutQue);
3353c22f
ML
1338#else
1339 int bytes_waiting;
1340 if (ioctl(port->fd, TIOCOUTQ, &bytes_waiting) < 0)
1341 RETURN_FAIL("TIOCOUTQ ioctl failed");
9caa2e86 1342 RETURN_INT(bytes_waiting);
3353c22f
ML
1343#endif
1344}
1345
970f279a 1346SP_API enum sp_return sp_new_event_set(struct sp_event_set **result_ptr)
6f1186aa
ML
1347{
1348 struct sp_event_set *result;
1349
1350 TRACE("%p", result_ptr);
1351
1352 if (!result_ptr)
1353 RETURN_ERROR(SP_ERR_ARG, "Null result");
1354
1355 *result_ptr = NULL;
1356
1357 if (!(result = malloc(sizeof(struct sp_event_set))))
1358 RETURN_ERROR(SP_ERR_MEM, "sp_event_set malloc() failed");
1359
1360 memset(result, 0, sizeof(struct sp_event_set));
1361
1362 *result_ptr = result;
1363
1364 RETURN_OK();
1365}
1366
1367static enum sp_return add_handle(struct sp_event_set *event_set,
1368 event_handle handle, enum sp_event mask)
1369{
1370 void *new_handles;
1371 enum sp_event *new_masks;
1372
1373 TRACE("%p, %d, %d", event_set, handle, mask);
1374
1375 if (!(new_handles = realloc(event_set->handles,
1376 sizeof(event_handle) * (event_set->count + 1))))
dc422c04 1377 RETURN_ERROR(SP_ERR_MEM, "Handle array realloc() failed");
6f1186aa 1378
ac323d80
UH
1379 event_set->handles = new_handles;
1380
6f1186aa 1381 if (!(new_masks = realloc(event_set->masks,
ac323d80 1382 sizeof(enum sp_event) * (event_set->count + 1))))
dc422c04 1383 RETURN_ERROR(SP_ERR_MEM, "Mask array realloc() failed");
6f1186aa 1384
6f1186aa
ML
1385 event_set->masks = new_masks;
1386
1387 ((event_handle *) event_set->handles)[event_set->count] = handle;
1388 event_set->masks[event_set->count] = mask;
1389
1390 event_set->count++;
1391
1392 RETURN_OK();
1393}
1394
970f279a 1395SP_API enum sp_return sp_add_port_events(struct sp_event_set *event_set,
6f1186aa
ML
1396 const struct sp_port *port, enum sp_event mask)
1397{
1398 TRACE("%p, %p, %d", event_set, port, mask);
1399
1400 if (!event_set)
1401 RETURN_ERROR(SP_ERR_ARG, "Null event set");
1402
1403 if (!port)
1404 RETURN_ERROR(SP_ERR_ARG, "Null port");
1405
1406 if (mask > (SP_EVENT_RX_READY | SP_EVENT_TX_READY | SP_EVENT_ERROR))
1407 RETURN_ERROR(SP_ERR_ARG, "Invalid event mask");
1408
1409 if (!mask)
1410 RETURN_OK();
1411
1412#ifdef _WIN32
1413 enum sp_event handle_mask;
1414 if ((handle_mask = mask & SP_EVENT_TX_READY))
1415 TRY(add_handle(event_set, port->write_ovl.hEvent, handle_mask));
1416 if ((handle_mask = mask & (SP_EVENT_RX_READY | SP_EVENT_ERROR)))
1417 TRY(add_handle(event_set, port->wait_ovl.hEvent, handle_mask));
1418#else
1419 TRY(add_handle(event_set, port->fd, mask));
1420#endif
1421
1422 RETURN_OK();
1423}
1424
970f279a 1425SP_API void sp_free_event_set(struct sp_event_set *event_set)
6f1186aa
ML
1426{
1427 TRACE("%p", event_set);
1428
1429 if (!event_set) {
1430 DEBUG("Null event set");
1431 RETURN();
1432 }
1433
1434 DEBUG("Freeing event set");
1435
1436 if (event_set->handles)
1437 free(event_set->handles);
1438 if (event_set->masks)
1439 free(event_set->masks);
1440
1441 free(event_set);
1442
1443 RETURN();
1444}
1445
970f279a 1446SP_API enum sp_return sp_wait(struct sp_event_set *event_set,
1b91c6ea 1447 unsigned int timeout_ms)
6f1186aa 1448{
1b91c6ea 1449 TRACE("%p, %d", event_set, timeout_ms);
6f1186aa
ML
1450
1451 if (!event_set)
1452 RETURN_ERROR(SP_ERR_ARG, "Null event set");
1453
1454#ifdef _WIN32
1455 if (WaitForMultipleObjects(event_set->count, event_set->handles, FALSE,
1b91c6ea 1456 timeout_ms ? timeout_ms : INFINITE) == WAIT_FAILED)
6f1186aa
ML
1457 RETURN_FAIL("WaitForMultipleObjects() failed");
1458
1459 RETURN_OK();
1460#else
1461 struct timeval start, delta, now, end = {0, 0};
127d8d0c 1462 const struct timeval max_delta = {
81243567
UH
1463 (INT_MAX / 1000), (INT_MAX % 1000) * 1000
1464 };
127d8d0c 1465 int started = 0, timeout_overflow = 0;
1b91c6ea 1466 int result, timeout_remaining_ms;
6f1186aa
ML
1467 struct pollfd *pollfds;
1468 unsigned int i;
1469
1470 if (!(pollfds = malloc(sizeof(struct pollfd) * event_set->count)))
1471 RETURN_ERROR(SP_ERR_MEM, "pollfds malloc() failed");
1472
1473 for (i = 0; i < event_set->count; i++) {
81243567 1474 pollfds[i].fd = ((int *)event_set->handles)[i];
6f1186aa
ML
1475 pollfds[i].events = 0;
1476 pollfds[i].revents = 0;
1477 if (event_set->masks[i] & SP_EVENT_RX_READY)
1478 pollfds[i].events |= POLLIN;
1479 if (event_set->masks[i] & SP_EVENT_TX_READY)
1480 pollfds[i].events |= POLLOUT;
1481 if (event_set->masks[i] & SP_EVENT_ERROR)
1482 pollfds[i].events |= POLLERR;
1483 }
1484
1b91c6ea 1485 if (timeout_ms) {
6f1186aa
ML
1486 /* Get time at start of operation. */
1487 gettimeofday(&start, NULL);
1488 /* Define duration of timeout. */
1b91c6ea
UH
1489 delta.tv_sec = timeout_ms / 1000;
1490 delta.tv_usec = (timeout_ms % 1000) * 1000;
6f1186aa
ML
1491 /* Calculate time at which we should give up. */
1492 timeradd(&start, &delta, &end);
1493 }
1494
1495 /* Loop until an event occurs. */
dc422c04 1496 while (1) {
76222ee5
ML
1497 /*
1498 * Check timeout only if we have run poll() at least once,
1499 * to avoid any issues if a short timeout is reached before
1500 * poll() is even run.
1501 */
6b8eee06
ML
1502 if (!timeout_ms) {
1503 timeout_remaining_ms = -1;
1504 } else if (!started) {
127d8d0c
ML
1505 timeout_overflow = (timeout_ms > INT_MAX);
1506 timeout_remaining_ms = timeout_overflow ? INT_MAX : timeout_ms;
6b8eee06 1507 } else {
6f1186aa
ML
1508 gettimeofday(&now, NULL);
1509 if (timercmp(&now, &end, >)) {
dc422c04 1510 DEBUG("Wait timed out");
6f1186aa
ML
1511 break;
1512 }
1513 timersub(&end, &now, &delta);
127d8d0c
ML
1514 if ((timeout_overflow = timercmp(&delta, &max_delta, >)))
1515 delta = max_delta;
1b91c6ea 1516 timeout_remaining_ms = delta.tv_sec * 1000 + delta.tv_usec / 1000;
6f1186aa
ML
1517 }
1518
6b8eee06 1519 result = poll(pollfds, event_set->count, timeout_remaining_ms);
76222ee5 1520 started = 1;
6f1186aa
ML
1521
1522 if (result < 0) {
1523 if (errno == EINTR) {
1524 DEBUG("poll() call was interrupted, repeating");
1525 continue;
1526 } else {
1527 free(pollfds);
1528 RETURN_FAIL("poll() failed");
1529 }
1530 } else if (result == 0) {
1531 DEBUG("poll() timed out");
127d8d0c
ML
1532 if (!timeout_overflow)
1533 break;
6f1186aa
ML
1534 } else {
1535 DEBUG("poll() completed");
1536 break;
1537 }
1538 }
1539
1540 free(pollfds);
1541 RETURN_OK();
1542#endif
1543}
1544
5cea279a 1545#ifdef USE_TERMIOS_SPEED
7a6d2196
ML
1546static enum sp_return get_baudrate(int fd, int *baudrate)
1547{
1548 void *data;
1549
c33efc48
ML
1550 TRACE("%d, %p", fd, baudrate);
1551
ea667be7
ML
1552 DEBUG("Getting baud rate");
1553
7a6d2196 1554 if (!(data = malloc(get_termios_size())))
c33efc48 1555 RETURN_ERROR(SP_ERR_MEM, "termios malloc failed");
7a6d2196 1556
8d43110a
ML
1557 if (ioctl(fd, get_termios_get_ioctl(), data) < 0) {
1558 free(data);
dc422c04 1559 RETURN_FAIL("Getting termios failed");
8d43110a 1560 }
7a6d2196
ML
1561
1562 *baudrate = get_termios_speed(data);
1563
8d43110a
ML
1564 free(data);
1565
c33efc48 1566 RETURN_OK();
7a6d2196
ML
1567}
1568
1569static enum sp_return set_baudrate(int fd, int baudrate)
1570{
1571 void *data;
1572
c33efc48
ML
1573 TRACE("%d, %d", fd, baudrate);
1574
ea667be7
ML
1575 DEBUG("Getting baud rate");
1576
7a6d2196 1577 if (!(data = malloc(get_termios_size())))
c33efc48 1578 RETURN_ERROR(SP_ERR_MEM, "termios malloc failed");
7a6d2196 1579
8d43110a
ML
1580 if (ioctl(fd, get_termios_get_ioctl(), data) < 0) {
1581 free(data);
dc422c04 1582 RETURN_FAIL("Getting termios failed");
8d43110a 1583 }
7a6d2196 1584
ea667be7
ML
1585 DEBUG("Setting baud rate");
1586
7a6d2196
ML
1587 set_termios_speed(data, baudrate);
1588
8d43110a
ML
1589 if (ioctl(fd, get_termios_set_ioctl(), data) < 0) {
1590 free(data);
dc422c04 1591 RETURN_FAIL("Setting termios failed");
8d43110a
ML
1592 }
1593
1594 free(data);
7a6d2196 1595
c33efc48 1596 RETURN_OK();
7a6d2196 1597}
5cea279a 1598#endif /* USE_TERMIOS_SPEED */
40978c2b
ML
1599
1600#ifdef USE_TERMIOX
bd791fe1 1601static enum sp_return get_flow(int fd, struct port_data *data)
40978c2b 1602{
bd791fe1 1603 void *termx;
40978c2b 1604
bd791fe1 1605 TRACE("%d, %p", fd, data);
c33efc48 1606
ea667be7
ML
1607 DEBUG("Getting advanced flow control");
1608
bd791fe1 1609 if (!(termx = malloc(get_termiox_size())))
c33efc48 1610 RETURN_ERROR(SP_ERR_MEM, "termiox malloc failed");
40978c2b 1611
bd791fe1
ML
1612 if (ioctl(fd, TCGETX, termx) < 0) {
1613 free(termx);
dc422c04 1614 RETURN_FAIL("Getting termiox failed");
8d43110a 1615 }
40978c2b 1616
bd791fe1
ML
1617 get_termiox_flow(termx, &data->rts_flow, &data->cts_flow,
1618 &data->dtr_flow, &data->dsr_flow);
40978c2b 1619
bd791fe1 1620 free(termx);
8d43110a 1621
c33efc48 1622 RETURN_OK();
40978c2b
ML
1623}
1624
bd791fe1 1625static enum sp_return set_flow(int fd, struct port_data *data)
40978c2b 1626{
bd791fe1 1627 void *termx;
40978c2b 1628
bd791fe1 1629 TRACE("%d, %p", fd, data);
c33efc48 1630
ea667be7
ML
1631 DEBUG("Getting advanced flow control");
1632
bd791fe1 1633 if (!(termx = malloc(get_termiox_size())))
c33efc48 1634 RETURN_ERROR(SP_ERR_MEM, "termiox malloc failed");
40978c2b 1635
bd791fe1
ML
1636 if (ioctl(fd, TCGETX, termx) < 0) {
1637 free(termx);
dc422c04 1638 RETURN_FAIL("Getting termiox failed");
8d43110a 1639 }
40978c2b 1640
ea667be7
ML
1641 DEBUG("Setting advanced flow control");
1642
bd791fe1
ML
1643 set_termiox_flow(termx, data->rts_flow, data->cts_flow,
1644 data->dtr_flow, data->dsr_flow);
40978c2b 1645
bd791fe1
ML
1646 if (ioctl(fd, TCSETX, termx) < 0) {
1647 free(termx);
dc422c04 1648 RETURN_FAIL("Setting termiox failed");
8d43110a
ML
1649 }
1650
bd791fe1 1651 free(termx);
40978c2b 1652
c33efc48 1653 RETURN_OK();
40978c2b
ML
1654}
1655#endif /* USE_TERMIOX */
7a6d2196 1656
eb6ed20f
ML
1657static enum sp_return get_config(struct sp_port *port, struct port_data *data,
1658 struct sp_port_config *config)
8094e4a0 1659{
da2748bf 1660 unsigned int i;
cbf628c7 1661
c33efc48
ML
1662 TRACE("%p, %p, %p", port, data, config);
1663
7890cef6 1664 DEBUG_FMT("Getting configuration for port %s", port->name);
ea667be7 1665
8094e4a0 1666#ifdef _WIN32
e33ab9aa 1667 if (!GetCommState(port->hdl, &data->dcb))
c33efc48 1668 RETURN_FAIL("GetCommState() failed");
8094e4a0 1669
067417af 1670 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
e33ab9aa 1671 if (data->dcb.BaudRate == std_baudrates[i].index) {
067417af
ML
1672 config->baudrate = std_baudrates[i].value;
1673 break;
1674 }
1675 }
1676
1677 if (i == NUM_STD_BAUDRATES)
1678 /* BaudRate field can be either an index or a custom baud rate. */
e33ab9aa 1679 config->baudrate = data->dcb.BaudRate;
067417af 1680
e33ab9aa 1681 config->bits = data->dcb.ByteSize;
067417af 1682
e33ab9aa
ML
1683 if (data->dcb.fParity)
1684 switch (data->dcb.Parity) {
067417af
ML
1685 case NOPARITY:
1686 config->parity = SP_PARITY_NONE;
1687 break;
e432ce60
ML
1688 case ODDPARITY:
1689 config->parity = SP_PARITY_ODD;
1690 break;
067417af
ML
1691 case EVENPARITY:
1692 config->parity = SP_PARITY_EVEN;
1693 break;
e432ce60
ML
1694 case MARKPARITY:
1695 config->parity = SP_PARITY_MARK;
1696 break;
1697 case SPACEPARITY:
1698 config->parity = SP_PARITY_SPACE;
067417af
ML
1699 break;
1700 default:
1701 config->parity = -1;
1702 }
1703 else
1704 config->parity = SP_PARITY_NONE;
1705
e33ab9aa 1706 switch (data->dcb.StopBits) {
067417af
ML
1707 case ONESTOPBIT:
1708 config->stopbits = 1;
1709 break;
1710 case TWOSTOPBITS:
1711 config->stopbits = 2;
1712 break;
1713 default:
1714 config->stopbits = -1;
1715 }
1716
e33ab9aa 1717 switch (data->dcb.fRtsControl) {
eac329d2
UH
1718 case RTS_CONTROL_DISABLE:
1719 config->rts = SP_RTS_OFF;
1720 break;
1721 case RTS_CONTROL_ENABLE:
1722 config->rts = SP_RTS_ON;
1723 break;
1724 case RTS_CONTROL_HANDSHAKE:
1725 config->rts = SP_RTS_FLOW_CONTROL;
1726 break;
1727 default:
1728 config->rts = -1;
067417af
ML
1729 }
1730
e33ab9aa 1731 config->cts = data->dcb.fOutxCtsFlow ? SP_CTS_FLOW_CONTROL : SP_CTS_IGNORE;
067417af 1732
e33ab9aa 1733 switch (data->dcb.fDtrControl) {
eac329d2
UH
1734 case DTR_CONTROL_DISABLE:
1735 config->dtr = SP_DTR_OFF;
1736 break;
1737 case DTR_CONTROL_ENABLE:
1738 config->dtr = SP_DTR_ON;
1739 break;
1740 case DTR_CONTROL_HANDSHAKE:
1741 config->dtr = SP_DTR_FLOW_CONTROL;
1742 break;
1743 default:
1744 config->dtr = -1;
067417af
ML
1745 }
1746
e33ab9aa
ML
1747 config->dsr = data->dcb.fOutxDsrFlow ? SP_DSR_FLOW_CONTROL : SP_DSR_IGNORE;
1748
c6754b45
ML
1749 if (data->dcb.fInX) {
1750 if (data->dcb.fOutX)
1751 config->xon_xoff = SP_XONXOFF_INOUT;
1752 else
1753 config->xon_xoff = SP_XONXOFF_IN;
1754 } else {
1755 if (data->dcb.fOutX)
1756 config->xon_xoff = SP_XONXOFF_OUT;
1757 else
1758 config->xon_xoff = SP_XONXOFF_DISABLED;
1759 }
1760
e33ab9aa
ML
1761#else // !_WIN32
1762
1763 if (tcgetattr(port->fd, &data->term) < 0)
c33efc48 1764 RETURN_FAIL("tcgetattr() failed");
e33ab9aa
ML
1765
1766 if (ioctl(port->fd, TIOCMGET, &data->controlbits) < 0)
c33efc48 1767 RETURN_FAIL("TIOCMGET ioctl failed");
40978c2b
ML
1768
1769#ifdef USE_TERMIOX
bd791fe1 1770 int ret = get_flow(port->fd, data);
68ec29db
ML
1771
1772 if (ret == SP_ERR_FAIL && errno == EINVAL)
1773 data->termiox_supported = 0;
1774 else if (ret < 0)
c33efc48 1775 RETURN_CODEVAL(ret);
68ec29db
ML
1776 else
1777 data->termiox_supported = 1;
1778#else
1779 data->termiox_supported = 0;
40978c2b
ML
1780#endif
1781
067417af 1782 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
e33ab9aa 1783 if (cfgetispeed(&data->term) == std_baudrates[i].index) {
067417af
ML
1784 config->baudrate = std_baudrates[i].value;
1785 break;
1786 }
1787 }
1788
31b3a8f5
MH
1789 if (i == NUM_STD_BAUDRATES) {
1790#ifdef __APPLE__
1791 config->baudrate = (int)data->term.c_ispeed;
5cea279a 1792#elif defined(USE_TERMIOS_SPEED)
7a6d2196 1793 TRY(get_baudrate(port->fd, &config->baudrate));
31b3a8f5 1794#else
067417af 1795 config->baudrate = -1;
31b3a8f5
MH
1796#endif
1797 }
067417af 1798
e33ab9aa 1799 switch (data->term.c_cflag & CSIZE) {
067417af
ML
1800 case CS8:
1801 config->bits = 8;
1802 break;
1803 case CS7:
1804 config->bits = 7;
1805 break;
1806 case CS6:
1807 config->bits = 6;
1808 break;
1809 case CS5:
1810 config->bits = 5;
1811 break;
1812 default:
1813 config->bits = -1;
1814 }
1815
e33ab9aa 1816 if (!(data->term.c_cflag & PARENB) && (data->term.c_iflag & IGNPAR))
067417af 1817 config->parity = SP_PARITY_NONE;
e33ab9aa 1818 else if (!(data->term.c_cflag & PARENB) || (data->term.c_iflag & IGNPAR))
067417af 1819 config->parity = -1;
c3e05092 1820#ifdef CMSPAR
e432ce60
ML
1821 else if (data->term.c_cflag & CMSPAR)
1822 config->parity = (data->term.c_cflag & PARODD) ? SP_PARITY_MARK : SP_PARITY_SPACE;
c3e05092 1823#endif
067417af 1824 else
e33ab9aa 1825 config->parity = (data->term.c_cflag & PARODD) ? SP_PARITY_ODD : SP_PARITY_EVEN;
067417af 1826
e33ab9aa 1827 config->stopbits = (data->term.c_cflag & CSTOPB) ? 2 : 1;
067417af 1828
e33ab9aa 1829 if (data->term.c_cflag & CRTSCTS) {
067417af
ML
1830 config->rts = SP_RTS_FLOW_CONTROL;
1831 config->cts = SP_CTS_FLOW_CONTROL;
1832 } else {
bd791fe1 1833 if (data->termiox_supported && data->rts_flow)
40978c2b
ML
1834 config->rts = SP_RTS_FLOW_CONTROL;
1835 else
1836 config->rts = (data->controlbits & TIOCM_RTS) ? SP_RTS_ON : SP_RTS_OFF;
1837
bd791fe1 1838 config->cts = (data->termiox_supported && data->cts_flow) ?
68ec29db 1839 SP_CTS_FLOW_CONTROL : SP_CTS_IGNORE;
067417af
ML
1840 }
1841
bd791fe1 1842 if (data->termiox_supported && data->dtr_flow)
40978c2b
ML
1843 config->dtr = SP_DTR_FLOW_CONTROL;
1844 else
1845 config->dtr = (data->controlbits & TIOCM_DTR) ? SP_DTR_ON : SP_DTR_OFF;
1846
bd791fe1 1847 config->dsr = (data->termiox_supported && data->dsr_flow) ?
68ec29db 1848 SP_DSR_FLOW_CONTROL : SP_DSR_IGNORE;
705bdc69 1849
e29b93a5
ML
1850 if (data->term.c_iflag & IXOFF) {
1851 if (data->term.c_iflag & IXON)
1852 config->xon_xoff = SP_XONXOFF_INOUT;
1853 else
1854 config->xon_xoff = SP_XONXOFF_IN;
1855 } else {
1856 if (data->term.c_iflag & IXON)
1857 config->xon_xoff = SP_XONXOFF_OUT;
1858 else
1859 config->xon_xoff = SP_XONXOFF_DISABLED;
1860 }
067417af
ML
1861#endif
1862
c33efc48 1863 RETURN_OK();
067417af
ML
1864}
1865
7a6d2196 1866static enum sp_return set_config(struct sp_port *port, struct port_data *data,
eb6ed20f 1867 const struct sp_port_config *config)
18fc2dd1 1868{
e33ab9aa 1869 unsigned int i;
31b3a8f5
MH
1870#ifdef __APPLE__
1871 BAUD_TYPE baud_nonstd;
1872
1873 baud_nonstd = B0;
1874#endif
5cea279a 1875#ifdef USE_TERMIOS_SPEED
7a6d2196
ML
1876 int baud_nonstd = 0;
1877#endif
18fc2dd1 1878
c33efc48
ML
1879 TRACE("%p, %p, %p", port, data, config);
1880
7890cef6 1881 DEBUG_FMT("Setting configuration for port %s", port->name);
ea667be7 1882
e33ab9aa 1883#ifdef _WIN32
6bd6a8b5
ML
1884
1885 TRY(await_write_completion(port));
1886
eac329d2 1887 if (config->baudrate >= 0) {
e33ab9aa
ML
1888 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
1889 if (config->baudrate == std_baudrates[i].value) {
1890 data->dcb.BaudRate = std_baudrates[i].index;
1891 break;
1892 }
1893 }
18fc2dd1 1894
e33ab9aa
ML
1895 if (i == NUM_STD_BAUDRATES)
1896 data->dcb.BaudRate = config->baudrate;
1897 }
18fc2dd1 1898
e33ab9aa
ML
1899 if (config->bits >= 0)
1900 data->dcb.ByteSize = config->bits;
1901
1902 if (config->parity >= 0) {
1903 switch (config->parity) {
e33ab9aa
ML
1904 case SP_PARITY_NONE:
1905 data->dcb.Parity = NOPARITY;
1906 break;
e432ce60
ML
1907 case SP_PARITY_ODD:
1908 data->dcb.Parity = ODDPARITY;
1909 break;
e33ab9aa
ML
1910 case SP_PARITY_EVEN:
1911 data->dcb.Parity = EVENPARITY;
1912 break;
e432ce60
ML
1913 case SP_PARITY_MARK:
1914 data->dcb.Parity = MARKPARITY;
1915 break;
1916 case SP_PARITY_SPACE:
1917 data->dcb.Parity = SPACEPARITY;
e33ab9aa
ML
1918 break;
1919 default:
c33efc48 1920 RETURN_ERROR(SP_ERR_ARG, "Invalid parity setting");
e33ab9aa 1921 }
18fc2dd1
ML
1922 }
1923
e33ab9aa
ML
1924 if (config->stopbits >= 0) {
1925 switch (config->stopbits) {
1926 /* Note: There's also ONE5STOPBITS == 1.5 (unneeded so far). */
1927 case 1:
1928 data->dcb.StopBits = ONESTOPBIT;
1929 break;
1930 case 2:
1931 data->dcb.StopBits = TWOSTOPBITS;
1932 break;
1933 default:
c33efc48 1934 RETURN_ERROR(SP_ERR_ARG, "Invalid stop bit setting");
e33ab9aa
ML
1935 }
1936 }
1937
1938 if (config->rts >= 0) {
1939 switch (config->rts) {
1940 case SP_RTS_OFF:
1941 data->dcb.fRtsControl = RTS_CONTROL_DISABLE;
1942 break;
1943 case SP_RTS_ON:
1944 data->dcb.fRtsControl = RTS_CONTROL_ENABLE;
1945 break;
1946 case SP_RTS_FLOW_CONTROL:
1947 data->dcb.fRtsControl = RTS_CONTROL_HANDSHAKE;
1948 break;
1949 default:
c33efc48 1950 RETURN_ERROR(SP_ERR_ARG, "Invalid RTS setting");
e33ab9aa
ML
1951 }
1952 }
1953
1954 if (config->cts >= 0) {
1955 switch (config->cts) {
1956 case SP_CTS_IGNORE:
1957 data->dcb.fOutxCtsFlow = FALSE;
1958 break;
1959 case SP_CTS_FLOW_CONTROL:
1960 data->dcb.fOutxCtsFlow = TRUE;
1961 break;
1962 default:
c33efc48 1963 RETURN_ERROR(SP_ERR_ARG, "Invalid CTS setting");
e33ab9aa
ML
1964 }
1965 }
1966
1967 if (config->dtr >= 0) {
1968 switch (config->dtr) {
1969 case SP_DTR_OFF:
1970 data->dcb.fDtrControl = DTR_CONTROL_DISABLE;
1971 break;
1972 case SP_DTR_ON:
1973 data->dcb.fDtrControl = DTR_CONTROL_ENABLE;
1974 break;
1975 case SP_DTR_FLOW_CONTROL:
1976 data->dcb.fDtrControl = DTR_CONTROL_HANDSHAKE;
1977 break;
1978 default:
c33efc48 1979 RETURN_ERROR(SP_ERR_ARG, "Invalid DTR setting");
e33ab9aa
ML
1980 }
1981 }
1982
1983 if (config->dsr >= 0) {
1984 switch (config->dsr) {
1985 case SP_DSR_IGNORE:
1986 data->dcb.fOutxDsrFlow = FALSE;
1987 break;
1988 case SP_DSR_FLOW_CONTROL:
1989 data->dcb.fOutxDsrFlow = TRUE;
1990 break;
1991 default:
c33efc48 1992 RETURN_ERROR(SP_ERR_ARG, "Invalid DSR setting");
e33ab9aa 1993 }
18fc2dd1
ML
1994 }
1995
e33ab9aa
ML
1996 if (config->xon_xoff >= 0) {
1997 switch (config->xon_xoff) {
1998 case SP_XONXOFF_DISABLED:
1999 data->dcb.fInX = FALSE;
2000 data->dcb.fOutX = FALSE;
2001 break;
2002 case SP_XONXOFF_IN:
2003 data->dcb.fInX = TRUE;
2004 data->dcb.fOutX = FALSE;
2005 break;
2006 case SP_XONXOFF_OUT:
2007 data->dcb.fInX = FALSE;
2008 data->dcb.fOutX = TRUE;
2009 break;
2010 case SP_XONXOFF_INOUT:
2011 data->dcb.fInX = TRUE;
2012 data->dcb.fOutX = TRUE;
2013 break;
2014 default:
c33efc48 2015 RETURN_ERROR(SP_ERR_ARG, "Invalid XON/XOFF setting");
e33ab9aa
ML
2016 }
2017 }
2018
2019 if (!SetCommState(port->hdl, &data->dcb))
c33efc48 2020 RETURN_FAIL("SetCommState() failed");
e33ab9aa 2021
31b3a8f5 2022#else /* !_WIN32 */
e33ab9aa 2023
7a6d2196
ML
2024 int controlbits;
2025
eac329d2 2026 if (config->baudrate >= 0) {
e33ab9aa
ML
2027 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
2028 if (config->baudrate == std_baudrates[i].value) {
2029 if (cfsetospeed(&data->term, std_baudrates[i].index) < 0)
c33efc48 2030 RETURN_FAIL("cfsetospeed() failed");
e33ab9aa
ML
2031
2032 if (cfsetispeed(&data->term, std_baudrates[i].index) < 0)
c33efc48 2033 RETURN_FAIL("cfsetispeed() failed");
e33ab9aa
ML
2034 break;
2035 }
2036 }
2037
31b3a8f5
MH
2038 /* Non-standard baud rate */
2039 if (i == NUM_STD_BAUDRATES) {
2040#ifdef __APPLE__
24abdb68 2041 /* Set "dummy" baud rate. */
31b3a8f5 2042 if (cfsetspeed(&data->term, B9600) < 0)
c33efc48 2043 RETURN_FAIL("cfsetspeed() failed");
31b3a8f5 2044 baud_nonstd = config->baudrate;
5cea279a 2045#elif defined(USE_TERMIOS_SPEED)
7a6d2196 2046 baud_nonstd = 1;
31b3a8f5 2047#else
c33efc48 2048 RETURN_ERROR(SP_ERR_SUPP, "Non-standard baudrate not supported");
31b3a8f5
MH
2049#endif
2050 }
e33ab9aa
ML
2051 }
2052
2053 if (config->bits >= 0) {
2054 data->term.c_cflag &= ~CSIZE;
2055 switch (config->bits) {
2056 case 8:
2057 data->term.c_cflag |= CS8;
2058 break;
2059 case 7:
2060 data->term.c_cflag |= CS7;
2061 break;
2062 case 6:
2063 data->term.c_cflag |= CS6;
2064 break;
23922313
UH
2065 case 5:
2066 data->term.c_cflag |= CS5;
2067 break;
e33ab9aa 2068 default:
c33efc48 2069 RETURN_ERROR(SP_ERR_ARG, "Invalid data bits setting");
e33ab9aa
ML
2070 }
2071 }
2072
2073 if (config->parity >= 0) {
2074 data->term.c_iflag &= ~IGNPAR;
c3e05092
UH
2075 data->term.c_cflag &= ~(PARENB | PARODD);
2076#ifdef CMSPAR
2077 data->term.c_cflag &= ~CMSPAR;
2078#endif
e33ab9aa
ML
2079 switch (config->parity) {
2080 case SP_PARITY_NONE:
2081 data->term.c_iflag |= IGNPAR;
2082 break;
2083 case SP_PARITY_EVEN:
2084 data->term.c_cflag |= PARENB;
2085 break;
2086 case SP_PARITY_ODD:
2087 data->term.c_cflag |= PARENB | PARODD;
2088 break;
afb518f0 2089#ifdef CMSPAR
e432ce60 2090 case SP_PARITY_MARK:
c3e05092 2091 data->term.c_cflag |= PARENB | PARODD;
c3e05092 2092 data->term.c_cflag |= CMSPAR;
e432ce60
ML
2093 break;
2094 case SP_PARITY_SPACE:
c3e05092 2095 data->term.c_cflag |= PARENB;
c3e05092 2096 data->term.c_cflag |= CMSPAR;
e432ce60 2097 break;
afb518f0
ML
2098#else
2099 case SP_PARITY_MARK:
2100 case SP_PARITY_SPACE:
2101 RETURN_ERROR(SP_ERR_SUPP, "Mark/space parity not supported");
2102#endif
e33ab9aa 2103 default:
c33efc48 2104 RETURN_ERROR(SP_ERR_ARG, "Invalid parity setting");
e33ab9aa
ML
2105 }
2106 }
2107
2108 if (config->stopbits >= 0) {
2109 data->term.c_cflag &= ~CSTOPB;
2110 switch (config->stopbits) {
2111 case 1:
2112 data->term.c_cflag &= ~CSTOPB;
2113 break;
2114 case 2:
2115 data->term.c_cflag |= CSTOPB;
2116 break;
2117 default:
c33efc48 2118 RETURN_ERROR(SP_ERR_ARG, "Invalid stop bits setting");
e33ab9aa
ML
2119 }
2120 }
2121
eac329d2 2122 if (config->rts >= 0 || config->cts >= 0) {
68ec29db 2123 if (data->termiox_supported) {
bd791fe1 2124 data->rts_flow = data->cts_flow = 0;
68ec29db
ML
2125 switch (config->rts) {
2126 case SP_RTS_OFF:
2127 case SP_RTS_ON:
2128 controlbits = TIOCM_RTS;
2129 if (ioctl(port->fd, config->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC, &controlbits) < 0)
c33efc48 2130 RETURN_FAIL("Setting RTS signal level failed");
68ec29db
ML
2131 break;
2132 case SP_RTS_FLOW_CONTROL:
bd791fe1 2133 data->rts_flow = 1;
68ec29db
ML
2134 break;
2135 default:
2136 break;
e33ab9aa 2137 }
68ec29db 2138 if (config->cts == SP_CTS_FLOW_CONTROL)
bd791fe1 2139 data->cts_flow = 1;
e33ab9aa 2140
bd791fe1 2141 if (data->rts_flow && data->cts_flow)
e33ab9aa 2142 data->term.c_iflag |= CRTSCTS;
68ec29db
ML
2143 else
2144 data->term.c_iflag &= ~CRTSCTS;
2145 } else {
2146 /* Asymmetric use of RTS/CTS not supported. */
2147 if (data->term.c_iflag & CRTSCTS) {
2148 /* Flow control can only be disabled for both RTS & CTS together. */
2149 if (config->rts >= 0 && config->rts != SP_RTS_FLOW_CONTROL) {
2150 if (config->cts != SP_CTS_IGNORE)
c33efc48 2151 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be disabled together");
68ec29db
ML
2152 }
2153 if (config->cts >= 0 && config->cts != SP_CTS_FLOW_CONTROL) {
2154 if (config->rts <= 0 || config->rts == SP_RTS_FLOW_CONTROL)
c33efc48 2155 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be disabled together");
68ec29db 2156 }
e33ab9aa 2157 } else {
68ec29db
ML
2158 /* Flow control can only be enabled for both RTS & CTS together. */
2159 if (((config->rts == SP_RTS_FLOW_CONTROL) && (config->cts != SP_CTS_FLOW_CONTROL)) ||
2160 ((config->cts == SP_CTS_FLOW_CONTROL) && (config->rts != SP_RTS_FLOW_CONTROL)))
c33efc48 2161 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be enabled together");
68ec29db
ML
2162 }
2163
2164 if (config->rts >= 0) {
2165 if (config->rts == SP_RTS_FLOW_CONTROL) {
2166 data->term.c_iflag |= CRTSCTS;
2167 } else {
2168 controlbits = TIOCM_RTS;
2169 if (ioctl(port->fd, config->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC,
2170 &controlbits) < 0)
c33efc48 2171 RETURN_FAIL("Setting RTS signal level failed");
68ec29db 2172 }
e33ab9aa
ML
2173 }
2174 }
2175 }
2176
eac329d2 2177 if (config->dtr >= 0 || config->dsr >= 0) {
68ec29db 2178 if (data->termiox_supported) {
bd791fe1 2179 data->dtr_flow = data->dsr_flow = 0;
68ec29db
ML
2180 switch (config->dtr) {
2181 case SP_DTR_OFF:
2182 case SP_DTR_ON:
2183 controlbits = TIOCM_DTR;
2184 if (ioctl(port->fd, config->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC, &controlbits) < 0)
c33efc48 2185 RETURN_FAIL("Setting DTR signal level failed");
68ec29db
ML
2186 break;
2187 case SP_DTR_FLOW_CONTROL:
bd791fe1 2188 data->dtr_flow = 1;
68ec29db
ML
2189 break;
2190 default:
2191 break;
2192 }
2193 if (config->dsr == SP_DSR_FLOW_CONTROL)
bd791fe1 2194 data->dsr_flow = 1;
68ec29db
ML
2195 } else {
2196 /* DTR/DSR flow control not supported. */
2197 if (config->dtr == SP_DTR_FLOW_CONTROL || config->dsr == SP_DSR_FLOW_CONTROL)
c33efc48 2198 RETURN_ERROR(SP_ERR_SUPP, "DTR/DSR flow control not supported");
e33ab9aa 2199
68ec29db
ML
2200 if (config->dtr >= 0) {
2201 controlbits = TIOCM_DTR;
2202 if (ioctl(port->fd, config->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC,
2203 &controlbits) < 0)
c33efc48 2204 RETURN_FAIL("Setting DTR signal level failed");
68ec29db 2205 }
e33ab9aa
ML
2206 }
2207 }
2208
2209 if (config->xon_xoff >= 0) {
2210 data->term.c_iflag &= ~(IXON | IXOFF | IXANY);
2211 switch (config->xon_xoff) {
2212 case SP_XONXOFF_DISABLED:
2213 break;
2214 case SP_XONXOFF_IN:
2215 data->term.c_iflag |= IXOFF;
2216 break;
2217 case SP_XONXOFF_OUT:
2218 data->term.c_iflag |= IXON | IXANY;
2219 break;
2220 case SP_XONXOFF_INOUT:
2221 data->term.c_iflag |= IXON | IXOFF | IXANY;
2222 break;
2223 default:
c33efc48 2224 RETURN_ERROR(SP_ERR_ARG, "Invalid XON/XOFF setting");
e33ab9aa
ML
2225 }
2226 }
2227
3f5c06d0 2228 if (tcsetattr(port->fd, TCSANOW, &data->term) < 0)
c33efc48 2229 RETURN_FAIL("tcsetattr() failed");
31b3a8f5
MH
2230
2231#ifdef __APPLE__
2232 if (baud_nonstd != B0) {
2233 if (ioctl(port->fd, IOSSIOSPEED, &baud_nonstd) == -1)
c33efc48 2234 RETURN_FAIL("IOSSIOSPEED ioctl failed");
dc422c04
UH
2235 /*
2236 * Set baud rates in data->term to correct, but incompatible
2237 * with tcsetattr() value, same as delivered by tcgetattr().
2238 */
31b3a8f5 2239 if (cfsetspeed(&data->term, baud_nonstd) < 0)
c33efc48 2240 RETURN_FAIL("cfsetspeed() failed");
31b3a8f5 2241 }
7a6d2196 2242#elif defined(__linux__)
5cea279a 2243#ifdef USE_TERMIOS_SPEED
7a6d2196
ML
2244 if (baud_nonstd)
2245 TRY(set_baudrate(port->fd, config->baudrate));
5cea279a 2246#endif
40978c2b 2247#ifdef USE_TERMIOX
68ec29db 2248 if (data->termiox_supported)
bd791fe1 2249 TRY(set_flow(port->fd, data));
40978c2b 2250#endif
7a6d2196 2251#endif
31b3a8f5
MH
2252
2253#endif /* !_WIN32 */
e33ab9aa 2254
c33efc48 2255 RETURN_OK();
e33ab9aa
ML
2256}
2257
970f279a 2258SP_API enum sp_return sp_new_config(struct sp_port_config **config_ptr)
9b1502ef 2259{
59131d60 2260 struct sp_port_config *config;
9b1502ef 2261
00d8c56d
UH
2262 TRACE("%p", config_ptr);
2263
9b1502ef
ML
2264 if (!config_ptr)
2265 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
2266
59131d60
ML
2267 *config_ptr = NULL;
2268
2269 if (!(config = malloc(sizeof(struct sp_port_config))))
dc422c04 2270 RETURN_ERROR(SP_ERR_MEM, "Config malloc failed");
9b1502ef 2271
59131d60
ML
2272 config->baudrate = -1;
2273 config->bits = -1;
2274 config->parity = -1;
2275 config->stopbits = -1;
2276 config->rts = -1;
2277 config->cts = -1;
2278 config->dtr = -1;
2279 config->dsr = -1;
2280
2281 *config_ptr = config;
2282
9b1502ef
ML
2283 RETURN_OK();
2284}
2285
970f279a 2286SP_API void sp_free_config(struct sp_port_config *config)
9b1502ef
ML
2287{
2288 TRACE("%p", config);
2289
2290 if (!config)
2291 DEBUG("Null config");
2292 else
2293 free(config);
2294
2295 RETURN();
2296}
2297
970f279a
AJ
2298SP_API enum sp_return sp_get_config(struct sp_port *port,
2299 struct sp_port_config *config)
70cd37de
ML
2300{
2301 struct port_data data;
2302
2303 TRACE("%p, %p", port, config);
2304
2305 CHECK_OPEN_PORT();
2306
2307 if (!config)
9b1502ef 2308 RETURN_ERROR(SP_ERR_ARG, "Null config");
70cd37de
ML
2309
2310 TRY(get_config(port, &data, config));
2311
2312 RETURN_OK();
2313}
2314
970f279a
AJ
2315SP_API enum sp_return sp_set_config(struct sp_port *port,
2316 const struct sp_port_config *config)
e33ab9aa 2317{
8f189c4c 2318 struct port_data data;
e33ab9aa
ML
2319 struct sp_port_config prev_config;
2320
c33efc48
ML
2321 TRACE("%p, %p", port, config);
2322
dec10e31 2323 CHECK_OPEN_PORT();
823690ae
ML
2324
2325 if (!config)
c33efc48 2326 RETURN_ERROR(SP_ERR_ARG, "Null config");
823690ae 2327
e33ab9aa
ML
2328 TRY(get_config(port, &data, &prev_config));
2329 TRY(set_config(port, &data, config));
74510d4b 2330
c33efc48 2331 RETURN_OK();
74510d4b
ML
2332}
2333
9b1502ef 2334#define CREATE_ACCESSORS(x, type) \
970f279a 2335SP_API enum sp_return sp_set_##x(struct sp_port *port, type x) { \
8f189c4c 2336 struct port_data data; \
e33ab9aa 2337 struct sp_port_config config; \
c33efc48 2338 TRACE("%p, %d", port, x); \
dec10e31 2339 CHECK_OPEN_PORT(); \
e33ab9aa
ML
2340 TRY(get_config(port, &data, &config)); \
2341 config.x = x; \
2342 TRY(set_config(port, &data, &config)); \
c33efc48 2343 RETURN_OK(); \
9b1502ef 2344} \
970f279a
AJ
2345SP_API enum sp_return sp_get_config_##x(const struct sp_port_config *config, \
2346 type *x) { \
00d8c56d 2347 TRACE("%p, %p", config, x); \
6aad5bdd
UH
2348 if (!x) \
2349 RETURN_ERROR(SP_ERR_ARG, "Null result pointer"); \
9b1502ef
ML
2350 if (!config) \
2351 RETURN_ERROR(SP_ERR_ARG, "Null config"); \
2352 *x = config->x; \
2353 RETURN_OK(); \
2354} \
970f279a
AJ
2355SP_API enum sp_return sp_set_config_##x(struct sp_port_config *config, \
2356 type x) { \
9b1502ef
ML
2357 TRACE("%p, %d", config, x); \
2358 if (!config) \
2359 RETURN_ERROR(SP_ERR_ARG, "Null config"); \
2360 config->x = x; \
2361 RETURN_OK(); \
9069c2fb
ML
2362}
2363
9b1502ef
ML
2364CREATE_ACCESSORS(baudrate, int)
2365CREATE_ACCESSORS(bits, int)
2366CREATE_ACCESSORS(parity, enum sp_parity)
2367CREATE_ACCESSORS(stopbits, int)
2368CREATE_ACCESSORS(rts, enum sp_rts)
2369CREATE_ACCESSORS(cts, enum sp_cts)
2370CREATE_ACCESSORS(dtr, enum sp_dtr)
2371CREATE_ACCESSORS(dsr, enum sp_dsr)
2372CREATE_ACCESSORS(xon_xoff, enum sp_xonxoff)
2373
970f279a
AJ
2374SP_API enum sp_return sp_set_config_flowcontrol(struct sp_port_config *config,
2375 enum sp_flowcontrol flowcontrol)
e33ab9aa 2376{
9b1502ef
ML
2377 if (!config)
2378 RETURN_ERROR(SP_ERR_ARG, "Null configuration");
dec10e31
ML
2379
2380 if (flowcontrol > SP_FLOWCONTROL_DTRDSR)
2381 RETURN_ERROR(SP_ERR_ARG, "Invalid flow control setting");
823690ae 2382
e33ab9aa 2383 if (flowcontrol == SP_FLOWCONTROL_XONXOFF)
9b1502ef 2384 config->xon_xoff = SP_XONXOFF_INOUT;
e33ab9aa 2385 else
9b1502ef 2386 config->xon_xoff = SP_XONXOFF_DISABLED;
e33ab9aa
ML
2387
2388 if (flowcontrol == SP_FLOWCONTROL_RTSCTS) {
9b1502ef
ML
2389 config->rts = SP_RTS_FLOW_CONTROL;
2390 config->cts = SP_CTS_FLOW_CONTROL;
e33ab9aa 2391 } else {
9b1502ef
ML
2392 if (config->rts == SP_RTS_FLOW_CONTROL)
2393 config->rts = SP_RTS_ON;
2394 config->cts = SP_CTS_IGNORE;
e33ab9aa
ML
2395 }
2396
2397 if (flowcontrol == SP_FLOWCONTROL_DTRDSR) {
9b1502ef
ML
2398 config->dtr = SP_DTR_FLOW_CONTROL;
2399 config->dsr = SP_DSR_FLOW_CONTROL;
e33ab9aa 2400 } else {
9b1502ef
ML
2401 if (config->dtr == SP_DTR_FLOW_CONTROL)
2402 config->dtr = SP_DTR_ON;
2403 config->dsr = SP_DSR_IGNORE;
e33ab9aa
ML
2404 }
2405
9b1502ef
ML
2406 RETURN_OK();
2407}
2408
970f279a
AJ
2409SP_API enum sp_return sp_set_flowcontrol(struct sp_port *port,
2410 enum sp_flowcontrol flowcontrol)
9b1502ef
ML
2411{
2412 struct port_data data;
2413 struct sp_port_config config;
2414
2415 TRACE("%p, %d", port, flowcontrol);
2416
2417 CHECK_OPEN_PORT();
2418
2419 TRY(get_config(port, &data, &config));
2420
2421 TRY(sp_set_config_flowcontrol(&config, flowcontrol));
2422
e33ab9aa
ML
2423 TRY(set_config(port, &data, &config));
2424
c33efc48 2425 RETURN_OK();
e33ab9aa
ML
2426}
2427
970f279a
AJ
2428SP_API enum sp_return sp_get_signals(struct sp_port *port,
2429 enum sp_signal *signals)
8cf7c697 2430{
c33efc48
ML
2431 TRACE("%p, %p", port, signals);
2432
dec10e31 2433 CHECK_OPEN_PORT();
8cf7c697
ML
2434
2435 if (!signals)
c33efc48 2436 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
8cf7c697 2437
7890cef6 2438 DEBUG_FMT("Getting control signals for port %s", port->name);
ea667be7 2439
8cf7c697
ML
2440 *signals = 0;
2441#ifdef _WIN32
2442 DWORD bits;
2443 if (GetCommModemStatus(port->hdl, &bits) == 0)
c33efc48 2444 RETURN_FAIL("GetCommModemStatus() failed");
8cf7c697
ML
2445 if (bits & MS_CTS_ON)
2446 *signals |= SP_SIG_CTS;
2447 if (bits & MS_DSR_ON)
2448 *signals |= SP_SIG_DSR;
8cf7c697 2449 if (bits & MS_RLSD_ON)
a6cda1e8
ML
2450 *signals |= SP_SIG_DCD;
2451 if (bits & MS_RING_ON)
8cf7c697
ML
2452 *signals |= SP_SIG_RI;
2453#else
2454 int bits;
2455 if (ioctl(port->fd, TIOCMGET, &bits) < 0)
c33efc48 2456 RETURN_FAIL("TIOCMGET ioctl failed");
8cf7c697
ML
2457 if (bits & TIOCM_CTS)
2458 *signals |= SP_SIG_CTS;
2459 if (bits & TIOCM_DSR)
2460 *signals |= SP_SIG_DSR;
2461 if (bits & TIOCM_CAR)
2462 *signals |= SP_SIG_DCD;
2463 if (bits & TIOCM_RNG)
2464 *signals |= SP_SIG_RI;
2465#endif
c33efc48 2466 RETURN_OK();
8cf7c697
ML
2467}
2468
970f279a 2469SP_API enum sp_return sp_start_break(struct sp_port *port)
90cc3ee6 2470{
c33efc48
ML
2471 TRACE("%p", port);
2472
dec10e31 2473 CHECK_OPEN_PORT();
90cc3ee6
ML
2474#ifdef _WIN32
2475 if (SetCommBreak(port->hdl) == 0)
c33efc48 2476 RETURN_FAIL("SetCommBreak() failed");
90cc3ee6
ML
2477#else
2478 if (ioctl(port->fd, TIOCSBRK, 1) < 0)
c33efc48 2479 RETURN_FAIL("TIOCSBRK ioctl failed");
90cc3ee6
ML
2480#endif
2481
c33efc48 2482 RETURN_OK();
90cc3ee6
ML
2483}
2484
970f279a 2485SP_API enum sp_return sp_end_break(struct sp_port *port)
90cc3ee6 2486{
c33efc48
ML
2487 TRACE("%p", port);
2488
dec10e31 2489 CHECK_OPEN_PORT();
90cc3ee6
ML
2490#ifdef _WIN32
2491 if (ClearCommBreak(port->hdl) == 0)
c33efc48 2492 RETURN_FAIL("ClearCommBreak() failed");
90cc3ee6
ML
2493#else
2494 if (ioctl(port->fd, TIOCCBRK, 1) < 0)
c33efc48 2495 RETURN_FAIL("TIOCCBRK ioctl failed");
90cc3ee6
ML
2496#endif
2497
c33efc48 2498 RETURN_OK();
90cc3ee6
ML
2499}
2500
970f279a 2501SP_API int sp_last_error_code(void)
74510d4b 2502{
7890cef6 2503 TRACE_VOID();
74510d4b 2504#ifdef _WIN32
9caa2e86 2505 RETURN_INT(GetLastError());
74510d4b 2506#else
9caa2e86 2507 RETURN_INT(errno);
74510d4b
ML
2508#endif
2509}
2510
970f279a 2511SP_API char *sp_last_error_message(void)
74510d4b 2512{
7890cef6 2513 TRACE_VOID();
c33efc48 2514
74510d4b 2515#ifdef _WIN32
9a0c4bbd 2516 TCHAR *message;
74510d4b
ML
2517 DWORD error = GetLastError();
2518
9a0c4bbd 2519 DWORD length = FormatMessage(
74510d4b
ML
2520 FORMAT_MESSAGE_ALLOCATE_BUFFER |
2521 FORMAT_MESSAGE_FROM_SYSTEM |
2522 FORMAT_MESSAGE_IGNORE_INSERTS,
2523 NULL,
2524 error,
2525 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
2526 (LPTSTR) &message,
2527 0, NULL );
2528
9a0c4bbd
ML
2529 if (length >= 2 && message[length - 2] == '\r')
2530 message[length - 2] = '\0';
2531
9caa2e86 2532 RETURN_STRING(message);
74510d4b 2533#else
9caa2e86 2534 RETURN_STRING(strerror(errno));
74510d4b
ML
2535#endif
2536}
2537
970f279a 2538SP_API void sp_free_error_message(char *message)
74510d4b 2539{
c33efc48
ML
2540 TRACE("%s", message);
2541
74510d4b
ML
2542#ifdef _WIN32
2543 LocalFree(message);
64eec30d
ML
2544#else
2545 (void)message;
74510d4b 2546#endif
c33efc48
ML
2547
2548 RETURN();
74510d4b 2549}
863b35e6 2550
970f279a 2551SP_API void sp_set_debug_handler(void (*handler)(const char *format, ...))
863b35e6 2552{
c33efc48
ML
2553 TRACE("%p", handler);
2554
863b35e6 2555 sp_debug_handler = handler;
c33efc48
ML
2556
2557 RETURN();
863b35e6
ML
2558}
2559
970f279a 2560SP_API void sp_default_debug_handler(const char *format, ...)
863b35e6
ML
2561{
2562 va_list args;
2563 va_start(args, format);
2564 if (getenv("LIBSERIALPORT_DEBUG")) {
dd7742fb 2565 fputs("sp: ", stderr);
863b35e6
ML
2566 vfprintf(stderr, format, args);
2567 }
2568 va_end(args);
2569}
524b0e14 2570
970f279a 2571SP_API int sp_get_major_package_version(void)
524b0e14
UH
2572{
2573 return SP_PACKAGE_VERSION_MAJOR;
2574}
2575
970f279a 2576SP_API int sp_get_minor_package_version(void)
524b0e14
UH
2577{
2578 return SP_PACKAGE_VERSION_MINOR;
2579}
2580
970f279a 2581SP_API int sp_get_micro_package_version(void)
524b0e14
UH
2582{
2583 return SP_PACKAGE_VERSION_MICRO;
2584}
2585
970f279a 2586SP_API const char *sp_get_package_version_string(void)
524b0e14
UH
2587{
2588 return SP_PACKAGE_VERSION_STRING;
2589}
2590
970f279a 2591SP_API int sp_get_current_lib_version(void)
524b0e14
UH
2592{
2593 return SP_LIB_VERSION_CURRENT;
2594}
2595
970f279a 2596SP_API int sp_get_revision_lib_version(void)
524b0e14
UH
2597{
2598 return SP_LIB_VERSION_REVISION;
2599}
2600
970f279a 2601SP_API int sp_get_age_lib_version(void)
524b0e14
UH
2602{
2603 return SP_LIB_VERSION_AGE;
2604}
2605
970f279a 2606SP_API const char *sp_get_lib_version_string(void)
524b0e14
UH
2607{
2608 return SP_LIB_VERSION_STRING;
2609}
2610
2611/** @} */