-
Notifications
You must be signed in to change notification settings - Fork 3
/
cbor.c
241 lines (195 loc) · 5.15 KB
/
cbor.c
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
/*
* Copyright (c) 2020 Pedro Martelletto. All rights reserved.
* Use of this source code is governed by a BSD-style
* license that can be found in the LICENSE file.
*/
#include <cbor.h>
#include <err.h>
#include <fido.h>
#include <string.h>
#include "base64.h"
#include "cbor.h"
static void
free_pair(struct cbor_pair **pp)
{
struct cbor_pair *p;
if (pp == NULL || (p = *pp) == NULL)
return;
if (p->key)
cbor_decref(&p->key);
if (p->value)
cbor_decref(&p->value);
free(p);
*pp = NULL;
}
static struct cbor_pair *
cbor_pack_item(const char *key, cbor_item_t **item)
{
struct cbor_pair *p;
if ((p = calloc(1, sizeof(*p))) == NULL ||
(p->key = cbor_build_string(key)) == NULL ||
*item == NULL) {
warnx("%s: %s", __func__, key);
if (*item)
cbor_decref(item);
free_pair(&p);
} else {
p->value = *item;
}
*item = NULL;
return p;
}
static struct cbor_pair *
cbor_pack_str(const char *key, const char *val)
{
cbor_item_t *item = cbor_build_string(val);
return cbor_pack_item(key, &item);
}
static struct cbor_pair *
cbor_pack_cose(const char *key, int type)
{
cbor_item_t *item = cbor_build_negint8(-type - 1);
return cbor_pack_item(key, &item);
}
static struct cbor_pair *
cbor_pack_blob(const char *key, const uint8_t *ptr, size_t len)
{
cbor_item_t *item = cbor_build_bytestring(ptr, len);
return cbor_pack_item(key, &item);
}
static struct cbor_pair *
cbor_wrap_blob(const char *key, const uint8_t *ptr, size_t len)
{
cbor_item_t *array = NULL;
cbor_item_t *blob = NULL;
struct cbor_pair *p = NULL;
if ((blob = cbor_build_bytestring(ptr, len)) == NULL ||
(array = cbor_new_definite_array(1)) == NULL ||
cbor_array_push(array, blob) == false ||
(p = cbor_pack_item(key, &array)) == NULL) {
warnx("%s: %s", __func__, key);
}
if (blob)
cbor_decref(&blob);
if (array)
cbor_decref(&array);
return p;
}
static cbor_item_t *
cbor_encode_attestation_statement(const fido_cred_t *c, const char *fmt)
{
cbor_item_t *attstmt = NULL;
const unsigned char *sig_ptr;
const unsigned char *x5c_ptr;
int ok = -1;
int type;
size_t sig_len;
size_t x5c_len;
struct cbor_pair *argv[3];
memset(argv, 0, sizeof(argv));
if ((type = fido_cred_type(c)) != COSE_ES256 ||
(sig_ptr = fido_cred_sig_ptr(c)) == NULL ||
(sig_len = fido_cred_sig_len(c)) == 0 ||
(x5c_ptr = fido_cred_x5c_ptr(c)) == NULL ||
(x5c_len = fido_cred_x5c_len(c)) == 0) {
warnx("%s: fido_cred", __func__);
goto fail;
}
if ((attstmt = cbor_new_definite_map(3)) == NULL) {
warnx("%s: cbor_new_definite_map", __func__);
goto fail;
}
if ((argv[0] = cbor_pack_cose("alg", type)) == NULL ||
(argv[1] = cbor_pack_blob("sig", sig_ptr, sig_len)) == NULL ||
(argv[2] = cbor_wrap_blob("x5c", x5c_ptr, x5c_len)) == NULL) {
warnx("%s: cbor_pack", __func__);
goto fail;
}
if (cbor_map_add(attstmt, *argv[1]) == false ||
cbor_map_add(attstmt, *argv[2]) == false) {
warnx("%s: cbor_map_add", __func__);
goto fail;
}
if (strcmp(fmt, "packed") == 0) {
if (cbor_map_add(attstmt, *argv[0]) == false) {
warnx("%s: cbor_map_add", __func__);
goto fail;
}
}
ok = 0;
fail:
for (size_t i = 0; i < 3; i++)
free_pair(&argv[i]);
if (ok < 0 && attstmt != NULL)
cbor_decref(&attstmt);
return attstmt;
}
static int
base64_encode_cbor(const cbor_item_t *item, char **out)
{
unsigned char *ptr = NULL;
size_t len;
size_t alloc_len;
if ((len = cbor_serialize_alloc(item, &ptr, &alloc_len)) == 0 ||
base64_encode(ptr, len, out) < 0) {
free(ptr);
return -1;
}
free(ptr);
return 0;
}
char *
cbor_build_attestation_object(const fido_cred_t *c)
{
cbor_item_t *attobj = NULL;
cbor_item_t *attstmt = NULL;
cbor_item_t *authdata = NULL;
char *attobj_b64 = NULL;
const char *fmt;
const unsigned char *authdata_ptr;
size_t authdata_len;
struct cbor_load_result cbor;
struct cbor_pair *argv[3];
memset(argv, 0, sizeof(argv));
if ((fmt = fido_cred_fmt(c)) == NULL ||
(attstmt = cbor_encode_attestation_statement(c, fmt)) == NULL ||
(authdata_ptr = fido_cred_authdata_ptr(c)) == NULL ||
(authdata_len = fido_cred_authdata_len(c)) == 0) {
warnx("%s: fido_cred", __func__);
goto fail;
}
if ((authdata = cbor_load(authdata_ptr, authdata_len, &cbor)) == NULL) {
warnx("%s: cbor_load", __func__);
goto fail;
}
if ((attobj = cbor_new_definite_map(3)) == NULL) {
warnx("%s: cbor_new_definite_map", __func__);
goto fail;
}
if ((argv[0] = cbor_pack_str("fmt", fmt)) == NULL ||
(argv[1] = cbor_pack_item("attStmt", &attstmt)) == NULL ||
(argv[2] = cbor_pack_item("authData", &authdata)) == NULL) {
warnx("%s: cbor_pack", __func__);
goto fail;
}
if (cbor_map_add(attobj, *argv[0]) == false ||
cbor_map_add(attobj, *argv[1]) == false ||
cbor_map_add(attobj, *argv[2]) == false) {
warnx("%s: cbor_map_add", __func__);
goto fail;
}
if (base64_encode_cbor(attobj, &attobj_b64) < 0) {
warnx("%s: base64_encode_cbor", __func__);
goto fail;
}
fail:
if (attobj != NULL)
cbor_decref(&attobj);
if (attstmt != NULL)
cbor_decref(&attstmt);
if (authdata != NULL)
cbor_decref(&authdata);
for (size_t i = 0; i < 3; i++)
free_pair(&argv[i]);
return attobj_b64;
}