2014-06-11 18:10:29 +04:00
|
|
|
/*
|
|
|
|
* This file is part of the libserialport project.
|
|
|
|
*
|
2015-05-31 15:07:20 +03:00
|
|
|
* Copyright (C) 2013 Martin Ling <martin-libserialport@earth.li>
|
2014-06-11 18:10:29 +04:00
|
|
|
* Copyright (C) 2014 Aurelien Jacobs <aurel@gnuage.org>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-09-13 21:04:31 +03:00
|
|
|
#include <config.h>
|
2014-06-11 18:10:29 +04:00
|
|
|
#include "libserialport.h"
|
|
|
|
#include "libserialport_internal.h"
|
|
|
|
|
2017-10-15 20:28:05 +03:00
|
|
|
/*
|
|
|
|
* The 'e' modifier for O_CLOEXEC is glibc >= 2.7 only, hence not
|
|
|
|
* portable, so provide an own wrapper for this functionality.
|
|
|
|
*/
|
|
|
|
static FILE *fopen_cloexec_rdonly(const char *pathname)
|
|
|
|
{
|
|
|
|
int fd;
|
|
|
|
if ((fd = open(pathname, O_RDONLY | O_CLOEXEC)) < 0)
|
|
|
|
return NULL;
|
|
|
|
return fdopen(fd, "r");
|
|
|
|
}
|
|
|
|
|
2014-06-16 02:40:37 +04:00
|
|
|
SP_PRIV enum sp_return get_port_details(struct sp_port *port)
|
2014-06-11 18:10:29 +04:00
|
|
|
{
|
2015-03-25 22:28:48 +03:00
|
|
|
/*
|
|
|
|
* Description limited to 127 char, anything longer
|
|
|
|
* would not be user friendly anyway.
|
|
|
|
*/
|
2014-06-11 18:10:29 +04:00
|
|
|
char description[128];
|
2014-08-24 17:08:00 +04:00
|
|
|
int bus, address;
|
|
|
|
unsigned int vid, pid;
|
2014-06-11 18:10:29 +04:00
|
|
|
char manufacturer[128], product[128], serial[128];
|
|
|
|
char baddr[32];
|
|
|
|
const char dir_name[] = "/sys/class/tty/%s/device/%s%s";
|
2019-12-31 18:50:55 +03:00
|
|
|
char sub_dir[32] = "", link_name[PATH_MAX], file_name[PATH_MAX];
|
2014-06-11 18:10:29 +04:00
|
|
|
char *ptr, *dev = port->name + 5;
|
|
|
|
FILE *file;
|
|
|
|
int i, count;
|
2015-05-20 15:51:47 +03:00
|
|
|
struct stat statbuf;
|
2014-06-11 18:10:29 +04:00
|
|
|
|
|
|
|
if (strncmp(port->name, "/dev/", 5))
|
2015-03-25 22:28:48 +03:00
|
|
|
RETURN_ERROR(SP_ERR_ARG, "Device name not recognized");
|
2014-06-11 18:10:29 +04:00
|
|
|
|
2019-12-31 18:50:55 +03:00
|
|
|
snprintf(link_name, sizeof(link_name), "/sys/class/tty/%s", dev);
|
|
|
|
if (lstat(link_name, &statbuf) == -1)
|
2015-05-20 15:51:47 +03:00
|
|
|
RETURN_ERROR(SP_ERR_ARG, "Device not found");
|
|
|
|
if (!S_ISLNK(statbuf.st_mode))
|
2019-12-31 18:50:55 +03:00
|
|
|
snprintf(link_name, sizeof(link_name), "/sys/class/tty/%s/device", dev);
|
|
|
|
count = readlink(link_name, file_name, sizeof(file_name));
|
2015-03-25 22:28:48 +03:00
|
|
|
if (count <= 0 || count >= (int)(sizeof(file_name) - 1))
|
|
|
|
RETURN_ERROR(SP_ERR_ARG, "Device not found");
|
2014-06-11 18:10:29 +04:00
|
|
|
file_name[count] = 0;
|
|
|
|
if (strstr(file_name, "bluetooth"))
|
|
|
|
port->transport = SP_TRANSPORT_BLUETOOTH;
|
|
|
|
else if (strstr(file_name, "usb"))
|
|
|
|
port->transport = SP_TRANSPORT_USB;
|
|
|
|
|
|
|
|
if (port->transport == SP_TRANSPORT_USB) {
|
2015-03-25 22:28:48 +03:00
|
|
|
for (i = 0; i < 5; i++) {
|
2014-06-11 18:10:29 +04:00
|
|
|
strcat(sub_dir, "../");
|
|
|
|
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, sub_dir, "busnum");
|
2017-10-15 20:28:05 +03:00
|
|
|
if (!(file = fopen_cloexec_rdonly(file_name)))
|
2014-06-11 18:10:29 +04:00
|
|
|
continue;
|
|
|
|
count = fscanf(file, "%d", &bus);
|
|
|
|
fclose(file);
|
|
|
|
if (count != 1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, sub_dir, "devnum");
|
2017-10-15 20:28:05 +03:00
|
|
|
if (!(file = fopen_cloexec_rdonly(file_name)))
|
2014-06-11 18:10:29 +04:00
|
|
|
continue;
|
|
|
|
count = fscanf(file, "%d", &address);
|
|
|
|
fclose(file);
|
|
|
|
if (count != 1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, sub_dir, "idVendor");
|
2017-10-15 20:28:05 +03:00
|
|
|
if (!(file = fopen_cloexec_rdonly(file_name)))
|
2014-06-11 18:10:29 +04:00
|
|
|
continue;
|
|
|
|
count = fscanf(file, "%4x", &vid);
|
|
|
|
fclose(file);
|
|
|
|
if (count != 1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, sub_dir, "idProduct");
|
2017-10-15 20:28:05 +03:00
|
|
|
if (!(file = fopen_cloexec_rdonly(file_name)))
|
2014-06-11 18:10:29 +04:00
|
|
|
continue;
|
|
|
|
count = fscanf(file, "%4x", &pid);
|
|
|
|
fclose(file);
|
|
|
|
if (count != 1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
port->usb_bus = bus;
|
|
|
|
port->usb_address = address;
|
|
|
|
port->usb_vid = vid;
|
|
|
|
port->usb_pid = pid;
|
|
|
|
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, sub_dir, "product");
|
2017-10-15 20:28:05 +03:00
|
|
|
if ((file = fopen_cloexec_rdonly(file_name))) {
|
2014-06-11 18:10:29 +04:00
|
|
|
if ((ptr = fgets(description, sizeof(description), file))) {
|
|
|
|
ptr = description + strlen(description) - 1;
|
|
|
|
if (ptr >= description && *ptr == '\n')
|
|
|
|
*ptr = 0;
|
|
|
|
port->description = strdup(description);
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
if (!file || !ptr)
|
|
|
|
port->description = strdup(dev);
|
|
|
|
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, sub_dir, "manufacturer");
|
2017-10-15 20:28:05 +03:00
|
|
|
if ((file = fopen_cloexec_rdonly(file_name))) {
|
2014-06-11 18:10:29 +04:00
|
|
|
if ((ptr = fgets(manufacturer, sizeof(manufacturer), file))) {
|
|
|
|
ptr = manufacturer + strlen(manufacturer) - 1;
|
|
|
|
if (ptr >= manufacturer && *ptr == '\n')
|
|
|
|
*ptr = 0;
|
|
|
|
port->usb_manufacturer = strdup(manufacturer);
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, sub_dir, "product");
|
2017-10-15 20:28:05 +03:00
|
|
|
if ((file = fopen_cloexec_rdonly(file_name))) {
|
2014-06-11 18:10:29 +04:00
|
|
|
if ((ptr = fgets(product, sizeof(product), file))) {
|
|
|
|
ptr = product + strlen(product) - 1;
|
|
|
|
if (ptr >= product && *ptr == '\n')
|
|
|
|
*ptr = 0;
|
|
|
|
port->usb_product = strdup(product);
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, sub_dir, "serial");
|
2017-10-15 20:28:05 +03:00
|
|
|
if ((file = fopen_cloexec_rdonly(file_name))) {
|
2014-06-11 18:10:29 +04:00
|
|
|
if ((ptr = fgets(serial, sizeof(serial), file))) {
|
|
|
|
ptr = serial + strlen(serial) - 1;
|
|
|
|
if (ptr >= serial && *ptr == '\n')
|
|
|
|
*ptr = 0;
|
|
|
|
port->usb_serial = strdup(serial);
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
|
2015-02-17 01:07:00 +03:00
|
|
|
/* If present, add serial to description for better identification. */
|
|
|
|
if (port->usb_serial && strlen(port->usb_serial)) {
|
2015-02-20 20:57:08 +03:00
|
|
|
snprintf(description, sizeof(description),
|
2015-02-17 01:07:00 +03:00
|
|
|
"%s - %s", port->description, port->usb_serial);
|
|
|
|
if (port->description)
|
|
|
|
free(port->description);
|
|
|
|
port->description = strdup(description);
|
|
|
|
}
|
|
|
|
|
2014-06-11 18:10:29 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
port->description = strdup(dev);
|
|
|
|
|
|
|
|
if (port->transport == SP_TRANSPORT_BLUETOOTH) {
|
|
|
|
snprintf(file_name, sizeof(file_name), dir_name, dev, "", "address");
|
2017-10-15 20:28:05 +03:00
|
|
|
if ((file = fopen_cloexec_rdonly(file_name))) {
|
2014-06-11 18:10:29 +04:00
|
|
|
if ((ptr = fgets(baddr, sizeof(baddr), file))) {
|
|
|
|
ptr = baddr + strlen(baddr) - 1;
|
|
|
|
if (ptr >= baddr && *ptr == '\n')
|
|
|
|
*ptr = 0;
|
|
|
|
port->bluetooth_address = strdup(baddr);
|
|
|
|
}
|
|
|
|
fclose(file);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RETURN_OK();
|
|
|
|
}
|
2014-06-14 01:52:16 +04:00
|
|
|
|
2014-06-16 02:40:37 +04:00
|
|
|
SP_PRIV enum sp_return list_ports(struct sp_port ***list)
|
2014-06-14 01:52:16 +04:00
|
|
|
{
|
|
|
|
char name[PATH_MAX], target[PATH_MAX];
|
2016-10-15 00:50:08 +03:00
|
|
|
struct dirent *entry;
|
2015-08-26 22:42:32 +03:00
|
|
|
#ifdef HAVE_STRUCT_SERIAL_STRUCT
|
2014-06-14 01:52:16 +04:00
|
|
|
struct serial_struct serial_info;
|
2014-07-04 02:04:31 +04:00
|
|
|
int ioctl_result;
|
|
|
|
#endif
|
2016-10-15 00:50:08 +03:00
|
|
|
char buf[sizeof(entry->d_name) + 23];
|
2014-07-04 02:04:31 +04:00
|
|
|
int len, fd;
|
2014-06-14 01:52:16 +04:00
|
|
|
DIR *dir;
|
|
|
|
int ret = SP_OK;
|
2015-05-20 15:51:47 +03:00
|
|
|
struct stat statbuf;
|
2014-06-14 01:52:16 +04:00
|
|
|
|
|
|
|
DEBUG("Enumerating tty devices");
|
|
|
|
if (!(dir = opendir("/sys/class/tty")))
|
2015-03-25 22:28:48 +03:00
|
|
|
RETURN_FAIL("Could not open /sys/class/tty");
|
2014-06-14 01:52:16 +04:00
|
|
|
|
|
|
|
DEBUG("Iterating over results");
|
2016-10-15 00:50:08 +03:00
|
|
|
while ((entry = readdir(dir))) {
|
|
|
|
snprintf(buf, sizeof(buf), "/sys/class/tty/%s", entry->d_name);
|
2015-05-20 15:51:47 +03:00
|
|
|
if (lstat(buf, &statbuf) == -1)
|
|
|
|
continue;
|
|
|
|
if (!S_ISLNK(statbuf.st_mode))
|
2016-10-15 00:50:08 +03:00
|
|
|
snprintf(buf, sizeof(buf), "/sys/class/tty/%s/device", entry->d_name);
|
2014-07-04 13:55:04 +04:00
|
|
|
len = readlink(buf, target, sizeof(target));
|
2015-03-25 22:28:48 +03:00
|
|
|
if (len <= 0 || len >= (int)(sizeof(target) - 1))
|
2014-06-14 01:52:16 +04:00
|
|
|
continue;
|
|
|
|
target[len] = 0;
|
|
|
|
if (strstr(target, "virtual"))
|
|
|
|
continue;
|
2016-10-15 00:50:08 +03:00
|
|
|
snprintf(name, sizeof(name), "/dev/%s", entry->d_name);
|
2014-08-24 16:59:32 +04:00
|
|
|
DEBUG_FMT("Found device %s", name);
|
2014-06-14 01:52:16 +04:00
|
|
|
if (strstr(target, "serial8250")) {
|
2015-03-25 22:28:48 +03:00
|
|
|
/*
|
|
|
|
* The serial8250 driver has a hardcoded number of ports.
|
2014-06-14 01:52:16 +04:00
|
|
|
* The only way to tell which actually exist on a given system
|
2015-03-25 22:28:48 +03:00
|
|
|
* is to try to open them and make an ioctl call.
|
|
|
|
*/
|
2014-06-14 01:52:16 +04:00
|
|
|
DEBUG("serial8250 device, attempting to open");
|
2017-10-15 20:28:05 +03:00
|
|
|
if ((fd = open(name, O_RDWR | O_NONBLOCK | O_NOCTTY | O_CLOEXEC)) < 0) {
|
2015-03-25 22:28:48 +03:00
|
|
|
DEBUG("Open failed, skipping");
|
2014-06-14 01:52:16 +04:00
|
|
|
continue;
|
|
|
|
}
|
2015-08-26 22:42:32 +03:00
|
|
|
#ifdef HAVE_STRUCT_SERIAL_STRUCT
|
2014-06-14 01:52:16 +04:00
|
|
|
ioctl_result = ioctl(fd, TIOCGSERIAL, &serial_info);
|
2014-07-04 02:04:31 +04:00
|
|
|
#endif
|
2014-06-14 01:52:16 +04:00
|
|
|
close(fd);
|
2015-08-26 22:42:32 +03:00
|
|
|
#ifdef HAVE_STRUCT_SERIAL_STRUCT
|
2014-06-14 01:52:16 +04:00
|
|
|
if (ioctl_result != 0) {
|
|
|
|
DEBUG("ioctl failed, skipping");
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (serial_info.type == PORT_UNKNOWN) {
|
2015-03-25 22:28:48 +03:00
|
|
|
DEBUG("Port type is unknown, skipping");
|
2014-06-14 01:52:16 +04:00
|
|
|
continue;
|
|
|
|
}
|
2014-07-04 02:04:31 +04:00
|
|
|
#endif
|
2014-06-14 01:52:16 +04:00
|
|
|
}
|
2014-08-24 16:59:32 +04:00
|
|
|
DEBUG_FMT("Found port %s", name);
|
2014-06-14 01:52:16 +04:00
|
|
|
*list = list_append(*list, name);
|
2016-02-20 00:25:00 +03:00
|
|
|
if (!*list) {
|
2015-03-25 22:28:48 +03:00
|
|
|
SET_ERROR(ret, SP_ERR_MEM, "List append failed");
|
2014-06-14 01:52:16 +04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
closedir(dir);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|