]> sigrok.org Git - libserialport.git/blob - serialport.c
serialport.c: Add missing linux_termios.h #include.
[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 #ifdef _WIN32
31 #include <windows.h>
32 #include <tchar.h>
33 #include <stdio.h>
34 #else
35 #include <termios.h>
36 #include <sys/ioctl.h>
37 #endif
38 #ifdef __APPLE__
39 #include <IOKit/IOKitLib.h>
40 #include <IOKit/serial/IOSerialKeys.h>
41 #include <IOKit/serial/ioss.h>
42 #include <sys/syslimits.h>
43 #endif
44 #ifdef __linux__
45 #include "libudev.h"
46 #include "linux/serial.h"
47 #include "linux_termios.h"
48 #if defined(TCGETX) && defined(TCSETX) && defined(HAVE_TERMIOX)
49 #define USE_TERMIOX
50 #endif
51 #endif
52
53 #ifndef _WIN32
54 #include "linux_termios.h"
55 #endif
56
57 #include "libserialport.h"
58
59 struct port_data {
60 #ifdef _WIN32
61         DCB dcb;
62 #else
63         struct termios term;
64         int controlbits;
65         int termiox_supported;
66         int flow;
67 #endif
68 };
69
70 /* Standard baud rates. */
71 #ifdef _WIN32
72 #define BAUD_TYPE DWORD
73 #define BAUD(n) {CBR_##n, n}
74 #else
75 #define BAUD_TYPE speed_t
76 #define BAUD(n) {B##n, n}
77 #endif
78
79 struct std_baudrate {
80         BAUD_TYPE index;
81         int value;
82 };
83
84 const struct std_baudrate std_baudrates[] = {
85 #ifdef _WIN32
86         /*
87          * The baudrates 50/75/134/150/200/1800/230400/460800 do not seem to
88          * have documented CBR_* macros.
89          */
90         BAUD(110), BAUD(300), BAUD(600), BAUD(1200), BAUD(2400), BAUD(4800),
91         BAUD(9600), BAUD(14400), BAUD(19200), BAUD(38400), BAUD(57600),
92         BAUD(115200), BAUD(128000), BAUD(256000),
93 #else
94         BAUD(50), BAUD(75), BAUD(110), BAUD(134), BAUD(150), BAUD(200),
95         BAUD(300), BAUD(600), BAUD(1200), BAUD(1800), BAUD(2400), BAUD(4800),
96         BAUD(9600), BAUD(19200), BAUD(38400), BAUD(57600), BAUD(115200),
97         BAUD(230400),
98 #if !defined(__APPLE__) && !defined(__OpenBSD__)
99         BAUD(460800),
100 #endif
101 #endif
102 };
103
104 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
105 #define NUM_STD_BAUDRATES ARRAY_SIZE(std_baudrates)
106
107 #define TRY(x) do { int ret = x; if (ret != SP_OK) return ret; } while (0)
108
109 /* Helper functions. */
110 static enum sp_return validate_port(struct sp_port *port);
111 static struct sp_port **list_append(struct sp_port **list, const char *portname);
112 static enum sp_return get_config(struct sp_port *port, struct port_data *data,
113         struct sp_port_config *config);
114 static enum sp_return set_config(struct sp_port *port, struct port_data *data,
115         const struct sp_port_config *config);
116
117 enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr)
118 {
119         struct sp_port *port;
120         int len;
121
122         if (!port_ptr)
123                 return SP_ERR_ARG;
124
125         *port_ptr = NULL;
126
127         if (!portname)
128                 return SP_ERR_ARG;
129
130         if (!(port = malloc(sizeof(struct sp_port))))
131                 return SP_ERR_MEM;
132
133         len = strlen(portname) + 1;
134
135         if (!(port->name = malloc(len))) {
136                 free(port);
137                 return SP_ERR_MEM;
138         }
139
140         memcpy(port->name, portname, len);
141
142 #ifdef _WIN32
143         port->hdl = INVALID_HANDLE_VALUE;
144 #else
145         port->fd = -1;
146 #endif
147
148         *port_ptr = port;
149
150         return SP_OK;
151 }
152
153 enum sp_return sp_copy_port(const struct sp_port *port, struct sp_port **copy_ptr)
154 {
155         if (!copy_ptr)
156                 return SP_ERR_ARG;
157
158         *copy_ptr = NULL;
159
160         if (!port || !port->name)
161                 return SP_ERR_ARG;
162
163         return sp_get_port_by_name(port->name, copy_ptr);
164 }
165
166 void sp_free_port(struct sp_port *port)
167 {
168         if (!port)
169                 return;
170
171         if (port->name)
172                 free(port->name);
173
174         free(port);
175 }
176
177 static struct sp_port **list_append(struct sp_port **list, const char *portname)
178 {
179         void *tmp;
180         unsigned int count;
181
182         for (count = 0; list[count]; count++);
183         if (!(tmp = realloc(list, sizeof(struct sp_port *) * (count + 2))))
184                 goto fail;
185         list = tmp;
186         if (sp_get_port_by_name(portname, &list[count]) != SP_OK)
187                 goto fail;
188         list[count + 1] = NULL;
189         return list;
190
191 fail:
192         sp_free_port_list(list);
193         return NULL;
194 }
195
196 enum sp_return sp_list_ports(struct sp_port ***list_ptr)
197 {
198         struct sp_port **list;
199         int ret = SP_OK;
200
201         if (!(list = malloc(sizeof(struct sp_port **))))
202                 return SP_ERR_MEM;
203
204         list[0] = NULL;
205
206 #ifdef _WIN32
207         HKEY key;
208         TCHAR *value, *data;
209         DWORD max_value_len, max_data_size, max_data_len;
210         DWORD value_len, data_size, data_len;
211         DWORD type, index = 0;
212         char *name;
213         int name_len;
214
215         if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("HARDWARE\\DEVICEMAP\\SERIALCOMM"),
216                         0, KEY_QUERY_VALUE, &key) != ERROR_SUCCESS) {
217                 ret = SP_ERR_FAIL;
218                 goto out_done;
219         }
220         if (RegQueryInfoKey(key, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
221                                 &max_value_len, &max_data_size, NULL, NULL) != ERROR_SUCCESS) {
222                 ret = SP_ERR_FAIL;
223                 goto out_close;
224         }
225         max_data_len = max_data_size / sizeof(TCHAR);
226         if (!(value = malloc((max_value_len + 1) * sizeof(TCHAR)))) {
227                 ret = SP_ERR_MEM;
228                 goto out_close;
229         }
230         if (!(data = malloc((max_data_len + 1) * sizeof(TCHAR)))) {
231                 ret = SP_ERR_MEM;
232                 goto out_free_value;
233         }
234         while (
235                 value_len = max_value_len + 1,
236                 data_size = max_data_size,
237                 RegEnumValue(key, index, value, &value_len,
238                         NULL, &type, (LPBYTE)data, &data_size) == ERROR_SUCCESS)
239         {
240                 data_len = data_size / sizeof(TCHAR);
241                 data[data_len] = '\0';
242 #ifdef UNICODE
243                 name_len = WideCharToMultiByte(CP_ACP, 0, data, -1, NULL, 0, NULL, NULL)
244 #else
245                 name_len = data_len + 1;
246 #endif
247                 if (!(name = malloc(name_len))) {
248                         ret = SP_ERR_MEM;
249                         goto out;
250                 }
251 #ifdef UNICODE
252                 WideCharToMultiByte(CP_ACP, 0, data, -1, name, name_len, NULL, NULL);
253 #else
254                 strcpy(name, data);
255 #endif
256                 if (type == REG_SZ && !(list = list_append(list, name))) {
257                         ret = SP_ERR_MEM;
258                         goto out;
259                 }
260                 index++;
261         }
262 out:
263         free(data);
264 out_free_value:
265         free(value);
266 out_close:
267         RegCloseKey(key);
268 out_done:
269 #endif
270 #ifdef __APPLE__
271         mach_port_t master;
272         CFMutableDictionaryRef classes;
273         io_iterator_t iter;
274         char *path;
275         io_object_t port;
276         CFTypeRef cf_path;
277         Boolean result;
278
279         if (IOMasterPort(MACH_PORT_NULL, &master) != KERN_SUCCESS) {
280                 ret = SP_ERR_FAIL;
281                 goto out_done;
282         }
283
284         if (!(classes = IOServiceMatching(kIOSerialBSDServiceValue))) {
285                 ret = SP_ERR_FAIL;
286                 goto out_done;
287         }
288
289         CFDictionarySetValue(classes,
290                         CFSTR(kIOSerialBSDTypeKey), CFSTR(kIOSerialBSDAllTypes));
291
292         if (IOServiceGetMatchingServices(master, classes, &iter) != KERN_SUCCESS) {
293                 ret = SP_ERR_FAIL;
294                 goto out_done;
295         }
296
297         if (!(path = malloc(PATH_MAX))) {
298                 ret = SP_ERR_MEM;
299                 goto out_release;
300         }
301
302         while ((port = IOIteratorNext(iter))) {
303                 cf_path = IORegistryEntryCreateCFProperty(port,
304                                 CFSTR(kIOCalloutDeviceKey), kCFAllocatorDefault, 0);
305                 if (cf_path) {
306                         result = CFStringGetCString(cf_path,
307                                         path, PATH_MAX, kCFStringEncodingASCII);
308                         CFRelease(cf_path);
309                         if (result && !(list = list_append(list, path))) {
310                                 ret = SP_ERR_MEM;
311                                 IOObjectRelease(port);
312                                 goto out;
313                         }
314                 }
315                 IOObjectRelease(port);
316         }
317 out:
318         free(path);
319 out_release:
320         IOObjectRelease(iter);
321 out_done:
322 #endif
323 #ifdef __linux__
324         struct udev *ud;
325         struct udev_enumerate *ud_enumerate;
326         struct udev_list_entry *ud_list;
327         struct udev_list_entry *ud_entry;
328         const char *path;
329         struct udev_device *ud_dev, *ud_parent;
330         const char *name;
331         const char *driver;
332         int fd, ioctl_result;
333         struct serial_struct serial_info;
334
335         ud = udev_new();
336         ud_enumerate = udev_enumerate_new(ud);
337         udev_enumerate_add_match_subsystem(ud_enumerate, "tty");
338         udev_enumerate_scan_devices(ud_enumerate);
339         ud_list = udev_enumerate_get_list_entry(ud_enumerate);
340         udev_list_entry_foreach(ud_entry, ud_list) {
341                 path = udev_list_entry_get_name(ud_entry);
342                 ud_dev = udev_device_new_from_syspath(ud, path);
343                 /* If there is no parent device, this is a virtual tty. */
344                 ud_parent = udev_device_get_parent(ud_dev);
345                 if (ud_parent == NULL) {
346                         udev_device_unref(ud_dev);
347                         continue;
348                 }
349                 name = udev_device_get_devnode(ud_dev);
350                 /* The serial8250 driver has a hardcoded number of ports.
351                  * The only way to tell which actually exist on a given system
352                  * is to try to open them and make an ioctl call. */
353                 driver = udev_device_get_driver(ud_parent);
354                 if (driver && !strcmp(driver, "serial8250")) {
355                         if ((fd = open(name, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0)
356                                 goto skip;
357                         ioctl_result = ioctl(fd, TIOCGSERIAL, &serial_info);
358                         close(fd);
359                         if (ioctl_result != 0)
360                                 goto skip;
361                         if (serial_info.type == PORT_UNKNOWN)
362                                 goto skip;
363                 }
364                 list = list_append(list, name);
365 skip:
366                 udev_device_unref(ud_dev);
367                 if (!list) {
368                         ret = SP_ERR_MEM;
369                         goto out;
370                 }
371         }
372 out:
373         udev_enumerate_unref(ud_enumerate);
374         udev_unref(ud);
375 #endif
376
377         if (ret == SP_OK) {
378                 *list_ptr = list;
379         } else {
380                 if (list)
381                         sp_free_port_list(list);
382                 *list_ptr = NULL;
383         }
384
385         return ret;
386 }
387
388 void sp_free_port_list(struct sp_port **list)
389 {
390         unsigned int i;
391
392         for (i = 0; list[i]; i++)
393                 sp_free_port(list[i]);
394         free(list);
395 }
396
397 static enum sp_return validate_port(struct sp_port *port)
398 {
399         if (port == NULL)
400                 return 0;
401 #ifdef _WIN32
402         if (port->hdl == INVALID_HANDLE_VALUE)
403                 return 0;
404 #else
405         if (port->fd < 0)
406                 return 0;
407 #endif
408         return 1;
409 }
410
411 #define CHECK_PORT() do { if (!validate_port(port)) return SP_ERR_ARG; } while (0)
412
413 enum sp_return sp_open(struct sp_port *port, enum sp_mode flags)
414 {
415         if (!port)
416                 return SP_ERR_ARG;
417
418 #ifdef _WIN32
419         DWORD desired_access = 0, flags_and_attributes = 0;
420         char *escaped_port_name;
421
422         /* Prefix port name with '\\.\' to work with ports above COM9. */
423         if (!(escaped_port_name = malloc(strlen(port->name + 5))))
424                 return SP_ERR_MEM;
425         sprintf(escaped_port_name, "\\\\.\\%s", port->name);
426
427         /* Map 'flags' to the OS-specific settings. */
428         flags_and_attributes = FILE_ATTRIBUTE_NORMAL;
429         if (flags & SP_MODE_READ)
430                 desired_access |= GENERIC_READ;
431         if (flags & SP_MODE_WRITE)
432                 desired_access |= GENERIC_WRITE;
433         if (flags & SP_MODE_NONBLOCK)
434                 flags_and_attributes |= FILE_FLAG_OVERLAPPED;
435
436         port->hdl = CreateFile(escaped_port_name, desired_access, 0, 0,
437                          OPEN_EXISTING, flags_and_attributes, 0);
438
439         free(escaped_port_name);
440
441         if (port->hdl == INVALID_HANDLE_VALUE)
442                 return SP_ERR_FAIL;
443 #else
444         int flags_local = 0;
445         struct port_data data;
446         struct sp_port_config config;
447         int ret;
448
449         /* Map 'flags' to the OS-specific settings. */
450         if (flags & (SP_MODE_READ | SP_MODE_WRITE))
451                 flags_local |= O_RDWR;
452         else if (flags & SP_MODE_READ)
453                 flags_local |= O_RDONLY;
454         else if (flags & SP_MODE_WRITE)
455                 flags_local |= O_WRONLY;
456         if (flags & SP_MODE_NONBLOCK)
457                 flags_local |= O_NONBLOCK;
458
459         if ((port->fd = open(port->name, flags_local)) < 0)
460                 return SP_ERR_FAIL;
461
462         ret = get_config(port, &data, &config);
463
464         if (ret < 0) {
465                 sp_close(port);
466                 return ret;
467         }
468
469         /* Turn off all serial port cooking. */
470         data.term.c_iflag &= ~(ISTRIP | INLCR | ICRNL);
471         data.term.c_oflag &= ~(ONLCR | OCRNL | ONOCR);
472 #if !defined(__FreeBSD__) && !defined(__OpenBSD__) && !defined(__NetBSD__)
473         data.term.c_oflag &= ~OFILL;
474 #endif
475         /* Disable canonical mode, and don't echo input characters. */
476         data.term.c_lflag &= ~(ICANON | ECHO);
477
478         /* Ignore modem status lines; enable receiver */
479         data.term.c_cflag |= (CLOCAL | CREAD);
480
481         ret = set_config(port, &data, &config);
482
483         if (ret < 0) {
484                 sp_close(port);
485                 return ret;
486         }
487 #endif
488
489         return SP_OK;
490 }
491
492 enum sp_return sp_close(struct sp_port *port)
493 {
494         CHECK_PORT();
495
496 #ifdef _WIN32
497         /* Returns non-zero upon success, 0 upon failure. */
498         if (CloseHandle(port->hdl) == 0)
499                 return SP_ERR_FAIL;
500         port->hdl = INVALID_HANDLE_VALUE;
501 #else
502         /* Returns 0 upon success, -1 upon failure. */
503         if (close(port->fd) == -1)
504                 return SP_ERR_FAIL;
505         port->fd = -1;
506 #endif
507
508         return SP_OK;
509 }
510
511 enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers)
512 {
513         CHECK_PORT();
514
515 #ifdef _WIN32
516         DWORD flags = 0;
517         if (buffers & SP_BUF_INPUT)
518                 flags |= PURGE_RXCLEAR;
519         if (buffers & SP_BUF_OUTPUT)
520                 flags |= PURGE_TXCLEAR;
521
522         /* Returns non-zero upon success, 0 upon failure. */
523         if (PurgeComm(port->hdl, flags) == 0)
524                 return SP_ERR_FAIL;
525 #else
526         int flags = 0;
527         if (buffers & SP_BUF_BOTH)
528                 flags = TCIOFLUSH;
529         else if (buffers & SP_BUF_INPUT)
530                 flags = TCIFLUSH;
531         else if (buffers & SP_BUF_OUTPUT)
532                 flags = TCOFLUSH;
533
534         /* Returns 0 upon success, -1 upon failure. */
535         if (tcflush(port->fd, flags) < 0)
536                 return SP_ERR_FAIL;
537 #endif
538         return SP_OK;
539 }
540
541 enum sp_return sp_drain(struct sp_port *port)
542 {
543         CHECK_PORT();
544
545 #ifdef _WIN32
546         /* Returns non-zero upon success, 0 upon failure. */
547         if (FlushFileBuffers(port->hdl) == 0)
548                 return SP_ERR_FAIL;
549 #else
550         /* Returns 0 upon success, -1 upon failure. */
551         if (tcdrain(port->fd) < 0)
552                 return SP_ERR_FAIL;
553 #endif
554
555         return SP_OK;
556 }
557
558 enum sp_return sp_write(struct sp_port *port, const void *buf, size_t count)
559 {
560         CHECK_PORT();
561
562         if (!buf)
563                 return SP_ERR_ARG;
564
565 #ifdef _WIN32
566         DWORD written = 0;
567
568         /* Returns non-zero upon success, 0 upon failure. */
569         if (WriteFile(port->hdl, buf, count, &written, NULL) == 0)
570                 return SP_ERR_FAIL;
571         return written;
572 #else
573         /* Returns the number of bytes written, or -1 upon failure. */
574         ssize_t written = write(port->fd, buf, count);
575
576         if (written < 0)
577                 return SP_ERR_FAIL;
578         else
579                 return written;
580 #endif
581 }
582
583 enum sp_return sp_read(struct sp_port *port, void *buf, size_t count)
584 {
585         CHECK_PORT();
586
587         if (!buf)
588                 return SP_ERR_ARG;
589
590 #ifdef _WIN32
591         DWORD bytes_read = 0;
592
593         /* Returns non-zero upon success, 0 upon failure. */
594         if (ReadFile(port->hdl, buf, count, &bytes_read, NULL) == 0)
595                 return SP_ERR_FAIL;
596         return bytes_read;
597 #else
598         ssize_t bytes_read;
599
600         /* Returns the number of bytes read, or -1 upon failure. */
601         if ((bytes_read = read(port->fd, buf, count)) < 0)
602                 return SP_ERR_FAIL;
603         return bytes_read;
604 #endif
605 }
606
607 #ifdef __linux__
608 static enum sp_return get_baudrate(int fd, int *baudrate)
609 {
610         void *data;
611
612         if (!(data = malloc(get_termios_size())))
613                 return SP_ERR_MEM;
614
615         if (ioctl(fd, get_termios_get_ioctl(), data) < 0) {
616                 free(data);
617                 return SP_ERR_FAIL;
618         }
619
620         *baudrate = get_termios_speed(data);
621
622         free(data);
623
624         return SP_OK;
625 }
626
627 static enum sp_return set_baudrate(int fd, int baudrate)
628 {
629         void *data;
630
631         if (!(data = malloc(get_termios_size())))
632                 return SP_ERR_MEM;
633
634         if (ioctl(fd, get_termios_get_ioctl(), data) < 0) {
635                 free(data);
636                 return SP_ERR_FAIL;
637         }
638
639         set_termios_speed(data, baudrate);
640
641         if (ioctl(fd, get_termios_set_ioctl(), data) < 0) {
642                 free(data);
643                 return SP_ERR_FAIL;
644         }
645
646         free(data);
647
648         return SP_OK;
649 }
650
651 #ifdef USE_TERMIOX
652 static enum sp_return get_flow(int fd, int *flow)
653 {
654         void *data;
655
656         if (!(data = malloc(get_termiox_size())))
657                 return SP_ERR_MEM;
658
659         if (ioctl(fd, TCGETX, data) < 0) {
660                 free(data);
661                 return SP_ERR_FAIL;
662         }
663
664         *flow = get_termiox_flow(data);
665
666         free(data);
667
668         return SP_OK;
669 }
670
671 static enum sp_return set_flow(int fd, int flow)
672 {
673         void *data;
674
675         if (!(data = malloc(get_termiox_size())))
676                 return SP_ERR_MEM;
677
678         if (ioctl(fd, TCGETX, data) < 0) {
679                 free(data);
680                 return SP_ERR_FAIL;
681         }
682
683         set_termiox_flow(data, flow);
684
685         if (ioctl(fd, TCSETX, data) < 0) {
686                 free(data);
687                 return SP_ERR_FAIL;
688         }
689
690         free(data);
691
692         return SP_OK;
693 }
694 #endif /* USE_TERMIOX */
695 #endif /* __linux__ */
696
697 static enum sp_return get_config(struct sp_port *port, struct port_data *data,
698         struct sp_port_config *config)
699 {
700         unsigned int i;
701
702 #ifdef _WIN32
703         if (!GetCommState(port->hdl, &data->dcb))
704                 return SP_ERR_FAIL;
705
706         for (i = 0; i < NUM_STD_BAUDRATES; i++) {
707                 if (data->dcb.BaudRate == std_baudrates[i].index) {
708                         config->baudrate = std_baudrates[i].value;
709                         break;
710                 }
711         }
712
713         if (i == NUM_STD_BAUDRATES)
714                 /* BaudRate field can be either an index or a custom baud rate. */
715                 config->baudrate = data->dcb.BaudRate;
716
717         config->bits = data->dcb.ByteSize;
718
719         if (data->dcb.fParity)
720                 switch (data->dcb.Parity) {
721                 case NOPARITY:
722                         config->parity = SP_PARITY_NONE;
723                         break;
724                 case EVENPARITY:
725                         config->parity = SP_PARITY_EVEN;
726                         break;
727                 case ODDPARITY:
728                         config->parity = SP_PARITY_ODD;
729                         break;
730                 default:
731                         config->parity = -1;
732                 }
733         else
734                 config->parity = SP_PARITY_NONE;
735
736         switch (data->dcb.StopBits) {
737         case ONESTOPBIT:
738                 config->stopbits = 1;
739                 break;
740         case TWOSTOPBITS:
741                 config->stopbits = 2;
742                 break;
743         default:
744                 config->stopbits = -1;
745         }
746
747         switch (data->dcb.fRtsControl) {
748         case RTS_CONTROL_DISABLE:
749                 config->rts = SP_RTS_OFF;
750                 break;
751         case RTS_CONTROL_ENABLE:
752                 config->rts = SP_RTS_ON;
753                 break;
754         case RTS_CONTROL_HANDSHAKE:
755                 config->rts = SP_RTS_FLOW_CONTROL;
756                 break;
757         default:
758                 config->rts = -1;
759         }
760
761         config->cts = data->dcb.fOutxCtsFlow ? SP_CTS_FLOW_CONTROL : SP_CTS_IGNORE;
762
763         switch (data->dcb.fDtrControl) {
764         case DTR_CONTROL_DISABLE:
765                 config->dtr = SP_DTR_OFF;
766                 break;
767         case DTR_CONTROL_ENABLE:
768                 config->dtr = SP_DTR_ON;
769                 break;
770         case DTR_CONTROL_HANDSHAKE:
771                 config->dtr = SP_DTR_FLOW_CONTROL;
772                 break;
773         default:
774                 config->dtr = -1;
775         }
776
777         config->dsr = data->dcb.fOutxDsrFlow ? SP_DSR_FLOW_CONTROL : SP_DSR_IGNORE;
778
779         if (data->dcb.fInX) {
780                 if (data->dcb.fOutX)
781                         config->xon_xoff = SP_XONXOFF_INOUT;
782                 else
783                         config->xon_xoff = SP_XONXOFF_IN;
784         } else {
785                 if (data->dcb.fOutX)
786                         config->xon_xoff = SP_XONXOFF_OUT;
787                 else
788                         config->xon_xoff = SP_XONXOFF_DISABLED;
789         }
790
791 #else // !_WIN32
792
793         if (tcgetattr(port->fd, &data->term) < 0)
794                 return SP_ERR_FAIL;
795
796         if (ioctl(port->fd, TIOCMGET, &data->controlbits) < 0)
797                 return SP_ERR_FAIL;
798
799 #ifdef USE_TERMIOX
800         int ret = get_flow(port->fd, &data->flow);
801
802         if (ret == SP_ERR_FAIL && errno == EINVAL)
803                 data->termiox_supported = 0;
804         else if (ret < 0)
805                 return ret;
806         else
807                 data->termiox_supported = 1;
808 #else
809         data->termiox_supported = 0;
810 #endif
811
812         for (i = 0; i < NUM_STD_BAUDRATES; i++) {
813                 if (cfgetispeed(&data->term) == std_baudrates[i].index) {
814                         config->baudrate = std_baudrates[i].value;
815                         break;
816                 }
817         }
818
819         if (i == NUM_STD_BAUDRATES) {
820 #ifdef __APPLE__
821                 config->baudrate = (int)data->term.c_ispeed;
822 #elif defined(__linux__)
823                 TRY(get_baudrate(port->fd, &config->baudrate));
824 #else
825                 config->baudrate = -1;
826 #endif
827         }
828
829         switch (data->term.c_cflag & CSIZE) {
830         case CS8:
831                 config->bits = 8;
832                 break;
833         case CS7:
834                 config->bits = 7;
835                 break;
836         case CS6:
837                 config->bits = 6;
838                 break;
839         case CS5:
840                 config->bits = 5;
841                 break;
842         default:
843                 config->bits = -1;
844         }
845
846         if (!(data->term.c_cflag & PARENB) && (data->term.c_iflag & IGNPAR))
847                 config->parity = SP_PARITY_NONE;
848         else if (!(data->term.c_cflag & PARENB) || (data->term.c_iflag & IGNPAR))
849                 config->parity = -1;
850         else
851                 config->parity = (data->term.c_cflag & PARODD) ? SP_PARITY_ODD : SP_PARITY_EVEN;
852
853         config->stopbits = (data->term.c_cflag & CSTOPB) ? 2 : 1;
854
855         if (data->term.c_cflag & CRTSCTS) {
856                 config->rts = SP_RTS_FLOW_CONTROL;
857                 config->cts = SP_CTS_FLOW_CONTROL;
858         } else {
859                 if (data->termiox_supported && data->flow & RTS_FLOW)
860                         config->rts = SP_RTS_FLOW_CONTROL;
861                 else
862                         config->rts = (data->controlbits & TIOCM_RTS) ? SP_RTS_ON : SP_RTS_OFF;
863
864                 config->cts = (data->termiox_supported && data->flow & CTS_FLOW) ?
865                         SP_CTS_FLOW_CONTROL : SP_CTS_IGNORE;
866         }
867
868         if (data->termiox_supported && data->flow & DTR_FLOW)
869                 config->dtr = SP_DTR_FLOW_CONTROL;
870         else
871                 config->dtr = (data->controlbits & TIOCM_DTR) ? SP_DTR_ON : SP_DTR_OFF;
872
873         config->dsr = (data->termiox_supported && data->flow & DSR_FLOW) ?
874                 SP_DSR_FLOW_CONTROL : SP_DSR_IGNORE;
875
876         if (data->term.c_iflag & IXOFF) {
877                 if (data->term.c_iflag & IXON)
878                         config->xon_xoff = SP_XONXOFF_INOUT;
879                 else
880                         config->xon_xoff = SP_XONXOFF_IN;
881         } else {
882                 if (data->term.c_iflag & IXON)
883                         config->xon_xoff = SP_XONXOFF_OUT;
884                 else
885                         config->xon_xoff = SP_XONXOFF_DISABLED;
886         }
887 #endif
888
889         return SP_OK;
890 }
891
892 static enum sp_return set_config(struct sp_port *port, struct port_data *data,
893         const struct sp_port_config *config)
894 {
895         unsigned int i;
896 #ifdef __APPLE__
897         BAUD_TYPE baud_nonstd;
898
899         baud_nonstd = B0;
900 #endif
901 #ifdef __linux__
902         int baud_nonstd = 0;
903 #endif
904
905 #ifdef _WIN32
906         if (config->baudrate >= 0) {
907                 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
908                         if (config->baudrate == std_baudrates[i].value) {
909                                 data->dcb.BaudRate = std_baudrates[i].index;
910                                 break;
911                         }
912                 }
913
914                 if (i == NUM_STD_BAUDRATES)
915                         data->dcb.BaudRate = config->baudrate;
916         }
917
918         if (config->bits >= 0)
919                 data->dcb.ByteSize = config->bits;
920
921         if (config->parity >= 0) {
922                 switch (config->parity) {
923                 /* Note: There's also SPACEPARITY, MARKPARITY (unneeded so far). */
924                 case SP_PARITY_NONE:
925                         data->dcb.Parity = NOPARITY;
926                         break;
927                 case SP_PARITY_EVEN:
928                         data->dcb.Parity = EVENPARITY;
929                         break;
930                 case SP_PARITY_ODD:
931                         data->dcb.Parity = ODDPARITY;
932                         break;
933                 default:
934                         return SP_ERR_ARG;
935                 }
936         }
937
938         if (config->stopbits >= 0) {
939                 switch (config->stopbits) {
940                 /* Note: There's also ONE5STOPBITS == 1.5 (unneeded so far). */
941                 case 1:
942                         data->dcb.StopBits = ONESTOPBIT;
943                         break;
944                 case 2:
945                         data->dcb.StopBits = TWOSTOPBITS;
946                         break;
947                 default:
948                         return SP_ERR_ARG;
949                 }
950         }
951
952         if (config->rts >= 0) {
953                 switch (config->rts) {
954                 case SP_RTS_OFF:
955                         data->dcb.fRtsControl = RTS_CONTROL_DISABLE;
956                         break;
957                 case SP_RTS_ON:
958                         data->dcb.fRtsControl = RTS_CONTROL_ENABLE;
959                         break;
960                 case SP_RTS_FLOW_CONTROL:
961                         data->dcb.fRtsControl = RTS_CONTROL_HANDSHAKE;
962                         break;
963                 default:
964                         return SP_ERR_ARG;
965                 }
966         }
967
968         if (config->cts >= 0) {
969                 switch (config->cts) {
970                 case SP_CTS_IGNORE:
971                         data->dcb.fOutxCtsFlow = FALSE;
972                         break;
973                 case SP_CTS_FLOW_CONTROL:
974                         data->dcb.fOutxCtsFlow = TRUE;
975                         break;
976                 default:
977                         return SP_ERR_ARG;
978                 }
979         }
980
981         if (config->dtr >= 0) {
982                 switch (config->dtr) {
983                 case SP_DTR_OFF:
984                         data->dcb.fDtrControl = DTR_CONTROL_DISABLE;
985                         break;
986                 case SP_DTR_ON:
987                         data->dcb.fDtrControl = DTR_CONTROL_ENABLE;
988                         break;
989                 case SP_DTR_FLOW_CONTROL:
990                         data->dcb.fDtrControl = DTR_CONTROL_HANDSHAKE;
991                         break;
992                 default:
993                         return SP_ERR_ARG;
994                 }
995         }
996
997         if (config->dsr >= 0) {
998                 switch (config->dsr) {
999                 case SP_DSR_IGNORE:
1000                         data->dcb.fOutxDsrFlow = FALSE;
1001                         break;
1002                 case SP_DSR_FLOW_CONTROL:
1003                         data->dcb.fOutxDsrFlow = TRUE;
1004                         break;
1005                 default:
1006                         return SP_ERR_ARG;
1007                 }
1008         }
1009
1010         if (config->xon_xoff >= 0) {
1011                 switch (config->xon_xoff) {
1012                 case SP_XONXOFF_DISABLED:
1013                         data->dcb.fInX = FALSE;
1014                         data->dcb.fOutX = FALSE;
1015                         break;
1016                 case SP_XONXOFF_IN:
1017                         data->dcb.fInX = TRUE;
1018                         data->dcb.fOutX = FALSE;
1019                         break;
1020                 case SP_XONXOFF_OUT:
1021                         data->dcb.fInX = FALSE;
1022                         data->dcb.fOutX = TRUE;
1023                         break;
1024                 case SP_XONXOFF_INOUT:
1025                         data->dcb.fInX = TRUE;
1026                         data->dcb.fOutX = TRUE;
1027                         break;
1028                 default:
1029                         return SP_ERR_ARG;
1030                 }
1031         }
1032
1033         if (!SetCommState(port->hdl, &data->dcb))
1034                 return SP_ERR_FAIL;
1035
1036 #else /* !_WIN32 */
1037
1038         int controlbits;
1039
1040         if (config->baudrate >= 0) {
1041                 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
1042                         if (config->baudrate == std_baudrates[i].value) {
1043                                 if (cfsetospeed(&data->term, std_baudrates[i].index) < 0)
1044                                         return SP_ERR_FAIL;
1045
1046                                 if (cfsetispeed(&data->term, std_baudrates[i].index) < 0)
1047                                         return SP_ERR_FAIL;
1048                                 break;
1049                         }
1050                 }
1051
1052                 /* Non-standard baud rate */
1053                 if (i == NUM_STD_BAUDRATES) {
1054 #ifdef __APPLE__
1055                         /* Set "dummy" baud rate. */
1056                         if (cfsetspeed(&data->term, B9600) < 0)
1057                                 return SP_ERR_FAIL;
1058                         baud_nonstd = config->baudrate;
1059 #elif defined(__linux__)
1060                         baud_nonstd = 1;
1061 #else
1062                         return SP_ERR_SUPP;
1063 #endif
1064                 }
1065         }
1066
1067         if (config->bits >= 0) {
1068                 data->term.c_cflag &= ~CSIZE;
1069                 switch (config->bits) {
1070                 case 8:
1071                         data->term.c_cflag |= CS8;
1072                         break;
1073                 case 7:
1074                         data->term.c_cflag |= CS7;
1075                         break;
1076                 case 6:
1077                         data->term.c_cflag |= CS6;
1078                         break;
1079                 case 5:
1080                         data->term.c_cflag |= CS5;
1081                         break;
1082                 default:
1083                         return SP_ERR_ARG;
1084                 }
1085         }
1086
1087         if (config->parity >= 0) {
1088                 data->term.c_iflag &= ~IGNPAR;
1089                 data->term.c_cflag &= ~(PARENB | PARODD);
1090                 switch (config->parity) {
1091                 case SP_PARITY_NONE:
1092                         data->term.c_iflag |= IGNPAR;
1093                         break;
1094                 case SP_PARITY_EVEN:
1095                         data->term.c_cflag |= PARENB;
1096                         break;
1097                 case SP_PARITY_ODD:
1098                         data->term.c_cflag |= PARENB | PARODD;
1099                         break;
1100                 default:
1101                         return SP_ERR_ARG;
1102                 }
1103         }
1104
1105         if (config->stopbits >= 0) {
1106                 data->term.c_cflag &= ~CSTOPB;
1107                 switch (config->stopbits) {
1108                 case 1:
1109                         data->term.c_cflag &= ~CSTOPB;
1110                         break;
1111                 case 2:
1112                         data->term.c_cflag |= CSTOPB;
1113                         break;
1114                 default:
1115                         return SP_ERR_ARG;
1116                 }
1117         }
1118
1119         if (config->rts >= 0 || config->cts >= 0) {
1120                 if (data->termiox_supported) {
1121                         data->flow &= ~(RTS_FLOW | CTS_FLOW);
1122                         switch (config->rts) {
1123                         case SP_RTS_OFF:
1124                         case SP_RTS_ON:
1125                                 controlbits = TIOCM_RTS;
1126                                 if (ioctl(port->fd, config->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC, &controlbits) < 0)
1127                                         return SP_ERR_FAIL;
1128                                 break;
1129                         case SP_RTS_FLOW_CONTROL:
1130                                 data->flow |= RTS_FLOW;
1131                                 break;
1132                         default:
1133                                 break;
1134                         }
1135                         if (config->cts == SP_CTS_FLOW_CONTROL)
1136                                 data->flow |= CTS_FLOW;
1137
1138                         if (data->flow & (RTS_FLOW | CTS_FLOW))
1139                                 data->term.c_iflag |= CRTSCTS;
1140                         else
1141                                 data->term.c_iflag &= ~CRTSCTS;
1142                 } else {
1143                         /* Asymmetric use of RTS/CTS not supported. */
1144                         if (data->term.c_iflag & CRTSCTS) {
1145                                 /* Flow control can only be disabled for both RTS & CTS together. */
1146                                 if (config->rts >= 0 && config->rts != SP_RTS_FLOW_CONTROL) {
1147                                         if (config->cts != SP_CTS_IGNORE)
1148                                                 return SP_ERR_SUPP;
1149                                 }
1150                                 if (config->cts >= 0 && config->cts != SP_CTS_FLOW_CONTROL) {
1151                                         if (config->rts <= 0 || config->rts == SP_RTS_FLOW_CONTROL)
1152                                                 return SP_ERR_SUPP;
1153                                 }
1154                         } else {
1155                                 /* Flow control can only be enabled for both RTS & CTS together. */
1156                                 if (((config->rts == SP_RTS_FLOW_CONTROL) && (config->cts != SP_CTS_FLOW_CONTROL)) ||
1157                                         ((config->cts == SP_CTS_FLOW_CONTROL) && (config->rts != SP_RTS_FLOW_CONTROL)))
1158                                         return SP_ERR_SUPP;
1159                         }
1160
1161                         if (config->rts >= 0) {
1162                                 if (config->rts == SP_RTS_FLOW_CONTROL) {
1163                                         data->term.c_iflag |= CRTSCTS;
1164                                 } else {
1165                                         controlbits = TIOCM_RTS;
1166                                         if (ioctl(port->fd, config->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC,
1167                                                         &controlbits) < 0)
1168                                                 return SP_ERR_FAIL;
1169                                 }
1170                         }
1171                 }
1172         }
1173
1174         if (config->dtr >= 0 || config->dsr >= 0) {
1175                 if (data->termiox_supported) {
1176                         data->flow &= ~(DTR_FLOW | DSR_FLOW);
1177                         switch (config->dtr) {
1178                         case SP_DTR_OFF:
1179                         case SP_DTR_ON:
1180                                 controlbits = TIOCM_DTR;
1181                                 if (ioctl(port->fd, config->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC, &controlbits) < 0)
1182                                         return SP_ERR_FAIL;
1183                                 break;
1184                         case SP_DTR_FLOW_CONTROL:
1185                                 data->flow |= DTR_FLOW;
1186                                 break;
1187                         default:
1188                                 break;
1189                         }
1190                         if (config->dsr == SP_DSR_FLOW_CONTROL)
1191                                 data->flow |= DSR_FLOW;
1192                 } else {
1193                         /* DTR/DSR flow control not supported. */
1194                         if (config->dtr == SP_DTR_FLOW_CONTROL || config->dsr == SP_DSR_FLOW_CONTROL)
1195                                 return SP_ERR_SUPP;
1196
1197                         if (config->dtr >= 0) {
1198                                 controlbits = TIOCM_DTR;
1199                                 if (ioctl(port->fd, config->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC,
1200                                                 &controlbits) < 0)
1201                                         return SP_ERR_FAIL;
1202                         }
1203                 }
1204         }
1205
1206         if (config->xon_xoff >= 0) {
1207                 data->term.c_iflag &= ~(IXON | IXOFF | IXANY);
1208                 switch (config->xon_xoff) {
1209                 case SP_XONXOFF_DISABLED:
1210                         break;
1211                 case SP_XONXOFF_IN:
1212                         data->term.c_iflag |= IXOFF;
1213                         break;
1214                 case SP_XONXOFF_OUT:
1215                         data->term.c_iflag |= IXON | IXANY;
1216                         break;
1217                 case SP_XONXOFF_INOUT:
1218                         data->term.c_iflag |= IXON | IXOFF | IXANY;
1219                         break;
1220                 default:
1221                         return SP_ERR_ARG;
1222                 }
1223         }
1224
1225         if (tcsetattr(port->fd, TCSADRAIN, &data->term) < 0)
1226                 return SP_ERR_FAIL;
1227
1228 #ifdef __APPLE__
1229         if (baud_nonstd != B0) {
1230                 if (ioctl(port->fd, IOSSIOSPEED, &baud_nonstd) == -1)
1231                         return SP_ERR_FAIL;
1232                 /* Set baud rates in data->term to correct, but incompatible
1233                  * with tcsetattr() value, same as delivered by tcgetattr(). */
1234                 if (cfsetspeed(&data->term, baud_nonstd) < 0)
1235                         return SP_ERR_FAIL;
1236         }
1237 #elif defined(__linux__)
1238         if (baud_nonstd)
1239                 TRY(set_baudrate(port->fd, config->baudrate));
1240 #ifdef USE_TERMIOX
1241         if (data->termiox_supported)
1242                 TRY(set_flow(port->fd, data->flow));
1243 #endif
1244 #endif
1245
1246 #endif /* !_WIN32 */
1247
1248         return SP_OK;
1249 }
1250
1251 enum sp_return sp_set_config(struct sp_port *port, const struct sp_port_config *config)
1252 {
1253         struct port_data data;
1254         struct sp_port_config prev_config;
1255
1256         CHECK_PORT();
1257
1258         if (!config)
1259                 return SP_ERR_ARG;
1260
1261         TRY(get_config(port, &data, &prev_config));
1262         TRY(set_config(port, &data, config));
1263
1264         return SP_OK;
1265 }
1266
1267 #define CREATE_SETTER(x, type) int sp_set_##x(struct sp_port *port, type x) { \
1268         struct port_data data; \
1269         struct sp_port_config config; \
1270         CHECK_PORT(); \
1271         TRY(get_config(port, &data, &config)); \
1272         config.x = x; \
1273         TRY(set_config(port, &data, &config)); \
1274         return SP_OK; \
1275 }
1276
1277 CREATE_SETTER(baudrate, int)
1278 CREATE_SETTER(bits, int)
1279 CREATE_SETTER(parity, enum sp_parity)
1280 CREATE_SETTER(stopbits, int)
1281 CREATE_SETTER(rts, enum sp_rts)
1282 CREATE_SETTER(cts, enum sp_cts)
1283 CREATE_SETTER(dtr, enum sp_dtr)
1284 CREATE_SETTER(dsr, enum sp_dsr)
1285 CREATE_SETTER(xon_xoff, enum sp_xonxoff)
1286
1287 enum sp_return sp_set_flowcontrol(struct sp_port *port, enum sp_flowcontrol flowcontrol)
1288 {
1289         struct port_data data;
1290         struct sp_port_config config;
1291
1292         CHECK_PORT();
1293
1294         TRY(get_config(port, &data, &config));
1295
1296         if (flowcontrol == SP_FLOWCONTROL_XONXOFF)
1297                 config.xon_xoff = SP_XONXOFF_INOUT;
1298         else
1299                 config.xon_xoff = SP_XONXOFF_DISABLED;
1300
1301         if (flowcontrol == SP_FLOWCONTROL_RTSCTS) {
1302                 config.rts = SP_RTS_FLOW_CONTROL;
1303                 config.cts = SP_CTS_FLOW_CONTROL;
1304         } else {
1305                 if (config.rts == SP_RTS_FLOW_CONTROL)
1306                         config.rts = SP_RTS_ON;
1307                 config.cts = SP_CTS_IGNORE;
1308         }
1309
1310         if (flowcontrol == SP_FLOWCONTROL_DTRDSR) {
1311                 config.dtr = SP_DTR_FLOW_CONTROL;
1312                 config.dsr = SP_DSR_FLOW_CONTROL;
1313         } else {
1314                 if (config.dtr == SP_DTR_FLOW_CONTROL)
1315                         config.dtr = SP_DTR_ON;
1316                 config.dsr = SP_DSR_IGNORE;
1317         }
1318
1319         TRY(set_config(port, &data, &config));
1320
1321         return SP_OK;
1322 }
1323
1324 enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signals)
1325 {
1326         CHECK_PORT();
1327
1328         if (!signals)
1329                 return SP_ERR_ARG;
1330
1331         *signals = 0;
1332 #ifdef _WIN32
1333         DWORD bits;
1334         if (GetCommModemStatus(port->hdl, &bits) == 0)
1335                 return SP_ERR_FAIL;
1336         if (bits & MS_CTS_ON)
1337                 *signals |= SP_SIG_CTS;
1338         if (bits & MS_DSR_ON)
1339                 *signals |= SP_SIG_DSR;
1340         if (bits & MS_RING_ON)
1341                 *signals |= SP_SIG_DCD;
1342         if (bits & MS_RLSD_ON)
1343                 *signals |= SP_SIG_RI;
1344 #else
1345         int bits;
1346         if (ioctl(port->fd, TIOCMGET, &bits) < 0)
1347                 return SP_ERR_FAIL;
1348         if (bits & TIOCM_CTS)
1349                 *signals |= SP_SIG_CTS;
1350         if (bits & TIOCM_DSR)
1351                 *signals |= SP_SIG_DSR;
1352         if (bits & TIOCM_CAR)
1353                 *signals |= SP_SIG_DCD;
1354         if (bits & TIOCM_RNG)
1355                 *signals |= SP_SIG_RI;
1356 #endif
1357         return SP_OK;
1358 }
1359
1360 enum sp_return sp_start_break(struct sp_port *port)
1361 {
1362         CHECK_PORT();
1363 #ifdef _WIN32
1364         if (SetCommBreak(port->hdl) == 0)
1365                 return SP_ERR_FAIL;
1366 #else
1367         if (ioctl(port->fd, TIOCSBRK, 1) < 0)
1368                 return SP_ERR_FAIL;
1369 #endif
1370
1371         return SP_OK;
1372 }
1373
1374 enum sp_return sp_end_break(struct sp_port *port)
1375 {
1376         CHECK_PORT();
1377 #ifdef _WIN32
1378         if (ClearCommBreak(port->hdl) == 0)
1379                 return SP_ERR_FAIL;
1380 #else
1381         if (ioctl(port->fd, TIOCCBRK, 1) < 0)
1382                 return SP_ERR_FAIL;
1383 #endif
1384
1385         return SP_OK;
1386 }
1387
1388 int sp_last_error_code(void)
1389 {
1390 #ifdef _WIN32
1391         return GetLastError();
1392 #else
1393         return errno;
1394 #endif
1395 }
1396
1397 char *sp_last_error_message(void)
1398 {
1399 #ifdef _WIN32
1400         LPVOID message;
1401         DWORD error = GetLastError();
1402
1403         FormatMessage(
1404                 FORMAT_MESSAGE_ALLOCATE_BUFFER |
1405                 FORMAT_MESSAGE_FROM_SYSTEM |
1406                 FORMAT_MESSAGE_IGNORE_INSERTS,
1407                 NULL,
1408                 error,
1409                 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
1410                 (LPTSTR) &message,
1411                 0, NULL );
1412
1413         return message;
1414 #else
1415         return strerror(errno);
1416 #endif
1417 }
1418
1419 void sp_free_error_message(char *message)
1420 {
1421 #ifdef _WIN32
1422         LocalFree(message);
1423 #else
1424         (void)message;
1425 #endif
1426 }