Formatting cleanup
[glib.git] / gio / gtlsbackend.c
blobc77293d59e2bafdba696c563834a97fcf8814a70
1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2010 Red Hat, Inc
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General
16 * Public License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #include "config.h"
22 #include "glib.h"
24 #include "gtlsbackend.h"
25 #include "gdummytlsbackend.h"
26 #include "gioenumtypes.h"
27 #include "giomodule-priv.h"
29 /**
30 * SECTION:gtls
31 * @title: TLS Overview
32 * @short_description: TLS (aka SSL) support for GSocketConnection
33 * @include: gio/gio.h
35 * #GTlsConnection and related classes provide TLS (Transport Layer
36 * Security, previously known as SSL, Secure Sockets Layer) support for
37 * gio-based network streams.
39 * In the simplest case, for a client connection, you can just set the
40 * #GSocketClient:tls flag on a #GSocketClient, and then any
41 * connections created by that client will have TLS negotiated
42 * automatically, using appropriate default settings, and rejecting
43 * any invalid or self-signed certificates (unless you change that
44 * default by setting the #GSocketClient:tls-validation-flags
45 * property). The returned object will be a #GTcpWrapperConnection,
46 * which wraps the underlying #GTlsClientConnection.
48 * For greater control, you can create your own #GTlsClientConnection,
49 * wrapping a #GSocketConnection (or an arbitrary #GIOStream with
50 * pollable input and output streams) and then connect to its signals,
51 * such as #GTlsConnection::accept-certificate, before starting the
52 * handshake.
54 * Server-side TLS is similar, using #GTlsServerConnection. At the
55 * moment, there is no support for automatically wrapping server-side
56 * connections in the way #GSocketClient does for client-side
57 * connections.
60 /**
61 * SECTION:gtlsbackend
62 * @title: GTlsBackend
63 * @short_description: TLS backend implementation
64 * @include: gio/gio.h
67 /**
68 * GTlsBackend:
70 * TLS (Transport Layer Security, aka SSL) backend. This is an
71 * internal type used to coordinate the different classes implemented
72 * by a TLS backend.
74 * Since: 2.28
77 G_DEFINE_INTERFACE (GTlsBackend, g_tls_backend, G_TYPE_OBJECT);
79 static void
80 g_tls_backend_default_init (GTlsBackendInterface *iface)
84 /**
85 * g_tls_backend_get_default:
87 * Gets the default #GTlsBackend for the system.
89 * Returns: (transfer none): a #GTlsBackend
91 * Since: 2.28
93 GTlsBackend *
94 g_tls_backend_get_default (void)
96 return _g_io_module_get_default (G_TLS_BACKEND_EXTENSION_POINT_NAME,
97 "GIO_USE_TLS", NULL);
101 * g_tls_backend_supports_tls:
102 * @backend: the #GTlsBackend
104 * Checks if TLS is supported; if this returns %FALSE for the default
105 * #GTlsBackend, it means no "real" TLS backend is available.
107 * Return value: whether or not TLS is supported
109 * Since: 2.28
111 gboolean
112 g_tls_backend_supports_tls (GTlsBackend *backend)
114 if (G_TLS_BACKEND_GET_INTERFACE (backend)->supports_tls)
115 return G_TLS_BACKEND_GET_INTERFACE (backend)->supports_tls (backend);
116 else if (G_IS_DUMMY_TLS_BACKEND (backend))
117 return FALSE;
118 else
119 return TRUE;
123 * g_tls_backend_get_default_database:
124 * @backend: the #GTlsBackend
126 * Gets the default #GTlsDatabase used to verify TLS connections.
128 * Return value: (transfer full): the default database, which should be
129 * unreffed when done.
131 * Since: 2.30
133 GTlsDatabase *
134 g_tls_backend_get_default_database (GTlsBackend *backend)
136 g_return_val_if_fail (G_IS_TLS_BACKEND (backend), NULL);
138 /* This method was added later, so accept the (remote) possibility it can be NULL */
139 if (!G_TLS_BACKEND_GET_INTERFACE (backend)->get_default_database)
140 return NULL;
142 return G_TLS_BACKEND_GET_INTERFACE (backend)->get_default_database (backend);
146 * g_tls_backend_get_certificate_type:
147 * @backend: the #GTlsBackend
149 * Gets the #GType of @backend's #GTlsCertificate implementation.
151 * Return value: the #GType of @backend's #GTlsCertificate
152 * implementation.
154 * Since: 2.28
156 GType
157 g_tls_backend_get_certificate_type (GTlsBackend *backend)
159 return G_TLS_BACKEND_GET_INTERFACE (backend)->get_certificate_type ();
163 * g_tls_backend_get_client_connection_type:
164 * @backend: the #GTlsBackend
166 * Gets the #GType of @backend's #GTlsClientConnection implementation.
168 * Return value: the #GType of @backend's #GTlsClientConnection
169 * implementation.
171 * Since: 2.28
173 GType
174 g_tls_backend_get_client_connection_type (GTlsBackend *backend)
176 return G_TLS_BACKEND_GET_INTERFACE (backend)->get_client_connection_type ();
180 * g_tls_backend_get_server_connection_type:
181 * @backend: the #GTlsBackend
183 * Gets the #GType of @backend's #GTlsServerConnection implementation.
185 * Return value: the #GType of @backend's #GTlsServerConnection
186 * implementation.
188 * Since: 2.28
190 GType
191 g_tls_backend_get_server_connection_type (GTlsBackend *backend)
193 return G_TLS_BACKEND_GET_INTERFACE (backend)->get_server_connection_type ();
197 * g_tls_backend_get_file_database_type:
198 * @backend: the #GTlsBackend
200 * Gets the #GType of @backend's #GTlsFileDatabase implementation.
202 * Return value: the #GType of backend's #GTlsFileDatabase implementation.
204 * Since: 2.30
206 GType
207 g_tls_backend_get_file_database_type (GTlsBackend *backend)
209 g_return_val_if_fail (G_IS_TLS_BACKEND (backend), 0);
211 /* This method was added later, so accept the (remote) possibility it can be NULL */
212 if (!G_TLS_BACKEND_GET_INTERFACE (backend)->get_file_database_type)
213 return 0;
215 return G_TLS_BACKEND_GET_INTERFACE (backend)->get_file_database_type ();