summaryrefslogtreecommitdiffstats
path: root/src/methods/composed_gmac/composed_gmac.c
blob: 0705b7d7cdbc43a15f5cf86f9a94ab0e3724ed2c (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
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
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/*
  Copyright (c) 2012-2013, Matthias Schiffer <mschiffer@universe-factory.net>
  All rights reserved.

  Redistribution and use in source and binary forms, with or without
  modification, are permitted provided that the following conditions are met:

    1. Redistributions of source code must retain the above copyright notice,
       this list of conditions and the following disclaimer.
    2. Redistributions in binary form must reproduce the above copyright notice,
       this list of conditions and the following disclaimer in the documentation
       and/or other materials provided with the distribution.

  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/


#include "../../crypto.h"
#include "../common.h"


static const fastd_block128_t ZERO_BLOCK = {};

struct fastd_method_session_state {
	fastd_method_common_t common;

	const fastd_cipher_info_t *cipher_info;
	const fastd_cipher_t *cipher;
	fastd_cipher_state_t *cipher_state;

	const fastd_cipher_info_t *gmac_cipher_info;
	const fastd_cipher_t *gmac_cipher;
	fastd_cipher_state_t *gmac_cipher_state;

	const fastd_mac_info_t *ghash_info;
	const fastd_mac_t *ghash;
	fastd_mac_state_t *ghash_state;
};


static bool cipher_get(fastd_context_t *ctx, const char *name,
		       const fastd_cipher_info_t **cipher_info, const fastd_cipher_t **cipher,
		       const fastd_cipher_info_t **gmac_cipher_info, const fastd_cipher_t **gmac_cipher) {
	if (!fastd_mac_info_get_by_name("ghash"))
		return false;

	size_t len = strlen(name);

	if (len < 5)
		return false;

	if (strcmp(name+len-5, "-gmac"))
		return false;

	char cipher_name[len];
	memcpy(cipher_name, name, len-4);
	strncpy(cipher_name+len-4, "ctr", 4);

	char *gmac_cipher_name = strchr(cipher_name, '+');

	if (!gmac_cipher_name)
		return false;

	*gmac_cipher_name = 0;
	gmac_cipher_name++;

	const fastd_cipher_info_t *info = NULL;
	const fastd_cipher_info_t *gmac_info = NULL;

	if (ctx) {
		*cipher = fastd_cipher_get_by_name(ctx, cipher_name, &info);
		*gmac_cipher = fastd_cipher_get_by_name(ctx, gmac_cipher_name, &gmac_info);
		if (!(*cipher && *gmac_cipher))
			return false;
	}
	else {
		info = fastd_cipher_info_get_by_name(cipher_name);
		gmac_info = fastd_cipher_info_get_by_name(gmac_cipher_name);
		if (!(info && gmac_info))
			return false;
	}

	if (cipher_info)
		*cipher_info = info;

	if (gmac_cipher_info)
		*gmac_cipher_info = gmac_info;

	return true;
}


static bool method_provides(const char *name) {
	const fastd_cipher_info_t *gmac_cipher_info;

	if (!cipher_get(NULL, name, NULL, NULL, &gmac_cipher_info, NULL))
		return false;

	if (gmac_cipher_info->iv_length <= COMMON_NONCEBYTES)
		return false;

	return true;
}

static size_t method_key_length(fastd_context_t *ctx, const char *name) {
	const fastd_cipher_info_t *cipher_info;
	const fastd_cipher_info_t *gmac_cipher_info;

	if (!cipher_get(NULL, name, &cipher_info, NULL, &gmac_cipher_info, NULL))
		exit_bug(ctx, "composed-gmac: can't get cipher key length");

	return cipher_info->key_length + gmac_cipher_info->key_length;
}

static fastd_method_session_state_t* method_session_init(fastd_context_t *ctx, const char *name, const uint8_t *secret, bool initiator) {
	fastd_method_session_state_t *session = malloc(sizeof(fastd_method_session_state_t));

	fastd_method_common_init(ctx, &session->common, initiator);

	if (!cipher_get(ctx, name,
			&session->cipher_info, &session->cipher,
			&session->gmac_cipher_info, &session->gmac_cipher))
		exit_bug(ctx, "composed-gmac: can't instanciate cipher");

	session->cipher_state = session->cipher->init(ctx, secret);
	if (session->cipher_info->iv_length && session->cipher_info->iv_length <= COMMON_NONCEBYTES)
		exit_bug(ctx, "composed-gmac: iv_length to small");

	session->gmac_cipher_state = session->gmac_cipher->init(ctx, secret + session->cipher_info->key_length);
	if (session->gmac_cipher_info->iv_length <= COMMON_NONCEBYTES)
		exit_bug(ctx, "composed-gmac: GMAC cipher iv_length to small");

	fastd_block128_t H;

	uint8_t zeroiv[session->gmac_cipher_info->iv_length];
	memset(zeroiv, 0, session->gmac_cipher_info->iv_length);

	if (!session->gmac_cipher->crypt(ctx, session->gmac_cipher_state, &H, &ZERO_BLOCK, sizeof(fastd_block128_t), zeroiv)) {
		session->cipher->free(ctx, session->cipher_state);
		session->gmac_cipher->free(ctx, session->gmac_cipher_state);
		free(session);

		return NULL;
	}

	session->ghash = fastd_mac_get_by_name(ctx, "ghash", &session->ghash_info);
	if (!session->ghash)
		exit_bug(ctx, "composed-gmac: can't instanciate ghash mac");

	session->ghash_state = session->ghash->init(ctx, H.b);

	return session;
}

static bool method_session_is_valid(fastd_context_t *ctx, fastd_method_session_state_t *session) {
	return (session && fastd_method_session_common_is_valid(ctx, &session->common));
}

static bool method_session_is_initiator(fastd_context_t *ctx UNUSED, fastd_method_session_state_t *session) {
	return fastd_method_session_common_is_initiator(&session->common);
}

static bool method_session_want_refresh(fastd_context_t *ctx, fastd_method_session_state_t *session) {
	return fastd_method_session_common_want_refresh(ctx, &session->common);
}

static void method_session_superseded(fastd_context_t *ctx, fastd_method_session_state_t *session) {
	fastd_method_session_common_superseded(ctx, &session->common);
}

static void method_session_free(fastd_context_t *ctx, fastd_method_session_state_t *session) {
	if (session) {
		session->cipher->free(ctx, session->cipher_state);
		session->gmac_cipher->free(ctx, session->gmac_cipher_state);
		session->ghash->free(ctx, session->ghash_state);

		free(session);
	}
}

static inline void put_size(fastd_block128_t *out, size_t len) {
	memset(out, 0, sizeof(fastd_block128_t));
	out->b[3] = len >> 29;
	out->b[4] = len >> 21;
	out->b[5] = len >> 13;
	out->b[6] = len >> 5;
	out->b[7] = len << 3;
}

static bool method_encrypt(fastd_context_t *ctx, fastd_peer_t *peer UNUSED, fastd_method_session_state_t *session, fastd_buffer_t *out, fastd_buffer_t in) {
	size_t tail_len = alignto(in.len, sizeof(fastd_block128_t))-in.len;
	*out = fastd_buffer_alloc(ctx, sizeof(fastd_block128_t)+in.len, alignto(COMMON_HEADBYTES, 16), sizeof(fastd_block128_t)+tail_len);

	if (tail_len)
		memset(in.data+in.len, 0, tail_len);

	int n_blocks = block_count(in.len, sizeof(fastd_block128_t));

	fastd_block128_t *inblocks = in.data;
	fastd_block128_t *outblocks = out->data;
	fastd_block128_t sig;

	uint8_t gmac_nonce[session->gmac_cipher_info->iv_length];
	memset(gmac_nonce, 0, session->gmac_cipher_info->iv_length);
	memcpy(gmac_nonce, session->common.send_nonce, COMMON_NONCEBYTES);
	gmac_nonce[session->gmac_cipher_info->iv_length-1] = 1;

	bool ok = session->gmac_cipher->crypt(ctx, session->gmac_cipher_state, outblocks, &ZERO_BLOCK, sizeof(fastd_block128_t), gmac_nonce);

	if (ok) {
		uint8_t nonce[session->cipher_info->iv_length];
		if (session->cipher_info->iv_length) {
			memset(nonce, 0, session->cipher_info->iv_length);
			memcpy(nonce, session->common.send_nonce, COMMON_NONCEBYTES);
			nonce[session->cipher_info->iv_length-1] = 1;
		}

		ok = session->cipher->crypt(ctx, session->cipher_state, outblocks+1, inblocks, n_blocks*sizeof(fastd_block128_t), nonce);
	}

	if (ok) {
		if (tail_len)
			memset(out->data+out->len, 0, tail_len);

		put_size(&outblocks[n_blocks+1], in.len);

		ok = session->ghash->hash(ctx, session->ghash_state, &sig, outblocks+1, n_blocks+1);
	}

	if (!ok) {
		fastd_buffer_free(*out);
		return false;
	}

	xor_a(&outblocks[0], sig);

	fastd_buffer_free(in);

	fastd_buffer_pull_head(ctx, out, COMMON_HEADBYTES);

	memcpy(out->data, session->common.send_nonce, COMMON_NONCEBYTES);
	fastd_method_increment_nonce(&session->common);

	((uint8_t*)out->data)[COMMON_NONCEBYTES] = 0; /* flags */

	return true;
}

