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 */
28 write_err_and_exit (gint fd,
33 write (fd, &msg, sizeof(msg));
34 write (fd, &en, sizeof(en));
41 # define _stdcall __attribute__((stdcall))
45 /* We build gspawn-win32-helper.exe as a Windows GUI application
46 * to avoid any temporarily flashing console windows in case
47 * the gspawn function is invoked by a GUI program. Thus, no main()
48 * but a WinMain(). We do, however, still use argc and argv tucked
49 * away in the global __argc and __argv by the C runtime startup code.
53 WinMain (struct HINSTANCE__ *hInstance,
54 struct HINSTANCE__ *hPrevInstance,
58 int child_err_report_fd;
68 debugstring = g_string_new ("");
70 g_string_append (debugstring,
71 g_strdup_printf ("g-spawn-win32-helper: "
74 for (i = 0; i < __argc; i++)
77 g_string_append (debugstring, " ");
78 g_string_append (debugstring, __argv[i]);
81 MessageBox (NULL, debugstring->str, "gspawn-win32-helper", 0);
84 g_assert (__argc >= ARG_COUNT);
86 /* argv[ARG_CHILD_ERR_REPORT] is the file descriptor onto which
87 * write error messages.
89 child_err_report_fd = atoi (__argv[ARG_CHILD_ERR_REPORT]);
91 /* argv[ARG_STDIN..ARG_STDERR] are the file descriptors that should
92 * be dup2'd to stdin, stdout and stderr, '-' if the corresponding
93 * std* should be let alone, and 'z' if it should be connected to
94 * the bit bucket NUL:.
96 if (__argv[ARG_STDIN][0] == '-')
98 else if (__argv[ARG_STDIN][0] == 'z')
100 fd = open ("NUL:", O_RDONLY);
109 fd = atoi (__argv[ARG_STDIN]);
117 if (__argv[ARG_STDOUT][0] == '-')
119 else if (__argv[ARG_STDOUT][0] == 'z')
121 fd = open ("NUL:", O_WRONLY);
130 fd = atoi (__argv[ARG_STDOUT]);
138 if (__argv[ARG_STDERR][0] == '-')
140 else if (__argv[ARG_STDERR][0] == 'z')
142 fd = open ("NUL:", O_WRONLY);
151 fd = atoi (__argv[ARG_STDERR]);
159 /* __argv[ARG_WORKING_DIRECTORY] is the directory in which to run the
160 * process. If "-", don't change directory.
162 if (__argv[ARG_WORKING_DIRECTORY][0] == '-' &&
163 __argv[ARG_WORKING_DIRECTORY][1] == 0)
165 else if (chdir (__argv[ARG_WORKING_DIRECTORY]) < 0)
166 write_err_and_exit (child_err_report_fd,
169 /* __argv[ARG_CLOSE_DESCRIPTORS] is "y" if file descriptors from 3
170 * upwards should be closed
173 if (__argv[ARG_CLOSE_DESCRIPTORS][0] == 'y')
174 for (i = 3; i < 1000; i++) /* FIXME real limit? */
175 if (i != child_err_report_fd)
178 /* __argv[ARG_WAIT] is "w" to wait for the program to exit */
180 if (__argv[ARG_WAIT][0] == 'w')
185 /* __argv[ARG_USE_PATH] is "y" to use PATH, otherwise not */
187 /* __argv[ARG_PROGRAM] is program file to run,
188 * __argv[ARG_PROGRAM+1]... is its __argv.
193 debugstring = g_string_new ("");
194 g_string_append (debugstring,
195 g_strdup_printf ("calling %s on program %s, __argv: ",
196 (__argv[ARG_USE_PATH][0] == 'y' ?
197 "spawnvp" : "spawnv"),
198 __argv[ARG_PROGRAM]));
201 g_string_append (debugstring, __argv[i++]);
202 MessageBox (NULL, debugstring->str, "gspawn-win32-helper", 0);
205 if (__argv[ARG_USE_PATH][0] == 'y')
207 if (spawnvp (mode, __argv[ARG_PROGRAM], __argv+ARG_PROGRAM) < 0)
208 write_err_and_exit (child_err_report_fd, CHILD_SPAWN_FAILED);
212 if (spawnv (mode, __argv[ARG_PROGRAM], __argv+ARG_PROGRAM) < 0)
213 write_err_and_exit (child_err_report_fd, CHILD_SPAWN_FAILED);