]> sigrok.org Git - libserialport.git/blame - serialport.c
Set some sane defaults in sp_open() on Windows too.
[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>
5 * Copyright (C) 2010-2012 Uwe Hermann <uwe@hermann-uwe.de>
6 * Copyright (C) 2013 Martin Ling <martin-libserialport@earth.li>
31b3a8f5 7 * Copyright (C) 2013 Matthias Heidbrink <m-sigrok@heidbrink.biz>
74510d4b
ML
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as
11 * published by the Free Software Foundation, either version 3 of the
12 * License, or (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23#include <string.h>
24#include <sys/types.h>
25#include <sys/stat.h>
26#include <fcntl.h>
27#include <unistd.h>
3b63f34d
ML
28#include <stdlib.h>
29#include <errno.h>
863b35e6
ML
30#include <stdio.h>
31#include <stdarg.h>
74510d4b
ML
32#ifdef _WIN32
33#include <windows.h>
3b63f34d 34#include <tchar.h>
767c5ba8 35#include <stdio.h>
74510d4b 36#else
74510d4b
ML
37#include <termios.h>
38#include <sys/ioctl.h>
39#endif
3b63f34d 40#ifdef __APPLE__
1ebf4347
ML
41#include <IOKit/IOKitLib.h>
42#include <IOKit/serial/IOSerialKeys.h>
31b3a8f5 43#include <IOKit/serial/ioss.h>
1ebf4347 44#include <sys/syslimits.h>
3b63f34d
ML
45#endif
46#ifdef __linux__
47#include "libudev.h"
4b97c9fc 48#include "linux/serial.h"
7a6d2196 49#include "linux_termios.h"
40978c2b 50#if defined(TCGETX) && defined(TCSETX) && defined(HAVE_TERMIOX)
68ec29db 51#define USE_TERMIOX
40978c2b 52#endif
3b63f34d 53#endif
74510d4b 54
71c8a9b9
UH
55#ifndef _WIN32
56#include "linux_termios.h"
57#endif
58
f6a1fb65 59#include "libserialport.h"
74510d4b 60
1c5aae9d
ML
61struct sp_port {
62 char *name;
33d5ff47 63 int nonblocking;
1c5aae9d
ML
64#ifdef _WIN32
65 HANDLE hdl;
a3cb91f5 66 OVERLAPPED write_ovl;
0765af56 67 BYTE pending_byte;
a3cb91f5 68 BOOL writing;
1c5aae9d
ML
69#else
70 int fd;
71#endif
72};
73
9b1502ef
ML
74struct sp_port_config {
75 int baudrate;
76 int bits;
77 enum sp_parity parity;
78 int stopbits;
79 enum sp_rts rts;
80 enum sp_cts cts;
81 enum sp_dtr dtr;
82 enum sp_dsr dsr;
83 enum sp_xonxoff xon_xoff;
84};
85
8f189c4c 86struct port_data {
8094e4a0
ML
87#ifdef _WIN32
88 DCB dcb;
89#else
90 struct termios term;
824dcb45 91 int controlbits;
68ec29db 92 int termiox_supported;
40978c2b
ML
93 int flow;
94#endif
8094e4a0
ML
95};
96
da2748bf
ML
97/* Standard baud rates. */
98#ifdef _WIN32
99#define BAUD_TYPE DWORD
100#define BAUD(n) {CBR_##n, n}
101#else
102#define BAUD_TYPE speed_t
103#define BAUD(n) {B##n, n}
104#endif
105
106struct std_baudrate {
107 BAUD_TYPE index;
108 int value;
109};
110
111const struct std_baudrate std_baudrates[] = {
112#ifdef _WIN32
113 /*
114 * The baudrates 50/75/134/150/200/1800/230400/460800 do not seem to
115 * have documented CBR_* macros.
116 */
117 BAUD(110), BAUD(300), BAUD(600), BAUD(1200), BAUD(2400), BAUD(4800),
118 BAUD(9600), BAUD(14400), BAUD(19200), BAUD(38400), BAUD(57600),
eac329d2 119 BAUD(115200), BAUD(128000), BAUD(256000),
da2748bf 120#else
eac329d2
UH
121 BAUD(50), BAUD(75), BAUD(110), BAUD(134), BAUD(150), BAUD(200),
122 BAUD(300), BAUD(600), BAUD(1200), BAUD(1800), BAUD(2400), BAUD(4800),
123 BAUD(9600), BAUD(19200), BAUD(38400), BAUD(57600), BAUD(115200),
124 BAUD(230400),
da2748bf 125#if !defined(__APPLE__) && !defined(__OpenBSD__)
eac329d2 126 BAUD(460800),
da2748bf
ML
127#endif
128#endif
129};
130
863b35e6
ML
131void (*sp_debug_handler)(const char *format, ...) = sp_default_debug_handler;
132
da2748bf
ML
133#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
134#define NUM_STD_BAUDRATES ARRAY_SIZE(std_baudrates)
135
92f756f8
ML
136/* Debug output macros. */
137#define DEBUG(fmt, ...) do { if (sp_debug_handler) sp_debug_handler(fmt ".\n", ##__VA_ARGS__); } while (0)
138#define DEBUG_ERROR(err, msg) DEBUG("%s returning " #err ": " msg, __func__)
139#define DEBUG_FAIL(msg) do { \
140 char *errmsg = sp_last_error_message(); \
141 DEBUG("%s returning SP_ERR_FAIL: " msg ": %s", __func__, errmsg); \
142 sp_free_error_message(errmsg); \
143} while (0);
144#define RETURN() do { DEBUG("%s returning", __func__); return; } while(0)
145#define RETURN_CODE(x) do { DEBUG("%s returning " #x, __func__); return x; } while (0)
146#define RETURN_CODEVAL(x) do { \
147 switch (x) { \
148 case SP_OK: RETURN_CODE(SP_OK); \
149 case SP_ERR_ARG: RETURN_CODE(SP_ERR_ARG); \
150 case SP_ERR_FAIL: RETURN_CODE(SP_ERR_FAIL); \
151 case SP_ERR_MEM: RETURN_CODE(SP_ERR_MEM); \
152 case SP_ERR_SUPP: RETURN_CODE(SP_ERR_SUPP); \
153 } \
154} while (0)
155#define RETURN_OK() RETURN_CODE(SP_OK);
156#define RETURN_ERROR(err, msg) do { DEBUG_ERROR(err, msg); return err; } while (0)
157#define RETURN_FAIL(msg) do { DEBUG_FAIL(msg); return SP_ERR_FAIL; } while (0)
158#define RETURN_VALUE(fmt, x) do { DEBUG("%s returning " fmt, __func__, x); return x; } while (0)
159#define SET_ERROR(val, err, msg) do { DEBUG_ERROR(err, msg); val = err; } while (0)
aac4d7f2 160#define SET_FAIL(val, msg) do { DEBUG_FAIL(msg); val = SP_ERR_FAIL; } while (0)
92f756f8
ML
161#define TRACE(fmt, ...) DEBUG("%s(" fmt ") called", __func__, ##__VA_ARGS__)
162
64690702
ML
163#define TRY(x) do { int ret = x; if (ret != SP_OK) RETURN_CODEVAL(ret); } while (0)
164
348e23cc 165/* Helper functions. */
348e23cc 166static struct sp_port **list_append(struct sp_port **list, const char *portname);
eb6ed20f
ML
167static enum sp_return get_config(struct sp_port *port, struct port_data *data,
168 struct sp_port_config *config);
169static enum sp_return set_config(struct sp_port *port, struct port_data *data,
170 const struct sp_port_config *config);
80186526 171
eb6ed20f 172enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr)
d54e9004
ML
173{
174 struct sp_port *port;
5919c913 175 int len;
d54e9004 176
c33efc48
ML
177 TRACE("%s, %p", portname, port_ptr);
178
32b5ac05 179 if (!port_ptr)
c33efc48 180 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
32b5ac05 181
77f262c4
ML
182 *port_ptr = NULL;
183
d4babed2 184 if (!portname)
c33efc48 185 RETURN_ERROR(SP_ERR_ARG, "Null port name");
d4babed2 186
ea667be7
ML
187 DEBUG("Building structure for port %s", portname);
188
d54e9004 189 if (!(port = malloc(sizeof(struct sp_port))))
c33efc48 190 RETURN_ERROR(SP_ERR_MEM, "Port structure malloc failed");
d54e9004 191
5919c913
ML
192 len = strlen(portname) + 1;
193
eac329d2 194 if (!(port->name = malloc(len))) {
d54e9004 195 free(port);
c33efc48 196 RETURN_ERROR(SP_ERR_MEM, "Port name malloc failed");
d54e9004
ML
197 }
198
199 memcpy(port->name, portname, len);
200
8f471c66
ML
201#ifdef _WIN32
202 port->hdl = INVALID_HANDLE_VALUE;
203#else
204 port->fd = -1;
205#endif
206
77f262c4
ML
207 *port_ptr = port;
208
c33efc48 209 RETURN_OK();
d54e9004
ML
210}
211
1c5aae9d
ML
212char *sp_get_port_name(const struct sp_port *port)
213{
214 TRACE("%p", port);
215
216 if (!port)
217 return NULL;
218
219 RETURN_VALUE("%s", port->name);
220}
221
3c126654
ML
222enum sp_return sp_get_port_handle(const struct sp_port *port, void *result_ptr)
223{
224 TRACE("%p", port);
225
226 if (!port)
227 RETURN_ERROR(SP_ERR_ARG, "Null port");
228
229#ifdef _WIN32
230 HANDLE *handle_ptr = result_ptr;
231 *handle_ptr = port->hdl;
232#else
233 int *fd_ptr = result_ptr;
234 *fd_ptr = port->fd;
235#endif
236
237 RETURN_OK();
238}
239
eb6ed20f 240enum sp_return sp_copy_port(const struct sp_port *port, struct sp_port **copy_ptr)
32b5ac05 241{
c33efc48
ML
242 TRACE("%p, %p", port, copy_ptr);
243
32b5ac05 244 if (!copy_ptr)
c33efc48 245 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
32b5ac05
ML
246
247 *copy_ptr = NULL;
248
c33efc48
ML
249 if (!port)
250 RETURN_ERROR(SP_ERR_ARG, "Null port");
251
252 if (!port->name)
253 RETURN_ERROR(SP_ERR_ARG, "Null port name");
32b5ac05 254
ea667be7
ML
255 DEBUG("Copying port structure");
256
c33efc48 257 RETURN_VALUE("%p", sp_get_port_by_name(port->name, copy_ptr));
32b5ac05
ML
258}
259
e3b2f7a4
ML
260void sp_free_port(struct sp_port *port)
261{
c33efc48
ML
262 TRACE("%p", port);
263
e3b2f7a4 264 if (!port)
c33efc48
ML
265 {
266 DEBUG("Null port");
267 RETURN();
268 }
e3b2f7a4 269
ea667be7
ML
270 DEBUG("Freeing port structure");
271
e3b2f7a4
ML
272 if (port->name)
273 free(port->name);
274
275 free(port);
c33efc48
ML
276
277 RETURN();
e3b2f7a4
ML
278}
279
348e23cc 280static struct sp_port **list_append(struct sp_port **list, const char *portname)
3b63f34d
ML
281{
282 void *tmp;
283 unsigned int count;
f92f1f0c 284
3b63f34d 285 for (count = 0; list[count]; count++);
d54e9004 286 if (!(tmp = realloc(list, sizeof(struct sp_port *) * (count + 2))))
3b63f34d
ML
287 goto fail;
288 list = tmp;
77f262c4 289 if (sp_get_port_by_name(portname, &list[count]) != SP_OK)
3b63f34d 290 goto fail;
db2794ce 291 list[count + 1] = NULL;
3b63f34d 292 return list;
f92f1f0c 293
3b63f34d
ML
294fail:
295 sp_free_port_list(list);
296 return NULL;
297}
298
eb6ed20f 299enum sp_return sp_list_ports(struct sp_port ***list_ptr)
3b63f34d 300{
d54e9004 301 struct sp_port **list;
6b93ede4 302 int ret = SP_ERR_SUPP;
24c1a4bb 303
c33efc48
ML
304 TRACE("%p", list_ptr);
305
dec10e31
ML
306 if (!list_ptr)
307 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
308
ea667be7
ML
309 DEBUG("Enumerating ports");
310
d54e9004 311 if (!(list = malloc(sizeof(struct sp_port **))))
c33efc48 312 RETURN_ERROR(SP_ERR_MEM, "Port list malloc failed");
24c1a4bb
ML
313
314 list[0] = NULL;
3b63f34d
ML
315
316#ifdef _WIN32
317 HKEY key;
bdfb5b8c
ML
318 TCHAR *value, *data;
319 DWORD max_value_len, max_data_size, max_data_len;
320 DWORD value_len, data_size, data_len;
3b63f34d 321 DWORD type, index = 0;
8b532d9c
ML
322 char *name;
323 int name_len;
3b63f34d 324
6b93ede4
ML
325 ret = SP_OK;
326
ea667be7 327 DEBUG("Opening registry key");
3b63f34d 328 if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("HARDWARE\\DEVICEMAP\\SERIALCOMM"),
eac329d2 329 0, KEY_QUERY_VALUE, &key) != ERROR_SUCCESS) {
c33efc48 330 SET_FAIL(ret, "RegOpenKeyEx() failed");
77f262c4
ML
331 goto out_done;
332 }
ea667be7 333 DEBUG("Querying registry key value and data sizes");
3b63f34d 334 if (RegQueryInfoKey(key, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
eac329d2 335 &max_value_len, &max_data_size, NULL, NULL) != ERROR_SUCCESS) {
c33efc48 336 SET_FAIL(ret, "RegQueryInfoKey() failed");
3b63f34d 337 goto out_close;
77f262c4 338 }
3b63f34d 339 max_data_len = max_data_size / sizeof(TCHAR);
eac329d2 340 if (!(value = malloc((max_value_len + 1) * sizeof(TCHAR)))) {
c33efc48 341 SET_ERROR(ret, SP_ERR_MEM, "registry value malloc failed");
3b63f34d 342 goto out_close;
77f262c4 343 }
eac329d2 344 if (!(data = malloc((max_data_len + 1) * sizeof(TCHAR)))) {
c33efc48 345 SET_ERROR(ret, SP_ERR_MEM, "registry data malloc failed");
bdfb5b8c 346 goto out_free_value;
77f262c4 347 }
ea667be7 348 DEBUG("Iterating over values");
3b63f34d 349 while (
d9573bad 350 value_len = max_value_len + 1,
3b63f34d 351 data_size = max_data_size,
bdfb5b8c 352 RegEnumValue(key, index, value, &value_len,
3b63f34d
ML
353 NULL, &type, (LPBYTE)data, &data_size) == ERROR_SUCCESS)
354 {
355 data_len = data_size / sizeof(TCHAR);
356 data[data_len] = '\0';
8b532d9c
ML
357#ifdef UNICODE
358 name_len = WideCharToMultiByte(CP_ACP, 0, data, -1, NULL, 0, NULL, NULL)
359#else
360 name_len = data_len + 1;
361#endif
eac329d2 362 if (!(name = malloc(name_len))) {
c33efc48 363 SET_ERROR(ret, SP_ERR_MEM, "registry port name malloc failed");
8b532d9c 364 goto out;
77f262c4 365 }
8b532d9c
ML
366#ifdef UNICODE
367 WideCharToMultiByte(CP_ACP, 0, data, -1, name, name_len, NULL, NULL);
368#else
369 strcpy(name, data);
370#endif
c33efc48
ML
371 if (type == REG_SZ) {
372 DEBUG("Found port %s", name);
373 if (!(list = list_append(list, name))) {
374 SET_ERROR(ret, SP_ERR_MEM, "list append failed");
375 goto out;
376 }
77f262c4 377 }
3b63f34d
ML
378 index++;
379 }
380out:
381 free(data);
bdfb5b8c
ML
382out_free_value:
383 free(value);
3b63f34d
ML
384out_close:
385 RegCloseKey(key);
77f262c4 386out_done:
3b63f34d
ML
387#endif
388#ifdef __APPLE__
389 mach_port_t master;
390 CFMutableDictionaryRef classes;
391 io_iterator_t iter;
392 char *path;
393 io_object_t port;
394 CFTypeRef cf_path;
395 Boolean result;
396
6b93ede4
ML
397 ret = SP_OK;
398
ea667be7 399 DEBUG("Getting IOKit master port");
eac329d2 400 if (IOMasterPort(MACH_PORT_NULL, &master) != KERN_SUCCESS) {
c33efc48 401 SET_FAIL(ret, "IOMasterPort() failed");
77f262c4
ML
402 goto out_done;
403 }
3b63f34d 404
ea667be7 405 DEBUG("Creating matching dictionary");
eac329d2 406 if (!(classes = IOServiceMatching(kIOSerialBSDServiceValue))) {
c33efc48 407 SET_FAIL(ret, "IOServiceMatching() failed");
77f262c4
ML
408 goto out_done;
409 }
3b63f34d
ML
410
411 CFDictionarySetValue(classes,
412 CFSTR(kIOSerialBSDTypeKey), CFSTR(kIOSerialBSDAllTypes));
413
ea667be7 414 DEBUG("Getting matching services");
eac329d2 415 if (IOServiceGetMatchingServices(master, classes, &iter) != KERN_SUCCESS) {
c33efc48 416 SET_FAIL(ret, "IOServiceGetMatchingServices() failed");
77f262c4
ML
417 goto out_done;
418 }
3b63f34d 419
eac329d2 420 if (!(path = malloc(PATH_MAX))) {
c33efc48 421 SET_ERROR(ret, SP_ERR_MEM, "device path malloc failed");
3b63f34d 422 goto out_release;
77f262c4 423 }
3b63f34d 424
ea667be7 425 DEBUG("Iterating over results");
1ebf4347 426 while ((port = IOIteratorNext(iter))) {
3b63f34d
ML
427 cf_path = IORegistryEntryCreateCFProperty(port,
428 CFSTR(kIOCalloutDeviceKey), kCFAllocatorDefault, 0);
429 if (cf_path) {
430 result = CFStringGetCString(cf_path,
431 path, PATH_MAX, kCFStringEncodingASCII);
432 CFRelease(cf_path);
c33efc48
ML
433 if (result) {
434 DEBUG("Found port %s", path);
435 if (!(list = list_append(list, path))) {
436 SET_ERROR(ret, SP_ERR_MEM, "list append failed");
437 IOObjectRelease(port);
438 goto out;
439 }
77f262c4 440 }
3b63f34d
ML
441 }
442 IOObjectRelease(port);
443 }
3b63f34d
ML
444out:
445 free(path);
446out_release:
447 IOObjectRelease(iter);
77f262c4 448out_done:
3b63f34d
ML
449#endif
450#ifdef __linux__
451 struct udev *ud;
452 struct udev_enumerate *ud_enumerate;
453 struct udev_list_entry *ud_list;
454 struct udev_list_entry *ud_entry;
455 const char *path;
08fe0bdb 456 struct udev_device *ud_dev, *ud_parent;
3b63f34d 457 const char *name;
4b97c9fc
ML
458 const char *driver;
459 int fd, ioctl_result;
460 struct serial_struct serial_info;
3b63f34d 461
6b93ede4
ML
462 ret = SP_OK;
463
ea667be7 464 DEBUG("Enumerating tty devices");
3b63f34d
ML
465 ud = udev_new();
466 ud_enumerate = udev_enumerate_new(ud);
467 udev_enumerate_add_match_subsystem(ud_enumerate, "tty");
468 udev_enumerate_scan_devices(ud_enumerate);
469 ud_list = udev_enumerate_get_list_entry(ud_enumerate);
ea667be7 470 DEBUG("Iterating over results");
eac329d2 471 udev_list_entry_foreach(ud_entry, ud_list) {
3b63f34d 472 path = udev_list_entry_get_name(ud_entry);
ea667be7 473 DEBUG("Found device %s", path);
3b63f34d 474 ud_dev = udev_device_new_from_syspath(ud, path);
08fe0bdb
ML
475 /* If there is no parent device, this is a virtual tty. */
476 ud_parent = udev_device_get_parent(ud_dev);
eac329d2 477 if (ud_parent == NULL) {
ea667be7 478 DEBUG("No parent device, assuming virtual tty");
08fe0bdb
ML
479 udev_device_unref(ud_dev);
480 continue;
481 }
3b63f34d 482 name = udev_device_get_devnode(ud_dev);
4b97c9fc
ML
483 /* The serial8250 driver has a hardcoded number of ports.
484 * The only way to tell which actually exist on a given system
485 * is to try to open them and make an ioctl call. */
486 driver = udev_device_get_driver(ud_parent);
eac329d2 487 if (driver && !strcmp(driver, "serial8250")) {
ea667be7
ML
488 DEBUG("serial8250 device, attempting to open");
489 if ((fd = open(name, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0) {
490 DEBUG("open failed, skipping");
4b97c9fc 491 goto skip;
ea667be7 492 }
4b97c9fc
ML
493 ioctl_result = ioctl(fd, TIOCGSERIAL, &serial_info);
494 close(fd);
ea667be7
ML
495 if (ioctl_result != 0) {
496 DEBUG("ioctl failed, skipping");
4b97c9fc 497 goto skip;
ea667be7
ML
498 }
499 if (serial_info.type == PORT_UNKNOWN) {
500 DEBUG("port type is unknown, skipping");
4b97c9fc 501 goto skip;
ea667be7 502 }
4b97c9fc 503 }
c33efc48 504 DEBUG("Found port %s", name);
348e23cc 505 list = list_append(list, name);
4b97c9fc 506skip:
3b63f34d 507 udev_device_unref(ud_dev);
eac329d2 508 if (!list) {
c33efc48 509 SET_ERROR(ret, SP_ERR_MEM, "list append failed");
3b63f34d 510 goto out;
77f262c4 511 }
3b63f34d
ML
512 }
513out:
514 udev_enumerate_unref(ud_enumerate);
515 udev_unref(ud);
3b63f34d 516#endif
77f262c4 517
6b93ede4
ML
518 switch (ret) {
519 case SP_OK:
77f262c4 520 *list_ptr = list;
c33efc48 521 RETURN_OK();
6b93ede4
ML
522 case SP_ERR_SUPP:
523 DEBUG_ERROR(SP_ERR_SUPP, "Enumeration not supported on this platform.");
524 default:
77f262c4
ML
525 if (list)
526 sp_free_port_list(list);
77f262c4 527 *list_ptr = NULL;
c33efc48 528 return ret;
77f262c4 529 }
3b63f34d
ML
530}
531
d54e9004 532void sp_free_port_list(struct sp_port **list)
3b63f34d
ML
533{
534 unsigned int i;
f92f1f0c 535
c33efc48
ML
536 TRACE("%p", list);
537
dec10e31
ML
538 if (!list) {
539 DEBUG("Null list");
540 RETURN();
541 }
542
ea667be7
ML
543 DEBUG("Freeing port list");
544
3b63f34d 545 for (i = 0; list[i]; i++)
e3b2f7a4 546 sp_free_port(list[i]);
3b63f34d 547 free(list);
c33efc48
ML
548
549 RETURN();
3b63f34d
ML
550}
551
c33efc48
ML
552#define CHECK_PORT() do { \
553 if (port == NULL) \
554 RETURN_ERROR(SP_ERR_ARG, "Null port"); \
dec10e31
ML
555 if (port->name == NULL) \
556 RETURN_ERROR(SP_ERR_ARG, "Null port name"); \
557} while (0)
558#ifdef _WIN32
559#define CHECK_PORT_HANDLE() do { \
c33efc48
ML
560 if (port->hdl == INVALID_HANDLE_VALUE) \
561 RETURN_ERROR(SP_ERR_ARG, "Invalid port handle"); \
dec10e31 562} while (0)
74510d4b 563#else
dec10e31 564#define CHECK_PORT_HANDLE() do { \
c33efc48
ML
565 if (port->fd < 0) \
566 RETURN_ERROR(SP_ERR_ARG, "Invalid port fd"); \
dec10e31 567} while (0)
74510d4b 568#endif
dec10e31
ML
569#define CHECK_OPEN_PORT() do { \
570 CHECK_PORT(); \
571 CHECK_PORT_HANDLE(); \
572} while (0)
74510d4b 573
eb6ed20f 574enum sp_return sp_open(struct sp_port *port, enum sp_mode flags)
74510d4b 575{
bccc7c9f
ML
576 struct port_data data;
577 struct sp_port_config config;
578 enum sp_return ret;
579
c33efc48
ML
580 TRACE("%p, %x", port, flags);
581
dec10e31
ML
582 CHECK_PORT();
583
584 if (flags > (SP_MODE_READ | SP_MODE_WRITE | SP_MODE_NONBLOCK))
585 RETURN_ERROR(SP_ERR_ARG, "Invalid flags");
74510d4b 586
ea667be7
ML
587 DEBUG("Opening port %s", port->name);
588
33d5ff47
ML
589 port->nonblocking = (flags & SP_MODE_NONBLOCK) ? 1 : 0;
590
74510d4b
ML
591#ifdef _WIN32
592 DWORD desired_access = 0, flags_and_attributes = 0;
a3cb91f5 593 COMMTIMEOUTS timeouts;
99945a1f
ML
594 char *escaped_port_name;
595
596 /* Prefix port name with '\\.\' to work with ports above COM9. */
597 if (!(escaped_port_name = malloc(strlen(port->name + 5))))
c33efc48 598 RETURN_ERROR(SP_ERR_MEM, "Escaped port name malloc failed");
99945a1f
ML
599 sprintf(escaped_port_name, "\\\\.\\%s", port->name);
600
74510d4b 601 /* Map 'flags' to the OS-specific settings. */
74510d4b 602 flags_and_attributes = FILE_ATTRIBUTE_NORMAL;
a036341b
ML
603 if (flags & SP_MODE_READ)
604 desired_access |= GENERIC_READ;
605 if (flags & SP_MODE_WRITE)
74510d4b
ML
606 desired_access |= GENERIC_WRITE;
607 if (flags & SP_MODE_NONBLOCK)
608 flags_and_attributes |= FILE_FLAG_OVERLAPPED;
609
99945a1f 610 port->hdl = CreateFile(escaped_port_name, desired_access, 0, 0,
74510d4b 611 OPEN_EXISTING, flags_and_attributes, 0);
99945a1f
ML
612
613 free(escaped_port_name);
614
74510d4b 615 if (port->hdl == INVALID_HANDLE_VALUE)
c33efc48 616 RETURN_FAIL("CreateFile() failed");
a3cb91f5
ML
617
618 /* All timeouts disabled. */
619 timeouts.ReadIntervalTimeout = 0;
620 timeouts.ReadTotalTimeoutMultiplier = 0;
621 timeouts.ReadTotalTimeoutConstant = 0;
622 timeouts.WriteTotalTimeoutMultiplier = 0;
623 timeouts.WriteTotalTimeoutConstant = 0;
624
625 if (port->nonblocking) {
626 /* Set read timeout such that all reads return immediately. */
627 timeouts.ReadIntervalTimeout = MAXDWORD;
628 /* Prepare OVERLAPPED structure for non-blocking writes. */
629 memset(&port->write_ovl, 0, sizeof(port->write_ovl));
630 if (!(port->write_ovl.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL))) {
631 sp_close(port);
632 RETURN_FAIL("CreateEvent() failed");
633 }
a3cb91f5
ML
634 port->writing = FALSE;
635 }
636
637 if (SetCommTimeouts(port->hdl, &timeouts) == 0) {
638 sp_close(port);
639 RETURN_FAIL("SetCommTimeouts() failed");
640 }
74510d4b
ML
641#else
642 int flags_local = 0;
f92f1f0c 643
74510d4b 644 /* Map 'flags' to the OS-specific settings. */
a036341b 645 if (flags & (SP_MODE_READ | SP_MODE_WRITE))
74510d4b 646 flags_local |= O_RDWR;
a036341b 647 else if (flags & SP_MODE_READ)
74510d4b 648 flags_local |= O_RDONLY;
a036341b
ML
649 else if (flags & SP_MODE_WRITE)
650 flags_local |= O_WRONLY;
74510d4b
ML
651 if (flags & SP_MODE_NONBLOCK)
652 flags_local |= O_NONBLOCK;
653
654 if ((port->fd = open(port->name, flags_local)) < 0)
c33efc48 655 RETURN_FAIL("open() failed");
bccc7c9f 656#endif
9cb98459 657
e33ab9aa
ML
658 ret = get_config(port, &data, &config);
659
eac329d2 660 if (ret < 0) {
e33ab9aa 661 sp_close(port);
c33efc48 662 RETURN_CODEVAL(ret);
e33ab9aa 663 }
9cb98459 664
bccc7c9f
ML
665 /* Set sane port settings. */
666#ifdef _WIN32
667 data.dcb.fBinary = TRUE;
668 data.dcb.fDsrSensitivity = FALSE;
669 data.dcb.fErrorChar = FALSE;
670 data.dcb.fNull = FALSE;
671 data.dcb.fAbortOnError = TRUE;
672#else
b251be4b
ML
673 /* Turn off all fancy termios tricks, give us a raw channel. */
674 data.term.c_iflag &= ~(IGNBRK|BRKINT|PARMRK|ISTRIP|INLCR|IGNCR|ICRNL|IUCLC|IMAXBEL);
675 data.term.c_oflag &= ~(OPOST|OLCUC|ONLCR|OCRNL|ONOCR|ONLRET|NLDLY|CRDLY|TABDLY|BSDLY|VTDLY|FFDLY);
676#ifdef OFILL
9cb98459
ML
677 data.term.c_oflag &= ~OFILL;
678#endif
b251be4b
ML
679 data.term.c_lflag &= ~(ISIG|ICANON|ECHO|IEXTEN);
680 data.term.c_cc[VMIN] = 0;
681 data.term.c_cc[VTIME] = 0;
9cb98459 682
b251be4b
ML
683 /* Ignore modem status lines; enable receiver; leave control lines alone on close. */
684 data.term.c_cflag |= (CLOCAL | CREAD | HUPCL);
bccc7c9f 685#endif
9cb98459 686
e33ab9aa
ML
687 ret = set_config(port, &data, &config);
688
eac329d2 689 if (ret < 0) {
e33ab9aa 690 sp_close(port);
c33efc48 691 RETURN_CODEVAL(ret);
e33ab9aa 692 }
74510d4b 693
c33efc48 694 RETURN_OK();
74510d4b
ML
695}
696
eb6ed20f 697enum sp_return sp_close(struct sp_port *port)
74510d4b 698{
c33efc48
ML
699 TRACE("%p", port);
700
dec10e31 701 CHECK_OPEN_PORT();
74510d4b 702
ea667be7
ML
703 DEBUG("Closing port %s", port->name);
704
74510d4b
ML
705#ifdef _WIN32
706 /* Returns non-zero upon success, 0 upon failure. */
707 if (CloseHandle(port->hdl) == 0)
c33efc48 708 RETURN_FAIL("CloseHandle() failed");
8f471c66 709 port->hdl = INVALID_HANDLE_VALUE;
a3cb91f5 710 if (port->nonblocking) {
a3cb91f5
ML
711 /* Close event handle created for overlapped writes. */
712 if (CloseHandle(port->write_ovl.hEvent) == 0)
713 RETURN_FAIL("CloseHandle() failed");
714 }
74510d4b
ML
715#else
716 /* Returns 0 upon success, -1 upon failure. */
717 if (close(port->fd) == -1)
c33efc48 718 RETURN_FAIL("close() failed");
8f471c66 719 port->fd = -1;
74510d4b
ML
720#endif
721
c33efc48 722 RETURN_OK();
74510d4b
ML
723}
724
fd8fd11a 725enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers)
74510d4b 726{
c33efc48
ML
727 TRACE("%p, %x", port, buffers);
728
dec10e31
ML
729 CHECK_OPEN_PORT();
730
731 if (buffers > SP_BUF_BOTH)
732 RETURN_ERROR(SP_ERR_ARG, "Invalid buffer selection");
74510d4b 733
0ba3e49b 734 const char *buffer_names[] = {"no", "input", "output", "both"};
ea667be7
ML
735
736 DEBUG("Flushing %s buffers on port %s", buffer_names[buffers], port->name);
737
74510d4b 738#ifdef _WIN32
fd8fd11a
ML
739 DWORD flags = 0;
740 if (buffers & SP_BUF_INPUT)
741 flags |= PURGE_RXCLEAR;
742 if (buffers & SP_BUF_OUTPUT)
743 flags |= PURGE_TXCLEAR;
744
74510d4b 745 /* Returns non-zero upon success, 0 upon failure. */
fd8fd11a 746 if (PurgeComm(port->hdl, flags) == 0)
c33efc48 747 RETURN_FAIL("PurgeComm() failed");
74510d4b 748#else
fd8fd11a
ML
749 int flags = 0;
750 if (buffers & SP_BUF_BOTH)
751 flags = TCIOFLUSH;
752 else if (buffers & SP_BUF_INPUT)
753 flags = TCIFLUSH;
82f424e6 754 else if (buffers & SP_BUF_OUTPUT)
fd8fd11a
ML
755 flags = TCOFLUSH;
756
74510d4b 757 /* Returns 0 upon success, -1 upon failure. */
fd8fd11a 758 if (tcflush(port->fd, flags) < 0)
c33efc48 759 RETURN_FAIL("tcflush() failed");
74510d4b 760#endif
c33efc48 761 RETURN_OK();
74510d4b
ML
762}
763
69a3739c
ML
764enum sp_return sp_drain(struct sp_port *port)
765{
c33efc48
ML
766 TRACE("%p", port);
767
dec10e31 768 CHECK_OPEN_PORT();
69a3739c 769
ea667be7
ML
770 DEBUG("Draining port %s", port->name);
771
69a3739c
ML
772#ifdef _WIN32
773 /* Returns non-zero upon success, 0 upon failure. */
774 if (FlushFileBuffers(port->hdl) == 0)
c33efc48 775 RETURN_FAIL("FlushFileBuffers() failed");
69a3739c
ML
776#else
777 /* Returns 0 upon success, -1 upon failure. */
778 if (tcdrain(port->fd) < 0)
c33efc48 779 RETURN_FAIL("tcdrain() failed");
69a3739c
ML
780#endif
781
c33efc48 782 RETURN_OK();
69a3739c
ML
783}
784
eb6ed20f 785enum sp_return sp_write(struct sp_port *port, const void *buf, size_t count)
74510d4b 786{
c33efc48
ML
787 TRACE("%p, %p, %d", port, buf, count);
788
dec10e31 789 CHECK_OPEN_PORT();
74510d4b
ML
790
791 if (!buf)
c33efc48 792 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
74510d4b 793
ea667be7
ML
794 DEBUG("Writing up to %d bytes to port %s", count, port->name);
795
a3cb91f5
ML
796 if (count == 0)
797 RETURN_VALUE("0", 0);
798
74510d4b
ML
799#ifdef _WIN32
800 DWORD written = 0;
0765af56 801 BYTE *ptr = (BYTE *) buf;
f92f1f0c 802
a3cb91f5
ML
803 if (port->nonblocking) {
804 /* Non-blocking write. */
805
806 /* Check whether previous write is complete. */
807 if (port->writing) {
808 if (HasOverlappedIoCompleted(&port->write_ovl)) {
809 DEBUG("Previous write completed");
810 port->writing = 0;
a3cb91f5
ML
811 } else {
812 DEBUG("Previous write not complete");
813 /* Can't take a new write until the previous one finishes. */
814 RETURN_VALUE("0", 0);
815 }
816 }
817
0765af56
ML
818 /* Keep writing data until the OS has to actually start an async IO for it.
819 * At that point we know the buffer is full. */
820 while (written < count)
821 {
822 /* Copy first byte of user buffer. */
823 port->pending_byte = *ptr++;
824
825 /* Start asynchronous write. */
826 if (WriteFile(port->hdl, &port->pending_byte, 1, NULL, &port->write_ovl) == 0) {
827 if (GetLastError() == ERROR_IO_PENDING) {
828 DEBUG("Asynchronous write started");
829 port->writing = 1;
830 RETURN_VALUE("%d", ++written);
831 } else {
832 /* Actual failure of some kind. */
833 RETURN_FAIL("WriteFile() failed");
834 }
a3cb91f5 835 } else {
0765af56
ML
836 DEBUG("Single byte written immediately.");
837 written++;
a3cb91f5 838 }
a3cb91f5 839 }
0765af56
ML
840
841 DEBUG("All bytes written immediately.");
842
a3cb91f5
ML
843 } else {
844 /* Blocking write. */
845 if (WriteFile(port->hdl, buf, count, &written, NULL) == 0) {
846 RETURN_FAIL("WriteFile() failed");
847 }
848 }
849
c33efc48 850 RETURN_VALUE("%d", written);
74510d4b
ML
851#else
852 /* Returns the number of bytes written, or -1 upon failure. */
853 ssize_t written = write(port->fd, buf, count);
f92f1f0c 854
74510d4b 855 if (written < 0)
c33efc48 856 RETURN_FAIL("write() failed");
74510d4b 857 else
c33efc48 858 RETURN_VALUE("%d", written);
74510d4b
ML
859#endif
860}
861
eb6ed20f 862enum sp_return sp_read(struct sp_port *port, void *buf, size_t count)
74510d4b 863{
c33efc48
ML
864 TRACE("%p, %p, %d", port, buf, count);
865
dec10e31 866 CHECK_OPEN_PORT();
74510d4b
ML
867
868 if (!buf)
c33efc48 869 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
74510d4b 870
ea667be7
ML
871 DEBUG("Reading up to %d bytes from port %s", count, port->name);
872
74510d4b
ML
873#ifdef _WIN32
874 DWORD bytes_read = 0;
f92f1f0c 875
74510d4b
ML
876 /* Returns non-zero upon success, 0 upon failure. */
877 if (ReadFile(port->hdl, buf, count, &bytes_read, NULL) == 0)
c33efc48
ML
878 RETURN_FAIL("ReadFile() failed");
879 RETURN_VALUE("%d", bytes_read);
74510d4b
ML
880#else
881 ssize_t bytes_read;
f92f1f0c 882
74510d4b 883 /* Returns the number of bytes read, or -1 upon failure. */
33d5ff47
ML
884 if ((bytes_read = read(port->fd, buf, count)) < 0) {
885 if (port->nonblocking && errno == EAGAIN)
886 /* Port is opened in nonblocking mode and there are no bytes available. */
887 bytes_read = 0;
888 else
889 /* This is an actual failure. */
890 RETURN_FAIL("read() failed");
891 }
c33efc48 892 RETURN_VALUE("%d", bytes_read);
74510d4b
ML
893#endif
894}
895
7a6d2196
ML
896#ifdef __linux__
897static enum sp_return get_baudrate(int fd, int *baudrate)
898{
899 void *data;
900
c33efc48
ML
901 TRACE("%d, %p", fd, baudrate);
902
ea667be7
ML
903 DEBUG("Getting baud rate");
904
7a6d2196 905 if (!(data = malloc(get_termios_size())))
c33efc48 906 RETURN_ERROR(SP_ERR_MEM, "termios malloc failed");
7a6d2196 907
8d43110a
ML
908 if (ioctl(fd, get_termios_get_ioctl(), data) < 0) {
909 free(data);
c33efc48 910 RETURN_FAIL("getting termios failed");
8d43110a 911 }
7a6d2196
ML
912
913 *baudrate = get_termios_speed(data);
914
8d43110a
ML
915 free(data);
916
c33efc48 917 RETURN_OK();
7a6d2196
ML
918}
919
920static enum sp_return set_baudrate(int fd, int baudrate)
921{
922 void *data;
923
c33efc48
ML
924 TRACE("%d, %d", fd, baudrate);
925
ea667be7
ML
926 DEBUG("Getting baud rate");
927
7a6d2196 928 if (!(data = malloc(get_termios_size())))
c33efc48 929 RETURN_ERROR(SP_ERR_MEM, "termios malloc failed");
7a6d2196 930
8d43110a
ML
931 if (ioctl(fd, get_termios_get_ioctl(), data) < 0) {
932 free(data);
c33efc48 933 RETURN_FAIL("getting termios failed");
8d43110a 934 }
7a6d2196 935
ea667be7
ML
936 DEBUG("Setting baud rate");
937
7a6d2196
ML
938 set_termios_speed(data, baudrate);
939
8d43110a
ML
940 if (ioctl(fd, get_termios_set_ioctl(), data) < 0) {
941 free(data);
c33efc48 942 RETURN_FAIL("setting termios failed");
8d43110a
ML
943 }
944
945 free(data);
7a6d2196 946
c33efc48 947 RETURN_OK();
7a6d2196 948}
40978c2b
ML
949
950#ifdef USE_TERMIOX
951static enum sp_return get_flow(int fd, int *flow)
952{
953 void *data;
954
c33efc48
ML
955 TRACE("%d, %p", fd, flow);
956
ea667be7
ML
957 DEBUG("Getting advanced flow control");
958
40978c2b 959 if (!(data = malloc(get_termiox_size())))
c33efc48 960 RETURN_ERROR(SP_ERR_MEM, "termiox malloc failed");
40978c2b 961
8d43110a
ML
962 if (ioctl(fd, TCGETX, data) < 0) {
963 free(data);
c33efc48 964 RETURN_FAIL("getting termiox failed");
8d43110a 965 }
40978c2b
ML
966
967 *flow = get_termiox_flow(data);
968
8d43110a
ML
969 free(data);
970
c33efc48 971 RETURN_OK();
40978c2b
ML
972}
973
974static enum sp_return set_flow(int fd, int flow)
975{
976 void *data;
977
c33efc48
ML
978 TRACE("%d, %d", fd, flow);
979
ea667be7
ML
980 DEBUG("Getting advanced flow control");
981
40978c2b 982 if (!(data = malloc(get_termiox_size())))
c33efc48 983 RETURN_ERROR(SP_ERR_MEM, "termiox malloc failed");
40978c2b 984
8d43110a
ML
985 if (ioctl(fd, TCGETX, data) < 0) {
986 free(data);
c33efc48 987 RETURN_FAIL("getting termiox failed");
8d43110a 988 }
40978c2b 989
ea667be7
ML
990 DEBUG("Setting advanced flow control");
991
40978c2b
ML
992 set_termiox_flow(data, flow);
993
8d43110a
ML
994 if (ioctl(fd, TCSETX, data) < 0) {
995 free(data);
c33efc48 996 RETURN_FAIL("setting termiox failed");
8d43110a
ML
997 }
998
999 free(data);
40978c2b 1000
c33efc48 1001 RETURN_OK();
40978c2b
ML
1002}
1003#endif /* USE_TERMIOX */
1004#endif /* __linux__ */
7a6d2196 1005
eb6ed20f
ML
1006static enum sp_return get_config(struct sp_port *port, struct port_data *data,
1007 struct sp_port_config *config)
8094e4a0 1008{
da2748bf 1009 unsigned int i;
cbf628c7 1010
c33efc48
ML
1011 TRACE("%p, %p, %p", port, data, config);
1012
ea667be7
ML
1013 DEBUG("Getting configuration for port %s", port->name);
1014
8094e4a0 1015#ifdef _WIN32
e33ab9aa 1016 if (!GetCommState(port->hdl, &data->dcb))
c33efc48 1017 RETURN_FAIL("GetCommState() failed");
8094e4a0 1018
067417af 1019 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
e33ab9aa 1020 if (data->dcb.BaudRate == std_baudrates[i].index) {
067417af
ML
1021 config->baudrate = std_baudrates[i].value;
1022 break;
1023 }
1024 }
1025
1026 if (i == NUM_STD_BAUDRATES)
1027 /* BaudRate field can be either an index or a custom baud rate. */
e33ab9aa 1028 config->baudrate = data->dcb.BaudRate;
067417af 1029
e33ab9aa 1030 config->bits = data->dcb.ByteSize;
067417af 1031
e33ab9aa
ML
1032 if (data->dcb.fParity)
1033 switch (data->dcb.Parity) {
067417af
ML
1034 case NOPARITY:
1035 config->parity = SP_PARITY_NONE;
1036 break;
e432ce60
ML
1037 case ODDPARITY:
1038 config->parity = SP_PARITY_ODD;
1039 break;
067417af
ML
1040 case EVENPARITY:
1041 config->parity = SP_PARITY_EVEN;
1042 break;
e432ce60
ML
1043 case MARKPARITY:
1044 config->parity = SP_PARITY_MARK;
1045 break;
1046 case SPACEPARITY:
1047 config->parity = SP_PARITY_SPACE;
067417af
ML
1048 break;
1049 default:
1050 config->parity = -1;
1051 }
1052 else
1053 config->parity = SP_PARITY_NONE;
1054
e33ab9aa 1055 switch (data->dcb.StopBits) {
067417af
ML
1056 case ONESTOPBIT:
1057 config->stopbits = 1;
1058 break;
1059 case TWOSTOPBITS:
1060 config->stopbits = 2;
1061 break;
1062 default:
1063 config->stopbits = -1;
1064 }
1065
e33ab9aa 1066 switch (data->dcb.fRtsControl) {
eac329d2
UH
1067 case RTS_CONTROL_DISABLE:
1068 config->rts = SP_RTS_OFF;
1069 break;
1070 case RTS_CONTROL_ENABLE:
1071 config->rts = SP_RTS_ON;
1072 break;
1073 case RTS_CONTROL_HANDSHAKE:
1074 config->rts = SP_RTS_FLOW_CONTROL;
1075 break;
1076 default:
1077 config->rts = -1;
067417af
ML
1078 }
1079
e33ab9aa 1080 config->cts = data->dcb.fOutxCtsFlow ? SP_CTS_FLOW_CONTROL : SP_CTS_IGNORE;
067417af 1081
e33ab9aa 1082 switch (data->dcb.fDtrControl) {
eac329d2
UH
1083 case DTR_CONTROL_DISABLE:
1084 config->dtr = SP_DTR_OFF;
1085 break;
1086 case DTR_CONTROL_ENABLE:
1087 config->dtr = SP_DTR_ON;
1088 break;
1089 case DTR_CONTROL_HANDSHAKE:
1090 config->dtr = SP_DTR_FLOW_CONTROL;
1091 break;
1092 default:
1093 config->dtr = -1;
067417af
ML
1094 }
1095
e33ab9aa
ML
1096 config->dsr = data->dcb.fOutxDsrFlow ? SP_DSR_FLOW_CONTROL : SP_DSR_IGNORE;
1097
c6754b45
ML
1098 if (data->dcb.fInX) {
1099 if (data->dcb.fOutX)
1100 config->xon_xoff = SP_XONXOFF_INOUT;
1101 else
1102 config->xon_xoff = SP_XONXOFF_IN;
1103 } else {
1104 if (data->dcb.fOutX)
1105 config->xon_xoff = SP_XONXOFF_OUT;
1106 else
1107 config->xon_xoff = SP_XONXOFF_DISABLED;
1108 }
1109
e33ab9aa
ML
1110#else // !_WIN32
1111
1112 if (tcgetattr(port->fd, &data->term) < 0)
c33efc48 1113 RETURN_FAIL("tcgetattr() failed");
e33ab9aa
ML
1114
1115 if (ioctl(port->fd, TIOCMGET, &data->controlbits) < 0)
c33efc48 1116 RETURN_FAIL("TIOCMGET ioctl failed");
40978c2b
ML
1117
1118#ifdef USE_TERMIOX
68ec29db
ML
1119 int ret = get_flow(port->fd, &data->flow);
1120
1121 if (ret == SP_ERR_FAIL && errno == EINVAL)
1122 data->termiox_supported = 0;
1123 else if (ret < 0)
c33efc48 1124 RETURN_CODEVAL(ret);
68ec29db
ML
1125 else
1126 data->termiox_supported = 1;
1127#else
1128 data->termiox_supported = 0;
40978c2b
ML
1129#endif
1130
067417af 1131 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
e33ab9aa 1132 if (cfgetispeed(&data->term) == std_baudrates[i].index) {
067417af
ML
1133 config->baudrate = std_baudrates[i].value;
1134 break;
1135 }
1136 }
1137
31b3a8f5
MH
1138 if (i == NUM_STD_BAUDRATES) {
1139#ifdef __APPLE__
1140 config->baudrate = (int)data->term.c_ispeed;
7a6d2196
ML
1141#elif defined(__linux__)
1142 TRY(get_baudrate(port->fd, &config->baudrate));
31b3a8f5 1143#else
067417af 1144 config->baudrate = -1;
31b3a8f5
MH
1145#endif
1146 }
067417af 1147
e33ab9aa 1148 switch (data->term.c_cflag & CSIZE) {
067417af
ML
1149 case CS8:
1150 config->bits = 8;
1151 break;
1152 case CS7:
1153 config->bits = 7;
1154 break;
1155 case CS6:
1156 config->bits = 6;
1157 break;
1158 case CS5:
1159 config->bits = 5;
1160 break;
1161 default:
1162 config->bits = -1;
1163 }
1164
e33ab9aa 1165 if (!(data->term.c_cflag & PARENB) && (data->term.c_iflag & IGNPAR))
067417af 1166 config->parity = SP_PARITY_NONE;
e33ab9aa 1167 else if (!(data->term.c_cflag & PARENB) || (data->term.c_iflag & IGNPAR))
067417af 1168 config->parity = -1;
e432ce60
ML
1169 else if (data->term.c_cflag & CMSPAR)
1170 config->parity = (data->term.c_cflag & PARODD) ? SP_PARITY_MARK : SP_PARITY_SPACE;
067417af 1171 else
e33ab9aa 1172 config->parity = (data->term.c_cflag & PARODD) ? SP_PARITY_ODD : SP_PARITY_EVEN;
067417af 1173
e33ab9aa 1174 config->stopbits = (data->term.c_cflag & CSTOPB) ? 2 : 1;
067417af 1175
e33ab9aa 1176 if (data->term.c_cflag & CRTSCTS) {
067417af
ML
1177 config->rts = SP_RTS_FLOW_CONTROL;
1178 config->cts = SP_CTS_FLOW_CONTROL;
1179 } else {
68ec29db 1180 if (data->termiox_supported && data->flow & RTS_FLOW)
40978c2b
ML
1181 config->rts = SP_RTS_FLOW_CONTROL;
1182 else
1183 config->rts = (data->controlbits & TIOCM_RTS) ? SP_RTS_ON : SP_RTS_OFF;
1184
68ec29db
ML
1185 config->cts = (data->termiox_supported && data->flow & CTS_FLOW) ?
1186 SP_CTS_FLOW_CONTROL : SP_CTS_IGNORE;
067417af
ML
1187 }
1188
68ec29db 1189 if (data->termiox_supported && data->flow & DTR_FLOW)
40978c2b
ML
1190 config->dtr = SP_DTR_FLOW_CONTROL;
1191 else
1192 config->dtr = (data->controlbits & TIOCM_DTR) ? SP_DTR_ON : SP_DTR_OFF;
1193
68ec29db
ML
1194 config->dsr = (data->termiox_supported && data->flow & DSR_FLOW) ?
1195 SP_DSR_FLOW_CONTROL : SP_DSR_IGNORE;
705bdc69 1196
e29b93a5
ML
1197 if (data->term.c_iflag & IXOFF) {
1198 if (data->term.c_iflag & IXON)
1199 config->xon_xoff = SP_XONXOFF_INOUT;
1200 else
1201 config->xon_xoff = SP_XONXOFF_IN;
1202 } else {
1203 if (data->term.c_iflag & IXON)
1204 config->xon_xoff = SP_XONXOFF_OUT;
1205 else
1206 config->xon_xoff = SP_XONXOFF_DISABLED;
1207 }
067417af
ML
1208#endif
1209
c33efc48 1210 RETURN_OK();
067417af
ML
1211}
1212
7a6d2196 1213static enum sp_return set_config(struct sp_port *port, struct port_data *data,
eb6ed20f 1214 const struct sp_port_config *config)
18fc2dd1 1215{
e33ab9aa 1216 unsigned int i;
31b3a8f5
MH
1217#ifdef __APPLE__
1218 BAUD_TYPE baud_nonstd;
1219
1220 baud_nonstd = B0;
1221#endif
7a6d2196
ML
1222#ifdef __linux__
1223 int baud_nonstd = 0;
1224#endif
18fc2dd1 1225
c33efc48
ML
1226 TRACE("%p, %p, %p", port, data, config);
1227
ea667be7
ML
1228 DEBUG("Setting configuration for port %s", port->name);
1229
e33ab9aa 1230#ifdef _WIN32
eac329d2 1231 if (config->baudrate >= 0) {
e33ab9aa
ML
1232 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
1233 if (config->baudrate == std_baudrates[i].value) {
1234 data->dcb.BaudRate = std_baudrates[i].index;
1235 break;
1236 }
1237 }
18fc2dd1 1238
e33ab9aa
ML
1239 if (i == NUM_STD_BAUDRATES)
1240 data->dcb.BaudRate = config->baudrate;
1241 }
18fc2dd1 1242
e33ab9aa
ML
1243 if (config->bits >= 0)
1244 data->dcb.ByteSize = config->bits;
1245
1246 if (config->parity >= 0) {
1247 switch (config->parity) {
1248 /* Note: There's also SPACEPARITY, MARKPARITY (unneeded so far). */
1249 case SP_PARITY_NONE:
1250 data->dcb.Parity = NOPARITY;
1251 break;
e432ce60
ML
1252 case SP_PARITY_ODD:
1253 data->dcb.Parity = ODDPARITY;
1254 break;
e33ab9aa
ML
1255 case SP_PARITY_EVEN:
1256 data->dcb.Parity = EVENPARITY;
1257 break;
e432ce60
ML
1258 case SP_PARITY_MARK:
1259 data->dcb.Parity = MARKPARITY;
1260 break;
1261 case SP_PARITY_SPACE:
1262 data->dcb.Parity = SPACEPARITY;
e33ab9aa
ML
1263 break;
1264 default:
c33efc48 1265 RETURN_ERROR(SP_ERR_ARG, "Invalid parity setting");
e33ab9aa 1266 }
18fc2dd1
ML
1267 }
1268
e33ab9aa
ML
1269 if (config->stopbits >= 0) {
1270 switch (config->stopbits) {
1271 /* Note: There's also ONE5STOPBITS == 1.5 (unneeded so far). */
1272 case 1:
1273 data->dcb.StopBits = ONESTOPBIT;
1274 break;
1275 case 2:
1276 data->dcb.StopBits = TWOSTOPBITS;
1277 break;
1278 default:
c33efc48 1279 RETURN_ERROR(SP_ERR_ARG, "Invalid stop bit setting");
e33ab9aa
ML
1280 }
1281 }
1282
1283 if (config->rts >= 0) {
1284 switch (config->rts) {
1285 case SP_RTS_OFF:
1286 data->dcb.fRtsControl = RTS_CONTROL_DISABLE;
1287 break;
1288 case SP_RTS_ON:
1289 data->dcb.fRtsControl = RTS_CONTROL_ENABLE;
1290 break;
1291 case SP_RTS_FLOW_CONTROL:
1292 data->dcb.fRtsControl = RTS_CONTROL_HANDSHAKE;
1293 break;
1294 default:
c33efc48 1295 RETURN_ERROR(SP_ERR_ARG, "Invalid RTS setting");
e33ab9aa
ML
1296 }
1297 }
1298
1299 if (config->cts >= 0) {
1300 switch (config->cts) {
1301 case SP_CTS_IGNORE:
1302 data->dcb.fOutxCtsFlow = FALSE;
1303 break;
1304 case SP_CTS_FLOW_CONTROL:
1305 data->dcb.fOutxCtsFlow = TRUE;
1306 break;
1307 default:
c33efc48 1308 RETURN_ERROR(SP_ERR_ARG, "Invalid CTS setting");
e33ab9aa
ML
1309 }
1310 }
1311
1312 if (config->dtr >= 0) {
1313 switch (config->dtr) {
1314 case SP_DTR_OFF:
1315 data->dcb.fDtrControl = DTR_CONTROL_DISABLE;
1316 break;
1317 case SP_DTR_ON:
1318 data->dcb.fDtrControl = DTR_CONTROL_ENABLE;
1319 break;
1320 case SP_DTR_FLOW_CONTROL:
1321 data->dcb.fDtrControl = DTR_CONTROL_HANDSHAKE;
1322 break;
1323 default:
c33efc48 1324 RETURN_ERROR(SP_ERR_ARG, "Invalid DTR setting");
e33ab9aa
ML
1325 }
1326 }
1327
1328 if (config->dsr >= 0) {
1329 switch (config->dsr) {
1330 case SP_DSR_IGNORE:
1331 data->dcb.fOutxDsrFlow = FALSE;
1332 break;
1333 case SP_DSR_FLOW_CONTROL:
1334 data->dcb.fOutxDsrFlow = TRUE;
1335 break;
1336 default:
c33efc48 1337 RETURN_ERROR(SP_ERR_ARG, "Invalid DSR setting");
e33ab9aa 1338 }
18fc2dd1
ML
1339 }
1340
e33ab9aa
ML
1341 if (config->xon_xoff >= 0) {
1342 switch (config->xon_xoff) {
1343 case SP_XONXOFF_DISABLED:
1344 data->dcb.fInX = FALSE;
1345 data->dcb.fOutX = FALSE;
1346 break;
1347 case SP_XONXOFF_IN:
1348 data->dcb.fInX = TRUE;
1349 data->dcb.fOutX = FALSE;
1350 break;
1351 case SP_XONXOFF_OUT:
1352 data->dcb.fInX = FALSE;
1353 data->dcb.fOutX = TRUE;
1354 break;
1355 case SP_XONXOFF_INOUT:
1356 data->dcb.fInX = TRUE;
1357 data->dcb.fOutX = TRUE;
1358 break;
1359 default:
c33efc48 1360 RETURN_ERROR(SP_ERR_ARG, "Invalid XON/XOFF setting");
e33ab9aa
ML
1361 }
1362 }
1363
1364 if (!SetCommState(port->hdl, &data->dcb))
c33efc48 1365 RETURN_FAIL("SetCommState() failed");
e33ab9aa 1366
31b3a8f5 1367#else /* !_WIN32 */
e33ab9aa 1368
7a6d2196
ML
1369 int controlbits;
1370
eac329d2 1371 if (config->baudrate >= 0) {
e33ab9aa
ML
1372 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
1373 if (config->baudrate == std_baudrates[i].value) {
1374 if (cfsetospeed(&data->term, std_baudrates[i].index) < 0)
c33efc48 1375 RETURN_FAIL("cfsetospeed() failed");
e33ab9aa
ML
1376
1377 if (cfsetispeed(&data->term, std_baudrates[i].index) < 0)
c33efc48 1378 RETURN_FAIL("cfsetispeed() failed");
e33ab9aa
ML
1379 break;
1380 }
1381 }
1382
31b3a8f5
MH
1383 /* Non-standard baud rate */
1384 if (i == NUM_STD_BAUDRATES) {
1385#ifdef __APPLE__
24abdb68 1386 /* Set "dummy" baud rate. */
31b3a8f5 1387 if (cfsetspeed(&data->term, B9600) < 0)
c33efc48 1388 RETURN_FAIL("cfsetspeed() failed");
31b3a8f5 1389 baud_nonstd = config->baudrate;
7a6d2196
ML
1390#elif defined(__linux__)
1391 baud_nonstd = 1;
31b3a8f5 1392#else
c33efc48 1393 RETURN_ERROR(SP_ERR_SUPP, "Non-standard baudrate not supported");
31b3a8f5
MH
1394#endif
1395 }
e33ab9aa
ML
1396 }
1397
1398 if (config->bits >= 0) {
1399 data->term.c_cflag &= ~CSIZE;
1400 switch (config->bits) {
1401 case 8:
1402 data->term.c_cflag |= CS8;
1403 break;
1404 case 7:
1405 data->term.c_cflag |= CS7;
1406 break;
1407 case 6:
1408 data->term.c_cflag |= CS6;
1409 break;
23922313
UH
1410 case 5:
1411 data->term.c_cflag |= CS5;
1412 break;
e33ab9aa 1413 default:
c33efc48 1414 RETURN_ERROR(SP_ERR_ARG, "Invalid data bits setting");
e33ab9aa
ML
1415 }
1416 }
1417
1418 if (config->parity >= 0) {
1419 data->term.c_iflag &= ~IGNPAR;
e432ce60 1420 data->term.c_cflag &= ~(PARENB | PARODD | CMSPAR);
e33ab9aa
ML
1421 switch (config->parity) {
1422 case SP_PARITY_NONE:
1423 data->term.c_iflag |= IGNPAR;
1424 break;
1425 case SP_PARITY_EVEN:
1426 data->term.c_cflag |= PARENB;
1427 break;
1428 case SP_PARITY_ODD:
1429 data->term.c_cflag |= PARENB | PARODD;
1430 break;
e432ce60
ML
1431 case SP_PARITY_MARK:
1432 data->term.c_cflag |= PARENB | PARODD | CMSPAR;
1433 break;
1434 case SP_PARITY_SPACE:
1435 data->term.c_cflag |= PARENB | CMSPAR;
1436 break;
e33ab9aa 1437 default:
c33efc48 1438 RETURN_ERROR(SP_ERR_ARG, "Invalid parity setting");
e33ab9aa
ML
1439 }
1440 }
1441
1442 if (config->stopbits >= 0) {
1443 data->term.c_cflag &= ~CSTOPB;
1444 switch (config->stopbits) {
1445 case 1:
1446 data->term.c_cflag &= ~CSTOPB;
1447 break;
1448 case 2:
1449 data->term.c_cflag |= CSTOPB;
1450 break;
1451 default:
c33efc48 1452 RETURN_ERROR(SP_ERR_ARG, "Invalid stop bits setting");
e33ab9aa
ML
1453 }
1454 }
1455
eac329d2 1456 if (config->rts >= 0 || config->cts >= 0) {
68ec29db
ML
1457 if (data->termiox_supported) {
1458 data->flow &= ~(RTS_FLOW | CTS_FLOW);
1459 switch (config->rts) {
1460 case SP_RTS_OFF:
1461 case SP_RTS_ON:
1462 controlbits = TIOCM_RTS;
1463 if (ioctl(port->fd, config->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC, &controlbits) < 0)
c33efc48 1464 RETURN_FAIL("Setting RTS signal level failed");
68ec29db
ML
1465 break;
1466 case SP_RTS_FLOW_CONTROL:
1467 data->flow |= RTS_FLOW;
1468 break;
1469 default:
1470 break;
e33ab9aa 1471 }
68ec29db
ML
1472 if (config->cts == SP_CTS_FLOW_CONTROL)
1473 data->flow |= CTS_FLOW;
e33ab9aa 1474
68ec29db 1475 if (data->flow & (RTS_FLOW | CTS_FLOW))
e33ab9aa 1476 data->term.c_iflag |= CRTSCTS;
68ec29db
ML
1477 else
1478 data->term.c_iflag &= ~CRTSCTS;
1479 } else {
1480 /* Asymmetric use of RTS/CTS not supported. */
1481 if (data->term.c_iflag & CRTSCTS) {
1482 /* Flow control can only be disabled for both RTS & CTS together. */
1483 if (config->rts >= 0 && config->rts != SP_RTS_FLOW_CONTROL) {
1484 if (config->cts != SP_CTS_IGNORE)
c33efc48 1485 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be disabled together");
68ec29db
ML
1486 }
1487 if (config->cts >= 0 && config->cts != SP_CTS_FLOW_CONTROL) {
1488 if (config->rts <= 0 || config->rts == SP_RTS_FLOW_CONTROL)
c33efc48 1489 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be disabled together");
68ec29db 1490 }
e33ab9aa 1491 } else {
68ec29db
ML
1492 /* Flow control can only be enabled for both RTS & CTS together. */
1493 if (((config->rts == SP_RTS_FLOW_CONTROL) && (config->cts != SP_CTS_FLOW_CONTROL)) ||
1494 ((config->cts == SP_CTS_FLOW_CONTROL) && (config->rts != SP_RTS_FLOW_CONTROL)))
c33efc48 1495 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be enabled together");
68ec29db
ML
1496 }
1497
1498 if (config->rts >= 0) {
1499 if (config->rts == SP_RTS_FLOW_CONTROL) {
1500 data->term.c_iflag |= CRTSCTS;
1501 } else {
1502 controlbits = TIOCM_RTS;
1503 if (ioctl(port->fd, config->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC,
1504 &controlbits) < 0)
c33efc48 1505 RETURN_FAIL("Setting RTS signal level failed");
68ec29db 1506 }
e33ab9aa
ML
1507 }
1508 }
1509 }
1510
eac329d2 1511 if (config->dtr >= 0 || config->dsr >= 0) {
68ec29db
ML
1512 if (data->termiox_supported) {
1513 data->flow &= ~(DTR_FLOW | DSR_FLOW);
1514 switch (config->dtr) {
1515 case SP_DTR_OFF:
1516 case SP_DTR_ON:
1517 controlbits = TIOCM_DTR;
1518 if (ioctl(port->fd, config->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC, &controlbits) < 0)
c33efc48 1519 RETURN_FAIL("Setting DTR signal level failed");
68ec29db
ML
1520 break;
1521 case SP_DTR_FLOW_CONTROL:
1522 data->flow |= DTR_FLOW;
1523 break;
1524 default:
1525 break;
1526 }
1527 if (config->dsr == SP_DSR_FLOW_CONTROL)
1528 data->flow |= DSR_FLOW;
1529 } else {
1530 /* DTR/DSR flow control not supported. */
1531 if (config->dtr == SP_DTR_FLOW_CONTROL || config->dsr == SP_DSR_FLOW_CONTROL)
c33efc48 1532 RETURN_ERROR(SP_ERR_SUPP, "DTR/DSR flow control not supported");
e33ab9aa 1533
68ec29db
ML
1534 if (config->dtr >= 0) {
1535 controlbits = TIOCM_DTR;
1536 if (ioctl(port->fd, config->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC,
1537 &controlbits) < 0)
c33efc48 1538 RETURN_FAIL("Setting DTR signal level failed");
68ec29db 1539 }
e33ab9aa
ML
1540 }
1541 }
1542
1543 if (config->xon_xoff >= 0) {
1544 data->term.c_iflag &= ~(IXON | IXOFF | IXANY);
1545 switch (config->xon_xoff) {
1546 case SP_XONXOFF_DISABLED:
1547 break;
1548 case SP_XONXOFF_IN:
1549 data->term.c_iflag |= IXOFF;
1550 break;
1551 case SP_XONXOFF_OUT:
1552 data->term.c_iflag |= IXON | IXANY;
1553 break;
1554 case SP_XONXOFF_INOUT:
1555 data->term.c_iflag |= IXON | IXOFF | IXANY;
1556 break;
1557 default:
c33efc48 1558 RETURN_ERROR(SP_ERR_ARG, "Invalid XON/XOFF setting");
e33ab9aa
ML
1559 }
1560 }
1561
3f5c06d0 1562 if (tcsetattr(port->fd, TCSANOW, &data->term) < 0)
c33efc48 1563 RETURN_FAIL("tcsetattr() failed");
31b3a8f5
MH
1564
1565#ifdef __APPLE__
1566 if (baud_nonstd != B0) {
1567 if (ioctl(port->fd, IOSSIOSPEED, &baud_nonstd) == -1)
c33efc48 1568 RETURN_FAIL("IOSSIOSPEED ioctl failed");
31b3a8f5
MH
1569 /* Set baud rates in data->term to correct, but incompatible
1570 * with tcsetattr() value, same as delivered by tcgetattr(). */
1571 if (cfsetspeed(&data->term, baud_nonstd) < 0)
c33efc48 1572 RETURN_FAIL("cfsetspeed() failed");
31b3a8f5 1573 }
7a6d2196
ML
1574#elif defined(__linux__)
1575 if (baud_nonstd)
1576 TRY(set_baudrate(port->fd, config->baudrate));
40978c2b 1577#ifdef USE_TERMIOX
68ec29db
ML
1578 if (data->termiox_supported)
1579 TRY(set_flow(port->fd, data->flow));
40978c2b 1580#endif
7a6d2196 1581#endif
31b3a8f5
MH
1582
1583#endif /* !_WIN32 */
e33ab9aa 1584
c33efc48 1585 RETURN_OK();
e33ab9aa
ML
1586}
1587
9b1502ef
ML
1588enum sp_return sp_new_config(struct sp_port_config **config_ptr)
1589{
1590 TRACE("%p", config_ptr);
59131d60 1591 struct sp_port_config *config;
9b1502ef
ML
1592
1593 if (!config_ptr)
1594 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
1595
59131d60
ML
1596 *config_ptr = NULL;
1597
1598 if (!(config = malloc(sizeof(struct sp_port_config))))
9b1502ef
ML
1599 RETURN_ERROR(SP_ERR_MEM, "config malloc failed");
1600
59131d60
ML
1601 config->baudrate = -1;
1602 config->bits = -1;
1603 config->parity = -1;
1604 config->stopbits = -1;
1605 config->rts = -1;
1606 config->cts = -1;
1607 config->dtr = -1;
1608 config->dsr = -1;
1609
1610 *config_ptr = config;
1611
9b1502ef
ML
1612 RETURN_OK();
1613}
1614
1615void sp_free_config(struct sp_port_config *config)
1616{
1617 TRACE("%p", config);
1618
1619 if (!config)
1620 DEBUG("Null config");
1621 else
1622 free(config);
1623
1624 RETURN();
1625}
1626
70cd37de
ML
1627enum sp_return sp_get_config(struct sp_port *port, struct sp_port_config *config)
1628{
1629 struct port_data data;
1630
1631 TRACE("%p, %p", port, config);
1632
1633 CHECK_OPEN_PORT();
1634
1635 if (!config)
9b1502ef 1636 RETURN_ERROR(SP_ERR_ARG, "Null config");
70cd37de
ML
1637
1638 TRY(get_config(port, &data, config));
1639
1640 RETURN_OK();
1641}
1642
eb6ed20f 1643enum sp_return sp_set_config(struct sp_port *port, const struct sp_port_config *config)
e33ab9aa 1644{
8f189c4c 1645 struct port_data data;
e33ab9aa
ML
1646 struct sp_port_config prev_config;
1647
c33efc48
ML
1648 TRACE("%p, %p", port, config);
1649
dec10e31 1650 CHECK_OPEN_PORT();
823690ae
ML
1651
1652 if (!config)
c33efc48 1653 RETURN_ERROR(SP_ERR_ARG, "Null config");
823690ae 1654
e33ab9aa
ML
1655 TRY(get_config(port, &data, &prev_config));
1656 TRY(set_config(port, &data, config));
74510d4b 1657
c33efc48 1658 RETURN_OK();
74510d4b
ML
1659}
1660
9b1502ef
ML
1661#define CREATE_ACCESSORS(x, type) \
1662enum sp_return sp_set_##x(struct sp_port *port, type x) { \
8f189c4c 1663 struct port_data data; \
e33ab9aa 1664 struct sp_port_config config; \
c33efc48 1665 TRACE("%p, %d", port, x); \
dec10e31 1666 CHECK_OPEN_PORT(); \
e33ab9aa
ML
1667 TRY(get_config(port, &data, &config)); \
1668 config.x = x; \
1669 TRY(set_config(port, &data, &config)); \
c33efc48 1670 RETURN_OK(); \
9b1502ef
ML
1671} \
1672enum sp_return sp_get_config_##x(const struct sp_port_config *config, type *x) { \
1673 TRACE("%p", config); \
1674 if (!config) \
1675 RETURN_ERROR(SP_ERR_ARG, "Null config"); \
1676 *x = config->x; \
1677 RETURN_OK(); \
1678} \
1679enum sp_return sp_set_config_##x(struct sp_port_config *config, type x) { \
1680 TRACE("%p, %d", config, x); \
1681 if (!config) \
1682 RETURN_ERROR(SP_ERR_ARG, "Null config"); \
1683 config->x = x; \
1684 RETURN_OK(); \
9069c2fb
ML
1685}
1686
9b1502ef
ML
1687CREATE_ACCESSORS(baudrate, int)
1688CREATE_ACCESSORS(bits, int)
1689CREATE_ACCESSORS(parity, enum sp_parity)
1690CREATE_ACCESSORS(stopbits, int)
1691CREATE_ACCESSORS(rts, enum sp_rts)
1692CREATE_ACCESSORS(cts, enum sp_cts)
1693CREATE_ACCESSORS(dtr, enum sp_dtr)
1694CREATE_ACCESSORS(dsr, enum sp_dsr)
1695CREATE_ACCESSORS(xon_xoff, enum sp_xonxoff)
1696
1697enum sp_return sp_set_config_flowcontrol(struct sp_port_config *config, enum sp_flowcontrol flowcontrol)
e33ab9aa 1698{
9b1502ef
ML
1699 if (!config)
1700 RETURN_ERROR(SP_ERR_ARG, "Null configuration");
dec10e31
ML
1701
1702 if (flowcontrol > SP_FLOWCONTROL_DTRDSR)
1703 RETURN_ERROR(SP_ERR_ARG, "Invalid flow control setting");
823690ae 1704
e33ab9aa 1705 if (flowcontrol == SP_FLOWCONTROL_XONXOFF)
9b1502ef 1706 config->xon_xoff = SP_XONXOFF_INOUT;
e33ab9aa 1707 else
9b1502ef 1708 config->xon_xoff = SP_XONXOFF_DISABLED;
e33ab9aa
ML
1709
1710 if (flowcontrol == SP_FLOWCONTROL_RTSCTS) {
9b1502ef
ML
1711 config->rts = SP_RTS_FLOW_CONTROL;
1712 config->cts = SP_CTS_FLOW_CONTROL;
e33ab9aa 1713 } else {
9b1502ef
ML
1714 if (config->rts == SP_RTS_FLOW_CONTROL)
1715 config->rts = SP_RTS_ON;
1716 config->cts = SP_CTS_IGNORE;
e33ab9aa
ML
1717 }
1718
1719 if (flowcontrol == SP_FLOWCONTROL_DTRDSR) {
9b1502ef
ML
1720 config->dtr = SP_DTR_FLOW_CONTROL;
1721 config->dsr = SP_DSR_FLOW_CONTROL;
e33ab9aa 1722 } else {
9b1502ef
ML
1723 if (config->dtr == SP_DTR_FLOW_CONTROL)
1724 config->dtr = SP_DTR_ON;
1725 config->dsr = SP_DSR_IGNORE;
e33ab9aa
ML
1726 }
1727
9b1502ef
ML
1728 RETURN_OK();
1729}
1730
1731enum sp_return sp_set_flowcontrol(struct sp_port *port, enum sp_flowcontrol flowcontrol)
1732{
1733 struct port_data data;
1734 struct sp_port_config config;
1735
1736 TRACE("%p, %d", port, flowcontrol);
1737
1738 CHECK_OPEN_PORT();
1739
1740 TRY(get_config(port, &data, &config));
1741
1742 TRY(sp_set_config_flowcontrol(&config, flowcontrol));
1743
e33ab9aa
ML
1744 TRY(set_config(port, &data, &config));
1745
c33efc48 1746 RETURN_OK();
e33ab9aa
ML
1747}
1748
8cf7c697
ML
1749enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signals)
1750{
c33efc48
ML
1751 TRACE("%p, %p", port, signals);
1752
dec10e31 1753 CHECK_OPEN_PORT();
8cf7c697
ML
1754
1755 if (!signals)
c33efc48 1756 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
8cf7c697 1757
ea667be7
ML
1758 DEBUG("Getting control signals for port %s", port->name);
1759
8cf7c697
ML
1760 *signals = 0;
1761#ifdef _WIN32
1762 DWORD bits;
1763 if (GetCommModemStatus(port->hdl, &bits) == 0)
c33efc48 1764 RETURN_FAIL("GetCommModemStatus() failed");
8cf7c697
ML
1765 if (bits & MS_CTS_ON)
1766 *signals |= SP_SIG_CTS;
1767 if (bits & MS_DSR_ON)
1768 *signals |= SP_SIG_DSR;
8cf7c697 1769 if (bits & MS_RLSD_ON)
a6cda1e8
ML
1770 *signals |= SP_SIG_DCD;
1771 if (bits & MS_RING_ON)
8cf7c697
ML
1772 *signals |= SP_SIG_RI;
1773#else
1774 int bits;
1775 if (ioctl(port->fd, TIOCMGET, &bits) < 0)
c33efc48 1776 RETURN_FAIL("TIOCMGET ioctl failed");
8cf7c697
ML
1777 if (bits & TIOCM_CTS)
1778 *signals |= SP_SIG_CTS;
1779 if (bits & TIOCM_DSR)
1780 *signals |= SP_SIG_DSR;
1781 if (bits & TIOCM_CAR)
1782 *signals |= SP_SIG_DCD;
1783 if (bits & TIOCM_RNG)
1784 *signals |= SP_SIG_RI;
1785#endif
c33efc48 1786 RETURN_OK();
8cf7c697
ML
1787}
1788
90cc3ee6
ML
1789enum sp_return sp_start_break(struct sp_port *port)
1790{
c33efc48
ML
1791 TRACE("%p", port);
1792
dec10e31 1793 CHECK_OPEN_PORT();
90cc3ee6
ML
1794#ifdef _WIN32
1795 if (SetCommBreak(port->hdl) == 0)
c33efc48 1796 RETURN_FAIL("SetCommBreak() failed");
90cc3ee6
ML
1797#else
1798 if (ioctl(port->fd, TIOCSBRK, 1) < 0)
c33efc48 1799 RETURN_FAIL("TIOCSBRK ioctl failed");
90cc3ee6
ML
1800#endif
1801
c33efc48 1802 RETURN_OK();
90cc3ee6
ML
1803}
1804
1805enum sp_return sp_end_break(struct sp_port *port)
1806{
c33efc48
ML
1807 TRACE("%p", port);
1808
dec10e31 1809 CHECK_OPEN_PORT();
90cc3ee6
ML
1810#ifdef _WIN32
1811 if (ClearCommBreak(port->hdl) == 0)
c33efc48 1812 RETURN_FAIL("ClearCommBreak() failed");
90cc3ee6
ML
1813#else
1814 if (ioctl(port->fd, TIOCCBRK, 1) < 0)
c33efc48 1815 RETURN_FAIL("TIOCCBRK ioctl failed");
90cc3ee6
ML
1816#endif
1817
c33efc48 1818 RETURN_OK();
90cc3ee6
ML
1819}
1820
74510d4b
ML
1821int sp_last_error_code(void)
1822{
c33efc48 1823 TRACE("");
74510d4b 1824#ifdef _WIN32
c33efc48 1825 RETURN_VALUE("%d", GetLastError());
74510d4b 1826#else
c33efc48 1827 RETURN_VALUE("%d", errno);
74510d4b
ML
1828#endif
1829}
1830
74510d4b
ML
1831char *sp_last_error_message(void)
1832{
c33efc48
ML
1833 TRACE("");
1834
74510d4b
ML
1835#ifdef _WIN32
1836 LPVOID message;
1837 DWORD error = GetLastError();
1838
1839 FormatMessage(
1840 FORMAT_MESSAGE_ALLOCATE_BUFFER |
1841 FORMAT_MESSAGE_FROM_SYSTEM |
1842 FORMAT_MESSAGE_IGNORE_INSERTS,
1843 NULL,
1844 error,
1845 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
1846 (LPTSTR) &message,
1847 0, NULL );
1848
c33efc48 1849 RETURN_VALUE("%s", message);
74510d4b 1850#else
c33efc48 1851 RETURN_VALUE("%s", strerror(errno));
74510d4b
ML
1852#endif
1853}
1854
74510d4b
ML
1855void sp_free_error_message(char *message)
1856{
c33efc48
ML
1857 TRACE("%s", message);
1858
74510d4b
ML
1859#ifdef _WIN32
1860 LocalFree(message);
64eec30d
ML
1861#else
1862 (void)message;
74510d4b 1863#endif
c33efc48
ML
1864
1865 RETURN();
74510d4b 1866}
863b35e6
ML
1867
1868void sp_set_debug_handler(void (*handler)(const char *format, ...))
1869{
c33efc48
ML
1870 TRACE("%p", handler);
1871
863b35e6 1872 sp_debug_handler = handler;
c33efc48
ML
1873
1874 RETURN();
863b35e6
ML
1875}
1876
1877void sp_default_debug_handler(const char *format, ...)
1878{
1879 va_list args;
1880 va_start(args, format);
1881 if (getenv("LIBSERIALPORT_DEBUG")) {
1882 fputs("libserialport: ", stderr);
1883 vfprintf(stderr, format, args);
1884 }
1885 va_end(args);
1886}