1 /* GIO - GLib Input, Output and Streaming Library
3 * Copyright © 2009 Codethink Limited
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.1 of the License, or (at 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 `<gio/gunixconnection.h>` belongs to the UNIX-specific
43 * GIO interfaces, thus you have to use the `gio-unix-2.0.pc`
44 * pkg-config file when using it.
52 * #GUnixConnection is an opaque data structure and can only be accessed
53 * using the following functions.
56 G_DEFINE_TYPE_WITH_CODE (GUnixConnection
, g_unix_connection
,
57 G_TYPE_SOCKET_CONNECTION
,
58 g_socket_connection_factory_register_type (g_define_type_id
,
61 G_SOCKET_PROTOCOL_DEFAULT
);
65 * g_unix_connection_send_fd:
66 * @connection: a #GUnixConnection
67 * @fd: a file descriptor
68 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
69 * @error: (nullable): #GError for error reporting, or %NULL to ignore.
71 * Passes a file descriptor to the receiving side of the
72 * connection. The receiving end has to call g_unix_connection_receive_fd()
73 * to accept the file descriptor.
75 * As well as sending the fd this also writes a single byte to the
76 * stream, as this is required for fd passing to work on some
79 * Returns: a %TRUE on success, %NULL on error.
84 g_unix_connection_send_fd (GUnixConnection
*connection
,
86 GCancellable
*cancellable
,
89 GSocketControlMessage
*scm
;
92 g_return_val_if_fail (G_IS_UNIX_CONNECTION (connection
), FALSE
);
93 g_return_val_if_fail (fd
>= 0, FALSE
);
95 scm
= g_unix_fd_message_new ();
97 if (!g_unix_fd_message_append_fd (G_UNIX_FD_MESSAGE (scm
), fd
, error
))
103 g_object_get (connection
, "socket", &socket
, NULL
);
104 if (g_socket_send_message (socket
, NULL
, NULL
, 0, &scm
, 1, 0, cancellable
, error
) != 1)
105 /* XXX could it 'fail' with zero? */
107 g_object_unref (socket
);
108 g_object_unref (scm
);
113 g_object_unref (socket
);
114 g_object_unref (scm
);
120 * g_unix_connection_receive_fd:
121 * @connection: a #GUnixConnection
122 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore
123 * @error: (nullable): #GError for error reporting, or %NULL to ignore
125 * Receives a file descriptor from the sending end of the connection.
126 * The sending end has to call g_unix_connection_send_fd() for this
129 * As well as reading the fd this also reads a single byte from the
130 * stream, as this is required for fd passing to work on some
133 * Returns: a file descriptor on success, -1 on error.
138 g_unix_connection_receive_fd (GUnixConnection
*connection
,
139 GCancellable
*cancellable
,
142 GSocketControlMessage
**scms
;
143 gint
*fds
, nfd
, fd
, nscm
;
144 GUnixFDMessage
*fdmsg
;
147 g_return_val_if_fail (G_IS_UNIX_CONNECTION (connection
), -1);
149 g_object_get (connection
, "socket", &socket
, NULL
);
150 if (g_socket_receive_message (socket
, NULL
, NULL
, 0,
151 &scms
, &nscm
, NULL
, cancellable
, error
) != 1)
152 /* XXX it _could_ 'fail' with zero. */
154 g_object_unref (socket
);
159 g_object_unref (socket
);
165 g_set_error (error
, G_IO_ERROR
, G_IO_ERROR_FAILED
,
166 ngettext("Expecting 1 control message, got %d",
167 "Expecting 1 control message, got %d",
171 for (i
= 0; i
< nscm
; i
++)
172 g_object_unref (scms
[i
]);
179 if (!G_IS_UNIX_FD_MESSAGE (scms
[0]))
181 g_set_error_literal (error
, G_IO_ERROR
, G_IO_ERROR_FAILED
,
182 _("Unexpected type of ancillary data"));
183 g_object_unref (scms
[0]);
189 fdmsg
= G_UNIX_FD_MESSAGE (scms
[0]);
192 fds
= g_unix_fd_message_steal_fds (fdmsg
, &nfd
);
193 g_object_unref (fdmsg
);
199 g_set_error (error
, G_IO_ERROR
, G_IO_ERROR_FAILED
,
200 ngettext("Expecting one fd, but got %d\n",
201 "Expecting one fd, but got %d\n",
205 for (i
= 0; i
< nfd
; i
++)
218 g_set_error_literal (error
, G_IO_ERROR
, G_IO_ERROR_FAILED
,
219 _("Received invalid fd"));
227 g_unix_connection_init (GUnixConnection
*connection
)
232 g_unix_connection_class_init (GUnixConnectionClass
*class)
236 /* TODO: Other stuff we might want to add are:
237 void g_unix_connection_send_fd_async (GUnixConnection *connection,
241 GAsyncReadyCallback callback,
243 gboolean g_unix_connection_send_fd_finish (GUnixConnection *connection,
246 gboolean g_unix_connection_send_fds (GUnixConnection *connection,
250 void g_unix_connection_send_fds_async (GUnixConnection *connection,
254 GAsyncReadyCallback callback,
256 gboolean g_unix_connection_send_fds_finish (GUnixConnection *connection,
259 void g_unix_connection_receive_fd_async (GUnixConnection *connection,
261 GAsyncReadyCallback callback,
263 gint g_unix_connection_receive_fd_finish (GUnixConnection *connection,
267 gboolean g_unix_connection_send_fake_credentials (GUnixConnection *connection,
272 void g_unix_connection_send_fake_credentials_async (GUnixConnection *connection,
277 GAsyncReadyCallback callback,
279 gboolean g_unix_connection_send_fake_credentials_finish (GUnixConnection *connection,
282 gboolean g_unix_connection_create_pair (GUnixConnection **one,
283 GUnixConnection **two,
289 * g_unix_connection_send_credentials:
290 * @connection: A #GUnixConnection.
291 * @cancellable: (nullable): A #GCancellable or %NULL.
292 * @error: Return location for error or %NULL.
294 * Passes the credentials of the current user the receiving side
295 * of the connection. The receiving end has to call
296 * g_unix_connection_receive_credentials() (or similar) to accept the
299 * As well as sending the credentials this also writes a single NUL
300 * byte to the stream, as this is required for credentials passing to
301 * work on some implementations.
303 * Other ways to exchange credentials with a foreign peer includes the
304 * #GUnixCredentialsMessage type and g_socket_get_credentials() function.
306 * Returns: %TRUE on success, %FALSE if @error is set.
311 g_unix_connection_send_credentials (GUnixConnection
*connection
,
312 GCancellable
*cancellable
,
315 GCredentials
*credentials
;
316 GSocketControlMessage
*scm
;
319 GOutputVector vector
;
320 guchar nul_byte
[1] = {'\0'};
323 g_return_val_if_fail (G_IS_UNIX_CONNECTION (connection
), FALSE
);
324 g_return_val_if_fail (error
== NULL
|| *error
== NULL
, FALSE
);
328 credentials
= g_credentials_new ();
330 vector
.buffer
= &nul_byte
;
333 if (g_unix_credentials_message_is_supported ())
335 scm
= g_unix_credentials_message_new_with_credentials (credentials
);
344 g_object_get (connection
, "socket", &socket
, NULL
);
345 if (g_socket_send_message (socket
,
355 g_prefix_error (error
, _("Error sending credentials: "));
362 g_object_unref (socket
);
364 g_object_unref (scm
);
365 g_object_unref (credentials
);
370 send_credentials_async_thread (GTask
*task
,
371 gpointer source_object
,
373 GCancellable
*cancellable
)
375 GError
*error
= NULL
;
377 if (g_unix_connection_send_credentials (G_UNIX_CONNECTION (source_object
),
380 g_task_return_boolean (task
, TRUE
);
382 g_task_return_error (task
, error
);
383 g_object_unref (task
);
387 * g_unix_connection_send_credentials_async:
388 * @connection: A #GUnixConnection.
389 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
390 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
391 * @user_data: (closure): the data to pass to callback function
393 * Asynchronously send credentials.
395 * For more details, see g_unix_connection_send_credentials() which is
396 * the synchronous version of this call.
398 * When the operation is finished, @callback will be called. You can then call
399 * g_unix_connection_send_credentials_finish() to get the result of the operation.
404 g_unix_connection_send_credentials_async (GUnixConnection
*connection
,
405 GCancellable
*cancellable
,
406 GAsyncReadyCallback callback
,
411 task
= g_task_new (connection
, cancellable
, callback
, user_data
);
412 g_task_set_source_tag (task
, g_unix_connection_send_credentials_async
);
413 g_task_run_in_thread (task
, send_credentials_async_thread
);
417 * g_unix_connection_send_credentials_finish:
418 * @connection: A #GUnixConnection.
419 * @result: a #GAsyncResult.
420 * @error: a #GError, or %NULL
422 * Finishes an asynchronous send credentials operation started with
423 * g_unix_connection_send_credentials_async().
425 * Returns: %TRUE if the operation was successful, otherwise %FALSE.
430 g_unix_connection_send_credentials_finish (GUnixConnection
*connection
,
431 GAsyncResult
*result
,
434 g_return_val_if_fail (g_task_is_valid (result
, connection
), FALSE
);
436 return g_task_propagate_boolean (G_TASK (result
), error
);
440 * g_unix_connection_receive_credentials:
441 * @connection: A #GUnixConnection.
442 * @cancellable: (nullable): A #GCancellable or %NULL.
443 * @error: Return location for error or %NULL.
445 * Receives credentials from the sending end of the connection. The
446 * sending end has to call g_unix_connection_send_credentials() (or
447 * similar) for this to work.
449 * As well as reading the credentials this also reads (and discards) a
450 * single byte from the stream, as this is required for credentials
451 * passing to work on some implementations.
453 * Other ways to exchange credentials with a foreign peer includes the
454 * #GUnixCredentialsMessage type and g_socket_get_credentials() function.
456 * Returns: (transfer full): Received credentials on success (free with
457 * g_object_unref()), %NULL if @error is set.
462 g_unix_connection_receive_credentials (GUnixConnection
*connection
,
463 GCancellable
*cancellable
,
467 GSocketControlMessage
**scms
;
471 gssize num_bytes_read
;
473 gboolean turn_off_so_passcreds
;
476 g_return_val_if_fail (G_IS_UNIX_CONNECTION (connection
), NULL
);
477 g_return_val_if_fail (error
== NULL
|| *error
== NULL
, NULL
);
482 g_object_get (connection
, "socket", &socket
, NULL
);
484 /* On Linux, we need to turn on SO_PASSCRED if it isn't enabled
485 * already. We also need to turn it off when we're done. See
486 * #617483 for more discussion.
492 turn_off_so_passcreds
= FALSE
;
494 if (!g_socket_get_option (socket
,
503 g_io_error_from_errno (errsv
),
504 _("Error checking if SO_PASSCRED is enabled for socket: %s"),
510 if (!g_socket_set_option (socket
,
519 g_io_error_from_errno (errsv
),
520 _("Error enabling SO_PASSCRED: %s"),
524 turn_off_so_passcreds
= TRUE
;
529 g_type_ensure (G_TYPE_UNIX_CREDENTIALS_MESSAGE
);
530 num_bytes_read
= g_socket_receive_message (socket
,
531 NULL
, /* GSocketAddress **address */
539 if (num_bytes_read
!= 1)
541 /* Handle situation where g_socket_receive_message() returns
542 * 0 bytes and not setting @error
544 if (num_bytes_read
== 0 && error
!= NULL
&& *error
== NULL
)
546 g_set_error_literal (error
,
549 _("Expecting to read a single byte for receiving credentials but read zero bytes"));
554 if (g_unix_credentials_message_is_supported () &&
555 /* Fall back on get_credentials if the other side didn't send the credentials */
563 ngettext("Expecting 1 control message, got %d",
564 "Expecting 1 control message, got %d",
570 if (!G_IS_UNIX_CREDENTIALS_MESSAGE (scms
[0]))
572 g_set_error_literal (error
,
575 _("Unexpected type of ancillary data"));
579 ret
= g_unix_credentials_message_get_credentials (G_UNIX_CREDENTIALS_MESSAGE (scms
[0]));
589 _("Not expecting control message, but got %d"),
595 ret
= g_socket_get_credentials (socket
, error
);
602 if (turn_off_so_passcreds
)
604 if (!g_socket_set_option (socket
,
613 g_io_error_from_errno (errsv
),
614 _("Error while disabling SO_PASSCRED: %s"),
623 for (n
= 0; n
< nscm
; n
++)
624 g_object_unref (scms
[n
]);
627 g_object_unref (socket
);
632 receive_credentials_async_thread (GTask
*task
,
633 gpointer source_object
,
635 GCancellable
*cancellable
)
638 GError
*error
= NULL
;
640 creds
= g_unix_connection_receive_credentials (G_UNIX_CONNECTION (source_object
),
644 g_task_return_pointer (task
, creds
, g_object_unref
);
646 g_task_return_error (task
, error
);
647 g_object_unref (task
);
651 * g_unix_connection_receive_credentials_async:
652 * @connection: A #GUnixConnection.
653 * @cancellable: (nullable): optional #GCancellable object, %NULL to ignore.
654 * @callback: (scope async): a #GAsyncReadyCallback to call when the request is satisfied
655 * @user_data: (closure): the data to pass to callback function
657 * Asynchronously receive credentials.
659 * For more details, see g_unix_connection_receive_credentials() which is
660 * the synchronous version of this call.
662 * When the operation is finished, @callback will be called. You can then call
663 * g_unix_connection_receive_credentials_finish() to get the result of the operation.
668 g_unix_connection_receive_credentials_async (GUnixConnection
*connection
,
669 GCancellable
*cancellable
,
670 GAsyncReadyCallback callback
,
675 task
= g_task_new (connection
, cancellable
, callback
, user_data
);
676 g_task_set_source_tag (task
, g_unix_connection_receive_credentials_async
);
677 g_task_run_in_thread (task
, receive_credentials_async_thread
);
681 * g_unix_connection_receive_credentials_finish:
682 * @connection: A #GUnixConnection.
683 * @result: a #GAsyncResult.
684 * @error: a #GError, or %NULL
686 * Finishes an asynchronous receive credentials operation started with
687 * g_unix_connection_receive_credentials_async().
689 * Returns: (transfer full): a #GCredentials, or %NULL on error.
690 * Free the returned object with g_object_unref().
695 g_unix_connection_receive_credentials_finish (GUnixConnection
*connection
,
696 GAsyncResult
*result
,
699 g_return_val_if_fail (g_task_is_valid (result
, connection
), NULL
);
701 return g_task_propagate_pointer (G_TASK (result
), error
);