gsubprocess: Fix up communicate
[platform/upstream/glib.git] / gio / gsubprocess.c
1 /* GIO - GLib Input, Output and Streaming Library
2  *
3  * Copyright © 2012 Red Hat, Inc.
4  * Copyright © 2012-2013 Canonical Limited
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as published
8  * by the Free Software Foundation; either version 2 of the licence or (at
9  * your option) any later version.
10  *
11  * See the included COPYING file for more information.
12  *
13  * Authors: Colin Walters <walters@verbum.org>
14  *          Ryan Lortie <desrt@desrt.ca>
15  */
16
17 /**
18  * SECTION:gsubprocess
19  * @title: GSubprocess
20  * @short_description: Child processes
21  * @see_also: #GSubprocessLauncher
22  *
23  * #GSubprocess allows the creation of and interaction with child
24  * processes.
25  *
26  * Processes can be communicated with using standard GIO-style APIs (ie:
27  * #GInputStream, #GOutputStream).  There are GIO-style APIs to wait for
28  * process termination (ie: cancellable and with an asynchronous
29  * variant).
30  *
31  * There is an API to force a process to terminate, as well as a
32  * race-free API for sending UNIX signals to a subprocess.
33  *
34  * One major advantage that GIO brings over the core GLib library is
35  * comprehensive API for asynchronous I/O, such
36  * g_output_stream_splice_async().  This makes GSubprocess
37  * significantly more powerful and flexible than equivalent APIs in
38  * some other languages such as the <literal>subprocess.py</literal>
39  * included with Python.  For example, using #GSubprocess one could
40  * create two child processes, reading standard output from the first,
41  * processing it, and writing to the input stream of the second, all
42  * without blocking the main loop.
43  *
44  * A powerful g_subprocess_communicate() API is provided similar to the
45  * <literal>communicate()</literal> method of
46  * <literal>subprocess.py</literal>.  This enables very easy interaction
47  * with a subprocess that has been opened with pipes.
48  *
49  * #GSubprocess defaults to tight control over the file descriptors open
50  * in the child process, avoiding dangling-fd issues that are caused by
51  * a simple fork()/exec().  The only open file descriptors in the
52  * spawned process are ones that were explicitly specified by the
53  * #GSubprocess API (unless %G_SUBPROCESS_FLAGS_INHERIT_FDS was
54  * specified).
55  *
56  * #GSubprocess will quickly reap all child processes as they exit,
57  * avoiding "zombie processes" remaining around for long periods of
58  * time.  g_subprocess_wait() can be used to wait for this to happen,
59  * but it will happen even without the call being explicitly made.
60  *
61  * As a matter of principle, #GSubprocess has no API that accepts
62  * shell-style space-separated strings.  It will, however, match the
63  * typical shell behaviour of searching the PATH for executables that do
64  * not contain a directory separator in their name.
65  *
66  * #GSubprocess attempts to have a very simple API for most uses (ie:
67  * spawning a subprocess with arguments and support for most typical
68  * kinds of input and output redirection).  See g_subprocess_new(). The
69  * #GSubprocessLauncher API is provided for more complicated cases
70  * (advanced types of redirection, environment variable manipulation,
71  * change of working directory, child setup functions, etc).
72  *
73  * A typical use of #GSubprocess will involve calling
74  * g_subprocess_new(), followed by g_subprocess_wait() or
75  * g_subprocess_wait_sync().  After the process exits, the status can be
76  * checked using functions such as g_subprocess_get_if_exited() (which
77  * are similar to the familiar WIFEXITED-style POSIX macros).
78  *
79  * Since: 2.36
80  **/
81
82 #include "config.h"
83
84 #include "gsubprocess.h"
85 #include "gsubprocesslauncher-private.h"
86 #include "gasyncresult.h"
87 #include "giostream.h"
88 #include "gmemoryinputstream.h"
89 #include "glibintl.h"
90 #include "glib-private.h"
91
92 #include <string.h>
93 #ifdef G_OS_UNIX
94 #include <gio/gunixoutputstream.h>
95 #include <gio/gfiledescriptorbased.h>
96 #include <gio/gunixinputstream.h>
97 #include <gstdio.h>
98 #include <glib-unix.h>
99 #include <fcntl.h>
100 #endif
101 #ifdef G_OS_WIN32
102 #define _WIN32_WINNT 0x0500
103 #include <windows.h>
104 #include "giowin32-priv.h"
105 #endif
106
107 #ifndef O_BINARY
108 #define O_BINARY 0
109 #endif
110
111 #define COMMUNICATE_READ_SIZE 4096
112
113 /* A GSubprocess can have two possible states: running and not.
114  *
115  * These two states are reflected by the value of 'pid'.  If it is
116  * non-zero then the process is running, with that pid.
117  *
118  * When a GSubprocess is first created with g_object_new() it is not
119  * running.  When it is finalized, it is also not running.
120  *
121  * During initable_init(), if the g_spawn() is successful then we
122  * immediately register a child watch and take an extra ref on the
123  * subprocess.  That reference doesn't drop until the child has quit,
124  * which is why finalize can only happen in the non-running state.  In
125  * the event that the g_spawn() failed we will still be finalizing a
126  * non-running GSubprocess (before returning from g_subprocess_new())
127  * with NULL.
128  *
129  * We make extensive use of the glib worker thread to guarantee
130  * race-free operation.  As with all child watches, glib calls waitpid()
131  * in the worker thread.  It reports the child exiting to us via the
132  * worker thread (which means that we can do synchronous waits without
133  * running a separate loop).  We also send signals to the child process
134  * via the worker thread so that we don't race with waitpid() and
135  * accidentally send a signal to an already-reaped child.
136  */
137 static void initable_iface_init (GInitableIface         *initable_iface);
138
139 typedef GObjectClass GSubprocessClass;
140
141 struct _GSubprocess
142 {
143   GObject parent;
144
145   /* only used during construction */
146   GSubprocessLauncher *launcher;
147   GSubprocessFlags flags;
148   gchar **argv;
149
150   /* state tracking variables */
151   gchar identifier[24];
152   int status;
153   GPid pid;
154
155   /* list of GTask */
156   GMutex pending_waits_lock;
157   GSList *pending_waits;
158
159   /* These are the streams created if a pipe is requested via flags. */
160   GOutputStream *stdin_pipe;
161   GInputStream  *stdout_pipe;
162   GInputStream  *stderr_pipe;
163 };
164
165 G_DEFINE_TYPE_WITH_CODE (GSubprocess, g_subprocess, G_TYPE_OBJECT,
166                          G_IMPLEMENT_INTERFACE (G_TYPE_INITABLE, initable_iface_init));
167
168 enum
169 {
170   PROP_0,
171   PROP_FLAGS,
172   PROP_ARGV,
173   N_PROPS
174 };
175
176 typedef struct
177 {
178   gint                 fds[3];
179   GSpawnChildSetupFunc child_setup_func;
180   gpointer             child_setup_data;
181   GArray              *basic_fd_assignments;
182   GArray              *needdup_fd_assignments;
183 } ChildData;
184
185 static void
186 unset_cloexec (int fd)
187 {
188   int flags;
189   int result;
190
191   flags = fcntl (fd, F_GETFD, 0);
192
193   if (flags != -1)
194     {
195       flags &= (~FD_CLOEXEC);
196       do
197         result = fcntl (fd, F_SETFD, flags);
198       while (result == -1 && errno == EINTR);
199     }
200 }
201
202 /**
203  * Based on code derived from
204  * gnome-terminal:src/terminal-screen.c:terminal_screen_child_setup(),
205  * used under the LGPLv2+ with permission from author.
206  */
207 static void
208 child_setup (gpointer user_data)
209 {
210   ChildData *child_data = user_data;
211   gint i;
212   gint result;
213
214   /* We're on the child side now.  "Rename" the file descriptors in
215    * child_data.fds[] to stdin/stdout/stderr.
216    *
217    * We don't close the originals.  It's possible that the originals
218    * should not be closed and if they should be closed then they should
219    * have been created O_CLOEXEC.
220    */
221   for (i = 0; i < 3; i++)
222     if (child_data->fds[i] != -1 && child_data->fds[i] != i)
223       {
224         do
225           result = dup2 (child_data->fds[i], i);
226         while (result == -1 && errno == EINTR);
227       }
228
229   /* Basic fd assignments we can just unset FD_CLOEXEC */
230   if (child_data->basic_fd_assignments)
231     {
232       for (i = 0; i < child_data->basic_fd_assignments->len; i++)
233         {
234           gint fd = g_array_index (child_data->basic_fd_assignments, int, i);
235
236           unset_cloexec (fd);
237         }
238     }
239
240   /* If we're doing remapping fd assignments, we need to handle
241    * the case where the user has specified e.g.:
242    * 5 -> 4, 4 -> 6
243    *
244    * We do this by duping the source fds temporarily.
245    */ 
246   if (child_data->needdup_fd_assignments)
247     {
248       for (i = 0; i < child_data->needdup_fd_assignments->len; i += 2)
249         {
250           gint parent_fd = g_array_index (child_data->needdup_fd_assignments, int, i);
251           gint new_parent_fd;
252
253           do
254             new_parent_fd = fcntl (parent_fd, F_DUPFD_CLOEXEC, 3);
255           while (parent_fd == -1 && errno == EINTR);
256
257           g_array_index (child_data->needdup_fd_assignments, int, i) = new_parent_fd;
258         }
259       for (i = 0; i < child_data->needdup_fd_assignments->len; i += 2)
260         {
261           gint parent_fd = g_array_index (child_data->needdup_fd_assignments, int, i);
262           gint child_fd = g_array_index (child_data->needdup_fd_assignments, int, i+1);
263
264           if (parent_fd == child_fd)
265             {
266               unset_cloexec (parent_fd);
267             }
268           else
269             {
270               do
271                 result = dup2 (parent_fd, child_fd);
272               while (result == -1 && errno == EINTR);
273               (void) close (parent_fd);
274             }
275         }
276     }
277
278   if (child_data->child_setup_func)
279     child_data->child_setup_func (child_data->child_setup_data);
280 }
281
282 static GInputStream *
283 platform_input_stream_from_spawn_fd (gint fd)
284 {
285   if (fd < 0)
286     return NULL;
287
288 #ifdef G_OS_UNIX
289   return g_unix_input_stream_new (fd, TRUE);
290 #else
291   return g_win32_input_stream_new_from_fd (fd, TRUE);
292 #endif
293 }
294
295 static GOutputStream *
296 platform_output_stream_from_spawn_fd (gint fd)
297 {
298   if (fd < 0)
299     return NULL;
300
301 #ifdef G_OS_UNIX
302   return g_unix_output_stream_new (fd, TRUE);
303 #else
304   return g_win32_output_stream_new_from_fd (fd, TRUE);
305 #endif
306 }
307
308 #ifdef G_OS_UNIX
309 static gint
310 unix_open_file (const char  *filename,
311                 gint         mode,
312                 GError     **error)
313 {
314   gint my_fd;
315
316   my_fd = g_open (filename, mode | O_BINARY | O_CLOEXEC, 0666);
317
318   /* If we return -1 we should also set the error */
319   if (my_fd < 0)
320     {
321       gint saved_errno = errno;
322       char *display_name;
323
324       display_name = g_filename_display_name (filename);
325       g_set_error (error, G_IO_ERROR, g_io_error_from_errno (saved_errno),
326                    _("Error opening file '%s': %s"), display_name,
327                    g_strerror (saved_errno));
328       g_free (display_name);
329       /* fall through... */
330     }
331
332   return my_fd;
333 }
334 #endif
335
336 static void
337 g_subprocess_set_property (GObject      *object,
338                            guint         prop_id,
339                            const GValue *value,
340                            GParamSpec   *pspec)
341 {
342   GSubprocess *self = G_SUBPROCESS (object);
343
344   switch (prop_id)
345     {
346     case PROP_FLAGS:
347       self->flags = g_value_get_flags (value);
348       break;
349
350     case PROP_ARGV:
351       self->argv = g_value_dup_boxed (value);
352       break;
353
354     default:
355       g_assert_not_reached ();
356     }
357 }
358
359 static gboolean
360 g_subprocess_exited (GPid     pid,
361                      gint     status,
362                      gpointer user_data)
363 {
364   GSubprocess *self = user_data;
365   GSList *tasks;
366
367   g_assert (self->pid == pid);
368
369   g_mutex_lock (&self->pending_waits_lock);
370   self->status = status;
371   tasks = self->pending_waits;
372   self->pending_waits = NULL;
373   self->pid = 0;
374   g_mutex_unlock (&self->pending_waits_lock);
375
376   /* Signal anyone in g_subprocess_wait_async() to wake up now */
377   while (tasks)
378     {
379       g_task_return_boolean (tasks->data, TRUE);
380       tasks = g_slist_delete_link (tasks, tasks);
381     }
382
383   g_spawn_close_pid (pid);
384
385   return FALSE;
386 }
387
388 static gboolean
389 initable_init (GInitable     *initable,
390                GCancellable  *cancellable,
391                GError       **error)
392 {
393   GSubprocess *self = G_SUBPROCESS (initable);
394   ChildData child_data = { { -1, -1, -1 }, 0 };
395   gint *pipe_ptrs[3] = { NULL, NULL, NULL };
396   gint pipe_fds[3] = { -1, -1, -1 };
397   gint close_fds[3] = { -1, -1, -1 };
398   GSpawnFlags spawn_flags = 0;
399   gboolean success = FALSE;
400   gint i;
401
402   /* this is a programmer error */
403   if (!self->argv || !self->argv[0] || !self->argv[0][0])
404     return FALSE;
405
406   if (g_cancellable_set_error_if_cancelled (cancellable, error))
407     return FALSE;
408
409   /* We must setup the three fds that will end up in the child as stdin,
410    * stdout and stderr.
411    *
412    * First, stdin.
413    */
414   if (self->flags & G_SUBPROCESS_FLAGS_STDIN_INHERIT)
415     spawn_flags |= G_SPAWN_CHILD_INHERITS_STDIN;
416   else if (self->flags & G_SUBPROCESS_FLAGS_STDIN_PIPE)
417     pipe_ptrs[0] = &pipe_fds[0];
418 #ifdef G_OS_UNIX
419   else if (self->launcher)
420     {
421       if (self->launcher->stdin_fd != -1)
422         child_data.fds[0] = self->launcher->stdin_fd;
423       else if (self->launcher->stdin_path != NULL)
424         {
425           child_data.fds[0] = close_fds[0] = unix_open_file (self->launcher->stdin_path, O_RDONLY, error);
426           if (child_data.fds[0] == -1)
427             goto out;
428         }
429     }
430 #endif
431
432   /* Next, stdout. */
433   if (self->flags & G_SUBPROCESS_FLAGS_STDOUT_SILENCE)
434     spawn_flags |= G_SPAWN_STDOUT_TO_DEV_NULL;
435   else if (self->flags & G_SUBPROCESS_FLAGS_STDOUT_PIPE)
436     pipe_ptrs[1] = &pipe_fds[1];
437 #ifdef G_OS_UNIX
438   else if (self->launcher)
439     {
440       if (self->launcher->stdout_fd != -1)
441         child_data.fds[1] = self->launcher->stdout_fd;
442       else if (self->launcher->stdout_path != NULL)
443         {
444           child_data.fds[1] = close_fds[1] = unix_open_file (self->launcher->stdout_path, O_CREAT | O_WRONLY, error);
445           if (child_data.fds[1] == -1)
446             goto out;
447         }
448     }
449 #endif
450
451   /* Finally, stderr. */
452   if (self->flags & G_SUBPROCESS_FLAGS_STDERR_SILENCE)
453     spawn_flags |= G_SPAWN_STDERR_TO_DEV_NULL;
454   else if (self->flags & G_SUBPROCESS_FLAGS_STDERR_PIPE)
455     pipe_ptrs[2] = &pipe_fds[2];
456   else if (self->flags & G_SUBPROCESS_FLAGS_STDERR_MERGE)
457     /* This will work because stderr gets setup after stdout. */
458     child_data.fds[2] = 1;
459 #ifdef G_OS_UNIX
460   else if (self->launcher)
461     {
462       if (self->launcher->stderr_fd != -1)
463         child_data.fds[2] = self->launcher->stderr_fd;
464       else if (self->launcher->stderr_path != NULL)
465         {
466           child_data.fds[2] = close_fds[2] = unix_open_file (self->launcher->stderr_path, O_CREAT | O_WRONLY, error);
467           if (child_data.fds[2] == -1)
468             goto out;
469         }
470     }
471 #endif
472
473 #ifdef G_OS_UNIX
474   if (self->launcher)
475     {
476       child_data.basic_fd_assignments = self->launcher->basic_fd_assignments;
477       child_data.needdup_fd_assignments = self->launcher->needdup_fd_assignments;
478     }
479 #endif
480
481   /* argv0 has no '/' in it?  We better do a PATH lookup. */
482   if (strchr (self->argv[0], G_DIR_SEPARATOR) == NULL)
483     {
484       if (self->launcher && self->launcher->path_from_envp)
485         spawn_flags |= G_SPAWN_SEARCH_PATH_FROM_ENVP;
486       else
487         spawn_flags |= G_SPAWN_SEARCH_PATH;
488     }
489
490   if (self->flags & G_SUBPROCESS_FLAGS_INHERIT_FDS)
491     spawn_flags |= G_SPAWN_LEAVE_DESCRIPTORS_OPEN;
492
493   spawn_flags |= G_SPAWN_DO_NOT_REAP_CHILD;
494   spawn_flags |= G_SPAWN_CLOEXEC_PIPES;
495
496   child_data.child_setup_func = self->launcher ? self->launcher->child_setup_func : NULL;
497   child_data.child_setup_data = self->launcher ? self->launcher->child_setup_user_data : NULL;
498   success = g_spawn_async_with_pipes (self->launcher ? self->launcher->cwd : NULL,
499                                       self->argv,
500                                       self->launcher ? self->launcher->envp : NULL,
501                                       spawn_flags,
502                                       child_setup, &child_data,
503                                       &self->pid,
504                                       pipe_ptrs[0], pipe_ptrs[1], pipe_ptrs[2],
505                                       error);
506   g_assert (success == (self->pid != 0));
507
508   {
509     guint64 identifier;
510     gint s;
511
512 #ifdef G_OS_WIN32
513     identifier = (guint64) GetProcessId (self->pid);
514 #else
515     identifier = (guint64) self->pid;
516 #endif
517
518     s = snprintf (self->identifier, sizeof self->identifier, "%"G_GUINT64_FORMAT, identifier);
519     g_assert (0 < s && s < sizeof self->identifier);
520   }
521
522   /* Start attempting to reap the child immediately */
523   if (success)
524     {
525       GMainContext *worker_context;
526       GSource *source;
527
528       worker_context = GLIB_PRIVATE_CALL (g_get_worker_context) ();
529       source = g_child_watch_source_new (self->pid);
530       g_source_set_callback (source, (GSourceFunc) g_subprocess_exited, g_object_ref (self), g_object_unref);
531       g_source_attach (source, worker_context);
532       g_source_unref (source);
533     }
534
535 out:
536   /* we don't need this past init... */
537   self->launcher = NULL;
538
539   for (i = 0; i < 3; i++)
540     if (close_fds[i] != -1)
541       close (close_fds[i]);
542
543   self->stdin_pipe = platform_output_stream_from_spawn_fd (pipe_fds[0]);
544   self->stdout_pipe = platform_input_stream_from_spawn_fd (pipe_fds[1]);
545   self->stderr_pipe = platform_input_stream_from_spawn_fd (pipe_fds[2]);
546
547   return success;
548 }
549
550 static void
551 g_subprocess_finalize (GObject *object)
552 {
553   GSubprocess *self = G_SUBPROCESS (object);
554
555   g_assert (self->pending_waits == NULL);
556   g_assert (self->pid == 0);
557
558   g_clear_object (&self->stdin_pipe);
559   g_clear_object (&self->stdout_pipe);
560   g_clear_object (&self->stderr_pipe);
561   g_free (self->argv);
562
563   G_OBJECT_CLASS (g_subprocess_parent_class)->finalize (object);
564 }
565
566 static void
567 g_subprocess_init (GSubprocess  *self)
568 {
569 }
570
571 static void
572 initable_iface_init (GInitableIface *initable_iface)
573 {
574   initable_iface->init = initable_init;
575 }
576
577 static void
578 g_subprocess_class_init (GSubprocessClass *class)
579 {
580   GObjectClass *gobject_class = G_OBJECT_CLASS (class);
581
582   gobject_class->finalize = g_subprocess_finalize;
583   gobject_class->set_property = g_subprocess_set_property;
584
585   g_object_class_install_property (gobject_class, PROP_FLAGS,
586                                    g_param_spec_flags ("flags", P_("Flags"), P_("Subprocess flags"),
587                                                        G_TYPE_SUBPROCESS_FLAGS, 0, G_PARAM_WRITABLE |
588                                                        G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
589   g_object_class_install_property (gobject_class, PROP_ARGV,
590                                    g_param_spec_boxed ("argv", P_("Arguments"), P_("Argument vector"),
591                                                        G_TYPE_STRV, G_PARAM_WRITABLE |
592                                                        G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS));
593 }
594
595 /**
596  * g_subprocess_new: (skip)
597  *
598  * Create a new process with the given flags and varargs argument list.
599  *
600  * The argument list must be terminated with %NULL.
601  *
602  * Returns: A newly created #GSubprocess, or %NULL on error (and @error
603  *   will be set)
604  *
605  * Since: 2.36
606  */
607 GSubprocess *
608 g_subprocess_new (GSubprocessFlags   flags,
609                   GError           **error,
610                   const gchar       *argv0,
611                   ...)
612 {
613   GSubprocess *result;
614   GPtrArray *args;
615   const gchar *arg;
616   va_list ap;
617
618   g_return_val_if_fail (argv0 != NULL && argv0[0] != '\0', NULL);
619   g_return_val_if_fail (error == NULL || *error == NULL, NULL);
620
621   args = g_ptr_array_new ();
622
623   va_start (ap, argv0);
624   g_ptr_array_add (args, (gchar *) argv0);
625   while ((arg = va_arg (ap, const gchar *)))
626     g_ptr_array_add (args, (gchar *) arg);
627   g_ptr_array_add (args, NULL);
628
629   result = g_subprocess_newv ((const gchar * const *) args->pdata, flags, error);
630
631   g_ptr_array_free (args, TRUE);
632
633   return result;
634 }
635
636 /**
637  * g_subprocess_newv:
638  *
639  * Create a new process with the given flags and argument list.
640  *
641  * The argument list is expected to be %NULL-terminated.
642  *
643  * Returns: A newly created #GSubprocess, or %NULL on error (and @error
644  *   will be set)
645  *
646  * Since: 2.36
647  * Rename to: g_subprocess_new
648  */
649 GSubprocess *
650 g_subprocess_newv (const gchar * const  *argv,
651                    GSubprocessFlags      flags,
652                    GError              **error)
653 {
654   g_return_val_if_fail (argv != NULL && argv[0] != NULL && argv[0][0] != '\0', NULL);
655
656   return g_initable_new (G_TYPE_SUBPROCESS, NULL, error,
657                          "argv", argv,
658                          "flags", flags,
659                          NULL);
660 }
661
662 const gchar *
663 g_subprocess_get_identifier (GSubprocess *self)
664 {
665   g_return_val_if_fail (G_IS_SUBPROCESS (self), NULL);
666
667   if (self->pid)
668     return self->identifier;
669   else
670     return NULL;
671 }
672
673 GOutputStream *
674 g_subprocess_get_stdin_pipe (GSubprocess       *self)
675 {
676   g_return_val_if_fail (G_IS_SUBPROCESS (self), NULL);
677   g_return_val_if_fail (self->stdin_pipe, NULL);
678
679   return self->stdin_pipe;
680 }
681
682 GInputStream *
683 g_subprocess_get_stdout_pipe (GSubprocess      *self)
684 {
685   g_return_val_if_fail (G_IS_SUBPROCESS (self), NULL);
686   g_return_val_if_fail (self->stdout_pipe, NULL);
687
688   return self->stdout_pipe;
689 }
690
691 GInputStream *
692 g_subprocess_get_stderr_pipe (GSubprocess      *self)
693 {
694   g_return_val_if_fail (G_IS_SUBPROCESS (self), NULL);
695   g_return_val_if_fail (self->stderr_pipe, NULL);
696
697   return self->stderr_pipe;
698 }
699
700 static void
701 g_subprocess_wait_cancelled (GCancellable *cancellable,
702                              gpointer      user_data)
703 {
704   GTask *task = user_data;
705   GSubprocess *self;
706
707   self = g_task_get_source_object (task);
708
709   g_mutex_lock (&self->pending_waits_lock);
710   self->pending_waits = g_slist_remove (self->pending_waits, task);
711   g_mutex_unlock (&self->pending_waits_lock);
712
713   g_task_return_boolean (task, FALSE);
714   g_object_unref (task);
715 }
716
717 void
718 g_subprocess_wait_async (GSubprocess         *self,
719                          GCancellable        *cancellable,
720                          GAsyncReadyCallback  callback,
721                          gpointer             user_data)
722 {
723   GTask *task;
724
725   task = g_task_new (self, cancellable, callback, user_data);
726
727   g_mutex_lock (&self->pending_waits_lock);
728   if (self->pid)
729     {
730       /* Only bother with cancellable if we're putting it in the list.
731        * If not, it's going to dispatch immediately anyway and we will
732        * see the cancellation in the _finish().
733        */
734       if (cancellable)
735         g_signal_connect_object (cancellable, "cancelled", G_CALLBACK (g_subprocess_wait_cancelled), task, 0);
736
737       self->pending_waits = g_slist_prepend (self->pending_waits, task);
738       task = NULL;
739     }
740   g_mutex_unlock (&self->pending_waits_lock);
741
742   /* If we still have task then it's because did_exit is already TRUE */
743   if (task != NULL)
744     {
745       g_task_return_boolean (task, TRUE);
746       g_object_unref (task);
747     }
748 }
749
750 gboolean
751 g_subprocess_wait_finish (GSubprocess   *self,
752                           GAsyncResult  *result,
753                           GError       **error)
754 {
755   return g_task_propagate_boolean (G_TASK (result), error);
756 }
757
758 /* Some generic helpers for emulating synchronous operations using async
759  * operations.
760  */
761 static void
762 g_subprocess_sync_setup (void)
763 {
764   g_main_context_push_thread_default (g_main_context_new ());
765 }
766
767 static void
768 g_subprocess_sync_done (GObject      *source_object,
769                         GAsyncResult *result,
770                         gpointer      user_data)
771 {
772   GAsyncResult **result_ptr = user_data;
773
774   *result_ptr = g_object_ref (result);
775 }
776
777 static void
778 g_subprocess_sync_complete (GAsyncResult **result)
779 {
780   GMainContext *context = g_main_context_get_thread_default ();
781
782   while (!*result)
783     g_main_context_iteration (context, TRUE);
784
785   g_main_context_pop_thread_default (context);
786   g_main_context_unref (context);
787 }
788
789 /**
790  * g_subprocess_wait:
791  * @self: a #GSubprocess
792  * @cancellable: a #GCancellable
793  * @error: a #GError
794  *
795  * Synchronously wait for the subprocess to terminate, returning the
796  * status code in @out_exit_status.  See the documentation of
797  * g_spawn_check_exit_status() for how to interpret it.  Note that if
798  * @error is set, then @out_exit_status will be left uninitialized.
799  *
800  * Returns: %TRUE on success, %FALSE if @cancellable was cancelled
801  *
802  * Since: 2.36
803  */
804 gboolean
805 g_subprocess_wait (GSubprocess   *self,
806                    GCancellable  *cancellable,
807                    GError       **error)
808 {
809   GAsyncResult *result = NULL;
810   gboolean success;
811
812   g_return_val_if_fail (G_IS_SUBPROCESS (self), FALSE);
813
814   /* Synchronous waits are actually the 'more difficult' case because we
815    * need to deal with the possibility of cancellation.  That more or
816    * less implies that we need a main context (to dispatch either of the
817    * possible reasons for the operation ending).
818    *
819    * So we make one and then do this async...
820    */
821
822   if (g_cancellable_set_error_if_cancelled (cancellable, error))
823     return FALSE;
824
825   /* We can shortcut in the case that the process already quit (but only
826    * after we checked the cancellable).
827    */
828   if (self->pid == 0)
829     return TRUE;
830
831   /* Otherwise, we need to do this the long way... */
832   g_subprocess_sync_setup ();
833   g_subprocess_wait_async (self, cancellable, g_subprocess_sync_done, &result);
834   g_subprocess_sync_complete (&result);
835   success = g_subprocess_wait_finish (self, result, error);
836   g_object_unref (result);
837
838   return success;
839 }
840
841 /**
842  * g_subprocess_wait_sync_check:
843  * @self: a #GSubprocess
844  * @cancellable: a #GCancellable
845  * @error: a #GError
846  *
847  * Combines g_subprocess_wait_sync() with g_spawn_check_exit_status().
848  *
849  * Returns: %TRUE on success, %FALSE if process exited abnormally, or @cancellable was cancelled
850  *
851  * Since: 2.36
852  */
853 gboolean
854 g_subprocess_wait_check (GSubprocess   *self,
855                          GCancellable  *cancellable,
856                          GError       **error)
857 {
858   return g_subprocess_wait (self, cancellable, error) &&
859          g_spawn_check_exit_status (self->status, error);
860 }
861
862 void
863 g_subprocess_wait_check_async (GSubprocess         *self,
864                                GCancellable        *cancellable,
865                                GAsyncReadyCallback  callback,
866                                gpointer             user_data)
867 {
868   g_subprocess_wait_async (self, cancellable, callback, user_data);
869 }
870
871 gboolean
872 g_subprocess_wait_check_finish (GSubprocess   *self,
873                                 GAsyncResult  *result,
874                                 GError       **error)
875 {
876   return g_subprocess_wait_finish (self, result, error) &&
877          g_spawn_check_exit_status (self->status, error);
878 }
879
880 #ifdef G_OS_UNIX
881 typedef struct
882 {
883   GSubprocess *subprocess;
884   gint signalnum;
885 } SignalRecord;
886
887 static gboolean
888 g_subprocess_actually_send_signal (gpointer user_data)
889 {
890   SignalRecord *signal_record = user_data;
891
892   /* The pid is set to zero from the worker thread as well, so we don't
893    * need to take a lock in order to prevent it from changing under us.
894    */
895   if (signal_record->subprocess->pid)
896     kill (signal_record->subprocess->pid, signal_record->signalnum);
897
898   g_object_unref (signal_record->subprocess);
899
900   g_slice_free (SignalRecord, signal_record);
901
902   return FALSE;
903 }
904
905 static void
906 g_subprocess_dispatch_signal (GSubprocess *self,
907                               gint         signalnum)
908 {
909   SignalRecord signal_record = { g_object_ref (self), signalnum };
910
911   g_return_if_fail (G_IS_SUBPROCESS (self));
912
913   /* This MUST be a lower priority than the priority that the child
914    * watch source uses in initable_init().
915    *
916    * Reaping processes, reporting the results back to GSubprocess and
917    * sending signals is all done in the glib worker thread.  We cannot
918    * have a kill() done after the reap and before the report without
919    * risking killing a process that's no longer there so the kill()
920    * needs to have the lower priority.
921    *
922    * G_PRIORITY_HIGH_IDLE is lower priority than G_PRIORITY_DEFAULT.
923    */
924   g_main_context_invoke_full (GLIB_PRIVATE_CALL (g_get_worker_context) (),
925                               G_PRIORITY_HIGH_IDLE,
926                               g_subprocess_actually_send_signal,
927                               g_slice_dup (SignalRecord, &signal_record),
928                               NULL);
929 }
930
931 /**
932  * g_subprocess_send_signal:
933  * @self: a #GSubprocess
934  * @signal_num: the signal number to send
935  *
936  * Sends the UNIX signal @signal_num to the subprocess, if it is still
937  * running.
938  *
939  * This API is race-free.  If the subprocess has terminated, it will not
940  * be signalled.
941  *
942  * This API is not available on Windows.
943  *
944  * Since: 2.36
945  **/
946 void
947 g_subprocess_send_signal (GSubprocess *self,
948                           gint         signal_num)
949 {
950   g_return_if_fail (G_IS_SUBPROCESS (self));
951
952   g_subprocess_dispatch_signal (self, signal_num);
953 }
954 #endif
955
956 /**
957  * g_subprocess_force_exit:
958  * @self: a #GSubprocess
959  *
960  * Use an operating-system specific method to attempt an immediate,
961  * forceful termination of the process.  There is no mechanism to
962  * determine whether or not the request itself was successful;
963  * however, you can use g_subprocess_wait() to monitor the status of
964  * the process after calling this function.
965  *
966  * On Unix, this function sends %SIGKILL.
967  *
968  * Since: 2.36
969  **/
970 void
971 g_subprocess_force_exit (GSubprocess *self)
972 {
973   g_return_if_fail (G_IS_SUBPROCESS (self));
974
975 #ifdef G_OS_UNIX
976   g_subprocess_dispatch_signal (self, SIGKILL);
977 #else
978   TerminateProcess (self->pid, 1);
979 #endif
980 }
981
982 /**
983  * g_subprocess_get_status:
984  * @self: a #GSubprocess
985  *
986  * Gets the raw status code of the process, as from waitpid().
987  *
988  * This value has no particular meaning, but it can be used with the
989  * macros defined by the system headers such as WIFEXITED.  It can also
990  * be used with g_spawn_check_exit_status().
991  *
992  * It is more likely that you want to use g_subprocess_get_if_exited()
993  * followed by g_subprocess_get_exit_status().
994  *
995  * It is an error to call this function before g_subprocess_wait() has
996  * returned.
997  *
998  * Returns: the (meaningless) waitpid() exit status from the kernel
999  *
1000  * Since: 2.36
1001  **/
1002 gint
1003 g_subprocess_get_status (GSubprocess *self)
1004 {
1005   g_return_val_if_fail (G_IS_SUBPROCESS (self), FALSE);
1006   g_return_val_if_fail (self->pid == 0, FALSE);
1007
1008   return self->status;
1009 }
1010
1011 /**
1012  * g_subprocess_get_successful:
1013  * @self: a #GSubprocess
1014  *
1015  * Checks if the process was "successful".  A process is considered
1016  * successful if it exited cleanly with an exit status of 0, either by
1017  * way of the exit() system call or return from main().
1018  *
1019  * It is an error to call this function before g_subprocess_wait() has
1020  * returned.
1021  *
1022  * Returns: %TRUE if the process exited cleanly with a exit status of 0
1023  *
1024  * Since: 2.36
1025  **/
1026 gboolean
1027 g_subprocess_get_successful (GSubprocess *self)
1028 {
1029   g_return_val_if_fail (G_IS_SUBPROCESS (self), FALSE);
1030   g_return_val_if_fail (self->pid == 0, FALSE);
1031
1032   return WIFEXITED (self->status) && WEXITSTATUS (self->status) == 0;
1033 }
1034
1035 /**
1036  * g_subprocess_get_if_exited:
1037  * @self: a #GSubprocess
1038  *
1039  * Check if the given subprocess exited normally (ie: by way of exit()
1040  * or return from main()).
1041  *
1042  * This is equivalent to the system WIFEXITED macro.
1043  *
1044  * It is an error to call this function before g_subprocess_wait() has
1045  * returned.
1046  *
1047  * Returns: %TRUE if the case of a normal exit
1048  *
1049  * Since: 2.36
1050  **/
1051 gboolean
1052 g_subprocess_get_if_exited (GSubprocess *self)
1053 {
1054   g_return_val_if_fail (G_IS_SUBPROCESS (self), FALSE);
1055   g_return_val_if_fail (self->pid == 0, FALSE);
1056
1057   return WIFEXITED (self->status);
1058 }
1059
1060 /**
1061  * g_subprocess_get_exit_status:
1062  * @self: a #GSubprocess
1063  *
1064  * Check the exit status of the subprocess, given that it exited
1065  * normally.  This is the value passed to the exit() system call or the
1066  * return value from main.
1067  *
1068  * This is equivalent to the system WEXITSTATUS macro.
1069  *
1070  * It is an error to call this function before g_subprocess_wait() and
1071  * unless g_subprocess_get_if_exited() returned %TRUE.
1072  *
1073  * Returns: the exit status
1074  *
1075  * Since: 2.36
1076  **/
1077 gint
1078 g_subprocess_get_exit_status (GSubprocess *self)
1079 {
1080   g_return_val_if_fail (G_IS_SUBPROCESS (self), 1);
1081   g_return_val_if_fail (self->pid == 0, 1);
1082   g_return_val_if_fail (WIFEXITED (self->status), 1);
1083
1084   return WEXITSTATUS (self->status);
1085 }
1086
1087 /**
1088  * g_subprocess_get_if_signaled:
1089  * @self: a #GSubprocess
1090  *
1091  * Check if the given subprocess terminated in response to a signal.
1092  *
1093  * This is equivalent to the system WIFSIGNALED macro.
1094  *
1095  * It is an error to call this function before g_subprocess_wait() has
1096  * returned.
1097  *
1098  * Returns: %TRUE if the case of termination due to a signal
1099  *
1100  * Since: 2.36
1101  **/
1102 gboolean
1103 g_subprocess_get_if_signaled (GSubprocess *self)
1104 {
1105   g_return_val_if_fail (G_IS_SUBPROCESS (self), FALSE);
1106   g_return_val_if_fail (self->pid == 0, FALSE);
1107
1108   return WIFSIGNALED (self->status);
1109 }
1110
1111 /**
1112  * g_subprocess_get_term_sig:
1113  * @self: a #GSubprocess
1114  *
1115  * Get the signal number that caused the subprocess to terminate, given
1116  * that it terminated due to a signal.
1117  *
1118  * This is equivalent to the system WTERMSIG macro.
1119  *
1120  * It is an error to call this function before g_subprocess_wait() and
1121  * unless g_subprocess_get_if_signaled() returned %TRUE.
1122  *
1123  * Returns: the signal causing termination
1124  *
1125  * Since: 2.36
1126  **/
1127 gint
1128 g_subprocess_get_term_sig (GSubprocess *self)
1129 {
1130   g_return_val_if_fail (G_IS_SUBPROCESS (self), 0);
1131   g_return_val_if_fail (self->pid == 0, 0);
1132   g_return_val_if_fail (WIFSIGNALED (self->status), 0);
1133
1134   return WTERMSIG (self->status);
1135 }
1136
1137 /*< private >*/
1138 void
1139 g_subprocess_set_launcher (GSubprocess         *subprocess,
1140                            GSubprocessLauncher *launcher)
1141 {
1142   subprocess->launcher = launcher;
1143 }
1144
1145
1146 /* g_subprocess_communicate implementation below:
1147  *
1148  * This is a tough problem.  We have to watch 5 things at the same time:
1149  *
1150  *  - writing to stdin made progress
1151  *  - reading from stdout made progress
1152  *  - reading from stderr made progress
1153  *  - process terminated
1154  *  - cancellable being cancelled by caller
1155  *
1156  * We use a GMainContext for all of these (either as async function
1157  * calls or as a GSource (in the case of the cancellable).  That way at
1158  * least we don't have to worry about threading.
1159  *
1160  * For the sync case we use the usual trick of creating a private main
1161  * context and iterating it until completion.
1162  *
1163  * It's very possible that the process will dump a lot of data to stdout
1164  * just before it quits, so we can easily have data to read from stdout
1165  * and see the process has terminated at the same time.  We want to make
1166  * sure that we read all of the data from the pipes first, though, so we
1167  * do IO operations at a higher priority than the wait operation (which
1168  * is at G_IO_PRIORITY_DEFAULT).  Even in the case that we have to do
1169  * multiple reads to get this data, the pipe() will always be polling
1170  * as ready and with the async result for the read at a higher priority,
1171  * the main context will not dispatch the completion for the wait().
1172  *
1173  * We keep our own private GCancellable.  In the event that any of the
1174  * above suffers from an error condition (including the user cancelling
1175  * their cancellable) we immediately dispatch the GTask with the error
1176  * result and fire our cancellable to cleanup any pending operations.
1177  * In the case that the error is that the user's cancellable was fired,
1178  * it's vaguely wasteful to report an error because GTask will handle
1179  * this automatically, so we just return FALSE.
1180  *
1181  * We let each pending sub-operation take a ref on the GTask of the
1182  * communicate operation.  We have to be careful that we don't report
1183  * the task completion more than once, though, so we keep a flag for
1184  * that.
1185  */
1186 typedef struct
1187 {
1188   const gchar *stdin_data;
1189   gsize stdin_length;
1190   gsize stdin_offset;
1191
1192   GInputStream *stdin_buf;
1193   GMemoryOutputStream *stdout_buf;
1194   GMemoryOutputStream *stderr_buf;
1195
1196   GCancellable *cancellable;
1197   GSource      *cancellable_source;
1198
1199   guint         outstanding_ops;
1200   gboolean      reported_error;
1201 } CommunicateState;
1202
1203 static void
1204 g_subprocess_communicate_made_progress (GObject      *source_object,
1205                                         GAsyncResult *result,
1206                                         gpointer      user_data)
1207 {
1208   CommunicateState *state;
1209   GSubprocess *subprocess;
1210   GError *error = NULL;
1211   gpointer source;
1212   GTask *task;
1213
1214   g_assert (source_object != NULL);
1215
1216   task = user_data;
1217   subprocess = g_task_get_source_object (task);
1218   state = g_task_get_task_data (task);
1219   source = source_object;
1220
1221   state->outstanding_ops--;
1222
1223   if (source == subprocess->stdin_pipe ||
1224       source == state->stdout_buf ||
1225       source == state->stderr_buf)
1226     {
1227       (void) g_output_stream_splice_finish ((GOutputStream*)source, result, &error);
1228     }
1229   else if (source == subprocess)
1230     {
1231       (void) g_subprocess_wait_finish (subprocess, result, &error);
1232     }
1233   else
1234     g_assert_not_reached ();
1235
1236   if (error)
1237     {
1238       /* Only report the first error we see.
1239        *
1240        * We might be seeing an error as a result of the cancellation
1241        * done when the process quits.
1242        */
1243       if (!state->reported_error)
1244         {
1245           state->reported_error = TRUE;
1246           g_cancellable_cancel (state->cancellable);
1247           g_task_return_error (task, error);
1248         }
1249       else
1250         g_error_free (error);
1251     }
1252   else if (state->outstanding_ops == 0)
1253     {
1254       g_task_return_boolean (task, TRUE);
1255     }
1256
1257   /* And drop the original ref */
1258   g_object_unref (task);
1259 }
1260
1261 static gboolean
1262 g_subprocess_communicate_cancelled (gpointer user_data)
1263 {
1264   CommunicateState *state = user_data;
1265
1266   g_cancellable_cancel (state->cancellable);
1267
1268   return FALSE;
1269 }
1270
1271 static void
1272 g_subprocess_communicate_state_free (gpointer data)
1273 {
1274   CommunicateState *state = data;
1275
1276   g_clear_object (&state->stdin_buf);
1277   g_clear_object (&state->stdout_buf);
1278   g_clear_object (&state->stderr_buf);
1279
1280   if (!g_source_is_destroyed (state->cancellable_source))
1281     g_source_destroy (state->cancellable_source);
1282   g_source_unref (state->cancellable_source);
1283
1284   g_slice_free (CommunicateState, state);
1285 }
1286
1287 static CommunicateState *
1288 g_subprocess_communicate_internal (GSubprocess         *subprocess,
1289                                    GBytes              *stdin_buf,
1290                                    GCancellable        *cancellable,
1291                                    GAsyncReadyCallback  callback,
1292                                    gpointer             user_data)
1293 {
1294   CommunicateState *state;
1295   GTask *task;
1296
1297   task = g_task_new (subprocess, cancellable, callback, user_data);
1298   state = g_slice_new0 (CommunicateState);
1299   g_task_set_task_data (task, state, g_subprocess_communicate_state_free);
1300
1301   state->cancellable = g_cancellable_new ();
1302
1303   if (cancellable)
1304     {
1305       state->cancellable_source = g_cancellable_source_new (cancellable);
1306       /* No ref held here, but we unref the source from state's free function */
1307       g_source_set_callback (state->cancellable_source, g_subprocess_communicate_cancelled, state, NULL);
1308       g_source_attach (state->cancellable_source, g_main_context_get_thread_default ());
1309     }
1310
1311   if (subprocess->stdin_pipe)
1312     {
1313       g_assert (stdin_buf != NULL);
1314       state->stdin_buf = g_memory_input_stream_new_from_bytes (stdin_buf);
1315       g_output_stream_splice_async (subprocess->stdin_pipe, (GInputStream*)state->stdin_buf,
1316                                     G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE | G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET,
1317                                     G_PRIORITY_DEFAULT, state->cancellable,
1318                                     g_subprocess_communicate_made_progress, g_object_ref (task));
1319       state->outstanding_ops++;
1320     }
1321
1322   if (subprocess->stdout_pipe)
1323     {
1324       state->stdout_buf = (GMemoryOutputStream*)g_memory_output_stream_new_resizable ();
1325       g_output_stream_splice_async ((GOutputStream*)state->stdout_buf, subprocess->stdout_pipe,
1326                                     G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE | G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET,
1327                                     G_PRIORITY_DEFAULT, state->cancellable,
1328                                     g_subprocess_communicate_made_progress, g_object_ref (task));
1329       state->outstanding_ops++;
1330     }
1331
1332   if (subprocess->stderr_pipe)
1333     {
1334       state->stderr_buf = (GMemoryOutputStream*)g_memory_output_stream_new_resizable ();
1335       g_output_stream_splice_async ((GOutputStream*)state->stderr_buf, subprocess->stderr_pipe,
1336                                     G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE | G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET,
1337                                     G_PRIORITY_DEFAULT, state->cancellable,
1338                                     g_subprocess_communicate_made_progress, g_object_ref (task));
1339       state->outstanding_ops++;
1340     }
1341
1342   g_subprocess_wait_async (subprocess, state->cancellable,
1343                            g_subprocess_communicate_made_progress, g_object_ref (task));
1344   state->outstanding_ops++;
1345
1346   return state;
1347 }
1348
1349 /**
1350  * g_subprocess_communicate:
1351  * @self: a #GSubprocess
1352  * @stdin_buf: data to send to the stdin of the subprocess, or %NULL
1353  * @cancellable: a #GCancellable
1354  * @stdout_buf: (out): data read from the subprocess stdout
1355  * @stderr_buf: (out): data read from the subprocess stderr
1356  * @error: a pointer to a %NULL #GError pointer, or %NULL
1357  *
1358  * Communicate with the subprocess until it terminates, and all input
1359  * and output has been completed.
1360  *
1361  * If @stdin is given, the subprocess must have been created with
1362  * %G_SUBPROCESS_FLAGS_STDIN_PIPE.  The given data is fed to the
1363  * stdin of the subprocess and the pipe is closed (ie: EOF).
1364  *
1365  * At the same time (as not to cause blocking when dealing with large
1366  * amounts of data), if %G_SUBPROCESS_FLAGS_STDOUT_PIPE or
1367  * %G_SUBPROCESS_FLAGS_STDERR_PIPE were used, reads from those
1368  * streams.  The data that was read is returned in @stdout and/or
1369  * the @stderr.
1370  *
1371  * If the subprocess was created with %G_SUBPROCESS_FLAGS_STDOUT_PIPE,
1372  * @stdout_buf will contain the data read from stdout.  Otherwise, for
1373  * subprocesses not created with %G_SUBPROCESS_FLAGS_STDOUT_PIPE,
1374  * @stdout_buf will be set to %NULL.  Similar provisions apply to
1375  * @stderr_buf and %G_SUBPROCESS_FLAGS_STDERR_PIPE.
1376  *
1377  * As usual, any output variable may be given as %NULL to ignore it.
1378  *
1379  * If you desire the stdout and stderr data to be interleaved, create
1380  * the subprocess with %G_SUBPROCESS_FLAGS_STDOUT_PIPE and
1381  * %G_SUBPROCESS_FLAGS_STDERR_MERGE.  The merged result will be returned
1382  * in @stdout_buf and @stderr_buf will be set to %NULL.
1383  *
1384  * In case of any error (including cancellation), %FALSE will be
1385  * returned with @error set.  Some or all of the stdin data may have
1386  * been written.  Any stdout or stderr data that has been read will be
1387  * discarded. None of the out variables (aside from @error) will have
1388  * been set to anything in particular and should not be inspected.
1389  *
1390  * In the case that %TRUE is returned, the subprocess has exited and the
1391  * exit status inspection APIs (eg: g_subprocess_get_if_exited(),
1392  * g_subprocess_get_exit_status()) may be used.
1393  *
1394  * You should not attempt to use any of the subprocess pipes after
1395  * starting this function, since they may be left in strange states,
1396  * even if the operation was cancelled.  You should especially not
1397  * attempt to interact with the pipes while the operation is in progress
1398  * (either from another thread or if using the asynchronous version).
1399  *
1400  * Returns: %TRUE if successful
1401  *
1402  * Since: 2.40
1403  **/
1404 gboolean
1405 g_subprocess_communicate (GSubprocess   *subprocess,
1406                           GBytes        *stdin_buf,
1407                           GCancellable  *cancellable,
1408                           GBytes       **stdout_buf,
1409                           GBytes       **stderr_buf,
1410                           GError       **error)
1411 {
1412   GAsyncResult *result = NULL;
1413   gboolean success;
1414
1415   g_return_val_if_fail (G_IS_SUBPROCESS (subprocess), FALSE);
1416   g_return_val_if_fail (stdin_buf == NULL || (subprocess->flags & G_SUBPROCESS_FLAGS_STDIN_PIPE), FALSE);
1417   g_return_val_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable), FALSE);
1418   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1419
1420   g_subprocess_sync_setup ();
1421   g_subprocess_communicate_internal (subprocess, stdin_buf, cancellable, g_subprocess_sync_done, &result);
1422   g_subprocess_sync_complete (&result);
1423   success = g_subprocess_communicate_finish (subprocess, result, stdout_buf, stderr_buf, error);
1424   g_object_unref (result);
1425
1426   return success;
1427 }
1428
1429 /**
1430  * g_subprocess_communicate_async:
1431  * @subprocess: Self
1432  * @stdin_buf: Input data
1433  * @cancellable: Cancellable
1434  * @callback: Callback
1435  * @user_data: User data
1436  *
1437  * Asynchronous version of g_subprocess_communicate().  Complete
1438  * invocation with g_subprocess_communicate_finish().
1439  */
1440 void
1441 g_subprocess_communicate_async (GSubprocess         *subprocess,
1442                                 GBytes              *stdin_buf,
1443                                 GCancellable        *cancellable,
1444                                 GAsyncReadyCallback  callback,
1445                                 gpointer             user_data)
1446 {
1447   g_return_if_fail (G_IS_SUBPROCESS (subprocess));
1448   g_return_if_fail (stdin_buf == NULL || (subprocess->flags & G_SUBPROCESS_FLAGS_STDIN_PIPE));
1449   g_return_if_fail (cancellable == NULL || G_IS_CANCELLABLE (cancellable));
1450
1451   g_subprocess_communicate_internal (subprocess, stdin_buf, cancellable, callback, user_data);
1452 }
1453
1454 /**
1455  * g_subprocess_communicate_finish:
1456  * @subprocess: Self
1457  * @result: Result
1458  * @stdout_buf: (out): Return location for stdout data
1459  * @stderr_buf: (out): Return location for stderr data
1460  * @error: Error
1461  *
1462  * Complete an invocation of g_subprocess_communicate_async().
1463  */
1464 gboolean
1465 g_subprocess_communicate_finish (GSubprocess   *subprocess,
1466                                  GAsyncResult  *result,
1467                                  GBytes       **stdout_buf,
1468                                  GBytes       **stderr_buf,
1469                                  GError       **error)
1470 {
1471   gboolean success;
1472   CommunicateState *state;
1473
1474   g_return_val_if_fail (G_IS_SUBPROCESS (subprocess), FALSE);
1475   g_return_val_if_fail (g_task_is_valid (result, subprocess), FALSE);
1476   g_return_val_if_fail (error == NULL || *error == NULL, FALSE);
1477
1478   g_object_ref (result);
1479
1480   state = g_task_get_task_data ((GTask*)result);
1481   success = g_task_propagate_boolean ((GTask*)result, error);
1482
1483   if (success)
1484     {
1485       if (stdout_buf)
1486         *stdout_buf = g_memory_output_stream_steal_as_bytes (state->stdout_buf);
1487       if (stderr_buf)
1488         *stderr_buf = g_memory_output_stream_steal_as_bytes (state->stderr_buf);
1489     }
1490
1491   g_object_unref (result);
1492   return success;
1493 }