2007-10-26 23:10:32 +00:00
|
|
|
/*
|
2012-09-26 10:41:13 +00:00
|
|
|
* Digital Persona U.are.U 4000/4000B/4500 driver for libfprint
|
2008-02-17 00:08:56 +00:00
|
|
|
* Copyright (C) 2007-2008 Daniel Drake <dsd@gentoo.org>
|
2012-09-26 10:41:13 +00:00
|
|
|
* Copyright (C) 2012 Timo Teräs <timo.teras@iki.fi>
|
2007-10-26 23:10:32 +00:00
|
|
|
*
|
|
|
|
* This library 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 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define FP_COMPONENT "uru4000"
|
|
|
|
|
2010-08-24 23:42:01 +00:00
|
|
|
#include <nss.h>
|
|
|
|
#include <pk11pub.h>
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2018-05-28 10:07:45 +00:00
|
|
|
#include "drivers_api.h"
|
2012-11-10 15:37:41 +00:00
|
|
|
|
2008-01-30 14:16:35 +00:00
|
|
|
#define EP_INTR (1 | LIBUSB_ENDPOINT_IN)
|
|
|
|
#define EP_DATA (2 | LIBUSB_ENDPOINT_IN)
|
2007-10-26 23:10:32 +00:00
|
|
|
#define USB_RQ 0x04
|
2008-03-29 18:11:17 +00:00
|
|
|
#define CTRL_IN (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_IN)
|
|
|
|
#define CTRL_OUT (LIBUSB_REQUEST_TYPE_VENDOR | LIBUSB_ENDPOINT_OUT)
|
2012-09-26 10:41:13 +00:00
|
|
|
#define CTRL_TIMEOUT 5000
|
|
|
|
#define BULK_TIMEOUT 5000
|
2007-10-26 23:10:32 +00:00
|
|
|
#define IRQ_LENGTH 64
|
2007-11-16 17:25:41 +00:00
|
|
|
#define CR_LENGTH 16
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2012-09-26 10:41:13 +00:00
|
|
|
#define IMAGE_HEIGHT 290
|
|
|
|
#define IMAGE_WIDTH 384
|
|
|
|
|
2016-11-10 22:25:28 +00:00
|
|
|
#define ENC_THRESHOLD 5000
|
2016-07-19 03:46:20 +00:00
|
|
|
|
2007-10-26 23:10:32 +00:00
|
|
|
enum {
|
|
|
|
IRQDATA_SCANPWR_ON = 0x56aa,
|
|
|
|
IRQDATA_FINGER_ON = 0x0101,
|
|
|
|
IRQDATA_FINGER_OFF = 0x0200,
|
2007-10-31 22:42:09 +00:00
|
|
|
IRQDATA_DEATH = 0x0800,
|
2007-10-26 23:10:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
REG_HWSTAT = 0x07,
|
2012-09-26 10:41:13 +00:00
|
|
|
REG_SCRAMBLE_DATA_INDEX = 0x33,
|
|
|
|
REG_SCRAMBLE_DATA_KEY = 0x34,
|
2007-10-26 23:10:32 +00:00
|
|
|
REG_MODE = 0x4e,
|
2012-09-26 10:41:13 +00:00
|
|
|
REG_DEVICE_INFO = 0xf0,
|
2008-03-19 17:46:59 +00:00
|
|
|
/* firmware starts at 0x100 */
|
2007-11-16 17:25:41 +00:00
|
|
|
REG_RESPONSE = 0x2000,
|
|
|
|
REG_CHALLENGE = 0x2010,
|
2007-10-26 23:10:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MODE_INIT = 0x00,
|
|
|
|
MODE_AWAIT_FINGER_ON = 0x10,
|
|
|
|
MODE_AWAIT_FINGER_OFF = 0x12,
|
|
|
|
MODE_CAPTURE = 0x20,
|
2012-09-26 10:41:13 +00:00
|
|
|
MODE_CAPTURE_AUX = 0x30,
|
|
|
|
MODE_OFF = 0x70,
|
2007-10-26 23:10:32 +00:00
|
|
|
MODE_READY = 0x80,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
MS_KBD,
|
|
|
|
MS_INTELLIMOUSE,
|
|
|
|
MS_STANDALONE,
|
|
|
|
MS_STANDALONE_V2,
|
|
|
|
DP_URU4000,
|
|
|
|
DP_URU4000B,
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct uru4k_dev_profile {
|
|
|
|
const char *name;
|
2007-11-16 17:25:41 +00:00
|
|
|
gboolean auth_cr;
|
2012-09-26 10:41:13 +00:00
|
|
|
gboolean encryption;
|
2007-10-26 23:10:32 +00:00
|
|
|
} uru4k_dev_info[] = {
|
|
|
|
[MS_KBD] = {
|
|
|
|
.name = "Microsoft Keyboard with Fingerprint Reader",
|
2007-11-16 17:25:41 +00:00
|
|
|
.auth_cr = FALSE,
|
2007-10-26 23:10:32 +00:00
|
|
|
},
|
|
|
|
[MS_INTELLIMOUSE] = {
|
|
|
|
.name = "Microsoft Wireless IntelliMouse with Fingerprint Reader",
|
2007-11-16 17:25:41 +00:00
|
|
|
.auth_cr = FALSE,
|
2007-10-26 23:10:32 +00:00
|
|
|
},
|
|
|
|
[MS_STANDALONE] = {
|
|
|
|
.name = "Microsoft Fingerprint Reader",
|
2007-11-16 17:25:41 +00:00
|
|
|
.auth_cr = FALSE,
|
|
|
|
},
|
|
|
|
[MS_STANDALONE_V2] = {
|
|
|
|
.name = "Microsoft Fingerprint Reader v2",
|
2010-08-24 23:42:01 +00:00
|
|
|
.auth_cr = TRUE,
|
2007-11-04 21:12:48 +00:00
|
|
|
},
|
|
|
|
[DP_URU4000] = {
|
|
|
|
.name = "Digital Persona U.are.U 4000",
|
2007-11-16 17:25:41 +00:00
|
|
|
.auth_cr = FALSE,
|
2007-10-26 23:10:32 +00:00
|
|
|
},
|
|
|
|
[DP_URU4000B] = {
|
|
|
|
.name = "Digital Persona U.are.U 4000B",
|
2007-11-16 17:25:41 +00:00
|
|
|
.auth_cr = FALSE,
|
2012-09-26 10:41:13 +00:00
|
|
|
.encryption = TRUE,
|
2007-10-26 23:10:32 +00:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
typedef void (*irq_cb_fn)(struct fp_img_dev *dev, int status, uint16_t type,
|
|
|
|
void *user_data);
|
|
|
|
typedef void (*irqs_stopped_cb_fn)(struct fp_img_dev *dev);
|
|
|
|
|
2007-10-26 23:10:32 +00:00
|
|
|
struct uru4k_dev {
|
2007-11-04 21:12:48 +00:00
|
|
|
const struct uru4k_dev_profile *profile;
|
2007-10-26 23:10:32 +00:00
|
|
|
uint8_t interface;
|
2008-02-17 00:08:56 +00:00
|
|
|
enum fp_imgdev_state activate_state;
|
2012-09-26 10:41:13 +00:00
|
|
|
unsigned char last_reg_rd[16];
|
2008-03-19 17:25:53 +00:00
|
|
|
unsigned char last_hwstat;
|
2008-02-17 00:08:56 +00:00
|
|
|
|
2018-09-26 13:52:49 +00:00
|
|
|
fpi_usb_transfer *irq_transfer;
|
|
|
|
fpi_usb_transfer *img_transfer;
|
2012-09-26 10:41:13 +00:00
|
|
|
void *img_data;
|
2018-09-26 13:52:49 +00:00
|
|
|
int img_data_actual_length;
|
2012-09-26 10:41:13 +00:00
|
|
|
uint16_t img_lines_done, img_block;
|
|
|
|
uint32_t img_enc_seed;
|
2008-02-17 00:08:56 +00:00
|
|
|
|
|
|
|
irq_cb_fn irq_cb;
|
|
|
|
void *irq_cb_data;
|
|
|
|
irqs_stopped_cb_fn irqs_stopped_cb;
|
|
|
|
|
|
|
|
int rebootpwr_ctr;
|
|
|
|
int powerup_ctr;
|
|
|
|
unsigned char powerup_hwstat;
|
|
|
|
|
2008-03-03 23:24:00 +00:00
|
|
|
int scanpwr_irq_timeouts;
|
2018-09-05 15:34:59 +00:00
|
|
|
fpi_timeout *scanpwr_irq_timeout;
|
2008-03-03 23:24:00 +00:00
|
|
|
|
2008-03-19 17:46:59 +00:00
|
|
|
int fwfixer_offset;
|
|
|
|
unsigned char fwfixer_value;
|
|
|
|
|
2010-08-24 23:42:01 +00:00
|
|
|
CK_MECHANISM_TYPE cipher;
|
|
|
|
PK11SlotInfo *slot;
|
|
|
|
PK11SymKey *symkey;
|
|
|
|
SECItem *param;
|
2007-11-16 17:25:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
/* For 2nd generation MS devices */
|
|
|
|
static const unsigned char crkey[] = {
|
|
|
|
0x79, 0xac, 0x91, 0x79, 0x5c, 0xa1, 0x47, 0x8e,
|
|
|
|
0x98, 0xe0, 0x0f, 0x3c, 0x59, 0x8f, 0x5f, 0x4b,
|
2007-10-26 23:10:32 +00:00
|
|
|
};
|
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
/***** REGISTER I/O *****/
|
|
|
|
|
|
|
|
typedef void (*write_regs_cb_fn)(struct fp_img_dev *dev, int status,
|
2008-02-17 00:08:56 +00:00
|
|
|
void *user_data);
|
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
struct write_regs_data {
|
|
|
|
struct fp_img_dev *dev;
|
|
|
|
write_regs_cb_fn callback;
|
|
|
|
void *user_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void write_regs_cb(struct libusb_transfer *transfer)
|
|
|
|
{
|
|
|
|
struct write_regs_data *wrdata = transfer->user_data;
|
|
|
|
struct libusb_control_setup *setup =
|
|
|
|
libusb_control_transfer_get_setup(transfer);
|
|
|
|
int r = 0;
|
|
|
|
|
|
|
|
if (transfer->status != LIBUSB_TRANSFER_COMPLETED)
|
|
|
|
r = -EIO;
|
|
|
|
else if (transfer->actual_length != setup->wLength)
|
|
|
|
r = -EPROTO;
|
|
|
|
|
|
|
|
g_free(transfer->buffer);
|
|
|
|
libusb_free_transfer(transfer);
|
|
|
|
wrdata->callback(wrdata->dev, r, wrdata->user_data);
|
|
|
|
g_free(wrdata);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int write_regs(struct fp_img_dev *dev, uint16_t first_reg,
|
|
|
|
uint16_t num_regs, unsigned char *values, write_regs_cb_fn callback,
|
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
struct write_regs_data *wrdata;
|
2018-09-19 15:06:17 +00:00
|
|
|
struct libusb_transfer *transfer = fpi_usb_alloc();
|
2008-03-19 17:25:53 +00:00
|
|
|
unsigned char *data;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
wrdata = g_malloc(sizeof(*wrdata));
|
|
|
|
wrdata->dev = dev;
|
|
|
|
wrdata->callback = callback;
|
|
|
|
wrdata->user_data = user_data;
|
|
|
|
|
|
|
|
data = g_malloc(LIBUSB_CONTROL_SETUP_SIZE + num_regs);
|
|
|
|
memcpy(data + LIBUSB_CONTROL_SETUP_SIZE, values, num_regs);
|
|
|
|
libusb_fill_control_setup(data, CTRL_OUT, USB_RQ, first_reg, 0, num_regs);
|
2018-09-14 22:53:25 +00:00
|
|
|
libusb_fill_control_transfer(transfer, fpi_dev_get_usb_dev(FP_DEV(dev)), data, write_regs_cb,
|
2008-03-19 17:25:53 +00:00
|
|
|
wrdata, CTRL_TIMEOUT);
|
|
|
|
|
|
|
|
r = libusb_submit_transfer(transfer);
|
|
|
|
if (r < 0) {
|
|
|
|
g_free(wrdata);
|
|
|
|
g_free(data);
|
|
|
|
libusb_free_transfer(transfer);
|
|
|
|
}
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int write_reg(struct fp_img_dev *dev, uint16_t reg,
|
|
|
|
unsigned char value, write_regs_cb_fn callback, void *user_data)
|
|
|
|
{
|
|
|
|
return write_regs(dev, reg, 1, &value, callback, user_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef void (*read_regs_cb_fn)(struct fp_img_dev *dev, int status,
|
2012-09-26 10:41:13 +00:00
|
|
|
uint16_t num_regs, unsigned char *data, void *user_data);
|
2008-03-19 17:25:53 +00:00
|
|
|
|
|
|
|
struct read_regs_data {
|
2008-02-17 00:08:56 +00:00
|
|
|
struct fp_img_dev *dev;
|
2008-03-19 17:25:53 +00:00
|
|
|
read_regs_cb_fn callback;
|
2008-02-17 00:08:56 +00:00
|
|
|
void *user_data;
|
|
|
|
};
|
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
static void read_regs_cb(struct libusb_transfer *transfer)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2008-03-19 17:25:53 +00:00
|
|
|
struct read_regs_data *rrdata = transfer->user_data;
|
|
|
|
struct libusb_control_setup *setup =
|
|
|
|
libusb_control_transfer_get_setup(transfer);
|
|
|
|
unsigned char *data = NULL;
|
2008-02-17 00:08:56 +00:00
|
|
|
int r = 0;
|
|
|
|
|
2008-03-10 11:35:58 +00:00
|
|
|
if (transfer->status != LIBUSB_TRANSFER_COMPLETED)
|
2008-02-17 00:08:56 +00:00
|
|
|
r = -EIO;
|
2008-03-19 17:25:53 +00:00
|
|
|
else if (transfer->actual_length != setup->wLength)
|
2008-02-17 00:08:56 +00:00
|
|
|
r = -EPROTO;
|
2008-03-19 17:25:53 +00:00
|
|
|
else
|
|
|
|
data = libusb_control_transfer_get_data(transfer);
|
2008-02-17 00:08:56 +00:00
|
|
|
|
2012-09-26 10:41:13 +00:00
|
|
|
rrdata->callback(rrdata->dev, r, transfer->actual_length, data, rrdata->user_data);
|
2008-03-19 17:25:53 +00:00
|
|
|
g_free(rrdata);
|
2008-03-10 11:35:58 +00:00
|
|
|
g_free(transfer->buffer);
|
|
|
|
libusb_free_transfer(transfer);
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
static int read_regs(struct fp_img_dev *dev, uint16_t first_reg,
|
|
|
|
uint16_t num_regs, read_regs_cb_fn callback, void *user_data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2008-03-19 17:25:53 +00:00
|
|
|
struct read_regs_data *rrdata;
|
2018-09-19 15:06:17 +00:00
|
|
|
struct libusb_transfer *transfer = fpi_usb_alloc();
|
2008-03-10 11:35:58 +00:00
|
|
|
unsigned char *data;
|
|
|
|
int r;
|
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
rrdata = g_malloc(sizeof(*rrdata));
|
|
|
|
rrdata->dev = dev;
|
|
|
|
rrdata->callback = callback;
|
|
|
|
rrdata->user_data = user_data;
|
2008-02-17 00:08:56 +00:00
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
data = g_malloc(LIBUSB_CONTROL_SETUP_SIZE + num_regs);
|
|
|
|
libusb_fill_control_setup(data, CTRL_IN, USB_RQ, first_reg, 0, num_regs);
|
2018-09-14 22:53:25 +00:00
|
|
|
libusb_fill_control_transfer(transfer, fpi_dev_get_usb_dev(FP_DEV(dev)), data, read_regs_cb,
|
2008-03-19 17:25:53 +00:00
|
|
|
rrdata, CTRL_TIMEOUT);
|
2008-03-10 11:35:58 +00:00
|
|
|
|
|
|
|
r = libusb_submit_transfer(transfer);
|
|
|
|
if (r < 0) {
|
2008-03-19 17:25:53 +00:00
|
|
|
g_free(rrdata);
|
2008-03-10 11:35:58 +00:00
|
|
|
g_free(data);
|
|
|
|
libusb_free_transfer(transfer);
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
2008-03-10 11:35:58 +00:00
|
|
|
return r;
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
|
|
|
|
2007-10-31 22:42:09 +00:00
|
|
|
/*
|
|
|
|
* HWSTAT
|
|
|
|
*
|
|
|
|
* This register has caused me a lot of headaches. It pretty much defines
|
|
|
|
* code flow, and if you don't get it right, the pretty lights don't come on.
|
|
|
|
* I think the situation is somewhat complicated by the fact that writing it
|
|
|
|
* doesn't affect the read results in the way you'd expect -- but then again
|
|
|
|
* it does have some obvious effects. Here's what we know
|
|
|
|
*
|
|
|
|
* BIT 7: LOW POWER MODE
|
|
|
|
* When this bit is set, the device is partially turned off or something. Some
|
|
|
|
* things, like firmware upload, need to be done in this state. But generally
|
|
|
|
* we want to clear this bit during late initialization, which can sometimes
|
|
|
|
* be tricky.
|
|
|
|
*
|
|
|
|
* BIT 2: SOMETHING WENT WRONG
|
|
|
|
* Not sure about this, but see the init function, as when we detect it,
|
|
|
|
* we reboot the device. Well, we mess with hwstat until this evil bit gets
|
|
|
|
* cleared.
|
|
|
|
*
|
|
|
|
* BIT 1: IRQ PENDING
|
|
|
|
* Just had a brainwave. This bit is set when the device is trying to deliver
|
2018-09-26 13:21:01 +00:00
|
|
|
* an interrupt to the host. Maybe?
|
2007-10-31 22:42:09 +00:00
|
|
|
*/
|
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
static void response_cb(struct fp_img_dev *dev, int status, void *user_data)
|
2007-10-26 23:10:32 +00:00
|
|
|
{
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm = user_data;
|
2008-03-19 17:25:53 +00:00
|
|
|
if (status == 0)
|
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
else
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, status);
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
static void challenge_cb(struct fp_img_dev *dev, int status,
|
2012-09-26 10:41:13 +00:00
|
|
|
uint16_t num_regs, unsigned char *data, void *user_data)
|
2007-10-26 23:10:32 +00:00
|
|
|
{
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm = user_data;
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2008-03-10 11:35:58 +00:00
|
|
|
unsigned char *respdata;
|
2010-08-24 23:42:01 +00:00
|
|
|
PK11Context *ctx;
|
|
|
|
int r, outlen;
|
2008-03-10 11:35:58 +00:00
|
|
|
|
2010-08-24 23:42:01 +00:00
|
|
|
r = status;
|
2008-03-19 17:25:53 +00:00
|
|
|
if (status != 0) {
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, status);
|
2008-03-19 17:25:53 +00:00
|
|
|
return;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2008-03-10 11:35:58 +00:00
|
|
|
/* submit response */
|
2008-02-17 00:08:56 +00:00
|
|
|
/* produce response from challenge */
|
2008-03-19 17:25:53 +00:00
|
|
|
respdata = g_malloc(CR_LENGTH);
|
2010-08-24 23:42:01 +00:00
|
|
|
ctx = PK11_CreateContextBySymKey(urudev->cipher, CKA_ENCRYPT,
|
|
|
|
urudev->symkey, urudev->param);
|
|
|
|
if (PK11_CipherOp(ctx, respdata, &outlen, CR_LENGTH, data, CR_LENGTH) != SECSuccess
|
|
|
|
|| PK11_Finalize(ctx) != SECSuccess) {
|
|
|
|
fp_err("Failed to encrypt challenge data");
|
|
|
|
r = -ECONNABORTED;
|
|
|
|
g_free(respdata);
|
|
|
|
}
|
|
|
|
PK11_DestroyContext(ctx, PR_TRUE);
|
|
|
|
|
|
|
|
if (r >= 0) {
|
|
|
|
r = write_regs(dev, REG_RESPONSE, CR_LENGTH, respdata, response_cb, ssm);
|
|
|
|
g_free(respdata);
|
|
|
|
}
|
2008-03-19 17:25:53 +00:00
|
|
|
if (r < 0)
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, r);
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
/*
|
|
|
|
* 2nd generation MS devices added an AES-based challenge/response
|
|
|
|
* authentication scheme, where the device challenges the authenticity of the
|
|
|
|
* driver.
|
|
|
|
*/
|
2018-09-18 12:26:00 +00:00
|
|
|
static void
|
|
|
|
sm_do_challenge_response(fpi_ssm *ssm,
|
|
|
|
struct fp_img_dev *dev)
|
2007-11-16 17:25:41 +00:00
|
|
|
{
|
2008-03-10 11:35:58 +00:00
|
|
|
int r;
|
2008-01-30 14:16:35 +00:00
|
|
|
|
2018-05-23 16:26:22 +00:00
|
|
|
G_DEBUG_HERE();
|
2008-03-19 17:25:53 +00:00
|
|
|
r = read_regs(dev, REG_CHALLENGE, CR_LENGTH, challenge_cb, ssm);
|
|
|
|
if (r < 0)
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, r);
|
2007-11-16 17:25:41 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
/***** INTERRUPT HANDLING *****/
|
2008-01-30 14:16:35 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
#define IRQ_HANDLER_IS_RUNNING(urudev) ((urudev)->irq_transfer)
|
2007-11-16 17:25:41 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
static int start_irq_handler(struct fp_img_dev *dev);
|
2007-11-16 17:25:41 +00:00
|
|
|
|
2018-09-26 13:52:49 +00:00
|
|
|
static void irq_handler(struct libusb_transfer *transfer,
|
|
|
|
struct fp_dev *_dev,
|
|
|
|
fpi_ssm *ssm,
|
|
|
|
void *user_data)
|
2007-11-16 17:25:41 +00:00
|
|
|
{
|
2018-09-26 13:52:49 +00:00
|
|
|
struct fp_img_dev *dev = FP_IMG_DEV(_dev);
|
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(_dev);
|
2008-03-10 11:35:58 +00:00
|
|
|
unsigned char *data = transfer->buffer;
|
2008-02-17 00:08:56 +00:00
|
|
|
uint16_t type;
|
|
|
|
int r = 0;
|
2007-11-16 17:25:41 +00:00
|
|
|
|
2008-03-10 11:35:58 +00:00
|
|
|
if (transfer->status == LIBUSB_TRANSFER_CANCELLED) {
|
2008-02-17 00:08:56 +00:00
|
|
|
fp_dbg("cancelled");
|
|
|
|
if (urudev->irqs_stopped_cb)
|
|
|
|
urudev->irqs_stopped_cb(dev);
|
|
|
|
urudev->irqs_stopped_cb = NULL;
|
|
|
|
goto out;
|
2008-03-10 11:35:58 +00:00
|
|
|
} else if (transfer->status != LIBUSB_TRANSFER_COMPLETED) {
|
2008-02-17 00:08:56 +00:00
|
|
|
r = -EIO;
|
|
|
|
goto err;
|
2008-03-10 11:35:58 +00:00
|
|
|
} else if (transfer->actual_length != transfer->length) {
|
|
|
|
fp_err("short interrupt read? %d", transfer->actual_length);
|
2008-02-17 00:08:56 +00:00
|
|
|
r = -EPROTO;
|
|
|
|
goto err;
|
2007-11-16 17:25:41 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
type = GUINT16_FROM_BE(*((uint16_t *) data));
|
|
|
|
fp_dbg("recv irq type %04x", type);
|
2007-11-16 17:25:41 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
/* The 0800 interrupt seems to indicate imminent failure (0 bytes transfer)
|
|
|
|
* of the next scan. It still appears on occasion. */
|
|
|
|
if (type == IRQDATA_DEATH)
|
|
|
|
fp_warn("oh no! got the interrupt OF DEATH! expect things to go bad");
|
|
|
|
|
|
|
|
if (urudev->irq_cb)
|
|
|
|
urudev->irq_cb(dev, 0, type, urudev->irq_cb_data);
|
|
|
|
else
|
|
|
|
fp_dbg("ignoring interrupt");
|
2007-11-16 17:25:41 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
r = start_irq_handler(dev);
|
|
|
|
if (r == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
err:
|
|
|
|
if (urudev->irq_cb)
|
|
|
|
urudev->irq_cb(dev, r, 0, urudev->irq_cb_data);
|
|
|
|
out:
|
|
|
|
urudev->irq_transfer = NULL;
|
2007-11-16 17:25:41 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
static int start_irq_handler(struct fp_img_dev *dev)
|
2007-10-26 23:10:32 +00:00
|
|
|
{
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2018-09-26 13:52:49 +00:00
|
|
|
fpi_usb_transfer *transfer;
|
2008-03-10 11:35:58 +00:00
|
|
|
unsigned char *data;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
data = g_malloc(IRQ_LENGTH);
|
2018-09-26 13:52:49 +00:00
|
|
|
transfer = fpi_usb_fill_bulk_transfer(FP_DEV(dev),
|
|
|
|
NULL,
|
|
|
|
EP_INTR,
|
|
|
|
data,
|
|
|
|
IRQ_LENGTH,
|
|
|
|
irq_handler,
|
|
|
|
NULL,
|
|
|
|
0);
|
2008-03-10 11:35:58 +00:00
|
|
|
|
|
|
|
urudev->irq_transfer = transfer;
|
2018-09-26 13:52:49 +00:00
|
|
|
r = fpi_usb_submit_transfer(transfer);
|
|
|
|
if (r < 0)
|
2008-03-10 11:35:58 +00:00
|
|
|
urudev->irq_transfer = NULL;
|
|
|
|
return r;
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
static void stop_irq_handler(struct fp_img_dev *dev, irqs_stopped_cb_fn cb)
|
|
|
|
{
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2018-09-26 13:52:49 +00:00
|
|
|
fpi_usb_transfer *transfer = urudev->irq_transfer;
|
2008-03-10 11:35:58 +00:00
|
|
|
if (transfer) {
|
2018-09-26 13:52:49 +00:00
|
|
|
fpi_usb_cancel_transfer(transfer);
|
2008-02-17 00:08:56 +00:00
|
|
|
urudev->irqs_stopped_cb = cb;
|
|
|
|
}
|
|
|
|
}
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
/***** STATE CHANGING *****/
|
2007-10-31 22:42:09 +00:00
|
|
|
|
2012-09-26 10:41:13 +00:00
|
|
|
static int execute_state_change(struct fp_img_dev *dev);
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
static void finger_presence_irq_cb(struct fp_img_dev *dev, int status,
|
|
|
|
uint16_t type, void *user_data)
|
2007-10-26 23:10:32 +00:00
|
|
|
{
|
2008-02-17 00:08:56 +00:00
|
|
|
if (status)
|
|
|
|
fpi_imgdev_session_error(dev, status);
|
|
|
|
else if (type == IRQDATA_FINGER_ON)
|
|
|
|
fpi_imgdev_report_finger_status(dev, TRUE);
|
|
|
|
else if (type == IRQDATA_FINGER_OFF)
|
|
|
|
fpi_imgdev_report_finger_status(dev, FALSE);
|
|
|
|
else
|
|
|
|
fp_warn("ignoring unexpected interrupt %04x", type);
|
|
|
|
}
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
static void change_state_write_reg_cb(struct fp_img_dev *dev, int status,
|
2008-02-17 00:08:56 +00:00
|
|
|
void *user_data)
|
|
|
|
{
|
|
|
|
if (status)
|
|
|
|
fpi_imgdev_session_error(dev, status);
|
|
|
|
}
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
static int dev_change_state(struct fp_img_dev *dev, enum fp_imgdev_state state)
|
|
|
|
{
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2007-10-31 22:42:09 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
switch (state) {
|
2012-09-26 10:41:13 +00:00
|
|
|
case IMGDEV_STATE_INACTIVE:
|
2008-02-17 00:08:56 +00:00
|
|
|
case IMGDEV_STATE_AWAIT_FINGER_ON:
|
|
|
|
case IMGDEV_STATE_AWAIT_FINGER_OFF:
|
2012-09-26 10:41:13 +00:00
|
|
|
case IMGDEV_STATE_CAPTURE:
|
|
|
|
break;
|
2008-02-17 00:08:56 +00:00
|
|
|
default:
|
|
|
|
fp_err("unrecognised state %d", state);
|
|
|
|
return -EINVAL;
|
2007-10-31 22:42:09 +00:00
|
|
|
}
|
2012-09-26 10:41:13 +00:00
|
|
|
|
|
|
|
urudev->activate_state = state;
|
|
|
|
if (urudev->img_transfer != NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return execute_state_change(dev);
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
/***** GENERIC STATE MACHINE HELPER FUNCTIONS *****/
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
static void sm_write_reg_cb(struct fp_img_dev *dev, int result, void *user_data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm = user_data;
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
if (result)
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, result);
|
2007-10-31 22:42:09 +00:00
|
|
|
else
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_next_state(ssm);
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 12:26:00 +00:00
|
|
|
static void
|
|
|
|
sm_write_regs(fpi_ssm *ssm,
|
|
|
|
struct fp_img_dev *dev,
|
|
|
|
uint16_t first_reg,
|
|
|
|
uint16_t num_regs,
|
|
|
|
void *data)
|
2007-10-26 23:10:32 +00:00
|
|
|
{
|
2012-09-26 10:41:13 +00:00
|
|
|
int r = write_regs(dev, first_reg, num_regs, data, sm_write_reg_cb, ssm);
|
2007-10-26 23:10:32 +00:00
|
|
|
if (r < 0)
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, r);
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 12:26:00 +00:00
|
|
|
static void
|
|
|
|
sm_write_reg(fpi_ssm *ssm,
|
|
|
|
struct fp_img_dev *dev,
|
|
|
|
uint16_t reg,
|
|
|
|
unsigned char value)
|
2012-09-26 10:41:13 +00:00
|
|
|
{
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_write_regs(ssm, dev, reg, 1, &value);
|
2012-09-26 10:41:13 +00:00
|
|
|
}
|
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
static void sm_read_reg_cb(struct fp_img_dev *dev, int result,
|
2012-09-26 10:41:13 +00:00
|
|
|
uint16_t num_regs, unsigned char *data, void *user_data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm = user_data;
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-03-19 17:25:53 +00:00
|
|
|
if (result) {
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, result);
|
2008-02-17 00:08:56 +00:00
|
|
|
} else {
|
2012-09-26 10:41:13 +00:00
|
|
|
memcpy(urudev->last_reg_rd, data, num_regs);
|
|
|
|
fp_dbg("reg value %x", urudev->last_reg_rd[0]);
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
}
|
|
|
|
}
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2018-12-12 15:03:35 +00:00
|
|
|
#define member_size(type, member) sizeof(((type *)0)->member)
|
|
|
|
|
2018-09-18 12:26:00 +00:00
|
|
|
static void
|
|
|
|
sm_read_regs(fpi_ssm *ssm,
|
|
|
|
struct fp_img_dev *dev,
|
|
|
|
uint16_t reg,
|
|
|
|
uint16_t num_regs)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2008-03-10 11:35:58 +00:00
|
|
|
int r;
|
2012-09-26 10:41:13 +00:00
|
|
|
|
2018-12-12 15:03:35 +00:00
|
|
|
if (num_regs > member_size(struct uru4k_dev, last_reg_rd)) {
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -EIO);
|
2012-09-26 10:41:13 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
fp_dbg("read %d regs at %x", num_regs, reg);
|
|
|
|
r = read_regs(dev, reg, num_regs, sm_read_reg_cb, ssm);
|
2008-03-19 17:25:53 +00:00
|
|
|
if (r < 0)
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, r);
|
2008-03-19 17:25:53 +00:00
|
|
|
}
|
2008-03-10 11:35:58 +00:00
|
|
|
|
2018-09-18 12:26:00 +00:00
|
|
|
static void
|
|
|
|
sm_read_reg(fpi_ssm *ssm,
|
|
|
|
struct fp_img_dev *dev,
|
|
|
|
uint16_t reg)
|
2008-03-19 17:25:53 +00:00
|
|
|
{
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_read_regs(ssm, dev, reg, 1);
|
2008-03-19 17:25:53 +00:00
|
|
|
}
|
2008-03-10 11:35:58 +00:00
|
|
|
|
2018-09-18 12:26:00 +00:00
|
|
|
static void
|
|
|
|
sm_set_hwstat(fpi_ssm *ssm,
|
|
|
|
struct fp_img_dev *dev,
|
|
|
|
unsigned char value)
|
2008-03-19 17:25:53 +00:00
|
|
|
{
|
|
|
|
fp_dbg("set %02x", value);
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_write_reg(ssm, dev, REG_HWSTAT, value);
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
|
|
|
|
2012-09-26 10:41:13 +00:00
|
|
|
/***** IMAGING LOOP *****/
|
2008-03-19 17:46:59 +00:00
|
|
|
|
2012-09-26 10:41:13 +00:00
|
|
|
enum imaging_states {
|
|
|
|
IMAGING_CAPTURE,
|
|
|
|
IMAGING_SEND_INDEX,
|
|
|
|
IMAGING_READ_KEY,
|
|
|
|
IMAGING_DECODE,
|
|
|
|
IMAGING_REPORT_IMAGE,
|
|
|
|
IMAGING_NUM_STATES
|
2008-03-19 17:46:59 +00:00
|
|
|
};
|
|
|
|
|
2018-09-26 13:52:49 +00:00
|
|
|
struct uru4k_image {
|
|
|
|
uint8_t unknown_00[4];
|
|
|
|
uint16_t num_lines;
|
|
|
|
uint8_t key_number;
|
|
|
|
uint8_t unknown_07[9];
|
|
|
|
struct {
|
|
|
|
uint8_t flags;
|
|
|
|
uint8_t num_lines;
|
|
|
|
} block_info[15];
|
|
|
|
uint8_t unknown_2E[18];
|
|
|
|
uint8_t data[IMAGE_HEIGHT][IMAGE_WIDTH];
|
|
|
|
};
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2018-09-26 13:52:49 +00:00
|
|
|
static void image_transfer_cb(struct libusb_transfer *transfer,
|
|
|
|
struct fp_dev *dev,
|
|
|
|
fpi_ssm *ssm,
|
|
|
|
void *user_data)
|
|
|
|
{
|
2012-09-26 10:41:13 +00:00
|
|
|
if (transfer->status == LIBUSB_TRANSFER_CANCELLED) {
|
|
|
|
fp_dbg("cancelled");
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -ECANCELED);
|
2012-09-26 10:41:13 +00:00
|
|
|
} else if (transfer->status != LIBUSB_TRANSFER_COMPLETED) {
|
|
|
|
fp_dbg("error");
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -EIO);
|
2008-02-17 00:08:56 +00:00
|
|
|
} else {
|
2018-09-26 13:52:49 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(dev);
|
|
|
|
|
|
|
|
urudev->img_data = g_memdup(transfer->buffer, sizeof(struct uru4k_image));
|
|
|
|
urudev->img_data_actual_length = transfer->actual_length;
|
2012-09-26 10:41:13 +00:00
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum {
|
|
|
|
BLOCKF_CHANGE_KEY = 0x80,
|
|
|
|
BLOCKF_NO_KEY_UPDATE = 0x04,
|
|
|
|
BLOCKF_ENCRYPTED = 0x02,
|
|
|
|
BLOCKF_NOT_PRESENT = 0x01,
|
|
|
|
};
|
|
|
|
|
|
|
|
static uint32_t update_key(uint32_t key)
|
|
|
|
{
|
|
|
|
/* linear feedback shift register
|
|
|
|
* taps at bit positions 1 3 4 7 11 13 20 23 26 29 32 */
|
|
|
|
uint32_t bit = key & 0x9248144d;
|
|
|
|
bit ^= bit << 16;
|
|
|
|
bit ^= bit << 8;
|
|
|
|
bit ^= bit << 4;
|
|
|
|
bit ^= bit << 2;
|
|
|
|
bit ^= bit << 1;
|
|
|
|
return (bit & 0x80000000) | (key >> 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint32_t do_decode(uint8_t *data, int num_bytes, uint32_t key)
|
|
|
|
{
|
|
|
|
uint8_t xorbyte;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < num_bytes - 1; i++) {
|
|
|
|
/* calculate xor byte and update key */
|
|
|
|
xorbyte = ((key >> 4) & 1) << 0;
|
|
|
|
xorbyte |= ((key >> 8) & 1) << 1;
|
|
|
|
xorbyte |= ((key >> 11) & 1) << 2;
|
|
|
|
xorbyte |= ((key >> 14) & 1) << 3;
|
|
|
|
xorbyte |= ((key >> 18) & 1) << 4;
|
|
|
|
xorbyte |= ((key >> 21) & 1) << 5;
|
|
|
|
xorbyte |= ((key >> 24) & 1) << 6;
|
|
|
|
xorbyte |= ((key >> 29) & 1) << 7;
|
|
|
|
key = update_key(key);
|
|
|
|
|
|
|
|
/* decrypt data */
|
|
|
|
data[i] = data[i+1] ^ xorbyte;
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
2012-09-26 10:41:13 +00:00
|
|
|
|
|
|
|
/* the final byte is implictly zero */
|
|
|
|
data[i] = 0;
|
|
|
|
return update_key(key);
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2016-07-19 03:46:20 +00:00
|
|
|
static int calc_dev2(struct uru4k_image *img)
|
|
|
|
{
|
|
|
|
uint8_t *b[2] = { NULL, NULL };
|
|
|
|
int res = 0, mean = 0, i, r, j, idx;
|
|
|
|
|
2018-05-28 15:04:49 +00:00
|
|
|
for (i = r = idx = 0; i < G_N_ELEMENTS(img->block_info) && idx < 2; i++) {
|
2016-07-19 03:46:20 +00:00
|
|
|
if (img->block_info[i].flags & BLOCKF_NOT_PRESENT)
|
|
|
|
continue;
|
|
|
|
for (j = 0; j < img->block_info[i].num_lines && idx < 2; j++)
|
|
|
|
b[idx++] = img->data[r++];
|
|
|
|
}
|
|
|
|
if (!b[0] || !b[1]) {
|
|
|
|
fp_dbg("NULL! %p %p", b[0], b[1]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
for (i = 0; i < IMAGE_WIDTH; i++)
|
|
|
|
mean += (int)b[0][i] + (int)b[1][i];
|
|
|
|
|
|
|
|
mean /= IMAGE_WIDTH;
|
|
|
|
|
|
|
|
for (i = 0; i < IMAGE_WIDTH; i++) {
|
|
|
|
int dev = (int)b[0][i] + (int)b[1][i] - mean;
|
|
|
|
res += dev * dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res / IMAGE_WIDTH;
|
|
|
|
}
|
|
|
|
|
2018-09-18 11:46:39 +00:00
|
|
|
static void imaging_run_state(fpi_ssm *ssm, struct fp_dev *_dev, void *user_data)
|
2007-11-04 21:12:48 +00:00
|
|
|
{
|
2018-09-18 12:26:00 +00:00
|
|
|
struct fp_img_dev *dev = user_data;
|
2018-09-18 15:57:32 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(_dev);
|
2012-09-26 10:41:13 +00:00
|
|
|
struct uru4k_image *img = urudev->img_data;
|
|
|
|
struct fp_img *fpimg;
|
|
|
|
uint32_t key;
|
|
|
|
uint8_t flags, num_lines;
|
2016-07-19 03:46:20 +00:00
|
|
|
int i, r, to, dev2;
|
2019-02-20 05:17:27 +00:00
|
|
|
unsigned char buf[5];
|
2008-03-10 11:35:58 +00:00
|
|
|
|
2018-05-28 10:40:22 +00:00
|
|
|
switch (fpi_ssm_get_cur_state(ssm)) {
|
2012-09-26 10:41:13 +00:00
|
|
|
case IMAGING_CAPTURE:
|
|
|
|
urudev->img_lines_done = 0;
|
|
|
|
urudev->img_block = 0;
|
2018-09-26 13:52:49 +00:00
|
|
|
r = fpi_usb_submit_transfer(urudev->img_transfer);
|
|
|
|
if (r < 0) {
|
|
|
|
urudev->img_transfer = NULL;
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -EIO);
|
2018-09-26 13:52:49 +00:00
|
|
|
}
|
2008-03-19 17:46:59 +00:00
|
|
|
break;
|
2012-09-26 10:41:13 +00:00
|
|
|
case IMAGING_SEND_INDEX:
|
|
|
|
fp_dbg("hw header lines %d", img->num_lines);
|
|
|
|
|
|
|
|
if (img->num_lines >= IMAGE_HEIGHT ||
|
2018-09-26 13:52:49 +00:00
|
|
|
urudev->img_data_actual_length < img->num_lines * IMAGE_WIDTH + 64) {
|
2012-11-16 17:38:52 +00:00
|
|
|
fp_err("bad captured image (%d lines) or size mismatch %d < %d",
|
2012-09-26 10:41:13 +00:00
|
|
|
img->num_lines,
|
2018-09-26 13:52:49 +00:00
|
|
|
urudev->img_data_actual_length,
|
2012-09-26 10:41:13 +00:00
|
|
|
img->num_lines * IMAGE_WIDTH + 64);
|
|
|
|
fpi_ssm_jump_to_state(ssm, IMAGING_CAPTURE);
|
2008-03-19 17:46:59 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-09-26 10:41:13 +00:00
|
|
|
if (!urudev->profile->encryption) {
|
2016-07-19 03:46:20 +00:00
|
|
|
dev2 = calc_dev2(img);
|
|
|
|
fp_dbg("dev2: %d", dev2);
|
|
|
|
if (dev2 < ENC_THRESHOLD) {
|
|
|
|
fpi_ssm_jump_to_state(ssm, IMAGING_REPORT_IMAGE);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
fp_info("image seems to be encrypted");
|
2012-09-26 10:41:13 +00:00
|
|
|
}
|
|
|
|
buf[0] = img->key_number;
|
|
|
|
buf[1] = urudev->img_enc_seed;
|
|
|
|
buf[2] = urudev->img_enc_seed >> 8;
|
|
|
|
buf[3] = urudev->img_enc_seed >> 16;
|
|
|
|
buf[4] = urudev->img_enc_seed >> 24;
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_write_regs(ssm, dev, REG_SCRAMBLE_DATA_INDEX, 5, buf);
|
2008-03-19 17:46:59 +00:00
|
|
|
break;
|
2012-09-26 10:41:13 +00:00
|
|
|
case IMAGING_READ_KEY:
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_read_regs(ssm, dev, REG_SCRAMBLE_DATA_KEY, 4);
|
2012-09-26 10:41:13 +00:00
|
|
|
break;
|
|
|
|
case IMAGING_DECODE:
|
|
|
|
key = urudev->last_reg_rd[0];
|
|
|
|
key |= urudev->last_reg_rd[1] << 8;
|
|
|
|
key |= urudev->last_reg_rd[2] << 16;
|
|
|
|
key |= urudev->last_reg_rd[3] << 24;
|
|
|
|
key ^= urudev->img_enc_seed;
|
|
|
|
|
|
|
|
fp_dbg("encryption id %02x -> key %08x", img->key_number, key);
|
2018-05-28 15:04:49 +00:00
|
|
|
while (urudev->img_block < G_N_ELEMENTS(img->block_info) &&
|
2012-09-26 10:41:13 +00:00
|
|
|
urudev->img_lines_done < img->num_lines) {
|
|
|
|
flags = img->block_info[urudev->img_block].flags;
|
|
|
|
num_lines = img->block_info[urudev->img_block].num_lines;
|
|
|
|
if (num_lines == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
fp_dbg("%d %02x %d", urudev->img_block, flags, num_lines);
|
|
|
|
if (flags & BLOCKF_CHANGE_KEY) {
|
|
|
|
fp_dbg("changing encryption keys.\n");
|
|
|
|
img->block_info[urudev->img_block].flags &= ~BLOCKF_CHANGE_KEY;
|
|
|
|
img->key_number++;
|
|
|
|
urudev->img_enc_seed = rand();
|
|
|
|
fpi_ssm_jump_to_state(ssm, IMAGING_SEND_INDEX);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
switch (flags & (BLOCKF_NO_KEY_UPDATE | BLOCKF_ENCRYPTED)) {
|
|
|
|
case BLOCKF_ENCRYPTED:
|
|
|
|
fp_dbg("decoding %d lines", num_lines);
|
|
|
|
key = do_decode(&img->data[urudev->img_lines_done][0],
|
|
|
|
IMAGE_WIDTH*num_lines, key);
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
fp_dbg("skipping %d lines", num_lines);
|
|
|
|
for (r = 0; r < IMAGE_WIDTH*num_lines; r++)
|
|
|
|
key = update_key(key);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if ((flags & BLOCKF_NOT_PRESENT) == 0)
|
|
|
|
urudev->img_lines_done += num_lines;
|
|
|
|
urudev->img_block++;
|
|
|
|
}
|
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
break;
|
|
|
|
case IMAGING_REPORT_IMAGE:
|
|
|
|
fpimg = fpi_img_new_for_imgdev(dev);
|
|
|
|
|
|
|
|
to = r = 0;
|
2018-05-28 15:04:49 +00:00
|
|
|
for (i = 0; i < G_N_ELEMENTS(img->block_info) && r < img->num_lines; i++) {
|
2012-09-26 10:41:13 +00:00
|
|
|
flags = img->block_info[i].flags;
|
|
|
|
num_lines = img->block_info[i].num_lines;
|
|
|
|
if (num_lines == 0)
|
|
|
|
break;
|
|
|
|
memcpy(&fpimg->data[to], &img->data[r][0],
|
|
|
|
num_lines * IMAGE_WIDTH);
|
|
|
|
if (!(flags & BLOCKF_NOT_PRESENT))
|
|
|
|
r += num_lines;
|
|
|
|
to += num_lines * IMAGE_WIDTH;
|
2008-03-19 17:46:59 +00:00
|
|
|
}
|
2012-09-26 10:41:13 +00:00
|
|
|
|
|
|
|
fpimg->flags = FP_IMG_COLORS_INVERTED;
|
|
|
|
if (!urudev->profile->encryption)
|
|
|
|
fpimg->flags |= FP_IMG_V_FLIPPED | FP_IMG_H_FLIPPED;
|
|
|
|
fpi_imgdev_image_captured(dev, fpimg);
|
|
|
|
|
|
|
|
if (urudev->activate_state == IMGDEV_STATE_CAPTURE)
|
|
|
|
fpi_ssm_jump_to_state(ssm, IMAGING_CAPTURE);
|
|
|
|
else
|
|
|
|
fpi_ssm_mark_completed(ssm);
|
2008-03-19 17:46:59 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-11-04 21:12:48 +00:00
|
|
|
|
2018-09-18 11:46:39 +00:00
|
|
|
static void imaging_complete(fpi_ssm *ssm, struct fp_dev *_dev, void *user_data)
|
2012-09-26 10:41:13 +00:00
|
|
|
{
|
2018-09-18 12:26:00 +00:00
|
|
|
struct fp_img_dev *dev = user_data;
|
2018-09-18 15:57:32 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(_dev);
|
2018-05-28 10:40:22 +00:00
|
|
|
int r = fpi_ssm_get_error(ssm);
|
2012-09-26 10:41:13 +00:00
|
|
|
fpi_ssm_free(ssm);
|
|
|
|
|
2012-12-03 07:51:27 +00:00
|
|
|
/* Report error before exiting imaging loop - the error handler
|
|
|
|
* can request state change, which needs to be postponed to end of
|
|
|
|
* this function. */
|
|
|
|
if (r)
|
|
|
|
fpi_imgdev_session_error(dev, r);
|
|
|
|
|
2018-09-26 13:52:49 +00:00
|
|
|
/* Freed by callback or cancellation */
|
|
|
|
urudev->img_transfer = NULL;
|
|
|
|
|
2012-09-26 10:41:13 +00:00
|
|
|
g_free(urudev->img_data);
|
|
|
|
urudev->img_data = NULL;
|
2018-09-26 13:52:49 +00:00
|
|
|
urudev->img_data_actual_length = 0;
|
2012-09-26 10:41:13 +00:00
|
|
|
|
|
|
|
r = execute_state_change(dev);
|
|
|
|
if (r)
|
|
|
|
fpi_imgdev_session_error(dev, r);
|
|
|
|
}
|
|
|
|
|
|
|
|
/***** INITIALIZATION *****/
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
/* After closing an app and setting hwstat to 0x80, my ms keyboard gets in a
|
|
|
|
* confused state and returns hwstat 0x85. On next app run, we don't get the
|
|
|
|
* 56aa interrupt. This is the best way I've found to fix it: mess around
|
|
|
|
* with hwstat until it starts returning more recognisable values. This
|
2018-09-26 13:21:01 +00:00
|
|
|
* doesn't happen on my other devices: uru4000, uru4000b, ms fp rdr v2
|
2008-02-17 00:08:56 +00:00
|
|
|
*
|
|
|
|
* The windows driver copes with this OK, but then again it uploads firmware
|
|
|
|
* right after reading the 0x85 hwstat, allowing some time to pass before it
|
|
|
|
* attempts to tweak hwstat again...
|
|
|
|
*
|
|
|
|
* This is implemented with a reboot power state machine. the ssm runs during
|
|
|
|
* initialization if bits 2 and 7 are set in hwstat. it masks off the 4 high
|
|
|
|
* hwstat bits then checks that bit 1 is set. if not, it pauses before reading
|
|
|
|
* hwstat again. machine completes when reading hwstat shows bit 1 is set,
|
|
|
|
* and fails after 100 tries. */
|
|
|
|
|
|
|
|
enum rebootpwr_states {
|
|
|
|
REBOOTPWR_SET_HWSTAT = 0,
|
|
|
|
REBOOTPWR_GET_HWSTAT,
|
|
|
|
REBOOTPWR_CHECK_HWSTAT,
|
|
|
|
REBOOTPWR_PAUSE,
|
|
|
|
REBOOTPWR_NUM_STATES,
|
|
|
|
};
|
2008-01-30 14:16:35 +00:00
|
|
|
|
2018-09-18 16:51:14 +00:00
|
|
|
static void
|
|
|
|
rebootpwr_pause_cb(struct fp_dev *dev,
|
|
|
|
void *data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm = data;
|
2018-09-18 16:51:14 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(dev);
|
2007-11-04 21:12:48 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
if (!--urudev->rebootpwr_ctr) {
|
|
|
|
fp_err("could not reboot device power");
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -EIO);
|
2008-02-17 00:08:56 +00:00
|
|
|
} else {
|
|
|
|
fpi_ssm_jump_to_state(ssm, REBOOTPWR_GET_HWSTAT);
|
|
|
|
}
|
2007-11-04 21:12:48 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 11:46:39 +00:00
|
|
|
static void rebootpwr_run_state(fpi_ssm *ssm, struct fp_dev *_dev, void *user_data)
|
2007-10-26 23:10:32 +00:00
|
|
|
{
|
2018-09-18 12:26:00 +00:00
|
|
|
struct fp_img_dev *dev = user_data;
|
2018-09-18 15:57:32 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(_dev);
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2018-05-28 10:40:22 +00:00
|
|
|
switch (fpi_ssm_get_cur_state(ssm)) {
|
2008-02-17 00:08:56 +00:00
|
|
|
case REBOOTPWR_SET_HWSTAT:
|
|
|
|
urudev->rebootpwr_ctr = 100;
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_set_hwstat(ssm, dev, urudev->last_hwstat & 0xf);
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
|
|
|
case REBOOTPWR_GET_HWSTAT:
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_read_reg(ssm, dev, REG_HWSTAT);
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
|
|
|
case REBOOTPWR_CHECK_HWSTAT:
|
2012-09-26 10:41:13 +00:00
|
|
|
urudev->last_hwstat = urudev->last_reg_rd[0];
|
2008-03-19 17:25:53 +00:00
|
|
|
if (urudev->last_hwstat & 0x1)
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_mark_completed(ssm);
|
|
|
|
else
|
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
break;
|
|
|
|
case REBOOTPWR_PAUSE:
|
2018-09-18 16:51:14 +00:00
|
|
|
if (fpi_timeout_add(10, rebootpwr_pause_cb, _dev, ssm) == NULL)
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -ETIME);
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
|
|
|
|
2018-09-26 13:21:01 +00:00
|
|
|
/* After messing with the device firmware in its low-power state, we have to
|
2008-02-17 00:08:56 +00:00
|
|
|
* power it back up and wait for interrupt notification. It's not quite as easy
|
|
|
|
* as that: the combination of both modifying firmware *and* doing C-R auth on
|
2018-09-26 13:21:01 +00:00
|
|
|
* my ms fp v2 device causes us not to get the 56aa interrupt and
|
2008-02-17 00:08:56 +00:00
|
|
|
* for the hwstat write not to take effect. We have to loop a few times,
|
|
|
|
* authenticating each time, until the device wakes up.
|
|
|
|
*
|
|
|
|
* This is implemented as the powerup state machine below. Pseudo-code:
|
|
|
|
|
|
|
|
status = get_hwstat();
|
|
|
|
for (i = 0; i < 100; i++) {
|
|
|
|
set_hwstat(status & 0xf);
|
|
|
|
if ((get_hwstat() & 0x80) == 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
usleep(10000);
|
|
|
|
if (need_auth_cr)
|
|
|
|
auth_cr();
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
if (tmp & 0x80)
|
|
|
|
error("could not power up device");
|
2007-11-04 21:12:48 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
*/
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
enum powerup_states {
|
|
|
|
POWERUP_INIT = 0,
|
|
|
|
POWERUP_SET_HWSTAT,
|
|
|
|
POWERUP_GET_HWSTAT,
|
|
|
|
POWERUP_CHECK_HWSTAT,
|
|
|
|
POWERUP_PAUSE,
|
|
|
|
POWERUP_CHALLENGE_RESPONSE,
|
2008-03-19 17:25:53 +00:00
|
|
|
POWERUP_CHALLENGE_RESPONSE_SUCCESS,
|
2008-02-17 00:08:56 +00:00
|
|
|
POWERUP_NUM_STATES,
|
|
|
|
};
|
|
|
|
|
2018-09-18 16:51:14 +00:00
|
|
|
static void
|
|
|
|
powerup_pause_cb(struct fp_dev *dev,
|
|
|
|
void *data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm = data;
|
2018-09-18 16:51:14 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(dev);
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
if (!--urudev->powerup_ctr) {
|
|
|
|
fp_err("could not power device up");
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -EIO);
|
2008-02-17 00:08:56 +00:00
|
|
|
} else if (!urudev->profile->auth_cr) {
|
|
|
|
fpi_ssm_jump_to_state(ssm, POWERUP_SET_HWSTAT);
|
|
|
|
} else {
|
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-18 11:46:39 +00:00
|
|
|
static void powerup_run_state(fpi_ssm *ssm, struct fp_dev *_dev, void *user_data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-18 12:26:00 +00:00
|
|
|
struct fp_img_dev *dev = user_data;
|
2018-09-18 15:57:32 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(_dev);
|
2008-02-17 00:08:56 +00:00
|
|
|
|
2018-05-28 10:40:22 +00:00
|
|
|
switch (fpi_ssm_get_cur_state(ssm)) {
|
2008-02-17 00:08:56 +00:00
|
|
|
case POWERUP_INIT:
|
|
|
|
urudev->powerup_ctr = 100;
|
2008-03-19 17:25:53 +00:00
|
|
|
urudev->powerup_hwstat = urudev->last_hwstat & 0xf;
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
break;
|
|
|
|
case POWERUP_SET_HWSTAT:
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_set_hwstat(ssm, dev, urudev->powerup_hwstat);
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
|
|
|
case POWERUP_GET_HWSTAT:
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_read_reg(ssm, dev, REG_HWSTAT);
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
|
|
|
case POWERUP_CHECK_HWSTAT:
|
2012-09-26 10:41:13 +00:00
|
|
|
urudev->last_hwstat = urudev->last_reg_rd[0];
|
|
|
|
if ((urudev->last_reg_rd[0] & 0x80) == 0)
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_mark_completed(ssm);
|
|
|
|
else
|
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
break;
|
|
|
|
case POWERUP_PAUSE:
|
2018-09-18 16:51:14 +00:00
|
|
|
if (fpi_timeout_add(10, powerup_pause_cb, _dev, ssm) == NULL)
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -ETIME);
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
|
|
|
case POWERUP_CHALLENGE_RESPONSE:
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_do_challenge_response(ssm, dev);
|
2008-03-19 17:25:53 +00:00
|
|
|
break;
|
|
|
|
case POWERUP_CHALLENGE_RESPONSE_SUCCESS:
|
2012-09-26 10:41:13 +00:00
|
|
|
fpi_ssm_jump_to_state(ssm, POWERUP_SET_HWSTAT);
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
/*
|
|
|
|
* This is the main initialization state machine. As pseudo-code:
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
status = get_hwstat();
|
|
|
|
|
|
|
|
// correct device power state
|
|
|
|
if ((status & 0x84) == 0x84)
|
|
|
|
run_reboot_sm();
|
|
|
|
|
|
|
|
// power device down
|
|
|
|
if ((status & 0x80) == 0)
|
|
|
|
set_hwstat(status | 0x80);
|
|
|
|
|
|
|
|
// power device up
|
|
|
|
run_powerup_sm();
|
|
|
|
await_irq(IRQDATA_SCANPWR_ON);
|
|
|
|
*/
|
|
|
|
|
|
|
|
enum init_states {
|
|
|
|
INIT_GET_HWSTAT = 0,
|
|
|
|
INIT_CHECK_HWSTAT_REBOOT,
|
|
|
|
INIT_REBOOT_POWER,
|
|
|
|
INIT_CHECK_HWSTAT_POWERDOWN,
|
|
|
|
INIT_POWERUP,
|
|
|
|
INIT_AWAIT_SCAN_POWER,
|
|
|
|
INIT_DONE,
|
2012-09-26 10:41:13 +00:00
|
|
|
INIT_GET_VERSION,
|
|
|
|
INIT_REPORT_VERSION,
|
2008-02-17 00:08:56 +00:00
|
|
|
INIT_NUM_STATES,
|
|
|
|
};
|
|
|
|
|
|
|
|
static void init_scanpwr_irq_cb(struct fp_img_dev *dev, int status,
|
|
|
|
uint16_t type, void *user_data)
|
|
|
|
{
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm = user_data;
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2008-02-17 00:08:56 +00:00
|
|
|
|
|
|
|
if (status)
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, status);
|
2008-02-17 00:08:56 +00:00
|
|
|
else if (type != IRQDATA_SCANPWR_ON)
|
|
|
|
fp_dbg("ignoring interrupt");
|
2018-05-28 10:40:22 +00:00
|
|
|
else if (fpi_ssm_get_cur_state(ssm) != INIT_AWAIT_SCAN_POWER) {
|
2012-12-04 08:50:30 +00:00
|
|
|
fp_dbg("early scanpwr interrupt");
|
|
|
|
urudev->scanpwr_irq_timeouts = -1;
|
|
|
|
} else {
|
|
|
|
fp_dbg("late scanpwr interrupt");
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_next_state(ssm);
|
2012-12-04 08:50:30 +00:00
|
|
|
}
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
|
|
|
|
2018-09-18 16:51:14 +00:00
|
|
|
static void
|
|
|
|
init_scanpwr_timeout(struct fp_dev *dev,
|
|
|
|
void *user_data)
|
2008-03-03 23:24:00 +00:00
|
|
|
{
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm = user_data;
|
2018-09-18 16:51:14 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(dev);
|
2008-03-03 23:24:00 +00:00
|
|
|
|
|
|
|
fp_warn("powerup timed out");
|
|
|
|
urudev->irq_cb = NULL;
|
|
|
|
urudev->scanpwr_irq_timeout = NULL;
|
|
|
|
|
|
|
|
if (++urudev->scanpwr_irq_timeouts >= 3) {
|
|
|
|
fp_err("powerup timed out 3 times, giving up");
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -ETIMEDOUT);
|
2008-03-03 23:24:00 +00:00
|
|
|
} else {
|
|
|
|
fpi_ssm_jump_to_state(ssm, INIT_GET_HWSTAT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-09-18 11:46:39 +00:00
|
|
|
static void init_run_state(fpi_ssm *ssm, struct fp_dev *_dev, void *user_data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-18 12:26:00 +00:00
|
|
|
struct fp_img_dev *dev = user_data;
|
2018-09-18 15:57:32 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(_dev);
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2018-05-28 10:40:22 +00:00
|
|
|
switch (fpi_ssm_get_cur_state(ssm)) {
|
2008-02-17 00:08:56 +00:00
|
|
|
case INIT_GET_HWSTAT:
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_read_reg(ssm, dev, REG_HWSTAT);
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
|
|
|
case INIT_CHECK_HWSTAT_REBOOT:
|
2012-09-26 10:41:13 +00:00
|
|
|
urudev->last_hwstat = urudev->last_reg_rd[0];
|
2008-03-19 17:25:53 +00:00
|
|
|
if ((urudev->last_hwstat & 0x84) == 0x84)
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
else
|
|
|
|
fpi_ssm_jump_to_state(ssm, INIT_CHECK_HWSTAT_POWERDOWN);
|
|
|
|
break;
|
|
|
|
case INIT_REBOOT_POWER: ;
|
2018-09-14 22:50:44 +00:00
|
|
|
fpi_ssm *rebootsm = fpi_ssm_new(FP_DEV(dev), rebootpwr_run_state,
|
2018-09-18 11:40:43 +00:00
|
|
|
REBOOTPWR_NUM_STATES, dev);
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_start_subsm(ssm, rebootsm);
|
|
|
|
break;
|
|
|
|
case INIT_CHECK_HWSTAT_POWERDOWN:
|
2008-03-19 17:25:53 +00:00
|
|
|
if ((urudev->last_hwstat & 0x80) == 0)
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_set_hwstat(ssm, dev, urudev->last_hwstat | 0x80);
|
2008-02-17 00:08:56 +00:00
|
|
|
else
|
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
break;
|
|
|
|
case INIT_POWERUP: ;
|
2012-12-04 08:50:30 +00:00
|
|
|
if (!IRQ_HANDLER_IS_RUNNING(urudev)) {
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -EIO);
|
2012-12-04 08:50:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
urudev->irq_cb_data = ssm;
|
|
|
|
urudev->irq_cb = init_scanpwr_irq_cb;
|
|
|
|
|
2018-09-14 22:50:44 +00:00
|
|
|
fpi_ssm *powerupsm = fpi_ssm_new(FP_DEV(dev), powerup_run_state,
|
2018-09-18 11:40:43 +00:00
|
|
|
POWERUP_NUM_STATES, dev);
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_start_subsm(ssm, powerupsm);
|
|
|
|
break;
|
|
|
|
case INIT_AWAIT_SCAN_POWER:
|
2012-12-04 08:50:30 +00:00
|
|
|
if (urudev->scanpwr_irq_timeouts < 0) {
|
|
|
|
fpi_ssm_next_state(ssm);
|
2008-03-03 23:24:00 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* sometimes the 56aa interrupt that we are waiting for never arrives,
|
|
|
|
* so we include this timeout loop to retry the whole process 3 times
|
|
|
|
* if we don't get an irq any time soon. */
|
|
|
|
urudev->scanpwr_irq_timeout = fpi_timeout_add(300,
|
2018-09-18 16:51:14 +00:00
|
|
|
init_scanpwr_timeout,
|
|
|
|
_dev, ssm);
|
2008-03-03 23:24:00 +00:00
|
|
|
if (!urudev->scanpwr_irq_timeout) {
|
2018-09-05 14:29:26 +00:00
|
|
|
fpi_ssm_mark_failed(ssm, -ETIME);
|
2008-03-03 23:24:00 +00:00
|
|
|
break;
|
2007-11-16 17:25:41 +00:00
|
|
|
}
|
2008-02-17 00:08:56 +00:00
|
|
|
break;
|
|
|
|
case INIT_DONE:
|
2012-12-04 08:50:30 +00:00
|
|
|
if (urudev->scanpwr_irq_timeout) {
|
|
|
|
fpi_timeout_cancel(urudev->scanpwr_irq_timeout);
|
|
|
|
urudev->scanpwr_irq_timeout = NULL;
|
|
|
|
}
|
2008-02-17 00:08:56 +00:00
|
|
|
urudev->irq_cb_data = NULL;
|
|
|
|
urudev->irq_cb = NULL;
|
2012-09-26 10:41:13 +00:00
|
|
|
fpi_ssm_next_state(ssm);
|
|
|
|
break;
|
|
|
|
case INIT_GET_VERSION:
|
2018-09-18 12:26:00 +00:00
|
|
|
sm_read_regs(ssm, dev, REG_DEVICE_INFO, 16);
|
2012-09-26 10:41:13 +00:00
|
|
|
break;
|
|
|
|
case INIT_REPORT_VERSION:
|
|
|
|
/* Likely hardware revision, and firmware version.
|
|
|
|
* Not sure which is which. */
|
|
|
|
fp_info("Versions %02x%02x and %02x%02x",
|
|
|
|
urudev->last_reg_rd[10], urudev->last_reg_rd[11],
|
|
|
|
urudev->last_reg_rd[4], urudev->last_reg_rd[5]);
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_mark_completed(ssm);
|
|
|
|
break;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
2007-10-26 23:10:32 +00:00
|
|
|
|
2018-09-18 11:46:39 +00:00
|
|
|
static void activate_initsm_complete(fpi_ssm *ssm, struct fp_dev *_dev, void *user_data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-18 12:26:00 +00:00
|
|
|
struct fp_img_dev *dev = user_data;
|
2018-05-28 10:40:22 +00:00
|
|
|
int r = fpi_ssm_get_error(ssm);
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_free(ssm);
|
|
|
|
|
|
|
|
fpi_imgdev_activate_complete(dev, r);
|
|
|
|
}
|
|
|
|
|
2019-06-18 16:12:28 +00:00
|
|
|
static int dev_activate(struct fp_img_dev *dev)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm;
|
2008-02-17 00:08:56 +00:00
|
|
|
int r;
|
|
|
|
|
|
|
|
r = start_irq_handler(dev);
|
|
|
|
if (r < 0)
|
|
|
|
return r;
|
|
|
|
|
2008-03-03 23:24:00 +00:00
|
|
|
urudev->scanpwr_irq_timeouts = 0;
|
2018-09-18 11:40:43 +00:00
|
|
|
ssm = fpi_ssm_new(FP_DEV(dev), init_run_state, INIT_NUM_STATES, dev);
|
2008-02-17 00:08:56 +00:00
|
|
|
fpi_ssm_start(ssm, activate_initsm_complete);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/***** DEINITIALIZATION *****/
|
|
|
|
|
|
|
|
static void deactivate_irqs_stopped(struct fp_img_dev *dev)
|
|
|
|
{
|
|
|
|
fpi_imgdev_deactivate_complete(dev);
|
|
|
|
}
|
|
|
|
|
2012-09-26 10:41:13 +00:00
|
|
|
static void deactivate_write_reg_cb(struct fp_img_dev *dev, int status,
|
|
|
|
void *user_data)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
|
|
|
stop_irq_handler(dev, deactivate_irqs_stopped);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void dev_deactivate(struct fp_img_dev *dev)
|
2012-09-26 10:41:13 +00:00
|
|
|
{
|
|
|
|
dev_change_state(dev, IMGDEV_STATE_INACTIVE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int execute_state_change(struct fp_img_dev *dev)
|
2008-02-17 00:08:56 +00:00
|
|
|
{
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2018-09-05 11:11:37 +00:00
|
|
|
fpi_ssm *ssm;
|
2018-09-26 13:52:49 +00:00
|
|
|
void *img_data;
|
2008-02-17 00:08:56 +00:00
|
|
|
|
2012-09-26 10:41:13 +00:00
|
|
|
switch (urudev->activate_state) {
|
|
|
|
case IMGDEV_STATE_INACTIVE:
|
|
|
|
fp_dbg("deactivating");
|
|
|
|
urudev->irq_cb = NULL;
|
|
|
|
urudev->irq_cb_data = NULL;
|
|
|
|
return write_reg(dev, REG_MODE, MODE_OFF,
|
|
|
|
deactivate_write_reg_cb, NULL);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case IMGDEV_STATE_AWAIT_FINGER_ON:
|
|
|
|
fp_dbg("wait finger on");
|
|
|
|
if (!IRQ_HANDLER_IS_RUNNING(urudev))
|
|
|
|
return -EIO;
|
|
|
|
urudev->irq_cb = finger_presence_irq_cb;
|
|
|
|
return write_reg(dev, REG_MODE, MODE_AWAIT_FINGER_ON,
|
|
|
|
change_state_write_reg_cb, NULL);
|
|
|
|
|
|
|
|
case IMGDEV_STATE_CAPTURE:
|
|
|
|
fp_dbg("starting capture");
|
|
|
|
urudev->irq_cb = NULL;
|
|
|
|
|
2018-09-26 13:52:49 +00:00
|
|
|
ssm = fpi_ssm_new(FP_DEV(dev), imaging_run_state, IMAGING_NUM_STATES, dev);
|
|
|
|
img_data = g_malloc(sizeof(struct uru4k_image));
|
2012-09-26 10:41:13 +00:00
|
|
|
urudev->img_enc_seed = rand();
|
2018-09-26 13:52:49 +00:00
|
|
|
urudev->img_transfer = fpi_usb_fill_bulk_transfer(FP_DEV(dev),
|
|
|
|
ssm,
|
|
|
|
EP_DATA,
|
|
|
|
img_data,
|
|
|
|
sizeof(struct uru4k_image),
|
|
|
|
image_transfer_cb,
|
|
|
|
NULL,
|
|
|
|
0);
|
2012-09-26 10:41:13 +00:00
|
|
|
|
|
|
|
fpi_ssm_start(ssm, imaging_complete);
|
|
|
|
|
|
|
|
return write_reg(dev, REG_MODE, MODE_CAPTURE,
|
|
|
|
change_state_write_reg_cb, NULL);
|
|
|
|
|
|
|
|
case IMGDEV_STATE_AWAIT_FINGER_OFF:
|
|
|
|
fp_dbg("await finger off");
|
|
|
|
if (!IRQ_HANDLER_IS_RUNNING(urudev))
|
|
|
|
return -EIO;
|
|
|
|
urudev->irq_cb = finger_presence_irq_cb;
|
|
|
|
return write_reg(dev, REG_MODE, MODE_AWAIT_FINGER_OFF,
|
|
|
|
change_state_write_reg_cb, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2008-02-17 00:08:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/***** LIBRARY STUFF *****/
|
|
|
|
|
2007-10-26 23:10:32 +00:00
|
|
|
static int dev_init(struct fp_img_dev *dev, unsigned long driver_data)
|
|
|
|
{
|
2008-05-12 22:24:05 +00:00
|
|
|
struct libusb_config_descriptor *config;
|
2008-04-06 22:55:41 +00:00
|
|
|
const struct libusb_interface *iface = NULL;
|
|
|
|
const struct libusb_interface_descriptor *iface_desc;
|
|
|
|
const struct libusb_endpoint_descriptor *ep;
|
2007-10-26 23:10:32 +00:00
|
|
|
struct uru4k_dev *urudev;
|
2010-08-24 23:42:01 +00:00
|
|
|
SECStatus rv;
|
|
|
|
SECItem item;
|
2007-10-26 23:10:32 +00:00
|
|
|
int i;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
/* Find fingerprint interface */
|
2018-09-14 22:53:25 +00:00
|
|
|
r = libusb_get_config_descriptor(libusb_get_device(fpi_dev_get_usb_dev(FP_DEV(dev))), 0, &config);
|
2008-05-12 22:24:05 +00:00
|
|
|
if (r < 0) {
|
|
|
|
fp_err("Failed to get config descriptor");
|
|
|
|
return r;
|
|
|
|
}
|
2007-10-26 23:10:32 +00:00
|
|
|
for (i = 0; i < config->bNumInterfaces; i++) {
|
2008-04-06 22:55:41 +00:00
|
|
|
const struct libusb_interface *cur_iface = &config->interface[i];
|
2007-10-26 23:10:32 +00:00
|
|
|
|
|
|
|
if (cur_iface->num_altsetting < 1)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
iface_desc = &cur_iface->altsetting[0];
|
|
|
|
if (iface_desc->bInterfaceClass == 255
|
|
|
|
&& iface_desc->bInterfaceSubClass == 255
|
|
|
|
&& iface_desc->bInterfaceProtocol == 255) {
|
|
|
|
iface = cur_iface;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (iface == NULL) {
|
|
|
|
fp_err("could not find interface");
|
2008-05-12 22:24:05 +00:00
|
|
|
r = -ENODEV;
|
|
|
|
goto out;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Find/check endpoints */
|
|
|
|
|
|
|
|
if (iface_desc->bNumEndpoints != 2) {
|
|
|
|
fp_err("found %d endpoints!?", iface_desc->bNumEndpoints);
|
2008-05-12 22:24:05 +00:00
|
|
|
r = -ENODEV;
|
|
|
|
goto out;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ep = &iface_desc->endpoint[0];
|
|
|
|
if (ep->bEndpointAddress != EP_INTR
|
2008-05-07 22:46:06 +00:00
|
|
|
|| (ep->bmAttributes & LIBUSB_TRANSFER_TYPE_MASK) !=
|
|
|
|
LIBUSB_TRANSFER_TYPE_INTERRUPT) {
|
2007-10-26 23:10:32 +00:00
|
|
|
fp_err("unrecognised interrupt endpoint");
|
2008-05-12 22:24:05 +00:00
|
|
|
r = -ENODEV;
|
|
|
|
goto out;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ep = &iface_desc->endpoint[1];
|
|
|
|
if (ep->bEndpointAddress != EP_DATA
|
2008-05-07 22:46:06 +00:00
|
|
|
|| (ep->bmAttributes & LIBUSB_TRANSFER_TYPE_MASK) !=
|
|
|
|
LIBUSB_TRANSFER_TYPE_BULK) {
|
2007-10-26 23:10:32 +00:00
|
|
|
fp_err("unrecognised bulk endpoint");
|
2008-05-12 22:24:05 +00:00
|
|
|
r = -ENODEV;
|
|
|
|
goto out;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Device looks like a supported reader */
|
|
|
|
|
2018-09-14 22:53:25 +00:00
|
|
|
r = libusb_claim_interface(fpi_dev_get_usb_dev(FP_DEV(dev)), iface_desc->bInterfaceNumber);
|
2007-10-26 23:10:32 +00:00
|
|
|
if (r < 0) {
|
2016-11-04 23:10:17 +00:00
|
|
|
fp_err("interface claim failed: %s", libusb_error_name(r));
|
2008-05-12 22:24:05 +00:00
|
|
|
goto out;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2019-03-21 14:37:01 +00:00
|
|
|
/* Disable loading p11-kit's user configuration */
|
|
|
|
g_setenv ("P11_KIT_NO_USER_CONFIG", "1", TRUE);
|
|
|
|
|
2010-08-24 23:42:01 +00:00
|
|
|
/* Initialise NSS early */
|
|
|
|
rv = NSS_NoDB_Init(".");
|
|
|
|
if (rv != SECSuccess) {
|
|
|
|
fp_err("could not initialise NSS");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
2007-10-26 23:10:32 +00:00
|
|
|
urudev = g_malloc0(sizeof(*urudev));
|
2018-12-12 15:06:03 +00:00
|
|
|
fp_dev_set_instance_data(FP_DEV(dev), urudev);
|
|
|
|
|
2007-11-04 21:12:48 +00:00
|
|
|
urudev->profile = &uru4k_dev_info[driver_data];
|
2007-10-26 23:10:32 +00:00
|
|
|
urudev->interface = iface_desc->bInterfaceNumber;
|
2010-08-24 23:42:01 +00:00
|
|
|
|
|
|
|
/* Set up encryption */
|
|
|
|
urudev->cipher = CKM_AES_ECB;
|
|
|
|
urudev->slot = PK11_GetBestSlot(urudev->cipher, NULL);
|
|
|
|
if (urudev->slot == NULL) {
|
|
|
|
fp_err("could not get encryption slot");
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
item.type = siBuffer;
|
|
|
|
item.data = (unsigned char*) crkey;
|
|
|
|
item.len = sizeof(crkey);
|
|
|
|
urudev->symkey = PK11_ImportSymKey(urudev->slot,
|
|
|
|
urudev->cipher,
|
|
|
|
PK11_OriginUnwrap,
|
|
|
|
CKA_ENCRYPT,
|
|
|
|
&item, NULL);
|
|
|
|
if (urudev->symkey == NULL) {
|
|
|
|
fp_err("failed to import key into NSS");
|
|
|
|
PK11_FreeSlot(urudev->slot);
|
|
|
|
urudev->slot = NULL;
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
urudev->param = PK11_ParamFromIV(urudev->cipher, NULL);
|
|
|
|
|
2008-02-26 18:04:54 +00:00
|
|
|
fpi_imgdev_open_complete(dev, 0);
|
2008-05-12 22:24:05 +00:00
|
|
|
|
|
|
|
out:
|
|
|
|
libusb_free_config_descriptor(config);
|
|
|
|
return r;
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
2008-02-17 00:08:56 +00:00
|
|
|
static void dev_deinit(struct fp_img_dev *dev)
|
2007-10-26 23:10:32 +00:00
|
|
|
{
|
2018-09-14 22:45:42 +00:00
|
|
|
struct uru4k_dev *urudev = FP_INSTANCE_DATA(FP_DEV(dev));
|
2010-08-24 23:42:01 +00:00
|
|
|
if (urudev->symkey)
|
|
|
|
PK11_FreeSymKey (urudev->symkey);
|
|
|
|
if (urudev->param)
|
|
|
|
SECITEM_FreeItem(urudev->param, PR_TRUE);
|
|
|
|
if (urudev->slot)
|
|
|
|
PK11_FreeSlot(urudev->slot);
|
2018-09-14 22:53:25 +00:00
|
|
|
libusb_release_interface(fpi_dev_get_usb_dev(FP_DEV(dev)), urudev->interface);
|
2007-10-26 23:10:32 +00:00
|
|
|
g_free(urudev);
|
2008-02-26 18:04:54 +00:00
|
|
|
fpi_imgdev_close_complete(dev);
|
2007-10-26 23:10:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static const struct usb_id id_table[] = {
|
|
|
|
/* ms kbd with fp rdr */
|
|
|
|
{ .vendor = 0x045e, .product = 0x00bb, .driver_data = MS_KBD },
|
|
|
|
|
|
|
|
/* ms intellimouse with fp rdr */
|
|
|
|
{ .vendor = 0x045e, .product = 0x00bc, .driver_data = MS_INTELLIMOUSE },
|
|
|
|
|
|
|
|
/* ms fp rdr (standalone) */
|
|
|
|
{ .vendor = 0x045e, .product = 0x00bd, .driver_data = MS_STANDALONE },
|
|
|
|
|
2007-11-16 17:25:41 +00:00
|
|
|
/* ms fp rdr (standalone) v2 */
|
|
|
|
{ .vendor = 0x045e, .product = 0x00ca, .driver_data = MS_STANDALONE_V2 },
|
|
|
|
|
2007-11-04 21:12:48 +00:00
|
|
|
/* dp uru4000 (standalone) */
|
|
|
|
{ .vendor = 0x05ba, .product = 0x0007, .driver_data = DP_URU4000 },
|
|
|
|
|
2008-05-02 10:55:50 +00:00
|
|
|
/* dp uru4000 (keyboard) */
|
|
|
|
{ .vendor = 0x05ba, .product = 0x0008, .driver_data = DP_URU4000 },
|
|
|
|
|
2007-10-26 23:10:32 +00:00
|
|
|
/* dp uru4000b (standalone) */
|
|
|
|
{ .vendor = 0x05ba, .product = 0x000a, .driver_data = DP_URU4000B },
|
|
|
|
|
|
|
|
/* terminating entry */
|
|
|
|
{ 0, 0, 0, },
|
|
|
|
};
|
|
|
|
|
|
|
|
struct fp_img_driver uru4000_driver = {
|
|
|
|
.driver = {
|
2012-11-10 15:37:41 +00:00
|
|
|
.id = URU4000_ID,
|
2007-10-26 23:10:32 +00:00
|
|
|
.name = FP_COMPONENT,
|
2012-09-26 10:41:13 +00:00
|
|
|
.full_name = "Digital Persona U.are.U 4000/4000B/4500",
|
2007-10-26 23:10:32 +00:00
|
|
|
.id_table = id_table,
|
2008-11-20 14:40:01 +00:00
|
|
|
.scan_type = FP_SCAN_TYPE_PRESS,
|
2007-10-26 23:10:32 +00:00
|
|
|
},
|
|
|
|
.flags = FP_IMGDRV_SUPPORTS_UNCONDITIONAL_CAPTURE,
|
2012-09-26 10:41:13 +00:00
|
|
|
.img_height = IMAGE_HEIGHT,
|
|
|
|
.img_width = IMAGE_WIDTH,
|
2007-10-27 13:45:14 +00:00
|
|
|
|
2008-02-26 18:04:54 +00:00
|
|
|
.open = dev_init,
|
|
|
|
.close = dev_deinit,
|
2008-02-17 00:08:56 +00:00
|
|
|
.activate = dev_activate,
|
|
|
|
.deactivate = dev_deactivate,
|
|
|
|
.change_state = dev_change_state,
|
2007-10-26 23:10:32 +00:00
|
|
|
};
|
|
|
|
|