2013-06-27 23:02:34 -04:00
|
|
|
/*
|
|
|
|
* CUPS Backend common code
|
|
|
|
*
|
2015-01-05 21:39:22 -05:00
|
|
|
* Copyright (c) 2007-2015 Solomon Peachy <pizza@shaftnet.org>
|
2013-06-27 23:02:34 -04:00
|
|
|
*
|
|
|
|
* The latest version of this program can be found at:
|
2014-01-12 17:26:29 -05:00
|
|
|
*
|
2013-08-20 20:10:21 -04:00
|
|
|
* http://git.shaftnet.org/cgit/selphy_print.git
|
2014-01-12 17:26:29 -05:00
|
|
|
*
|
2013-06-27 23:02:34 -04: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 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 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.
|
|
|
|
*
|
|
|
|
* [http://www.gnu.org/licenses/gpl-3.0.html]
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-07-18 08:46:44 -04:00
|
|
|
#include "backend_common.h"
|
2013-06-27 23:02:34 -04:00
|
|
|
|
2015-08-13 21:09:56 -04:00
|
|
|
#define BACKEND_VERSION "0.60"
|
2013-07-18 08:46:44 -04:00
|
|
|
#ifndef URI_PREFIX
|
2013-12-18 18:28:13 -05:00
|
|
|
#error "Must Define URI_PREFIX"
|
2013-06-27 23:02:34 -04:00
|
|
|
#endif
|
|
|
|
|
2015-07-02 19:44:26 -04:00
|
|
|
#define NUM_CLAIM_ATTEMPTS 10
|
|
|
|
|
2015-07-04 09:13:42 -04:00
|
|
|
/* Global Variables */
|
2014-02-10 20:10:36 -05:00
|
|
|
int dyesub_debug = 0;
|
2015-07-04 09:13:42 -04:00
|
|
|
int terminate = 0;
|
2015-08-12 20:56:51 -04:00
|
|
|
int fast_return = 0;
|
2015-08-12 22:51:45 -04:00
|
|
|
int extra_vid = -1;
|
|
|
|
int extra_pid = -1;
|
|
|
|
int extra_type = -1;
|
2015-08-13 21:09:56 -04:00
|
|
|
int copies = 1;
|
|
|
|
char *use_serno = NULL;
|
2013-07-17 23:39:31 -04:00
|
|
|
|
2015-07-04 09:13:42 -04:00
|
|
|
/* Support Functions */
|
2015-07-02 19:44:26 -04:00
|
|
|
static int backend_claim_interface(struct libusb_device_handle *dev, int iface)
|
|
|
|
{
|
|
|
|
int attempts = NUM_CLAIM_ATTEMPTS;
|
|
|
|
int ret;
|
|
|
|
do {
|
|
|
|
ret = libusb_claim_interface(dev, iface);
|
|
|
|
if (!ret)
|
|
|
|
break;
|
|
|
|
sleep(1);
|
|
|
|
} while (--attempts > 0);
|
|
|
|
|
|
|
|
if (ret)
|
|
|
|
ERROR("Printer open failure (Could not claim printer interface after %d attempts) (%d)\n", NUM_CLAIM_ATTEMPTS, ret);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-06-27 23:02:34 -04:00
|
|
|
#define ID_BUF_SIZE 2048
|
|
|
|
static char *get_device_id(struct libusb_device_handle *dev)
|
|
|
|
{
|
2013-07-17 23:39:31 -04:00
|
|
|
int length;
|
2013-06-27 23:02:34 -04:00
|
|
|
int iface = 0;
|
|
|
|
char *buf = malloc(ID_BUF_SIZE + 1);
|
|
|
|
|
2015-06-23 20:32:41 -04:00
|
|
|
if (!buf) {
|
|
|
|
ERROR("Memory allocation failure (%d bytes)\n", ID_BUF_SIZE+1);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2013-07-24 20:54:14 -04:00
|
|
|
if (libusb_kernel_driver_active(dev, iface))
|
2013-06-27 23:02:34 -04:00
|
|
|
libusb_detach_kernel_driver(dev, iface);
|
|
|
|
|
2015-07-02 19:44:26 -04:00
|
|
|
if (backend_claim_interface(dev, iface))
|
|
|
|
return NULL;
|
2013-06-27 23:02:34 -04:00
|
|
|
|
|
|
|
if (libusb_control_transfer(dev,
|
|
|
|
LIBUSB_REQUEST_TYPE_CLASS | LIBUSB_ENDPOINT_IN |
|
|
|
|
LIBUSB_RECIPIENT_INTERFACE,
|
|
|
|
0, 0,
|
|
|
|
(iface << 8),
|
|
|
|
(unsigned char *)buf, ID_BUF_SIZE, 5000) < 0)
|
|
|
|
{
|
|
|
|
*buf = '\0';
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* length is the first two bytes, MSB first */
|
|
|
|
length = (((unsigned)buf[0] & 255) << 8) |
|
|
|
|
((unsigned)buf[1] & 255);
|
|
|
|
|
|
|
|
/* Sanity checks */
|
|
|
|
if (length > ID_BUF_SIZE || length < 14)
|
|
|
|
length = (((unsigned)buf[1] & 255) << 8) |
|
|
|
|
((unsigned)buf[0] & 255);
|
|
|
|
|
|
|
|
if (length > ID_BUF_SIZE)
|
|
|
|
length = ID_BUF_SIZE;
|
|
|
|
|
|
|
|
if (length < 14) {
|
|
|
|
*buf = '\0';
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Move, and terminate */
|
|
|
|
memmove(buf, buf + 2, length);
|
|
|
|
buf[length] = '\0';
|
|
|
|
|
|
|
|
done:
|
|
|
|
libusb_release_interface(dev, iface);
|
2013-07-24 20:54:14 -04:00
|
|
|
|
2013-06-27 23:02:34 -04:00
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
/* Used with the IEEE1284 deviceid string parsing */
|
|
|
|
struct deviceid_dict {
|
|
|
|
char *key;
|
|
|
|
char *val;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define MAX_DICT 32
|
|
|
|
|
|
|
|
static int parse1284_data(const char *device_id, struct deviceid_dict* dict)
|
|
|
|
{
|
|
|
|
char *ptr;
|
|
|
|
char key[256];
|
|
|
|
char val[256];
|
|
|
|
int num = 0;
|
|
|
|
|
2015-07-04 09:43:46 -04:00
|
|
|
if (!device_id)
|
|
|
|
return 0;
|
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
//[whitespace]key[whitespace]:[whitespace]value[whitespace];
|
|
|
|
while (*device_id && num < MAX_DICT) {
|
|
|
|
/* Skip leading spaces */
|
|
|
|
if (*device_id == ' ')
|
|
|
|
device_id++;
|
|
|
|
if (!*device_id)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Work out key */
|
|
|
|
for (ptr = key; *device_id && *device_id != ':'; device_id++)
|
|
|
|
*ptr++ = *device_id;
|
|
|
|
if (!*device_id)
|
|
|
|
break;
|
2014-03-13 19:50:48 -04:00
|
|
|
while (ptr > key && *(ptr-1) == ' ')
|
2014-03-13 10:58:33 -04:00
|
|
|
ptr--;
|
|
|
|
*ptr = 0;
|
|
|
|
device_id++;
|
|
|
|
if (!*device_id)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* Next up, value */
|
2014-03-13 19:50:48 -04:00
|
|
|
for (ptr = val; *device_id && *device_id != ';'; device_id++)
|
2014-03-13 10:58:33 -04:00
|
|
|
*ptr++ = *device_id;
|
|
|
|
if (!*device_id)
|
|
|
|
break;
|
2014-03-13 19:50:48 -04:00
|
|
|
while (ptr > val && *(ptr-1) == ' ')
|
2014-03-13 10:58:33 -04:00
|
|
|
ptr--;
|
|
|
|
*ptr = 0;
|
|
|
|
device_id++;
|
|
|
|
|
|
|
|
/* Add it to the dictionary */
|
|
|
|
dict[num].key = strdup(key);
|
|
|
|
dict[num].val = strdup(val);
|
|
|
|
num++;
|
2014-03-13 19:50:48 -04:00
|
|
|
|
|
|
|
if (!*device_id)
|
|
|
|
break;
|
2014-03-13 10:58:33 -04:00
|
|
|
}
|
|
|
|
return num;
|
|
|
|
};
|
|
|
|
|
|
|
|
static char *dict_find(const char *key, int dlen, struct deviceid_dict* dict)
|
|
|
|
{
|
|
|
|
while(dlen) {
|
|
|
|
if (!strcmp(key, dict->key))
|
|
|
|
return dict->val;
|
|
|
|
dlen--;
|
|
|
|
dict++;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* I/O functions */
|
2013-12-21 22:39:15 -05:00
|
|
|
int read_data(struct libusb_device_handle *dev, uint8_t endp,
|
|
|
|
uint8_t *buf, int buflen, int *readlen)
|
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Clear buffer */
|
2014-02-11 13:41:15 -05:00
|
|
|
memset(buf, 0, buflen);
|
2013-12-21 22:39:15 -05:00
|
|
|
|
|
|
|
ret = libusb_bulk_transfer(dev, endp,
|
|
|
|
buf,
|
|
|
|
buflen,
|
|
|
|
readlen,
|
2014-02-10 22:45:50 -05:00
|
|
|
10000);
|
2013-12-21 22:39:15 -05:00
|
|
|
|
|
|
|
if (ret < 0) {
|
|
|
|
ERROR("Failure to receive data from printer (libusb error %d: (%d/%d from 0x%02x))\n", ret, *readlen, buflen, endp);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2015-01-07 10:22:03 -05:00
|
|
|
if (dyesub_debug) {
|
|
|
|
DEBUG("Received %d bytes from printer\n", *readlen);
|
|
|
|
}
|
|
|
|
|
2014-06-03 20:27:23 -04:00
|
|
|
if ((dyesub_debug > 1 && buflen < 4096) ||
|
|
|
|
dyesub_debug > 2) {
|
2014-12-31 13:55:57 -05:00
|
|
|
int i = *readlen;
|
|
|
|
|
2013-12-21 22:39:15 -05:00
|
|
|
DEBUG("<- ");
|
2014-12-31 13:55:57 -05:00
|
|
|
while(i > 0) {
|
2015-01-07 21:48:07 -05:00
|
|
|
if ((*readlen-i) != 0 &&
|
|
|
|
(*readlen-i) % 16 == 0) {
|
2014-12-31 14:01:32 -05:00
|
|
|
DEBUG2("\n");
|
|
|
|
DEBUG(" ");
|
|
|
|
}
|
2015-01-07 10:22:03 -05:00
|
|
|
DEBUG2("%02x ", buf[*readlen-i]);
|
2014-12-31 13:55:57 -05:00
|
|
|
i--;
|
2013-12-21 22:39:15 -05:00
|
|
|
}
|
|
|
|
DEBUG2("\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
done:
|
|
|
|
return ret;
|
|
|
|
}
|
2013-07-17 23:39:31 -04:00
|
|
|
|
2013-07-18 08:46:44 -04:00
|
|
|
int send_data(struct libusb_device_handle *dev, uint8_t endp,
|
|
|
|
uint8_t *buf, int len)
|
2013-06-27 23:02:34 -04:00
|
|
|
{
|
2013-09-30 09:52:05 -04:00
|
|
|
int num = 0;
|
2013-06-27 23:02:34 -04:00
|
|
|
|
2014-03-12 13:32:21 -04:00
|
|
|
if (dyesub_debug) {
|
2013-12-11 07:49:57 -05:00
|
|
|
DEBUG("Sending %d bytes to printer\n", len);
|
|
|
|
}
|
|
|
|
|
2013-06-30 11:15:03 -04:00
|
|
|
while (len) {
|
2013-12-11 07:49:57 -05:00
|
|
|
int len2 = (len > 65536) ? 65536: len;
|
2013-06-30 11:15:03 -04:00
|
|
|
int ret = libusb_bulk_transfer(dev, endp,
|
2013-12-11 07:49:57 -05:00
|
|
|
buf, len2,
|
2014-01-13 05:41:48 -05:00
|
|
|
&num, 15000);
|
2013-12-11 07:49:57 -05:00
|
|
|
|
2014-12-31 13:55:57 -05:00
|
|
|
if ((dyesub_debug > 1 && len < 4096) ||
|
|
|
|
dyesub_debug > 2) {
|
|
|
|
int i = num;
|
|
|
|
|
2013-12-11 07:49:57 -05:00
|
|
|
DEBUG("-> ");
|
2014-12-31 13:55:57 -05:00
|
|
|
while(i > 0) {
|
2015-01-07 21:48:07 -05:00
|
|
|
if ((num-i) != 0 &&
|
|
|
|
(num-i) % 16 == 0) {
|
2014-12-31 14:01:32 -05:00
|
|
|
DEBUG2("\n");
|
|
|
|
DEBUG(" ");
|
|
|
|
}
|
2015-01-07 10:22:03 -05:00
|
|
|
DEBUG2("%02x ", buf[num-i]);
|
2014-12-31 13:55:57 -05:00
|
|
|
i--;
|
2013-12-11 07:49:57 -05:00
|
|
|
}
|
|
|
|
DEBUG2("\n");
|
|
|
|
}
|
|
|
|
|
2013-06-30 11:15:03 -04:00
|
|
|
if (ret < 0) {
|
|
|
|
ERROR("Failure to send data to printer (libusb error %d: (%d/%d to 0x%02x))\n", ret, num, len, endp);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
len -= num;
|
|
|
|
buf += num;
|
2013-06-27 23:02:34 -04:00
|
|
|
}
|
2013-06-30 11:15:03 -04:00
|
|
|
|
2013-06-27 23:02:34 -04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
/* More stuff */
|
2013-06-30 11:15:03 -04:00
|
|
|
static void sigterm_handler(int signum) {
|
2013-11-23 19:51:55 -05:00
|
|
|
UNUSED(signum);
|
|
|
|
|
2013-06-27 23:02:34 -04:00
|
|
|
terminate = 1;
|
|
|
|
INFO("Job Cancelled");
|
|
|
|
}
|
2013-06-30 11:15:03 -04:00
|
|
|
|
2013-07-06 20:58:23 -04:00
|
|
|
static char *sanitize_string(char *str) {
|
|
|
|
int len = strlen(str);
|
|
|
|
|
|
|
|
while(len && (str[len-1] <= 0x20)) {
|
|
|
|
str[len-1] = 0;
|
|
|
|
len--;
|
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2014-02-09 23:46:02 -05:00
|
|
|
/*
|
|
|
|
|
|
|
|
These functions are Public Domain code obtained from:
|
|
|
|
|
|
|
|
http://www.geekhideout.com/urlcode.shtml
|
|
|
|
|
|
|
|
*/
|
|
|
|
#include <ctype.h> /* for isalnum() */
|
|
|
|
static char to_hex(char code) {
|
|
|
|
static const char hex[] = "0123456789abcdef";
|
|
|
|
return hex[code & 15];
|
|
|
|
}
|
|
|
|
static char from_hex(char ch) {
|
|
|
|
return isdigit(ch) ? ch - '0' : tolower(ch) - 'a' + 10;
|
|
|
|
}
|
|
|
|
/* Note -- caller must free returned pointer! */
|
|
|
|
static char *url_encode(char *str) {
|
|
|
|
char *pstr = str, *buf = malloc(strlen(str) * 3 + 1), *pbuf = buf;
|
|
|
|
|
2015-06-23 20:32:41 -04:00
|
|
|
if (!buf) {
|
|
|
|
ERROR("Memory allocation failure (%d bytes)\n", (int) strlen(str)*3 + 1);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-09 23:46:02 -05:00
|
|
|
while (*pstr) {
|
|
|
|
if (isalnum(*pstr) || *pstr == '-' || *pstr == '_' || *pstr == '.' || *pstr == '~')
|
|
|
|
*pbuf++ = *pstr;
|
|
|
|
else if (*pstr == ' ')
|
|
|
|
*pbuf++ = '+';
|
|
|
|
else
|
|
|
|
*pbuf++ = '%', *pbuf++ = to_hex(*pstr >> 4), *pbuf++ = to_hex(*pstr & 15);
|
|
|
|
pstr++;
|
|
|
|
}
|
|
|
|
*pbuf = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
static char *url_decode(char *str) {
|
|
|
|
char *pstr = str, *buf = malloc(strlen(str) + 1), *pbuf = buf;
|
2015-06-23 20:32:41 -04:00
|
|
|
|
|
|
|
if (!buf) {
|
|
|
|
ERROR("Memory allocation failure (%d bytes)\n", (int) strlen(str) + 1);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2014-02-09 23:46:02 -05:00
|
|
|
while (*pstr) {
|
|
|
|
if (*pstr == '%') {
|
|
|
|
if (pstr[1] && pstr[2]) {
|
|
|
|
*pbuf++ = from_hex(pstr[1]) << 4 | from_hex(pstr[2]);
|
|
|
|
pstr += 2;
|
|
|
|
}
|
|
|
|
} else if (*pstr == '+') {
|
|
|
|
*pbuf++ = ' ';
|
|
|
|
} else {
|
|
|
|
*pbuf++ = *pstr;
|
|
|
|
}
|
|
|
|
pstr++;
|
|
|
|
}
|
|
|
|
*pbuf = '\0';
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And now back to our regularly-scheduled programming */
|
|
|
|
|
2013-06-30 11:32:41 -04:00
|
|
|
static int print_scan_output(struct libusb_device *device,
|
|
|
|
struct libusb_device_descriptor *desc,
|
|
|
|
char *prefix, char *manuf2,
|
2015-08-12 22:51:45 -04:00
|
|
|
int found,
|
2013-07-24 13:49:06 -04:00
|
|
|
int scan_only, char *match_serno,
|
|
|
|
struct dyesub_backend *backend)
|
2013-06-30 11:15:03 -04:00
|
|
|
{
|
2013-06-30 11:32:41 -04:00
|
|
|
struct libusb_device_handle *dev;
|
2014-02-09 23:46:02 -05:00
|
|
|
char buf[256];
|
2014-03-13 19:50:48 -04:00
|
|
|
char *product = NULL, *serial = NULL, *manuf = NULL, *descr = NULL;
|
2014-02-09 23:46:02 -05:00
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
int dlen = 0;
|
|
|
|
struct deviceid_dict dict[MAX_DICT];
|
2014-03-13 19:50:48 -04:00
|
|
|
char *ieee_id;
|
2014-03-13 10:58:33 -04:00
|
|
|
|
2013-06-30 11:32:41 -04:00
|
|
|
if (libusb_open(device, &dev)) {
|
2013-07-25 14:21:36 -04:00
|
|
|
ERROR("Could not open device %04x:%04x (need to be root?)\n", desc->idVendor, desc->idProduct);
|
2013-06-30 12:05:32 -04:00
|
|
|
found = -1;
|
|
|
|
goto abort;
|
2013-06-30 11:32:41 -04:00
|
|
|
}
|
2014-02-09 23:46:02 -05:00
|
|
|
|
2014-03-13 19:50:48 -04:00
|
|
|
ieee_id = get_device_id(dev);
|
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
/* Get IEEE1284 info */
|
|
|
|
dlen = parse1284_data(ieee_id, dict);
|
|
|
|
|
|
|
|
/* Look up mfg string. */
|
2014-03-13 19:50:48 -04:00
|
|
|
if (manuf2 && strlen(manuf2)) {
|
2014-03-13 10:58:33 -04:00
|
|
|
manuf = url_encode(manuf2); /* Backend supplied */
|
|
|
|
} else if ((manuf = dict_find("MANUFACTURER", dlen, dict))) {
|
|
|
|
manuf = url_encode(manuf);
|
|
|
|
} else if ((manuf = dict_find("MFG", dlen, dict))) {
|
|
|
|
manuf = url_encode(manuf);
|
|
|
|
} else if ((manuf = dict_find("MFR", dlen, dict))) {
|
|
|
|
manuf = url_encode(manuf);
|
|
|
|
} else if (desc->iManufacturer) { /* Get from USB descriptor */
|
|
|
|
buf[0] = 0;
|
2014-02-09 23:46:02 -05:00
|
|
|
libusb_get_string_descriptor_ascii(dev, desc->iManufacturer, (unsigned char*)buf, STR_LEN_MAX);
|
|
|
|
sanitize_string(buf);
|
|
|
|
manuf = url_encode(buf);
|
2013-06-30 11:32:41 -04:00
|
|
|
}
|
2014-03-13 10:58:33 -04:00
|
|
|
if (!manuf || !strlen(manuf)) { /* Last-ditch */
|
|
|
|
if (manuf) free(manuf);
|
|
|
|
manuf = url_encode("Unknown");
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Look up model number */
|
|
|
|
if ((product = dict_find("MODEL", dlen, dict))) {
|
|
|
|
product = url_encode(product);
|
|
|
|
} else if ((product = dict_find("MDL", dlen, dict))) {
|
|
|
|
product = url_encode(product);
|
|
|
|
} else if (desc->iProduct) { /* Get from USB descriptor */
|
|
|
|
buf[0] = 0;
|
|
|
|
libusb_get_string_descriptor_ascii(dev, desc->iProduct, (unsigned char*)buf, STR_LEN_MAX);
|
2014-02-09 23:46:02 -05:00
|
|
|
sanitize_string(buf);
|
|
|
|
product = url_encode(buf);
|
2013-06-30 11:15:03 -04:00
|
|
|
}
|
2014-03-13 10:58:33 -04:00
|
|
|
|
|
|
|
if (!product || !strlen(product)) { /* Last-ditch */
|
|
|
|
if (!product) free(product);
|
|
|
|
product = url_encode("Unknown");
|
|
|
|
}
|
|
|
|
|
2014-03-13 19:50:48 -04:00
|
|
|
/* Look up description */
|
|
|
|
if ((descr = dict_find("DESCRIPTION", dlen, dict))) {
|
|
|
|
descr = strdup(descr);
|
|
|
|
} else if ((descr = dict_find("DES", dlen, dict))) {
|
|
|
|
descr = strdup(descr);
|
|
|
|
}
|
|
|
|
if (!descr || !strlen(descr)) { /* Last-ditch, generate */
|
|
|
|
char *product2 = url_decode(product);
|
|
|
|
char *manuf3 = url_decode(manuf);
|
|
|
|
descr = malloc(256);
|
2015-06-23 20:32:41 -04:00
|
|
|
if (!descr) {
|
|
|
|
ERROR("Memory allocation failure (%d bytes)\n", 256);
|
2015-07-04 11:03:52 -04:00
|
|
|
if (manuf3)
|
|
|
|
free(manuf3);
|
|
|
|
if (product2)
|
|
|
|
free(product2);
|
2015-08-12 22:51:45 -04:00
|
|
|
return -1;
|
2015-06-23 20:32:41 -04:00
|
|
|
}
|
|
|
|
|
2014-03-13 19:50:48 -04:00
|
|
|
sprintf(descr, "%s %s", manuf3, product2);
|
|
|
|
free(product2);
|
|
|
|
free(manuf3);
|
|
|
|
}
|
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
/* Look up serial number */
|
|
|
|
if ((serial = dict_find("SERIALNUMBER", dlen, dict))) {
|
|
|
|
serial = url_encode(serial);
|
|
|
|
} else if ((serial = dict_find("SN", dlen, dict))) {
|
|
|
|
serial = url_encode(serial);
|
|
|
|
} else if ((serial = dict_find("SER", dlen, dict))) {
|
|
|
|
serial = url_encode(serial);
|
|
|
|
} else if ((serial = dict_find("SERN", dlen, dict))) {
|
|
|
|
serial = url_encode(serial);
|
|
|
|
} else if (desc->iSerialNumber) { /* Get from USB descriptor */
|
2014-02-09 23:46:02 -05:00
|
|
|
libusb_get_string_descriptor_ascii(dev, desc->iSerialNumber, (unsigned char*)buf, STR_LEN_MAX);
|
|
|
|
sanitize_string(buf);
|
2014-03-13 10:58:33 -04:00
|
|
|
serial = url_encode(buf);
|
|
|
|
} else if (backend->query_serno) { /* Get from backend hook */
|
2014-02-11 13:41:15 -05:00
|
|
|
int iface = 0;
|
2015-07-02 19:44:26 -04:00
|
|
|
|
2013-07-24 20:54:14 -04:00
|
|
|
struct libusb_config_descriptor *config;
|
|
|
|
|
|
|
|
if (libusb_kernel_driver_active(dev, iface))
|
|
|
|
libusb_detach_kernel_driver(dev, iface);
|
2014-02-09 23:21:16 -05:00
|
|
|
|
2015-07-02 19:44:26 -04:00
|
|
|
/* Try to claim the printer, and handle transient failures */
|
|
|
|
if (!backend_claim_interface(dev, iface)) {
|
2014-02-11 13:41:15 -05:00
|
|
|
int i;
|
2015-07-04 10:12:57 -04:00
|
|
|
uint8_t endp_up = 0, endp_down = 0;
|
2014-02-09 23:21:16 -05:00
|
|
|
libusb_get_active_config_descriptor(device, &config);
|
|
|
|
for (i = 0 ; i < config->interface[0].altsetting[0].bNumEndpoints ; i++) {
|
|
|
|
if ((config->interface[0].altsetting[0].endpoint[i].bmAttributes & 3) == LIBUSB_TRANSFER_TYPE_BULK) {
|
|
|
|
if (config->interface[0].altsetting[0].endpoint[i].bEndpointAddress & LIBUSB_ENDPOINT_IN)
|
|
|
|
endp_up = config->interface[0].altsetting[0].endpoint[i].bEndpointAddress;
|
|
|
|
else
|
|
|
|
endp_down = config->interface[0].altsetting[0].endpoint[i].bEndpointAddress;
|
|
|
|
}
|
2013-07-24 20:54:14 -04:00
|
|
|
}
|
|
|
|
|
2015-07-02 19:44:26 -04:00
|
|
|
buf[0] = 0;
|
2014-02-09 23:21:16 -05:00
|
|
|
/* Ignore result since a failure isn't critical here */
|
2014-02-09 23:46:02 -05:00
|
|
|
backend->query_serno(dev, endp_up, endp_down, buf, STR_LEN_MAX);
|
2014-02-09 23:21:16 -05:00
|
|
|
libusb_release_interface(dev, iface);
|
|
|
|
}
|
2014-03-13 10:58:33 -04:00
|
|
|
serial = url_encode(buf);
|
2013-06-30 11:32:41 -04:00
|
|
|
}
|
2014-03-12 10:55:35 -04:00
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
if (!serial || !strlen(serial)) { /* Last-ditch */
|
|
|
|
if (serial) free(serial);
|
2014-02-09 10:23:57 -05:00
|
|
|
WARNING("**** THIS PRINTER DOES NOT REPORT A SERIAL NUMBER!\n");
|
2014-03-12 10:55:35 -04:00
|
|
|
WARNING("**** If you intend to use multiple printers of this type, you\n");
|
2014-02-09 10:23:57 -05:00
|
|
|
WARNING("**** must only plug one in at a time or unexpected behaivor will occur!\n");
|
2014-02-11 16:33:53 -05:00
|
|
|
serial = strdup("NONE_UNKNOWN");
|
2013-07-16 21:08:33 -04:00
|
|
|
}
|
2014-02-09 23:46:02 -05:00
|
|
|
|
2013-12-21 22:15:18 -05:00
|
|
|
if (dyesub_debug)
|
2015-08-12 22:51:45 -04:00
|
|
|
DEBUG("VID: %04X PID: %04X Manuf: '%s' Product: '%s' Serial: '%s'\n",
|
2013-12-21 22:15:18 -05:00
|
|
|
desc->idVendor, desc->idProduct, manuf, product, serial);
|
2013-06-30 11:15:03 -04:00
|
|
|
|
2013-07-17 22:43:49 -04:00
|
|
|
if (scan_only) {
|
2014-03-13 10:58:33 -04:00
|
|
|
int k = 0;
|
2013-12-18 07:48:30 -05:00
|
|
|
|
|
|
|
/* URLify the manuf and model strings */
|
2014-03-13 10:58:33 -04:00
|
|
|
strncpy(buf, manuf, sizeof(buf) - 2);
|
2014-02-09 23:46:02 -05:00
|
|
|
k = strlen(buf);
|
2013-12-18 07:48:30 -05:00
|
|
|
buf[k++] = '/';
|
2013-07-06 20:58:23 -04:00
|
|
|
buf[k] = 0;
|
2014-02-09 23:46:02 -05:00
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
strncpy(buf + k, product, sizeof(buf)-k);
|
2014-03-13 19:50:48 -04:00
|
|
|
|
2013-12-18 07:48:30 -05:00
|
|
|
fprintf(stdout, "direct %s://%s?serial=%s&backend=%s \"%s\" \"%s\" \"%s\" \"\"\n",
|
|
|
|
prefix, buf, serial, backend->uri_prefix,
|
2014-03-13 19:50:48 -04:00
|
|
|
descr, descr,
|
2014-02-09 23:46:02 -05:00
|
|
|
ieee_id? ieee_id : "");
|
2013-06-30 11:32:41 -04:00
|
|
|
|
|
|
|
if (ieee_id)
|
|
|
|
free(ieee_id);
|
|
|
|
}
|
2013-06-30 11:15:03 -04:00
|
|
|
|
2013-06-30 11:32:41 -04:00
|
|
|
/* If a serial number was passed down, use it. */
|
2014-02-10 22:23:26 -05:00
|
|
|
if (match_serno && strcmp(match_serno, (char*)serial)) {
|
2013-06-30 11:32:41 -04:00
|
|
|
found = -1;
|
|
|
|
}
|
2014-02-09 23:46:02 -05:00
|
|
|
|
|
|
|
/* Free things up */
|
|
|
|
if(serial) free(serial);
|
|
|
|
if(manuf) free(manuf);
|
|
|
|
if(product) free(product);
|
2014-03-13 19:50:48 -04:00
|
|
|
if(descr) free(descr);
|
2014-02-09 23:46:02 -05:00
|
|
|
|
2013-06-30 11:32:41 -04:00
|
|
|
libusb_close(dev);
|
2013-06-30 12:05:32 -04:00
|
|
|
abort:
|
2014-02-09 23:46:02 -05:00
|
|
|
|
2014-03-13 10:58:33 -04:00
|
|
|
/* Clean up the dictionary */
|
|
|
|
while (dlen--) {
|
|
|
|
free (dict[dlen].key);
|
|
|
|
free (dict[dlen].val);
|
|
|
|
}
|
|
|
|
|
2013-06-30 11:32:41 -04:00
|
|
|
return found;
|
2013-06-30 11:15:03 -04:00
|
|
|
}
|
2013-07-17 23:39:31 -04:00
|
|
|
|
2015-08-12 22:56:29 -04:00
|
|
|
extern struct dyesub_backend updr150_backend;
|
|
|
|
extern struct dyesub_backend kodak6800_backend;
|
|
|
|
extern struct dyesub_backend kodak605_backend;
|
|
|
|
extern struct dyesub_backend kodak1400_backend;
|
|
|
|
extern struct dyesub_backend shinkos1245_backend;
|
|
|
|
extern struct dyesub_backend shinkos2145_backend;
|
|
|
|
extern struct dyesub_backend shinkos6145_backend;
|
|
|
|
extern struct dyesub_backend shinkos6245_backend;
|
|
|
|
extern struct dyesub_backend canonselphy_backend;
|
|
|
|
extern struct dyesub_backend mitsu70x_backend;
|
|
|
|
extern struct dyesub_backend mitsu9550_backend;
|
|
|
|
extern struct dyesub_backend dnpds40_backend;
|
|
|
|
extern struct dyesub_backend cw01_backend;
|
|
|
|
|
2013-07-18 23:39:36 -04:00
|
|
|
static struct dyesub_backend *backends[] = {
|
|
|
|
&canonselphy_backend,
|
|
|
|
&kodak6800_backend,
|
2013-11-21 22:04:48 -05:00
|
|
|
&kodak605_backend,
|
2013-07-18 23:39:36 -04:00
|
|
|
&kodak1400_backend,
|
2015-07-02 23:32:16 -04:00
|
|
|
&shinkos1245_backend,
|
2013-07-18 23:39:36 -04:00
|
|
|
&shinkos2145_backend,
|
2015-07-26 23:05:21 -04:00
|
|
|
&shinkos6145_backend,
|
2015-07-02 23:32:16 -04:00
|
|
|
&shinkos6245_backend,
|
2013-07-18 23:39:36 -04:00
|
|
|
&updr150_backend,
|
2013-11-23 14:57:06 -05:00
|
|
|
&mitsu70x_backend,
|
2014-12-11 16:16:56 -05:00
|
|
|
&mitsu9550_backend,
|
2013-12-03 22:21:44 -05:00
|
|
|
&dnpds40_backend,
|
2014-10-06 21:56:55 -04:00
|
|
|
&cw01_backend,
|
2013-07-18 23:39:36 -04:00
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
2013-07-17 23:39:31 -04:00
|
|
|
static int find_and_enumerate(struct libusb_context *ctx,
|
|
|
|
struct libusb_device ***list,
|
2014-01-20 19:48:36 -05:00
|
|
|
struct dyesub_backend *backend,
|
2013-07-17 23:39:31 -04:00
|
|
|
char *match_serno,
|
|
|
|
int scan_only)
|
|
|
|
{
|
|
|
|
int num;
|
2015-07-04 11:03:52 -04:00
|
|
|
int i, j = 0, k;
|
2013-07-17 23:39:31 -04:00
|
|
|
int found = -1;
|
|
|
|
|
|
|
|
/* Enumerate and find suitable device */
|
|
|
|
num = libusb_get_device_list(ctx, list);
|
|
|
|
|
|
|
|
for (i = 0 ; i < num ; i++) {
|
|
|
|
struct libusb_device_descriptor desc;
|
|
|
|
int match = 0;
|
|
|
|
libusb_get_device_descriptor((*list)[i], &desc);
|
2014-03-13 19:50:48 -04:00
|
|
|
|
2013-07-18 23:39:36 -04:00
|
|
|
for (k = 0 ; backends[k] ; k++) {
|
2014-01-20 19:48:36 -05:00
|
|
|
if (backend && backend != backends[k])
|
|
|
|
continue;
|
2013-07-18 23:39:36 -04:00
|
|
|
for (j = 0 ; backends[k]->devices[j].vid ; j++) {
|
2015-08-12 22:51:45 -04:00
|
|
|
if (extra_pid != -1 &&
|
|
|
|
extra_vid != -1 &&
|
|
|
|
extra_type != -1) {
|
|
|
|
if (backends[k]->devices[j].type == extra_type &&
|
|
|
|
extra_vid == desc.idVendor &&
|
|
|
|
extra_pid == desc.idProduct) {
|
|
|
|
match = 1;
|
|
|
|
found = i;
|
|
|
|
goto match;
|
|
|
|
}
|
|
|
|
}
|
2013-07-18 23:39:36 -04:00
|
|
|
if (desc.idVendor == backends[k]->devices[j].vid &&
|
|
|
|
desc.idProduct == backends[k]->devices[j].pid) {
|
|
|
|
match = 1;
|
2015-08-12 22:51:45 -04:00
|
|
|
found = i;
|
2013-07-18 23:54:43 -04:00
|
|
|
goto match;
|
2013-07-18 23:39:36 -04:00
|
|
|
}
|
2013-07-17 23:39:31 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!match)
|
|
|
|
continue;
|
|
|
|
|
2015-08-12 22:51:45 -04:00
|
|
|
match:
|
2013-07-17 23:39:31 -04:00
|
|
|
found = print_scan_output((*list)[i], &desc,
|
2013-07-18 23:39:36 -04:00
|
|
|
URI_PREFIX, backends[k]->devices[j].manuf_str,
|
2015-08-12 22:51:45 -04:00
|
|
|
found,
|
2013-07-24 13:49:06 -04:00
|
|
|
scan_only, match_serno,
|
|
|
|
backends[k]);
|
2013-08-19 18:33:32 -04:00
|
|
|
|
|
|
|
if (found != -1 && !scan_only)
|
|
|
|
break;
|
2013-07-17 23:39:31 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return found;
|
|
|
|
}
|
2013-07-18 08:46:44 -04:00
|
|
|
|
2013-07-18 12:45:35 -04:00
|
|
|
static struct dyesub_backend *find_backend(char *uri_prefix)
|
|
|
|
{
|
|
|
|
int i;
|
2014-02-11 13:41:15 -05:00
|
|
|
|
2013-07-18 12:45:35 -04:00
|
|
|
|
|
|
|
if (!uri_prefix)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
for (i = 0; ; i++) {
|
2014-02-11 13:41:15 -05:00
|
|
|
struct dyesub_backend *backend = backends[i];
|
2013-07-18 12:45:35 -04:00
|
|
|
if (!backend)
|
|
|
|
return NULL;
|
|
|
|
if (!strcmp(uri_prefix, backend->uri_prefix))
|
|
|
|
return backend;
|
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2015-08-13 21:09:56 -04:00
|
|
|
void print_license_blurb(void)
|
2014-02-11 00:22:37 -05:00
|
|
|
{
|
|
|
|
const char *license = "\n\
|
2015-01-05 21:39:22 -05:00
|
|
|
Copyright 2007-2015 Solomon Peachy <pizza AT shaftnet DOT org>\n\
|
2014-02-11 00:22:37 -05:00
|
|
|
\n\
|
|
|
|
This program is free software; you can redistribute it and/or modify it\n\
|
|
|
|
under the terms of the GNU General Public License as published by the Free\n\
|
|
|
|
Software Foundation; either version 3 of the License, or (at your option)\n\
|
|
|
|
any later version.\n\
|
|
|
|
\n\
|
|
|
|
This program is distributed in the hope that it will be useful, but\n\
|
|
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY\n\
|
|
|
|
or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n\
|
|
|
|
for more details.\n\
|
|
|
|
\n\
|
|
|
|
You should have received a copy of the GNU General Public License\n\
|
|
|
|
along with this program; if not, write to the Free Software\n\
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n\
|
|
|
|
\n [http://www.gnu.org/licenses/gpl-3.0.html]\n\n";
|
|
|
|
|
2014-02-11 16:33:53 -05:00
|
|
|
fprintf(stderr, "%s", license);
|
2014-02-11 00:22:37 -05:00
|
|
|
}
|
|
|
|
|
2015-08-13 21:09:56 -04:00
|
|
|
void print_help(char *argv0, struct dyesub_backend *backend)
|
2014-02-10 20:10:36 -05:00
|
|
|
{
|
|
|
|
struct libusb_context *ctx = NULL;
|
|
|
|
struct libusb_device **list = NULL;
|
2014-03-26 09:20:09 -04:00
|
|
|
int i;
|
2014-02-10 20:10:36 -05:00
|
|
|
|
|
|
|
char *ptr = strrchr(argv0, '/');
|
|
|
|
if (ptr)
|
|
|
|
ptr++;
|
|
|
|
else
|
|
|
|
ptr = argv0;
|
|
|
|
|
|
|
|
if (!backend)
|
|
|
|
backend = find_backend(ptr);
|
|
|
|
|
|
|
|
if (!backend) {
|
2014-02-11 13:41:15 -05:00
|
|
|
int i;
|
2015-08-12 20:56:51 -04:00
|
|
|
DEBUG("Environment variables:\n");
|
|
|
|
DEBUG(" DYESUB_DEBUG EXTRA_PID EXTRA_VID EXTRA_TYPE BACKEND SERIAL\n");
|
2014-02-10 20:10:36 -05:00
|
|
|
DEBUG("CUPS Usage:\n");
|
|
|
|
DEBUG("\tDEVICE_URI=someuri %s job user title num-copies options [ filename ]\n", URI_PREFIX);
|
|
|
|
DEBUG("\n");
|
|
|
|
DEBUG("Standalone Usage:\n");
|
|
|
|
DEBUG("\t%s\n", URI_PREFIX);
|
2015-08-12 20:56:51 -04:00
|
|
|
DEBUG(" [ -D ] [ -G ] [ -f ]\n");
|
2015-08-13 21:09:56 -04:00
|
|
|
DEBUG(" [ -S serialnum ] \n");
|
2014-02-10 20:10:36 -05:00
|
|
|
DEBUG(" [ -V extra_vid ] [ -P extra_pid ] [ -T extra_type ] \n");
|
2014-02-12 09:30:43 -05:00
|
|
|
DEBUG(" [ backend_specific_args ] \n");
|
2015-08-12 20:56:51 -04:00
|
|
|
DEBUG(" [ -d copies ] \n");
|
|
|
|
DEBUG(" [ - | infile ] \n");
|
2014-02-10 20:10:36 -05:00
|
|
|
for (i = 0; ; i++) {
|
|
|
|
backend = backends[i];
|
|
|
|
if (!backend)
|
|
|
|
break;
|
2015-08-13 21:09:56 -04:00
|
|
|
DEBUG(" BACKEND=%s\t# %s version %s\n",
|
2014-02-10 20:10:36 -05:00
|
|
|
backend->uri_prefix, backend->name, backend->version);
|
2014-02-10 22:25:20 -05:00
|
|
|
if (backend->cmdline_usage)
|
2014-02-10 20:10:36 -05:00
|
|
|
backend->cmdline_usage();
|
|
|
|
}
|
|
|
|
} else {
|
|