1 /* gspawn-win32-helper.c - Helper program for process launching on Win32.
3 * Copyright 2000 Red Hat, Inc.
4 * Copyright 2000 Tor Lillqvist
6 * GLib is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation; either version 2 of the
9 * License, or (at your option) any later version.
11 * GLib is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with GLib; see the file COPYING.LIB. If not, write
18 * to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 * Boston, MA 02111-1307, USA.
25 #include "gspawn-win32.c" /* For shared definitions */
27 static GString *debugstring;
30 write_err_and_exit (gint fd,
37 debugstring = g_string_new ("");
38 g_string_append (debugstring,
39 g_strdup_printf ("writing error code %d and errno %d",
41 MessageBox (NULL, debugstring->str, "gspawn-win32-helper", 0);
44 write (fd, &msg, sizeof(msg));
45 write (fd, &en, sizeof(en));
52 # define _stdcall __attribute__((stdcall))
56 /* We build gspawn-win32-helper.exe as a Windows GUI application
57 * to avoid any temporarily flashing console windows in case
58 * the gspawn function is invoked by a GUI program. Thus, no main()
59 * but a WinMain(). We do, however, still use argc and argv tucked
60 * away in the global __argc and __argv by the C runtime startup code.
64 WinMain (struct HINSTANCE__ *hInstance,
65 struct HINSTANCE__ *hPrevInstance,
69 int child_err_report_fd;
74 int no_error = CHILD_NO_ERROR;
81 debugstring = g_string_new ("");
83 g_string_append (debugstring,
84 g_strdup_printf ("g-spawn-win32-helper: "
87 for (i = 0; i < __argc; i++)
90 g_string_append (debugstring, " ");
91 g_string_append (debugstring, __argv[i]);
94 MessageBox (NULL, debugstring->str, "gspawn-win32-helper", 0);
97 g_assert (__argc >= ARG_COUNT);
99 /* argv[ARG_CHILD_ERR_REPORT] is the file descriptor onto which
100 * write error messages.
102 child_err_report_fd = atoi (__argv[ARG_CHILD_ERR_REPORT]);
104 /* argv[ARG_STDIN..ARG_STDERR] are the file descriptors that should
105 * be dup2'd to stdin, stdout and stderr, '-' if the corresponding
106 * std* should be let alone, and 'z' if it should be connected to
107 * the bit bucket NUL:.
109 if (__argv[ARG_STDIN][0] == '-')
111 else if (__argv[ARG_STDIN][0] == 'z')
113 fd = open ("NUL:", O_RDONLY);
122 fd = atoi (__argv[ARG_STDIN]);
130 if (__argv[ARG_STDOUT][0] == '-')
132 else if (__argv[ARG_STDOUT][0] == 'z')
134 fd = open ("NUL:", O_WRONLY);
143 fd = atoi (__argv[ARG_STDOUT]);
151 if (__argv[ARG_STDERR][0] == '-')
153 else if (__argv[ARG_STDERR][0] == 'z')
155 fd = open ("NUL:", O_WRONLY);
164 fd = atoi (__argv[ARG_STDERR]);
172 /* __argv[ARG_WORKING_DIRECTORY] is the directory in which to run the
173 * process. If "-", don't change directory.
175 if (__argv[ARG_WORKING_DIRECTORY][0] == '-' &&
176 __argv[ARG_WORKING_DIRECTORY][1] == 0)
178 else if (chdir (__argv[ARG_WORKING_DIRECTORY]) < 0)
179 write_err_and_exit (child_err_report_fd,
182 /* __argv[ARG_CLOSE_DESCRIPTORS] is "y" if file descriptors from 3
183 * upwards should be closed
186 if (__argv[ARG_CLOSE_DESCRIPTORS][0] == 'y')
187 for (i = 3; i < 1000; i++) /* FIXME real limit? */
188 if (i != child_err_report_fd)
191 /* __argv[ARG_WAIT] is "w" to wait for the program to exit */
193 if (__argv[ARG_WAIT][0] == 'w')
198 /* __argv[ARG_USE_PATH] is "y" to use PATH, otherwise not */
200 /* __argv[ARG_PROGRAM] is program file to run,
201 * __argv[ARG_PROGRAM+1]... is its __argv.
206 debugstring = g_string_new ("");
207 g_string_append (debugstring,
208 g_strdup_printf ("calling %s %s mode=%s argv: ",
209 (__argv[ARG_USE_PATH][0] == 'y' ?
210 "spawnvp" : "spawnv"),
213 "P_WAIT" : "P_NOWAIT")));
217 g_string_append (debugstring, __argv[i++]);
219 g_string_append (debugstring, " ");
221 MessageBox (NULL, debugstring->str, "gspawn-win32-helper", 0);
224 if (__argv[ARG_USE_PATH][0] == 'y')
225 handle = spawnvp (mode, __argv[ARG_PROGRAM], __argv+ARG_PROGRAM);
227 handle = spawnv (mode, __argv[ARG_PROGRAM], __argv+ARG_PROGRAM);
231 debugstring = g_string_new ("");
232 g_string_append (debugstring,
233 g_strdup_printf ("%s returned %#x",
234 (__argv[ARG_USE_PATH][0] == 'y' ?
235 "spawnvp" : "spawnv"),
237 MessageBox (NULL, debugstring->str, "gspawn-win32-helper", 0);
241 write_err_and_exit (child_err_report_fd, CHILD_SPAWN_FAILED);
243 write (child_err_report_fd, &no_error, sizeof (no_error));
244 if (mode == P_NOWAIT)
245 write (child_err_report_fd, &handle, sizeof (handle));
247 write (child_err_report_fd, &zero, sizeof (zero));