blob: 13a5e1f19447caf2e9ce1176d41db940d310e7d8 [file] [log] [blame]
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00001/*
2 * support routines for subprocess module
3 *
4 * Currently, this extension module is only required when using the
5 * subprocess module on Windows, but in the future, stubs for other
Tim Petersf3250b02004-10-12 21:38:22 +00006 * platforms might be added here as well.
Fredrik Lundh5b3687d2004-10-12 15:26:28 +00007 *
8 * Copyright (c) 2004 by Fredrik Lundh <fredrik@pythonware.com>
9 * Copyright (c) 2004 by Secret Labs AB, http://www.pythonware.com
10 * Copyright (c) 2004 by Peter Astrand <astrand@lysator.liu.se>
Tim Petersf3250b02004-10-12 21:38:22 +000011 *
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000012 * By obtaining, using, and/or copying this software and/or its
13 * associated documentation, you agree that you have read, understood,
14 * and will comply with the following terms and conditions:
Tim Petersf3250b02004-10-12 21:38:22 +000015 *
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000016 * Permission to use, copy, modify, and distribute this software and
17 * its associated documentation for any purpose and without fee is
18 * hereby granted, provided that the above copyright notice appears in
19 * all copies, and that both that copyright notice and this permission
20 * notice appear in supporting documentation, and that the name of the
21 * authors not be used in advertising or publicity pertaining to
22 * distribution of the software without specific, written prior
23 * permission.
Tim Petersf3250b02004-10-12 21:38:22 +000024 *
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000025 * THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
26 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS.
27 * IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
28 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
29 * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
30 * NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
31 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
Tim Petersf3250b02004-10-12 21:38:22 +000032 *
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000033 */
34
Fredrik Lundh63168a52005-12-14 22:29:34 +000035/* Licensed to PSF under a Contributor Agreement. */
36/* See http://www.python.org/2.4/license for licensing details. */
37
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000038#include "Python.h"
39
40#define WINDOWS_LEAN_AND_MEAN
41#include "windows.h"
42
43/* -------------------------------------------------------------------- */
44/* handle wrapper. note that this library uses integers when passing
45 handles to a function, and handle wrappers when returning handles.
46 the wrapper is used to provide Detach and Close methods */
47
48typedef struct {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000049 PyObject_HEAD
50 HANDLE handle;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000051} sp_handle_object;
52
Neal Norwitz227b5332006-03-22 09:28:35 +000053static PyTypeObject sp_handle_type;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000054
55static PyObject*
56sp_handle_new(HANDLE handle)
57{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000058 sp_handle_object* self;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000059
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000060 self = PyObject_NEW(sp_handle_object, &sp_handle_type);
61 if (self == NULL)
62 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000063
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000064 self->handle = handle;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000065
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000066 return (PyObject*) self;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000067}
68
Georg Brandl3dbca812008-07-23 16:10:53 +000069#if defined(MS_WIN32) && !defined(MS_WIN64)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000070#define HANDLE_TO_PYNUM(handle) PyLong_FromLong((long) handle)
71#define PY_HANDLE_PARAM "l"
Georg Brandl3dbca812008-07-23 16:10:53 +000072#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000073#define HANDLE_TO_PYNUM(handle) PyLong_FromLongLong((long long) handle)
74#define PY_HANDLE_PARAM "L"
Georg Brandl3dbca812008-07-23 16:10:53 +000075#endif
76
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000077static PyObject*
78sp_handle_detach(sp_handle_object* self, PyObject* args)
79{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000080 HANDLE handle;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000081
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000082 if (! PyArg_ParseTuple(args, ":Detach"))
83 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000084
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000085 handle = self->handle;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000086
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000087 self->handle = INVALID_HANDLE_VALUE;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000088
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000089 /* note: return the current handle, as an integer */
90 return HANDLE_TO_PYNUM(handle);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000091}
92
93static PyObject*
94sp_handle_close(sp_handle_object* self, PyObject* args)
95{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000096 if (! PyArg_ParseTuple(args, ":Close"))
97 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +000098
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000099 if (self->handle != INVALID_HANDLE_VALUE) {
100 CloseHandle(self->handle);
101 self->handle = INVALID_HANDLE_VALUE;
102 }
103 Py_INCREF(Py_None);
104 return Py_None;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000105}
106
107static void
108sp_handle_dealloc(sp_handle_object* self)
109{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000110 if (self->handle != INVALID_HANDLE_VALUE)
111 CloseHandle(self->handle);
112 PyObject_FREE(self);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000113}
114
115static PyMethodDef sp_handle_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000116 {"Detach", (PyCFunction) sp_handle_detach, METH_VARARGS},
117 {"Close", (PyCFunction) sp_handle_close, METH_VARARGS},
118 {NULL, NULL}
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000119};
120
Tim Petersf3250b02004-10-12 21:38:22 +0000121static PyObject*
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000122sp_handle_as_int(sp_handle_object* self)
123{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000124 return HANDLE_TO_PYNUM(self->handle);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000125}
126
127static PyNumberMethods sp_handle_as_number;
128
Neal Norwitz227b5332006-03-22 09:28:35 +0000129static PyTypeObject sp_handle_type = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000130 PyVarObject_HEAD_INIT(NULL, 0)
131 "_subprocess_handle", sizeof(sp_handle_object), 0,
132 (destructor) sp_handle_dealloc, /*tp_dealloc*/
133 0, /*tp_print*/
134 0, /*tp_getattr*/
135 0, /*tp_setattr*/
136 0, /*tp_reserved*/
137 0, /*tp_repr*/
138 &sp_handle_as_number, /*tp_as_number */
139 0, /*tp_as_sequence */
140 0, /*tp_as_mapping */
141 0, /*tp_hash*/
142 0, /*tp_call*/
143 0, /*tp_str*/
144 0, /*tp_getattro*/
145 0, /*tp_setattro*/
146 0, /*tp_as_buffer*/
147 Py_TPFLAGS_DEFAULT, /*tp_flags*/
148 0, /*tp_doc*/
149 0, /*tp_traverse*/
150 0, /*tp_clear*/
151 0, /*tp_richcompare*/
152 0, /*tp_weaklistoffset*/
153 0, /*tp_iter*/
154 0, /*tp_iternext*/
155 sp_handle_methods, /*tp_methods*/
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000156};
157
158/* -------------------------------------------------------------------- */
159/* windows API functions */
160
Brian Curtin1ce6b582010-04-24 16:19:22 +0000161PyDoc_STRVAR(GetStdHandle_doc,
162"GetStdHandle(handle) -> integer\n\
163\n\
164Return a handle to the specified standard device\n\
165(STD_INPUT_HANDLE, STD_OUTPUT_HANDLE, STD_ERROR_HANDLE).\n\
166The integer associated with the handle object is returned.");
167
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000168static PyObject *
169sp_GetStdHandle(PyObject* self, PyObject* args)
170{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000171 HANDLE handle;
172 int std_handle;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000173
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000174 if (! PyArg_ParseTuple(args, "i:GetStdHandle", &std_handle))
175 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000176
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000177 Py_BEGIN_ALLOW_THREADS
178 handle = GetStdHandle((DWORD) std_handle);
179 Py_END_ALLOW_THREADS
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000180
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000181 if (handle == INVALID_HANDLE_VALUE)
182 return PyErr_SetFromWindowsErr(GetLastError());
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000183
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000184 if (! handle) {
185 Py_INCREF(Py_None);
186 return Py_None;
187 }
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000188
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000189 /* note: returns integer, not handle object */
190 return HANDLE_TO_PYNUM(handle);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000191}
192
Brian Curtin1ce6b582010-04-24 16:19:22 +0000193PyDoc_STRVAR(GetCurrentProcess_doc,
194"GetCurrentProcess() -> handle\n\
195\n\
196Return a handle object for the current process.");
197
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000198static PyObject *
199sp_GetCurrentProcess(PyObject* self, PyObject* args)
200{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000201 if (! PyArg_ParseTuple(args, ":GetCurrentProcess"))
202 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000203
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000204 return sp_handle_new(GetCurrentProcess());
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000205}
206
Brian Curtin1ce6b582010-04-24 16:19:22 +0000207PyDoc_STRVAR(DuplicateHandle_doc,
208"DuplicateHandle(source_proc_handle, source_handle,\n\
209 target_proc_handle, target_handle, access,\n\
210 inherit[, options]) -> handle\n\
211\n\
212Return a duplicate handle object.\n\
213\n\
214The duplicate handle refers to the same object as the original\n\
215handle. Therefore, any changes to the object are reflected\n\
216through both handles.");
217
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000218static PyObject *
219sp_DuplicateHandle(PyObject* self, PyObject* args)
220{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000221 HANDLE target_handle;
222 BOOL result;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000223
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000224 HANDLE source_process_handle;
225 HANDLE source_handle;
226 HANDLE target_process_handle;
227 int desired_access;
228 int inherit_handle;
229 int options = 0;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000230
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000231 if (! PyArg_ParseTuple(args,
232 PY_HANDLE_PARAM PY_HANDLE_PARAM PY_HANDLE_PARAM
233 "ii|i:DuplicateHandle",
234 &source_process_handle,
235 &source_handle,
236 &target_process_handle,
237 &desired_access,
238 &inherit_handle,
239 &options))
240 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000241
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000242 Py_BEGIN_ALLOW_THREADS
243 result = DuplicateHandle(
244 source_process_handle,
245 source_handle,
246 target_process_handle,
247 &target_handle,
248 desired_access,
249 inherit_handle,
250 options
251 );
252 Py_END_ALLOW_THREADS
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000253
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000254 if (! result)
255 return PyErr_SetFromWindowsErr(GetLastError());
Tim Petersf3250b02004-10-12 21:38:22 +0000256
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000257 return sp_handle_new(target_handle);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000258}
259
Brian Curtin1ce6b582010-04-24 16:19:22 +0000260PyDoc_STRVAR(CreatePipe_doc,
261"CreatePipe(pipe_attrs, size) -> (read_handle, write_handle)\n\
262\n\
263Create an anonymous pipe, and return handles to the read and\n\
264write ends of the pipe.\n\
265\n\
266pipe_attrs is ignored internally and can be None.");
267
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000268static PyObject *
269sp_CreatePipe(PyObject* self, PyObject* args)
270{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000271 HANDLE read_pipe;
272 HANDLE write_pipe;
273 BOOL result;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000274
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000275 PyObject* pipe_attributes; /* ignored */
276 int size;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000277
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000278 if (! PyArg_ParseTuple(args, "Oi:CreatePipe", &pipe_attributes, &size))
279 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000280
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000281 Py_BEGIN_ALLOW_THREADS
282 result = CreatePipe(&read_pipe, &write_pipe, NULL, size);
283 Py_END_ALLOW_THREADS
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000284
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000285 if (! result)
286 return PyErr_SetFromWindowsErr(GetLastError());
Tim Petersf3250b02004-10-12 21:38:22 +0000287
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000288 return Py_BuildValue(
289 "NN", sp_handle_new(read_pipe), sp_handle_new(write_pipe));
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000290}
291
292/* helpers for createprocess */
293
294static int
295getint(PyObject* obj, char* name)
296{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000297 PyObject* value;
298 int ret;
Tim Petersf3250b02004-10-12 21:38:22 +0000299
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000300 value = PyObject_GetAttrString(obj, name);
301 if (! value) {
302 PyErr_Clear(); /* FIXME: propagate error? */
303 return 0;
304 }
305 ret = (int) PyLong_AsLong(value);
306 Py_DECREF(value);
307 return ret;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000308}
Tim Petersf3250b02004-10-12 21:38:22 +0000309
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000310static HANDLE
311gethandle(PyObject* obj, char* name)
312{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000313 sp_handle_object* value;
314 HANDLE ret;
Tim Petersf3250b02004-10-12 21:38:22 +0000315
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000316 value = (sp_handle_object*) PyObject_GetAttrString(obj, name);
317 if (! value) {
318 PyErr_Clear(); /* FIXME: propagate error? */
319 return NULL;
320 }
321 if (Py_TYPE(value) != &sp_handle_type)
322 ret = NULL;
323 else
324 ret = value->handle;
325 Py_DECREF(value);
326 return ret;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000327}
328
329static PyObject*
330getenvironment(PyObject* environment)
331{
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200332 Py_ssize_t i, envsize, totalsize;
333 Py_UCS4 *buffer = NULL, *p, *end;
334 PyObject *keys, *values, *res;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000335
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000336 /* convert environment dictionary to windows enviroment string */
337 if (! PyMapping_Check(environment)) {
338 PyErr_SetString(
339 PyExc_TypeError, "environment must be dictionary or None");
340 return NULL;
341 }
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000342
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000343 envsize = PyMapping_Length(environment);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000344
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000345 keys = PyMapping_Keys(environment);
346 values = PyMapping_Values(environment);
347 if (!keys || !values)
348 goto error;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000349
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200350 totalsize = 1; /* trailing null character */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000351 for (i = 0; i < envsize; i++) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 PyObject* key = PyList_GET_ITEM(keys, i);
353 PyObject* value = PyList_GET_ITEM(values, i);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000354
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000355 if (! PyUnicode_Check(key) || ! PyUnicode_Check(value)) {
356 PyErr_SetString(PyExc_TypeError,
357 "environment can only contain strings");
358 goto error;
359 }
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200360 totalsize += PyUnicode_GET_LENGTH(key) + 1; /* +1 for '=' */
361 totalsize += PyUnicode_GET_LENGTH(value) + 1; /* +1 for '\0' */
362 }
363
364 buffer = PyMem_Malloc(totalsize * sizeof(Py_UCS4));
365 if (! buffer)
366 goto error;
367 p = buffer;
368 end = buffer + totalsize;
369
370 for (i = 0; i < envsize; i++) {
371 PyObject* key = PyList_GET_ITEM(keys, i);
372 PyObject* value = PyList_GET_ITEM(values, i);
373 if (!PyUnicode_AsUCS4(key, p, end - p, 0))
374 goto error;
375 p += PyUnicode_GET_LENGTH(key);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000376 *p++ = '=';
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200377 if (!PyUnicode_AsUCS4(value, p, end - p, 0))
378 goto error;
379 p += PyUnicode_GET_LENGTH(value);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000380 *p++ = '\0';
381 }
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000382
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000383 /* add trailing null byte */
384 *p++ = '\0';
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200385 assert(p == end);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000386
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000387 Py_XDECREF(keys);
388 Py_XDECREF(values);
Fredrik Lundhbb4692b2005-11-12 10:15:03 +0000389
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200390 res = PyUnicode_FromKindAndData(PyUnicode_4BYTE_KIND, buffer, p - buffer);
391 PyMem_Free(buffer);
392 return res;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000393
Tim Petersf3250b02004-10-12 21:38:22 +0000394 error:
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200395 PyMem_Free(buffer);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000396 Py_XDECREF(keys);
397 Py_XDECREF(values);
398 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000399}
400
Brian Curtin1ce6b582010-04-24 16:19:22 +0000401PyDoc_STRVAR(CreateProcess_doc,
402"CreateProcess(app_name, cmd_line, proc_attrs, thread_attrs,\n\
403 inherit, flags, env_mapping, curdir,\n\
404 startup_info) -> (proc_handle, thread_handle,\n\
405 pid, tid)\n\
406\n\
407Create a new process and its primary thread. The return\n\
408value is a tuple of the process handle, thread handle,\n\
409process ID, and thread ID.\n\
410\n\
411proc_attrs and thread_attrs are ignored internally and can be None.");
412
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000413static PyObject *
414sp_CreateProcess(PyObject* self, PyObject* args)
415{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000416 BOOL result;
417 PROCESS_INFORMATION pi;
418 STARTUPINFOW si;
419 PyObject* environment;
Victor Stinner33354472011-11-21 02:01:41 +0100420 wchar_t *wenvironment;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000421
Victor Stinner9d3b93b2011-11-22 02:27:30 +0100422 wchar_t* application_name;
423 wchar_t* command_line;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000424 PyObject* process_attributes; /* ignored */
425 PyObject* thread_attributes; /* ignored */
426 int inherit_handles;
427 int creation_flags;
428 PyObject* env_mapping;
Victor Stinner9d3b93b2011-11-22 02:27:30 +0100429 wchar_t* current_directory;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000430 PyObject* startup_info;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000431
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000432 if (! PyArg_ParseTuple(args, "ZZOOiiOZO:CreateProcess",
433 &application_name,
434 &command_line,
435 &process_attributes,
436 &thread_attributes,
437 &inherit_handles,
438 &creation_flags,
439 &env_mapping,
440 &current_directory,
441 &startup_info))
442 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000443
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000444 ZeroMemory(&si, sizeof(si));
445 si.cb = sizeof(si);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000446
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000447 /* note: we only support a small subset of all SI attributes */
448 si.dwFlags = getint(startup_info, "dwFlags");
449 si.wShowWindow = getint(startup_info, "wShowWindow");
450 si.hStdInput = gethandle(startup_info, "hStdInput");
451 si.hStdOutput = gethandle(startup_info, "hStdOutput");
452 si.hStdError = gethandle(startup_info, "hStdError");
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000453
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000454 if (PyErr_Occurred())
455 return NULL;
Fredrik Lundh3a49e922005-11-12 10:15:14 +0000456
Victor Stinner9d3b93b2011-11-22 02:27:30 +0100457 if (env_mapping != Py_None) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000458 environment = getenvironment(env_mapping);
459 if (! environment)
460 return NULL;
Victor Stinnerdcbbd9e2011-11-21 02:17:08 +0100461 wenvironment = PyUnicode_AsUnicode(environment);
Victor Stinner33354472011-11-21 02:01:41 +0100462 if (wenvironment == NULL)
463 {
464 Py_XDECREF(environment);
465 return NULL;
466 }
467 }
Victor Stinner9d3b93b2011-11-22 02:27:30 +0100468 else {
469 environment = NULL;
Victor Stinner33354472011-11-21 02:01:41 +0100470 wenvironment = NULL;
Victor Stinner9d3b93b2011-11-22 02:27:30 +0100471 }
Victor Stinner33354472011-11-21 02:01:41 +0100472
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000473 Py_BEGIN_ALLOW_THREADS
474 result = CreateProcessW(application_name,
475 command_line,
476 NULL,
477 NULL,
478 inherit_handles,
479 creation_flags | CREATE_UNICODE_ENVIRONMENT,
Victor Stinner33354472011-11-21 02:01:41 +0100480 wenvironment,
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000481 current_directory,
482 &si,
483 &pi);
484 Py_END_ALLOW_THREADS
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000485
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000486 Py_XDECREF(environment);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000487
Tim Goldenad537f22010-08-08 11:18:16 +0000488 if (! result)
489 return PyErr_SetFromWindowsErr(GetLastError());
Tim Petersf3250b02004-10-12 21:38:22 +0000490
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000491 return Py_BuildValue("NNii",
492 sp_handle_new(pi.hProcess),
493 sp_handle_new(pi.hThread),
494 pi.dwProcessId,
495 pi.dwThreadId);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000496}
497
Brian Curtin1ce6b582010-04-24 16:19:22 +0000498PyDoc_STRVAR(TerminateProcess_doc,
499"TerminateProcess(handle, exit_code) -> None\n\
500\n\
501Terminate the specified process and all of its threads.");
502
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000503static PyObject *
Fredrik Lundhe5152932005-12-18 21:06:46 +0000504sp_TerminateProcess(PyObject* self, PyObject* args)
505{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000506 BOOL result;
Fredrik Lundhe5152932005-12-18 21:06:46 +0000507
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000508 HANDLE process;
509 int exit_code;
510 if (! PyArg_ParseTuple(args, PY_HANDLE_PARAM "i:TerminateProcess",
511 &process, &exit_code))
512 return NULL;
Fredrik Lundhe5152932005-12-18 21:06:46 +0000513
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000514 result = TerminateProcess(process, exit_code);
Fredrik Lundhe5152932005-12-18 21:06:46 +0000515
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000516 if (! result)
517 return PyErr_SetFromWindowsErr(GetLastError());
Fredrik Lundhe5152932005-12-18 21:06:46 +0000518
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000519 Py_INCREF(Py_None);
520 return Py_None;
Fredrik Lundhe5152932005-12-18 21:06:46 +0000521}
522
Brian Curtin1ce6b582010-04-24 16:19:22 +0000523PyDoc_STRVAR(GetExitCodeProcess_doc,
524"GetExitCodeProcess(handle) -> Exit code\n\
525\n\
526Return the termination status of the specified process.");
527
Fredrik Lundhe5152932005-12-18 21:06:46 +0000528static PyObject *
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000529sp_GetExitCodeProcess(PyObject* self, PyObject* args)
530{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000531 DWORD exit_code;
532 BOOL result;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000533
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000534 HANDLE process;
535 if (! PyArg_ParseTuple(args, PY_HANDLE_PARAM ":GetExitCodeProcess", &process))
536 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000537
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000538 result = GetExitCodeProcess(process, &exit_code);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000539
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000540 if (! result)
541 return PyErr_SetFromWindowsErr(GetLastError());
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000542
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000543 return PyLong_FromLong(exit_code);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000544}
545
Brian Curtin1ce6b582010-04-24 16:19:22 +0000546PyDoc_STRVAR(WaitForSingleObject_doc,
547"WaitForSingleObject(handle, timeout) -> result\n\
548\n\
549Wait until the specified object is in the signaled state or\n\
550the time-out interval elapses. The timeout value is specified\n\
551in milliseconds.");
552
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000553static PyObject *
554sp_WaitForSingleObject(PyObject* self, PyObject* args)
555{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000556 DWORD result;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000557
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000558 HANDLE handle;
559 int milliseconds;
560 if (! PyArg_ParseTuple(args, PY_HANDLE_PARAM "i:WaitForSingleObject",
561 &handle,
562 &milliseconds))
563 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000564
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000565 Py_BEGIN_ALLOW_THREADS
566 result = WaitForSingleObject(handle, (DWORD) milliseconds);
567 Py_END_ALLOW_THREADS
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000568
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000569 if (result == WAIT_FAILED)
570 return PyErr_SetFromWindowsErr(GetLastError());
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000571
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000572 return PyLong_FromLong((int) result);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000573}
574
Brian Curtin1ce6b582010-04-24 16:19:22 +0000575PyDoc_STRVAR(GetVersion_doc,
576"GetVersion() -> version\n\
577\n\
578Return the version number of the current operating system.");
579
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000580static PyObject *
581sp_GetVersion(PyObject* self, PyObject* args)
582{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000583 if (! PyArg_ParseTuple(args, ":GetVersion"))
584 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000585
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000586 return PyLong_FromLong((int) GetVersion());
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000587}
588
Brian Curtin1ce6b582010-04-24 16:19:22 +0000589PyDoc_STRVAR(GetModuleFileName_doc,
590"GetModuleFileName(module) -> path\n\
591\n\
592Return the fully-qualified path for the file that contains\n\
593the specified module. The module must have been loaded by the\n\
594current process.\n\
595\n\
596The module parameter should be a handle to the loaded module\n\
597whose path is being requested. If this parameter is 0, \n\
598GetModuleFileName retrieves the path of the executable file\n\
599of the current process.");
600
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000601static PyObject *
602sp_GetModuleFileName(PyObject* self, PyObject* args)
603{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000604 BOOL result;
605 HMODULE module;
606 WCHAR filename[MAX_PATH];
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000607
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000608 if (! PyArg_ParseTuple(args, PY_HANDLE_PARAM ":GetModuleFileName",
609 &module))
610 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000611
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000612 result = GetModuleFileNameW(module, filename, MAX_PATH);
613 filename[MAX_PATH-1] = '\0';
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000614
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000615 if (! result)
616 return PyErr_SetFromWindowsErr(GetLastError());
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000617
Martin v. Löwisd63a3b82011-09-28 07:41:54 +0200618 return PyUnicode_FromWideChar(filename, wcslen(filename));
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000619}
620
621static PyMethodDef sp_functions[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000622 {"GetStdHandle", sp_GetStdHandle, METH_VARARGS, GetStdHandle_doc},
623 {"GetCurrentProcess", sp_GetCurrentProcess, METH_VARARGS,
624 GetCurrentProcess_doc},
625 {"DuplicateHandle", sp_DuplicateHandle, METH_VARARGS,
626 DuplicateHandle_doc},
627 {"CreatePipe", sp_CreatePipe, METH_VARARGS, CreatePipe_doc},
628 {"CreateProcess", sp_CreateProcess, METH_VARARGS, CreateProcess_doc},
629 {"TerminateProcess", sp_TerminateProcess, METH_VARARGS,
630 TerminateProcess_doc},
631 {"GetExitCodeProcess", sp_GetExitCodeProcess, METH_VARARGS,
632 GetExitCodeProcess_doc},
633 {"WaitForSingleObject", sp_WaitForSingleObject, METH_VARARGS,
634 WaitForSingleObject_doc},
635 {"GetVersion", sp_GetVersion, METH_VARARGS, GetVersion_doc},
636 {"GetModuleFileName", sp_GetModuleFileName, METH_VARARGS,
637 GetModuleFileName_doc},
638 {NULL, NULL}
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000639};
640
641/* -------------------------------------------------------------------- */
642
643static void
644defint(PyObject* d, const char* name, int value)
645{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000646 PyObject* v = PyLong_FromLong((long) value);
647 if (v) {
648 PyDict_SetItemString(d, (char*) name, v);
649 Py_DECREF(v);
650 }
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000651}
652
Martin v. Löwis1a214512008-06-11 05:26:20 +0000653static struct PyModuleDef _subprocessmodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000654 PyModuleDef_HEAD_INIT,
655 "_subprocess",
656 NULL,
657 -1,
658 sp_functions,
659 NULL,
660 NULL,
661 NULL,
662 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +0000663};
664
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000665PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000666PyInit__subprocess()
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000667{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000668 PyObject *d;
669 PyObject *m;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000670
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000671 /* patch up object descriptors */
672 sp_handle_as_number.nb_int = (unaryfunc) sp_handle_as_int;
673 if (PyType_Ready(&sp_handle_type) < 0)
674 return NULL;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000675
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000676 m = PyModule_Create(&_subprocessmodule);
677 if (m == NULL)
678 return NULL;
679 d = PyModule_GetDict(m);
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000680
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000681 /* constants */
682 defint(d, "STD_INPUT_HANDLE", STD_INPUT_HANDLE);
683 defint(d, "STD_OUTPUT_HANDLE", STD_OUTPUT_HANDLE);
684 defint(d, "STD_ERROR_HANDLE", STD_ERROR_HANDLE);
685 defint(d, "DUPLICATE_SAME_ACCESS", DUPLICATE_SAME_ACCESS);
686 defint(d, "STARTF_USESTDHANDLES", STARTF_USESTDHANDLES);
687 defint(d, "STARTF_USESHOWWINDOW", STARTF_USESHOWWINDOW);
688 defint(d, "SW_HIDE", SW_HIDE);
689 defint(d, "INFINITE", INFINITE);
690 defint(d, "WAIT_OBJECT_0", WAIT_OBJECT_0);
Reid Kleckner31aa7dd2011-03-14 12:02:10 -0400691 defint(d, "WAIT_TIMEOUT", WAIT_TIMEOUT);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000692 defint(d, "CREATE_NEW_CONSOLE", CREATE_NEW_CONSOLE);
693 defint(d, "CREATE_NEW_PROCESS_GROUP", CREATE_NEW_PROCESS_GROUP);
Antoine Pitrou1f9a8352012-03-11 19:29:12 +0100694 defint(d, "STILL_ACTIVE", STILL_ACTIVE);
Brian Curtineb24d742010-04-12 17:16:38 +0000695
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000696 return m;
Fredrik Lundh5b3687d2004-10-12 15:26:28 +0000697}