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