]> sigrok.org Git - libsigrok.git/blob - hardware/common/serial.c
220533a41b753f9d6844801574963b1d95f4f657
[libsigrok.git] / hardware / common / serial.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5  * Copyright (C) 2010-2012 Uwe Hermann <uwe@hermann-uwe.de>
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21 #include <string.h>
22 #include <sys/types.h>
23 #include <sys/stat.h>
24 #include <fcntl.h>
25 #include <unistd.h>
26 #ifdef _WIN32
27 #include <windows.h>
28 #else
29 #include <glob.h>
30 #include <termios.h>
31 #endif
32 #include <stdlib.h>
33 #include <errno.h>
34 #include <glib.h>
35 #include "libsigrok.h"
36 #include "libsigrok-internal.h"
37
38 /* Message logging helpers with driver-specific prefix string. */
39 #define DRIVER_LOG_DOMAIN "serial: "
40 #define sr_log(l, s, args...) sr_log(l, DRIVER_LOG_DOMAIN s, ## args)
41 #define sr_spew(s, args...) sr_spew(DRIVER_LOG_DOMAIN s, ## args)
42 #define sr_dbg(s, args...) sr_dbg(DRIVER_LOG_DOMAIN s, ## args)
43 #define sr_info(s, args...) sr_info(DRIVER_LOG_DOMAIN s, ## args)
44 #define sr_warn(s, args...) sr_warn(DRIVER_LOG_DOMAIN s, ## args)
45 #define sr_err(s, args...) sr_err(DRIVER_LOG_DOMAIN s, ## args)
46
47 // FIXME: Must be moved, or rather passed as function argument.
48 #ifdef _WIN32
49 static HANDLE hdl;
50 #endif
51
52 static const char *serial_port_glob[] = {
53         /* Linux */
54         "/dev/ttyS*",
55         "/dev/ttyUSB*",
56         "/dev/ttyACM*",
57         /* MacOS X */
58         "/dev/ttys*",
59         "/dev/tty.USB-*",
60         "/dev/tty.Modem-*",
61         NULL,
62 };
63
64 SR_PRIV GSList *list_serial_ports(void)
65 {
66         GSList *ports;
67
68         sr_dbg("Getting list of serial ports on the system.");
69
70 #ifdef _WIN32
71         /* TODO */
72         ports = NULL;
73         ports = g_slist_append(ports, g_strdup("COM1"));
74 #else
75         glob_t g;
76         unsigned int i, j;
77
78         ports = NULL;
79         for (i = 0; serial_port_glob[i]; i++) {
80                 if (glob(serial_port_glob[i], 0, NULL, &g))
81                         continue;
82                 for (j = 0; j < g.gl_pathc; j++) {
83                         ports = g_slist_append(ports, g_strdup(g.gl_pathv[j]));
84                         sr_dbg("Found serial port '%s'.", g.gl_pathv[j]);
85                 }
86                 globfree(&g);
87         }
88 #endif
89
90         return ports;
91 }
92
93 /**
94  * Open the specified serial port.
95  *
96  * @param pathname OS-specific serial port specification. Examples:
97  *                 "/dev/ttyUSB0", "/dev/ttyACM1", "/dev/tty.Modem-0", "COM1".
98  * @param flags Flags to use when opening the serial port.
99  *
100  * @return 0 upon success, -1 upon failure.
101  */
102 SR_PRIV int serial_open(const char *pathname, int flags)
103 {
104         /* TODO: Abstract 'flags', currently they're OS-specific! */
105
106         sr_dbg("Opening serial port '%s' (flags = %d).", pathname, flags);
107
108 #ifdef _WIN32
109         pathname = "COM1"; /* FIXME: Don't hardcode COM1. */
110
111         hdl = CreateFile(pathname, GENERIC_READ | GENERIC_WRITE, 0, 0,
112                          OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, 0);
113         if (hdl == INVALID_HANDLE_VALUE) {
114                 sr_err("Error opening serial port '%s'.", pathname);
115                 return -1;
116         }
117         return 0;
118 #else
119         int fd;
120
121         if ((fd = open(pathname, flags)) < 0) {
122                 /*
123                  * Should be sr_err(), but since some drivers try to open all
124                  * ports on a system and see if they succeed, this would
125                  * yield ugly output for e.g. "sigrok-cli -D".
126                  */
127                 sr_dbg("Error opening serial port '%s': %s.", pathname,
128                        strerror(errno));
129         } else {
130                 sr_dbg("Opened serial port '%s' as FD %d.", pathname, fd);
131         }
132
133         return fd;
134 #endif
135 }
136
137 /**
138  * Close the specified serial port.
139  *
140  * @param fd File descriptor of the serial port.
141  *
142  * @return 0 upon success, -1 upon failure.
143  */
144 SR_PRIV int serial_close(int fd)
145 {
146         sr_dbg("FD %d: Closing serial port.", fd);
147
148 #ifdef _WIN32
149         /* Returns non-zero upon success, 0 upon failure. */
150         return (CloseHandle(hdl) == 0) ? -1 : 0;
151 #else
152         int ret;
153
154         /* Returns 0 upon success, -1 upon failure. */
155         if ((ret = close(fd)) < 0) {
156                 sr_dbg("FD %d: Error closing serial port: %s.",
157                        fd, strerror(errno));
158         }
159
160         return ret;
161 #endif
162 }
163
164 /**
165  * Flush serial port buffers (if any).
166  *
167  * @param fd File descriptor of the serial port.
168  *
169  * @return 0 upon success, -1 upon failure.
170  */
171 SR_PRIV int serial_flush(int fd)
172 {
173         sr_dbg("FD %d: Flushing serial port.", fd);
174
175 #ifdef _WIN32
176         /* Returns non-zero upon success, 0 upon failure. */
177         return (PurgeComm(hdl, PURGE_RXCLEAR | PURGE_TXCLEAR) == 0) ? -1 : 0;
178 #else
179         int ret;
180
181         /* Returns 0 upon success, -1 upon failure. */
182         if ((ret = tcflush(fd, TCIOFLUSH)) < 0)
183                 sr_err("Error flushing serial port: %s.", strerror(errno));
184
185         return ret;
186 #endif
187 }
188
189 /**
190  * Write a number of bytes to the specified serial port.
191  *
192  * @param fd File descriptor of the serial port.
193  * @param buf Buffer containing the bytes to write.
194  * @param count Number of bytes to write.
195  *
196  * @return The number of bytes written, or -1 upon failure.
197  */
198 SR_PRIV int serial_write(int fd, const void *buf, size_t count)
199 {
200 #ifdef _WIN32
201         DWORD tmp = 0;
202
203         /* FIXME */
204         /* Returns non-zero upon success, 0 upon failure. */
205         WriteFile(hdl, buf, count, &tmp, NULL);
206 #else
207         ssize_t ret;
208
209         /* Returns the number of bytes written, or -1 upon failure. */
210         ret = write(fd, buf, count);
211         if (ret < 0)
212                 sr_err("FD %d: Write error: %s.", fd, strerror(errno));
213         else
214                 sr_spew("FD %d: Wrote %d/%d bytes.", fd, ret, count);
215
216         return ret;
217 #endif
218 }
219
220 /**
221  * Read a number of bytes from the specified serial port.
222  *
223  * @param fd File descriptor of the serial port.
224  * @param buf Buffer where to store the bytes that are read.
225  * @param count The number of bytes to read.
226  *
227  * @return The number of bytes read, or -1 upon failure.
228  */
229 SR_PRIV int serial_read(int fd, void *buf, size_t count)
230 {
231 #ifdef _WIN32
232         DWORD tmp = 0;
233
234         /* FIXME */
235         /* Returns non-zero upon success, 0 upon failure. */
236         return ReadFile(hdl, buf, count, &tmp, NULL);
237 #else
238         ssize_t ret;
239
240         /* Returns the number of bytes read, or -1 upon failure. */
241         ret = read(fd, buf, count);
242         if (ret < 0) {
243                 /*
244                  * Should be sr_err(), but that would yield lots of
245                  * "Resource temporarily unavailable" messages.
246                  */
247                 sr_spew("FD %d: Read error: %s.", fd, strerror(errno));
248         } else {
249                 sr_spew("FD %d: Read %d/%d bytes.", fd, ret, count);
250         }
251
252         return ret;
253 #endif
254 }
255
256 /**
257  * Create a backup of the current parameters of the specified serial port.
258  *
259  * @param fd File descriptor of the serial port.
260  *
261  * @return Pointer to a struct termios upon success, NULL upon errors.
262  *         It is the caller's responsibility to g_free() the pointer if no
263  *         longer needed.
264  */
265 SR_PRIV void *serial_backup_params(int fd)
266 {
267         sr_dbg("FD %d: Creating serial parameters backup.", fd);
268
269 #ifdef _WIN32
270         /* TODO */
271 #else
272         struct termios *term;
273
274         if (!(term = g_try_malloc(sizeof(struct termios)))) {
275                 sr_err("termios struct malloc failed.");
276                 return NULL;
277         }
278
279         /* Returns 0 upon success, -1 upon failure. */
280         if (tcgetattr(fd, term) < 0) {
281                 sr_err("FD %d: Error getting serial parameters: %s.",
282                        fd, strerror(errno));
283                 g_free(term);
284                 return NULL;
285         }
286
287         return term;
288 #endif
289 }
290
291 /**
292  * Restore serial port settings from a previously created backup.
293  *
294  * @param fd File descriptor of the serial port.
295  * @param backup Pointer to a struct termios which contains the settings
296  *               to restore.
297  *
298  * @return 0 upon success, -1 upon failure.
299  */
300 SR_PRIV int serial_restore_params(int fd, void *backup)
301 {
302         sr_dbg("FD %d: Restoring serial parameters from backup.", fd);
303
304         if (!backup) {
305                 sr_err("FD %d: Cannot restore serial params (NULL).", fd);
306                 return -1;
307         }
308
309 #ifdef _WIN32
310         /* TODO */
311 #else
312         int ret;
313
314         /* Returns 0 upon success, -1 upon failure. */
315         if ((ret = tcsetattr(fd, TCSADRAIN, (struct termios *)backup)) < 0) {
316                 sr_err("FD %d: Error restoring serial parameters: %s.",
317                        fd, strerror(errno));
318         }
319
320         return ret;
321 #endif
322 }
323
324 /**
325  * Set serial parameters for the specified serial port.
326  *
327  * @param baudrate The baudrate to set.
328  * @param bits The number of data bits to use.
329  * @param parity The parity setting to use (0 = none, 1 = even, 2 = odd).
330  * @param stopbits The number of stop bits to use (1 or 2).
331  * @param flowcontrol The flow control settings to use (0 = none, 1 = RTS/CTS,
332  *                    2 = XON/XOFF).
333  *
334  * @return SR_OK upon success, SR_ERR upon failure.
335  */
336 SR_PRIV int serial_set_params(int fd, int baudrate, int bits, int parity,
337                               int stopbits, int flowcontrol)
338 {
339         sr_dbg("FD %d: Setting serial parameters.", fd);
340
341 #ifdef _WIN32
342         DCB dcb;
343
344         if (!GetCommState(hdl, &dcb)) {
345                 /* TODO: Error handling. */
346                 return SR_ERR;
347         }
348
349         switch (baudrate) {
350         /* TODO: Support for higher baud rates. */
351         case 115200:
352                 dcb.BaudRate = CBR_115200;
353                 break;
354         case 57600:
355                 dcb.BaudRate = CBR_57600;
356                 break;
357         case 38400:
358                 dcb.BaudRate = CBR_38400;
359                 break;
360         case 19200:
361                 dcb.BaudRate = CBR_19200;
362                 break;
363         case 9600:
364                 dcb.BaudRate = CBR_9600;
365                 break;
366         case 4800:
367                 dcb.BaudRate = CBR_4800;
368                 break;
369         case 2400:
370                 dcb.BaudRate = CBR_2400;
371                 break;
372         default:
373                 sr_err("Unsupported baudrate: %d.", baudrate);
374                 return SR_ERR;
375         }
376         dcb.ByteSize = bits;
377         dcb.Parity = NOPARITY; /* TODO: Don't hardcode. */
378         dcb.StopBits = ONESTOPBIT; /* TODO: Don't hardcode. */
379
380         if (!SetCommState(hdl, &dcb)) {
381                 /* TODO: Error handling. */
382                 return SR_ERR;
383         }
384 #else
385         struct termios term;
386         speed_t baud;
387
388         sr_dbg("FD %d: Getting terminal settings.", fd);
389         if (tcgetattr(fd, &term) < 0) {
390                 sr_err("tcgetattr() error: %s.", strerror(errno));
391                 return SR_ERR;
392         }
393
394         switch (baudrate) {
395         case 50:
396                 baud = B50;
397                 break;
398         case 75:
399                 baud = B75;
400                 break;
401         case 110:
402                 baud = B110;
403                 break;
404         case 134:
405                 baud = B134;
406                 break;
407         case 150:
408                 baud = B150;
409                 break;
410         case 200:
411                 baud = B200;
412                 break;
413         case 300:
414                 baud = B300;
415                 break;
416         case 600:
417                 baud = B600;
418                 break;
419         case 1200:
420                 baud = B1200;
421                 break;
422         case 1800:
423                 baud = B1800;
424                 break;
425         case 2400:
426                 baud = B2400;
427                 break;
428         case 4800:
429                 baud = B4800;
430                 break;
431         case 9600:
432                 baud = B9600;
433                 break;
434         case 19200:
435                 baud = B19200;
436                 break;
437         case 38400:
438                 baud = B38400;
439                 break;
440         case 57600:
441                 baud = B57600;
442                 break;
443         case 115200:
444                 baud = B115200;
445                 break;
446         case 230400:
447                 baud = B230400;
448                 break;
449 #ifndef __APPLE__
450         case 460800:
451                 baud = B460800;
452                 break;
453 #endif
454         default:
455                 sr_err("Unsupported baudrate: %d.", baudrate);
456                 return SR_ERR;
457         }
458
459         sr_dbg("FD %d: Configuring output baudrate to %d (%d).",
460                 fd, baudrate, baud);
461         if (cfsetospeed(&term, baud) < 0) {
462                 sr_err("cfsetospeed() error: %ѕ.", strerror(errno));
463                 return SR_ERR;
464         }
465
466         sr_dbg("FD %d: Configuring input baudrate to %d (%d).",
467                 fd, baudrate, baud);
468         if (cfsetispeed(&term, baud) < 0) {
469                 sr_err("cfsetispeed() error: %ѕ.", strerror(errno));
470                 return SR_ERR;
471         }
472
473         sr_dbg("FD %d: Configuring %d data bits.", fd, bits);
474         term.c_cflag &= ~CSIZE;
475         switch (bits) {
476         case 8:
477                 term.c_cflag |= CS8;
478                 break;
479         case 7:
480                 term.c_cflag |= CS7;
481                 break;
482         default:
483                 sr_err("Unsupported data bits number: %d.", bits);
484                 return SR_ERR;
485         }
486
487         sr_dbg("FD %d: Configuring %d stop bits.", fd, stopbits);
488         term.c_cflag &= ~CSTOPB;
489         switch (stopbits) {
490         case 1:
491                 /* Do nothing, a cleared CSTOPB entry means "1 stop bit". */
492                 break;
493         case 2:
494                 term.c_cflag |= CSTOPB;
495                 break;
496         default:
497                 sr_err("Unsupported stopbits number: %d.", stopbits);
498                 return SR_ERR;
499         }
500
501         term.c_iflag &= ~(IXON | IXOFF);
502         term.c_cflag &= ~CRTSCTS;
503         switch (flowcontrol) {
504         case 0:
505                 /* No flow control. */
506                 sr_dbg("FD %d: Configuring no flow control.", fd);
507                 break;
508         case 1:
509                 sr_dbg("FD %d: Configuring RTS/CTS flow control.", fd);
510                 term.c_cflag |= CRTSCTS;
511                 break;
512         case 2:
513                 sr_dbg("FD %d: Configuring XON/XOFF flow control.", fd);
514                 term.c_iflag |= IXON | IXOFF;
515                 break;
516         default:
517                 sr_err("Unsupported flow control setting: %d.", flowcontrol);
518                 return SR_ERR;
519         }
520
521         term.c_iflag &= ~IGNPAR;
522         term.c_cflag &= ~(PARODD | PARENB);
523         switch (parity) {
524         case SERIAL_PARITY_NONE:
525                 sr_dbg("FD %d: Configuring no parity.", fd);
526                 term.c_iflag |= IGNPAR;
527                 break;
528         case SERIAL_PARITY_EVEN:
529                 sr_dbg("FD %d: Configuring even parity.", fd);
530                 term.c_cflag |= PARENB;
531                 break;
532         case SERIAL_PARITY_ODD:
533                 sr_dbg("FD %d: Configuring odd parity.", fd);
534                 term.c_cflag |= PARENB | PARODD;
535                 break;
536         default:
537                 sr_err("Unsupported parity setting: %d.", parity);
538                 return SR_ERR;
539         }
540
541         /* Do NOT translate carriage return to newline on input. */
542         term.c_iflag &= ~(ICRNL);
543
544         /* Disable canonical mode, and don't echo input characters. */
545         term.c_lflag &= ~(ICANON | ECHO);
546
547         /* Write the configured settings. */
548         if (tcsetattr(fd, TCSADRAIN, &term) < 0) {
549                 sr_err("tcsetattr() error: %ѕ.", strerror(errno));
550                 return SR_ERR;
551         }
552 #endif
553
554         return SR_OK;
555 }
556
557 #define SERIAL_COMM_SPEC "^(\\d+)/([78])([neo])([12])$"
558 SR_PRIV int serial_set_paramstr(int fd, const char *paramstr)
559 {
560         GRegex *reg;
561         GMatchInfo *match;
562         int speed, databits, parity, stopbits;
563         char *mstr;
564
565         speed = databits = parity = stopbits = 0;
566         reg = g_regex_new(SERIAL_COMM_SPEC, 0, 0, NULL);
567         if (g_regex_match(reg, paramstr, 0, &match)) {
568                 if ((mstr = g_match_info_fetch(match, 1)))
569                         speed = strtoul(mstr, NULL, 10);
570                 g_free(mstr);
571                 if ((mstr = g_match_info_fetch(match, 2)))
572                         databits = strtoul(mstr, NULL, 10);
573                 g_free(mstr);
574                 if ((mstr = g_match_info_fetch(match, 3))) {
575                         switch (mstr[0]) {
576                         case 'n':
577                                 parity = SERIAL_PARITY_NONE;
578                                 break;
579                         case 'e':
580                                 parity = SERIAL_PARITY_EVEN;
581                                 break;
582                         case 'o':
583                                 parity = SERIAL_PARITY_ODD;
584                                 break;
585                         }
586                 }
587                 g_free(mstr);
588                 if ((mstr = g_match_info_fetch(match, 4)))
589                         stopbits = strtoul(mstr, NULL, 10);
590                 g_free(mstr);
591         }
592         g_match_info_unref(match);
593         g_regex_unref(reg);
594
595         if (speed)
596                 return serial_set_params(fd, speed, databits, parity, stopbits, 0);
597         else
598                 return SR_ERR_ARG;
599 }
600
601 SR_PRIV int serial_readline(int fd, char **buf, int *buflen,
602                             gint64 timeout_ms)
603 {
604         gint64 start;
605         int maxlen, len;
606
607         timeout_ms *= 1000;
608         start = g_get_monotonic_time();
609
610         maxlen = *buflen;
611         *buflen = len = 0;
612         while(1) {
613                 len = maxlen - *buflen - 1;
614                 if (len < 1)
615                         break;
616                 len = serial_read(fd, *buf + *buflen, 1);
617                 if (len > 0) {
618                         *buflen += len;
619                         *(*buf + *buflen) = '\0';
620                         if (*buflen > 0 && (*(*buf + *buflen - 1) == '\r'
621                                         || *(*buf + *buflen - 1) == '\n')) {
622                                 /* Strip CR/LF and terminate. */
623                                 *(*buf + --*buflen) = '\0';
624                                 break;
625                         }
626                 }
627                 if (g_get_monotonic_time() - start > timeout_ms)
628                         /* Timeout */
629                         break;
630                 g_usleep(2000);
631         }
632         if (*buflen)
633                 sr_dbg("Received %d: '%s'.", *buflen, *buf);
634
635         return SR_OK;
636 }