-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathotp_key.cpp
284 lines (245 loc) · 7.86 KB
/
otp_key.cpp
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
#include "otp_key.hpp"
#include <utility>
#include <esp_log.h>
#include <cstring>
#include <esp_heap_caps.h>
#include <cmath>
#define TAG "uri_parser"
otp_key::otp_key(std::string _uri) : uri(std::move(_uri)), secret(20, 0)
{
ESP_LOGI(TAG, "Free heap after parsing: %u, Max heap block: %u",
heap_caps_get_free_size(MALLOC_CAP_8BIT), heap_caps_get_largest_free_block(MALLOC_CAP_8BIT));
parse();
}
esp_err_t otp_key::parse()
{
std::string_view _uri(uri);
// Step 1: Probe the schema. If success, move to the 10th char (remove "otpauth://")
ESP_LOGD(TAG, "Parsing schema...");
if(_uri.find("otpauth://") == std::string_view::npos) return ESP_ERR_INVALID_ARG;
_uri = _uri.substr(10);
// Step 2: Parse type
ESP_LOGD(TAG, "Parsing type...");
auto type_str = _uri.substr(0, 4);
if(type_str == "totp") time_based = true;
else if(type_str == "hotp") time_based = false;
else return ESP_ERR_INVALID_ARG;
_uri = _uri.substr(5); // Skip "[h,t]otp/"
// Step 3: Parse provider label
ESP_LOGD(TAG, "Parsing label...");
auto label_end = _uri.find('?');
if(label_end == std::string_view::npos) return ESP_ERR_INVALID_ARG;
auto label_raw = _uri.substr(0, label_end);
ESP_LOGD(TAG, "Got label: %s", label_raw.data());
label = decode_uri(label_raw);
_uri = _uri.substr(label_end);
// Step 4: Parse each of the "query parameters"
// Secret
ESP_LOGD(TAG, "Parsing secret...");
auto secret_str = get_query_val(_uri, "secret");
// Predict the size of the secret by dividing 1.6, takes ceiling value:
// https://stackoverflow.com/questions/23636240/how-do-i-predict-the-required-size-of-a-base32-decode-output
auto secret_size_pred = (int)ceil(secret_str.size() / 1.6);
secret.resize(secret_size_pred);
auto secret_size = base32_decode(secret_str.data(), secret.data(), secret_size_pred);
if(secret_size < 0) {
ESP_LOGE(TAG, "Failed to parse the base32 secret key!");
return ESP_ERR_INVALID_SIZE;
}
if(secret_size < secret_size_pred) {
secret.resize(secret_size); // Get rid of the '\0' bytes
}
// Issuer
ESP_LOGD(TAG, "Parsing issuer...");
issuer = decode_uri(get_query_val(_uri, "issuer"));
// Counter (for HOTP only)
ESP_LOGD(TAG, "Parsing counter...");
if(!time_based) counter = std::strtol(get_query_val(_uri, "counter").c_str(), nullptr, 10);
// Interval/Period
ESP_LOGD(TAG, "Parsing interval...");
interval = std::strtol(get_query_val(_uri, "period").data(), nullptr, 10);
if(interval < 1) return ESP_ERR_INVALID_ARG;
// Digits
ESP_LOGD(TAG, "Parsing digits...");
digits = std::strtol(get_query_val(_uri, "digits").data(), nullptr, 10);
if(digits < 6) return ESP_ERR_INVALID_ARG;
return ESP_OK;
}
bool otp_key::is_time_based()
{
return time_based;
}
std::string otp_key::decode_uri(std::string_view _uri)
{
ESP_LOGD(TAG, "Input uri: %s", _uri.data());
std::string result;
char a = '\0', b = '\0';
size_t idx = 0;
while(idx < _uri.size()) {
a = _uri[idx + 1];
b = _uri[idx + 2];
if(_uri[idx] == '%' && isxdigit(a) && isxdigit(b)) {
if (a >= 'a')
a -= 'a'-'A';
if (a >= 'A')
a -= ('A' - 10);
else
a -= '0';
if (b >= 'a')
b -= 'a'-'A';
if (b >= 'A')
b -= ('A' - 10);
else
b -= '0';
result += (char)(16 * a + b);
ESP_LOGD(TAG, "a: %c, b: %c, result: %c", _uri[idx + 1], _uri[idx + 2], result[idx]);
idx += 3;
} else if(_uri[idx] == '+') {
result += ' ';
idx++;
} else {
result += _uri[idx];
idx++;
}
}
return result;
}
std::string otp_key::get_label()
{
return label;
}
std::string otp_key::get_query_val(std::string_view _query, const std::string& key)
{
ESP_LOGD(TAG, "Query: %s, key to find: %s", _query.data(), key.c_str());
auto query_pos = _query.find(key);
if(query_pos != std::string_view::npos) {
// _query.substr's position +1 offset is for '='
auto start_pos = query_pos + key.length() + 1;
auto end_pos = _query.find_first_of('&', query_pos);
return std::string(_query.substr(start_pos, end_pos - start_pos)); // Force to make a new string here
}
return std::string();
}
std::string otp_key::get_issuer()
{
return issuer;
}
const std::vector<uint8_t>& otp_key::get_secret() const
{
return secret;
}
uint32_t otp_key::get_digits()
{
return digits;
}
uint32_t otp_key::get_interval()
{
return interval;
}
uint64_t otp_key::get_counter()
{
return counter;
}
/**
* Base32 decoder
* From https://github.com/google/google-authenticator-libpam/blob/master/src/base32.c
* @param encoded Encoded text
* @param result Bytes output
* @param buf_len Bytes length
* @return -1 if failed, or length decoded
*/
int otp_key::base32_decode(const char *encoded, uint8_t *result, int buf_len)
{
if(encoded == nullptr || result == nullptr) {
ESP_LOGE(TAG, "String or buffer are null");
return -1;
}
// Base32's overhead must be at least 1.4x than the decoded bytes, so the result output must be bigger than this
size_t expect_len = ceil(std::strlen(encoded) / 1.6);
if(buf_len < expect_len) {
ESP_LOGE(TAG, "Buffer length is too short, only %d, need %u", buf_len, expect_len);
return -1;
}
int buffer = 0;
int bits_left = 0;
int count = 0;
for (const char *ptr = encoded; count < buf_len && *ptr; ++ptr) {
uint8_t ch = *ptr;
if (ch == ' ' || ch == '\t' || ch == '\r' || ch == '\n' || ch == '-') {
continue;
}
buffer <<= 5;
// Deal with commonly mistyped characters
if (ch == '0') {
ch = 'O';
} else if (ch == '1') {
ch = 'L';
} else if (ch == '8') {
ch = 'B';
}
// Look up one base32 digit
if ((ch >= 'A' && ch <= 'Z') || (ch >= 'a' && ch <= 'z')) {
ch = (ch & 0x1F) - 1;
} else if (ch >= '2' && ch <= '7') {
ch -= '2' - 26;
} else {
ESP_LOGE(TAG, "Invalid Base32!");
return -1;
}
buffer |= ch;
bits_left += 5;
if (bits_left >= 8) {
result[count++] = buffer >> (bits_left - 8);
bits_left -= 8;
}
}
if (count < buf_len) {
result[count] = '\000';
}
return count;
}
/**
* Base32 encoder
* From https://github.com/google/google-authenticator-libpam/blob/master/src/base32.c
* @param data Bytes input
* @param length Length of the bytes to be encoded
* @param result Result string in Base32
* @param encode_len Maximum length of the string
* @return -1 if failed, or the length encoded
*/
int otp_key::base32_encode(const uint8_t *data, int length, char *result, int encode_len)
{
if (length < 0 || length > (1 << 28)) {
return -1;
}
int count = 0;
if (length > 0) {
int buffer = data[0];
int next = 1;
int bits_left = 8;
while (count < encode_len && (bits_left > 0 || next < length)) {
if (bits_left < 5) {
if (next < length) {
buffer <<= 8;
buffer |= data[next++] & 0xFF;
bits_left += 8;
} else {
int pad = 5 - bits_left;
buffer <<= pad;
bits_left += pad;
}
}
int index = 0x1F & (buffer >> (bits_left - 5));
bits_left -= 5;
result[count++] = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567"[index];
}
}
if (count < encode_len) {
result[count] = '\000';
}
return count;
}
std::string otp_key::get_uri()
{
return uri;
}