2 * QEMU I/O channels TLS driver
4 * Copyright (c) 2015 Red Hat, Inc.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
21 #include "io/channel-tls.h"
25 static ssize_t
qio_channel_tls_write_handler(const char *buf
,
29 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(opaque
);
32 ret
= qio_channel_write(tioc
->master
, buf
, len
, NULL
);
33 if (ret
== QIO_CHANNEL_ERR_BLOCK
) {
43 static ssize_t
qio_channel_tls_read_handler(char *buf
,
47 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(opaque
);
50 ret
= qio_channel_read(tioc
->master
, buf
, len
, NULL
);
51 if (ret
== QIO_CHANNEL_ERR_BLOCK
) {
63 qio_channel_tls_new_server(QIOChannel
*master
,
64 QCryptoTLSCreds
*creds
,
70 ioc
= QIO_CHANNEL_TLS(object_new(TYPE_QIO_CHANNEL_TLS
));
73 object_ref(OBJECT(master
));
75 ioc
->session
= qcrypto_tls_session_new(
79 QCRYPTO_TLS_CREDS_ENDPOINT_SERVER
,
85 qcrypto_tls_session_set_callbacks(
87 qio_channel_tls_write_handler
,
88 qio_channel_tls_read_handler
,
91 trace_qio_channel_tls_new_server(ioc
, master
, creds
, aclname
);
95 object_unref(OBJECT(ioc
));
100 qio_channel_tls_new_client(QIOChannel
*master
,
101 QCryptoTLSCreds
*creds
,
102 const char *hostname
,
108 tioc
= QIO_CHANNEL_TLS(object_new(TYPE_QIO_CHANNEL_TLS
));
109 ioc
= QIO_CHANNEL(tioc
);
111 tioc
->master
= master
;
112 if (master
->features
& (1 << QIO_CHANNEL_FEATURE_SHUTDOWN
)) {
113 ioc
->features
|= (1 << QIO_CHANNEL_FEATURE_SHUTDOWN
);
115 object_ref(OBJECT(master
));
117 tioc
->session
= qcrypto_tls_session_new(
121 QCRYPTO_TLS_CREDS_ENDPOINT_CLIENT
,
123 if (!tioc
->session
) {
127 qcrypto_tls_session_set_callbacks(
129 qio_channel_tls_write_handler
,
130 qio_channel_tls_read_handler
,
133 trace_qio_channel_tls_new_client(tioc
, master
, creds
, hostname
);
137 object_unref(OBJECT(tioc
));
142 static gboolean
qio_channel_tls_handshake_io(QIOChannel
*ioc
,
143 GIOCondition condition
,
146 static void qio_channel_tls_handshake_task(QIOChannelTLS
*ioc
,
150 QCryptoTLSSessionHandshakeStatus status
;
152 if (qcrypto_tls_session_handshake(ioc
->session
, &err
) < 0) {
153 trace_qio_channel_tls_handshake_fail(ioc
);
154 qio_task_abort(task
, err
);
158 status
= qcrypto_tls_session_get_handshake_status(ioc
->session
);
159 if (status
== QCRYPTO_TLS_HANDSHAKE_COMPLETE
) {
160 trace_qio_channel_tls_handshake_complete(ioc
);
161 if (qcrypto_tls_session_check_credentials(ioc
->session
,
163 trace_qio_channel_tls_credentials_deny(ioc
);
164 qio_task_abort(task
, err
);
167 trace_qio_channel_tls_credentials_allow(ioc
);
168 qio_task_complete(task
);
170 GIOCondition condition
;
171 if (status
== QCRYPTO_TLS_HANDSHAKE_SENDING
) {
172 condition
= G_IO_OUT
;
177 trace_qio_channel_tls_handshake_pending(ioc
, status
);
178 qio_channel_add_watch(ioc
->master
,
180 qio_channel_tls_handshake_io
,
190 static gboolean
qio_channel_tls_handshake_io(QIOChannel
*ioc
,
191 GIOCondition condition
,
194 QIOTask
*task
= user_data
;
195 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(
196 qio_task_get_source(task
));
198 qio_channel_tls_handshake_task(
201 object_unref(OBJECT(tioc
));
206 void qio_channel_tls_handshake(QIOChannelTLS
*ioc
,
209 GDestroyNotify destroy
)
213 task
= qio_task_new(OBJECT(ioc
),
214 func
, opaque
, destroy
);
216 trace_qio_channel_tls_handshake_start(ioc
);
217 qio_channel_tls_handshake_task(ioc
, task
);
221 static void qio_channel_tls_init(Object
*obj G_GNUC_UNUSED
)
226 static void qio_channel_tls_finalize(Object
*obj
)
228 QIOChannelTLS
*ioc
= QIO_CHANNEL_TLS(obj
);
230 object_unref(OBJECT(ioc
->master
));
231 qcrypto_tls_session_free(ioc
->session
);
235 static ssize_t
qio_channel_tls_readv(QIOChannel
*ioc
,
236 const struct iovec
*iov
,
242 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(ioc
);
246 for (i
= 0 ; i
< niov
; i
++) {
247 ssize_t ret
= qcrypto_tls_session_read(tioc
->session
,
251 if (errno
== EAGAIN
) {
255 return QIO_CHANNEL_ERR_BLOCK
;
259 error_setg_errno(errp
, errno
,
260 "Cannot read from TLS channel");
264 if (ret
< iov
[i
].iov_len
) {
272 static ssize_t
qio_channel_tls_writev(QIOChannel
*ioc
,
273 const struct iovec
*iov
,
279 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(ioc
);
283 for (i
= 0 ; i
< niov
; i
++) {
284 ssize_t ret
= qcrypto_tls_session_write(tioc
->session
,
288 if (errno
== EAGAIN
) {
292 return QIO_CHANNEL_ERR_BLOCK
;
296 error_setg_errno(errp
, errno
,
297 "Cannot write to TLS channel");
301 if (ret
< iov
[i
].iov_len
) {
308 static int qio_channel_tls_set_blocking(QIOChannel
*ioc
,
312 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(ioc
);
314 return qio_channel_set_blocking(tioc
->master
, enabled
, errp
);
317 static void qio_channel_tls_set_delay(QIOChannel
*ioc
,
320 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(ioc
);
322 qio_channel_set_delay(tioc
->master
, enabled
);
325 static void qio_channel_tls_set_cork(QIOChannel
*ioc
,
328 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(ioc
);
330 qio_channel_set_cork(tioc
->master
, enabled
);
333 static int qio_channel_tls_shutdown(QIOChannel
*ioc
,
334 QIOChannelShutdown how
,
337 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(ioc
);
339 return qio_channel_shutdown(tioc
->master
, how
, errp
);
342 static int qio_channel_tls_close(QIOChannel
*ioc
,
345 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(ioc
);
347 return qio_channel_close(tioc
->master
, errp
);
350 static GSource
*qio_channel_tls_create_watch(QIOChannel
*ioc
,
351 GIOCondition condition
)
353 QIOChannelTLS
*tioc
= QIO_CHANNEL_TLS(ioc
);
355 return qio_channel_create_watch(tioc
->master
, condition
);
359 qio_channel_tls_get_session(QIOChannelTLS
*ioc
)
364 static void qio_channel_tls_class_init(ObjectClass
*klass
,
365 void *class_data G_GNUC_UNUSED
)
367 QIOChannelClass
*ioc_klass
= QIO_CHANNEL_CLASS(klass
);
369 ioc_klass
->io_writev
= qio_channel_tls_writev
;
370 ioc_klass
->io_readv
= qio_channel_tls_readv
;
371 ioc_klass
->io_set_blocking
= qio_channel_tls_set_blocking
;
372 ioc_klass
->io_set_delay
= qio_channel_tls_set_delay
;
373 ioc_klass
->io_set_cork
= qio_channel_tls_set_cork
;
374 ioc_klass
->io_close
= qio_channel_tls_close
;
375 ioc_klass
->io_shutdown
= qio_channel_tls_shutdown
;
376 ioc_klass
->io_create_watch
= qio_channel_tls_create_watch
;
379 static const TypeInfo qio_channel_tls_info
= {
380 .parent
= TYPE_QIO_CHANNEL
,
381 .name
= TYPE_QIO_CHANNEL_TLS
,
382 .instance_size
= sizeof(QIOChannelTLS
),
383 .instance_init
= qio_channel_tls_init
,
384 .instance_finalize
= qio_channel_tls_finalize
,
385 .class_init
= qio_channel_tls_class_init
,
388 static void qio_channel_tls_register_types(void)
390 type_register_static(&qio_channel_tls_info
);
393 type_init(qio_channel_tls_register_types
);