Add some more cases to the app-id unit tests
[glib.git] / gio / gunixfdmessage.c
blobf3b303cf05778f4a78638f34a1d03c2e49d531d5
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>
15 /**
16 * SECTION:gunixfdmessage
17 * @title: GUnixFDMessage
18 * @short_description: A GSocketControlMessage containing a GUnixFDList
19 * @include: gio/gunixfdmessage.h
20 * @see_also: #GUnixConnection, #GUnixFDList, #GSocketControlMessage
22 * This #GSocketControlMessage contains a #GUnixFDList.
23 * It may be sent using g_socket_send_message() and received using
24 * g_socket_receive_message() over UNIX sockets (ie: sockets in the
25 * %G_SOCKET_ADDRESS_UNIX family). The file descriptors are copied
26 * between processes by the kernel.
28 * For an easier way to send and receive file descriptors over
29 * stream-oriented UNIX sockets, see g_unix_connection_send_fd() and
30 * g_unix_connection_receive_fd().
32 * Note that `<gio/gunixfdmessage.h>` belongs to the UNIX-specific GIO
33 * interfaces, thus you have to use the `gio-unix-2.0.pc` pkg-config
34 * file when using it.
37 /**
38 * GUnixFDMessage:
40 * #GUnixFDMessage is an opaque data structure and can only be accessed
41 * using the following functions.
42 **/
44 #include "config.h"
46 #include <unistd.h>
47 #include <string.h>
48 #include <fcntl.h>
49 #include <errno.h>
51 #include "gunixfdmessage.h"
52 #include "gunixfdlist.h"
53 #include "gnetworking.h"
54 #include "gioerror.h"
56 struct _GUnixFDMessagePrivate
58 GUnixFDList *list;
61 G_DEFINE_TYPE_WITH_PRIVATE (GUnixFDMessage, g_unix_fd_message, G_TYPE_SOCKET_CONTROL_MESSAGE)
63 static gsize
64 g_unix_fd_message_get_size (GSocketControlMessage *message)
66 GUnixFDMessage *fd_message = G_UNIX_FD_MESSAGE (message);
68 return g_unix_fd_list_get_length (fd_message->priv->list) * sizeof (gint);
71 static int
72 g_unix_fd_message_get_level (GSocketControlMessage *message)
74 return SOL_SOCKET;
77 static int
78 g_unix_fd_message_get_msg_type (GSocketControlMessage *message)
80 return SCM_RIGHTS;
83 static GSocketControlMessage *
84 g_unix_fd_message_deserialize (int level,
85 int type,
86 gsize size,
87 gpointer data)
89 GSocketControlMessage *message;
90 GUnixFDList *list;
91 gint n, s, i;
92 gint *fds;
94 if (level != SOL_SOCKET ||
95 type != SCM_RIGHTS)
96 return NULL;
98 if (size % 4 > 0)
100 g_warning ("Kernel returned non-integral number of fds");
101 return NULL;
104 fds = data;
105 n = size / sizeof (gint);
107 /* Note we probably handled this in gsocket.c already if we're on
108 * Linux and have MSG_CMSG_CLOEXEC, but this code remains as a fallback
109 * in case the kernel is too old for MSG_CMSG_CLOEXEC.
111 for (i = 0; i < n; i++)
114 s = fcntl (fds[i], F_SETFD, FD_CLOEXEC);
115 while (s < 0 && errno == EINTR);
117 if (s < 0)
119 g_warning ("Error setting close-on-exec flag on incoming fd: %s",
120 g_strerror (errno));
121 return NULL;
125 list = g_unix_fd_list_new_from_array (fds, n);
126 message = g_unix_fd_message_new_with_fd_list (list);
127 g_object_unref (list);
129 return message;
132 static void
133 g_unix_fd_message_serialize (GSocketControlMessage *message,
134 gpointer data)
136 GUnixFDMessage *fd_message = G_UNIX_FD_MESSAGE (message);
137 const gint *fds;
138 gint n_fds;
140 fds = g_unix_fd_list_peek_fds (fd_message->priv->list, &n_fds);
141 memcpy (data, fds, sizeof (gint) * n_fds);
144 static void
145 g_unix_fd_message_set_property (GObject *object, guint prop_id,
146 const GValue *value, GParamSpec *pspec)
148 GUnixFDMessage *message = G_UNIX_FD_MESSAGE (object);
150 g_assert (message->priv->list == NULL);
151 g_assert_cmpint (prop_id, ==, 1);
153 message->priv->list = g_value_dup_object (value);
155 if (message->priv->list == NULL)
156 message->priv->list = g_unix_fd_list_new ();
160 * g_unix_fd_message_get_fd_list:
161 * @message: a #GUnixFDMessage
163 * Gets the #GUnixFDList contained in @message. This function does not
164 * return a reference to the caller, but the returned list is valid for
165 * the lifetime of @message.
167 * Returns: (transfer none): the #GUnixFDList from @message
169 * Since: 2.24
171 GUnixFDList *
172 g_unix_fd_message_get_fd_list (GUnixFDMessage *message)
174 return message->priv->list;
177 static void
178 g_unix_fd_message_get_property (GObject *object, guint prop_id,
179 GValue *value, GParamSpec *pspec)
181 GUnixFDMessage *message = G_UNIX_FD_MESSAGE (object);
183 g_assert_cmpint (prop_id, ==, 1);
185 g_value_set_object (value, g_unix_fd_message_get_fd_list (message));
188 static void
189 g_unix_fd_message_init (GUnixFDMessage *message)
191 message->priv = g_unix_fd_message_get_instance_private (message);
194 static void
195 g_unix_fd_message_finalize (GObject *object)
197 GUnixFDMessage *message = G_UNIX_FD_MESSAGE (object);
199 g_object_unref (message->priv->list);
201 G_OBJECT_CLASS (g_unix_fd_message_parent_class)
202 ->finalize (object);
205 static void
206 g_unix_fd_message_class_init (GUnixFDMessageClass *class)
208 GSocketControlMessageClass *scm_class = G_SOCKET_CONTROL_MESSAGE_CLASS (class);
209 GObjectClass *object_class = G_OBJECT_CLASS (class);
211 scm_class->get_size = g_unix_fd_message_get_size;
212 scm_class->get_level = g_unix_fd_message_get_level;
213 scm_class->get_type = g_unix_fd_message_get_msg_type;
214 scm_class->serialize = g_unix_fd_message_serialize;
215 scm_class->deserialize = g_unix_fd_message_deserialize;
216 object_class->finalize = g_unix_fd_message_finalize;
217 object_class->set_property = g_unix_fd_message_set_property;
218 object_class->get_property = g_unix_fd_message_get_property;
220 g_object_class_install_property (object_class, 1,
221 g_param_spec_object ("fd-list", "file descriptor list",
222 "The GUnixFDList object to send with the message",
223 G_TYPE_UNIX_FD_LIST, G_PARAM_STATIC_STRINGS |
224 G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY));
228 * g_unix_fd_message_new:
230 * Creates a new #GUnixFDMessage containing an empty file descriptor
231 * list.
233 * Returns: a new #GUnixFDMessage
235 * Since: 2.22
237 GSocketControlMessage *
238 g_unix_fd_message_new (void)
240 return g_object_new (G_TYPE_UNIX_FD_MESSAGE, NULL);
244 * g_unix_fd_message_new_with_fd_list:
245 * @fd_list: a #GUnixFDList
247 * Creates a new #GUnixFDMessage containing @list.
249 * Returns: a new #GUnixFDMessage
251 * Since: 2.24
253 GSocketControlMessage *
254 g_unix_fd_message_new_with_fd_list (GUnixFDList *fd_list)
256 return g_object_new (G_TYPE_UNIX_FD_MESSAGE,
257 "fd-list", fd_list,
258 NULL);
262 * g_unix_fd_message_steal_fds:
263 * @message: a #GUnixFDMessage
264 * @length: (out) (optional): pointer to the length of the returned
265 * array, or %NULL
267 * Returns the array of file descriptors that is contained in this
268 * object.
270 * After this call, the descriptors are no longer contained in
271 * @message. Further calls will return an empty list (unless more
272 * descriptors have been added).
274 * The return result of this function must be freed with g_free().
275 * The caller is also responsible for closing all of the file
276 * descriptors.
278 * If @length is non-%NULL then it is set to the number of file
279 * descriptors in the returned array. The returned array is also
280 * terminated with -1.
282 * This function never returns %NULL. In case there are no file
283 * descriptors contained in @message, an empty array is returned.
285 * Returns: (array length=length) (transfer full): an array of file
286 * descriptors
288 * Since: 2.22
290 gint *
291 g_unix_fd_message_steal_fds (GUnixFDMessage *message,
292 gint *length)
294 g_return_val_if_fail (G_UNIX_FD_MESSAGE (message), NULL);
296 return g_unix_fd_list_steal_fds (message->priv->list, length);
300 * g_unix_fd_message_append_fd:
301 * @message: a #GUnixFDMessage
302 * @fd: a valid open file descriptor
303 * @error: a #GError pointer
305 * Adds a file descriptor to @message.
307 * The file descriptor is duplicated using dup(). You keep your copy
308 * of the descriptor and the copy contained in @message will be closed
309 * when @message is finalized.
311 * A possible cause of failure is exceeding the per-process or
312 * system-wide file descriptor limit.
314 * Returns: %TRUE in case of success, else %FALSE (and @error is set)
316 * Since: 2.22
318 gboolean
319 g_unix_fd_message_append_fd (GUnixFDMessage *message,
320 gint fd,
321 GError **error)
323 g_return_val_if_fail (G_UNIX_FD_MESSAGE (message), FALSE);
325 return g_unix_fd_list_append (message->priv->list, fd, error) >= 0;