static bool method_decrypt(fastd_context_t *ctx, fastd_peer_t *peer, fastd_method_session_state_t *session, fastd_buffer_t *out, fastd_buffer_t in) {
	if (in.len < COMMON_HEADBYTES+sizeof(fastd_block128_t))
		return false;

	if (!method_session_is_valid(ctx, session))
		return false;

	const uint8_t *common_nonce = in.data;

	if (common_nonce[COMMON_NONCEBYTES]) /* flags */
		return false;

	int64_t age;
	if (!fastd_method_is_nonce_valid(ctx, &session->common, common_nonce, &age))
		return false;

	uint8_t gmac_nonce[session->gmac_cipher_info->iv_length];
	memset(gmac_nonce, 0, session->gmac_cipher_info->iv_length);
	memcpy(gmac_nonce, common_nonce, COMMON_NONCEBYTES);
	gmac_nonce[session->gmac_cipher_info->iv_length-1] = 1;

	uint8_t nonce[session->cipher_info->iv_length];
	if (session->cipher_info->iv_length) {
		memset(nonce, 0, session->cipher_info->iv_length);
		memcpy(nonce, common_nonce, COMMON_NONCEBYTES);
		nonce[session->cipher_info->iv_length-1] = 1;
	}

	fastd_buffer_push_head(ctx, &in, COMMON_HEADBYTES);

	size_t tail_len = alignto(in.len, sizeof(fastd_block128_t))-in.len;
	*out = fastd_buffer_alloc(ctx, in.len, 0, tail_len);

	int n_blocks = block_count(in.len, sizeof(fastd_block128_t));

	fastd_block128_t *inblocks = in.data;
	fastd_block128_t *outblocks = out->data;
	fastd_block128_t sig;

	bool ok = session->gmac_cipher->crypt(ctx, session->gmac_cipher_state, outblocks, inblocks, sizeof(fastd_block128_t), gmac_nonce);

	if (ok)
		ok = session->cipher->crypt(ctx, session->cipher_state, outblocks+1, inblocks+1, (n_blocks-1)*sizeof(fastd_block128_t), nonce);

	if (ok) {
		if (tail_len)
			memset(in.data+in.len, 0, tail_len);

		put_size(&inblocks[n_blocks], in.len-sizeof(fastd_block128_t));

		ok = session->ghash->hash(ctx, session->ghash_state, &sig, inblocks+1, n_blocks);
	}

	if (!ok || memcmp(&sig, &outblocks[0], sizeof(fastd_block128_t)) != 0) {
		fastd_buffer_free(*out);
		return false;
	}

	fastd_buffer_push_head(ctx, out, sizeof(fastd_block128_t));

	if (!fastd_method_reorder_check(ctx, peer, &session->common, common_nonce, age)) {
		fastd_buffer_free(*out);
		*out = fastd_buffer_alloc(ctx, 0, 0, 0);
	}

	fastd_buffer_free(in);

	return true;
}

const fastd_method_t fastd_method_composed_gmac = {
	.provides = method_provides,

	.max_overhead = COMMON_HEADBYTES + sizeof(fastd_block128_t),
	.min_encrypt_head_space = 0,
	.min_decrypt_head_space = 0,
	.min_encrypt_tail_space = sizeof(fastd_block128_t)-1,
	.min_decrypt_tail_space = 2*sizeof(fastd_block128_t)-1,

	.key_length = method_key_length,
	.session_init = method_session_init,
	.session_is_valid = method_session_is_valid,
	.session_is_initiator = method_session_is_initiator,
	.session_want_refresh = method_session_want_refresh,
	.session_superseded = method_session_superseded,
	.session_free = method_session_free,

	.encrypt = method_encrypt,
	.decrypt = method_decrypt,
};