if (!portname)
RETURN_ERROR(SP_ERR_ARG, "Null port name");
+ DEBUG("Building structure for port %s", portname);
+
if (!(port = malloc(sizeof(struct sp_port))))
RETURN_ERROR(SP_ERR_MEM, "Port structure malloc failed");
if (!port->name)
RETURN_ERROR(SP_ERR_ARG, "Null port name");
+ DEBUG("Copying port structure");
+
RETURN_VALUE("%p", sp_get_port_by_name(port->name, copy_ptr));
}
RETURN();
}
+ DEBUG("Freeing port structure");
+
if (port->name)
free(port->name);
TRACE("%p", list_ptr);
+ DEBUG("Enumerating ports");
+
if (!(list = malloc(sizeof(struct sp_port **))))
RETURN_ERROR(SP_ERR_MEM, "Port list malloc failed");
char *name;
int name_len;
+ DEBUG("Opening registry key");
if (RegOpenKeyEx(HKEY_LOCAL_MACHINE, _T("HARDWARE\\DEVICEMAP\\SERIALCOMM"),
0, KEY_QUERY_VALUE, &key) != ERROR_SUCCESS) {
SET_FAIL(ret, "RegOpenKeyEx() failed");
goto out_done;
}
+ DEBUG("Querying registry key value and data sizes");
if (RegQueryInfoKey(key, NULL, NULL, NULL, NULL, NULL, NULL, NULL,
&max_value_len, &max_data_size, NULL, NULL) != ERROR_SUCCESS) {
SET_FAIL(ret, "RegQueryInfoKey() failed");
SET_ERROR(ret, SP_ERR_MEM, "registry data malloc failed");
goto out_free_value;
}
+ DEBUG("Iterating over values");
while (
value_len = max_value_len + 1,
data_size = max_data_size,
CFTypeRef cf_path;
Boolean result;
+ DEBUG("Getting IOKit master port");
if (IOMasterPort(MACH_PORT_NULL, &master) != KERN_SUCCESS) {
SET_FAIL(ret, "IOMasterPort() failed");
goto out_done;
}
+ DEBUG("Creating matching dictionary");
if (!(classes = IOServiceMatching(kIOSerialBSDServiceValue))) {
SET_FAIL(ret, "IOServiceMatching() failed");
goto out_done;
CFDictionarySetValue(classes,
CFSTR(kIOSerialBSDTypeKey), CFSTR(kIOSerialBSDAllTypes));
+ DEBUG("Getting matching services");
if (IOServiceGetMatchingServices(master, classes, &iter) != KERN_SUCCESS) {
SET_FAIL(ret, "IOServiceGetMatchingServices() failed");
goto out_done;
goto out_release;
}
+ DEBUG("Iterating over results");
while ((port = IOIteratorNext(iter))) {
cf_path = IORegistryEntryCreateCFProperty(port,
CFSTR(kIOCalloutDeviceKey), kCFAllocatorDefault, 0);
int fd, ioctl_result;
struct serial_struct serial_info;
+ DEBUG("Enumerating tty devices");
ud = udev_new();
ud_enumerate = udev_enumerate_new(ud);
udev_enumerate_add_match_subsystem(ud_enumerate, "tty");
udev_enumerate_scan_devices(ud_enumerate);
ud_list = udev_enumerate_get_list_entry(ud_enumerate);
+ DEBUG("Iterating over results");
udev_list_entry_foreach(ud_entry, ud_list) {
path = udev_list_entry_get_name(ud_entry);
+ DEBUG("Found device %s", path);
ud_dev = udev_device_new_from_syspath(ud, path);
/* If there is no parent device, this is a virtual tty. */
ud_parent = udev_device_get_parent(ud_dev);
if (ud_parent == NULL) {
+ DEBUG("No parent device, assuming virtual tty");
udev_device_unref(ud_dev);
continue;
}
* is to try to open them and make an ioctl call. */
driver = udev_device_get_driver(ud_parent);
if (driver && !strcmp(driver, "serial8250")) {
- if ((fd = open(name, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0)
+ DEBUG("serial8250 device, attempting to open");
+ if ((fd = open(name, O_RDWR | O_NONBLOCK | O_NOCTTY)) < 0) {
+ DEBUG("open failed, skipping");
goto skip;
+ }
ioctl_result = ioctl(fd, TIOCGSERIAL, &serial_info);
close(fd);
- if (ioctl_result != 0)
+ if (ioctl_result != 0) {
+ DEBUG("ioctl failed, skipping");
goto skip;
- if (serial_info.type == PORT_UNKNOWN)
+ }
+ if (serial_info.type == PORT_UNKNOWN) {
+ DEBUG("port type is unknown, skipping");
goto skip;
+ }
}
DEBUG("Found port %s", name);
list = list_append(list, name);
TRACE("%p", list);
+ DEBUG("Freeing port list");
+
for (i = 0; list[i]; i++)
sp_free_port(list[i]);
free(list);
if (!port)
RETURN_ERROR(SP_ERR_ARG, "Null port");
+ DEBUG("Opening port %s", port->name);
+
#ifdef _WIN32
DWORD desired_access = 0, flags_and_attributes = 0;
char *escaped_port_name;
CHECK_PORT();
+ DEBUG("Closing port %s", port->name);
+
#ifdef _WIN32
/* Returns non-zero upon success, 0 upon failure. */
if (CloseHandle(port->hdl) == 0)
CHECK_PORT();
+ const char *buffer_names[] = {"input", "output", "both"};
+
+ DEBUG("Flushing %s buffers on port %s", buffer_names[buffers], port->name);
+
#ifdef _WIN32
DWORD flags = 0;
if (buffers & SP_BUF_INPUT)
CHECK_PORT();
+ DEBUG("Draining port %s", port->name);
+
#ifdef _WIN32
/* Returns non-zero upon success, 0 upon failure. */
if (FlushFileBuffers(port->hdl) == 0)
if (!buf)
RETURN_ERROR(SP_ERR_ARG, "Null buffer");
+ DEBUG("Writing up to %d bytes to port %s", count, port->name);
+
#ifdef _WIN32
DWORD written = 0;
if (!buf)
RETURN_ERROR(SP_ERR_ARG, "Null buffer");
+ DEBUG("Reading up to %d bytes from port %s", count, port->name);
+
#ifdef _WIN32
DWORD bytes_read = 0;
TRACE("%d, %p", fd, baudrate);
+ DEBUG("Getting baud rate");
+
if (!(data = malloc(get_termios_size())))
RETURN_ERROR(SP_ERR_MEM, "termios malloc failed");
TRACE("%d, %d", fd, baudrate);
+ DEBUG("Getting baud rate");
+
if (!(data = malloc(get_termios_size())))
RETURN_ERROR(SP_ERR_MEM, "termios malloc failed");
RETURN_FAIL("getting termios failed");
}
+ DEBUG("Setting baud rate");
+
set_termios_speed(data, baudrate);
if (ioctl(fd, get_termios_set_ioctl(), data) < 0) {
TRACE("%d, %p", fd, flow);
+ DEBUG("Getting advanced flow control");
+
if (!(data = malloc(get_termiox_size())))
RETURN_ERROR(SP_ERR_MEM, "termiox malloc failed");
TRACE("%d, %d", fd, flow);
+ DEBUG("Getting advanced flow control");
+
if (!(data = malloc(get_termiox_size())))
RETURN_ERROR(SP_ERR_MEM, "termiox malloc failed");
RETURN_FAIL("getting termiox failed");
}
+ DEBUG("Setting advanced flow control");
+
set_termiox_flow(data, flow);
if (ioctl(fd, TCSETX, data) < 0) {
TRACE("%p, %p, %p", port, data, config);
+ DEBUG("Getting configuration for port %s", port->name);
+
#ifdef _WIN32
if (!GetCommState(port->hdl, &data->dcb))
RETURN_FAIL("GetCommState() failed");
TRACE("%p, %p, %p", port, data, config);
+ DEBUG("Setting configuration for port %s", port->name);
+
#ifdef _WIN32
if (config->baudrate >= 0) {
for (i = 0; i < NUM_STD_BAUDRATES; i++) {
if (!signals)
RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
+ DEBUG("Getting control signals for port %s", port->name);
+
*signals = 0;
#ifdef _WIN32
DWORD bits;