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
|
// mod.rs
// Copyright (C) 2019-2020 The Nitrocli Developers
// SPDX-License-Identifier: GPL-3.0-or-later
use std::ffi;
use nitrokey_test::test as test_device;
mod config;
mod encrypted;
mod hidden;
mod list;
mod lock;
mod otp;
mod pin;
mod pws;
mod reset;
mod run;
mod status;
mod unencrypted;
struct Nitrocli {
model: Option<nitrokey::Model>,
admin_pin: Option<ffi::OsString>,
user_pin: Option<ffi::OsString>,
new_admin_pin: Option<ffi::OsString>,
new_user_pin: Option<ffi::OsString>,
password: Option<ffi::OsString>,
}
impl Nitrocli {
pub fn new() -> Self {
Self {
model: None,
admin_pin: Some(nitrokey::DEFAULT_ADMIN_PIN.into()),
user_pin: Some(nitrokey::DEFAULT_USER_PIN.into()),
new_admin_pin: None,
new_user_pin: None,
password: None,
}
}
/// Set the model to use.
fn model(mut self, model: nitrokey::Model) -> Self {
self.model = Some(model);
self
}
/// Set the password to use for certain operations.
fn password(mut self, password: impl Into<ffi::OsString>) -> Self {
self.password = Some(password.into());
self
}
pub fn admin_pin(mut self, pin: impl Into<ffi::OsString>) -> Self {
self.admin_pin = Some(pin.into());
self
}
pub fn new_admin_pin(mut self, pin: impl Into<ffi::OsString>) -> Self {
self.new_admin_pin = Some(pin.into());
self
}
pub fn user_pin(mut self, pin: impl Into<ffi::OsString>) -> Self {
self.user_pin = Some(pin.into());
self
}
pub fn new_user_pin(mut self, pin: impl Into<ffi::OsString>) -> Self {
self.new_user_pin = Some(pin.into());
self
}
fn model_to_arg(model: nitrokey::Model) -> &'static str {
match model {
nitrokey::Model::Pro => "--model=pro",
nitrokey::Model::Storage => "--model=storage",
}
}
fn do_run<F, R>(&mut self, args: &[&str], f: F) -> (R, Vec<u8>, Vec<u8>)
where
F: FnOnce(&mut crate::Context<'_>, Vec<String>) -> R,
{
let args = ["nitrocli"]
.iter()
.cloned()
.chain(self.model.map(Self::model_to_arg))
.chain(args.iter().cloned())
.map(ToOwned::to_owned)
.collect();
let mut stdout = Vec::new();
let mut stderr = Vec::new();
let ctx = &mut crate::Context {
stdout: &mut stdout,
stderr: &mut stderr,
admin_pin: self.admin_pin.clone(),
user_pin: self.user_pin.clone(),
new_admin_pin: self.new_admin_pin.clone(),
new_user_pin: self.new_user_pin.clone(),
password: self.password.clone(),
config: crate::config::Config {
no_cache: true,
..Default::default()
},
};
(f(ctx, args), stdout, stderr)
}
/// Run `nitrocli`'s `run` function.
pub fn run(&mut self, args: &[&str]) -> (i32, Vec<u8>, Vec<u8>) {
self.do_run(args, |c, a| crate::run(c, a))
}
/// Run `nitrocli`'s `handle_arguments` function.
pub fn handle(&mut self, args: &[&str]) -> anyhow::Result<String> {
let (res, out, _) = self.do_run(args, |c, a| crate::handle_arguments(c, a));
res.map(|_| String::from_utf8_lossy(&out).into_owned())
}
}
|