tls.c 1.77 KB
Newer Older
1 2 3 4 5 6 7 8 9
/*
 * 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 "git2/errors.h"

10
#include "common.h"
11
#include "streams/registry.h"
12
#include "streams/tls.h"
13
#include "streams/mbedtls.h"
14 15
#include "streams/openssl.h"
#include "streams/stransport.h"
16 17 18

int git_tls_stream_new(git_stream **out, const char *host, const char *port)
{
19
	int (*init)(git_stream **, const char *, const char *) = NULL;
20 21
	git_stream_registration custom = {0};
	int error;
22

23 24 25
	GIT_ASSERT_ARG(out);
	GIT_ASSERT_ARG(host);
	GIT_ASSERT_ARG(port);
26

27
	if ((error = git_stream_registry_lookup(&custom, GIT_STREAM_TLS)) == 0) {
28 29
		init = custom.init;
	} else if (error == GIT_ENOTFOUND) {
30
#ifdef GIT_SECURE_TRANSPORT
31
		init = git_stransport_stream_new;
32
#elif defined(GIT_OPENSSL)
33
		init = git_openssl_stream_new;
34
#elif defined(GIT_MBEDTLS)
35
		init = git_mbedtls_stream_new;
36
#endif
37 38
	} else {
		return error;
39 40 41
	}

	if (!init) {
42
		git_error_set(GIT_ERROR_SSL, "there is no TLS stream available");
43 44 45 46 47 48 49 50 51
		return -1;
	}

	return init(out, host, port);
}

int git_tls_stream_wrap(git_stream **out, git_stream *in, const char *host)
{
	int (*wrap)(git_stream **, git_stream *, const char *) = NULL;
52
	git_stream_registration custom = {0};
53

54 55
	GIT_ASSERT_ARG(out);
	GIT_ASSERT_ARG(in);
56

57
	if (git_stream_registry_lookup(&custom, GIT_STREAM_TLS) == 0) {
58
		wrap = custom.wrap;
59 60 61 62 63 64 65 66 67 68 69
	} else {
#ifdef GIT_SECURE_TRANSPORT
		wrap = git_stransport_stream_wrap;
#elif defined(GIT_OPENSSL)
		wrap = git_openssl_stream_wrap;
#elif defined(GIT_MBEDTLS)
		wrap = git_mbedtls_stream_wrap;
#endif
	}

	if (!wrap) {
70
		git_error_set(GIT_ERROR_SSL, "there is no TLS stream available");
71 72 73 74
		return -1;
	}

	return wrap(out, in, host);
75
}