summaryrefslogtreecommitdiff
path: root/src/libgit2/streams/schannel.c
blob: 89f240dfab2394f40cdc859bf4f4ea3e7fdb203d (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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
/*
 * Copyright (C) the libgit2 contributors. All rights reserved.
 *
 * This file is part of libgit2, distributed under the GNU GPL v2 with
 * a Linking Exception. For full terms see the included COPYING file.
 */

#include "streams/schannel.h"

#ifdef GIT_SCHANNEL

#define SECURITY_WIN32

#include <security.h>
#include <schannel.h>
#include <sspi.h>

#include "runtime.h"
#include "stream.h"
#include "streams/socket.h"

static void schannel_global_shutdown(void)
{
    WSACleanup();
}

int git_schannel_stream_global_init(void)
{
    WORD tls_version;
    WSADATA wsa_data;

    /* TODO: this is process global; allow callers to configure it so it doesn't overwrite their existing settings. */

    tls_version = MAKEWORD(2, 2);

    if (WSAStartup(tls_version, &wsa_data) != 0) {
	    git_error_set(GIT_ERROR_OS, "could not initialize Windows Socket Library");
	    return -1;
    }

    if (LOBYTE(wsa_data.wVersion) != 2 || HIBYTE(wsa_data.wVersion) != 2) {
	    git_error_set(GIT_ERROR_SSL, "Windows Socket Library does not support Winsock 2.2");
	    return -1;
    }

    return git_runtime_shutdown_register(schannel_global_shutdown);
}

typedef enum {
    STATE_NONE = 0,
    STATE_CRED = 1,
    STATE_CONTEXT = 2,
} schannel_state;

typedef struct {
    git_stream parent;
    git_stream *io;
    int owned;
    bool connected;
    char *host;

    schannel_state state;

    CredHandle cred;
    CtxtHandle context;
    SecPkgContext_StreamSizes stream_sizes;

    git_str plaintext_in;
    git_str ciphertext_in;
} schannel_stream;

static int schannel_connect(git_stream *stream)
{
    schannel_stream *st = (schannel_stream *)stream;
    SCHANNEL_CRED cred = { 0 };
    SECURITY_STATUS status = SEC_E_INTERNAL_ERROR;
    DWORD context_flags;
    static size_t MAX_RETRIES = 1024;
    // TODO: sanity check this - probably 4096 is sane
    // to get it all in a single read. but 16k is the max tls packet size.
    static size_t READ_BLOCKSIZE = 4096;
    size_t retries;
    ssize_t read_len;
    int error = 0;

    if (st->owned && (error = git_stream_connect(st->io)) < 0)
	    return error;

    cred.dwVersion = SCHANNEL_CRED_VERSION;
    cred.dwFlags = SCH_CRED_NO_DEFAULT_CREDS;
    cred.grbitEnabledProtocols = SP_PROT_TLS1_2_CLIENT | SP_PROT_TLS1_3_CLIENT;
    cred.dwMinimumCipherStrength = 128; // TODO

    // TODO: handle st->state != 0

    /* TODO: do we need to pass an expiry timestamp? */
    if (AcquireCredentialsHandleW(NULL, SCHANNEL_NAME_W, SECPKG_CRED_OUTBOUND, NULL, &cred, NULL, NULL, &st->cred, NULL) != SEC_E_OK) {
	    git_error_set(GIT_ERROR_OS, "could not acquire credentials handle");
	    return -1;
    }

    st->state = STATE_CRED;

    context_flags = ISC_REQ_ALLOCATE_MEMORY |
                        ISC_REQ_CONFIDENTIALITY |
                        ISC_REQ_REPLAY_DETECT |
                        ISC_REQ_SEQUENCE_DETECT |
                        ISC_REQ_STREAM;

    /* TODO: ensure that caller isn't reentering - we need st->context = NULL here */
    git_str_clear(&st->ciphertext_in);

    /* TODO: convert host to wchar and use W method */
    /* TODO: do we need to pass an expiry timestamp? (last arg) */
    for (retries = 0; retries < MAX_RETRIES; retries++) {
	    SecBuffer input_buf[] = { { (unsigned long)st->ciphertext_in.size, SECBUFFER_TOKEN, st->ciphertext_in.size ? st->ciphertext_in.ptr : NULL },
			              { 0, SECBUFFER_EMPTY, NULL } };
	    SecBuffer output_buf[] = { { 0, SECBUFFER_TOKEN, NULL },
			               { 0, SECBUFFER_ALERT, NULL } };

	    SecBufferDesc input_buf_desc = { SECBUFFER_VERSION, 2, input_buf };
	    SecBufferDesc output_buf_desc = { SECBUFFER_VERSION, 2,
			                      output_buf };

	    printf("input data: %d\n", st->ciphertext_in.size);

	    status = InitializeSecurityContextA(
		    &st->cred, retries ? &st->context : NULL, st->host,
		    context_flags, 0, 0, retries ? &input_buf_desc : NULL,
		    0, retries ? NULL : &st->context, &output_buf_desc,
		    &context_flags, NULL);


	    if (status == SEC_E_OK || status == SEC_I_CONTINUE_NEEDED) {
		    st->state = STATE_CONTEXT;

		    if (output_buf[0].cbBuffer > 0) {
			    error = git_stream__write_full(
				    st->io, output_buf[0].pvBuffer,
				    output_buf[0].cbBuffer, 0);

			    FreeContextBuffer(output_buf[0].pvBuffer);
		    }



		/* handle any leftover, unprocessed data */
		    if (input_buf[1].BufferType == SECBUFFER_EXTRA) {
			    GIT_ASSERT(
				    st->ciphertext_in.size >
				    input_buf[1].cbBuffer);

			    printf("remain: %d\n", input_buf[1].cbBuffer);

			    git_str_consume_bytes(
				    &st->ciphertext_in,
				    st->ciphertext_in.size -
				            input_buf[1].cbBuffer);

			    printf("new len: %d\n", st->ciphertext_in.size);
		    } else {
			    printf("clearning...\n");
			    git_str_clear(&st->ciphertext_in);
			    printf("len: %d\n", st->ciphertext_in.size);
		    }





		    if (error < 0 || status == SEC_E_OK)
			    break;
	    } else if (status == SEC_E_INCOMPLETE_MESSAGE) {
			    /* we need additional data from the client; */
			    if (git_str_grow_by(
				        &st->ciphertext_in, READ_BLOCKSIZE) <
				0) {
				    error = -1;
				    break;
			    }

			    printf(" pre-read: input data: %d\n",
				   st->ciphertext_in.size);

			    if ((read_len = git_stream_read(
				         st->io,
				         st->ciphertext_in.ptr +
				                 st->ciphertext_in.size,
				         (st->ciphertext_in.asize -
				          st->ciphertext_in.size))) < 0) {
				    error = -1;
				    break;
			    }

			    GIT_ASSERT(
				    (size_t)read_len <=
				    st->ciphertext_in.asize -
				            st->ciphertext_in.size);
			    st->ciphertext_in.size += read_len;
			    printf("     read: %d\n", read_len);
			    printf("post-read: input data: %d\n",
				   st->ciphertext_in.size);
		    
	    } else {
		    printf("yikes: %x\n", status);

		    git_error_set(
			    GIT_ERROR_OS,
			    "could not initialize security context");
		    error = -1;
		    break;
	    }

	    GIT_ASSERT(st->ciphertext_in.size < ULONG_MAX);
    }

    if (retries == MAX_RETRIES) {
	    git_error_set(
		    GIT_ERROR_SSL,
		    "could not initialize security context: too many retries");
	    error = -1;
    }

    if (!error) {
	if (QueryContextAttributesW(&st->context, SECPKG_ATTR_STREAM_SIZES, &st->stream_sizes) != SEC_E_OK) {
		    git_error_set(GIT_ERROR_SSL, "could not query stream sizes");
		error = -1;
	}
    }

    printf("error is: %d, status is: %d (%d)\n", error, status, (status == SEC_I_CONTINUE_NEEDED));

    st->connected = (error == 0);
    return error;
}

static int schannel_certificate(git_cert **out, git_stream *stream)
{
    return 0;
}

static int schannel_set_proxy(git_stream *stream, const git_proxy_options *proxy_options)
{
    schannel_stream *st = (schannel_stream *)stream;
    return git_stream_set_proxy(st->io, proxy_options);
}

static ssize_t
schannel_write(git_stream *stream, const char *data, size_t data_len, int flags)
{
    schannel_stream *st = (schannel_stream *)stream;
    SecBuffer encrypt_buf[3];
    SecBufferDesc encrypt_buf_desc = { SECBUFFER_VERSION, 3, encrypt_buf };
    ssize_t total_len = 0;

    /* TODO: use a git_str on the stream */
    git_str ciphertext_out = GIT_STR_INIT;

    GIT_UNUSED(flags);

    if (data_len > SSIZE_MAX)
	data_len = SSIZE_MAX;


    // TODO: should this move?
    git_str_init(&ciphertext_out, st->stream_sizes.cbHeader + st->stream_sizes.cbMaximumMessage + st->stream_sizes.cbTrailer);


    while (data_len > 0) {
	size_t message_len = min(data_len, st->stream_sizes.cbMaximumMessage);
	size_t ciphertext_len, ciphertext_written = 0;

	encrypt_buf[0].BufferType = SECBUFFER_STREAM_HEADER;
	encrypt_buf[0].cbBuffer = st->stream_sizes.cbHeader;
	encrypt_buf[0].pvBuffer = ciphertext_out.ptr;

	encrypt_buf[1].BufferType = SECBUFFER_DATA;
	encrypt_buf[1].cbBuffer = (unsigned long)message_len;
	encrypt_buf[1].pvBuffer =
		ciphertext_out.ptr + st->stream_sizes.cbHeader;

	encrypt_buf[2].BufferType = SECBUFFER_STREAM_TRAILER;
	encrypt_buf[2].cbBuffer = st->stream_sizes.cbTrailer;
	encrypt_buf[2].pvBuffer =
		ciphertext_out.ptr + st->stream_sizes.cbHeader + message_len;

	memcpy(ciphertext_out.ptr + st->stream_sizes.cbHeader, data, message_len);

	if (EncryptMessage(&st->context, 0, &encrypt_buf_desc, 0) != SEC_E_OK) {
		git_error_set(GIT_ERROR_OS, "could not encrypt tls message");
		total_len = -1;
		goto done;
	}

	ciphertext_len = encrypt_buf[0].cbBuffer + encrypt_buf[1].cbBuffer + encrypt_buf[2].cbBuffer;

	while (ciphertext_written < ciphertext_len) {
	    ssize_t chunk_len = git_stream_write(st->io, ciphertext_out.ptr + ciphertext_written, ciphertext_len - ciphertext_written, 0);

	    if (chunk_len < 0) {
		total_len = -1;
		goto done;
	    }

	    ciphertext_len -= chunk_len;
	    ciphertext_written += chunk_len;
	}

	total_len += message_len;

	data += message_len;
	data_len -= message_len;
    }

done:
    return total_len;
}

static ssize_t schannel_read(git_stream *stream, void *_data, size_t data_len)
{
    schannel_stream *st = (schannel_stream *)stream;
    char *data = (char *)_data;
    SecBuffer decrypt_buf[4];
    SecBufferDesc decrypt_buf_desc = { SECBUFFER_VERSION, 4, decrypt_buf };
    SECURITY_STATUS status;
    const size_t READ_BLOCKSIZE = (16 * 1024);
    bool has_read = false;
    ssize_t chunk_len, total_len = 0;

    if (data_len > SSIZE_MAX)
	data_len = SSIZE_MAX;

    while ((size_t)total_len < data_len) {
	if (st->plaintext_in.size > 0) {
	    size_t copy_len = min(st->plaintext_in.size, data_len);

	    memcpy(data, st->plaintext_in.ptr, copy_len);
	    git_str_consume_bytes(&st->plaintext_in, copy_len);

	    data += copy_len;
	    data_len -= copy_len;

	    total_len += copy_len;

	    continue;
	}

	if (st->ciphertext_in.size > 0) {
	    decrypt_buf[0].BufferType = SECBUFFER_DATA;
	    decrypt_buf[0].cbBuffer = (unsigned long)min(st->ciphertext_in.size, ULONG_MAX);
	    decrypt_buf[0].pvBuffer = st->ciphertext_in.ptr;

	    decrypt_buf[1].BufferType = SECBUFFER_EMPTY;
	    decrypt_buf[1].cbBuffer = 0;
	    decrypt_buf[1].pvBuffer = NULL;

	    decrypt_buf[2].BufferType = SECBUFFER_EMPTY;
	    decrypt_buf[2].cbBuffer = 0;
	    decrypt_buf[2].pvBuffer = NULL;

	    decrypt_buf[3].BufferType = SECBUFFER_EMPTY;
	    decrypt_buf[3].cbBuffer = 0;
	    decrypt_buf[3].pvBuffer = NULL;

	    status = DecryptMessage(&st->context, &decrypt_buf_desc, 0, NULL);

	    if (status == SEC_E_OK) {
		GIT_ASSERT(decrypt_buf[0].BufferType == SECBUFFER_STREAM_HEADER);
		GIT_ASSERT(decrypt_buf[1].BufferType == SECBUFFER_DATA);
		GIT_ASSERT(decrypt_buf[2].BufferType == SECBUFFER_STREAM_TRAILER);

		if (git_str_put(&st->plaintext_in, decrypt_buf[1].pvBuffer, decrypt_buf[1].cbBuffer) < 0) {
			total_len = -1;
			goto done;
		}

		if (decrypt_buf[3].BufferType == SECBUFFER_EXTRA) {
			git_str_consume_bytes(&st->ciphertext_in, (st->ciphertext_in.size - decrypt_buf[3].cbBuffer));
		} else {
			git_str_clear(&st->ciphertext_in);
		}

		continue;
	    } else if (status == SEC_E_CONTEXT_EXPIRED) {
		break;
	    } else if (status != SEC_E_INCOMPLETE_MESSAGE) {
		git_error_set(GIT_ERROR_SSL, "could not decrypt tls message");
		total_len = -1;
		goto done;
	    }
	}

	if (!has_read) {
	    if (git_str_grow_by(&st->ciphertext_in, READ_BLOCKSIZE) < 0) {
		total_len = -1;
		goto done;
	    }

	    if ((chunk_len = git_stream_read(st->io, st->ciphertext_in.ptr + st->ciphertext_in.size, st->ciphertext_in.asize - st->ciphertext_in.size)) < 0) {
		total_len = -1;
		goto done;
	    }

	    st->ciphertext_in.size += chunk_len;

	    has_read = true;
	    continue;
	}

	break;
    }

done:
    return total_len;
}

static int schannel_close(git_stream *stream)
{
    schannel_stream *st = (schannel_stream *)stream;
    int error = 0;

    if (st->connected) {
	SecBuffer shutdown_buf;
	SecBufferDesc shutdown_buf_desc = { SECBUFFER_VERSION, 1,
			                    &shutdown_buf };
	DWORD shutdown_message = SCHANNEL_SHUTDOWN, shutdown_flags;

	shutdown_buf.BufferType = SECBUFFER_TOKEN;
	shutdown_buf.cbBuffer = sizeof(DWORD);
	shutdown_buf.pvBuffer = &shutdown_message;

	if (ApplyControlToken(&st->context, &shutdown_buf_desc) != SEC_E_OK) {
	    git_error_set(GIT_ERROR_SSL, "could not shutdown stream");
	    error = -1;
	}

	shutdown_buf.BufferType = SECBUFFER_TOKEN;
	shutdown_buf.cbBuffer = 0;
	shutdown_buf.pvBuffer = NULL;

	shutdown_flags = ISC_REQ_ALLOCATE_MEMORY | ISC_REQ_CONFIDENTIALITY |
		         ISC_REQ_REPLAY_DETECT | ISC_REQ_SEQUENCE_DETECT |
		         ISC_REQ_STREAM;

	if (InitializeSecurityContext(
		    &st->cred, &st->context, NULL, shutdown_flags, 0, 0,
		    &shutdown_buf_desc, 0, NULL, &shutdown_buf_desc,
		    &shutdown_flags, NULL) == SEC_E_OK) {
	    if (shutdown_buf.cbBuffer > 0) {
		if (git_stream__write_full(
			    st->io, shutdown_buf.pvBuffer,
			    shutdown_buf.cbBuffer, 0) < 0)
			error = -1;

		FreeContextBuffer(shutdown_buf.pvBuffer);
	    }
	}
    }

    st->connected = false;

    if (st->owned && git_stream_close(st->io) < 0)
	error = -1;

    return error;
}

static void schannel_free(git_stream *stream)
{
    schannel_stream *st = (schannel_stream *)stream;

    if (st->state >= STATE_CONTEXT)
	DeleteSecurityContext(&st->context);

    if (st->state >= STATE_CRED)
	FreeCredentialsHandle(&st->cred);

    st->state = STATE_NONE;

    git_str_dispose(&st->ciphertext_in);
    git_str_dispose(&st->plaintext_in);

    git__free(st->host);
    git__free(st);
}

static int schannel_stream_wrap(
        git_stream **out,
        git_stream *in,
        const char *host,
        int owned)
{
    schannel_stream *st;

    st = git__calloc(1, sizeof(schannel_stream));
    GIT_ERROR_CHECK_ALLOC(st);

    st->io = in;
    st->owned = owned;

    st->host = git__strdup(host);
    GIT_ERROR_CHECK_ALLOC(st->host);

    st->parent.version = GIT_STREAM_VERSION;
    st->parent.encrypted = 1;
    st->parent.proxy_support = git_stream_supports_proxy(st->io);
    st->parent.connect = schannel_connect;
    st->parent.certificate = schannel_certificate;
    st->parent.set_proxy = schannel_set_proxy;
    st->parent.read = schannel_read;
    st->parent.write = schannel_write;
    st->parent.close = schannel_close;
    st->parent.free = schannel_free;

    *out = (git_stream *)st;
    return 0;
}

extern int git_schannel_stream_new(git_stream **out, const char *host, const char *port)
{
    git_stream *stream;
    int error;

    GIT_ASSERT_ARG(out);
    GIT_ASSERT_ARG(host);
    GIT_ASSERT_ARG(port);

    if ((error = git_socket_stream_new(&stream, host, port)) < 0)
	    return error;

    if ((error = schannel_stream_wrap(out, stream, host, 1)) < 0) {
	    git_stream_close(stream);
	    git_stream_free(stream);
    }

    return error;
}

extern int git_schannel_stream_wrap(git_stream **out, git_stream *in, const char *host)
{
    return schannel_stream_wrap(out, in, host, 0);
}

#endif