nut-debian/drivers/richcomm_usb.c

728 lines
20 KiB
C
Raw Permalink Normal View History

2010-03-26 01:20:59 +02:00
/*
* richcomm_usb.c - driver for UPS with Richcomm dry-contact to USB
* solution, such as 'Sweex Manageable UPS 1000VA'
*
* May also work on 'Kebo UPS-650D', not tested as of 05/23/2007
*
* Copyright (C) 2007 Peter van Valderen <p.v.valderen@probu.nl>
* Dirk Teurlings <dirk@upexia.nl>
2022-07-10 10:23:45 +03:00
* Copyright (C) 2016 Eaton
2010-03-26 01:20:59 +02:00
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 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 General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include "main.h"
#include "usb-common.h"
2022-07-10 10:23:45 +03:00
#include "nut_stdint.h"
2010-03-26 01:20:59 +02:00
/* driver version */
#define DRIVER_NAME "Richcomm dry-contact to USB driver"
2022-07-10 10:23:45 +03:00
#define DRIVER_VERSION "0.10"
2010-03-26 01:20:59 +02:00
/* driver description structure */
upsdrv_info_t upsdrv_info = {
DRIVER_NAME,
DRIVER_VERSION,
"Peter van Valderen <p.v.valderen@probu.nl>\n"
"Dirk Teurlings <dirk@upexia.nl>",
DRV_EXPERIMENTAL,
{ NULL }
};
#define STATUS_REQUESTTYPE 0x21
#define REPLY_REQUESTTYPE 0x81
#define QUERY_PACKETSIZE 4
#define REPLY_PACKETSIZE 6
#define REQUEST_VALUE 0x09
#define MESSAGE_VALUE 0x200
#define INDEX_VALUE 0
/* limit the amount of spew that goes in the syslog when we lose the UPS (from nut_usb.h) */
#define USB_ERR_LIMIT 10 /* start limiting after 10 in a row */
#define USB_ERR_RATE 10 /* then only print every 10th error */
static usb_device_id_t richcomm_usb_id[] = {
/* Sweex 1000VA */
{ USB_DEVICE(0x0925, 0x1234), NULL },
2022-07-10 10:23:45 +03:00
/* Terminating entry */
{ 0, 0, NULL }
2010-03-26 01:20:59 +02:00
};
static usb_dev_handle *udev = NULL;
static USBDevice_t usbdevice;
static unsigned int comm_failures = 0;
static int device_match_func(USBDevice_t *device, void *privdata)
{
2022-07-10 10:23:45 +03:00
NUT_UNUSED_VARIABLE(privdata);
2013-11-24 17:00:12 +02:00
switch (is_usb_device_supported(richcomm_usb_id, device))
2010-03-26 01:20:59 +02:00
{
case SUPPORTED:
return 1;
case POSSIBLY_SUPPORTED:
case NOT_SUPPORTED:
default:
return 0;
}
}
static USBDeviceMatcher_t device_matcher = {
&device_match_func,
NULL,
NULL
};
2022-07-10 10:23:45 +03:00
#if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP_BESIDEFUNC) && ( (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS_BESIDEFUNC) || (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE_BESIDEFUNC) )
# pragma GCC diagnostic push
#endif
#ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS_BESIDEFUNC
# pragma GCC diagnostic ignored "-Wtype-limits"
#endif
#ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE_BESIDEFUNC
# pragma GCC diagnostic ignored "-Wtautological-constant-out-of-range-compare"
#endif
2010-03-26 01:20:59 +02:00
static int execute_and_retrieve_query(char *query, char *reply)
{
int ret;
ret = usb_control_msg(udev, STATUS_REQUESTTYPE, REQUEST_VALUE,
2022-07-10 10:23:45 +03:00
MESSAGE_VALUE, INDEX_VALUE,
(usb_ctrl_charbuf)query, QUERY_PACKETSIZE, 1000);
2010-03-26 01:20:59 +02:00
if (ret <= 0) {
2022-07-10 10:23:45 +03:00
upsdebugx(3, "send: %s",
ret ? nut_usb_strerror(ret) : "timeout");
2010-03-26 01:20:59 +02:00
return ret;
}
2022-07-10 10:23:45 +03:00
#if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP) && ( (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS) || (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE) )
# pragma GCC diagnostic push
#endif
#ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS
# pragma GCC diagnostic ignored "-Wtype-limits"
#endif
#ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE
# pragma GCC diagnostic ignored "-Wtautological-constant-out-of-range-compare"
#endif
/* Cast up within the signed/unsigned same type */
if ((unsigned int)ret >= SIZE_MAX) {
#if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP) && ( (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS) || (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE) )
# pragma GCC diagnostic pop
#endif
upsdebugx(3, "send: ret=%d exceeds SIZE_MAX", ret);
}
upsdebug_hex(3, "send", query, (size_t)ret);
2010-03-26 01:20:59 +02:00
2022-07-10 10:23:45 +03:00
ret = usb_interrupt_read(udev,
REPLY_REQUESTTYPE,
(usb_ctrl_charbuf)reply, REPLY_PACKETSIZE, 1000);
2010-03-26 01:20:59 +02:00
if (ret <= 0) {
2022-07-10 10:23:45 +03:00
upsdebugx(3, "read: %s",
ret ? nut_usb_strerror(ret) : "timeout");
2010-03-26 01:20:59 +02:00
return ret;
}
2022-07-10 10:23:45 +03:00
#if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP) && ( (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS) || (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE) )
# pragma GCC diagnostic push
#endif
#ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS
# pragma GCC diagnostic ignored "-Wtype-limits"
#endif
#ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE
# pragma GCC diagnostic ignored "-Wtautological-constant-out-of-range-compare"
#endif
/* Cast up within the signed/unsigned same type */
if ((unsigned int)ret >= SIZE_MAX) {
#if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP) && ( (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS) || (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE) )
# pragma GCC diagnostic pop
#endif
upsdebugx(3, "read: ret=%d exceeds SIZE_MAX", ret);
}
upsdebug_hex(3, "read", reply, (size_t)ret);
2010-03-26 01:20:59 +02:00
return ret;
}
2022-07-10 10:23:45 +03:00
#if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP_BESIDEFUNC) && ( (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TYPE_LIMITS_BESIDEFUNC) || (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_TAUTOLOGICAL_CONSTANT_OUT_OF_RANGE_COMPARE_BESIDEFUNC) )
# pragma GCC diagnostic pop
#endif
2010-03-26 01:20:59 +02:00
static int query_ups(char *reply)
{
/*
* This packet is a status request to the UPS
*/
char query[QUERY_PACKETSIZE] = { 0x01, 0x00, 0x00, 0x30 };
return execute_and_retrieve_query(query, reply);
}
static void usb_comm_fail(const char *fmt, ...)
{
int ret;
char why[SMALLBUF];
va_list ap;
/* this means we're probably here because select was interrupted */
if (exit_flag != 0) {
return; /* ignored, since we're about to exit anyway */
}
comm_failures++;
if ((comm_failures == USB_ERR_LIMIT) || ((comm_failures % USB_ERR_RATE) == 0)) {
upslogx(LOG_WARNING, "Warning: excessive comm failures, limiting error reporting");
}
/* once it's past the limit, only log once every USB_ERR_LIMIT calls */
if ((comm_failures > USB_ERR_LIMIT) && ((comm_failures % USB_ERR_LIMIT) != 0)) {
return;
}
/* generic message if the caller hasn't elaborated */
if (!fmt) {
upslogx(LOG_WARNING, "Communications with UPS lost - check cabling");
return;
}
va_start(ap, fmt);
2022-07-10 10:23:45 +03:00
#ifdef HAVE_PRAGMAS_FOR_GCC_DIAGNOSTIC_IGNORED_FORMAT_NONLITERAL
#pragma GCC diagnostic push
#endif
#ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_FORMAT_NONLITERAL
#pragma GCC diagnostic ignored "-Wformat-nonliteral"
#endif
#ifdef HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_FORMAT_SECURITY
#pragma GCC diagnostic ignored "-Wformat-security"
#endif
2010-03-26 01:20:59 +02:00
ret = vsnprintf(why, sizeof(why), fmt, ap);
2022-07-10 10:23:45 +03:00
#ifdef HAVE_PRAGMAS_FOR_GCC_DIAGNOSTIC_IGNORED_FORMAT_NONLITERAL
#pragma GCC diagnostic pop
#endif
2010-03-26 01:20:59 +02:00
va_end(ap);
if ((ret < 1) || (ret >= (int) sizeof(why))) {
upslogx(LOG_WARNING, "usb_comm_fail: vsnprintf needed more than %d bytes", (int)sizeof(why));
}
upslogx(LOG_WARNING, "Communications with UPS lost: %s", why);
}
2011-01-26 11:35:08 +02:00
static void usb_comm_good(void)
2010-03-26 01:20:59 +02:00
{
if (comm_failures == 0) {
return;
}
2022-07-10 10:23:45 +03:00
upslogx(LOG_NOTICE, "Communications with UPS re-established");
2010-03-26 01:20:59 +02:00
comm_failures = 0;
}
/*
* Callback that is called by usb_device_open() that handles USB device
* settings prior to accepting the devide. At the very least claim the
* device here. Detaching the kernel driver will be handled by the
* caller, don't do this here. Return < 0 on error, 0 or higher on
* success.
*/
static int driver_callback(usb_dev_handle *handle, USBDevice_t *device)
{
2022-07-10 10:23:45 +03:00
NUT_UNUSED_VARIABLE(device);
2010-03-26 01:20:59 +02:00
if (usb_set_configuration(handle, 1) < 0) {
upsdebugx(5, "Can't set USB configuration");
return -1;
}
if (usb_claim_interface(handle, 0) < 0) {
upsdebugx(5, "Can't claim USB interface");
return -1;
}
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_0_1
2010-03-26 01:20:59 +02:00
if (usb_set_altinterface(handle, 0) < 0) {
upsdebugx(5, "Can't set USB alternate interface");
return -1;
}
2022-07-10 10:23:45 +03:00
#elif WITH_LIBUSB_1_0
int ret = 0;
if ((ret = libusb_set_interface_alt_setting(handle, 0, 0)) < 0) {
upsdebugx(5, "Can't set USB alternate interface: %s", nut_usb_strerror(ret));
return -1;
}
#endif /* WITH_LIBUSB_1_0 */
2010-03-26 01:20:59 +02:00
if (usb_clear_halt(handle, 0x81) < 0) {
upsdebugx(5, "Can't reset USB endpoint");
return -1;
}
return 1;
}
static int usb_device_close(usb_dev_handle *handle)
{
2022-07-10 10:23:45 +03:00
int ret = 0;
2010-03-26 01:20:59 +02:00
if (!handle) {
return 0;
}
/* usb_release_interface() sometimes blocks and goes
2022-07-10 10:23:45 +03:00
* into uninterruptible sleep. So don't do it.
*/
2010-03-26 01:20:59 +02:00
/* usb_release_interface(handle, 0); */
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_1_0
libusb_close(handle);
libusb_exit(NULL);
#else
ret = usb_close(handle);
#endif
return ret;
2010-03-26 01:20:59 +02:00
}
static int usb_device_open(usb_dev_handle **handlep, USBDevice_t *device, USBDeviceMatcher_t *matcher,
int (*callback)(usb_dev_handle *handle, USBDevice_t *device))
{
2022-07-10 10:23:45 +03:00
int ret = 0;
uint8_t iManufacturer = 0, iProduct = 0, iSerialNumber = 0;
2010-03-26 01:20:59 +02:00
/* libusb base init */
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_1_0
if (libusb_init(NULL) < 0) {
libusb_exit(NULL);
fatal_with_errno(EXIT_FAILURE, "Failed to init libusb 1.0");
}
#else /* => WITH_LIBUSB_0_1 */
2010-03-26 01:20:59 +02:00
usb_init();
usb_find_busses();
usb_find_devices();
2022-07-10 10:23:45 +03:00
#endif /* WITH_LIBUSB_1_0 */
2010-03-26 01:20:59 +02:00
#ifndef __linux__ /* SUN_LIBUSB (confirmed to work on Solaris and FreeBSD) */
/* Causes a double free corruption in linux if device is detached! */
2022-07-10 10:23:45 +03:00
/* usb_device_close(*handlep); */
if (*handlep)
usb_close(*handlep);
2010-03-26 01:20:59 +02:00
#endif
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_1_0
libusb_device **devlist;
ssize_t devcount = 0;
libusb_device_handle *handle;
struct libusb_device_descriptor dev_desc;
uint8_t bus;
int i;
devcount = libusb_get_device_list(NULL, &devlist);
if (devcount <= 0)
fatal_with_errno(EXIT_FAILURE, "No USB device found");
for (i = 0; i < devcount; i++) {
USBDeviceMatcher_t *m;
libusb_device *dev = devlist[i];
libusb_get_device_descriptor(dev, &dev_desc);
ret = libusb_open(dev, &handle);
*handlep = handle;
#else /* => WITH_LIBUSB_0_1 */
struct usb_bus *bus;
2010-03-26 01:20:59 +02:00
for (bus = usb_busses; bus; bus = bus->next) {
struct usb_device *dev;
usb_dev_handle *handle;
for (dev = bus->devices; dev; dev = dev->next) {
2022-07-10 10:23:45 +03:00
int i;
2010-03-26 01:20:59 +02:00
USBDeviceMatcher_t *m;
2022-07-10 10:23:45 +03:00
upsdebugx(3, "Checking USB device [%04x:%04x] (%s/%s)",
dev->descriptor.idVendor,
dev->descriptor.idProduct,
bus->dirname, dev->filename);
2010-03-26 01:20:59 +02:00
/* supported vendors are now checked by the supplied matcher */
/* open the device */
*handlep = handle = usb_open(dev);
2022-07-10 10:23:45 +03:00
#endif /* WITH_LIBUSB_1_0 */
2010-03-26 01:20:59 +02:00
if (!handle) {
2022-07-10 10:23:45 +03:00
upsdebugx(4, "Failed to open USB device, skipping: %s", nut_usb_strerror(ret));
2010-03-26 01:20:59 +02:00
continue;
}
/* collect the identifying information of this
device. Note that this is safe, because
there's no need to claim an interface for
this (and therefore we do not yet need to
detach any kernel drivers). */
free(device->Vendor);
free(device->Product);
free(device->Serial);
free(device->Bus);
memset(device, 0, sizeof(*device));
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_1_0
device->VendorID = dev_desc.idVendor;
device->ProductID = dev_desc.idProduct;
bus = libusb_get_bus_number(dev);
device->Bus = (char *)malloc(4);
if (device->Bus == NULL) {
libusb_free_device_list(devlist, 1);
fatal_with_errno(EXIT_FAILURE, "Out of memory");
}
sprintf(device->Bus, "%03d", bus);
iManufacturer = dev_desc.iManufacturer;
iProduct = dev_desc.iProduct;
iSerialNumber = dev_desc.iSerialNumber;
#else /* => WITH_LIBUSB_0_1 */
2010-03-26 01:20:59 +02:00
device->VendorID = dev->descriptor.idVendor;
device->ProductID = dev->descriptor.idProduct;
2022-07-10 10:23:45 +03:00
device->Bus = xstrdup(bus->dirname);
iManufacturer = dev->descriptor.iManufacturer;
iProduct = dev->descriptor.iProduct;
iSerialNumber = dev->descriptor.iSerialNumber;
#endif /* WITH_LIBUSB_1_0 */
if (iManufacturer) {
2010-03-26 01:20:59 +02:00
char buf[SMALLBUF];
2022-07-10 10:23:45 +03:00
ret = usb_get_string_simple(handle, iManufacturer,
(usb_ctrl_charbuf)buf, sizeof(buf));
2010-03-26 01:20:59 +02:00
if (ret > 0) {
device->Vendor = strdup(buf);
2022-07-10 10:23:45 +03:00
if (device->Vendor == NULL) {
#if WITH_LIBUSB_1_0
libusb_free_device_list(devlist, 1);
#endif /* WITH_LIBUSB_1_0 */
fatal_with_errno(EXIT_FAILURE, "Out of memory");
}
2010-03-26 01:20:59 +02:00
}
}
2022-07-10 10:23:45 +03:00
if (iProduct) {
2010-03-26 01:20:59 +02:00
char buf[SMALLBUF];
2022-07-10 10:23:45 +03:00
ret = usb_get_string_simple(handle, iProduct,
(usb_ctrl_charbuf)buf, sizeof(buf));
2010-03-26 01:20:59 +02:00
if (ret > 0) {
device->Product = strdup(buf);
2022-07-10 10:23:45 +03:00
if (device->Product == NULL) {
#if WITH_LIBUSB_1_0
libusb_free_device_list(devlist, 1);
#endif /* WITH_LIBUSB_1_0 */
fatal_with_errno(EXIT_FAILURE, "Out of memory");
}
2010-03-26 01:20:59 +02:00
}
}
2022-07-10 10:23:45 +03:00
if (iSerialNumber) {
2010-03-26 01:20:59 +02:00
char buf[SMALLBUF];
2022-07-10 10:23:45 +03:00
ret = usb_get_string_simple(handle, iSerialNumber,
(usb_ctrl_charbuf)buf, sizeof(buf));
2010-03-26 01:20:59 +02:00
if (ret > 0) {
device->Serial = strdup(buf);
2022-07-10 10:23:45 +03:00
if (device->Serial == NULL) {
#if WITH_LIBUSB_1_0
libusb_free_device_list(devlist, 1);
#endif /* WITH_LIBUSB_1_0 */
fatal_with_errno(EXIT_FAILURE, "Out of memory");
}
2010-03-26 01:20:59 +02:00
}
}
upsdebugx(4, "- VendorID : %04x", device->VendorID);
upsdebugx(4, "- ProductID : %04x", device->ProductID);
upsdebugx(4, "- Manufacturer : %s", device->Vendor ? device->Vendor : "unknown");
upsdebugx(4, "- Product : %s", device->Product ? device->Product : "unknown");
upsdebugx(4, "- Serial Number: %s", device->Serial ? device->Serial : "unknown");
upsdebugx(4, "- Bus : %s", device->Bus ? device->Bus : "unknown");
for (m = matcher; m; m = m->next) {
2022-07-10 10:23:45 +03:00
2010-03-26 01:20:59 +02:00
switch (m->match_function(device, m->privdata))
{
case 0:
upsdebugx(4, "Device does not match - skipping");
goto next_device;
case -1:
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_1_0
libusb_free_device_list(devlist, 1);
#endif /* WITH_LIBUSB_1_0 */
2010-03-26 01:20:59 +02:00
fatal_with_errno(EXIT_FAILURE, "matcher");
2022-07-10 10:23:45 +03:00
#ifndef HAVE___ATTRIBUTE__NORETURN
# if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP) && (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_UNREACHABLE_CODE)
# pragma GCC diagnostic push
# pragma GCC diagnostic ignored "-Wunreachable-code"
# endif
2010-03-26 01:20:59 +02:00
goto next_device;
2022-07-10 10:23:45 +03:00
# if (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_PUSH_POP) && (defined HAVE_PRAGMA_GCC_DIAGNOSTIC_IGNORED_UNREACHABLE_CODE)
# pragma GCC diagnostic pop
# endif
#endif
2010-03-26 01:20:59 +02:00
case -2:
upsdebugx(4, "matcher: unspecified error");
goto next_device;
}
}
2022-07-10 10:23:45 +03:00
#ifdef HAVE_LIBUSB_SET_AUTO_DETACH_KERNEL_DRIVER
/* First, try the auto-detach kernel driver method
* This function is not available on FreeBSD 10.1-10.3 */
if ((ret = libusb_set_auto_detach_kernel_driver(handle, 1)) < 0)
upsdebugx(2,
"failed to auto detach kernel driver from USB device: %s",
nut_usb_strerror((enum libusb_error)ret));
else
upsdebugx(2, "auto detached kernel driver from USB device");
#endif /* HAVE_LIBUSB_SET_AUTO_DETACH_KERNEL_DRIVER */
2010-03-26 01:20:59 +02:00
for (i = 0; i < 3; i++) {
ret = callback(handle, device);
if (ret >= 0) {
2022-07-10 10:23:45 +03:00
upsdebugx(4, "USB device [%04x:%04x] opened",
device->VendorID, device->ProductID);
#if WITH_LIBUSB_1_0
libusb_free_device_list(devlist, 1);
#endif /* WITH_LIBUSB_1_0 */
2010-03-26 01:20:59 +02:00
return ret;
}
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_0_1 && (defined HAVE_USB_DETACH_KERNEL_DRIVER_NP)
2010-03-26 01:20:59 +02:00
/* this method requires at least libusb 0.1.8:
* it force device claiming by unbinding
* attached driver... From libhid */
2022-07-10 10:23:45 +03:00
if ((ret = usb_detach_kernel_driver_np(handle, 0)) < 0) {
upsdebugx(4,
"failed to detach kernel driver from USB device: %s",
nut_usb_strerror(ret));
2010-03-26 01:20:59 +02:00
} else {
upsdebugx(4, "detached kernel driver from USB device...");
}
2022-07-10 10:23:45 +03:00
#else
# ifdef HAVE_LIBUSB_DETACH_KERNEL_DRIVER
if ((ret = libusb_detach_kernel_driver(handle, 0)) < 0) {
upsdebugx(4,
"failed to detach kernel driver from USB device: %s",
nut_usb_strerror(ret));
} else {
upsdebugx(4, "detached kernel driver from USB device...");
}
# else
# ifdef HAVE_LIBUSB_DETACH_KERNEL_DRIVER_NP
if ((ret = libusb_detach_kernel_driver_np(udev, 0)) < 0) {
upsdebugx(4,
"failed to detach kernel driver from USB device: %s",
nut_usb_strerror(ret));
} else {
upsdebugx(4, "detached kernel driver from USB device...");
}
# endif /* HAVE_LIBUSB_DETACH_KERNEL_DRIVER_NP */
# endif /* HAVE_LIBUSB_DETACH_KERNEL_DRIVER */
#endif /* HAVE_USB_DETACH_KERNEL_DRIVER_NP or HAVE_LIBUSB_DETACH_KERNEL_DRIVER or HAVE_LIBUSB_DETACH_KERNEL_DRIVER_NP */
2010-03-26 01:20:59 +02:00
}
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_1_0
libusb_free_device_list(devlist, 1);
#endif /* WITH_LIBUSB_1_0 */
fatalx(EXIT_FAILURE,
"USB device [%04x:%04x] matches, but driver callback failed: %s",
device->VendorID, device->ProductID, nut_usb_strerror(ret));
2010-03-26 01:20:59 +02:00
next_device:
usb_close(handle);
2022-07-10 10:23:45 +03:00
#if (!WITH_LIBUSB_1_0) /* => WITH_LIBUSB_0_1 */
2010-03-26 01:20:59 +02:00
}
2022-07-10 10:23:45 +03:00
#endif /* WITH_LIBUSB_1_0 */
2010-03-26 01:20:59 +02:00
}
*handlep = NULL;
2022-07-10 10:23:45 +03:00
#if WITH_LIBUSB_1_0
libusb_free_device_list(devlist, 1);
#endif /* WITH_LIBUSB_1_0 */
2010-03-26 01:20:59 +02:00
upsdebugx(4, "No matching USB device found");
return -1;
}
/*
* Initialise the UPS
*/
void upsdrv_initups(void)
{
char reply[REPLY_PACKETSIZE];
int i;
2022-07-10 10:23:45 +03:00
warn_if_bad_usb_port_filename(device_path);
2010-03-26 01:20:59 +02:00
for (i = 0; usb_device_open(&udev, &usbdevice, &device_matcher, &driver_callback) < 0; i++) {
if ((i < 32) && (sleep(5) == 0)) {
usb_comm_fail("Can't open USB device, retrying ...");
continue;
}
fatalx(EXIT_FAILURE,
"Unable to find Richcomm dry-contact to USB solution\n\n"
"Things to try:\n"
" - Connect UPS device to USB bus\n"
" - Run this driver as another user (upsdrvctl -u or 'user=...' in ups.conf).\n"
" See upsdrvctl(8) and ups.conf(5).\n\n"
"Fatal error: unusable configuration");
}
/*
* Read rubbish data a few times; the UPS doesn't seem to respond properly
* the first few times after connecting
*/
for (i = 0; i < 5; i++) {
query_ups(reply);
sleep(1);
}
}
void upsdrv_cleanup(void)
{
usb_device_close(udev);
free(usbdevice.Vendor);
free(usbdevice.Product);
free(usbdevice.Serial);
free(usbdevice.Bus);
}
void upsdrv_initinfo(void)
{
dstate_setinfo("ups.mfr", "%s", "Richcomm dry-contact to USB solution");
dstate_setinfo("ups.model", "%s", usbdevice.Product ? usbdevice.Product : "unknown");
dstate_setinfo("ups.serial", "%s", usbdevice.Serial ? usbdevice.Serial : "unknown");
dstate_setinfo("ups.vendorid", "%04x", usbdevice.VendorID);
dstate_setinfo("ups.productid", "%04x", usbdevice.ProductID);
}
void upsdrv_updateinfo(void)
{
char reply[REPLY_PACKETSIZE];
int ret, online, battery_normal;
if (!udev) {
ret = usb_device_open(&udev, &usbdevice, &device_matcher, &driver_callback);
if (ret < 0) {
return;
}
}
ret = query_ups(reply);
if (ret < 4) {
usb_comm_fail("Query to UPS failed");
dstate_datastale();
usb_device_close(udev);
udev = NULL;
return;
}
usb_comm_good();
dstate_dataok();
/*
* 3rd bit of 4th byte indicates whether the UPS is on line (1)
* or on battery (0)
*/
online = (reply[3]&4)>>2;
/*
* 2nd bit of 4th byte indicates battery status; normal (1)
* or low (0)
*/
battery_normal = (reply[3]&2)>>1;
status_init();
if (online) {
status_set("OL");
} else {
status_set("OB");
}
if (!battery_normal) {
status_set("LB");
}
status_commit();
}
/*
* The shutdown feature is a bit strange on this UPS IMHO, it
* switches the polarity of the 'Shutdown UPS' signal, at which
* point it will automatically power down once it loses power.
*
* It will still, however, be possible to poll the UPS and
* reverse the polarity _again_, at which point it will
* start back up once power comes back.
*
* Maybe this is the normal way, it just seems a bit strange.
*
* Please note, this function doesn't power the UPS off if
* line power is connected.
*/
void upsdrv_shutdown(void)
{
/*
* This packet shuts down the UPS, that is,
* if it is not currently on line power
*/
char prepare[QUERY_PACKETSIZE] = { 0x02, 0x00, 0x00, 0x00 };
/*
* This should make the UPS turn itself back on once the
* power comes back on; which is probably what we want
*/
char restart[QUERY_PACKETSIZE] = { 0x02, 0x01, 0x00, 0x00 };
char reply[REPLY_PACKETSIZE];
execute_and_retrieve_query(prepare, reply);
/*
* have to, the previous command seems to be
* ignored if the second command comes right
* behind it
*/
sleep(1);
execute_and_retrieve_query(restart, reply);
}
void upsdrv_help(void)
{
}
void upsdrv_makevartable(void)
{
}