Merge remote branch 'gvdb/master'
[platform/upstream/glib.git] / gio / gunixfdlist.c
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright © 2009 Codethink Limited
4  *
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.
9  *
10  * See the included COPYING file for more information.
11  *
12  * Authors: Ryan Lortie <desrt@desrt.ca>
13  */
14
15 /**
16  * SECTION: gunixfdlist
17  * @title: GUnixFDList
18  * @short_description: An object containing a set of UNIX file descriptors
19  * @include: gio/gunixfdlist.h
20  * @see_also: #GUnixFDMessage
21  *
22  * A #GUnixFDList contains a list of file descriptors.  It owns the file
23  * descriptors that it contains, closing them when finalized.
24  *
25  * It may be wrapped in a #GUnixFDMessage and sent over a #GSocket in
26  * the %G_SOCKET_ADDRESS_UNIX family by using g_socket_send_message()
27  * and received using g_socket_receive_message().
28  *
29  * Note that <filename>&lt;gio/gunixfdlist.h&gt;</filename> belongs to
30  * the UNIX-specific GIO interfaces, thus you have to use the
31  * <filename>gio-unix-2.0.pc</filename> pkg-config file when using it.
32  */
33
34 #define _GNU_SOURCE /* for F_DUPFD_CLOEXEC */
35
36 #include "config.h"
37
38 #include <sys/types.h>
39 #include <sys/socket.h>
40 #include <unistd.h>
41 #include <fcntl.h>
42 #include <string.h>
43 #include <errno.h>
44
45 #include "gunixfdlist.h"
46 #include "gioerror.h"
47
48
49
50 G_DEFINE_TYPE (GUnixFDList, g_unix_fd_list, G_TYPE_OBJECT)
51
52 struct _GUnixFDListPrivate
53 {
54   gint *fds;
55   gint nfd;
56 };
57
58 static void
59 g_unix_fd_list_init (GUnixFDList *list)
60 {
61   list->priv = G_TYPE_INSTANCE_GET_PRIVATE (list,
62                                                G_TYPE_UNIX_FD_LIST,
63                                                GUnixFDListPrivate);
64 }
65
66 static void
67 g_unix_fd_list_finalize (GObject *object)
68 {
69   GUnixFDList *list = G_UNIX_FD_LIST (object);
70   gint i;
71
72   for (i = 0; i < list->priv->nfd; i++)
73     close (list->priv->fds[i]);
74   g_free (list->priv->fds);
75
76   G_OBJECT_CLASS (g_unix_fd_list_parent_class)
77     ->finalize (object);
78 }
79
80 static void
81 g_unix_fd_list_class_init (GUnixFDListClass *class)
82 {
83   GObjectClass *object_class = G_OBJECT_CLASS (class);
84
85   g_type_class_add_private (class, sizeof (GUnixFDListPrivate));
86   object_class->finalize = g_unix_fd_list_finalize;
87 }
88
89 static int
90 dup_close_on_exec_fd (gint     fd,
91                       GError **error)
92 {
93   gint new_fd;
94   gint s;
95
96 #ifdef F_DUPFD_CLOEXEC
97   do
98     new_fd = fcntl (fd, F_DUPFD_CLOEXEC, 0l);
99   while (new_fd < 0 && (errno == EINTR));
100
101   if (new_fd >= 0)
102     return new_fd;
103
104   /* if that didn't work (new libc/old kernel?), try it the other way. */
105 #endif
106
107   do
108     new_fd = dup (fd);
109   while (new_fd < 0 && (errno == EINTR));
110
111   if (new_fd < 0)
112     {
113       int saved_errno = errno;
114
115       g_set_error (error, G_IO_ERROR,
116                    g_io_error_from_errno (saved_errno),
117                    "dup: %s", g_strerror (saved_errno));
118       close (new_fd);
119
120       return -1;
121     }
122
123   do
124     {
125       s = fcntl (new_fd, F_GETFD);
126
127       if (s >= 0)
128         s = fcntl (new_fd, F_SETFD, (long) (s | FD_CLOEXEC));
129     }
130   while (s < 0 && (errno == EINTR));
131
132   if (s < 0)
133     {
134       int saved_errno = errno;
135
136       g_set_error (error, G_IO_ERROR,
137                    g_io_error_from_errno (saved_errno),
138                    "fcntl: %s", g_strerror (saved_errno));
139       close (new_fd);
140
141       return -1;
142     }
143
144   return new_fd;
145 }
146
147 /**
148  * g_unix_fd_list_new:
149  *
150  * Creates a new #GUnixFDList containing no file descriptors.
151  *
152  * Returns: a new #GUnixFDList
153  *
154  * Since: 2.24
155  **/
156 GUnixFDList *
157 g_unix_fd_list_new (void)
158 {
159   return g_object_new (G_TYPE_UNIX_FD_LIST, NULL);
160 }
161
162 /**
163  * g_unix_fd_list_new_from_array:
164  * @fds: the initial list of file descriptors
165  * @n_fds: the length of #fds, or -1
166  *
167  * Creates a new #GUnixFDList containing the file descriptors given in
168  * @fds.  The file descriptors become the property of the new list and
169  * may no longer be used by the caller.  The array itself is owned by
170  * the caller.
171  *
172  * Each file descriptor in the array should be set to close-on-exec.
173  *
174  * If @n_fds is -1 then @fds must be terminated with -1.
175  *
176  * Returns: a new #GUnixFDList
177  *
178  * Since: 2.24
179  **/
180 GUnixFDList *
181 g_unix_fd_list_new_from_array (const gint *fds,
182                                gint        n_fds)
183 {
184   GUnixFDList *list;
185
186   g_return_val_if_fail (fds != NULL || n_fds == 0, NULL);
187
188   if (n_fds == -1)
189     for (n_fds = 0; fds[n_fds] != -1; n_fds++);
190
191   list = g_object_new (G_TYPE_UNIX_FD_LIST, NULL);
192   list->priv->fds = g_new (gint, n_fds + 1);
193   list->priv->nfd = n_fds;
194
195   memcpy (list->priv->fds, fds, sizeof (gint) * n_fds);
196   list->priv->fds[n_fds] = -1;
197
198   return list;
199 }
200
201 /**
202  * g_unix_fd_list_steal_fds:
203  * @list: a #GUnixFDList
204  * @length: pointer to the length of the returned array, or %NULL
205  *
206  * Returns the array of file descriptors that is contained in this
207  * object.
208  *
209  * After this call, the descriptors are no longer contained in
210  * @list. Further calls will return an empty list (unless more
211  * descriptors have been added).
212  *
213  * The return result of this function must be freed with g_free().
214  * The caller is also responsible for closing all of the file
215  * descriptors.  The file descriptors in the array are set to
216  * close-on-exec.
217  *
218  * If @length is non-%NULL then it is set to the number of file
219  * descriptors in the returned array. The returned array is also
220  * terminated with -1.
221  *
222  * This function never returns %NULL. In case there are no file
223  * descriptors contained in @list, an empty array is returned.
224  *
225  * Returns: an array of file descriptors
226  *
227  * Since: 2.24
228  */
229 gint *
230 g_unix_fd_list_steal_fds (GUnixFDList *list,
231                           gint        *length)
232 {
233   gint *result;
234
235   g_return_val_if_fail (G_IS_UNIX_FD_LIST (list), NULL);
236
237   /* will be true for fresh object or if we were just called */
238   if (list->priv->fds == NULL)
239     {
240       list->priv->fds = g_new (gint, 1);
241       list->priv->fds[0] = -1;
242       list->priv->nfd = 0;
243     }
244
245   if (length)
246     *length = list->priv->nfd;
247   result = list->priv->fds;
248
249   list->priv->fds = NULL;
250   list->priv->nfd = 0;
251
252   return result;
253 }
254
255 /**
256  * g_unix_fd_list_peek_fds:
257  * @list: a #GUnixFDList
258  * @length: pointer to the length of the returned array, or %NULL
259  *
260  * Returns the array of file descriptors that is contained in this
261  * object.
262  *
263  * After this call, the descriptors remain the property of @list.  The
264  * caller must not close them and must not free the array.  The array is
265  * valid only until @list is changed in any way.
266  *
267  * If @length is non-%NULL then it is set to the number of file
268  * descriptors in the returned array. The returned array is also
269  * terminated with -1.
270  *
271  * This function never returns %NULL. In case there are no file
272  * descriptors contained in @list, an empty array is returned.
273  *
274  * Returns: an array of file descriptors
275  *
276  * Since: 2.24
277  */
278 const gint *
279 g_unix_fd_list_peek_fds (GUnixFDList *list,
280                          gint        *length)
281 {
282   g_return_val_if_fail (G_IS_UNIX_FD_LIST (list), NULL);
283
284   /* will be true for fresh object or if steal() was just called */
285   if (list->priv->fds == NULL)
286     {
287       list->priv->fds = g_new (gint, 1);
288       list->priv->fds[0] = -1;
289       list->priv->nfd = 0;
290     }
291
292   if (length)
293     *length = list->priv->nfd;
294
295   return list->priv->fds;
296 }
297
298 /**
299  * g_unix_fd_list_append:
300  * @list: a #GUnixFDList
301  * @fd: a valid open file descriptor
302  * @error: a #GError pointer
303  *
304  * Adds a file descriptor to @list.
305  *
306  * The file descriptor is duplicated using dup(). You keep your copy
307  * of the descriptor and the copy contained in @list will be closed
308  * when @list is finalized.
309  *
310  * A possible cause of failure is exceeding the per-process or
311  * system-wide file descriptor limit.
312  *
313  * The index of the file descriptor in the list is returned.  If you use
314  * this index with g_unix_fd_list_get() then you will receive back a
315  * duplicated copy of the same file descriptor.
316  *
317  * Returns: the index of the appended fd in case of success, else -1
318  *          (and @error is set)
319  *
320  * Since: 2.24
321  */
322 gint
323 g_unix_fd_list_append (GUnixFDList  *list,
324                        gint          fd,
325                        GError      **error)
326 {
327   gint new_fd;
328
329   g_return_val_if_fail (G_IS_UNIX_FD_LIST (list), -1);
330   g_return_val_if_fail (fd >= 0, -1);
331   g_return_val_if_fail (error == NULL || *error == NULL, -1);
332
333   if ((new_fd = dup_close_on_exec_fd (fd, error)) < 0)
334     return -1;
335
336   list->priv->fds = g_realloc (list->priv->fds,
337                                   sizeof (gint) *
338                                    (list->priv->nfd + 2));
339   list->priv->fds[list->priv->nfd++] = new_fd;
340   list->priv->fds[list->priv->nfd] = -1;
341
342   return list->priv->nfd - 1;
343 }
344
345 /**
346  * g_unix_fd_list_get:
347  * @list: a #GUnixFDList
348  * @index_: the index into the list
349  * @error: a #GError pointer
350  *
351  * Gets a file descriptor out of @list.
352  *
353  * @index_ specifies the index of the file descriptor to get.  It is a
354  * programmer error for @index_ to be out of range; see
355  * g_unix_fd_list_get_length().
356  *
357  * The file descriptor is duplicated using dup() and set as
358  * close-on-exec before being returned.  You must call close() on it
359  * when you are done.
360  *
361  * A possible cause of failure is exceeding the per-process or
362  * system-wide file descriptor limit.
363  *
364  * Returns: the file descriptor, or -1 in case of error
365  *
366  * Since: 2.24
367  **/
368 gint
369 g_unix_fd_list_get (GUnixFDList  *list,
370                     gint          index_,
371                     GError      **error)
372 {
373   g_return_val_if_fail (G_IS_UNIX_FD_LIST (list), -1);
374   g_return_val_if_fail (index_ < list->priv->nfd, -1);
375   g_return_val_if_fail (error == NULL || *error == NULL, -1);
376
377   return dup_close_on_exec_fd (list->priv->fds[index_], error);
378 }
379
380 /**
381  * g_unix_fd_list_get_length:
382  * @list: a #GUnixFDList
383  *
384  * Gets the length of @list (ie: the number of file descriptors
385  * contained within).
386  *
387  * Returns: the length of @list
388  *
389  * Since: 2.24
390  **/
391 gint
392 g_unix_fd_list_get_length (GUnixFDList *list)
393 {
394   g_return_val_if_fail (G_IS_UNIX_FD_LIST (list), 0);
395
396   return list->priv->nfd;
397 }