summaryrefslogtreecommitdiff
path: root/ustream-io-openssl.c
blob: 7045bb660a36102f022b7c112084333e6918e0aa (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
/*
 * ustream-ssl - library for SSL over ustream
 *
 * Copyright (C) 2012 Felix Fietkau <nbd@openwrt.org>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <string.h>

#include <libubox/ustream.h>

#include "ustream-ssl.h"
#include "openssl_bio_compat.h"
#include "ustream-internal.h"

static int
s_ustream_new(BIO *b)
{
	BIO_set_init(b, 1);
	BIO_set_data(b, NULL);
	BIO_clear_flags(b, ~0);
	return 1;
}

static int
s_ustream_free(BIO *b)
{
	if (!b)
		return 0;

	BIO_set_data(b, NULL);
	BIO_set_init(b, 0);
	BIO_clear_flags(b, ~0);
	return 1;
}

static int
s_ustream_read(BIO *b, char *buf, int len)
{
	struct bio_ctx *ctx;
	char *sbuf;
	int slen;

	if (!buf || len <= 0)
		return 0;

	ctx = (struct bio_ctx *)BIO_get_data(b);
	if (!ctx || !ctx->stream)
		return 0;

	sbuf = ustream_get_read_buf(ctx->stream, &slen);

	BIO_clear_retry_flags(b);
	if (!slen) {
		BIO_set_retry_read(b);
		return -1;
	}

	if (slen > len)
		slen = len;

	memcpy(buf, sbuf, slen);
	ustream_consume(ctx->stream, slen);

	return slen;
}

static int
s_ustream_write(BIO *b, const char *buf, int len)
{
	struct bio_ctx *ctx;

	if (!buf || len <= 0)
		return 0;

	ctx = (struct bio_ctx *)BIO_get_data(b);
	if (!ctx || !ctx->stream)
		return 0;

	if (ctx->stream->write_error)
		return len;

	return ustream_write(ctx->stream, buf, len, false);
}

static int
s_ustream_gets(BIO *b, char *buf, int len)
{
	return -1;
}

static int
s_ustream_puts(BIO *b, const char *str)
{
	return s_ustream_write(b, str, strlen(str));
}

static long s_ustream_ctrl(BIO *b, int cmd, long num, void *ptr)
{
	switch (cmd) {
	case BIO_CTRL_FLUSH:
		return 1;
	default:
		return 0;
	};
}

static BIO *ustream_bio_new(struct ustream *s)
{
	BIO *bio;
	struct bio_ctx *ctx = calloc(1, sizeof(struct bio_ctx));

	ctx->stream = s;
	ctx->meth = BIO_meth_new(100 | BIO_TYPE_SOURCE_SINK, "ustream");

	BIO_meth_set_write(ctx->meth, s_ustream_write);
	BIO_meth_set_read(ctx->meth, s_ustream_read);
	BIO_meth_set_puts(ctx->meth, s_ustream_puts);
	BIO_meth_set_gets(ctx->meth, s_ustream_gets);
	BIO_meth_set_ctrl(ctx->meth, s_ustream_ctrl);
	BIO_meth_set_create(ctx->meth, s_ustream_new);
	BIO_meth_set_destroy(ctx->meth, s_ustream_free);
	bio = BIO_new(ctx->meth);
	BIO_set_data(bio, ctx);

	return bio;
}

__hidden void ustream_set_io(struct ustream_ssl_ctx *ctx, void *ssl, struct ustream *conn)
{
	BIO *bio = ustream_bio_new(conn);
	SSL_set_bio(ssl, bio, bio);
}