1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2009 Codethink Limited
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU Lesser General Public License as published
7 * by the Free Software Foundation; either version 2 of the licence or (at
8 * your option) any later version.
10 * See the included COPYING file for more information.
12 * Authors: Ryan Lortie <desrt@desrt.ca>
17 #include "gunixconnection.h"
18 #include "gnetworking.h"
20 #include "gsocketcontrolmessage.h"
21 #include "gunixcredentialsmessage.h"
22 #include "gunixfdmessage.h"
30 * SECTION:gunixconnection
31 * @title: GUnixConnection
32 * @short_description: A UNIX domain GSocketConnection
33 * @include: gio/gunixconnection.h
34 * @see_also: #GSocketConnection.
36 * This is the subclass of #GSocketConnection that is created
37 * for UNIX domain sockets.
39 * It contains functions to do some of the UNIX socket specific
40 * functionality like passing file descriptors.
42 * Note that <filename><gio/gunixconnection.h></filename> belongs to
43 * the UNIX-specific GIO interfaces, thus you have to use the
44 * <filename>gio-unix-2.0.pc</filename> pkg-config file when using it.
49 G_DEFINE_TYPE_WITH_CODE (GUnixConnection, g_unix_connection,
50 G_TYPE_SOCKET_CONNECTION,
51 g_socket_connection_factory_register_type (g_define_type_id,
54 G_SOCKET_PROTOCOL_DEFAULT);
58 * g_unix_connection_send_fd:
59 * @connection: a #GUnixConnection
60 * @fd: a file descriptor
61 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
62 * @error: (allow-none): #GError for error reporting, or %NULL to ignore.
64 * Passes a file descriptor to the receiving side of the
65 * connection. The receiving end has to call g_unix_connection_receive_fd()
66 * to accept the file descriptor.
68 * As well as sending the fd this also writes a single byte to the
69 * stream, as this is required for fd passing to work on some
72 * Returns: a %TRUE on success, %NULL on error.
77 g_unix_connection_send_fd (GUnixConnection *connection,
79 GCancellable *cancellable,
82 GSocketControlMessage *scm;
85 g_return_val_if_fail (G_IS_UNIX_CONNECTION (connection), FALSE);
86 g_return_val_if_fail (fd >= 0, FALSE);
88 scm = g_unix_fd_message_new ();
90 if (!g_unix_fd_message_append_fd (G_UNIX_FD_MESSAGE (scm), fd, error))
96 g_object_get (connection, "socket", &socket, NULL);
97 if (g_socket_send_message (socket, NULL, NULL, 0, &scm, 1, 0, cancellable, error) != 1)
98 /* XXX could it 'fail' with zero? */
100 g_object_unref (socket);
101 g_object_unref (scm);
106 g_object_unref (socket);
107 g_object_unref (scm);
113 * g_unix_connection_receive_fd:
114 * @connection: a #GUnixConnection
115 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore
116 * @error: (allow-none): #GError for error reporting, or %NULL to ignore
118 * Receives a file descriptor from the sending end of the connection.
119 * The sending end has to call g_unix_connection_send_fd() for this
122 * As well as reading the fd this also reads a single byte from the
123 * stream, as this is required for fd passing to work on some
126 * Returns: a file descriptor on success, -1 on error.
131 g_unix_connection_receive_fd (GUnixConnection *connection,
132 GCancellable *cancellable,
135 GSocketControlMessage **scms;
136 gint *fds, nfd, fd, nscm;
137 GUnixFDMessage *fdmsg;
140 g_return_val_if_fail (G_IS_UNIX_CONNECTION (connection), -1);
142 g_object_get (connection, "socket", &socket, NULL);
143 if (g_socket_receive_message (socket, NULL, NULL, 0,
144 &scms, &nscm, NULL, cancellable, error) != 1)
145 /* XXX it _could_ 'fail' with zero. */
147 g_object_unref (socket);
152 g_object_unref (socket);
158 g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
159 ngettext("Expecting 1 control message, got %d",
160 "Expecting 1 control message, got %d",
164 for (i = 0; i < nscm; i++)
165 g_object_unref (scms[i]);
172 if (!G_IS_UNIX_FD_MESSAGE (scms[0]))
174 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
175 _("Unexpected type of ancillary data"));
176 g_object_unref (scms[0]);
182 fdmsg = G_UNIX_FD_MESSAGE (scms[0]);
185 fds = g_unix_fd_message_steal_fds (fdmsg, &nfd);
186 g_object_unref (fdmsg);
192 g_set_error (error, G_IO_ERROR, G_IO_ERROR_FAILED,
193 ngettext("Expecting one fd, but got %d\n",
194 "Expecting one fd, but got %d\n",
198 for (i = 0; i < nfd; i++)
211 g_set_error_literal (error, G_IO_ERROR, G_IO_ERROR_FAILED,
212 _("Received invalid fd"));
220 g_unix_connection_init (GUnixConnection *connection)
225 g_unix_connection_class_init (GUnixConnectionClass *class)
229 /* TODO: Other stuff we might want to add are:
230 void g_unix_connection_send_fd_async (GUnixConnection *connection,
234 GAsyncReadyCallback callback,
236 gboolean g_unix_connection_send_fd_finish (GUnixConnection *connection,
239 gboolean g_unix_connection_send_fds (GUnixConnection *connection,
243 void g_unix_connection_send_fds_async (GUnixConnection *connection,
247 GAsyncReadyCallback callback,
249 gboolean g_unix_connection_send_fds_finish (GUnixConnection *connection,
252 void g_unix_connection_receive_fd_async (GUnixConnection *connection,
254 GAsyncReadyCallback callback,
256 gint g_unix_connection_receive_fd_finish (GUnixConnection *connection,
260 gboolean g_unix_connection_send_fake_credentials (GUnixConnection *connection,
265 void g_unix_connection_send_fake_credentials_async (GUnixConnection *connection,
270 GAsyncReadyCallback callback,
272 gboolean g_unix_connection_send_fake_credentials_finish (GUnixConnection *connection,
275 gboolean g_unix_connection_create_pair (GUnixConnection **one,
276 GUnixConnection **two,
282 * g_unix_connection_send_credentials:
283 * @connection: A #GUnixConnection.
284 * @cancellable: (allow-none): A #GCancellable or %NULL.
285 * @error: Return location for error or %NULL.
287 * Passes the credentials of the current user the receiving side
288 * of the connection. The receiving end has to call
289 * g_unix_connection_receive_credentials() (or similar) to accept the
292 * As well as sending the credentials this also writes a single NUL
293 * byte to the stream, as this is required for credentials passing to
294 * work on some implementations.
296 * Other ways to exchange credentials with a foreign peer includes the
297 * #GUnixCredentialsMessage type and g_socket_get_credentials() function.
299 * Returns: %TRUE on success, %FALSE if @error is set.
304 g_unix_connection_send_credentials (GUnixConnection *connection,
305 GCancellable *cancellable,
308 GCredentials *credentials;
309 GSocketControlMessage *scm;
312 GOutputVector vector;
313 guchar nul_byte[1] = {'\0'};
316 g_return_val_if_fail (G_IS_UNIX_CONNECTION (connection), FALSE);
317 g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
321 credentials = g_credentials_new ();
323 vector.buffer = &nul_byte;
326 if (g_unix_credentials_message_is_supported ())
328 scm = g_unix_credentials_message_new_with_credentials (credentials);
337 g_object_get (connection, "socket", &socket, NULL);
338 if (g_socket_send_message (socket,
348 g_prefix_error (error, _("Error sending credentials: "));
355 g_object_unref (socket);
357 g_object_unref (scm);
358 g_object_unref (credentials);
363 send_credentials_async_thread (GTask *task,
364 gpointer source_object,
366 GCancellable *cancellable)
368 GError *error = NULL;
370 if (g_unix_connection_send_credentials (G_UNIX_CONNECTION (source_object),
373 g_task_return_boolean (task, TRUE);
375 g_task_return_error (task, error);
376 g_object_unref (task);
380 * g_unix_connection_send_credentials_async:
381 * @connection: A #GUnixConnection.
382 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
383 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
384 * @user_data: (closure): the data to pass to callback function
386 * Asynchronously send credentials.
388 * For more details, see g_unix_connection_send_credentials() which is
389 * the synchronous version of this call.
391 * When the operation is finished, @callback will be called. You can then call
392 * g_unix_connection_send_credentials_finish() to get the result of the operation.
397 g_unix_connection_send_credentials_async (GUnixConnection *connection,
398 GCancellable *cancellable,
399 GAsyncReadyCallback callback,
404 task = g_task_new (connection, cancellable, callback, user_data);
406 g_task_run_in_thread (task, send_credentials_async_thread);
410 * g_unix_connection_send_credentials_finish:
411 * @connection: A #GUnixConnection.
412 * @result: a #GAsyncResult.
413 * @error: a #GError, or %NULL
415 * Finishes an asynchronous send credentials operation started with
416 * g_unix_connection_send_credentials_async().
418 * Returns: %TRUE if the operation was successful, otherwise %FALSE.
423 g_unix_connection_send_credentials_finish (GUnixConnection *connection,
424 GAsyncResult *result,
427 g_return_val_if_fail (g_task_is_valid (result, connection), FALSE);
429 return g_task_propagate_boolean (G_TASK (result), error);
433 * g_unix_connection_receive_credentials:
434 * @connection: A #GUnixConnection.
435 * @cancellable: (allow-none): A #GCancellable or %NULL.
436 * @error: Return location for error or %NULL.
438 * Receives credentials from the sending end of the connection. The
439 * sending end has to call g_unix_connection_send_credentials() (or
440 * similar) for this to work.
442 * As well as reading the credentials this also reads (and discards) a
443 * single byte from the stream, as this is required for credentials
444 * passing to work on some implementations.
446 * Other ways to exchange credentials with a foreign peer includes the
447 * #GUnixCredentialsMessage type and g_socket_get_credentials() function.
449 * Returns: (transfer full): Received credentials on success (free with
450 * g_object_unref()), %NULL if @error is set.
455 g_unix_connection_receive_credentials (GUnixConnection *connection,
456 GCancellable *cancellable,
460 GSocketControlMessage **scms;
464 gssize num_bytes_read;
466 gboolean turn_off_so_passcreds;
469 g_return_val_if_fail (G_IS_UNIX_CONNECTION (connection), NULL);
470 g_return_val_if_fail (error == NULL || *error == NULL, NULL);
475 g_object_get (connection, "socket", &socket, NULL);
477 /* On Linux, we need to turn on SO_PASSCRED if it isn't enabled
478 * already. We also need to turn it off when we're done. See
479 * #617483 for more discussion.
485 turn_off_so_passcreds = FALSE;
487 if (!g_socket_get_option (socket,
495 g_io_error_from_errno (errno),
496 _("Error checking if SO_PASSCRED is enabled for socket: %s"),
502 if (!g_socket_set_option (socket,
510 g_io_error_from_errno (errno),
511 _("Error enabling SO_PASSCRED: %s"),
515 turn_off_so_passcreds = TRUE;
520 g_type_ensure (G_TYPE_UNIX_CREDENTIALS_MESSAGE);
521 num_bytes_read = g_socket_receive_message (socket,
522 NULL, /* GSocketAddress **address */
530 if (num_bytes_read != 1)
532 /* Handle situation where g_socket_receive_message() returns
533 * 0 bytes and not setting @error
535 if (num_bytes_read == 0 && error != NULL && *error == NULL)
537 g_set_error_literal (error,
540 _("Expecting to read a single byte for receiving credentials but read zero bytes"));
545 if (g_unix_credentials_message_is_supported () &&
546 /* Fall back on get_credentials if the other side didn't send the credentials */
554 ngettext("Expecting 1 control message, got %d",
555 "Expecting 1 control message, got %d",
561 if (!G_IS_UNIX_CREDENTIALS_MESSAGE (scms[0]))
563 g_set_error_literal (error,
566 _("Unexpected type of ancillary data"));
570 ret = g_unix_credentials_message_get_credentials (G_UNIX_CREDENTIALS_MESSAGE (scms[0]));
580 _("Not expecting control message, but got %d"),
586 ret = g_socket_get_credentials (socket, error);
593 if (turn_off_so_passcreds)
595 if (!g_socket_set_option (socket,
603 g_io_error_from_errno (errno),
604 _("Error while disabling SO_PASSCRED: %s"),
613 for (n = 0; n < nscm; n++)
614 g_object_unref (scms[n]);
617 g_object_unref (socket);
622 receive_credentials_async_thread (GTask *task,
623 gpointer source_object,
625 GCancellable *cancellable)
628 GError *error = NULL;
630 creds = g_unix_connection_receive_credentials (G_UNIX_CONNECTION (source_object),
634 g_task_return_pointer (task, creds, g_object_unref);
636 g_task_return_error (task, error);
637 g_object_unref (task);
641 * g_unix_connection_receive_credentials_async:
642 * @connection: A #GUnixConnection.
643 * @cancellable: (allow-none): optional #GCancellable object, %NULL to ignore.
644 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
645 * @user_data: (closure): the data to pass to callback function
647 * Asynchronously receive credentials.
649 * For more details, see g_unix_connection_receive_credentials() which is
650 * the synchronous version of this call.
652 * When the operation is finished, @callback will be called. You can then call
653 * g_unix_connection_receive_credentials_finish() to get the result of the operation.
658 g_unix_connection_receive_credentials_async (GUnixConnection *connection,
659 GCancellable *cancellable,
660 GAsyncReadyCallback callback,
665 task = g_task_new (connection, cancellable, callback, user_data);
667 g_task_run_in_thread (task, receive_credentials_async_thread);
671 * g_unix_connection_receive_credentials_finish:
672 * @connection: A #GUnixConnection.
673 * @result: a #GAsyncResult.
674 * @error: a #GError, or %NULL
676 * Finishes an asynchronous receive credentials operation started with
677 * g_unix_connection_receive_credentials_async().
679 * Returns: (transfer full): a #GCredentials, or %NULL on error.
680 * Free the returned object with g_object_unref().
685 g_unix_connection_receive_credentials_finish (GUnixConnection *connection,
686 GAsyncResult *result,
689 g_return_val_if_fail (g_task_is_valid (result, connection), NULL);
691 return g_task_propagate_pointer (G_TASK (result), error);