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