aboutsummaryrefslogtreecommitdiff
path: root/src/device.rs
blob: 8f6f6ef122575371155ec8aafb1557203c598217 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
// Copyright 2019 Robin Krahl <robin.krahl@ireas.org>
// SPDX-License-Identifier: GPL-3.0-or-later

use serde::{Deserialize, Serialize};
use serde_big_array::big_array;
use static_assertions::assert_eq_size;
use usb_device::bus::{UsbBus, UsbBusAllocator};
use usb_device::device::{UsbDevice, UsbDeviceBuilder, UsbVidPid};

use crate::commands::CommandId;
use crate::crc::Crc;
use crate::hid::{HidDevice, Protocol, ReportType, Subclass};
use crate::util::TryFrom;

const VID_CLAY_LOGIC: u16 = 0x20a0;
const PID_NITROKEY_PRO: u16 = 0x4108;

const REPORT_LEN: usize = 64;
const REQUEST_DATA_LEN: usize = REPORT_LEN - 5;
const RESPONSE_DATA_LEN: usize = REPORT_LEN - 11;
const REPORT_DESCRIPTOR: &[u8] = &[
    0x05, 0x01, 0x09, 0x06, 0xA1, 0x01, 0x05, 0x07, 0x19, 0xE0, 0x29, 0xE7, 0x15, 0x00, 0x25, 0x01,
    0x75, 0x01, 0x95, 0x08, 0x81, 0x02, 0x95, 0x01, 0x75, 0x08, 0x81, 0x03, 0x95, 0x05, 0x75, 0x01,
    0x05, 0x08, 0x19, 0x01, 0x29, 0x05, 0x91, 0x02, 0x95, 0x01, 0x75, 0x03, 0x91, 0x03, 0x95, 0x06,
    0x75, 0x08, 0x15, 0x00, 0x25, 0x65, 0x05, 0x07, 0x19, 0x00, 0x29, 0x65, 0x81, 0x00, 0x09, 0x03,
    0x75, 0x08, 0x95, 0x40, 0xB1, 0x02, 0xC0,
];

pub type RequestData = [u8; REQUEST_DATA_LEN];
pub type ResponseData = [u8; RESPONSE_DATA_LEN];

big_array! { BigArray; RESPONSE_DATA_LEN, REQUEST_DATA_LEN, }

enum_u8! {
    #[derive(Clone, Copy, Debug, PartialEq)]
    pub enum DeviceStatus {
        Ok = 0,
        Busy = 1,
        Error = 2,
        ReceivedReport = 3,
    }
}

enum_u8! {
    #[derive(Clone, Copy, Debug, PartialEq)]
    pub enum CommandStatus {
        Ok = 0,
        WrongCrc = 1,
        WrongSlot = 2,
        SlotNotProgrammed = 3,
        WrongPassword = 4,
        NotAuthorized = 5,
        TimestampWarning = 6,
        NoNameError = 7,
        NotSupported = 8,
        UnknownCommand = 9,
        AesDecryptionFailed = 10,
    }
}

#[derive(Deserialize)]
struct Request {
    pub command_id: u8,
    #[serde(with = "BigArray")]
    pub data: RequestData,
    pub crc: u32,
}

assert_eq_size!(request; [u8; REPORT_LEN], Request);

#[derive(Serialize)]
struct Response {
    pub device_status: DeviceStatus,
    pub command_id: u8,
    pub last_crc: u32,
    pub command_status: CommandStatus,
    #[serde(with = "BigArray")]
    pub data: ResponseData,
    pub crc: u32,
}

assert_eq_size!(response; [u8; REPORT_LEN], Response);

impl Response {
    fn new(device_status: DeviceStatus, command_id: u8, last_crc: u32) -> Response {
        Response {
            device_status,
            command_id,
            last_crc,
            command_status: CommandStatus::NotSupported,
            data: [0; RESPONSE_DATA_LEN],
            crc: 0,
        }
    }
}

pub struct Nitrokey {
    crc: Crc,
    request: Option<Request>,
    request_crc: u32,
    buf: [u8; REPORT_LEN],
}

impl Nitrokey {
    pub fn new(crc: Crc) -> Self {
        Nitrokey {
            crc,
            request: None,
            request_crc: 0,
            buf: [0; REPORT_LEN],
        }
    }
}

impl HidDevice for Nitrokey {
    fn subclass(&self) -> Subclass {
        Subclass::BootInterface
    }

    fn protocol(&self) -> Protocol {
        Protocol::Keyboard
    }

    fn report_descriptor(&self) -> &[u8] {
        REPORT_DESCRIPTOR
    }

    fn get_report(&mut self, report_type: ReportType, report_id: u8) -> Result<&[u8], ()> {
        if report_type != ReportType::Feature || report_id != 0 {
            return Err(());
        }

        if let Some(ref request) = self.request {
            let mut response = Response::new(DeviceStatus::Ok, request.command_id, request.crc);
            response.command_status = if self.request_crc == request.crc {
                if let Ok(command_id) = CommandId::try_from(request.command_id) {
                    command_id.execute(&request.data, &mut response.data)
                } else {
                    CommandStatus::UnknownCommand
                }
            } else {
                CommandStatus::WrongCrc
            };
            // TODO: calculate actual CRC
            response.crc = 1; // libnitrokey accepts any non-zero value

            let len = ssmarshal::serialize(&mut self.buf, &response).map_err(|_| ())?;
            assert!(len == REPORT_LEN);
            Ok(&self.buf)
        } else {
            Err(())
        }
    }

    fn set_report(
        &mut self,
        report_type: ReportType,
        report_id: u8,
        data: &[u8],
    ) -> Result<(), ()> {
        if report_type != ReportType::Feature || report_id != 0 || data.len() != REPORT_LEN {
            Err(())
        } else {
            let (request, len) = ssmarshal::deserialize(data).map_err(|_| ())?;
            assert!(len == REPORT_LEN);
            // the last four bytes are ignored as they contain the CRC
            self.request_crc = self.crc.get(&data[..REPORT_LEN - 4]);
            self.request = Some(request);
            Ok(())
        }
    }
}

pub fn create_usb_device<B: UsbBus>(alloc: &UsbBusAllocator<B>) -> UsbDevice<'_, B> {
    UsbDeviceBuilder::new(alloc, UsbVidPid(VID_CLAY_LOGIC, PID_NITROKEY_PRO))
        .manufacturer("Nitrokey/ntw")
        .product("Nitrokey Pro/ntw")
        .serial_number("?")
        .build()
}