1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright (C) 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.
23 #include "gdummytlsbackend.h"
27 #include "gasyncresult.h"
28 #include "gcancellable.h"
29 #include "ginitable.h"
30 #include "gtlsbackend.h"
31 #include "gtlscertificate.h"
32 #include "gtlsclientconnection.h"
33 #include "gtlsdatabase.h"
34 #include "gtlsfiledatabase.h"
35 #include "gtlsserverconnection.h"
36 #include "gsimpleasyncresult.h"
38 #include "giomodule.h"
39 #include "giomodule-priv.h"
43 static GType _g_dummy_tls_certificate_get_type (void);
44 static GType _g_dummy_tls_connection_get_type (void);
45 static GType _g_dummy_tls_database_get_type (void);
47 struct _GDummyTlsBackend {
48 GObject parent_instance;
49 GTlsDatabase *database;
52 static void g_dummy_tls_backend_iface_init (GTlsBackendInterface *iface);
54 #define g_dummy_tls_backend_get_type _g_dummy_tls_backend_get_type
55 G_DEFINE_TYPE_WITH_CODE (GDummyTlsBackend, g_dummy_tls_backend, G_TYPE_OBJECT,
56 G_IMPLEMENT_INTERFACE (G_TYPE_TLS_BACKEND,
57 g_dummy_tls_backend_iface_init)
58 _g_io_modules_ensure_extension_points_registered ();
59 g_io_extension_point_implement (G_TLS_BACKEND_EXTENSION_POINT_NAME,
65 g_dummy_tls_backend_init (GDummyTlsBackend *dummy)
70 g_dummy_tls_backend_finalize (GObject *object)
72 GDummyTlsBackend *dummy = G_DUMMY_TLS_BACKEND (object);
74 g_clear_object (&dummy->database);
76 G_OBJECT_CLASS (g_dummy_tls_backend_parent_class)->finalize (object);
80 g_dummy_tls_backend_class_init (GDummyTlsBackendClass *backend_class)
82 GObjectClass *object_class = G_OBJECT_CLASS (backend_class);
84 object_class->finalize = g_dummy_tls_backend_finalize;
88 g_dummy_tls_backend_get_default_database (GTlsBackend *backend)
90 GDummyTlsBackend *dummy = G_DUMMY_TLS_BACKEND (backend);
92 if (g_once_init_enter (&dummy->database))
96 tlsdb = g_object_new (_g_dummy_tls_database_get_type (), NULL);
97 g_once_init_leave (&dummy->database, tlsdb);
100 return g_object_ref (dummy->database);
104 g_dummy_tls_backend_iface_init (GTlsBackendInterface *iface)
106 iface->get_certificate_type = _g_dummy_tls_certificate_get_type;
107 iface->get_client_connection_type = _g_dummy_tls_connection_get_type;
108 iface->get_server_connection_type = _g_dummy_tls_connection_get_type;
109 iface->get_file_database_type = _g_dummy_tls_database_get_type;
110 iface->get_default_database = g_dummy_tls_backend_get_default_database;
113 /* Dummy certificate type */
115 typedef struct _GDummyTlsCertificate GDummyTlsCertificate;
116 typedef struct _GDummyTlsCertificateClass GDummyTlsCertificateClass;
118 struct _GDummyTlsCertificate {
119 GTlsCertificate parent_instance;
122 struct _GDummyTlsCertificateClass {
123 GTlsCertificateClass parent_class;
130 PROP_CERT_CERTIFICATE,
131 PROP_CERT_CERTIFICATE_PEM,
132 PROP_CERT_PRIVATE_KEY,
133 PROP_CERT_PRIVATE_KEY_PEM,
137 static void g_dummy_tls_certificate_initable_iface_init (GInitableIface *iface);
139 #define g_dummy_tls_certificate_get_type _g_dummy_tls_certificate_get_type
140 G_DEFINE_TYPE_WITH_CODE (GDummyTlsCertificate, g_dummy_tls_certificate, G_TYPE_TLS_CERTIFICATE,
141 G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE,
142 g_dummy_tls_certificate_initable_iface_init);)
145 g_dummy_tls_certificate_get_property (GObject *object,
150 /* We need to define this method to make GObject happy, but it will
151 * never be possible to construct a working GDummyTlsCertificate, so
152 * it doesn't have to do anything useful.
157 g_dummy_tls_certificate_set_property (GObject *object,
162 /* Just ignore all attempts to set properties. */
166 g_dummy_tls_certificate_class_init (GDummyTlsCertificateClass *certificate_class)
168 GObjectClass *gobject_class = G_OBJECT_CLASS (certificate_class);
170 gobject_class->get_property = g_dummy_tls_certificate_get_property;
171 gobject_class->set_property = g_dummy_tls_certificate_set_property;
173 g_object_class_override_property (gobject_class, PROP_CERT_CERTIFICATE, "certificate");
174 g_object_class_override_property (gobject_class, PROP_CERT_CERTIFICATE_PEM, "certificate-pem");
175 g_object_class_override_property (gobject_class, PROP_CERT_PRIVATE_KEY, "private-key");
176 g_object_class_override_property (gobject_class, PROP_CERT_PRIVATE_KEY_PEM, "private-key-pem");
177 g_object_class_override_property (gobject_class, PROP_CERT_ISSUER, "issuer");
181 g_dummy_tls_certificate_init (GDummyTlsCertificate *certificate)
186 g_dummy_tls_certificate_initable_init (GInitable *initable,
187 GCancellable *cancellable,
190 g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_UNAVAILABLE,
191 _("TLS support is not available"));
196 g_dummy_tls_certificate_initable_iface_init (GInitableIface *iface)
198 iface->init = g_dummy_tls_certificate_initable_init;
201 /* Dummy connection type; since GTlsClientConnection and
202 * GTlsServerConnection are just interfaces, we can implement them
203 * both on a single object.
206 typedef struct _GDummyTlsConnection GDummyTlsConnection;
207 typedef struct _GDummyTlsConnectionClass GDummyTlsConnectionClass;
209 struct _GDummyTlsConnection {
210 GTlsConnection parent_instance;
213 struct _GDummyTlsConnectionClass {
214 GTlsConnectionClass parent_class;
221 PROP_CONN_BASE_IO_STREAM,
222 PROP_CONN_USE_SYSTEM_CERTDB,
223 PROP_CONN_REQUIRE_CLOSE_NOTIFY,
224 PROP_CONN_REHANDSHAKE_MODE,
225 PROP_CONN_CERTIFICATE,
227 PROP_CONN_PEER_CERTIFICATE,
228 PROP_CONN_PEER_CERTIFICATE_ERRORS,
229 PROP_CONN_VALIDATION_FLAGS,
230 PROP_CONN_SERVER_IDENTITY,
232 PROP_CONN_ACCEPTED_CAS,
233 PROP_CONN_AUTHENTICATION_MODE
236 static void g_dummy_tls_connection_initable_iface_init (GInitableIface *iface);
238 #define g_dummy_tls_connection_get_type _g_dummy_tls_connection_get_type
239 G_DEFINE_TYPE_WITH_CODE (GDummyTlsConnection, g_dummy_tls_connection, G_TYPE_TLS_CONNECTION,
240 G_IMPLEMENT_INTERFACE (G_TYPE_TLS_CLIENT_CONNECTION, NULL);
241 G_IMPLEMENT_INTERFACE (G_TYPE_TLS_SERVER_CONNECTION, NULL);
242 G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE,
243 g_dummy_tls_connection_initable_iface_init);)
246 g_dummy_tls_connection_get_property (GObject *object,
254 g_dummy_tls_connection_set_property (GObject *object,
262 g_dummy_tls_connection_close (GIOStream *stream,
263 GCancellable *cancellable,
270 g_dummy_tls_connection_class_init (GDummyTlsConnectionClass *connection_class)
272 GObjectClass *gobject_class = G_OBJECT_CLASS (connection_class);
273 GIOStreamClass *io_stream_class = G_IO_STREAM_CLASS (connection_class);
275 gobject_class->get_property = g_dummy_tls_connection_get_property;
276 gobject_class->set_property = g_dummy_tls_connection_set_property;
278 /* Need to override this because when initable_init fails it will
279 * dispose the connection, which will close it, which would
280 * otherwise try to close its input/output streams, which don't
283 io_stream_class->close_fn = g_dummy_tls_connection_close;
285 g_object_class_override_property (gobject_class, PROP_CONN_BASE_IO_STREAM, "base-io-stream");
286 g_object_class_override_property (gobject_class, PROP_CONN_USE_SYSTEM_CERTDB, "use-system-certdb");
287 g_object_class_override_property (gobject_class, PROP_CONN_REQUIRE_CLOSE_NOTIFY, "require-close-notify");
288 g_object_class_override_property (gobject_class, PROP_CONN_REHANDSHAKE_MODE, "rehandshake-mode");
289 g_object_class_override_property (gobject_class, PROP_CONN_CERTIFICATE, "certificate");
290 g_object_class_override_property (gobject_class, PROP_CONN_DATABASE, "database");
291 g_object_class_override_property (gobject_class, PROP_CONN_PEER_CERTIFICATE, "peer-certificate");
292 g_object_class_override_property (gobject_class, PROP_CONN_PEER_CERTIFICATE_ERRORS, "peer-certificate-errors");
293 g_object_class_override_property (gobject_class, PROP_CONN_VALIDATION_FLAGS, "validation-flags");
294 g_object_class_override_property (gobject_class, PROP_CONN_SERVER_IDENTITY, "server-identity");
295 g_object_class_override_property (gobject_class, PROP_CONN_USE_SSL3, "use-ssl3");
296 g_object_class_override_property (gobject_class, PROP_CONN_ACCEPTED_CAS, "accepted-cas");
297 g_object_class_override_property (gobject_class, PROP_CONN_AUTHENTICATION_MODE, "authentication-mode");
301 g_dummy_tls_connection_init (GDummyTlsConnection *connection)
306 g_dummy_tls_connection_initable_init (GInitable *initable,
307 GCancellable *cancellable,
310 g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_UNAVAILABLE,
311 _("TLS support is not available"));
316 g_dummy_tls_connection_initable_iface_init (GInitableIface *iface)
318 iface->init = g_dummy_tls_connection_initable_init;
321 /* Dummy database type.
324 typedef struct _GDummyTlsDatabase GDummyTlsDatabase;
325 typedef struct _GDummyTlsDatabaseClass GDummyTlsDatabaseClass;
327 struct _GDummyTlsDatabase {
328 GTlsDatabase parent_instance;
331 struct _GDummyTlsDatabaseClass {
332 GTlsDatabaseClass parent_class;
342 static void g_dummy_tls_database_file_database_iface_init (GTlsFileDatabaseInterface *iface);
343 static void g_dummy_tls_database_initable_iface_init (GInitableIface *iface);
345 #define g_dummy_tls_database_get_type _g_dummy_tls_database_get_type
346 G_DEFINE_TYPE_WITH_CODE (GDummyTlsDatabase, g_dummy_tls_database, G_TYPE_TLS_DATABASE,
347 G_IMPLEMENT_INTERFACE (G_TYPE_TLS_FILE_DATABASE,
348 g_dummy_tls_database_file_database_iface_init);
349 G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE,
350 g_dummy_tls_database_initable_iface_init);)
354 g_dummy_tls_database_get_property (GObject *object,
359 /* We need to define this method to make GObject happy, but it will
360 * never be possible to construct a working GDummyTlsDatabase, so
361 * it doesn't have to do anything useful.
366 g_dummy_tls_database_set_property (GObject *object,
371 /* Just ignore all attempts to set properties. */
375 g_dummy_tls_database_class_init (GDummyTlsDatabaseClass *database_class)
377 GObjectClass *gobject_class = G_OBJECT_CLASS (database_class);
379 gobject_class->get_property = g_dummy_tls_database_get_property;
380 gobject_class->set_property = g_dummy_tls_database_set_property;
382 g_object_class_override_property (gobject_class, PROP_ANCHORS, "anchors");
386 g_dummy_tls_database_init (GDummyTlsDatabase *database)
391 g_dummy_tls_database_file_database_iface_init (GTlsFileDatabaseInterface *iface)
396 g_dummy_tls_database_initable_init (GInitable *initable,
397 GCancellable *cancellable,
400 g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_UNAVAILABLE,
401 _("TLS support is not available"));
406 g_dummy_tls_database_initable_iface_init (GInitableIface *iface)
408 iface->init = g_dummy_tls_database_initable_init;